/**
 * @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;*/
/*
 * 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
 * 
 */
/*
 * 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 {
  line-height: 1.5em;
  font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Lists
 */
/* line 249, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 12px 0;
}

/* line 258, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
  list-style: circle;
}
/* line 264, ../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 271, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 1.8em;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 276, ../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 296, ../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 */
  height: auto;
  max-width: 100%;
}

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

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

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

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

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

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

/**
 * 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 355, ../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 368, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  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 384, ../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 395, ../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 409, ../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 421, ../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 432, ../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 444, ../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 453, ../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 459, ../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 469, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 483, ../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.42857em;
  font-size: 12px;
}

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

/* line 514, ../sass/_normalize.scss */
.noBorderNoStripes {
  width: 100%;
  border: none;
}
/* line 517, ../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: 14px;
  line-height: 20px;
  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.42857em;
  font-family: Lato, Verdana, Arial, sans-serif;
  /* 1 */
  color: #000;
  height: 100%;
}
@media all and (min-width: 1440px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 9, ../sass/_styleguide.scss */
  html {
    line-height: 18px;
  }
}

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

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

/* line 26, ../sass/_styleguide.scss */
body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
  font-size: 14px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  /* 1 */
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 26, ../sass/_styleguide.scss */
  body, .bodytext, .darkGrayBodyText, .foa-expiration-date {
    line-height: 18px;
  }
}

/* line 36, ../sass/_styleguide.scss */
p, .standard-body, .readMoreWrapper {
  font-size: 14px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  /* 1 */
}
@media all and (min-width: 1440px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 36, ../sass/_styleguide.scss */
  p, .standard-body, .readMoreWrapper {
    line-height: 18px;
  }
}

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

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

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

/* line 88, ../sass/_styleguide.scss */
.responsive-container-padding, .flexItemText.flexItemTextHalf, .isi-updates-padding, .view-nhlbi-research-update.view-display-id-block_4 > .view-content > .views-row, .breadcrumbs, .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--type-research-topic .researchPeopleToolsBlock, .node--view-mode-short-teaser .flexItemText, .sfa-teaser-container .flexItemText {
  padding-right: 5em;
  padding-left: 5em;
}
@media all and (min-width: 1440px) {
  /* line 88, ../sass/_styleguide.scss */
  .responsive-container-padding, .flexItemText.flexItemTextHalf, .isi-updates-padding, .view-nhlbi-research-update.view-display-id-block_4 > .view-content > .views-row, .breadcrumbs, .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--type-research-topic .researchPeopleToolsBlock, .node--view-mode-short-teaser .flexItemText, .sfa-teaser-container .flexItemText {
    padding-right: 5em;
    padding-left: 5em;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 88, ../sass/_styleguide.scss */
  .responsive-container-padding, .flexItemText.flexItemTextHalf, .isi-updates-padding, .view-nhlbi-research-update.view-display-id-block_4 > .view-content > .views-row, .breadcrumbs, .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--type-research-topic .researchPeopleToolsBlock, .node--view-mode-short-teaser .flexItemText, .sfa-teaser-container .flexItemText {
    padding-right: 5em;
    padding-left: 5em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 88, ../sass/_styleguide.scss */
  .responsive-container-padding, .flexItemText.flexItemTextHalf, .isi-updates-padding, .view-nhlbi-research-update.view-display-id-block_4 > .view-content > .views-row, .breadcrumbs, .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--type-research-topic .researchPeopleToolsBlock, .node--view-mode-short-teaser .flexItemText, .sfa-teaser-container .flexItemText {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 88, ../sass/_styleguide.scss */
  .responsive-container-padding, .flexItemText.flexItemTextHalf, .isi-updates-padding, .view-nhlbi-research-update.view-display-id-block_4 > .view-content > .views-row, .breadcrumbs, .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--type-research-topic .researchPeopleToolsBlock, .node--view-mode-short-teaser .flexItemText, .sfa-teaser-container .flexItemText {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

/* line 114, ../sass/_styleguide.scss */
h1 {
  font-size: 34px;
  line-height: 42px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #575b5e;
  margin: 0 0 20px 0;
}
@media all and (min-width: 1440px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    font-size: 34px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    font-size: 34px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    font-size: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    font-size: 22px;
  }
}
@media all and (min-width: 1440px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    line-height: 42px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    line-height: 42px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    line-height: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 114, ../sass/_styleguide.scss */
  h1 {
    line-height: 30px;
  }
}

/* line 124, ../sass/_styleguide.scss */
h2, .contact-method-label {
  font-size: 24px;
  line-height: 30px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  margin: 3px 0 11px 0;
  font-weight: normal;
  color: #333;
}
@media all and (min-width: 1440px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    font-size: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 124, ../sass/_styleguide.scss */
  h2, .contact-method-label {
    line-height: 24px;
  }
}

/* line 131, ../sass/_styleguide.scss */
.piname {
  font-size: 24px;
  line-height: 30px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #333;
}
@media all and (min-width: 1440px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    font-size: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 131, ../sass/_styleguide.scss */
  .piname {
    line-height: 24px;
  }
}

/* line 137, ../sass/_styleguide.scss */
h3 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 11px 0;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #575b5e;
}
@media all and (min-width: 1440px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    font-size: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    font-size: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    font-size: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    line-height: 28px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    line-height: 28px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    line-height: 24x;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 137, ../sass/_styleguide.scss */
  h3 {
    line-height: 22px;
  }
}

/* line 145, ../sass/_styleguide.scss */
h3 > a, h3 > a:link, h3 > a:visited {
  color: #575b5e;
}

/* line 155, ../sass/_styleguide.scss */
h3.roboto-font {
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 160, ../sass/_styleguide.scss */
h4 {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 11px 0;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #000;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 160, ../sass/_styleguide.scss */
  h4 {
    line-height: 22px;
  }
}

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

/* line 173, ../sass/_styleguide.scss */
.membertitle, .profileheader {
  font-size: 18px;
  line-height: 30px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 173, ../sass/_styleguide.scss */
  .membertitle, .profileheader {
    line-height: 22px;
  }
}

/* line 180, ../sass/_styleguide.scss */
h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
  font-size: 18px;
  line-height: 26px;
  font-family: Lato, Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  font-weight: bold;
  font-style: normal;
  color: #4a4a4a;
}
@media all and (min-width: 1440px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 180, ../sass/_styleguide.scss */
  h5, .node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
    line-height: 22px;
  }
}

/* line 194, ../sass/_styleguide.scss */
h6 {
  font-size: 14px;
  font-family: Lato, Verdana, Arial, sans-serif;
  margin: 0 0 11px 0;
  line-height: 1.2em;
}
@media all and (min-width: 1440px) {
  /* line 194, ../sass/_styleguide.scss */
  h6 {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 194, ../sass/_styleguide.scss */
  h6 {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 194, ../sass/_styleguide.scss */
  h6 {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 194, ../sass/_styleguide.scss */
  h6 {
    font-size: 12px;
  }
}

/**
 * Links -- This is called .hyperlink in the StyleGuide
 **/
/* line 208, ../sass/_styleguide.scss */
a:link, .ui-widget-content a:link {
  color: #1a568c;
  text-decoration: none;
}

/* line 212, ../sass/_styleguide.scss */
a:visited, .ui-widget-content a:visited {
  color: #1a568c;
  text-decoration: none;
}

/* line 216, ../sass/_styleguide.scss */
a:hover, .ui-widget-content a:hover {
  color: #1a568c;
  text-decoration: underline;
}

/* line 225, ../sass/_styleguide.scss */
a:focus, .ui-widget-content a:focus {
  text-decoration: underline;
}

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

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

/**
 * Buttons and Labels
 **/
/* line 244, ../sass/_styleguide.scss */
.blueRoundButton, .standard-more-link, .news-and-events--landing .more-link, .view-more-link, .pager__item {
  font-size: 14px;
  line-height: 20px;
  margin-top: 1em;
  margin-bottom: 1em;
  clear: both;
}
/* line 250, ../sass/_styleguide.scss */
.blueRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .pager__item a, .pager__item a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  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: Lato, Verdana, Arial, sans-serif;
  line-height: 1.8em;
}
/* line 1299, ../sass/_mixins.scss */
.blueRoundButton a :hover, .standard-more-link a :hover, .news-and-events--landing .more-link a :hover, .view-more-link a :hover, .blueRoundButton a.button :hover, .standard-more-link a.button :hover, .news-and-events--landing .more-link a.button :hover, .view-more-link a.button :hover, .pager__item a :hover, .pager__item a.button :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 250, ../sass/_styleguide.scss */
  .blueRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .pager__item a, .pager__item a.button {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
.blueRoundButton a:hover, .standard-more-link a:hover, .news-and-events--landing .more-link a:hover, .view-more-link a:hover, .blueRoundButton a.button:hover, .standard-more-link a.button:hover, .news-and-events--landing .more-link a.button:hover, .view-more-link a.button:hover, .pager__item a:hover, .pager__item a.button:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 250, ../sass/_styleguide.scss */
  .blueRoundButton a, .standard-more-link a, .news-and-events--landing .more-link a, .view-more-link a, .blueRoundButton a.button, .standard-more-link a.button, .news-and-events--landing .more-link a.button, .view-more-link a.button, .pager__item a, .pager__item a.button {
    clear: both;
    margin: 1em auto;
  }
}

/* line 262, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
}
/* line 1299, ../sass/_mixins.scss */
a.bluebutton :hover,
a.bluebutton:link :hover,
.ui-widget-content a.bluebutton:link :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 262, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
a.bluebutton:hover,
a.bluebutton:link:hover,
.ui-widget-content a.bluebutton:link:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 262, ../sass/_styleguide.scss */
  a.bluebutton,
  a.bluebutton:link,
  .ui-widget-content a.bluebutton:link {
    padding: 0.35em 2.5em;
  }
}
/* line 1352, ../sass/_mixins.scss */
a.bluebutton a:hover,
a.bluebutton:link a:hover,
.ui-widget-content a.bluebutton:link a:hover {
  text-decoration: none;
}

/* line 268, ../sass/_styleguide.scss */
.file-download-button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  color: #fff;
  background-color: #1a568c;
  font-size: 14px;
  line-height: 20px;
  margin-top: 1em;
  margin-bottom: 1em;
  clear: both;
  font-family: Lato, Verdana, Arial, sans-serif;
}
/* line 1299, ../sass/_mixins.scss */
.file-download-button :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 268, ../sass/_styleguide.scss */
  .file-download-button {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
.file-download-button:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
/* line 137, ../sass/_mixins.scss */
.file-download-button h1, .file-download-button .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.file-download-button a, .file-download-button a:visited, .file-download-button a:link, .file-download-button a:hover {
  color: #fff;
}
/* line 277, ../sass/_styleguide.scss */
.file-download-button .file-size {
  font-size: 8.4px;
  line-height: 10px;
}
/* line 281, ../sass/_styleguide.scss */
.file-download-button .file-size.graydetail {
  color: #fff;
}

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

/* line 296, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #fff;
  background-color: #575b5e;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 296, ../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: 0.35em 2.5em;
  }
}
/* line 137, ../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 140, ../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, .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;
}
/* line 1310, ../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;
}
/* line 1313, ../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;
  text-decoration: none;
}
/* line 1317, ../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;
  text-decoration: none;
}

/* line 300, ../sass/_styleguide.scss */
.redLabel {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #fff;
  background-color: #850920;
}
/* line 1299, ../sass/_mixins.scss */
.redLabel :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 300, ../sass/_styleguide.scss */
  .redLabel {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.redLabel h1, .redLabel .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.redLabel a, .redLabel a:visited, .redLabel a:link, .redLabel a:hover {
  color: #fff;
}
/* line 1310, ../sass/_mixins.scss */
.redLabel a, .redLabel a:visited, .redLabel a:link {
  color: #fff;
}
/* line 1313, ../sass/_mixins.scss */
.redLabel a:hover {
  color: #fff;
  text-decoration: none;
}
/* line 1317, ../sass/_mixins.scss */
.redLabel:hover {
  background-color: #590716;
  text-decoration: none;
}

/* line 305, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #fff;
  background-color: #590716;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 305, ../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: 0.35em 2.5em;
  }
}
/* line 137, ../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 140, ../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, .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;
}
/* line 1310, ../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;
}
/* line 1313, ../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;
  text-decoration: none;
}
/* line 1317, ../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;
  text-decoration: none;
}

/* line 309, ../sass/_styleguide.scss */
.blueLabel {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #fff;
  background-color: #1a568c;
}
/* line 1299, ../sass/_mixins.scss */
.blueLabel :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 309, ../sass/_styleguide.scss */
  .blueLabel {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.blueLabel h1, .blueLabel .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.blueLabel a, .blueLabel a:visited, .blueLabel a:link, .blueLabel a:hover {
  color: #fff;
}
/* line 1310, ../sass/_mixins.scss */
.blueLabel a, .blueLabel a:visited, .blueLabel a:link {
  color: #fff;
}
/* line 1313, ../sass/_mixins.scss */
.blueLabel a:hover {
  color: #fff;
  text-decoration: none;
}
/* line 1317, ../sass/_mixins.scss */
.blueLabel:hover {
  background-color: #144571;
  text-decoration: none;
}

/* line 313, ../sass/_styleguide.scss */
.whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 4px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #000;
  background-color: #fff;
  padding: 0.5em 2em;
  border: solid 1px #d7d7d7;
}
/* line 1299, ../sass/_mixins.scss */
.whiteBlueLabel :hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item :hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 313, ../sass/_styleguide.scss */
  .whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.whiteBlueLabel h1, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item h1,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item h1, .whiteBlueLabel .photocredit, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item .photocredit,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item .photocredit {
  color: #000;
}
/* line 140, ../sass/_mixins.scss */
.whiteBlueLabel a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a, .whiteBlueLabel a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a:visited, .whiteBlueLabel a:link, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a:link, .whiteBlueLabel a:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a:hover {
  color: #fff;
}
/* line 1310, ../sass/_mixins.scss */
.whiteBlueLabel a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a, .whiteBlueLabel a:visited, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a:visited,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a:visited, .whiteBlueLabel a:link, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a:link {
  color: #000;
}
/* line 1313, ../sass/_mixins.scss */
.whiteBlueLabel a:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item a:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item a:hover {
  color: #fff;
  text-decoration: none;
}
/* line 1317, ../sass/_mixins.scss */
.whiteBlueLabel:hover, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item:hover,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item:hover {
  background-color: #1a568c;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 313, ../sass/_styleguide.scss */
  .whiteBlueLabel, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item {
    padding: 0.35em 1.5em;
  }
}

/* line 320, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #fff;
  background-color: #102d66;
}
/* line 1299, ../sass/_mixins.scss */
.darkBlueLabel :hover, .rtFlexContainer .field--name-field-related-sfas a :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 320, ../sass/_styleguide.scss */
  .darkBlueLabel, .rtFlexContainer .field--name-field-related-sfas a {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../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 140, ../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, .darkBlueLabel a:hover, .rtFlexContainer .field--name-field-related-sfas a a:hover {
  color: #fff;
}
/* line 1310, ../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;
}
/* line 1313, ../sass/_mixins.scss */
.darkBlueLabel a:hover, .rtFlexContainer .field--name-field-related-sfas a a:hover {
  color: #fff;
  text-decoration: none;
}
/* line 1317, ../sass/_mixins.scss */
.darkBlueLabel:hover, .rtFlexContainer .field--name-field-related-sfas a:hover {
  background-color: #575b5e;
  text-decoration: none;
}

/* line 324, ../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 324, ../sass/_styleguide.scss */
  .darkerGreyLabel, .last-updated-date-container {
    padding: 0.35em, 1em;
  }
}

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

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

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

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

/**
 * Icons
 **/
/* line 351, ../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 351, ../sass/_styleguide.scss */
  .event-icon {
    background-size: 24.8px 40px;
    height: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 351, ../sass/_styleguide.scss */
  .event-icon {
    background-size: 24.8px 40px;
    height: 40px;
  }
}

/* line 355, ../sass/_styleguide.scss */
.rt-research-icon {
  background-image: url("../images/ico-beakers.png");
  background-size: 60px 60px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 60px;
  min-width: 60px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 355, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-size: 60px 60px;
    height: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 355, ../sass/_styleguide.scss */
  .rt-research-icon {
    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 355, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-image: url("../images/ico-beakers@2x.png");
    background-size: 60px 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 355, ../sass/_styleguide.scss */
  .rt-research-icon {
    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 355, ../sass/_styleguide.scss */
  .rt-research-icon {
    background-size: 60px 60px;
    height: 60px;
  }
}

/* line 363, ../sass/_styleguide.scss */
.rt-staff-icon {
  background-image: url("../images/ico-people.png");
  background-size: 72px 60px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 60px;
  min-width: 72px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 363, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 72px 60px;
    height: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 363, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 72px 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 363, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-image: url("../images/ico-people@2x.png");
    background-size: 72px 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 363, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 72px 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 363, ../sass/_styleguide.scss */
  .rt-staff-icon {
    background-size: 72px 60px;
    height: 60px;
  }
}

/* line 371, ../sass/_styleguide.scss */
.rt-resources-icon {
  background-image: url("../images/ico-tools.png");
  background-size: 60px 60px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 60px;
  min-width: 60px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 371, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-size: 60px 60px;
    height: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 371, ../sass/_styleguide.scss */
  .rt-resources-icon {
    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 371, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-image: url("../images/ico-tools@2x.png");
    background-size: 60px 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 371, ../sass/_styleguide.scss */
  .rt-resources-icon {
    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 371, ../sass/_styleguide.scss */
  .rt-resources-icon {
    background-size: 60px 60px;
    height: 60px;
  }
}

/* line 379, ../sass/_styleguide.scss */
.rt-study-icon {
  background-image: url("../images/ico-study-new.png");
  background-size: 51px 60px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: " ";
  height: 60px;
  min-width: 51px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 379, ../sass/_styleguide.scss */
  .rt-study-icon {
    background-size: 51px 60px;
    height: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 379, ../sass/_styleguide.scss */
  .rt-study-icon {
    background-size: 51px 60px;
    height: 60px;
  }
}

/* line 384, ../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 384, ../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 384, ../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 384, ../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 392, ../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 392, ../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 392, ../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 397, ../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 397, ../sass/_styleguide.scss */
  .previous-arrow-icon, .previousNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 397, ../sass/_styleguide.scss */
  .previous-arrow-icon, .previousNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}

/* line 402, ../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 402, ../sass/_styleguide.scss */
  .next-arrow-icon, .nextNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 402, ../sass/_styleguide.scss */
  .next-arrow-icon, .nextNavigation {
    background-size: 15px 25px;
    height: 25px;
  }
}

/* line 407, ../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 407, ../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 407, ../sass/_styleguide.scss */
  .next-arrow-small-icon, .bottom-view-link {
    background-size: 8px 14px;
    height: 14px;
  }
}

/* line 412, ../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 412, ../sass/_styleguide.scss */
  .doc-icon {
    background-size: 74px 77px;
    height: 77px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 412, ../sass/_styleguide.scss */
  .doc-icon {
    background-size: 74px 77px;
    height: 77px;
  }
}

/* line 416, ../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 416, ../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 416, ../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 420, ../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 420, ../sass/_styleguide.scss */
  .extlink-icon {
    background-size: 10px 10px;
    height: 10px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 420, ../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 420, ../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 420, ../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 420, ../sass/_styleguide.scss */
  .extlink-icon {
    background-size: 10px 10px;
    height: 10px;
  }
}

/* line 428, ../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 428, ../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 428, ../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 432, ../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 432, ../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 432, ../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 432, ../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 432, ../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 432, ../sass/_styleguide.scss */
  .building-icon, .contact-method-icon-postal-mail {
    background-size: 29.5px 30.5px;
    height: 30.5px;
  }
}

/* line 440, ../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 440, ../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 440, ../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 443, ../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 443, ../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 443, ../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 448, ../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 448, ../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 448, ../sass/_styleguide.scss */
  .web-form-icon, .contact-method-icon-web-form {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 452, ../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 452, ../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 452, ../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 456, ../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 456, ../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 456, ../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 464, ../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 464, ../sass/_styleguide.scss */
  .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 464, ../sass/_styleguide.scss */
  .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 467, ../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 {
  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 467, ../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 {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 467, ../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 {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 471, ../sass/_styleguide.scss */
.map-icon-white, .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 471, ../sass/_styleguide.scss */
  .map-icon-white, .tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 471, ../sass/_styleguide.scss */
  .map-icon-white, .tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 474, ../sass/_styleguide.scss */
.map-icon-white-top, .locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation {
  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 474, ../sass/_styleguide.scss */
  .map-icon-white-top, .locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation {
    background-size: 21px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 474, ../sass/_styleguide.scss */
  .map-icon-white-top, .locationMap.contact-location-map-container .mapLocation, .locationMap .mapLocation {
    background-size: 21px 30px;
    height: 30px;
  }
}

/* line 478, ../sass/_styleguide.scss */
.calendar-icon, .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 478, ../sass/_styleguide.scss */
  .calendar-icon, .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 478, ../sass/_styleguide.scss */
  .calendar-icon, .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}

/* line 482, ../sass/_styleguide.scss */
.calendar-icon-white, .tcd-events-container .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 482, ../sass/_styleguide.scss */
  .calendar-icon-white, .tcd-events-container .eventdatesLocationType .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 482, ../sass/_styleguide.scss */
  .calendar-icon-white, .tcd-events-container .eventdatesLocationType .eventCalendarIcon {
    background-size: 31px 30px;
    height: 30px;
  }
}

/* line 486, ../sass/_styleguide.scss */
.health-education-background-image, .healthEducationBlock article.node--type-heath-education {
  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 486, ../sass/_styleguide.scss */
  .health-education-background-image, .healthEducationBlock article.node--type-heath-education {
    background-size: 100% 100%;
    height: 100%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 486, ../sass/_styleguide.scss */
  .health-education-background-image, .healthEducationBlock article.node--type-heath-education {
    background-size: 100% 100%;
    height: 100%;
  }
}

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

/* line 502, ../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 502, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-size: 39px 47px;
    height: 47px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 502, ../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 502, ../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 502, ../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 502, ../sass/_styleguide.scss */
  .standard-icon-current-vacancies {
    background-size: 34px 41px;
    height: 41px;
  }
}

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

/* line 520, ../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 520, ../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 520, ../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 520, ../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 520, ../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 520, ../sass/_styleguide.scss */
  .questionmark-icon, .ppg-funding-process-link {
    background-size: 19.5px 19.5px;
    height: 19.5px;
  }
}

/* line 528, ../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 528, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-size: 50px 43px;
    height: 43px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 528, ../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 528, ../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 528, ../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 528, ../sass/_styleguide.scss */
  .standard-icon-future-vacancies {
    background-size: 41px 35px;
    height: 35px;
  }
}

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

/* line 545, ../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 545, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-size: 34px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 545, ../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 545, ../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 545, ../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 545, ../sass/_styleguide.scss */
  .standard-icon-training-opportunities {
    background-size: 29px 38px;
    height: 38px;
  }
}

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

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

/* line 577, ../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 577, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-size: 38px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 577, ../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 577, ../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 577, ../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 577, ../sass/_styleguide.scss */
  .contact-type-icon-health {
    background-size: 36px 43px;
    height: 43px;
  }
}

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

/* line 595, ../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 595, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-size: 42px 42px;
    height: 42px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 595, ../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 595, ../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 595, ../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 595, ../sass/_styleguide.scss */
  .contact-type-icon-branding {
    background-size: 40px 40px;
    height: 40px;
  }
}

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

/* line 613, ../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 613, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-size: 53px 46px;
    height: 46px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 613, ../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 613, ../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 613, ../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 613, ../sass/_styleguide.scss */
  .contact-type-icon-news {
    background-size: 44px 38px;
    height: 38px;
  }
}

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

/* line 631, ../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 631, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-size: 45px 41px;
    height: 41px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 631, ../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 631, ../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 631, ../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 631, ../sass/_styleguide.scss */
  .contact-type-icon-website {
    background-size: 39px 35px;
    height: 35px;
  }
}

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

/* line 649, ../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 649, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-size: 36px 50px;
    height: 50px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 649, ../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 649, ../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 649, ../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 649, ../sass/_styleguide.scss */
  .contact-type-icon-operations {
    background-size: 29px 41px;
    height: 41px;
  }
}

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

/* line 667, ../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 667, ../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 667, ../sass/_styleguide.scss */
  .banner-promotion-icon, .banner-promotion-container {
    background-size: 55px 70px;
    height: 70px;
  }
}

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

/* line 679, ../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 679, ../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 679, ../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 679, ../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 679, ../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 679, ../sass/_styleguide.scss */
  .grants-and-training-icon-policies-and-guidelines {
    background-size: 37.5px 40px;
    height: 40px;
  }
}

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

/* line 694, ../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 694, ../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 694, ../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 694, ../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 694, ../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 694, ../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 694, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    width: 65px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 694, ../sass/_styleguide.scss */
  .grants-and-training-icon-funding-opportunities-and-contacts {
    width: 52.5px;
  }
}

/* line 709, ../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 709, ../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 709, ../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 709, ../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 709, ../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 709, ../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 709, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    width: 37px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 709, ../sass/_styleguide.scss */
  .grants-and-training-icon-training-and-career-development {
    width: 29.5px;
  }
}

/* line 726, ../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 726, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-size: 49px 50px;
    height: 50px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 726, ../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 726, ../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 726, ../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 726, ../sass/_styleguide.scss */
  .division-icon-scientific-divisions {
    background-size: 49px 50px;
    height: 50px;
  }
}

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

/* line 741, ../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 741, ../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 741, ../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 741, ../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 741, ../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 741, ../sass/_styleguide.scss */
  .division-icon-operations-and-administration {
    background-size: 44px 40px;
    height: 40px;
  }
}

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

/* line 756, ../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 756, ../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 756, ../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 756, ../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 756, ../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 756, ../sass/_styleguide.scss */
  .division-icon-advisory-committees {
    background-size: 53.5px 40px;
    height: 40px;
  }
}

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

/* line 771, ../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 771, ../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 771, ../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 771, ../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 771, ../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 771, ../sass/_styleguide.scss */
  .division-icon-budget-and-legislative {
    background-size: 40px 40px;
    height: 40px;
  }
}

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

/* line 786, ../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 786, ../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 786, ../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 786, ../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 786, ../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 786, ../sass/_styleguide.scss */
  .division-icon-meet-the-director {
    background-size: 40px 40px;
    height: 40px;
  }
}

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

/* line 800, ../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 800, ../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 800, ../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 800, ../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 800, ../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 800, ../sass/_styleguide.scss */
  .division-icon-meet-the-director-female {
    background-size: 40px 40px;
    height: 40px;
  }
}

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

/* line 817, ../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 817, ../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 817, ../sass/_styleguide.scss */
  .career-stage-background-high-school {
    background-size: 233px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 817, ../sass/_styleguide.scss */
  .career-stage-background-high-school {
    width: 233px;
  }
}

/* line 823, ../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 823, ../sass/_styleguide.scss */
  .career-stage-background-postbac {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 823, ../sass/_styleguide.scss */
  .career-stage-background-postbac {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 823, ../sass/_styleguide.scss */
  .career-stage-background-postbac {
    width: 189px;
  }
}

/* line 829, ../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 829, ../sass/_styleguide.scss */
  .career-stage-background-graduate {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 829, ../sass/_styleguide.scss */
  .career-stage-background-graduate {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 829, ../sass/_styleguide.scss */
  .career-stage-background-graduate {
    width: 189px;
  }
}

/* line 835, ../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 835, ../sass/_styleguide.scss */
  .career-stage-background-postdoctoral {
    background-size: 190px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 835, ../sass/_styleguide.scss */
  .career-stage-background-postdoctoral {
    background-size: 190px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 835, ../sass/_styleguide.scss */
  .career-stage-background-postdoctoral {
    width: 190px;
  }
}

/* line 841, ../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 841, ../sass/_styleguide.scss */
  .career-stage-background-earlycareer {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 841, ../sass/_styleguide.scss */
  .career-stage-background-earlycareer {
    background-size: 189px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 841, ../sass/_styleguide.scss */
  .career-stage-background-earlycareer {
    width: 189px;
  }
}

/* line 847, ../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 847, ../sass/_styleguide.scss */
  .career-stage-background-established {
    background-size: 172px 147px;
    height: 147px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 847, ../sass/_styleguide.scss */
  .career-stage-background-established {
    background-size: 172px 147px;
    height: 147px;
  }
}
@media all and (min-width: 1100px) {
  /* line 847, ../sass/_styleguide.scss */
  .career-stage-background-established {
    width: 172px;
  }
}

/* line 854, ../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 854, ../sass/_styleguide.scss */
  .searchbox-icon, #searchBoxIcon, #searchBoxIconInner {
    background-size: 25px 25px;
    height: 25px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 854, ../sass/_styleguide.scss */
  .searchbox-icon, #searchBoxIcon, #searchBoxIconInner {
    background-size: 25px 25px;
    height: 25px;
  }
}

/* line 858, ../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 {
  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 858, ../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 {
    background-size: 13px 17px;
    height: 17px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 858, ../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 {
    background-size: 13px 17px;
    height: 17px;
  }
}

/* line 862, ../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, a.viewalllink, a.viewalllink:visited, .viewalllink:visited, .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-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-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 {
  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 862, ../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, a.viewalllink, a.viewalllink:visited, .viewalllink:visited, .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-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-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 {
    background-size: 13px 17px;
    height: 17px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 862, ../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, a.viewalllink, a.viewalllink:visited, .viewalllink:visited, .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-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-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 {
    background-size: 13px 17px;
    height: 17px;
  }
}

/* line 866, ../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 866, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-size: 36px 34px;
    height: 34px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 866, ../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 866, ../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 866, ../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 866, ../sass/_styleguide.scss */
  .updates-icon, .updateListTeaserTitle {
    background-size: 36px 34px;
    height: 34px;
  }
}

/* line 873, ../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 873, ../sass/_styleguide.scss */
  .event-type-icon {
    background-size: 36px 30px;
    height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 873, ../sass/_styleguide.scss */
  .event-type-icon {
    background-size: 36px 30px;
    height: 30px;
  }
}

/* line 877, ../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 877, ../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 877, ../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 877, ../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 884, ../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 884, ../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 884, ../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 884, ../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 884, ../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 884, ../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 884, ../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 894, ../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 894, ../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 894, ../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 894, ../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 901, ../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 901, ../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 901, ../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 901, ../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 901, ../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 901, ../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 901, ../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 912, ../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 912, ../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 912, ../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 912, ../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 912, ../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 912, ../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 920, ../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 920, ../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 920, ../sass/_styleguide.scss */
  .arrow-icon, .storycalloutlist li:before {
    background-size: 7px 11px;
    height: 11px;
  }
}

/* line 925, ../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 925, ../sass/_styleguide.scss */
  .bluesquare-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 925, ../sass/_styleguide.scss */
  .bluesquare-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 929, ../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 929, ../sass/_styleguide.scss */
  .transparent-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 929, ../sass/_styleguide.scss */
  .transparent-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

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

/* line 940, ../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 940, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-size: 89px 51px;
    height: 51px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 940, ../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 940, ../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 940, ../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 940, ../sass/_styleguide.scss */
  .card-icon-pivotal-trial {
    background-size: 89px 51px;
    height: 51px;
  }
}

/* line 947, ../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 947, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 947, ../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 947, ../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 947, ../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 947, ../sass/_styleguide.scss */
  .card-icon-research-tools {
    background-size: 61px 59px;
    height: 59px;
  }
}

/* line 953, ../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 953, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-size: 61px 59px;
    height: 59px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 953, ../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 953, ../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 953, ../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 953, ../sass/_styleguide.scss */
  .card-icon-research-resources {
    background-size: 61px 59px;
    height: 59px;
  }
}

/* line 960, ../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 960, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-size: 65px 58px;
    height: 58px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 960, ../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 960, ../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 960, ../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 960, ../sass/_styleguide.scss */
  .card-icon-branch-lab {
    background-size: 65px 58px;
    height: 58px;
  }
}

/* line 967, ../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 967, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-size: 60px 60px;
    height: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 967, ../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 967, ../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 967, ../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 967, ../sass/_styleguide.scss */
  .card-icon-programs {
    background-size: 60px 60px;
    height: 60px;
  }
}

/* line 974, ../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 974, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-size: 80px 66px;
    height: 66px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 974, ../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 974, ../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 974, ../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 974, ../sass/_styleguide.scss */
  .card-icon-consortium {
    background-size: 80px 66px;
    height: 66px;
  }
}

/* line 983, ../sass/_styleguide.scss */
.btn-dismiss, #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, #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 983, ../sass/_styleguide.scss */
  .btn-dismiss, #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, #image-container a.modal-close {
    background-size: 25px 23px;
    height: 23px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 983, ../sass/_styleguide.scss */
  .btn-dismiss, #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, #image-container a.modal-close {
    background-size: 25px 23px;
    height: 23px;
  }
}

/* line 986, ../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 986, ../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 986, ../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 990, ../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 990, ../sass/_styleguide.scss */
  .cross-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 990, ../sass/_styleguide.scss */
  .cross-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 994, ../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 994, ../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 994, ../sass/_styleguide.scss */
  .info-icon, .contact-nhlbi-titleblock .callout-contact-link a {
    background-size: 40px 40px;
    height: 40px;
  }
}

/* Topic Icons */
/* line 1000, ../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 1003, ../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 1006, ../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 1009, ../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 1012, ../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 1019, ../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 1019, ../sass/_styleguide.scss */
  .twitter-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1019, ../sass/_styleguide.scss */
  .twitter-icon {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1023, ../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 1023, ../sass/_styleguide.scss */
  .twitter-silhouette-icon, .twitterlink {
    background-size: 14px 14px;
    height: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1023, ../sass/_styleguide.scss */
  .twitter-silhouette-icon, .twitterlink {
    background-size: 14px 14px;
    height: 14px;
  }
}

/* line 1026, ../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 1026, ../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 1026, ../sass/_styleguide.scss */
  .twitter-large-silhouette-icon, .contact-method-icon-twitter {
    background-size: 25px 20px;
    height: 20px;
  }
}

/**
 * Global Header
 **/
/* line 1032, ../sass/_styleguide.scss */
.grayheader {
  height: 35px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 12px;
  background-color: #E8E8E8;
  color: #999;
}

/* line 1039, ../sass/_styleguide.scss */
a.menuItem, #main-menu-header #block-mainnavigation a, .menuItem, #main-menu-header #block-mainnavigation a {
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #999;
}

/* line 1045, ../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 1054, ../sass/_styleguide.scss */
.pageBanner {
  height: 55px;
  width: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1054, ../sass/_styleguide.scss */
  .pageBanner {
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1054, ../sass/_styleguide.scss */
  .pageBanner {
    height: 35px;
  }
}
/* line 1064, ../sass/_styleguide.scss */
.pageBanner img {
  max-height: 55px;
  width: 100%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1064, ../sass/_styleguide.scss */
  .pageBanner img {
    max-height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1064, ../sass/_styleguide.scss */
  .pageBanner img {
    max-height: 35px;
  }
}

/* line 1077, ../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 1077, ../sass/_styleguide.scss */
  .banner-red {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1077, ../sass/_styleguide.scss */
  .banner-red {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1081, ../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 1081, ../sass/_styleguide.scss */
  .banner-blue {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1081, ../sass/_styleguide.scss */
  .banner-blue {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1085, ../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 1085, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1085, ../sass/_styleguide.scss */
  .banner-light-blue {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1089, ../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 1089, ../sass/_styleguide.scss */
  .banner-yellow {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1089, ../sass/_styleguide.scss */
  .banner-yellow {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1093, ../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 1093, ../sass/_styleguide.scss */
  .banner-gray {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1093, ../sass/_styleguide.scss */
  .banner-gray {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1097, ../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 1097, ../sass/_styleguide.scss */
  .banner-hazel {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1097, ../sass/_styleguide.scss */
  .banner-hazel {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1101, ../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 1101, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-size: 652px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1101, ../sass/_styleguide.scss */
  .banner-red-blue {
    background-size: 507px 35px;
    height: 35px;
  }
}

/* line 1105, ../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 1105, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1105, ../sass/_styleguide.scss */
  .banner-new-red-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1108, ../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 1108, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1108, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 767px 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 1108, ../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 1108, ../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 1108, ../sass/_styleguide.scss */
  .banner-new-red {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1114, ../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 1114, ../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 1114, ../sass/_styleguide.scss */
  .banner-new-light-red-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1117, ../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 1117, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1117, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 767px 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 1117, ../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 1117, ../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 1117, ../sass/_styleguide.scss */
  .banner-new-light-red {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1123, ../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 1123, ../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 1123, ../sass/_styleguide.scss */
  .banner-new-red-orange-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1126, ../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 1126, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1126, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 767px 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 1126, ../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 1126, ../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 1126, ../sass/_styleguide.scss */
  .banner-new-red-orange {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1132, ../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 1132, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1132, ../sass/_styleguide.scss */
  .banner-new-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1135, ../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 1135, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1135, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 767px 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 1135, ../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 1135, ../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 1135, ../sass/_styleguide.scss */
  .banner-new-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1141, ../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 1141, ../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 1141, ../sass/_styleguide.scss */
  .banner-new-dark-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1144, ../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 1144, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1144, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 767px 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 1144, ../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 1144, ../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 1144, ../sass/_styleguide.scss */
  .banner-new-dark-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1150, ../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 1150, ../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 1150, ../sass/_styleguide.scss */
  .banner-new-light-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1153, ../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 1153, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1153, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 767px 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 1153, ../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 1153, ../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 1153, ../sass/_styleguide.scss */
  .banner-new-light-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1159, ../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 1159, ../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 1159, ../sass/_styleguide.scss */
  .banner-new-lighter-blue-high {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1162, ../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 1162, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 1100px 45px;
    height: 45px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1162, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 767px 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 1162, ../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 1162, ../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 1162, ../sass/_styleguide.scss */
  .banner-new-lighter-blue {
    background-size: 767px 35px;
    height: 35px;
  }
}

/* line 1169, ../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 1169, ../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 1169, ../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 1169, ../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 1169, ../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 1169, ../sass/_styleguide.scss */
  .home-page-background-image-hiv-cells {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1177, ../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 1177, ../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 1177, ../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 1177, ../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 1177, ../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 1177, ../sass/_styleguide.scss */
  .home-page-background-image-pneumonia {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1183, ../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 1183, ../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 1183, ../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 1183, ../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 1183, ../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 1183, ../sass/_styleguide.scss */
  .home-page-background-image-cell-lining {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1189, ../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 1189, ../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 1189, ../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 1189, ../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 1189, ../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 1189, ../sass/_styleguide.scss */
  .home-page-background-image-dividing-cells {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1195, ../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 1195, ../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 1195, ../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 1195, ../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 1195, ../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 1195, ../sass/_styleguide.scss */
  .home-page-background-image-cell-protein {
    background-size: 767px 533px;
    height: 533px;
  }
}

/* line 1201, ../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 1201, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-size: 1100px 511px;
    height: 511px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1201, ../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 1201, ../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 1201, ../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 1201, ../sass/_styleguide.scss */
  .home-page-background-mission {
    background-size: 1100px 511px;
    height: 511px;
  }
}

/* line 1210, ../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 1210, ../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 1216, ../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 1216, ../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 1222, ../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 1222, ../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 1228, ../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 1228, ../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 1234, ../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 1234, ../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 1243, ../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 1243, ../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 1256, ../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 1256, ../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 1264, ../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 1264, ../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 1272, ../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 1272, ../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 1280, ../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 (-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 1280, ../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;
  }
}

/* line 1288, ../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 (-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 1288, ../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: " ";
  }
}

/* line 1298, ../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 1298, ../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 1304, ../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 1304, ../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 1310, ../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 1310, ../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 1317, ../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 1317, ../sass/_styleguide.scss */
  .sv-objectives-high {
    background-size: 184px 184px;
    height: 184px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1317, ../sass/_styleguide.scss */
  .sv-objectives-high {
    background-size: 184px 184px;
    height: 184px;
  }
}

/* line 1320, ../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 1320, ../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 1320, ../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 1320, ../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 1320, ../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 1320, ../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 1326, ../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 1326, ../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 1326, ../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 1326, ../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 1326, ../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 1326, ../sass/_styleguide.scss */
  .sv-objectives-large, .strategic-vision-landing-goals-wrapper .strategic-vision-goals-center {
    background-size: 150px 150px;
    height: 150px;
  }
}

/* line 1332, ../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 1332, ../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 1332, ../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 1332, ../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 1332, ../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 1332, ../sass/_styleguide.scss */
  .sv-objectives-line, .objective-list-container .objective-list-image-line {
    background-size: 184px 242px;
    height: 242px;
  }
}

/* line 1339, ../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 1339, ../sass/_styleguide.scss */
  .sv-branding-high {
    background-size: 62px 61px;
    height: 61px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1339, ../sass/_styleguide.scss */
  .sv-branding-high {
    background-size: 35px 34px;
    height: 34px;
  }
}

/* line 1342, ../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 1342, ../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 1342, ../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 1342, ../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 1342, ../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 1342, ../sass/_styleguide.scss */
  .sv-branding, .objective-page-title {
    background-size: 35px 34px;
    height: 34px;
  }
}

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

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

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

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

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

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

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

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

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

/* line 1399, ../sass/_styleguide.scss */
.bannerdate-dark-gray {
  color: #575b5e;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
.bannerdate-dark-gray h1, .bannerdate-dark-gray .photocredit {
  color: #575b5e;
}
/* line 140, ../sass/_mixins.scss */
.bannerdate-dark-gray a, .bannerdate-dark-gray a:visited, .bannerdate-dark-gray a:link, .bannerdate-dark-gray a:hover {
  color: #575b5e;
}

/* line 1404, ../sass/_styleguide.scss */
.herobannertitle, .herobannertitle-grey {
  font-size: 30px;
  line-height: 38px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  margin-bottom: 0.5em;
}
@media all and (min-width: 1440px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    font-size: 22px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    line-height: 38px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    line-height: 38px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    line-height: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1404, ../sass/_styleguide.scss */
  .herobannertitle, .herobannertitle-grey {
    line-height: 30px;
  }
}
/* line 1668, ../sass/_mixins.scss */
.herobannertitle a, .herobannertitle-grey a {
  color: #fff;
  text-decoration: none;
}
/* line 1672, ../sass/_mixins.scss */
.herobannertitle a:link, .herobannertitle-grey a:link {
  color: #fff;
}
/* line 1675, ../sass/_mixins.scss */
.herobannertitle a:visited, .herobannertitle-grey a:visited {
  color: #fff;
}
/* line 1678, ../sass/_mixins.scss */
.herobannertitle a:hover, .herobannertitle-grey a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 1682, ../sass/_mixins.scss */
.herobannertitle a:active, .herobannertitle-grey a:active {
  color: #000;
}

/* line 1412, ../sass/_styleguide.scss */
.herobannertitle-grey {
  color: #575b5e;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
.herobannertitle-grey h1, .herobannertitle-grey .photocredit {
  color: #575b5e;
}
/* line 140, ../sass/_mixins.scss */
.herobannertitle-grey a, .herobannertitle-grey a:visited, .herobannertitle-grey a:link, .herobannertitle-grey a:hover {
  color: #575b5e;
}
/* line 1668, ../sass/_mixins.scss */
.herobannertitle-grey a {
  color: #575b5e;
  text-decoration: none;
}
/* line 1672, ../sass/_mixins.scss */
.herobannertitle-grey a:link {
  color: #575b5e;
}
/* line 1675, ../sass/_mixins.scss */
.herobannertitle-grey a:visited {
  color: #575b5e;
}
/* line 1678, ../sass/_mixins.scss */
.herobannertitle-grey a:hover {
  color: #575b5e;
  text-decoration: underline;
}
/* line 1682, ../sass/_mixins.scss */
.herobannertitle-grey a:active {
  color: #000;
}

/* line 1417, ../sass/_styleguide.scss */
.white-text, .bodytext.white-text, .white-text.darkGrayBodyText, .white-text.foa-expiration-date, h1.white-text,
h2.white-text,
.white-text.contact-method-label, h3.white-text, h4.white-text {
  color: #fff;
}
/* line 1420, ../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,
.white-text.contact-method-label .bodytext,
h2.white-text .darkGrayBodyText,
.white-text.contact-method-label .darkGrayBodyText,
h2.white-text .foa-expiration-date,
.white-text.contact-method-label .foa-expiration-date, h3.white-text .bodytext, h3.white-text .darkGrayBodyText, h3.white-text .foa-expiration-date, h4.white-text .bodytext, h4.white-text .darkGrayBodyText, h4.white-text .foa-expiration-date {
  color: #fff;
}

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

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

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

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

/* line 1443, ../sass/_styleguide.scss */
.bannertext-black-header {
  color: #333;
}

/* line 1447, ../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, 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, a.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, .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 {
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  padding-left: 24px;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 1447, ../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, 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, a.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, .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 {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1447, ../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, 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, a.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, .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 {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1447, ../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, 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, a.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, .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 {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1447, ../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, 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, a.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, .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 {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1447, ../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, 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, a.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, .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 {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1447, ../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, 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, a.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, .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 {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1447, ../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, 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, a.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, .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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1447, ../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, 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, a.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, .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 {
    line-height: 16px;
  }
}

/* line 1458, ../sass/_styleguide.scss */
.updateListTeaserTitle {
  font-size: 24px;
  line-height: 30px;
  color: #000;
  padding-left: 55px;
  padding-bottom: 1em;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1458, ../sass/_styleguide.scss */
  .updateListTeaserTitle {
    line-height: 24px;
  }
}

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

/* line 1473, ../sass/_styleguide.scss */
.standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
  font-size: 16px;
  line-height: 22px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    line-height: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    line-height: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1473, ../sass/_styleguide.scss */
  .standardsubhead, .graysubhead, .bluesubhead, .whitesubhead, .blackstandardsubhead {
    line-height: 18px;
  }
}

/* line 1479, ../sass/_styleguide.scss */
.graysubhead {
  color: #575b5e;
}

/* line 1483, ../sass/_styleguide.scss */
.bluesubhead {
  color: #3885ca;
}

/* line 1487, ../sass/_styleguide.scss */
.primarybluesubhead, h3.primarybluesubhead {
  color: #1a568c;
}
/* line 1489, ../sass/_styleguide.scss */
.primarybluesubhead a, .primarybluesubhead a:link, .primarybluesubhead a:visited, h3.primarybluesubhead a, h3.primarybluesubhead a:link, h3.primarybluesubhead a:visited {
  color: #1a568c;
}

/* line 1494, ../sass/_styleguide.scss */
.whitesubhead {
  color: #fff;
}

/* line 1499, ../sass/_styleguide.scss */
.division-title, h3.division-title {
  font-size: 26px;
  line-height: 34px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  color: #1a568c;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    font-size: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    font-size: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    line-height: 34px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    line-height: 34px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    line-height: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1499, ../sass/_styleguide.scss */
  .division-title, h3.division-title {
    line-height: 28px;
  }
}

/* line 1506, ../sass/_styleguide.scss */
.news-events-topical-section .upperCaseHFour, .news-events-topical-section .blackstandardsubhead {
  padding-bottom: 0.5em;
}
/* line 1509, ../sass/_styleguide.scss */
.news-events-topical-section .whitesubhead {
  padding-bottom: 1.5em;
}
@media all and (min-width: 1100px) {
  /* line 1512, ../sass/_styleguide.scss */
  .news-events-topical-section .flexItemText {
    padding-left: 3.5rem;
  }
}
/* line 1521, ../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 1526, ../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 1531, ../sass/_styleguide.scss */
  .news-events-topical-section .eventdatesLocationType .eventLocation .map-icon {
    width: 47px;
    background-position: 15% center;
  }
}

/* line 1540, ../sass/_styleguide.scss */
.blackstandardsubhead {
  color: #000;
}

/* line 1545, ../sass/_styleguide.scss */
.grayaccordionheading, h3.grayaccordionheading,
h3.flataccordionheading
h3.graysubaccordionheading,
h3.graysubSecondHeader,
h3.graysubThirdHeader,
h3.flatHeader,
h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
h3.flataccordionheading
h3.graysubaccordionheading,
h3.graysubSecondHeader,
h3.graysubThirdHeader,
h3.flatHeader,
h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
  font-size: 18px;
  line-height: 30px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #575b5e;
}
@media all and (min-width: 1440px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    line-height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1545, ../sass/_styleguide.scss */
  .grayaccordionheading, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, .accordion-header, .field--name-field-session-subtitle, h3.grayaccordionheading,
  h3.flataccordionheading
  h3.graysubaccordionheading,
  h3.graysubSecondHeader,
  h3.graysubThirdHeader,
  h3.flatHeader,
  h3.accordion-header-secondary, h3.accordion-header, h3.field--name-field-session-subtitle {
    line-height: 20px;
  }
}

/* line 1562, ../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: 22px;
  line-height: 30px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-style: italic;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 1562, ../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: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1562, ../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: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1562, ../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: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1562, ../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: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1562, ../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 {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1562, ../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 {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1562, ../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 {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1562, ../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 {
    line-height: 24px;
  }
}

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

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

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

/* line 1580, ../sass/_styleguide.scss */
.associatedorganization {
  font-size: 16px;
  line-height: 24px;
  font-family: Lato, Verdana, Arial, sans-serif;
  color: #1a568c;
}
@media all and (min-width: 1440px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    line-height: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    line-height: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1580, ../sass/_styleguide.scss */
  .associatedorganization {
    line-height: 18px;
  }
}

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

/* line 1601, ../sass/_styleguide.scss */
.blacksubhead {
  font-size: 16px;
  line-height: 30px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    line-height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1601, ../sass/_styleguide.scss */
  .blacksubhead {
    line-height: 20px;
  }
}

/* line 1608, ../sass/_styleguide.scss */
.blacksubhead-normal {
  font-size: 16px;
  line-height: 30px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000;
  text-transform: none;
}
@media all and (min-width: 1440px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    line-height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1608, ../sass/_styleguide.scss */
  .blacksubhead-normal {
    line-height: 20px;
  }
}
/* line 1614, ../sass/_styleguide.scss */
.blacksubhead-normal div {
  display: inline;
}

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

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

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

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

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

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

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

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

/* line 1683, ../sass/_styleguide.scss */
.membername {
  font-size: 22px;
  line-height: 32px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #333;
}
@media all and (min-width: 1440px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    font-size: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    font-size: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    font-size: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    line-height: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    line-height: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    line-height: 28px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1683, ../sass/_styleguide.scss */
  .membername {
    line-height: 24px;
  }
}
/* line 1688, ../sass/_styleguide.scss */
.membername a, .membername a:link, .membername a:visited {
  color: #333;
}

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

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

/* line 1705, ../sass/_styleguide.scss */
.profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
  font-size: 14px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1705, ../sass/_styleguide.scss */
  .profiledescription, .node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
    line-height: 16px;
  }
}

/* line 1712, ../sass/_styleguide.scss */
.directordate {
  font-size: 16px;
  line-height: 24px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    line-height: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    line-height: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1712, ../sass/_styleguide.scss */
  .directordate {
    line-height: 20px;
  }
}

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

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

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

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

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

/* line 1758, ../sass/_styleguide.scss */
.speakername {
  font-size: 16px;
  line-height: 24px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    line-height: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    line-height: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1758, ../sass/_styleguide.scss */
  .speakername {
    line-height: 22px;
  }
}

/**
 * Publications/Fact Sheet Tiles
 **/
/* line 1769, ../sass/_styleguide.scss */
h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: normal;
  color: #575b5e;
}
@media all and (min-width: 1440px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    line-height: 26x;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1769, ../sass/_styleguide.scss */
  h3.publicationTitle, h3.primary-blue-publication-title, .publicationTitle, h3.primary-blue-publication-title {
    line-height: 20px;
  }
}
/* line 1773, ../sass/_styleguide.scss */
h3.publicationTitle a, h3.primary-blue-publication-title a, h3.publicationTitle a:link, h3.primary-blue-publication-title a:link, h3.publicationTitle a:visited, h3.primary-blue-publication-title a:visited, h3.publicationTitle a:hover, h3.primary-blue-publication-title a:hover, .publicationTitle a, h3.primary-blue-publication-title a, .publicationTitle a:link, h3.primary-blue-publication-title a:link, .publicationTitle a:visited, h3.primary-blue-publication-title a:visited, .publicationTitle a:hover, h3.primary-blue-publication-title a:hover {
  color: #575b5e;
}

/* line 1777, ../sass/_styleguide.scss */
h3.primary-blue-publication-title {
  color: #1a568c;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
h3.primary-blue-publication-title h1, h3.primary-blue-publication-title .photocredit {
  color: #1a568c;
}
/* line 140, ../sass/_mixins.scss */
h3.primary-blue-publication-title a, h3.primary-blue-publication-title a:visited, h3.primary-blue-publication-title a:link, h3.primary-blue-publication-title a:hover {
  color: #1a568c;
}
/* line 1781, ../sass/_styleguide.scss */
h3.primary-blue-publication-title a, h3.primary-blue-publication-title a:link, h3.primary-blue-publication-title a:visited, h3.primary-blue-publication-title a:hover {
  color: #1a568c;
}

/* line 1787, ../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;
}
/* line 1792, ../sass/_styleguide.scss */
.publicationCard .flexItemImage, .publicationCard .flexItemImageHalf, .publicationCard .flexItemImageTenth, .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%;
}
/* line 1801, ../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 1801, ../sass/_styleguide.scss */
  .publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
    padding: 1em 1em 1em 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1801, ../sass/_styleguide.scss */
  .publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
    padding: 1em 1em 1em 0;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1801, ../sass/_styleguide.scss */
  .publicationCard .flexItemText, .publicationCard .flexItemText.flexItemTextHalf {
    padding: 1em 1em 1em 0;
  }
}
/* line 1819, ../sass/_styleguide.scss */
.publicationCard .flexItemText.flexTextWithImage {
  max-width: 66%;
  flex-basis: 66%;
}

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

/**
 * Scientific Focus Area Cards
 **/
/* line 1834, ../sass/_styleguide.scss */
.sfaname {
  font-size: 16px;
  line-height: 24px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    line-height: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    line-height: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1834, ../sass/_styleguide.scss */
  .sfaname {
    line-height: 22px;
  }
}

/**
 * Page Elements
 **/
/* line 1845, ../sass/_styleguide.scss */
.filename, .node--type-systematic-evidence-review .file-download-button a:link,
.node--type-clinical-practice-guideline .file-download-button a:link {
  font-size: 14px;
  color: #3885ca;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 1851, ../sass/_styleguide.scss */
.graydetail {
  font-size: 12px;
  color: #333;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 1857, ../sass/_styleguide.scss */
.graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
  font-size: 14px;
  line-height: 22px;
  color: #333;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 12px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    font-size: 10px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    line-height: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    line-height: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1857, ../sass/_styleguide.scss */
  .graydate, .publicationCard .flexItemText .datetime, .publicationCard .flexItemText.flexItemTextHalf .datetime {
    line-height: 18px;
  }
}
/* line 1862, ../sass/_styleguide.scss */
.graydate div, .publicationCard .flexItemText .datetime div, .publicationCard .flexItemText.flexItemTextHalf .datetime div {
  display: inline;
}

/* line 1867, ../sass/_styleguide.scss */
.whitedate {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 1em;
}
@media all and (min-width: 1440px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 12px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    font-size: 10px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    line-height: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    line-height: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1867, ../sass/_styleguide.scss */
  .whitedate {
    line-height: 18px;
  }
}
/* line 1873, ../sass/_styleguide.scss */
.whitedate div {
  display: inline;
}

/* line 1877, ../sass/_styleguide.scss */
.posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
  font-size: 20px;
  line-height: 28px;
  color: #575b5e;
  background-color: transparent;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    line-height: 28px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    line-height: 28px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1877, ../sass/_styleguide.scss */
  .posttitlethumb, .blue-posttitlethumb, .objective-list-container .objective-side-text {
    line-height: 20px;
  }
}
/* line 137, ../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: #575b5e;
}
/* line 140, ../sass/_mixins.scss */
.posttitlethumb a, .blue-posttitlethumb a, .objective-list-container .objective-side-text a, .posttitlethumb a:visited, .blue-posttitlethumb a:visited, .objective-list-container .objective-side-text a:visited, .posttitlethumb a:link, .blue-posttitlethumb a:link, .objective-list-container .objective-side-text a:link, .posttitlethumb a:hover, .blue-posttitlethumb a:hover, .objective-list-container .objective-side-text a:hover {
  color: #575b5e;
}

/* line 1884, ../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 .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 .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 .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 .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 .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 .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 .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 .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 .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-bottom: 0.5em;
}

/* line 1888, ../sass/_styleguide.scss */
.blue-posttitlethumb {
  color: #3885ca;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
.blue-posttitlethumb h1, .blue-posttitlethumb .photocredit {
  color: #3885ca;
}
/* line 140, ../sass/_mixins.scss */
.blue-posttitlethumb a, .blue-posttitlethumb a:visited, .blue-posttitlethumb a:link, .blue-posttitlethumb a:hover {
  color: #3885ca;
}

/* line 1894, ../sass/_styleguide.scss */
.pubname {
  font-size: 18px;
  line-height: 26px;
  color: #1a568c;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 0.5em;
}
@media all and (min-width: 1440px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1894, ../sass/_styleguide.scss */
  .pubname {
    line-height: 20px;
  }
}

/* line 1902, ../sass/_styleguide.scss */
.lastupdatedlabel {
  font-size: 12px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: italic;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 1902, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 12px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 1902, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1902, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 12px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1902, ../sass/_styleguide.scss */
  .lastupdatedlabel {
    font-size: 10px;
  }
}

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

/* line 1913, ../sass/_styleguide.scss */
.researchTopicRelatedLinks {
  padding: 2rem 2rem 1rem 4rem;
  background-color: #f1f7fb;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1913, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks {
    padding: 1.5rem 2rem 1rem 1.5rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1913, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks {
    padding: 1rem;
  }
}
/* line 1922, ../sass/_styleguide.scss */
.researchTopicRelatedLinks h2, .researchTopicRelatedLinks .contact-method-label {
  line-height: 2em;
}
/* line 1925, ../sass/_styleguide.scss */
.researchTopicRelatedLinks ul {
  list-style-type: none;
  padding-left: 1.8rem;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1925, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks ul {
    padding-left: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1925, ../sass/_styleguide.scss */
  .researchTopicRelatedLinks ul {
    padding-left: 0.5rem;
  }
}
/* line 1934, ../sass/_styleguide.scss */
.researchTopicRelatedLinks ul li {
  margin-bottom: 0;
}

/* line 1940, ../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.42857em 0;
}

/* line 1950, ../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 1954, ../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-scientific-leadership,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat, .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-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.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-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.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 article.title-banner, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education, .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 .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, .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.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 article.title-banner, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full article.title-banner,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.title-banner,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full article.title-banner,
.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-scientific-leadership,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat,
.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-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.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-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.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 article.title-banner,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education,
.healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education,
.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 .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,
.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.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 article.title-banner,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.title-banner,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner, .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 1958, ../sass/_styleguide.scss */
.gray-hr, .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 .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 .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 .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 .contact-method-label, .news-header-container .blacksubhead-normal {
  border-bottom: 3px #d7d7d7 solid;
  border-color: #d7d7d7;
}

/* line 1962, ../sass/_styleguide.scss */
.darker-gray-hr, .related-ht-press-container .card h2, .related-ht-press-container .card .contact-method-label {
  border-bottom: 2px #aeafb0 solid;
  border-color: #aeafb0;
}

/* line 1967, ../sass/_styleguide.scss */
.blue-hr, .contact-method-label, .contacts-container h2, .contacts-container .contact-method-label {
  border-bottom: 3px #d7e7f4 solid;
  border-color: #d7e7f4;
}

/* line 1973, ../sass/_styleguide.scss */
.audiotitle {
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #102d66;
}

/* line 1981, ../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-scientific-leadership audio,
.media-nhlbi-audio.field--name-field-operations-and-administrat 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-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.field--name-field-grants-and-training-card audio, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio audio,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio audio, .publicationsBlock > .media-nhlbi-audio.view-content audio,
.media-nhlbi-audio.field--name-field-related-publications audio, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education 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, .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 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.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 article.media-nhlbi-audio audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio audio {
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 10px;
  color: #575b5e;
}

/* line 1988, ../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-scientific-leadership,
.media-nhlbi-audio.field--name-field-operations-and-administrat, .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-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.field--name-field-grants-and-training-card, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio, .publicationsBlock > .media-nhlbi-audio.view-content,
.media-nhlbi-audio.field--name-field-related-publications, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education, .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, .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, .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.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 article.media-nhlbi-audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio {
  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 1988, ../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-scientific-leadership,
  .media-nhlbi-audio.field--name-field-operations-and-administrat, .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-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.field--name-field-grants-and-training-card, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio, .publicationsBlock > .media-nhlbi-audio.view-content,
  .media-nhlbi-audio.field--name-field-related-publications, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education, .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, .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, .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.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 article.media-nhlbi-audio,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 1995, ../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-scientific-leadership audio,
.media-nhlbi-audio.field--name-field-operations-and-administrat 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-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.field--name-field-grants-and-training-card audio, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio audio,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio audio, .publicationsBlock > .media-nhlbi-audio.view-content audio,
.media-nhlbi-audio.field--name-field-related-publications audio, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education 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, .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 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.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 article.media-nhlbi-audio audio,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio audio {
  padding-top: 1.5em;
  width: 100%;
}
/* line 2000, ../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-scientific-leadership .other-info,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.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-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.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 article.media-nhlbi-audio .other-info,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .other-info, .publicationsBlock > .media-nhlbi-audio.view-content .other-info,
.media-nhlbi-audio.field--name-field-related-publications .other-info, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .other-info,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .other-info {
  padding-top: 0.5em;
}
/* line 2003, ../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-scientific-leadership .flexItemImage,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.field--name-field-grants-and-training-card .flexItemImage, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .flexItemImage, .publicationsBlock > .media-nhlbi-audio.view-content .flexItemImage,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImage, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .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-scientific-leadership .flexItemImageHalf,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.field--name-field-grants-and-training-card .flexItemImageHalf, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .flexItemImageHalf, .publicationsBlock > .media-nhlbi-audio.view-content .flexItemImageHalf,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageHalf, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .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-scientific-leadership .flexItemImageTenth,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.field--name-field-grants-and-training-card .flexItemImageTenth, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .flexItemImageTenth, .publicationsBlock > .media-nhlbi-audio.view-content .flexItemImageTenth,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageTenth, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .flexItemImageTenth, .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-scientific-leadership .flexItemImageThird,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.field--name-field-grants-and-training-card .flexItemImageThird, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .flexItemImageThird, .publicationsBlock > .media-nhlbi-audio.view-content .flexItemImageThird,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageThird, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .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-scientific-leadership .flexItemImageThirdHalf,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.field--name-field-grants-and-training-card .flexItemImageThirdHalf, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .flexItemImageThirdHalf, .publicationsBlock > .media-nhlbi-audio.view-content .flexItemImageThirdHalf,
.media-nhlbi-audio.field--name-field-related-publications .flexItemImageThirdHalf, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .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-scientific-leadership .hero-image,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.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-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.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 article.media-nhlbi-audio .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .hero-image, .publicationsBlock > .media-nhlbi-audio.view-content .hero-image,
.media-nhlbi-audio.field--name-field-related-publications .hero-image, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .hero-image {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  border: #fff solid 4px;
  margin-right: 1em;
}
/* line 2010, ../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-scientific-leadership .flexItemText,
.media-nhlbi-audio.field--name-field-operations-and-administrat .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-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.field--name-field-grants-and-training-card .flexItemText, .media-nhlbi-audio.field--name-field-division-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.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 article.media-nhlbi-audio .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.media-nhlbi-audio .flexItemText, .publicationsBlock > .media-nhlbi-audio.view-content .flexItemText,
.media-nhlbi-audio.field--name-field-related-publications .flexItemText, .healthEducationBlock article.media-nhlbi-audio.node--type-heath-education .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, .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 .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.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 article.media-nhlbi-audio .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.media-nhlbi-audio .flexItemText {
  padding: 1em 1em 1em 0;
}

/* line 2016, ../sass/_styleguide.scss */
.glossarytext, .glossaryterm {
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #fff;
}

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

/* line 2025, ../sass/_styleguide.scss */
.node-glossary-term {
  display: inline-block;
}

/* line 2028, ../sass/_styleguide.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 2037, ../sass/_styleguide.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: #000;
}

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

/* line 2049, ../sass/_styleguide.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: 25px;
  position: absolute;
  right: 30px;
  top: 15px;
}
/* line 2056, ../sass/_styleguide.scss */
#glossary-container a.modal-close:hover, #searchBoxForm a.modal-close:hover, #print-container a.modal-close:hover {
  background-color: transparent;
}
/* line 2059, ../sass/_styleguide.scss */
#glossary-container .modalLeft, #searchBoxForm .modalLeft, #print-container .modalLeft {
  float: left;
}
/* line 2062, ../sass/_styleguide.scss */
#glossary-container .modalRight, #searchBoxForm .modalRight, #print-container .modalRight {
  float: right;
}

/* line 2067, ../sass/_styleguide.scss */
#glossary-container {
  background-color: #164278;
  padding: 30px 12px 30px 24px;
}
/* line 2070, ../sass/_styleguide.scss */
#glossary-container .message {
  margin-right: auto;
  margin-left: auto;
}

/* line 2076, ../sass/_styleguide.scss */
#image-container {
  display: table;
}
/* line 2079, ../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 2086, ../sass/_styleguide.scss */
#image-container img {
  display: block;
}
/* line 2089, ../sass/_styleguide.scss */
#image-container a.modal-close {
  width: 25px;
  position: absolute;
  right: 15px;
  top: 15px;
}
/* line 2095, ../sass/_styleguide.scss */
#image-container a.modal-close:hover {
  background-color: transparent;
}

/* line 2102, ../sass/_styleguide.scss */
.pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
  font-size: 18px;
  line-height: 26px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #575b5e;
}
@media all and (min-width: 1440px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2102, ../sass/_styleguide.scss */
  .pagenavtitle, .gov-delivery-foa-signup h5, .gov-delivery-foa-signup .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .gov-delivery-foa-signup span, .gov-delivery-foa-signup .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .gov-delivery-foa-signup span {
    line-height: 22px;
  }
}

/* line 2109, ../sass/_styleguide.scss */
.silabel, .nhlbi-publication-details-item-label {
  font-size: 16px;
  line-height: 26px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #000;
}
@media all and (min-width: 1440px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2109, ../sass/_styleguide.scss */
  .silabel, .nhlbi-publication-details-item-label {
    line-height: 22px;
  }
}

/* line 2119, ../sass/_styleguide.scss */
.pullquote {
  font-size: 30px;
  line-height: 40px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: lighter;
  font-style: normal;
  color: #3885ca;
}
@media all and (min-width: 1440px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    line-height: 40px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    line-height: 40px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2119, ../sass/_styleguide.scss */
  .pullquote {
    line-height: 26px;
  }
}

/* line 2128, ../sass/_styleguide.scss */
.calloutdata {
  font-size: 18px;
  line-height: 26px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: italic;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2128, ../sass/_styleguide.scss */
  .calloutdata {
    line-height: 16px;
  }
}

/* line 2135, ../sass/_styleguide.scss */
.storycallouttitle {
  font-size: 36px;
  line-height: 46px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: lighter;
  font-style: normal;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 36px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 36px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 28px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    font-size: 26px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    line-height: 46px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    line-height: 46px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    line-height: 38px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2135, ../sass/_styleguide.scss */
  .storycallouttitle {
    line-height: 34px;
  }
}

/**
 * Accordions
 **/
/* line 2154, ../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 2154, ../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 2154, ../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 2157, ../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 2157, ../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 2157, ../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 2160, ../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 2163, ../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 2166, ../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 2166, ../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 2166, ../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 2169, ../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 2169, ../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 2169, ../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 2172, ../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 2175, ../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 2182, ../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: 24px;
  line-height: 32px;
  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 2182, ../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: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2182, ../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: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2182, ../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: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2182, ../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: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2182, ../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 {
    line-height: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2182, ../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 {
    line-height: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2182, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2182, ../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 {
    line-height: 18px;
  }
}
/* line 2187, ../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: 24px;
  line-height: 32px;
  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 2187, ../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: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2187, ../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: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2187, ../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: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2187, ../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: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2187, ../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 {
    line-height: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2187, ../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 {
    line-height: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2187, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2187, ../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 {
    line-height: 18px;
  }
}

/* line 2195, ../sass/_styleguide.scss */
.ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.ui-accordion h3.ui-accordion-header.flatHeader,
.ui-accordion h3.ui-accordion-header.accordion-header-secondary,
.ui-accordion .ui-accordion-header.accordion-header,
.ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
  font-size: 18px;
  line-height: 30px;
  color: #575b5e;
  font-weight: normal;
  line-height: 1.875em;
  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: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    line-height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2195, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle {
    line-height: 20px;
  }
}
/* line 972, ../sass/_mixins.scss */
.ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader:hover,
.ui-accordion h3.ui-accordion-header.graysubThirdHeader: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:hover,
.ui-accordion .ui-accordion-header.field--name-field-session-subtitle:hover {
  color: #3885ca;
}

/* line 2202, ../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: 24px;
  line-height: 32px;
  color: #333;
  font-weight: normal;
  line-height: 1.875em;
  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;
  padding-left: 0;
  margin-right: 0;
}
@media all and (min-width: 1440px) {
  /* line 2202, ../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: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2202, ../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: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2202, ../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: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2202, ../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: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2202, ../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 {
    line-height: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2202, ../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 {
    line-height: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2202, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2202, ../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 {
    line-height: 18px;
  }
}
/* line 972, ../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 {
  color: #3885ca;
}

/* line 2211, ../sass/_styleguide.scss */
.supplemental-accordion .accordion-header,
.supplemental-accordion .grayaccordionheading,
.supplemental-accordion h3.flataccordionheading h3.graysubaccordionheading,
h3.flataccordionheading .supplemental-accordion h3.graysubaccordionheading,
.supplemental-accordion h3.graysubSecondHeader,
.supplemental-accordion h3.graysubThirdHeader,
.supplemental-accordion h3.flatHeader,
.supplemental-accordion h3.accordion-header-secondary,
.supplemental-accordion .accordion-header,
.supplemental-accordion .field--name-field-session-subtitle,
.supplemental-accordion .accordion-header-secondary {
  margin-top: 1em;
  margin-right: 1em;
}

/* line 2218, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header,
h3.flatHeader,
h3.accordion-header-secondary,
.ui-accordion h3.graysubSecondHeader .ui-accordion-header,
.ui-accordion h3.graysubSecondHeader,
.ui-accordion h3.graysubThirdHeader.ui-accordion-header,
h3.graysubThirdHeader {
  font-size: 22px;
  line-height: 28px;
  color: #575b5e;
  font-weight: bold;
  line-height: 1.875em;
  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: 18px;
  line-height: 30px;
  margin-right: 1rem;
}
@media all and (min-width: 1440px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 28px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 28px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 24x;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 22px;
  }
}
/* line 972, ../sass/_mixins.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header:hover,
h3.flatHeader:hover,
h3.accordion-header-secondary:hover,
.ui-accordion h3.graysubSecondHeader .ui-accordion-header:hover,
.ui-accordion h3.graysubSecondHeader:hover,
.ui-accordion h3.graysubThirdHeader.ui-accordion-header:hover,
h3.graysubThirdHeader:hover {
  color: #3885ca;
}
@media all and (min-width: 1440px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 30px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2218, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubaccordionheading.ui-accordion-header,
  h3.flatHeader,
  h3.accordion-header-secondary,
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  .ui-accordion h3.graysubSecondHeader,
  .ui-accordion h3.graysubThirdHeader.ui-accordion-header,
  h3.graysubThirdHeader {
    line-height: 20px;
  }
}

/* line 2230, ../sass/_styleguide.scss */
.accordionPadding {
  font-size: 24px;
  line-height: 32px;
}
@media all and (min-width: 1440px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    line-height: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    line-height: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2230, ../sass/_styleguide.scss */
  .accordionPadding {
    line-height: 18px;
  }
}

@media all and (min-width: 1100px) {
  /* line 2233, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
  h3.flatHeader,
  h3.accordion-header-secondary,
  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 2233, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
  h3.flatHeader,
  h3.accordion-header-secondary,
  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 2233, ../sass/_styleguide.scss */
  .ui-accordion .accordion-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 h3.ui-accordion-header.graysubSecondHeader,
  .ui-accordion h3.ui-accordion-header.graysubThirdHeader,
  .ui-accordion h3.ui-accordion-header.flatHeader,
  .ui-accordion h3.ui-accordion-header.accordion-header-secondary,
  .ui-accordion .ui-accordion-header.accordion-header,
  .ui-accordion .ui-accordion-header.field--name-field-session-subtitle,
  h3.flatHeader,
  h3.accordion-header-secondary,
  div.flatHeader,
  div.accordion-header-secondary,
  div.flatPlainUnderlinedHeader,
  div.flatPlainHeader,
  div.flatPlainHeaderWhite,
  .accordionPadding {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* line 2242, ../sass/_styleguide.scss */
.ui-accordion .accordion-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 h3.ui-accordion-header.ui-state-hover.graysubSecondHeader,
.ui-accordion h3.ui-accordion-header.ui-state-hover.graysubThirdHeader,
.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,
.ui-accordion .ui-accordion-header.ui-state-hover.field--name-field-session-subtitle {
  color: #3885ca;
}

/* line 2247, ../sass/_styleguide.scss */
div.flatHeader, div.accordion-header-secondary, div.flatPlainUnderlinedHeader, div.flatPlainHeader, div.flatPlainHeaderWhite,
h3.flatHeader,
h3.accordion-header-secondary {
  background: #d7e7f4;
  color: #333;
  border-color: #d7e7f4;
  text-decoration: none;
  margin-top: 1em;
  cursor: auto;
}
/* line 1047, ../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 {
  color: #333;
}

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

/* line 2261, ../sass/_styleguide.scss */
.flatPlainHeader.darkBlue, .darkBlue.flatPlainHeaderWhite,
h3.flatHeader.darkBlue,
h3.darkBlue.accordion-header-secondary {
  background: #102d65;
  color: #fff;
  border-color: #102d65;
  text-decoration: none;
}
/* line 1047, ../sass/_mixins.scss */
.flatPlainHeader.darkBlue:hover, .darkBlue.flatPlainHeaderWhite:hover,
h3.flatHeader.darkBlue:hover,
h3.darkBlue.accordion-header-secondary:hover {
  color: #fff;
}

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

/* line 2277, ../sass/_styleguide.scss */
.ui-accordion .accordion-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 h3.ui-accordion-header.ui-accordion-header-active.graysubSecondHeader,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubThirdHeader,
.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,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.field--name-field-session-subtitle {
  background: #d7e7f4;
  color: #333;
  border-color: #d7e7f4;
  text-decoration: none;
}
/* line 1047, ../sass/_mixins.scss */
.ui-accordion .accordion-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 h3.ui-accordion-header.ui-accordion-header-active.graysubSecondHeader:hover,
.ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubThirdHeader: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:hover,
.ui-accordion .ui-accordion-header.ui-accordion-header-active.field--name-field-session-subtitle:hover {
  color: #3885ca;
}

/* line 2282, ../sass/_styleguide.scss */
.supplemental-accordion .ui-accordion h3.ui-accordion-header-active.ui-state-active {
  background: #d7e7f4;
  color: #333;
  border-color: #d7e7f4;
  text-decoration: none;
}
/* line 1047, ../sass/_mixins.scss */
.supplemental-accordion .ui-accordion h3.ui-accordion-header-active.ui-state-active:hover {
  color: #3885ca;
}

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

/* line 2290, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-state-hover {
  color: #3885ca;
}

/* line 2295, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active {
  background: #575b5e;
  color: #fff;
  border-color: #575b5e;
  text-decoration: none;
}
/* line 1047, ../sass/_mixins.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active:hover {
  color: #3885ca;
}
/* line 2298, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header.ui-accordion-header-active .field--name-field-session-subtitle {
  color: #fff;
}

/* line 2304, ../sass/_styleguide.scss */
.ui-accordion h3.graysubaccordionheading.ui-accordion-header:hover {
  color: #3885ca;
}

/* line 2310, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader.ui-accordion-header.ui-accordion-header-active {
  background: #f2f2f2;
  color: #333;
  border-color: #f2f2f2;
  text-decoration: none;
}
/* line 1047, ../sass/_mixins.scss */
.ui-accordion h3.graysubSecondHeader.ui-accordion-header.ui-accordion-header-active:hover {
  color: #3885ca;
}

/* line 2313, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader .ui-accordion-header.ui-state-hover,
.ui-accordion h3.graysubThirdHeader.ui-accordion-header.ui-state-hover {
  color: #3885ca;
}

/* line 2319, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader .ui-accordion-header,
h3.graysubSecondHeader {
  font-size: 15px;
  line-height: 22px;
  min-height: 2.4em;
  line-height: 1.1em;
}
@media all and (min-width: 1440px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    font-size: 15px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    font-size: 15px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    font-size: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    font-size: 13px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    line-height: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    line-height: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2319, ../sass/_styleguide.scss */
  .ui-accordion h3.graysubSecondHeader .ui-accordion-header,
  h3.graysubSecondHeader {
    line-height: 16px;
  }
}
/* line 2325, ../sass/_styleguide.scss */
.ui-accordion h3.graysubSecondHeader .ui-accordion-header:hover,
h3.graysubSecondHeader:hover {
  color: #333;
}

/* line 2329, ../sass/_styleguide.scss */
h3.graysubSecondHeader .accordionOff {
  cursor: default;
}
/* line 2331, ../sass/_styleguide.scss */
h3.graysubSecondHeader .accordionOff:hover {
  color: #999;
}

/* line 2336, ../sass/_styleguide.scss */
.ui-accordion h3.graysubThirdHeader.ui-accordion-header.ui-accordion-header-active {
  background: #fff;
  color: #333;
  border-color: #fff;
  text-decoration: none;
}
/* line 1047, ../sass/_mixins.scss */
.ui-accordion h3.graysubThirdHeader.ui-accordion-header.ui-accordion-header-active:hover {
  color: #3885ca;
}

/* line 2340, ../sass/_styleguide.scss */
.ui-accordion h3.graysubThirdHeader.ui-accordion-header:hover {
  color: #3885ca;
}

/* line 2349, ../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: 14px;
  line-height: 20px;
  background-image: none;
  padding-left: 1.1em;
}
@media all and (min-width: 1440px) {
  /* line 2349, ../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: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2349, ../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: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2349, ../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: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2349, ../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: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2349, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2349, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2349, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2349, ../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 {
    line-height: 18px;
  }
}
@media all and (min-width: 1100px) {
  /* line 2349, ../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 2356, ../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: 100%;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
}
/* line 2358, ../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: #3885ca;
  text-decoration: none;
}
/* line 1410, ../sass/_mixins.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row .field-content > a :hover,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row .field-content > a :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row .field-content > a :hover {
  background-color: #f2f2f2;
}
/* line 2362, ../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: #3885ca;
  text-decoration: none;
}
/* line 1410, ../sass/_mixins.scss */
.general-accordion .ui-accordion-content.ui-widget-content .views-row > a :hover,
.primary-accordion .ui-accordion-content.ui-widget-content .views-row > a :hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .views-row > a :hover {
  background-color: #f2f2f2;
}
/* line 2365, ../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 2368, ../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 2373, ../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 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 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 h3.publicationTitle a:hover, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover, .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 .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 .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 .publicationTitle a:hover, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.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 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 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 h3.publicationTitle a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.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 .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 .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 .publicationTitle a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.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 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 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 h3.publicationTitle a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.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 .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 .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 .publicationTitle a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover {
  color: #575b5e;
}
/* line 2376, ../sass/_styleguide.scss */
.general-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:hover, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover, .general-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:hover, .general-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.publicationTitle a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .publicationTitle a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content h3.primary-blue-publication-title a:hover {
  text-decoration: underline;
}
/* line 2380, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2380, ../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: 0.35em 2.5em;
  }
}
/* line 1339, ../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: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2380, ../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: 0.35em 2.5em;
  }
}
/* line 1352, ../sass/_mixins.scss */
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink a:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.readMoreLink a:hover,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink a:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.readLessLink a:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton a:hover,
.general-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link a:hover,
.general-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.readLessLink a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link a:hover,
.primary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readMoreLink a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readMoreLink a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.readLessLink a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.readLessLink a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content a.bluebutton:link a:hover,
.secondary-accordion .ui-accordion-content.ui-widget-content .ui-widget-content a.bluebutton:link a:hover {
  text-decoration: none;
}
/* line 2389, ../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 2399, ../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: #000;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2399, ../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 2399, ../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 2399, ../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 2399, ../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 2399, ../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 2399, ../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 2404, ../sass/_styleguide.scss */
.secondary-accordion .ui-accordion-content.ui-widget-content {
  padding: 0.6em 0;
  border-top: 1px solid transparent;
  color: #000;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2404, ../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 2404, ../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 2404, ../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 2413, ../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: 1rem;
  font-size: 14px;
  line-height: 20px;
}
@media all and (min-width: 1440px) {
  /* line 2413, ../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: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2413, ../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: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2413, ../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: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2413, ../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: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2413, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2413, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2413, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2413, ../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 {
    line-height: 18px;
  }
}
@media all and (min-width: 768px) {
  /* line 2418, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content ul.list-style-type-none li,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none li,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none li,
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none li {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2418, ../sass/_styleguide.scss */
  .node--type-supplemental-page .ui-accordion-content.ui-widget-content ul.list-style-type-none li,
  .general-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none li,
  .primary-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none li,
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content ul.list-style-type-none li {
    line-height: 20px;
  }
}

/* line 2438, ../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: #000;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2438, ../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 2438, ../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 2438, ../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 2438, ../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 2438, ../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 2438, ../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 2443, ../sass/_styleguide.scss */
.supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #575b5e;
  color: #000;
  background-image: none;
}
@media all and (min-width: 1100px) {
  /* line 2443, ../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 2443, ../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 2443, ../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 2443, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 20px solid #575b5e;
    border-right: 20px solid #575b5e;
    border-bottom: 20px solid #575b5e;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2443, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 9px solid #575b5e;
    border-right: 9px solid #575b5e;
    border-bottom: 9px solid #575b5e;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2443, ../sass/_styleguide.scss */
  .supplemental-accordion.ui-accordion .ui-accordion-content.ui-widget-content {
    border-left: 6px solid #575b5e;
    border-right: 6px solid #575b5e;
    border-bottom: 6px solid #575b5e;
  }
}

/* line 2452, ../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 #575b5e;
  background-image: none;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2452, ../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 #575b5e;
    border-right: 20px solid #575b5e;
    border-bottom: 20px solid #575b5e;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2452, ../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 #575b5e;
    border-right: 9px solid #575b5e;
    border-bottom: 9px solid #575b5e;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2452, ../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 #575b5e;
    border-right: 6px solid #575b5e;
    border-bottom: 6px solid #575b5e;
  }
}
@media all and (min-width: 1440px) {
  /* line 2452, ../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: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2452, ../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: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2452, ../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: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2452, ../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: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2452, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2452, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2452, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2452, ../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 {
    line-height: 18px;
  }
}
@media all and (min-width: 1100px) {
  /* line 2452, ../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 2452, ../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 2452, ../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 2457, ../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 2457, ../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 2467, ../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 2471, ../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: 18px;
  line-height: 26px;
  background-color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2471, ../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: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2471, ../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: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2471, ../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: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2471, ../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: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2471, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2471, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2471, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2471, ../sass/_styleguide.scss */
  .node--type-supplemental-page .subSecondAccordion,
  .general-accordion.ui-accordion .subSecondAccordion,
  .primary-accordion.ui-accordion .subSecondAccordion,
  .secondary-accordion.ui-accordion .subSecondAccordion {
    line-height: 22px;
  }
}
/* line 2476, ../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: 14px;
  line-height: 20px;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2476, ../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 2476, ../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 2476, ../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 2476, ../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: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2476, ../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: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2476, ../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: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2476, ../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: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2476, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2476, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2476, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2476, ../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 {
    line-height: 18px;
  }
}
@media all and (min-width: 1100px) {
  /* line 2476, ../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 2476, ../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 2476, ../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 2482, ../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 2486, ../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 2492, ../sass/_styleguide.scss */
.width-fill-available, .subAccordionContainer, .healthEducationBlock article.node--type-heath-education .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 2492, ../sass/_styleguide.scss */
  .width-fill-available, .subAccordionContainer, .healthEducationBlock article.node--type-heath-education .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 2492, ../sass/_styleguide.scss */
  .width-fill-available, .subAccordionContainer, .healthEducationBlock article.node--type-heath-education .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 2507, ../sass/_styleguide.scss */
.centeredSubContainer.subAccordionContainer .ui-accordion-content {
  padding: 0;
}

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

/**
 * Filters
 **/
/* line 2521, ../sass/_styleguide.scss */
.formlabeltext, .node--type-webform label span, .webform-submission-form label span {
  font-size: 14px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #575b5e;
}
@media all and (min-width: 1440px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2521, ../sass/_styleguide.scss */
  .formlabeltext, .node--type-webform label span, .webform-submission-form label span {
    line-height: 16px;
  }
}

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

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

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

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

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

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

/* line 2559, ../sass/_styleguide.scss */
h3.filtertitle {
  font-size: 18px;
  line-height: 26px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: regular;
  color: #fff;
}
@media all and (min-width: 1440px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    line-height: 26px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    line-height: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2559, ../sass/_styleguide.scss */
  h3.filtertitle {
    line-height: 22px;
  }
}

/* line 2569, ../sass/_styleguide.scss */
.activity-code-text, .activity-code {
  font-size: 18px;
  line-height: 38px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: regular;
  color: #575b5e;
  text-transform: uppercase;
  padding: 1em;
}
@media all and (min-width: 1440px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    line-height: 38px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    line-height: 38px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    line-height: 38px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2569, ../sass/_styleguide.scss */
  .activity-code-text, .activity-code {
    line-height: 38px;
  }
}

/* line 2582, ../sass/_styleguide.scss */
.flexcontainer, .related-ht-ser-container, .field--name-field-sfa-card, .field--name-field-speaker,
.field--name-field-scientific-leadership,
.field--name-field-operations-and-administrat, .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-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, .field--name-field-grants-and-training-card, .field--name-field-division-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, .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 article,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article, .publicationsBlock > .view-content,
.field--name-field-related-publications, .healthEducationBlock article.node--type-heath-education, .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, .objective-text-container, .objective-list-container, .field--name-field-goal-card, .strategic-vision-landing-goals-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, .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 article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article {
  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 2582, ../sass/_styleguide.scss */
  .flexcontainer, .related-ht-ser-container, .field--name-field-sfa-card, .field--name-field-speaker,
  .field--name-field-scientific-leadership,
  .field--name-field-operations-and-administrat, .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-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, .field--name-field-grants-and-training-card, .field--name-field-division-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, .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 article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article, .publicationsBlock > .view-content,
  .field--name-field-related-publications, .healthEducationBlock article.node--type-heath-education, .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, .objective-text-container, .objective-list-container, .field--name-field-goal-card, .strategic-vision-landing-goals-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, .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 article,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 2591, ../sass/_styleguide.scss */
.flexItemImage, .flexItemImageHalf, .flexItemImageTenth, .flexItemImageThird, .flexItemImageThirdHalf, .hero-image {
  min-width: 50%;
  overflow: hidden;
  position: relative;
}
/* line 2596, ../sass/_styleguide.scss */
.flexItemImage img, .flexItemImageHalf img, .flexItemImageTenth img, .flexItemImageThird img, .flexItemImageThirdHalf img, .hero-image img {
  width: 100%;
  display: block;
}
/* line 2601, ../sass/_styleguide.scss */
.flexItemImage .social_media_header img, .flexItemImageHalf .social_media_header img, .flexItemImageTenth .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 2591, ../sass/_styleguide.scss */
  .flexItemImage, .flexItemImageHalf, .flexItemImageTenth, .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 2613, ../sass/_styleguide.scss */
.flexItemImageHalf {
  max-width: 50%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2613, ../sass/_styleguide.scss */
  .flexItemImageHalf {
    max-width: 100%;
  }
}

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

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

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

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

/* line 2665, ../sass/_styleguide.scss */
.flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
  font-size: 30px;
  line-height: 38px;
}
@media all and (min-width: 1440px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    font-size: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    line-height: 38px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    line-height: 34px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2665, ../sass/_styleguide.scss */
  .flexItemTextHalf .herobannertitle, .flexItemTextHalf .herobannertitle-grey, .flexItemText.flexItemTextHalf .herobannertitle, .flexItemText.flexItemTextHalf .herobannertitle-grey {
    line-height: 26px;
  }
}

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

/* line 2683, ../sass/_styleguide.scss */
.flexItemText.flexItemTextHalf {
  padding-top: 5em;
  padding-bottom: 0.5em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2683, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf {
    padding-top: 3em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2683, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf {
    padding: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2683, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf {
    width: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2702, ../sass/_styleguide.scss */
  .flexItemText.flexItemTextHalf p.view-all-wrapper {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2707, ../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 {
    display: none;
  }
}

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

/* line 2719, ../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 2719, ../sass/_styleguide.scss */
  .blueBorderedListItem, .node--type-research-topic .researchTopicPublications .flexItemText .views-field-field-publication-link {
    padding: 0.5rem 0;
  }
}

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

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2737, ../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 .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 2743, ../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: #000;
  }
}

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

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

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

/* line 2763, ../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 137, ../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 140, ../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:visited, .node--type-principal-investigator h1.white-header-text a:visited, .node--type-principal-investigator .white-header-text.upperCaseHFour a:visited, .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, .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 {
  color: #fff;
}

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

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

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

/* line 2776, ../sass/_styleguide.scss */
.newsRedBackground {
  color: #fff;
  background-color: #bf0d2e;
  overflow: hidden;
}

/* line 2782, ../sass/_styleguide.scss */
.newsRedBackground.white-header-text {
  color: #fff;
  background-color: #bf0d2e;
}
/* line 137, ../sass/_mixins.scss */
.newsRedBackground.white-header-text h1, .newsRedBackground.white-header-text .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.newsRedBackground.white-header-text a, .newsRedBackground.white-header-text a:visited, .newsRedBackground.white-header-text a:link, .newsRedBackground.white-header-text a:hover {
  color: #fff;
}

/* line 2790, ../sass/_styleguide.scss */
.darkRedBackground {
  color: #000;
  background-color: #850920;
  overflow: hidden;
}
/* line 2792, ../sass/_styleguide.scss */
.darkRedBackground h2, .darkRedBackground .contact-method-label {
  color: #fff;
}

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

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

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

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

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

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

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

/* line 2819, ../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 .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 {
  border: 10px solid #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2819, ../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 .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 {
    width: 90%;
  }
}

/* line 2825, ../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 2825, ../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 2835, ../sass/_styleguide.scss */
.upperCaseHFour {
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
}
@media all and (min-width: 1440px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2835, ../sass/_styleguide.scss */
  .upperCaseHFour {
    line-height: 22px;
  }
}

/* line 2840, ../sass/_styleguide.scss */
.largeDescription {
  line-height: 1.2em;
}
@media all and (min-width: 1100px) {
  /* line 2840, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2840, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2840, ../sass/_styleguide.scss */
  .largeDescription {
    font-size: 16px;
  }
}

/* line 2852, ../sass/_styleguide.scss */
.largeEm {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
}
@media all and (min-width: 1440px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2852, ../sass/_styleguide.scss */
  .largeEm {
    line-height: 22px;
  }
}

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

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

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

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

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

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

/* line 2887, ../sass/_styleguide.scss */
.fixedPane {
  padding: 0.6em 0;
  border-top: 1px solid #d7e7f4;
  color: #000;
  background-image: none;
  font-size: 14px;
  line-height: 20px;
  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 2887, ../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 2887, ../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 2887, ../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 2887, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2887, ../sass/_styleguide.scss */
  .fixedPane {
    line-height: 18px;
  }
}
/* line 1263, ../sass/_mixins.scss */
.fixedPane a {
  text-decoration: none;
  color: #3885ca;
}

/* line 2892, ../sass/_styleguide.scss */
.fixedDarkBluePane {
  padding: 0.6em 0;
  border-top: 1px solid #102d65;
  color: #fff;
  background-image: none;
  font-size: 14px;
  line-height: 20px;
  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 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    border-left: 0 solid #102d65;
    border-right: 0 solid #102d65;
    border-bottom: 0 solid #102d65;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    border-left: 0 solid #102d65;
    border-right: 0 solid #102d65;
    border-bottom: 0 solid #102d65;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    border-left: 0 solid #102d65;
    border-right: 0 solid #102d65;
    border-bottom: 0 solid #102d65;
  }
}
@media all and (min-width: 1440px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2892, ../sass/_styleguide.scss */
  .fixedDarkBluePane {
    line-height: 18px;
  }
}
/* line 1263, ../sass/_mixins.scss */
.fixedDarkBluePane a {
  text-decoration: none;
  color: #3885ca;
}

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

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

/* line 2908, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2908, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
.ui-widget-content a.readMoreLink:hover,
a.readMoreLink:hover,
.ui-widget-content a.readLessLink:hover,
a.readLessLink:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2908, ../sass/_styleguide.scss */
  .ui-widget-content a.readMoreLink,
  a.readMoreLink,
  .ui-widget-content a.readLessLink,
  a.readLessLink {
    padding: 0.35em 2.5em;
  }
}
/* line 1352, ../sass/_mixins.scss */
.ui-widget-content a.readMoreLink a:hover,
a.readMoreLink a:hover,
.ui-widget-content a.readLessLink a:hover,
a.readLessLink a:hover {
  text-decoration: none;
}

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

/* line 2922, ../sass/_styleguide.scss */
.darkGrayBodyText {
  color: #666;
}

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

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

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

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

/* line 2942, ../sass/_styleguide.scss */
h3.flat {
  cursor: auto;
}

/* line 2945, ../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 {
  font-size: 24px;
  line-height: 32px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #333;
}
@media all and (min-width: 1440px) {
  /* line 2945, ../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 {
    font-size: 24px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2945, ../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 {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2945, ../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 {
    font-size: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2945, ../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 {
    font-size: 18px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2945, ../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: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2945, ../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: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2945, ../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: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2945, ../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: 18px;
  }
}

/* line 2958, ../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;
}

/* line 2965, ../sass/_styleguide.scss */
div.flatPlainHeader, div.flatPlainHeaderWhite {
  padding-left: 0;
  background: none;
  border: none;
}

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

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

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

/* line 2981, ../sass/_styleguide.scss */
.whiteBottom {
  font-size: 18px;
  line-height: 30px;
  border-bottom: #fff 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 11em;
}
@media all and (min-width: 1440px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2981, ../sass/_styleguide.scss */
  .whiteBottom {
    line-height: 22px;
  }
}

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

/* line 2987, ../sass/_styleguide.scss */
.light-greyBottom {
  font-size: 18px;
  line-height: 30px;
  border-bottom: #d7d7d7 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 11em;
}
@media all and (min-width: 1440px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2987, ../sass/_styleguide.scss */
  .light-greyBottom {
    line-height: 22px;
  }
}

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

/* line 2993, ../sass/_styleguide.scss */
.blueText {
  color: #3885ca;
}

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

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

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

/* line 3008, ../sass/_styleguide.scss */
.centeredLineBrackets {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  color: #333;
  font-size: 22px;
  line-height: 28px;
}
@media all and (min-width: 1440px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    font-size: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    line-height: 28px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    line-height: 28px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    line-height: 24x;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3008, ../sass/_styleguide.scss */
  .centeredLineBrackets {
    line-height: 22px;
  }
}
/* line 3012, ../sass/_styleguide.scss */
.centeredLineBrackets span {
  padding: 0 1em 0 1em;
}

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

/* line 3033, ../sass/_styleguide.scss */
.see-also-links, .funding-area-related-resources-container {
  background-color: #f4f4f4;
  margin-top: 0;
  padding: 1em 0;
}
/* line 3037, ../sass/_styleguide.scss */
.see-also-links h2, .funding-area-related-resources-container h2, .see-also-links .contact-method-label, .funding-area-related-resources-container .contact-method-label {
  padding-bottom: 5px;
}
/* line 3040, ../sass/_styleguide.scss */
.see-also-links .content-container, .funding-area-related-resources-container .content-container, .see-also-links .topicFeatured .view-content, .topicFeatured .see-also-links .view-content, .funding-area-related-resources-container .topicFeatured .view-content, .topicFeatured .funding-area-related-resources-container .view-content, .see-also-links .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .see-also-links article, .funding-area-related-resources-container .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .funding-area-related-resources-container article, .see-also-links .previous-directors-container, .funding-area-related-resources-container .previous-directors-container {
  margin-top: 0;
  padding-top: 10px;
}
/* line 3044, ../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 3044, ../sass/_styleguide.scss */
  .see-also-links ul, .funding-area-related-resources-container ul {
    padding-left: 1rem;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3044, ../sass/_styleguide.scss */
  .see-also-links ul, .funding-area-related-resources-container ul {
    padding-left: 0.5rem;
  }
}
/* line 3055, ../sass/_styleguide.scss */
.see-also-links ul li, .funding-area-related-resources-container ul li {
  margin-bottom: 0;
}
/* line 3057, ../sass/_styleguide.scss */
.see-also-links ul li a, .funding-area-related-resources-container ul li a {
  text-decoration: none;
}
/* line 3060, ../sass/_styleguide.scss */
.see-also-links ul li a:hover, .funding-area-related-resources-container ul li a:hover {
  text-decoration: underline;
}

/* line 3068, ../sass/_styleguide.scss */
.social_media_header {
  clear: both;
}
/* line 3070, ../sass/_styleguide.scss */
.social_media_header ul {
  list-style-type: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
/* line 3076, ../sass/_styleguide.scss */
.social_media_header li {
  float: left;
  text-align: center;
}
/* line 3079, ../sass/_styleguide.scss */
.social_media_header li a {
  display: block;
  text-align: center;
  padding: 10px 10px 10px 0px;
  text-decoration: none;
}
/* line 3084, ../sass/_styleguide.scss */
.social_media_header li a:hover {
  background-color: transparent;
}
/* line 3087, ../sass/_styleguide.scss */
.social_media_header li a img {
  height: 35px;
}

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

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

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

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

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

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

/* line 3122, ../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 3122, ../sass/_styleguide.scss */
  .related-ht-ser-container .bottom-card:not(:last-child) {
    margin-right: 0;
  }
}

/* line 3128, ../sass/_styleguide.scss */
.additional-support-title, h3.additional-support-title {
  border-bottom: 3px solid #d2d9e1;
  padding-bottom: 10px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
}

/* line 3133, ../sass/_styleguide.scss */
.bottom-card {
  color: #000;
  background-color: #eaf3fa;
  padding: 1em;
  margin-top: .5em;
  min-height: 32%;
}
/* line 3139, ../sass/_styleguide.scss */
.bottom-card h3 {
  border-bottom: 2px solid #d2d9e1;
  padding-bottom: 10px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
}
/* line 3144, ../sass/_styleguide.scss */
.bottom-card a:link {
  color: #3885ca;
}
@media all and (min-width: 768px) {
  /* line 3133, ../sass/_styleguide.scss */
  .bottom-card {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3133, ../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 3155, ../sass/_styleguide.scss */
  .desktop-display {
    display: none;
  }
}

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

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

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

/* line 3176, ../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 3176, ../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 3185, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item {
  background-color: #fff;
  width: 30%;
  margin: 0 1em 1em 0;
}
/* line 3189, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item .science-instance-card {
  height: 100%;
  padding: 1.5em 1em 1em 1em;
}
/* line 3192, ../sass/_styleguide.scss */
.field--name-field-sfa-card > .field__item .science-instance-card h4 {
  margin-bottom: 0;
}
/* line 3194, ../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 3185, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3185, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item {
    width: auto;
    margin-right: 0;
  }
}

@media all and (min-width: 1100px) {
  /* line 3207, ../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 3212, ../sass/_styleguide.scss */
  .field--name-field-sfa-card > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

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

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

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

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

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

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

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

/* line 3238, ../sass/_styleguide.scss */
.content-container.page-top, .topicFeatured .page-top.view-content, .executive-news--landing .topicFeatured article.page-top, .page-top.previous-directors-container {
  margin-top: 0;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3241, ../sass/_styleguide.scss */
  .no-phone-margin, .content-container.no-phone-margin, .topicFeatured .no-phone-margin.view-content, .executive-news--landing .topicFeatured article.no-phone-margin, .no-phone-margin.previous-directors-container {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 3250, ../sass/_styleguide.scss */
.content-container.padded-top, .topicFeatured .padded-top.view-content, .executive-news--landing .topicFeatured article.padded-top, .padded-top.previous-directors-container {
  margin-top: 0;
}

/* line 3253, ../sass/_styleguide.scss */
.no-padding, .content-container.no-padding, .topicFeatured .no-padding.view-content, .executive-news--landing .topicFeatured article.no-padding, .no-padding.previous-directors-container {
  padding-top: 0;
  margin-top: 0;
}

/* line 3258, ../sass/_styleguide.scss */
.top-and-bottom-margin, .content-container.top-and-bottom-margin, .topicFeatured .top-and-bottom-margin.view-content, .executive-news--landing .topicFeatured article.top-and-bottom-margin, .top-and-bottom-margin.previous-directors-container {
  margin-top: 2em;
  margin-bottom: 3em;
}

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

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

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

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

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

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

/* line 3284, ../sass/_styleguide.scss */
.bottom-padding, .content-container.bottom-padding, .topicFeatured .bottom-padding.view-content, .executive-news--landing .topicFeatured article.bottom-padding, .bottom-padding.previous-directors-container, .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 3287, ../sass/_styleguide.scss */
.bottom-half-padding {
  padding-bottom: 0.5em;
}

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

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

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

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

/* line 3302, ../sass/_styleguide.scss */
.normal-bottom-padding, .content-container.normal-bottom-padding, .topicFeatured .normal-bottom-padding.view-content, .executive-news--landing .topicFeatured article.normal-bottom-padding, .normal-bottom-padding.previous-directors-container {
  padding-bottom: 1em;
}

/* line 3305, ../sass/_styleguide.scss */
.content-container.bottom-padding, .topicFeatured .bottom-padding.view-content, .executive-news--landing .topicFeatured article.bottom-padding, .bottom-padding.previous-directors-container, .topicFeatured .node--type-division.node--view-mode-full .view-content.related-scientific-focus-areas-container, .node--type-division.node--view-mode-full .topicFeatured .view-content.related-scientific-focus-areas-container,
.topicFeatured .node--type-division.node--view-mode-subscribe .view-content.related-scientific-focus-areas-container,
.node--type-division.node--view-mode-subscribe .topicFeatured .view-content.related-scientific-focus-areas-container,
.topicFeatured .node--type-branch.node--view-mode-full .view-content.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-full .topicFeatured .view-content.related-scientific-focus-areas-container,
.topicFeatured .node--type-branch.node--view-mode-subscribe .view-content.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-subscribe .topicFeatured .view-content.related-scientific-focus-areas-container, .executive-news--landing .topicFeatured .node--type-division.node--view-mode-full article.related-scientific-focus-areas-container, .node--type-division.node--view-mode-full .executive-news--landing .topicFeatured article.related-scientific-focus-areas-container,
.executive-news--landing .topicFeatured .node--type-division.node--view-mode-subscribe article.related-scientific-focus-areas-container,
.node--type-division.node--view-mode-subscribe .executive-news--landing .topicFeatured article.related-scientific-focus-areas-container,
.executive-news--landing .topicFeatured .node--type-branch.node--view-mode-full article.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-full .executive-news--landing .topicFeatured article.related-scientific-focus-areas-container,
.executive-news--landing .topicFeatured .node--type-branch.node--view-mode-subscribe article.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-subscribe .executive-news--landing .topicFeatured article.related-scientific-focus-areas-container, .node--type-division.node--view-mode-full .previous-directors-container.related-scientific-focus-areas-container,
.node--type-division.node--view-mode-subscribe .previous-directors-container.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-full .previous-directors-container.related-scientific-focus-areas-container,
.node--type-branch.node--view-mode-subscribe .previous-directors-container.related-scientific-focus-areas-container, .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 3309, ../sass/_styleguide.scss */
.extra-bottom-padding, .content-container.extra-bottom-padding, .topicFeatured .extra-bottom-padding.view-content, .executive-news--landing .topicFeatured article.extra-bottom-padding, .extra-bottom-padding.previous-directors-container {
  padding-bottom: 2em;
}

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

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

/* line 3319, ../sass/_styleguide.scss */
.isi-updates-padding, .view-nhlbi-research-update.view-display-id-block_4 > .view-content > .views-row {
  padding-top: 2em;
  padding-bottom: 2em;
}

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

/* line 3328, ../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 3328, ../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 3328, ../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 3338, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 75px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3338, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 65px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3338, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 60px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3338, ../sass/_styleguide.scss */
  .header-footer-responsive-padding {
    padding-left: 20px;
  }
}

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

/* line 3374, ../sass/_styleguide.scss */
.speakerCard.cardBio {
  background-color: #498fcd;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* line 3380, ../sass/_styleguide.scss */
.speakerCard.cardBio .flexItemImage img, .speakerCard.cardBio .flexItemImageHalf img, .speakerCard.cardBio .flexItemImageTenth img, .speakerCard.cardBio .flexItemImageThird img, .speakerCard.cardBio .flexItemImageThirdHalf img, .speakerCard.cardBio .hero-image img {
  opacity: 0.15;
}
/* line 3384, ../sass/_styleguide.scss */
.speakerCard.cardBio .flexItemText {
  opacity: 0;
}
/* line 3387, ../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%;
}
/* line 3399, ../sass/_styleguide.scss */
.speakerCard.cardBio .speaker-hover .speakername, .speakerCard.cardBio .speaker-hover .speakername:hover {
  color: #fff;
}
/* line 3402, ../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 3412, ../sass/_styleguide.scss */
.speakerCard.cardImage {
  background-color: #f4f4f4;
}
/* line 3414, ../sass/_styleguide.scss */
.speakerCard.cardImage .speaker-hover {
  display: none;
}
/* line 3417, ../sass/_styleguide.scss */
.speakerCard.cardImage .flexItemText {
  text-align: center;
}

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

/* line 3427, ../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 3431, ../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 3427, ../sass/_styleguide.scss */
  .speakerCard, .bioCard, .director-bioCard {
    height: auto;
    margin-right: 0;
  }
}

/* line 3442, ../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 3446, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemText {
  padding: 1em 0;
  width: 100%;
}
/* line 3449, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemText h3, .leadership-bioCard .flexItemText h4 {
  margin-bottom: 0.4em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3449, ../sass/_styleguide.scss */
  .leadership-bioCard .flexItemText h3, .leadership-bioCard .flexItemText h4 {
    margin-bottom: 0.2em;
  }
}
/* line 3456, ../sass/_styleguide.scss */
.leadership-bioCard .flexItemImage, .leadership-bioCard .flexItemImageHalf, .leadership-bioCard .flexItemImageTenth, .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 3442, ../sass/_styleguide.scss */
  .leadership-bioCard {
    height: auto;
    margin-right: 0;
  }
}

/* line 3473, ../sass/_styleguide.scss */
.field--name-field-speaker,
.field--name-field-scientific-leadership,
.field--name-field-operations-and-administrat {
  -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 3473, ../sass/_styleguide.scss */
  .field--name-field-speaker,
  .field--name-field-scientific-leadership,
  .field--name-field-operations-and-administrat {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
}

/* line 3485, ../sass/_styleguide.scss */
.field--name-field-speaker > .field__item {
  width: 33%;
  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 3485, ../sass/_styleguide.scss */
  .field--name-field-speaker > .field__item {
    width: 100%;
  }
}

/* line 3496, ../sass/_styleguide.scss */
.field--name-field-scientific-leadership,
.field--name-field-operations-and-administrat {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

/* line 3503, ../sass/_styleguide.scss */
.field--name-field-scientific-leadership > .field__item,
.field--name-field-operations-and-administrat > .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 3503, ../sass/_styleguide.scss */
  .field--name-field-scientific-leadership > .field__item,
  .field--name-field-operations-and-administrat > .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 3503, ../sass/_styleguide.scss */
  .field--name-field-scientific-leadership > .field__item,
  .field--name-field-operations-and-administrat > .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 3503, ../sass/_styleguide.scss */
  .field--name-field-scientific-leadership > .field__item,
  .field--name-field-operations-and-administrat > .field__item {
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}
/* line 3531, ../sass/_styleguide.scss */
.field--name-field-scientific-leadership > .field__item article,
.field--name-field-operations-and-administrat > .field__item article {
  width: 100%;
}

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

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

/* line 3551, ../sass/_styleguide.scss */
.publicationsContainer {
  background-color: #102d66;
}
/* line 3553, ../sass/_styleguide.scss */
.publicationsContainer h2, .publicationsContainer .contact-method-label {
  color: #fff;
}

/* line 3558, ../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 3564, ../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: #3885ca;
  background-color: transparent;
}
/* line 3567, ../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 137, ../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: #3885ca;
}
/* line 140, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a, .publicationsContainer .views-element-container .view-nhlbi-research-publications a:visited, .publicationsContainer .views-element-container .view-nhlbi-research-publications a:link, .publicationsContainer .views-element-container .view-nhlbi-research-publications a:hover, .publicationsContainer .views-element-container .field--name-field-related-publications a, .publicationsContainer .views-element-container .field--name-field-related-publications a:visited, .publicationsContainer .views-element-container .field--name-field-related-publications a:link, .publicationsContainer .views-element-container .field--name-field-related-publications a:hover, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a:visited, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a:link, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a:hover, .publicationsContainer #publication-list-container .field--name-field-related-publications a, .publicationsContainer #publication-list-container .field--name-field-related-publications a:visited, .publicationsContainer #publication-list-container .field--name-field-related-publications a:link, .publicationsContainer #publication-list-container .field--name-field-related-publications a:hover, .executive-publications-container .views-element-container .view-nhlbi-research-publications a, .executive-publications-container .views-element-container .view-nhlbi-research-publications a:visited, .executive-publications-container .views-element-container .view-nhlbi-research-publications a:link, .executive-publications-container .views-element-container .view-nhlbi-research-publications a:hover, .executive-publications-container .views-element-container .field--name-field-related-publications a, .executive-publications-container .views-element-container .field--name-field-related-publications a:visited, .executive-publications-container .views-element-container .field--name-field-related-publications a:link, .executive-publications-container .views-element-container .field--name-field-related-publications a:hover, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a:visited, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a:link, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a:hover, .executive-publications-container #publication-list-container .field--name-field-related-publications a, .executive-publications-container #publication-list-container .field--name-field-related-publications a:visited, .executive-publications-container #publication-list-container .field--name-field-related-publications a:link, .executive-publications-container #publication-list-container .field--name-field-related-publications a:hover {
  color: #3885ca;
}
/* line 3573, ../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 3577, ../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: #000;
}
/* line 3581, ../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 3584, ../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 3587, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3587, ../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: 0.35em 2.5em;
  }
}
/* line 1339, ../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: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3587, ../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: 0.35em 2.5em;
  }
}
/* line 1352, ../sass/_mixins.scss */
.publicationsContainer .views-element-container .view-nhlbi-research-publications a.button a:hover, .publicationsContainer .views-element-container .field--name-field-related-publications a.button a:hover, .publicationsContainer #publication-list-container .view-nhlbi-research-publications a.button a:hover, .publicationsContainer #publication-list-container .field--name-field-related-publications a.button a:hover, .executive-publications-container .views-element-container .view-nhlbi-research-publications a.button a:hover, .executive-publications-container .views-element-container .field--name-field-related-publications a.button a:hover, .executive-publications-container #publication-list-container .view-nhlbi-research-publications a.button a:hover, .executive-publications-container #publication-list-container .field--name-field-related-publications a.button a:hover {
  text-decoration: none;
}

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

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

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

/* line 3605, ../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 3605, ../sass/_styleguide.scss */
  .bottom-view-link {
    height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3605, ../sass/_styleguide.scss */
  .bottom-view-link {
    height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3605, ../sass/_styleguide.scss */
  .bottom-view-link {
    height: 24px;
  }
}

/* line 3621, ../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-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 3628, ../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-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 3628, ../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-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 3628, ../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-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 3643, ../sass/_styleguide.scss */
  .standard-card-max-width {
    max-width: 33%;
    flex-basis: 33%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3643, ../sass/_styleguide.scss */
  .standard-card-max-width {
    max-width: 40%;
    flex-basis: 40%;
  }
}

/* line 3653, ../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-committee .field--name-field-card-text > .field__item, .grants-foa-card {
  background-color: #f4f4f4;
  padding: 0 1em;
  margin-bottom: 1em;
}

/* line 3660, ../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-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-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-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-committee .field--name-field-card-text:after {
  content: '';
  display: inline;
  width: 0;
}

/* line 3673, ../sass/_styleguide.scss */
.inline-list, ul.associated-organization-list {
  display: inline;
  list-style: none;
  padding: 0;
}
/* line 3677, ../sass/_styleguide.scss */
.inline-list li, ul.associated-organization-list li, .inline-list li > div, ul.associated-organization-list li > div {
  display: inline;
}
/* line 3680, ../sass/_styleguide.scss */
.inline-list li:after, ul.associated-organization-list li:after {
  content: ', ';
}
/* line 3683, ../sass/_styleguide.scss */
.inline-list li:last-child:after, ul.associated-organization-list li:last-child:after {
  content: '';
}

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

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

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

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

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

/* line 3714, ../sass/_styleguide.scss */
.modal-image-and-photocredit-container {
  box-sizing: border-box;
}
/* line 3716, ../sass/_styleguide.scss */
.modal-image-and-photocredit-container .photocredit {
  width: 98%;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 3716, ../sass/_styleguide.scss */
  .modal-image-and-photocredit-container .photocredit {
    margin-top: -20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3716, ../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 3731, ../sass/_styleguide.scss */
.image-modal-caption {
  background-color: #fff;
}

/* line 3735, ../sass/_styleguide.scss */
.image-modal-caption, .embedded-image-caption {
  display: table-caption;
  caption-side: bottom;
}
@media all and (min-width: 1100px) {
  /* line 3735, ../sass/_styleguide.scss */
  .image-modal-caption, .embedded-image-caption {
    padding: 10px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3735, ../sass/_styleguide.scss */
  .image-modal-caption, .embedded-image-caption {
    padding: 8px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3735, ../sass/_styleguide.scss */
  .image-modal-caption, .embedded-image-caption {
    padding: 8px 8px 1em 8px;
  }
}

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

/* line 3752, ../sass/_styleguide.scss */
.photocredit {
  font-size: 10px;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  margin-top: -20px;
  padding-left: 1em;
  font-family: Lato, Verdana, Arial, sans-serif;
  color: #fff;
  background: #4a4a4a;
  background: rgba(74, 74, 74, 0.4);
}
@media all and (min-width: 1440px) {
  /* line 3752, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 10px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3752, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 8px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3752, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 8px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3752, ../sass/_styleguide.scss */
  .photocredit {
    font-size: 8px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3752, ../sass/_styleguide.scss */
  .photocredit {
    margin-top: -40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3752, ../sass/_styleguide.scss */
  .photocredit {
    color: #000;
    background: transparent;
    display: block;
    position: relative;
    margin-top: 0.2em;
    margin-bottom: 1em;
  }
}

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

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

/* line 3788, ../sass/_styleguide.scss */
.alerts-message-submitted {
  background-color: #e7f4e2;
}
/* line 3790, ../sass/_styleguide.scss */
.alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
  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-size: 18px;
  line-height: 28px;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    background-size: 32px 32px;
    height: 32px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    background-size: 32px 32px;
    height: 32px;
  }
}
@media all and (min-width: 1440px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    line-height: 28px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    line-height: 24px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3790, ../sass/_styleguide.scss */
  .alerts-message-submitted .alerttitle, .alerts-message-submitted .view-site-alerts .views-field-title span, .view-site-alerts .views-field-title .alerts-message-submitted span {
    line-height: 18px;
  }
}

/* line 3800, ../sass/_styleguide.scss */
.objective-list-text, .objective-list-container ol.objective-list {
  font-size: 18px;
  line-height: 32px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
}
@media all and (min-width: 1440px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    line-height: 32px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    line-height: 32px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 3800, ../sass/_styleguide.scss */
  .objective-list-text, .objective-list-container ol.objective-list {
    line-height: 22px;
  }
}

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

/* 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, .topicFeatured .view-content, .executive-news--landing .topicFeatured article, .previous-directors-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, .topicFeatured .view-content, .executive-news--landing .topicFeatured article, .previous-directors-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, .topicFeatured .view-content, .executive-news--landing .topicFeatured article, .previous-directors-container {
    width: 95%;
  }
}

/* line 24, ../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 24, ../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 24, ../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 24, ../sass/layouts/_global.scss */
  .content-container-full-tablet {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 24, ../sass/layouts/_global.scss */
  .content-container-full-tablet {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* line 27, ../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 27, ../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 27, ../sass/layouts/_global.scss */
  .content-container-full-phone {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 27, ../sass/layouts/_global.scss */
  .content-container-full-phone {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

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

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

/* line 43, ../sass/layouts/_global.scss */
.row .row {
  width: auto;
  max-width: none;
}
@media all and (min-width: 1100px) {
  /* line 43, ../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 43, ../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 43, ../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 43, ../sass/layouts/_global.scss */
  .row .row {
    margin-left: -0.41667em;
    margin-right: -0.41667em;
  }
}

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

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

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

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

/**
 * The layout when there is only one sidebar, the left one.
 */
/* line 116, ../sass/layouts/_global.scss */
.sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
}
/* line 117, ../sass/layouts/_global.scss */
.sidebar-first #content {
  width: 81.25%;
  padding-right: 0;
}
@media all and (min-width: 1100px) {
  /* line 117, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 117, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 117, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 117, ../sass/layouts/_global.scss */
  .sidebar-first #content {
    padding-left: 0.41667em;
  }
}
/* line 136, ../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 146, ../sass/layouts/_global.scss */
.sidebar-second #content {
  width: 78.125%;
  padding-left: 0;
}
@media all and (min-width: 1100px) {
  /* line 146, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 146, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 146, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 146, ../sass/layouts/_global.scss */
  .sidebar-second #content {
    padding-right: 0.41667em;
  }
}
/* line 162, ../sass/layouts/_global.scss */
.sidebar-second aside.layout-sidebar-second {
  width: 21.875%;
  padding-right: 0;
}

/**
 * The layout when there are two sidebars.
 */
/* line 172, ../sass/layouts/_global.scss */
.two-sidebars #content {
  width: 60.375%;
  padding: 0 1.25em;
}
@media all and (min-width: 1100px) {
  /* line 172, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 1.25em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 172, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 0.96154em;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 172, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 0.625em;
  }
}
@media all and (min-width: 0em) and (max-width: 360px) {
  /* line 172, ../sass/layouts/_global.scss */
  .two-sidebars #content {
    padding: 0 0.41667em;
  }
}
/* line 188, ../sass/layouts/_global.scss */
.two-sidebars aside.layout-sidebar-first {
  width: 18.75%;
  padding-left: 0;
}
/* line 193, ../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%;
}

/*
 * 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;
}

/* 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 35, ../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 41, ../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 58, ../sass/components/_misc.scss */
#skip-link, #skip-nav {
  margin: 0;
}
/* line 61, ../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 76, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

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

/* img icon styles */
/** 404 styles **/
/* line 150, ../sass/components/_misc.scss */
.notFound, .serverError {
  padding-top: 3em;
  padding-bottom: 3em;
  display: inline-block;
  width: 100%;
  color: #000;
  background-color: #aa0202;
  overflow: hidden;
  color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 157, ../sass/components/_misc.scss */
  .notFound .notFoundText, .notFound .serverErrorText, .serverError .notFoundText, .serverError .serverErrorText {
    float: left;
    display: inline;
    width: 40%;
    padding-right: 2em;
  }
}
@media all and (min-width: 1100px) {
  /* line 165, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    height: 432px;
    width: 432px;
    float: left;
    display: inline;
    background-image: url("../images/404-background.png");
    background-size: "432px" "432px";
    background-repeat: no-repeat;
    background-position: initial;
    display: inline-block;
    content: " ";
    height: "432px";
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 165, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    background-size: "432px" "432px";
    height: "432px";
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 165, ../sass/components/_misc.scss */
  .notFound .notFoundBackground, .serverError .notFoundBackground {
    background-size: "432px" "432px";
    height: "432px";
  }
}

@media all and (min-width: 1100px) {
  /* line 174, ../sass/components/_misc.scss */
  .notFound .serverErrorBackground, .serverError .serverErrorBackground {
    height: 581px;
    width: 615px;
    float: left;
    display: inline;
    background-image: url("../images/500-background.png");
    background-size: "615px" "581px";
    background-repeat: no-repeat;
    background-position: initial;
    display: inline-block;
    content: " ";
    height: "581px";
  }
}
@media all and (min-width: 1100px) and (min-width: 768px) and (max-width: 1099px) {
  /* line 174, ../sass/components/_misc.scss */
  .notFound .serverErrorBackground, .serverError .serverErrorBackground {
    background-size: "615px" "581px";
    height: "581px";
  }
}
@media all and (min-width: 1100px) and (min-width: 0em) and (max-width: 767px) {
  /* line 174, ../sass/components/_misc.scss */
  .notFound .serverErrorBackground, .serverError .serverErrorBackground {
    background-size: "615px" "581px";
    height: "581px";
  }
}

/* line 184, ../sass/components/_misc.scss */
.notFound h1, .serverError h1 {
  color: #fff;
  background-color: #aa0202;
}
/* line 188, ../sass/components/_misc.scss */
.notFound h4, .serverError h4 {
  font-size: 18px;
  line-height: 30px;
  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 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 188, ../sass/components/_misc.scss */
  .notFound h4, .serverError h4 {
    line-height: 22px;
  }
}
/* line 193, ../sass/components/_misc.scss */
.notFound a, .serverError a {
  color: #fff;
}
/* line 197, ../sass/components/_misc.scss */
.notFound a:hover, .serverError a:hover {
  text-decoration: underline;
}

/**
 * Navigation bar.
 */
/* line 207, ../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 211, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 221, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 227, ../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 242, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 254, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.42857em 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 266, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url("message-24-warning.png");
  border-color: #ed5;
}

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

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

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 313, ../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.42857em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 323, ../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 327, ../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.42857em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 340, ../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 349, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 355, ../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 365, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 369, ../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 393, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.42857em;
}

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

/* line 406, ../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 415, ../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 420, ../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 448, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 452, ../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 460, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

/* line 473, ../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 485, ../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 490, ../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 497, ../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 507, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

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

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

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

/* line 532, ../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 538, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 547, ../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 559, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  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 582, ../sass/components/_misc.scss */
.comments {
  margin: 1.42857em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 587, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 593, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 596, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 603, ../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 613, ../sass/components/_misc.scss */
.form-item {
  margin: 1.42857em 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 617, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 624, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 630, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 637, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 644, ../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 650, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 655, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 661, ../sass/components/_misc.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
/* line 666, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 672, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * 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 684, ../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 690, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.42857em;
}

/* line 694, ../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 699, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.42857em 0;
}

/**
 * Tables styles.
 */
/* line 707, ../sass/components/_misc.scss */
.tabletxt, #tabletxt, .fbtab {
  width: 100%;
}
/* line 709, ../sass/components/_misc.scss */
.tabletxt th, .tabletxt td, #tabletxt th, #tabletxt td, .fbtab th, .fbtab td {
  padding: 3px;
  border: 1px solid #ccc;
}
/* line 713, ../sass/components/_misc.scss */
.tabletxt tr:hover td, #tabletxt tr:hover td, .fbtab tr:hover td {
  background-color: #f4faff !important;
}

/**
 * Drupal admin tables.
 */
/* line 723, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 731, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 735, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 741, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 746, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 751, ../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 757, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 768, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 779, ../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 785, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url("menu-collapsed.png");
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 789, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 801, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 804, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 807, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 816, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 825, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 828, ../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 834, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1518145050');
}

/**
 * Page Administration Toggle
 *
 *
 */
/* line 846, ../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 855, ../sass/components/_misc.scss */
.page-counter {
  float: left;
  font-weight: bold;
  margin: -4px 0 15px 0;
  padding: 4px 0;
}
/* line 861, ../sass/components/_misc.scss */
.page-counter ~ .view-content {
  clear: left;
  margin-top: 15px;
}
/* line 865, ../sass/components/_misc.scss */
.page-counter ~ .item-list {
  position: relative;
  float: left;
  display: inline-block;
  width: 85%;
}
/* line 871, ../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 876, ../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 880, ../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 886, ../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 891, ../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 899, ../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 903, ../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 907, ../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 Book Navigation */
/* line 917, ../sass/components/_misc.scss */
.prev-next-book-nav {
  float: right;
}
/* line 919, ../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 940, ../sass/components/_misc.scss */
h1 a.feed-icon {
  margin-left: 5px;
}

/* line 944, ../sass/components/_misc.scss */
#mailSent {
  font-size: 16px;
  font-weight: bold;
  display: inline;
}

/* line 950, ../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: 12px;
}

/* line 968, ../sass/components/_misc.scss */
#makeUpdates {
  width: 200px;
  margin-bottom: -5px;
}

/* line 973, ../sass/components/_misc.scss */
.showUpdates {
  display: inline-block;
}

/* line 977, ../sass/components/_misc.scss */
#gd_make_updates {
  display: block;
}

/* line 981, ../sass/components/_misc.scss */
#ipt_subscribe_email, #ipt_subscribe_email_modal {
  margin-right: 10px;
  width: 200px;
}

/* line 986, ../sass/components/_misc.scss */
.successfulUpdate, .subscriptionHeader {
  font-weight: bold;
}

/* line 989, ../sass/components/_misc.scss */
.successfulUpdate {
  width: 330px;
  font-size: 16px;
}

/* line 994, ../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 1004, ../sass/components/_misc.scss */
.subscriptionHeader {
  margin-top: 8px;
  font-size: 14px;
}

/* line 1009, ../sass/components/_misc.scss */
.gd_select_all {
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 14px;
}

/* line 1015, ../sass/components/_misc.scss */
.gd_topic_description {
  margin-left: 22px;
}

/* line 1019, ../sass/components/_misc.scss */
#subscriptions ul {
  list-style: none;
  padding: 0px;
}
/* line 1023, ../sass/components/_misc.scss */
#subscriptions ul li {
  margin-bottom: 20px;
}
/* line 1025, ../sass/components/_misc.scss */
#subscriptions ul li :last-child {
  margin-bottom: 4px;
}
/* line 1029, ../sass/components/_misc.scss */
#subscriptions ul li ul {
  padding-left: 30px;
  margin-top: 12px;
}
/* line 1033, ../sass/components/_misc.scss */
#subscriptions ul li ul li {
  margin-bottom: 12px;
}
/* line 1036, ../sass/components/_misc.scss */
#subscriptions input {
  margin-right: 4px;
}
/* line 1039, ../sass/components/_misc.scss */
#subscriptions label {
  font-weight: bold;
}

/* line 1044, ../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 1054, ../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 1064, ../sass/components/_misc.scss */
#subscribe-overlay {
  background-color: #000;
}

/* line 1068, ../sass/components/_misc.scss */
#subscribe-container {
  background-color: #fff;
  border: 2px solid #444;
  padding: 16px 12px 12px 24px;
}
/* line 1072, ../sass/components/_misc.scss */
#subscribe-container .message {
  margin: 0;
  padding: 12px 4px 12px 8px;
}
/* line 1076, ../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 1086, ../sass/components/_misc.scss */
#subscribe-container ul {
  width: 300px;
}
/* line 1087, ../sass/components/_misc.scss */
#subscribe-container ul a {
  text-decoration: none;
}
/* line 1097, ../sass/components/_misc.scss */
#subscribe-container .modalLeft {
  float: left;
}
/* line 1100, ../sass/components/_misc.scss */
#subscribe-container .modalRight {
  float: right;
}

/* line 1107, ../sass/components/_misc.scss */
#p_submit {
  clear: both;
}
/* line 1109, ../sass/components/_misc.scss */
#p_submit label {
  display: inline;
}
/* line 1112, ../sass/components/_misc.scss */
#p_submit #ipt_subscribe_email, #p_submit #ipt_subscribe_email_modal {
  margin-left: 4px;
  margin-right: 4px;
}
/* line 1117, ../sass/components/_misc.scss */
#p_submit .spinner {
  display: none;
}

/* line 1121, ../sass/components/_misc.scss */
.archive {
  background: url(/sites/all/themes/nhlbi/images/archive_pink.jpg);
}

/* line 1125, ../sass/components/_misc.scss */
#maintenance-logo-title {
  width: 287px;
  height: 67px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 86px;
  margin-bottom: 14px;
}

/* line 1134, ../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 1143, ../sass/components/_misc.scss */
.maintenance_text .maintenance_message {
  vertical-align: middle;
  display: inline-block;
  line-height: normal;
  font-size: 16px;
  font-family: Verdana, Helvetica, sans-serif;
}
/* line 1149, ../sass/components/_misc.scss */
.maintenance_text .maintenance_message h2, .maintenance_text .maintenance_message .contact-method-label {
  margin-top: 0px;
  font-size: 20px;
  font-family: Verdana, Helvetica, sans-serif;
}

/* line 1157, ../sass/components/_misc.scss */
.tableBorder, .tableBorder th, .tableBorder td {
  border: 1px #000 solid;
}

/* line 1161, ../sass/components/_misc.scss */
.noEmbedResults {
  margin: 5px;
  padding: 3px;
}

/* line 1166, ../sass/components/_misc.scss */
.tableDivParent {
  display: table;
}
/* line 1168, ../sass/components/_misc.scss */
.tableDivParent .tableDivCell {
  vertical-align: top;
  display: table-cell;
  padding-top: 8px;
}
/* line 1172, ../sass/components/_misc.scss */
.tableDivParent .tableDivCell img {
  display: table-cell;
  margin-top: -10px;
}

/* line 1179, ../sass/components/_misc.scss */
.server-error-banner {
  font-family: Georgia,Verdana, Arial, sans-serif;
  font-size: 34px;
  margin-top: 18px;
  margin-bottom: 20px;
}

/* line 1186, ../sass/components/_misc.scss */
.server-error-text {
  font-family: Georgia,Verdana, Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 14px;
}

/* line 1193, ../sass/components/_misc.scss */
.hide {
  display: none;
}

/* line 1197, ../sass/components/_misc.scss */
#social-container {
  background-color: #fff;
  border: 2px solid #444;
  padding: 30px 12px 30px 24px;
  font-size: 14px;
}
/* line 1203, ../sass/components/_misc.scss */
#social-container input[type="checkbox"], #social-container input[type="radio"] {
  margin-right: 1em;
}
/* line 1206, ../sass/components/_misc.scss */
#social-container .socialButton {
  font-size: 13px;
  margin: 1em;
  clear: both;
}
/* line 1210, ../sass/components/_misc.scss */
#social-container .socialButton a {
  line-height: 1.2em;
  display: block;
  text-align: center;
}
/* line 1216, ../sass/components/_misc.scss */
#social-container .socialButton a#Print {
  width: 10em;
}
/* line 1220, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #bcbcbc;
  border: 1px solid #bcbcbc;
  cursor: arrow;
  width: 10em;
}
/* line 1299, ../sass/_mixins.scss */
#social-container .socialButton a#Print.disabled.modbutton :hover, #social-container .socialButton a#Share.disabled.modbutton :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1220, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.disabled.modbutton, #social-container .socialButton a#Share.disabled.modbutton {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../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 1226, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  width: 10em;
}
/* line 1299, ../sass/_mixins.scss */
#social-container .socialButton a#Print.modbutton :hover, #social-container .socialButton a#Share.modbutton :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1226, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print.modbutton, #social-container .socialButton a#Share.modbutton {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
#social-container .socialButton a#Print.modbutton:hover, #social-container .socialButton a#Share.modbutton:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
/* line 1231, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  width: 10em;
}
/* line 1299, ../sass/_mixins.scss */
#social-container .socialButton a#Print-All :hover, #social-container .socialButton a#Share-All :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1231, ../sass/components/_misc.scss */
  #social-container .socialButton a#Print-All, #social-container .socialButton a#Share-All {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
#social-container .socialButton a#Print-All:hover, #social-container .socialButton a#Share-All:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
/* line 1235, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
  width: 10em;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1235, ../sass/components/_misc.scss */
  #social-container .socialButton a#Cancel, #social-container .socialButton a#Print-Some-Sections, #social-container .socialButton a#Share-Some-Sections {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../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 1241, ../sass/components/_misc.scss */
#social-container .printButton.hide {
  display: none;
}
/* line 1245, ../sass/components/_misc.scss */
#social-container .socialModal {
  padding: 1em;
}

/* line 1253, ../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;
}

/* line 1262, ../sass/components/_misc.scss */
.field--type-text-long figure img {
  margin: 5px;
}
/* line 1266, ../sass/components/_misc.scss */
.field--type-text-long figcaption {
  color: #000;
  padding-left: 10px;
}

/* line 1275, ../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 1275, ../sass/components/_misc.scss */
  .simplebox {
    height: 150px;
  }
}

/* line 1284, ../sass/components/_misc.scss */
.simplebox-content > p {
  margin-bottom: .5em;
  margin-top: 0;
}

/* line 1289, ../sass/components/_misc.scss */
.simplebox-title {
  padding-top: 10px;
}

/* line 1292, ../sass/components/_misc.scss */
.simplebox-title, .simplebox-content {
  padding-left: 10px;
}

/* line 1298, ../sass/components/_misc.scss */
.simplebox {
  width: 30%;
  display: inline-block;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1298, ../sass/components/_misc.scss */
  .simplebox {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1298, ../sass/components/_misc.scss */
  .simplebox {
    width: 90%;
  }
}

/* line 1310, ../sass/components/_misc.scss */
.entity-embed.card-link {
  display: inline-block;
  float: left;
}
@media all and (min-width: 1100px) {
  /* line 1310, ../sass/components/_misc.scss */
  .entity-embed.card-link {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1310, ../sass/components/_misc.scss */
  .entity-embed.card-link {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1310, ../sass/components/_misc.scss */
  .entity-embed.card-link {
    width: 90%;
  }
}
/* line 1909, ../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 1913, ../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 1917, ../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 1921, ../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 1925, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card {
  background-color: white;
  height: 100px;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1925, ../sass/_mixins.scss */
  .entity-embed.card-link .file-download-card {
    flex-direction: row;
  }
}
/* line 1937, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file-details {
  width: 100%;
}
/* line 1939, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 1943, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 1948, ../sass/_mixins.scss */
.entity-embed.card-link .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1318, ../sass/components/_misc.scss */
  .text-formatted table.large-only {
    display: none;
  }
}
@media all and (min-width: 768px) {
  /* line 1324, ../sass/components/_misc.scss */
  .text-formatted table.small-only {
    display: none;
  }
}
/* line 1330, ../sass/components/_misc.scss */
.text-formatted table, .text-formatted th, .text-formatted td {
  border: 2px solid #d7e7f4;
}
/* line 1333, ../sass/components/_misc.scss */
.text-formatted th {
  text-align: left;
  background-color: #d7e7f4;
}
/* line 1337, ../sass/components/_misc.scss */
.text-formatted th, .text-formatted td {
  padding: 15px;
}
/* line 1340, ../sass/components/_misc.scss */
.text-formatted table {
  border-spacing: 5px;
}

/* line 1346, ../sass/components/_misc.scss */
.file-card-list {
  font-family: Lato, Verdana, Arial, sans-serif;
  width: 100%;
}
/* line 1864, ../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: #000;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1864, ../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 1885, ../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 1885, ../sass/_mixins.scss */
  .file-card-list .field__item {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1885, ../sass/_mixins.scss */
  .file-card-list .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1885, ../sass/_mixins.scss */
  .file-card-list .field__item {
    width: 90%;
  }
}
/* line 1909, ../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 1913, ../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 1917, ../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 1921, ../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 1925, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card {
  background-color: white;
  height: 100px;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1925, ../sass/_mixins.scss */
  .file-card-list .field__item .file-download-card {
    flex-direction: row;
  }
}
/* line 1937, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file-details {
  width: 100%;
}
/* line 1939, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 1943, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 1948, ../sass/_mixins.scss */
.file-card-list .field__item .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}
/* line 1889, ../sass/_mixins.scss */
.file-card-list .file {
  padding-left: 0;
}

/* line 1352, ../sass/components/_misc.scss */
.views-autocomplete {
  background-color: #e4e3e3;
  border-radius: 5px;
  margin: 10px auto;
  padding: 5px;
  text-align: center;
  width: 500px;
}
/* line 1361, ../sass/components/_misc.scss */
.views-autocomplete .ui-widget {
  background-color: #e4e3e3;
}
/* line 1365, ../sass/components/_misc.scss */
.views-autocomplete .autocomplete-box {
  border: medium none transparent;
  border-radius: 3px;
  height: 35px;
  text-align: left;
  width: 90%;
}
/* line 1373, ../sass/components/_misc.scss */
.views-autocomplete .submit {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  outline: medium none;
}

/* line 1384, ../sass/components/_misc.scss */
.breadcrumbs {
  /*


  margin-left: 10px;
  padding-left: 15px;
  @include bp-phone-and-tablet{
    padding-left: 50px;
  }
  */
  margin-top: 1em;
}
/* line 1403, ../sass/components/_misc.scss */
.breadcrumbs ul {
  list-style: outside none none;
  padding: 0;
  margin-top: 0px;
}
/* line 1409, ../sass/components/_misc.scss */
.breadcrumbs li {
  display: inline;
  padding: 5px;
  color: #999;
}
/* line 1415, ../sass/components/_misc.scss */
.breadcrumbs .breadcrumb-home {
  padding-left: 0px;
}
/* line 1419, ../sass/components/_misc.scss */
.breadcrumbs .breadcrumb-home-single {
  padding-left: 0px;
}
/* line 1423, ../sass/components/_misc.scss */
.breadcrumbs a {
  color: #999;
  font-size: 14px;
}
/* line 1428, ../sass/components/_misc.scss */
.breadcrumbs .breadcrumb-current {
  color: #000;
  font-weight: bold;
}
/* line 1432, ../sass/components/_misc.scss */
.breadcrumbs .back-to {
  display: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1437, ../sass/components/_misc.scss */
  .breadcrumbs .breacrumb-break, .breadcrumbs .breadcrumb-grandparent, .breadcrumbs .breadcrumb-home, .breadcrumbs .breadcrumb-current {
    display: none;
  }
  /* line 1440, ../sass/components/_misc.scss */
  .breadcrumbs .back-to {
    display: inline;
  }
  /* line 1444, ../sass/components/_misc.scss */
  .breadcrumbs li {
    padding: 0px;
  }
}

/* line 1452, ../sass/components/_misc.scss */
.ui-autocomplete a {
  display: block;
}

/* line 1459, ../sass/components/_misc.scss */
.all-foas-landing-top {
  display: flex;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1459, ../sass/components/_misc.scss */
  .all-foas-landing-top {
    display: block;
  }
}
/* line 1465, ../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 1465, ../sass/components/_misc.scss */
  .all-foas-landing-top .gov-delivery-foa-signup {
    margin-top: 20px;
    margin-left: 0;
  }
}

/* line 1478, ../sass/components/_misc.scss */
.gov-delivery-foa-signup {
  width: 50%;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  flex-shrink: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1478, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup {
    width: 100%;
  }
}
/* line 1491, ../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 1491, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup .form-type-email {
    max-width: 45%;
  }
}
/* line 1499, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-email {
  height: 32px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background-color: white;
}
/* line 1512, ../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 1512, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup #edit-actions-submit {
    width: 75px;
  }
}
/* line 1521, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-sign-in, .gov-delivery-foa-signup .form-type-email {
  padding-left: 34px;
  margin: 12px 0 20px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1521, ../sass/components/_misc.scss */
  .gov-delivery-foa-signup #edit-sign-in, .gov-delivery-foa-signup .form-type-email {
    padding-left: 10px;
  }
}
/* line 1528, ../sass/components/_misc.scss */
.gov-delivery-foa-signup #edit-actions {
  display: inline-block;
  padding-left: 10px;
  margin: 12px 0 20px;
}

/* line 1536, ../sass/components/_misc.scss */
.node--type-webform, .webform-submission-form {
  color: black;
}
/* line 1538, ../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 1538, ../sass/components/_misc.scss */
  .node--type-webform .flexItemHalf, .webform-submission-form .flexItemHalf {
    width: 100%;
  }
}
/* line 1545, ../sass/components/_misc.scss */
.node--type-webform .description, .webform-submission-form .description {
  font-size: 14px;
}
/* line 1549, ../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 1554, ../sass/components/_misc.scss */
.node--type-webform .gov-delivery-signup-main, .webform-submission-form .gov-delivery-signup-main {
  margin-bottom: 50px;
}
/* line 1556, ../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 1556, ../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 1563, ../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 1569, ../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 1583, ../sass/components/_misc.scss */
.node--type-webform #edit-email--description, .webform-submission-form #edit-email--description {
  margin: 10px 0;
}
/* line 1587, ../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 1600, ../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 1607, ../sass/components/_misc.scss */
.node--type-webform .field--name-field-status-message, .webform-submission-form .field--name-field-status-message {
  margin-bottom: 15px;
}
/* line 1612, ../sass/components/_misc.scss */
.node--type-webform input[type=checkbox], .webform-submission-form input[type=checkbox] {
  display: none;
}
/* line 1615, ../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 1615, ../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 1615, ../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 1618, ../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 1618, ../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 1618, ../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 1622, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox, .webform-submission-form .form-type-checkbox {
  margin-bottom: 10px;
}
/* line 1625, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox label, .webform-submission-form .form-type-checkbox label {
  padding-left: 30px;
}
/* line 1627, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label span {
  line-height: 0;
}
/* line 1632, ../sass/components/_misc.scss */
.node--type-webform .form-type-checkbox .description, .webform-submission-form .form-type-checkbox .description {
  margin: 0;
  padding-left: 30px;
}
/* line 1642, ../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 1648, ../sass/components/_misc.scss */
.node--type-webform .form-required span, .webform-submission-form .form-required span {
  color: black;
}
/* line 1653, ../sass/components/_misc.scss */
.node--type-webform .form-required::after, .webform-submission-form .form-required::after {
  background-image: none;
}
/* line 1657, ../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 1662, ../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 1671, ../sass/components/_misc.scss */
.node--type-webform .required.error + div.description, .webform-submission-form .required.error + div.description {
  display: block;
}
/* line 1675, ../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 1679, ../sass/components/_misc.scss */
.node--type-webform .form-item-type-of-request, .webform-submission-form .form-item-type-of-request {
  width: 300px;
}
/* line 1683, ../sass/components/_misc.scss */
.node--type-webform textarea, .webform-submission-form textarea {
  width: 500px;
}
/* line 1695, ../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 1704, ../sass/components/_misc.scss */
.node--type-webform .messages__item, .webform-submission-form .messages__item {
  color: black;
}
/* line 1708, ../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 1713, ../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 1720, ../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 1732, ../sass/components/_misc.scss */
.node--type-webform #edit-short-description_counter, .node--type-webform #edit-subject_counter, .webform-submission-form #edit-short-description_counter, .webform-submission-form #edit-subject_counter {
  font-family: Lato-Regular;
  font-size: 12px;
  color: #575B5E;
  line-height: 20px;
}
/* line 1739, ../sass/components/_misc.scss */
.node--type-webform #edit-short-description_count, .node--type-webform #edit-subject_count, .webform-submission-form #edit-short-description_count, .webform-submission-form #edit-subject_count {
  color: #017A36;
}
/* line 1743, ../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 1747, ../sass/components/_misc.scss */
.node--type-webform .select2-selection, .webform-submission-form .select2-selection {
  border-color: #d7d7d7;
}
/* line 1750, ../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 1757, ../sass/components/_misc.scss */
.node--type-webform .select2-results__option--highlighted, .webform-submission-form .select2-results__option--highlighted {
  background: #F1F7FB;
  color: black;
}
/* line 1762, ../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 1768, ../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: black;
}
/* line 1773, ../sass/components/_misc.scss */
.node--type-webform .select2-search--dropdown, .webform-submission-form .select2-search--dropdown {
  display: none;
}
/* line 1778, ../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 1780, ../sass/components/_misc.scss */
.node--type-webform .select2-selection__arrow b, .webform-submission-form .select2-selection__arrow b {
  display: none;
}

/* line 1794, ../sass/components/_misc.scss */
.view-site-alerts .warning {
  background-color: #F2DEDF;
}
/* line 1796, ../sass/components/_misc.scss */
.view-site-alerts .warning .views-field-title {
  background-image: url("../images/ico-warningalert.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 0 20px;
  display: block;
  content: " ";
  height: auto;
}
/* line 1800, ../sass/components/_misc.scss */
.view-site-alerts .information {
  background-color: #FDF8E4;
}
/* line 1802, ../sass/components/_misc.scss */
.view-site-alerts .information .views-field-title {
  background-image: url("../images/ico-infoalert.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 0 20px;
  display: block;
  content: " ";
  height: auto;
}
/* line 1806, ../sass/components/_misc.scss */
.view-site-alerts .views-field-title {
  padding: 20px 0 0 20px;
}
/* line 1807, ../sass/components/_misc.scss */
.view-site-alerts .views-field-title span {
  padding-left: 20px;
  color: black;
}
/* line 1814, ../sass/components/_misc.scss */
.view-site-alerts .views-field-body {
  padding: 0 0 0 40px;
  color: black;
}
/* line 1818, ../sass/components/_misc.scss */
.view-site-alerts .readMoreAlertText {
  padding: 0 0 20px 40px;
  color: black;
}
/* line 1822, ../sass/components/_misc.scss */
.view-site-alerts .readMoreAlertLink {
  border-radius: 2px;
  font-family: Lato-Regular;
  font-size: 14px;
  margin: auto 0 auto 20px;
  padding: 2px 15px;
  cursor: pointer;
}
/* line 1830, ../sass/components/_misc.scss */
.view-site-alerts .readLessAlertLink {
  border-radius: 2px;
  font-family: Lato-Regular;
  font-size: 14px;
  padding: 2px 15px;
  cursor: pointer;
}
/* line 1837, ../sass/components/_misc.scss */
.view-site-alerts .warning .readMoreAlertLink, .view-site-alerts .warning .readLessAlertLink {
  border: 1px solid #850920;
}
/* line 1841, ../sass/components/_misc.scss */
.view-site-alerts .information .readMoreAlertLink, .view-site-alerts .information .readLessAlertLink {
  border: 1px solid #F6A623;
}

/* 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 {
  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;
}

/* Menu */
/* Left Navigation */
/* line 79, ../sass/components/_menus.scss */
#main .sidebar * {
  max-width: 100%;
}
/* line 82, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu, #main .sidebar #submenu-block {
  margin-bottom: 1.25em;
}
/* line 84, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu a, #main .sidebar #submenu-block a {
  font-size: 12px;
  text-decoration: none;
}
/* line 89, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu h2, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu .contact-method-label, #main .sidebar #submenu-block h2, #main .sidebar #submenu-block .contact-method-label {
  font-size: 12px;
  font-weight: bold;
  font-family: Verdana, Arial, sans-serif;
  border-bottom: 1px solid #cacad7;
  line-height: 15px;
  margin: 0;
  padding: 13.5px 0 13.5px 10px;
}
/* line 97, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu h2 a, #main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu .contact-method-label a, #main .sidebar #submenu-block h2 a, #main .sidebar #submenu-block .contact-method-label a {
  color: #104b7d;
}
/* line 102, ../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: 11px;
}
/* line 106, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu ul.menu li, #main .sidebar #submenu-block ul.menu li {
  line-height: 15px;
  list-style-type: none;
  list-style-image: none;
}
/* line 110, ../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: 13.5px 10px;
  border-bottom: 1px solid #cacad7;
  text-transform: capitalize;
  color: #045d8d;
}
/* line 116, ../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 119, ../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 129, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a {
  color: #104b7d;
  text-transform: uppercase;
}
/* line 132, ../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 137, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li > a:visited {
  color: #104b7d;
}
/* line 140, ../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 148, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-menus-nhlbi-menus-main-menu > ul.menu > li ul li a {
  background: #e4e3e3;
}
/* line 153, ../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 159, ../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 171, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block .healthTopicTitle {
  font-size: 12px;
  font-weight: bold;
}
/* line 175, ../sass/components/_menus.scss */
#main .sidebar .pane-nhlbi-page-structure-nhlbi-book-navigation #submenu-block > ul.menu {
  padding-top: 10px;
}
/* line 180, ../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 183, ../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 188, ../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 191, ../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 204, ../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 210, ../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 223, ../sass/components/_menus.scss */
#content #submenu-block, #nhlbi-submenu-block {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  margin: 1em 0;
}
/* line 228, ../sass/components/_menus.scss */
#content #submenu-block ul.menu, #nhlbi-submenu-block ul.menu {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
/* line 234, ../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 238, ../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 245, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li.active, #nhlbi-submenu-block ul.menu > li.active {
  font-weight: bold;
}
/* line 248, ../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 256, ../sass/components/_menus.scss */
#content #submenu-block ul.menu > li.last:after, #nhlbi-submenu-block ul.menu > li.last:after {
  content: "";
  padding: 0;
}
/* line 260, ../sass/components/_menus.scss */
#content #submenu-block ul.menu li.expandMore, #nhlbi-submenu-block ul.menu li.expandMore {
  position: relative;
}
/* line 262, ../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 267, ../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 284, ../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 289, ../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: 12.44446px;
  height: 42px;
  line-height: 42px;
  position: relative;
  background-color: #E8E8E8;
  vertical-align: middle;
  padding-left: 25px;
}
@media all and (min-width: 1440px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 12.44446px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 12.44446px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 12.44446px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    font-size: 10.66668px;
  }
}
@media all and (min-width: 1100px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    height: 42px;
    line-height: 42px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    height: 36px;
    line-height: 36px;
    padding-left: 15px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 8, ../sass/components/_header.scss */
  #banner {
    height: 20px;
    line-height: 20px;
    padding-left: 15px;
  }
}
/* line 30, ../sass/components/_header.scss */
#banner span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  color: #676767;
}

/* line 41, ../sass/components/_header.scss */
#block-sitebranding-2, #main-navbar {
  position: static;
}

/* line 45, ../sass/components/_header.scss */
#block-views-block-site-alerts-block-1.block,
#block-sitebranding-2.block {
  margin-bottom: 0;
}

/* line 50, ../sass/components/_header.scss */
#main-menu-header, #main-site-logo, #text-resize, #header-searchbox, #main-navbar {
  display: inline-block;
}

/* line 56, ../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 15px;
}
/* line 68, ../sass/components/_header.scss */
#main-menu-header a:hover {
  background-color: inherit;
  text-decoration: underline;
}
/* line 75, ../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;
  margin-left: 10px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 75, ../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 82, ../sass/components/_header.scss */
#main-menu-header #main-site-logo img {
  display: block;
  width: 250px;
}
/* line 92, ../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 100, ../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 105, ../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 112, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    width: 100%;
  }
  /* line 115, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li > span {
    padding-left: 30px;
  }
  /* line 118, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 {
    padding-left: 35px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 124, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    width: 50%;
  }
  /* line 127, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li > span {
    padding-left: 55px;
  }
  /* line 130, ../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 100, ../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 136, ../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 141, ../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 154, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0.menu-expanded {
    display: block;
  }
  /* line 159, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    background-color: #fcfcfc;
    padding: 0;
    margin-top: 0;
  }
  /* line 164, ../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 169, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-expanded {
    border-left: 5px solid #bf0d2e;
    background-color: #EFEFEF;
  }
  /* line 174, ../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: 16px;
    font-family: Lato, Verdana, Arial, sans-serif;
  }
  /* line 191, ../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 198, ../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 203, ../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 209, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 {
    background-color: white;
  }
  /* line 211, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 a {
    display: block;
    color: #575b5e;
    font-size: 16px;
  }
  /* line 219, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li {
    padding-bottom: 20px;
  }
  /* line 222, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li:first-child {
    padding-top: 20px;
  }
  /* line 226, ../sass/components/_header.scss */
  #main-menu-header #main-navbar #main-menu-item-the-science_children > li {
    padding-bottom: 0;
  }
  /* line 231, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-1 > li > ul {
    padding-top: 20px;
  }
  /* line 236, ../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 242, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 {
    padding-left: 0;
  }
  /* line 245, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 > li {
    padding-bottom: 20px;
  }
  /* line 248, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-2 > li:last-child {
    padding-bottom: 0;
  }
  /* line 253, ../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: #999;
    font-size: 16px;
  }
  /* line 261, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .highlighted > a {
    color: #bf0d2e;
    font-weight: bold;
  }
}
@media all and (min-width: 1100px) {
  /* line 271, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  /* line 278, ../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 286, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span {
    font-size: 16px;
    font-family: Lato, Verdana, Arial, sans-serif;
    color: #999;
  }
  /* line 294, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span {
    color: #999;
    cursor: pointer;
  }
  /* line 299, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link > span:hover {
    color: #bf0d2e;
  }
  /* line 303, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 li.menu-item-link.menu-expanded {
    border-bottom: 5px solid #bf0d2e;
  }
  /* line 307, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 li.menu-item-link.menu-expanded > span {
    color: #bf0d2e;
  }
  /* line 315, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .menu-level-0 > li.menu-item-link:not(.menu-expanded):hover > span {
    color: #bf0d2e;
  }
  /* line 319, ../sass/components/_header.scss */
  #main-menu-header #main-navbar .highlighted > a {
    color: #bf0d2e;
    font-weight: bold;
  }
}
@media all and (min-width: 1100px) {
  /* line 332, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper > div > ul {
    display: inline-block;
  }
  /* line 337, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper > div {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  /* line 342, ../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 351, ../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 356, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper ul.menu-level-1 {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  /* line 363, ../sass/components/_header.scss */
  #main-menu-header .main-menu-children-wrapper ul.menu-level-1 > li {
    padding-top: 10px;
  }
  /* line 367, ../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 372, ../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 378, ../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 385, ../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 390, ../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 394, ../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 398, ../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 402, ../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 406, ../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 410, ../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 417, ../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 422, ../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 426, ../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 431, ../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 448, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation a:hover {
  color: #990000;
}
/* line 451, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation a.is-active {
  color: #990000;
}
/* line 455, ../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 {
  text-decoration: none !important;
  border: none;
  box-shadow: none;
}
/* line 463, ../sass/components/_header.scss */
#main-menu-header #block-mainnavigation .menu-item.highlighted {
  margin-top: 10px;
}
/* line 469, ../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 474, ../sass/components/_header.scss */
#main-menu-header #text-resize > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 487, ../sass/components/_header.scss */
#block-mainnavigation {
  margin-bottom: 0;
}

/* line 493, ../sass/components/_header.scss */
#main-menu-container {
  border-bottom: 2px solid #F4F4F4;
}

/* line 498, ../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 507, ../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 517, ../sass/components/_header.scss */
.main-menu-children-wrapper .hidden {
  display: none;
}

/* line 521, ../sass/components/_header.scss */
.main-menu-children-wrapper .visible {
  display: block;
}

/* IE8 does not support :not() and :last-child. */
/* line 536, ../sass/components/_header.scss */
.breadcrumb li:before {
  content: ' / ';
}

/**
 * Breadcrumb navigation.
 */
/* line 544, ../sass/components/_header.scss */
.breadcrumb ol {
  margin: 7px 0 7px;
  padding-left: 45px;
  line-height: 1.1em;
}
/* line 549, ../sass/components/_header.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #104b7d;
  font-size: 14px;
  font-family: Lato, Verdana, Arial, sans-serif;
}
/* line 558, ../sass/components/_header.scss */
.breadcrumb a:link, .breadcrumb a:visited {
  text-decoration: none;
  color: #111;
}

/* line 563, ../sass/components/_header.scss */
.block-nhlbi-gsa {
  margin: 0;
}

/* line 568, ../sass/components/_header.scss */
#searchBoxIcon, #searchBoxIconInner {
  background-position: right;
  width: 25px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 568, ../sass/components/_header.scss */
  #searchBoxIcon, #searchBoxIconInner {
    margin-top: 6px;
  }
}

/* line 578, ../sass/components/_header.scss */
#searchBoxIcon {
  float: right;
  cursor: pointer;
}

/* line 582, ../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 588, ../sass/components/_header.scss */
#searchBoxIconInner {
  float: left;
  display: inline-block;
  margin-right: 10px;
}

/* line 594, ../sass/components/_header.scss */
#searchBoxForm {
  clear: both;
  float: left;
}

/* line 598, ../sass/components/_header.scss */
#srchbox_thin_box_modal {
  line-height: 1;
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  padding: 8px;
  z-index: 1;
  background-color: #fff;
  position: relative;
}

/* line 613, ../sass/components/_header.scss */
#srchbox_thin_box {
  display: none;
  line-height: 1;
  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 627, ../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 637, ../sass/components/_header.scss */
#header-searchbox {
  position: relative;
}
@media all and (max-width: 1100px) {
  /* line 637, ../sass/components/_header.scss */
  #header-searchbox {
    float: right;
    padding-right: 10px;
  }
}

/* line 645, ../sass/components/_header.scss */
#global-search-bar-tablet-desktop, #global-search-bar-phone {
  display: none;
}

/* line 652, ../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 652, ../sass/components/_header.scss */
  .global-search-bar {
    top: -5px;
    right: 60px;
  }
}
/* line 670, ../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 675, ../sass/components/_header.scss */
.global-search-bar form #searchQueryText {
  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 685, ../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 701, ../sass/components/_header.scss */
#global-search-bar-phone .global-search-bar {
  width: 100%;
  top: inherit;
}
/* line 704, ../sass/components/_header.scss */
#global-search-bar-phone .global-search-bar form {
  width: 95%;
}
/* line 706, ../sass/components/_header.scss */
#global-search-bar-phone .global-search-bar form #searchQueryText {
  width: 100%;
}

/* Footer */
/* line 3, ../sass/components/_footer.scss */
#block-footer {
  margin-bottom: 0;
}

/* line 7, ../sass/components/_footer.scss */
footer {
  background-color: #4A4A4A;
  color: #FFFFFF;
}

/* line 12, ../sass/components/_footer.scss */
main {
  min-height: 500px;
}

/* line 16, ../sass/components/_footer.scss */
#footer-bottom ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 23, ../sass/components/_footer.scss */
#footer-bottom .menu-item {
  padding: 0;
}
/* line 27, ../sass/components/_footer.scss */
#footer-bottom .footer__logo-image {
  width: 240px;
  display: block;
  padding-bottom: 20px;
}
/* line 31, ../sass/components/_footer.scss */
#footer-bottom .footer__logo-image .link-title {
  padding-left: 30px;
}
/* line 36, ../sass/components/_footer.scss */
#footer-bottom a:hover {
  background-color: inherit;
  text-decoration: underline;
}
/* line 41, ../sass/components/_footer.scss */
#footer-bottom ul#footer-social {
  padding-left: 0px;
}
/* line 44, ../sass/components/_footer.scss */
#footer-bottom ul#footer-social > li:first-child {
  padding-left: 0px;
}
/* line 49, ../sass/components/_footer.scss */
#footer-bottom #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 53, ../sass/components/_footer.scss */
#footer-bottom #footer-block-alerts form #emailAddress {
  width: 100%;
  border-style: none;
}
/* line 60, ../sass/components/_footer.scss */
#footer-bottom #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;
}
/* line 72, ../sass/components/_footer.scss */
#footer-bottom #footer-block-alerts #emailAddress {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0 0 0 10px;
}
/* line 78, ../sass/components/_footer.scss */
#footer-bottom #footer-block-alerts form > input {
  height: 30px;
  color: black;
}
/* line 84, ../sass/components/_footer.scss */
#footer-bottom #footer-block-alerts #emailAddress {
  color: black;
}
/* line 89, ../sass/components/_footer.scss */
#footer-bottom #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: 35px;
  padding-left: 30px;
}
/* line 95, ../sass/components/_footer.scss */
#footer-bottom #footer-block-social {
  padding-top: 30px;
}
/* line 99, ../sass/components/_footer.scss */
#footer-bottom #footer-block-policy li.menu-item a {
  font-size: 12px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  color: white;
}
@media all and (min-width: 1440px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    font-size: 12px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    font-size: 12px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    font-size: 10px;
  }
}
@media all and (min-width: 1440px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 99, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy li.menu-item a {
    line-height: 18px;
  }
}
/* line 107, ../sass/components/_footer.scss */
#footer-bottom #footer-block-5 li.menu-item a {
  font-size: 12px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  color: white;
}
@media all and (min-width: 1440px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    font-size: 12px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    font-size: 12px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    font-size: 10px;
  }
}
@media all and (min-width: 1440px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 107, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li.menu-item a {
    line-height: 18px;
  }
}
/* line 114, ../sass/components/_footer.scss */
#footer-bottom a, #footer-bottom a:link, #footer-bottom h3 {
  color: #FFFFFF;
}
/* line 117, ../sass/components/_footer.scss */
#footer-bottom .bodytext, #footer-bottom .darkGrayBodyText, #footer-bottom .foa-expiration-date {
  color: #FFFFFF;
}
/* line 120, ../sass/components/_footer.scss */
#footer-bottom p {
  margin: 0;
  padding: 0;
}
/* line 125, ../sass/components/_footer.scss */
#footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
  font-size: 12px;
  line-height: 20px;
  font-family: Lato, Verdana, Arial, sans-serif;
  color: white;
}
@media all and (min-width: 1440px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 12px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 12px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    font-size: 10px;
  }
}
@media all and (min-width: 1440px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 125, ../sass/components/_footer.scss */
  #footer-bottom .footerbody, #footer-bottom a.footerbody, #footer-bottom div.footerbody {
    line-height: 18px;
  }
}
/* line 133, ../sass/components/_footer.scss */
#footer-bottom h3 {
  font-weight: bold;
}
/* line 138, ../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 143, ../sass/components/_footer.scss */
#footer-bottom .link-title a {
  line-height: 15px;
}
/* line 149, ../sass/components/_footer.scss */
#footer-bottom #footer-block-logo .link-title {
  padding: 0 0 0 30px;
}
/* line 154, ../sass/components/_footer.scss */
#footer-bottom #footer-block-5 > div:first-child {
  padding-top: 20px;
}
/* line 157, ../sass/components/_footer.scss */
#footer-bottom #footer-block-5 > div:last-child {
  padding: 10px 0 20px 0;
}
/* line 162, ../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 167, ../sass/components/_footer.scss */
#footer-bottom #desktop-3-col > div {
  width: 30%;
  padding-left: 40px;
}
/* line 172, ../sass/components/_footer.scss */
#footer-bottom #tablet-2-col > div {
  width: 45%;
}
/* line 176, ../sass/components/_footer.scss */
#footer-bottom #footer-wrapper-top {
  background-color: #575B5E;
}
/* line 180, ../sass/components/_footer.scss */
#footer-bottom #footer-wrapper-bottom ul {
  text-align: center;
}
/* line 186, ../sass/components/_footer.scss */
#footer-bottom #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 192, ../sass/components/_footer.scss */
  #footer-bottom #phone-1-col {
    display: block;
  }
  /* line 196, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 li {
    display: block;
    padding-left: 0px;
  }
  /* line 200, ../sass/components/_footer.scss */
  #footer-bottom #footer-wrapper-top, #footer-bottom #footer-wrapper-bottom {
    padding: 0 30px;
  }
  /* line 202, ../sass/components/_footer.scss */
  #footer-bottom #footer-wrapper-top ul, #footer-bottom #footer-wrapper-bottom ul {
    text-align: left;
  }
  /* line 207, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-5 > div:last-child {
    padding: 0 0 20px 0;
  }
  /* line 211, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy, #footer-bottom #footer-block-social, #footer-bottom #footer-block-alerts {
    padding-top: 30px;
  }
}
@media all and (min-width: 1100px) {
  /* line 216, ../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: 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;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 223, ../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: 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 229, ../sass/components/_footer.scss */
  #footer-bottom #footer-block-policy, #footer-bottom #footer-block-social {
    padding-top: 30px;
  }
}

/* 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: Lato, 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: Lato, 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%;
}
/* line 11, ../sass/components/_landing_pages.scss */
.node--type-landing-page h1.eventHT {
  text-align: left;
  margin-top: 0.67em;
  margin-bottom: 0.2em;
}
/* 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 24, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView a {
  color: #fff;
}
/* line 27, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView .view-content {
  text-align: center;
  margin: 1em;
}
/* line 30, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView .view-content .views-row {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0;
}
/* line 34, ../sass/components/_landing_pages.scss */
.trendingHealthTopicsView .view-content .views-row .views-field-title {
  margin: 0.5em auto;
}

/* line 43, ../sass/components/_landing_pages.scss */
.field--name-field-content .view-nhlbi-featured-health-topic-news .view-content {
  width: 100%;
}

/* line 48, ../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 53, ../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 137, ../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;
}
/* line 140, ../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:visited, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText a:link, .node--type-feature-article.node--view-mode-landing-page-teaser .flexItemText a:hover,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a:visited,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a:link,
.node--type-general.node--view-mode-landing-page-teaser .flexItemText a:hover,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a:visited,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a:link,
.node--type-press-release.node--view-mode-landing-page-teaser .flexItemText a:hover {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 56, ../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 61, ../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 69, ../sass/components/_landing_pages.scss */
.ht-featured-clinical-trial {
  background-color: #1e91d4;
}
/* line 71, ../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 137, ../sass/_mixins.scss */
.ht-featured-clinical-trial .flexItemText h1, .ht-featured-clinical-trial .flexItemText .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.ht-featured-clinical-trial .flexItemText a, .ht-featured-clinical-trial .flexItemText a:visited, .ht-featured-clinical-trial .flexItemText a:link, .ht-featured-clinical-trial .flexItemText a:hover {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 71, ../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 79, ../sass/components/_landing_pages.scss */
.ht-featured-clinical-trial .flexItemImage, .ht-featured-clinical-trial .flexItemImageHalf, .ht-featured-clinical-trial .flexItemImageTenth, .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 79, ../sass/components/_landing_pages.scss */
  .ht-featured-clinical-trial .flexItemImage, .ht-featured-clinical-trial .flexItemImageHalf, .ht-featured-clinical-trial .flexItemImageTenth, .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 88, ../sass/components/_landing_pages.scss */
.promoted-content-container {
  background-color: #1a568c;
}
/* line 90, ../sass/components/_landing_pages.scss */
.promoted-content-container .flexItemImage, .promoted-content-container .flexItemImageHalf, .promoted-content-container .flexItemImageTenth, .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 93, ../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 137, ../sass/_mixins.scss */
.promoted-content-container .flexItemText h1, .promoted-content-container .flexItemText .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.promoted-content-container .flexItemText a, .promoted-content-container .flexItemText a:visited, .promoted-content-container .flexItemText a:link, .promoted-content-container .flexItemText a:hover {
  color: #fff;
}

/* line 107, ../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-scientific-leadership,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat, .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-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 .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-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 .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 article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content,
.research-topics--landing .node--type-content-block .field--name-field-related-publications, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education, .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 .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, .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 .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 article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article {
  background-color: #102d65;
}
/* line 109, ../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-scientific-leadership .flexItemImage,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemImage,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemImage, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content .flexItemImage,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImage, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education .flexItemImage, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemImage,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .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-scientific-leadership .flexItemImageHalf,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemImageHalf,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemImageHalf, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content .flexItemImageHalf,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageHalf, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemImageHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .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-scientific-leadership .flexItemImageTenth,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemImageTenth,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemImageTenth, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content .flexItemImageTenth,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageTenth, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemImageTenth,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemImageTenth, .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-scientific-leadership .flexItemImageThird,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemImageThird,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemImageThird, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content .flexItemImageThird,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThird, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education .flexItemImageThird, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemImageThird,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .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-scientific-leadership .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemImageThirdHalf, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemImageThirdHalf,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .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-scientific-leadership .hero-image,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .hero-image,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .hero-image, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .hero-image, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 112, ../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-scientific-leadership .flexItemText,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText, .research-topics--landing .node--type-content-block .publicationsBlock > .view-content .flexItemText,
.research-topics--landing .node--type-content-block .field--name-field-related-publications .flexItemText, .research-topics--landing .node--type-content-block .healthEducationBlock article.node--type-heath-education .flexItemText, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemText,
.research-topics--landing .node--type-content-block .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block article .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  color: #000;
  background-color: transparent;
}
/* line 137, ../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-scientific-leadership .flexItemText h1,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText h1, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText h1,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText h1,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText h1, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText h1, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .photocredit, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText .photocredit,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .photocredit,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText .photocredit, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText .photocredit, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText .photocredit {
  color: #000;
}
/* line 140, ../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-scientific-leadership .flexItemText a,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText a,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText a, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText a, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText a, .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-scientific-leadership .flexItemText a:visited,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText a:visited,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText a:visited, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText a:visited, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText a:visited, .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-scientific-leadership .flexItemText a:link,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText a:link, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText a:link,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText a:link,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText a:link, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText a:link, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText a:link, .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-scientific-leadership .flexItemText a:hover,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText a:hover, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText a:hover,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText a:hover,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText a:hover, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText a:hover, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText a:hover {
  color: #000;
}
/* line 116, ../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-scientific-leadership .flexItemText p,
.research-topics--landing .node--type-content-block .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText p, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block article .flexItemText p,
.research-topics--landing .node--type-content-block .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText p,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block article .flexItemText p, .research-topics--landing .node--type-content-block .publicationsBlock > .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 article.node--type-heath-education .flexItemText p, .healthEducationBlock .research-topics--landing .node--type-content-block article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText p {
  color: #fff;
}
/* line 122, ../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-scientific-leadership > .flexItemText,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText,
.research-topics--landing .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-content-block > article > .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText {
  color: #fff;
  background-color: transparent;
}
/* line 137, ../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-scientific-leadership > .flexItemText h1,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText h1, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText h1,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText h1,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText h1, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText h1, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .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 > article > .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 > article > .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 > article > .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-scientific-leadership > .flexItemText .photocredit,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText .photocredit, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText .photocredit,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText .photocredit,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText .photocredit, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText .photocredit, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .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 > article > .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 > article > .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 > article > .flexItemText .photocredit {
  color: #fff;
}
/* line 140, ../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-scientific-leadership > .flexItemText a,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText a, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .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 > article > .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 > article > .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 > article > .flexItemText a, .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-scientific-leadership > .flexItemText a:visited,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a:visited,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a:visited, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText a:visited, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .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 > article > .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 > article > .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 > article > .flexItemText a:visited, .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-scientific-leadership > .flexItemText a:link,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText a:link, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a:link,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText a:link,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a:link, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText a:link, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .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 > article > .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 > article > .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 > article > .flexItemText a:link, .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-scientific-leadership > .flexItemText a:hover,
.research-topics--landing .node--type-content-block > .field--name-field-operations-and-administrat > .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-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 > .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-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 > .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 > article > .flexItemText a:hover, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a:hover,
.research-topics--landing .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-content-block > article > .flexItemText a:hover,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .research-topics--landing .node--type-content-block > article > .flexItemText a:hover, .research-topics--landing .publicationsBlock.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 > article.node--type-heath-education > .flexItemText a:hover, .healthEducationBlock .research-topics--landing .node--type-content-block > article.node--type-heath-education > .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-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 > .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 > .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 > article > .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 > article > .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 > article > .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 > article > .flexItemText a:hover {
  color: #fff;
}

@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 133, ../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 139, ../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%;
}
/* line 146, ../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 .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 .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 .flexItemImageThird, .node--type-landing-page .updateCard .flexItemImageThirdHalf, .node--type-landing-page .updateCard .hero-image {
  padding: 1em;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 155, ../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 .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 .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 .flexItemImageThird .photocredit, .node--type-landing-page .updateCard .flexItemImageThirdHalf .photocredit, .node--type-landing-page .updateCard .hero-image .photocredit {
  margin-right: 1rem;
}
/* line 159, ../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 168, ../sass/components/_landing_pages.scss */
.node--type-landing-page .listCard .flexItemText h3 a, .node--type-landing-page .newsEventsCard .flexItemText h3 a, .node--type-landing-page .updateCard .flexItemText h3 a {
  color: #333;
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  font-weight: normal;
}
/* line 174, ../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: #666;
  float: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 180, ../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 192, ../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 195, ../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 199, ../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: #000;
  background-image: none;
  font-size: 14px;
  line-height: 20px;
  background-image: none;
  padding-left: 1.1em;
}
@media all and (min-width: 1100px) {
  /* line 199, ../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 199, ../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 199, ../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 199, ../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 199, ../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 199, ../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 199, ../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: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 199, ../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: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 199, ../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: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 199, ../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: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 199, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 199, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 199, ../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 {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 199, ../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 {
    line-height: 18px;
  }
}
@media all and (min-width: 1100px) {
  /* line 199, ../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 207, ../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: 100%;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
}
/* line 211, ../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 214, ../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: #3885ca;
  text-decoration: none;
}
/* line 1410, ../sass/_mixins.scss */
.view-nhlbi-research-topics.general-accordion .ui-accordion-content.ui-widget-content .views-row > a :hover,
.view-nhlbi-research-topics.primary-accordion .ui-accordion-content.ui-widget-content .views-row > a :hover {
  background-color: #f2f2f2;
}

/* line 232, ../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 232, ../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: 1em;
  }
}
/* line 237, ../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: #575b5e;
}
/* line 239, ../sass/components/_landing_pages.scss */
.events--landing .eventFeatured .flexItemText .herobannertitle a, .events--landing .eventFeatured .flexItemText .herobannertitle-grey a, .events--landing .eventFeatured .flexItemText .herobannertitle a:visited, .events--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited, .events--landing .newsFeatured .flexItemText .herobannertitle a, .events--landing .newsFeatured .flexItemText .herobannertitle-grey a, .events--landing .newsFeatured .flexItemText .herobannertitle a:visited, .events--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle a,
.research-topic-events--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.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,
.research-topic-events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.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,
.principle-investigator-events--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.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,
.principle-investigator-events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.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,
.all-events--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.all-events--landing .eventFeatured .flexItemText .herobannertitle a:visited,
.all-events--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited,
.all-events--landing .newsFeatured .flexItemText .herobannertitle a,
.all-events--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.all-events--landing .newsFeatured .flexItemText .herobannertitle a:visited,
.all-events--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited,
.all-news--landing .eventFeatured .flexItemText .herobannertitle a,
.all-news--landing .eventFeatured .flexItemText .herobannertitle-grey a,
.all-news--landing .eventFeatured .flexItemText .herobannertitle a:visited,
.all-news--landing .eventFeatured .flexItemText .herobannertitle-grey a:visited,
.all-news--landing .newsFeatured .flexItemText .herobannertitle a,
.all-news--landing .newsFeatured .flexItemText .herobannertitle-grey a,
.all-news--landing .newsFeatured .flexItemText .herobannertitle a:visited,
.all-news--landing .newsFeatured .flexItemText .herobannertitle-grey a:visited {
  color: #575b5e;
}

/* line 249, ../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 257, ../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 268, ../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 268, ../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 282, ../sass/components/_landing_pages.scss */
.all-events--landing h1.eventHT,
.all-news--landing h1.eventHT {
  padding-bottom: 0.5em;
}
/* line 285, ../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 2em 0;
}
/* line 288, ../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 292, ../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 298, ../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-right: 20px;
}
/* line 309, ../sass/components/_landing_pages.scss */
.all-events--landing .view-content .views-row,
.all-news--landing .view-content .views-row {
  padding-bottom: 1em;
}
/* line 313, ../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 317, ../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;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 317, ../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 324, ../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 324, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .flexItemText.flexTextWithImage,
  .all-news--landing .newsEventsCard .flexItemText.flexTextWithImage {
    max-width: 60%;
  }
}
/* line 330, ../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: 1em;
  -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 330, ../sass/components/_landing_pages.scss */
  .all-events--landing .newsEventsCard .flexItemText,
  .all-news--landing .newsEventsCard .flexItemText {
    min-width: 60%;
    flex-basis: 60%;
  }
}
/* line 343, ../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: #3885ca;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 347, ../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 353, ../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 356, ../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 359, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemText .readMoreWrapper,
.all-news--landing .newsEventsCard .flexItemText .readMoreWrapper {
  display: none;
}
/* line 363, ../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: #666;
  float: left;
}
/* line 370, ../sass/components/_landing_pages.scss */
.all-events--landing .newsEventsCard .flexItemImage, .all-events--landing .newsEventsCard .flexItemImageHalf, .all-events--landing .newsEventsCard .flexItemImageTenth, .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 .flexItemImageThird,
.all-news--landing .newsEventsCard .flexItemImageThirdHalf,
.all-news--landing .newsEventsCard .hero-image {
  padding: 1em 0 1em 1em;
  min-width: 22%;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

/* line 381, ../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 381, ../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: 0em) and (max-width: 1099px) {
  /* line 388, ../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 392, ../sass/components/_landing_pages.scss */
.eventdatesLocationType .map-icon {
  background-position: 15% center;
}

/* line 396, ../sass/components/_landing_pages.scss */
.topicFeatured {
  background-color: #fff;
}
/* line 398, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content {
  margin-top: 0;
  padding-bottom: 1.5em;
}
/* line 402, ../sass/components/_landing_pages.scss */
.topicFeatured .view-content .views-row {
  margin-top: 0;
}
/* line 404, ../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-scientific-leadership,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat, .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-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 .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-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 .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 article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article, .topicFeatured .view-content .views-row .publicationsBlock > .view-content,
.topicFeatured .view-content .views-row .field--name-field-related-publications, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education, .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 .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, .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 .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 article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article {
  padding-top: 0;
}
/* line 406, ../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-scientific-leadership .flexItemImage,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemImage,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemImage, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemImage,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImage, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemImage, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemImage,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .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-scientific-leadership .flexItemImageHalf,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemImageHalf,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemImageHalf, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemImageHalf,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageHalf, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemImageHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .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-scientific-leadership .flexItemImageTenth,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemImageTenth,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemImageTenth, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemImageTenth,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageTenth, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemImageTenth,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemImageTenth, .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-scientific-leadership .flexItemImageThird,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemImageThird,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemImageThird, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemImageThird,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThird, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemImageThird, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemImageThird,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .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-scientific-leadership .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemImageThirdHalf, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemImageThirdHalf,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .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-scientific-leadership .hero-image,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .hero-image,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .hero-image, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .hero-image,
.topicFeatured .view-content .views-row .field--name-field-related-publications .hero-image, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .hero-image, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .hero-image,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
/* line 409, ../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-scientific-leadership .flexItemText,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemText,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemText, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-top: 0;
}
/* line 412, ../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-scientific-leadership .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .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-scientific-leadership .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .herobannertitle-grey, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle-grey, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle-grey, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey {
  color: #575b5e;
}
/* line 414, ../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-scientific-leadership .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .herobannertitle a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText .herobannertitle a, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle a, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemText .herobannertitle a, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a,
.topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .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-scientific-leadership .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .herobannertitle-grey a, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle-grey a,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a, .topicFeatured .view-content .views-row .publicationsBlock > .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 article.node--type-heath-education .flexItemText .herobannertitle-grey a, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText .herobannertitle-grey a, .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-scientific-leadership .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .herobannertitle a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:visited,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle a:visited, .topicFeatured .view-content .views-row .publicationsBlock > .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 article.node--type-heath-education .flexItemText .herobannertitle a:visited, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText .herobannertitle-grey a:visited, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:visited,
.topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle-grey a:visited,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText .herobannertitle-grey a:visited, .topicFeatured .view-content .views-row .publicationsBlock > .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 article.node--type-heath-education .flexItemText .herobannertitle-grey a:visited, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText .herobannertitle-grey a:visited {
  color: #575b5e;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 409, ../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-scientific-leadership .flexItemText,
  .topicFeatured .view-content .views-row .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .view-content .views-row article .flexItemText,
  .topicFeatured .view-content .views-row .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .view-content .views-row article .flexItemText, .topicFeatured .view-content .views-row .publicationsBlock > .view-content .flexItemText,
  .topicFeatured .view-content .views-row .field--name-field-related-publications .flexItemText, .topicFeatured .view-content .views-row .healthEducationBlock article.node--type-heath-education .flexItemText, .healthEducationBlock .topicFeatured .view-content .views-row article.node--type-heath-education .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 .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 .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 .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 article .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText,
  .topicFeatured .view-content .views-row .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .view-content .views-row article .flexItemText {
    padding-top: 1em;
  }
}

/* line 434, ../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: #000;
  width: 100%;
  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: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 434, ../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;
  }
}
@media all and (min-width: 1100px) {
  /* line 434, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 434, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper {
    width: 95%;
  }
}
/* line 457, ../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 457, ../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 457, ../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 457, ../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 457, ../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 464, ../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 469, ../sass/components/_landing_pages.scss */
  .topicLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 475, ../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: #000;
  width: 100%;
}
/* line 490, ../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 490, ../sass/components/_landing_pages.scss */
  .newsEventsLanding > .view-content > .views-infinite-scroll-content-wrapper .views-row {
    width: auto;
    flex-basis: auto;
  }
}

/* line 495, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters {
  border-top: none;
}
/* line 496, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters form {
  overflow: visible;
  padding: 2em 0;
}
/* line 502, ../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 502, ../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 502, ../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 507, ../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 507, ../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 507, ../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 513, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #view-filter-accordion .ui-accordion-content {
  padding: 0.8em 0.6em;
}
/* line 518, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #view-filter-accordion .ui-multiselect .ui-icon {
  margin-top: 0.27em;
}
/* line 522, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header {
  text-align: center;
  border-color: #d7d7d7;
}
/* line 526, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-default,
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-active {
  background: #f2f2f2;
}
/* line 531, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-hover,
.newsEventsLanding > .view-filters .ui-accordion h3.ui-accordion-header.ui-state-active.ui-state-hover {
  background: #d7d7d7;
}
/* line 537, ../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: Lato, Verdana, Arial, sans-serif;
}
/* line 543, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-widget.ui-state-default,
.newsEventsLanding > .view-filters .ui-widget.ui-state-active {
  background: #f2f2f2;
}
/* line 548, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters .ui-widget.ui-state-hover {
  background: #d7d7d7;
}
/* line 552, ../sass/components/_landing_pages.scss */
.newsEventsLanding > .view-filters #edit-actions input {
  line-height: 1.4em;
  font-size: .8em;
}

/* line 560, ../sass/components/_landing_pages.scss */
.view-filters:after {
  border: none;
}

/* line 565, ../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 581, ../sass/components/_landing_pages.scss */
  .news-and-events--landing h1 {
    text-align: left;
  }
}
/* line 586, ../sass/components/_landing_pages.scss */
.news-and-events--landing .bluesubhead, .news-and-events--landing .whitesubhead, .news-and-events--landing h2, .news-and-events--landing .contact-method-label {
  margin-top: 0.4em;
}
/* line 594, ../sass/components/_landing_pages.scss */
.news-and-events--landing .views-element-container > .topicLanding {
  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 594, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .views-element-container > .topicLanding {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 594, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .views-element-container > .topicLanding {
    width: 95%;
  }
}
/* line 597, ../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 603, ../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 603, ../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 618, ../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: 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%;
  }
   */
  margin-top: 0;
  padding-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 618, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 618, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 618, ../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 630, ../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;
}
@media all and (min-width: 768px) {
  /* line 630, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social > .contact-container {
    width: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 630, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social > .contact-container {
    width: auto;
    flex-basis: auto;
  }
}
/* line 645, ../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 645, ../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 645, ../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 668, ../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 676, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .content-container, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .topicFeatured .view-content, .topicFeatured .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news article, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .previous-directors-container {
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 680, ../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-scientific-leadership,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat, .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-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 .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-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 .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 article, .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 article,
  .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 article,
  .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 article, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education, .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 .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, .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 .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 article, .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 article,
  .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 article,
  .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 article {
    -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 684, ../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-scientific-leadership .flexItemImage,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemImage, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemImage, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemImageHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemImageHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemImageTenth,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemImageTenth, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemImageTenth, .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-scientific-leadership .flexItemImageThird,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemImageThird, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemImageThird, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemImageThirdHalf,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemImageThirdHalf, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .hero-image,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .hero-image, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .hero-image, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .hero-image {
    padding: 1em 0 1em 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 689, ../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-scientific-leadership .flexItemText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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 694, ../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-scientific-leadership .flexItemText .bodytext,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText .bodytext, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemText .darkGrayBodyText,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText .darkGrayBodyText, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemText .foa-expiration-date,
.news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText .foa-expiration-date, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText .foa-expiration-date {
  display: block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 694, ../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-scientific-leadership .flexItemText .bodytext,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText .bodytext, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText .bodytext, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemText .darkGrayBodyText,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText .darkGrayBodyText, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText .darkGrayBodyText, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .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-scientific-leadership .flexItemText .foa-expiration-date,
  .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .field--name-field-operations-and-administrat .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-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 .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-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 .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 article .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 article .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 article .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 article .flexItemText .foa-expiration-date, .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content .publicationsBlock > .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 article.node--type-heath-education .flexItemText .foa-expiration-date, .healthEducationBlock .news-and-events--landing .view-nhlbi-all-news .view-nhlbi-featured-news .view-content article.node--type-heath-education .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 .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 .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 .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 article .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 article .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 article .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 article .flexItemText .foa-expiration-date {
    display: none;
  }
}
/* line 706, ../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 706, ../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: 1099px) {
  /* line 711, ../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 .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: 1em 0 1em 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 722, ../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 722, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .view-nhlbi-all-news .view-content .newsEventsCard .flexItemText {
    min-width: 60%;
    flex-basis: 60%;
  }
}
/* line 733, ../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 739, ../sass/components/_landing_pages.scss */
.news-and-events--landing .view-nhlbi-all-news .view-content .readMoreTeaserLink {
  display: none;
}
/* line 745, ../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 748, ../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 752, ../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 752, ../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 759, ../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 .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 766, ../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 766, ../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 774, ../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 778, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social {
  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%;
  }
   */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media all and (min-width: 1100px) {
  /* line 778, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 778, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social {
    width: 95%;
  }
}
/* line 782, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .contact-container {
  border: #d7e7f4 3px solid;
  padding: 1em;
  margin: 1em 1em 1em 0;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 782, ../sass/components/_landing_pages.scss */
  .news-and-events--landing .landing-social .contact-container {
    width: 30%;
    max-width: auto;
  }
}
/* line 791, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .contact-container .contact-brief-description {
  display: block;
}
/* line 795, ../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 797, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box {
  border: none;
}
/* line 799, ../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 803, ../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 809, ../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 814, ../sass/components/_landing_pages.scss */
.news-and-events--landing .landing-social .press-team .contact-box .blackstandardsubhead {
  display: none;
}
/* line 820, ../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 832, ../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 832, ../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 832, ../sass/components/_landing_pages.scss */
  .updates--landing .updatesHeader {
    width: 95%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 836, ../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 836, ../sass/components/_landing_pages.scss */
  .updates--landing .content-indent.list-title-block {
    padding-left: 0;
  }
}

/* line 846, ../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: #000;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 846, ../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 849, ../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 849, ../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 849, ../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 849, ../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 849, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row {
    margin-right: 0;
  }
}
@media all and (min-width: 1100px) {
  /* line 857, ../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 862, ../sass/components/_landing_pages.scss */
  .rtUpdatesView .views-infinite-scroll-content-wrapper .views-row:nth-child(2n) {
    margin-right: 0;
  }
}
/* line 869, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
}
/* line 1299, ../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;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 869, ../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: 0.35em 2.5em;
  }
}
/* line 1339, ../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: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 869, ../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: 0.35em 2.5em;
  }
}
/* line 1352, ../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;
}

/* line 876, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-header {
  padding: 2em 0;
}
/* line 879, ../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 879, ../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 891, ../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 891, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-header .flexItemText {
    padding: 1.5em 0 0.5em 0;
  }
}
/* line 897, ../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 901, ../sass/components/_landing_pages.scss */
.all-science--landing .all-science-index {
  margin-top: 0;
}
@media all and (min-width: 1440px) {
  /* line 901, ../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 901, ../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 901, ../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 901, ../sass/components/_landing_pages.scss */
  .all-science--landing .all-science-index {
    width: 90%;
    padding-left: 0;
  }
}

/* line 929, ../sass/components/_landing_pages.scss */
.sfa-card-container {
  padding-bottom: 2em;
  padding-top: 2em;
}

/* line 937, ../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 941, ../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 941, ../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 941, ../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 941, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item {
    width: auto;
  }
}
/* line 953, ../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 953, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card {
    margin-right: 0;
  }
}
/* line 963, ../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 0.2em 0.5em 1em;
}
@media all and (min-width: 768px) {
  /* line 963, ../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 963, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname-container {
    height: auto;
  }
}
/* line 975, ../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 975, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item .sfa-short-card .sfaname {
    padding: 1em;
    height: auto;
    margin-top: 0;
  }
}

@media all and (min-width: 1100px) {
  /* line 990, ../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 997, ../sass/components/_landing_pages.scss */
  .field--name-field-sfa-cards > .field__item:nth-child(3n) .sfa-short-card {
    margin-right: 0;
  }
}

/* line 1005, ../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 1012, ../sass/components/_landing_pages.scss */
.field--name-field-clinical-trial-program-pro {
  background-color: #1d8ed0;
}
/* line 1014, ../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 1023, ../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 1023, ../sass/components/_landing_pages.scss */
  .executive-leadership-landing-page--landing .field--name-field-description {
    padding-top: 0;
    padding-bottom: 1em;
  }
}

/* line 1032, ../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 1032, ../sass/components/_landing_pages.scss */
  .executive-leadership-card-container {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

/* line 1040, ../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 1045, ../sass/components/_landing_pages.scss */
.bioCard {
  background-color: #fff;
}
/* line 1047, ../sass/components/_landing_pages.scss */
.bioCard .flexItemImage, .bioCard .flexItemImageHalf, .bioCard .flexItemImageTenth, .bioCard .flexItemImageThird, .bioCard .flexItemImageThirdHalf, .bioCard .hero-image {
  min-width: auto;
}

/* line 1052, ../sass/components/_landing_pages.scss */
.director-bioCard {
  background-color: transparent;
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1052, ../sass/components/_landing_pages.scss */
  .director-bioCard {
    margin-top: 0;
  }
}
/* line 1058, ../sass/components/_landing_pages.scss */
.director-bioCard h1 {
  margin-bottom: 0;
  text-align: center;
}
/* line 1062, ../sass/components/_landing_pages.scss */
.director-bioCard .flexItemImage, .director-bioCard .flexItemImageHalf, .director-bioCard .flexItemImageTenth, .director-bioCard .flexItemImageThird, .director-bioCard .flexItemImageThirdHalf, .director-bioCard .hero-image {
  min-width: auto;
}

/* line 1067, ../sass/components/_landing_pages.scss */
.bioCard, .director-bioCard {
  text-align: center;
  padding: 1em;
}

/* line 1072, ../sass/components/_landing_pages.scss */
.bioCard, .director-bioCard, .leadership-bioCard {
  margin-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1072, ../sass/components/_landing_pages.scss */
  .bioCard, .director-bioCard, .leadership-bioCard {
    margin-bottom: 0;
  }
}
/* line 1079, ../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 1085, ../sass/components/_landing_pages.scss */
.bioCard .membername, .director-bioCard .membername, .leadership-bioCard .membername {
  padding-bottom: 0.8em;
}
/* line 1088, ../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 1101, ../sass/components/_landing_pages.scss */
.executive-news--landing .topicFeatured article {
  margin-top: 0;
}
/* line 1106, ../sass/components/_landing_pages.scss */
.executive-news--landing .node--view-mode-executive-teaser {
  background: #fff;
}
/* line 1108, ../sass/components/_landing_pages.scss */
.executive-news--landing .node--view-mode-executive-teaser .flexItemText {
  padding-top: 1rem;
}

/* line 1118, ../sass/components/_landing_pages.scss */
.advisory-and-peer-review-committees--landing .primaryRedBackground h2, .advisory-and-peer-review-committees--landing .primaryRedBackground .contact-method-label, .contact-nhlbi--landing .primaryRedBackground h2, .contact-nhlbi--landing .primaryRedBackground .contact-method-label {
  color: #fff;
}

/* line 1123, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 1128, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees > .field__item {
  background-color: #fff;
  padding: 1em;
}
@media all and (min-width: 1100px) {
  /* line 1128, ../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 1128, ../sass/components/_landing_pages.scss */
  .field--name-field-advisory-committees > .field__item {
    width: 40%;
  }
}
/* line 1138, ../sass/components/_landing_pages.scss */
.field--name-field-advisory-committees > .field__item h5 > a, .field--name-field-advisory-committees > .field__item .node--type-webform .form-type-checkbox label span > a, .node--type-webform .form-type-checkbox label .field--name-field-advisory-committees > .field__item span > a, .field--name-field-advisory-committees > .field__item .webform-submission-form .form-type-checkbox label span > a, .webform-submission-form .form-type-checkbox label .field--name-field-advisory-committees > .field__item span > a {
  color: #4a4a4a;
}

/* line 1142, ../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 1142, ../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 1142, ../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 1152, ../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 1152, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .contact-nhlbi-title {
    padding-right: 1em;
  }
}
/* line 1191, ../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 1191, ../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 1191, ../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 1191, ../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 1218, ../sass/components/_landing_pages.scss */
.contact-nhlbi-titleblock .callout-contact-link h5, .contact-nhlbi-titleblock .callout-contact-link .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .contact-nhlbi-titleblock .callout-contact-link span, .contact-nhlbi-titleblock .callout-contact-link .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .contact-nhlbi-titleblock .callout-contact-link span {
  margin: 0;
}
/* line 1221, ../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 1221, ../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 1221, ../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 1221, ../sass/components/_landing_pages.scss */
  .contact-nhlbi-titleblock .callout-contact-link a {
    line-height: 40px;
  }
}

/* line 1238, ../sass/components/_landing_pages.scss */
.field--name-field-contact-cards {
  margin-top: 2.5em;
  margin-bottom: 1.5em;
}

/* line 1244, ../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 1244, ../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 1244, ../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 1244, ../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 1279, ../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 1298, ../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 1303, ../sass/components/_landing_pages.scss */
  .field--name-field-contact-cards > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 1309, ../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 1309, ../sass/components/_landing_pages.scss */
  .locationMap.contact-location-map-container, .locationMap {
    padding-top: 1.5rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1309, ../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 1309, ../sass/components/_landing_pages.scss */
  .locationMap.contact-location-map-container, .locationMap {
    padding-top: 0;
  }
}
/* line 1322, ../sass/components/_landing_pages.scss */
.locationMap.contact-location-map-container #map, .locationMap.contact-location-map-container .mapLocation, .locationMap #map, .locationMap .mapLocation {
  float: none;
}
/* line 1325, ../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 1343, ../sass/components/_landing_pages.scss */
.job-opportunities--landing h1, .isi-job-opportunities--landing h1 {
  margin-bottom: 0.1em;
}
/* line 1347, ../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 1353, ../sass/components/_landing_pages.scss */
.job-opportunities--landing article.standard-card, .isi-job-opportunities--landing article.standard-card {
  background-color: #fff;
  color: #000;
  margin-bottom: 1em;
}
/* line 1357, ../sass/components/_landing_pages.scss */
.job-opportunities--landing article.standard-card h3.primary-blue-publication-title, .isi-job-opportunities--landing article.standard-card h3.primary-blue-publication-title {
  margin-bottom: 0.2em;
}
/* line 1360, ../sass/components/_landing_pages.scss */
.job-opportunities--landing article.standard-card .flexItemText, .isi-job-opportunities--landing article.standard-card .flexItemText {
  padding-top: 1rem;
}

/* line 1366, ../sass/components/_landing_pages.scss */
.isi-job-opportunities--landing h2, .isi-job-opportunities--landing .contact-method-label {
  color: #fff;
}

/* line 1377, ../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 137, ../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 140, ../sass/_mixins.scss */
.working-at-nhlbi--landing .newsRedBackground a, .working-at-nhlbi--landing .newsRedBackground a:visited, .working-at-nhlbi--landing .newsRedBackground a:link, .working-at-nhlbi--landing .newsRedBackground a:hover, .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: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, .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, .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 {
  color: #fff;
}
/* line 1381, ../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: 1rem 1.5rem;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1387, ../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 1399, ../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;
  height: 100%;
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 1399, ../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 1399, ../sass/components/_landing_pages.scss */
  .field--name-field-employment-opportunity-car > .field__item {
    max-width: 43%;
    flex-basis: 43%;
    width: auto;
  }
}
/* line 1416, ../sass/components/_landing_pages.scss */
.field--name-field-employment-opportunity-car > .field__item .standard-icon-card .herobannertitle-grey {
  margin-bottom: 0;
}

/* line 1421, ../sass/components/_landing_pages.scss */
.field--name-field-employment-opportunity-car > .field__item:last-child {
  margin-right: 0;
}

/* line 1428, ../sass/components/_landing_pages.scss */
article.node .funding-area--landing.general-accordion.ui-accordion {
  padding-bottom: 0;
}

/* line 1433, ../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 1438, ../sass/components/_landing_pages.scss */
.foa-expiration-date {
  padding-top: 1em;
}

/* line 1442, ../sass/components/_landing_pages.scss */
.last-updated-date-container {
  margin-top: 0.6em;
}

/* line 1454, ../sass/components/_landing_pages.scss */
.funding-area-funding-opportunities-container {
  padding-top: 1em;
}

/* line 1457, ../sass/components/_landing_pages.scss */
.funding-area-program-officer-wrapper {
  border: #d7e7f4 3px solid;
  padding: 1em 2em;
}
/* line 1460, ../sass/components/_landing_pages.scss */
.funding-area-program-officer-wrapper h2.blue-hr, .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 .contact-method-label, .contacts-container .funding-area-program-officer-wrapper .contact-method-label {
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
}

/* line 1465, ../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 1465, ../sass/components/_landing_pages.scss */
  .field--name-field-program-officers > .field__item {
    width: 28%;
  }
}
/* line 1472, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers > .field__item .flexItemText {
  padding: 0;
}
/* line 1475, ../sass/components/_landing_pages.scss */
.field--name-field-program-officers > .field__item .herobannertitle-grey {
  text-align: center;
}

/* line 1480, ../sass/components/_landing_pages.scss */
.person-card .field--name-field-name,
.person-card .field--name-field-degrees {
  display: inline;
}

/* line 1486, ../sass/components/_landing_pages.scss */
.view-nhlbi-grants-foa.view-display-id-block_1 .views-row {
  margin-bottom: 1em;
  width: 100%;
}

/* line 1491, ../sass/components/_landing_pages.scss */
.field--name-field-related-funding-opportunit > .field__item {
  margin-bottom: 1em;
}

/* line 1495, ../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 1495, ../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 1508, ../sass/components/_landing_pages.scss */
.grants-foa-card .graydetail {
  padding-bottom: 1em;
}
/* line 1511, ../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 1516, ../sass/components/_landing_pages.scss */
.grants-foa-card .flexTextLeft {
  padding-bottom: 1em;
}

/* line 1520, ../sass/components/_landing_pages.scss */
.funding-area-related-resources-container {
  padding-top: 1em;
}
/* line 1523, ../sass/components/_landing_pages.scss */
.funding-area-related-resources-container .funding-area-resources-wrapper {
  padding-left: 0;
}
/* line 1526, ../sass/components/_landing_pages.scss */
.funding-area-related-resources-container ul {
  padding-left: 0;
}
@media all and (min-width: 768px) {
  /* line 1528, ../sass/components/_landing_pages.scss */
  .funding-area-related-resources-container ul li {
    line-height: 22px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1528, ../sass/components/_landing_pages.scss */
  .funding-area-related-resources-container ul li {
    line-height: 20px;
  }
}

/* line 1539, ../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 1543, ../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 1543, ../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 1543, ../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 1561, ../sass/components/_landing_pages.scss */
.foas-and-contacts--landing ul.list-style-type-none {
  padding-left: 0;
}

/* line 1568, ../sass/components/_landing_pages.scss */
ul.double-spaced-list li {
  margin-bottom: 0.5em;
}
/* line 1571, ../sass/components/_landing_pages.scss */
ul.double-spaced-list li:last-child {
  margin-bottom: 0;
}

/* line 1575, ../sass/components/_landing_pages.scss */
.field--name-field-funding-area-category {
  padding-top: 1em;
}

@media all and (min-width: 1100px) {
  /* line 1580, ../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 1580, ../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 1580, ../sass/components/_landing_pages.scss */
  .news-events-news-mentions-container .topicFeatured > .view-content {
    width: auto;
  }
}
/* line 1591, ../sass/components/_landing_pages.scss */
.news-events-news-mentions-container .blackstandardsubhead {
  padding-bottom: 1em;
}
/* line 1600, ../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 1608, ../sass/components/_landing_pages.scss */
.node--type-division.node--view-mode-teaser {
  background-color: #f4f4f4;
  margin-bottom: 1em;
}
/* line 1611, ../sass/components/_landing_pages.scss */
.node--type-division.node--view-mode-teaser h3.primary-blue-publication-title {
  background-color: #f4f4f4;
}
/* line 1614, ../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 1614, ../sass/components/_landing_pages.scss */
  .node--type-division.node--view-mode-teaser .flexItemText {
    padding: 1em 1.5em;
  }
}

/* line 1622, ../sass/components/_landing_pages.scss */
.research-priorities--landing .pager__item a.button {
  background-color: #590716;
  border: 1px solid #fff;
}
/* line 1627, ../sass/components/_landing_pages.scss */
.research-priorities--landing .pager__item a.button:hover {
  background-color: #bf0d2e;
  border-color: #bf0d2e;
}

/* line 1634, ../sass/components/_landing_pages.scss */
.grants-and-training-card-wrapper, .about-nhlbi-division-card-wrapper {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

/* line 1640, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card, .field--name-field-division-card {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 95%;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1640, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card, .field--name-field-division-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 1640, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card, .field--name-field-division-card {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    width: 100%;
  }
}
/* line 1653, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card h3 > a, .field--name-field-division-card h3 > a,
.field--name-field-grants-and-training-card h3 > a:visited,
.field--name-field-division-card h3 > a:visited,
.field--name-field-grants-and-training-card h3 > a:link,
.field--name-field-division-card h3 > a:link {
  color: #575b5e;
}
/* line 1659, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card h3 > a:hover, .field--name-field-division-card h3 > a:hover {
  color: #575b5e;
}

/* line 1664, ../sass/components/_landing_pages.scss */
.field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item {
  margin-right: 1em;
  margin-left: 1em;
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 1664, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item {
    max-width: 30%;
    min-width: 30%;
    flex-basis: 30%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1664, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item {
    margin-bottom: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1664, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item {
    max-width: 45%;
    min-width: 45%;
    flex-basis: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1664, ../sass/components/_landing_pages.scss */
  .field--name-field-grants-and-training-card > .field__item, .field--name-field-division-card > .field__item {
    max-width: auto;
    width: auto;
  }
}

@media all and (min-width: 1100px) {
  /* line 1688, ../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) {
    padding-right: 0;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 1693, ../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 {
    padding-bottom: 0;
  }
}

/* line 1699, ../sass/components/_landing_pages.scss */
.grants-and-training-icon-card {
  height: 100%;
  background-color: #fff;
}
/* line 1702, ../sass/components/_landing_pages.scss */
.grants-and-training-icon-card .flexItemText {
  padding: 1.5em;
}
/* line 1706, ../sass/components/_landing_pages.scss */
.grants-and-training-icon-card h3 {
  text-align: center;
}

/* line 1710, ../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 137, ../sass/_mixins.scss */
.field--name-field-promotional-card h1, .field--name-field-promotional-card .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.field--name-field-promotional-card a, .field--name-field-promotional-card a:visited, .field--name-field-promotional-card a:link, .field--name-field-promotional-card a:hover {
  color: #fff;
}

/* line 1716, ../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 1721, ../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 1727, ../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 1732, ../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 1732, ../sass/components/_landing_pages.scss */
  .field--name-field-promotional-card > .field__item .flexItemText.flexItemTextHalf .field--name-field-promotional-link > a {
    display: table-cell;
  }
}

/* line 1743, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(odd) {
  background-color: #1a568c;
}
/* line 1745, ../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) .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 1748, ../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 1752, ../sass/components/_landing_pages.scss */
.field--name-field-promotional-card > .field__item:nth-child(even) {
  background-color: #102d66;
}
/* line 1754, ../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) .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 1754, ../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) .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 1760, ../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 1760, ../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 1770, ../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 137, ../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 140, ../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:visited, .field--name-field-about-nhlbi-promotional-ca a:visited, .field--name-field-sv-promotional-cards a:link, .field--name-field-about-nhlbi-promotional-ca a:link, .field--name-field-sv-promotional-cards a:hover, .field--name-field-about-nhlbi-promotional-ca a:hover {
  color: #fff;
}

/* line 1780, ../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 1785, ../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 1790, ../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 1795, ../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 1801, ../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: 1rem 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 1820, ../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-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 {
    display: table-cell;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1820, ../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-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 {
    display: table-cell;
  }
}

/* line 1830, ../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 1833, ../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) .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) .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 1836, ../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 1840, ../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 1843, ../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) .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) .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 1843, ../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) .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) .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 1849, ../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 1849, ../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 1856, ../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 1859, ../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 1859, ../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 1869, ../sass/components/_landing_pages.scss */
.strategic-vision-titleblock .strategic-vision-title-links {
  text-align: center;
}
@media all and (min-width: 768px) {
  /* line 1869, ../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 1869, ../sass/components/_landing_pages.scss */
  .strategic-vision-titleblock .strategic-vision-title-links {
    margin-top: 1.5em;
  }
}

/* line 1879, ../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 1882, ../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 1882, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-titleblock {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1882, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-titleblock {
    width: auto;
  }
}
/* line 1891, ../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 1891, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-email-alerts {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1891, ../sass/components/_landing_pages.scss */
  .ppg-titleblock-wrapper .ppg-email-alerts {
    width: auto;
    margin-top: 20px;
  }
}

/* line 1902, ../sass/components/_landing_pages.scss */
.ppg-funding-process-link {
  padding: 1em 4em;
  background-color: #f1f7fb;
}
@media all and (min-width: 1100px) {
  /* line 1902, ../sass/components/_landing_pages.scss */
  .ppg-funding-process-link {
    line-height: 28.5px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 1902, ../sass/components/_landing_pages.scss */
  .ppg-funding-process-link {
    line-height: 23.5px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1902, ../sass/components/_landing_pages.scss */
  .ppg-funding-process-link {
    line-height: 19.5px;
  }
}

/* line 1921, ../sass/components/_landing_pages.scss */
.ppg-guidelines-card-wrapper .ppg-guidelines-card {
  background-color: #fff;
  padding: 1em 2em;
  height: 100%;
}
@media all and (min-width: 768px) {
  /* line 1926, ../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 1926, ../sass/components/_landing_pages.scss */
  .ppg-guidelines-card-wrapper .ppg-guideline-left, .ppg-guidelines-card-wrapper .ppg-guideline-right {
    width: auto;
  }
}
/* line 1936, ../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 1936, ../sass/components/_landing_pages.scss */
  .ppg-guidelines-card-wrapper .ppg-guideline-left {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

/* line 1947, ../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 1951, ../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 1955, ../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 1955, ../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 1955, ../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 1968, ../sass/components/_landing_pages.scss */
  .field--name-field-human-subject-cards > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 1973, ../sass/components/_landing_pages.scss */
.human-subject-card {
  background-color: #fff;
  height: 100%;
}

/* line 1978, ../sass/components/_landing_pages.scss */
.human-subject-contents {
  padding: 1em;
}

/* line 1982, ../sass/components/_landing_pages.scss */
ul.human-subject-card-list {
  list-style: none;
  padding: 0;
}
/* line 1985, ../sass/components/_landing_pages.scss */
ul.human-subject-card-list li {
  margin-bottom: 1em;
}

/* line 1990, ../sass/components/_landing_pages.scss */
.all-health-topics--landing .blueRoundButton, .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 1990, ../sass/components/_landing_pages.scss */
  .all-health-topics--landing .blueRoundButton, .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 2001, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics {
  text-align: center;
}
/* line 2003, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .field__item {
  display: inline-block;
  margin: 0.5em 0.3em;
}
/* line 2007, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .field__item a {
  color: #fff;
}
/* line 2011, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .view-content {
  text-align: center;
  margin: 1em;
}
/* line 2014, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .view-content .views-row {
  margin-right: 0.5em;
  margin-bottom: 0;
}
/* line 2018, ../sass/components/_landing_pages.scss */
.field--name-field-featured-health-topics .view-content .views-row .views-field-title {
  margin: 0.5em auto;
}

/* line 2025, ../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 2031, ../sass/components/_landing_pages.scss */
.about-nhlbi-featured-item-card-featured-wrapper .flexbox-container-wrapper {
  height: auto;
}

/* line 2035, ../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 2039, ../sass/components/_landing_pages.scss */
.field--name-field-section-card {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 2043, ../sass/components/_landing_pages.scss */
.field--name-field-section-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 2043, ../sass/components/_landing_pages.scss */
  .field--name-field-section-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 2043, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item {
    max-width: 48%;
    min-width: 48%;
    flex-basis: 48%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2043, ../sass/components/_landing_pages.scss */
  .field--name-field-section-card > .field__item {
    max-width: none;
    min-width: auto;
    flex-basis: auto;
    width: auto;
    margin-right: 0;
  }
}

/* line 2068, ../sass/components/_landing_pages.scss */
.field--name-field-section-card > .field__item > a {
  background-color: #fff;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}

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

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

/* line 2083, ../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 2083, ../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 2092, ../sass/components/_landing_pages.scss */
.flexbox-container-wrapper > .section-card-container .flexItemText, .flexbox-container-wrapper > .home-page-promoted-card .flexItemText {
  padding: 1em;
}

/* line 2099, ../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: 1100px) {
  /* line 2098, ../sass/components/_landing_pages.scss */
  .health-topic-teaser-container .flexItemTextHalf {
    padding-top: 1.5em;
  }
}
@media all and (min-width: 768px) {
  /* line 2098, ../sass/components/_landing_pages.scss */
  .health-topic-teaser-container .flexItemTextHalf {
    padding-left: 2em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2110, ../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: 1099px) {
  /* line 2098, ../sass/components/_landing_pages.scss */
  .health-topic-teaser-container .flexItemTextHalf {
    padding-top: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2098, ../sass/components/_landing_pages.scss */
  .health-topic-teaser-container .flexItemTextHalf {
    padding-top: 1em;
    padding-left: 1em;
    margin-bottom: 1em;
  }
}

/* line 2124, ../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 2127, ../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 2135, ../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 2135, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-left {
    width: 50%;
    max-width: 50%;
  }
}
/* line 2145, ../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 2145, ../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 2145, ../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 2145, ../sass/components/_landing_pages.scss */
  .about-nhlbi-our-mission-wrapper .about-nhlbi-our-mission-right {
    margin-left: 0;
  }
}
/* line 2159, ../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 2159, ../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 2159, ../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 2171, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText {
  text-align: left;
}
/* line 2173, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .membername {
  padding-bottom: 0;
}
/* line 2176, ../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 h4 {
  margin: 0;
}
/* line 2179, ../sass/components/_landing_pages.scss */
.about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .directordate {
  margin-bottom: 1em;
}

/* line 2188, ../sass/components/_landing_pages.scss */
.field--name-field-division-card {
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 2188, ../sass/components/_landing_pages.scss */
  .field--name-field-division-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 2188, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
/* line 2197, ../sass/components/_landing_pages.scss */
.field--name-field-division-card h3 {
  margin-top: 1em;
  text-align: center;
}
/* line 2200, ../sass/components/_landing_pages.scss */
.field--name-field-division-card h3 a, .field--name-field-division-card h3 a:link, .field--name-field-division-card h3 a:visited {
  color: #575b5e;
}

/* line 2205, ../sass/components/_landing_pages.scss */
.field--name-field-division-card > .field__item {
  padding-right: 1em;
  padding-left: 1em;
}
@media all and (min-width: 1100px) {
  /* line 2205, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item {
    max-width: 22%;
    min-width: 22%;
    flex-basis: 22%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2205, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item {
    padding-bottom: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2205, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item {
    max-width: 27%;
    min-width: 27%;
    flex-basis: 27%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2205, ../sass/components/_landing_pages.scss */
  .field--name-field-division-card > .field__item {
    max-width: auto;
    width: auto;
  }
}

/* line 2227, ../sass/components/_landing_pages.scss */
.field--name-field-division-card > .field__item:nth-child(4n) {
  padding-right: 0;
}

/* line 2235, ../sass/components/_landing_pages.scss */
.about-nhlbi-how-to-reach-us-wrapper .mapLocation h3 {
  color: #575b5e;
}
/* line 2241, ../sass/components/_landing_pages.scss */
.about-nhlbi-how-to-reach-us-wrapper .locationMap.contact-location-map-container .mapLocation {
  height: auto;
}
/* line 2248, ../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: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  margin: 1em 0;
}
/* line 1299, ../sass/_mixins.scss */
.about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2248, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
.about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2248, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    padding: 0.35em 2.5em;
  }
}
/* line 1352, ../sass/_mixins.scss */
.about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a a:hover {
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2248, ../sass/components/_landing_pages.scss */
  .about-nhlbi-how-to-reach-us-wrapper .field--name-field-directions-link a {
    margin: 1em auto;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2259, ../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 {
    display: block;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2268, ../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 {
    display: block;
  }
}

/* line 2278, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}
/* line 2281, ../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 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 h3.publicationTitle > a:link, .all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row h3.primary-blue-publication-title > a:link {
  color: #1a568c;
}
/* line 2284, ../sass/components/_landing_pages.scss */
.all-nhlbi-publications--landing .view-nhlbi-publications-and-resources .views-row .flexItemText {
  padding-top: 0;
}

/* line 2294, ../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 .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 2294, ../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 .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 2293, ../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 .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 2307, ../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 2307, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .publications-and-resources-header .flexItemText {
    padding-left: 0;
  }
}
/* line 2314, ../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 h3.publicationTitle > a, .nhlbi-publications-and-resources--landing h3.primary-blue-publication-title > a, .nhlbi-publications-and-resources--landing h3.publicationTitle > a:link, .nhlbi-publications-and-resources--landing h3.primary-blue-publication-title > a:link {
  color: #1a568c;
}
/* line 2323, ../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 2330, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item {
  background-color: #fff;
}
/* line 2333, ../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;
}
@media all and (min-width: 1100px) {
  /* line 2333, ../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%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2333, ../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%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2333, ../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: auto;
  }
}
@media all and (min-width: 1100px) {
  /* line 2348, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article {
    -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 2348, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 2356, ../sass/components/_landing_pages.scss */
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image {
  min-width: auto;
}
@media all and (min-width: 1100px) {
  /* line 2356, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image {
    max-width: 66%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 2356, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image {
    max-width: 33%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 2356, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image {
    max-width: 20%;
  }
}
@media all and (min-width: 1100px) {
  /* line 2370, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText {
    padding: 1em 0;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 2370, ../sass/components/_landing_pages.scss */
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 1100px) {
  /* line 2380, ../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 2386, ../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;
  }
}

/*
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-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: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  padding: 1em 0 0 0;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 25, ../sass/components/_healthtopics.scss */
  .publicationsBlock > .view-content,
  .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 35, ../sass/components/_healthtopics.scss */
.publicationsBlock > .view-content .publicationFlexCard,
.field--name-field-related-publications .publicationFlexCard {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 20em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 35, ../sass/components/_healthtopics.scss */
  .publicationsBlock > .view-content .publicationFlexCard,
  .field--name-field-related-publications .publicationFlexCard {
    width: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 35, ../sass/components/_healthtopics.scss */
  .publicationsBlock > .view-content .publicationFlexCard,
  .field--name-field-related-publications .publicationFlexCard {
    flex-direction: row;
  }
}
/* line 47, ../sass/components/_healthtopics.scss */
.publicationsBlock > .view-content .publicationFlexCard .publicationImage,
.field--name-field-related-publications .publicationFlexCard .publicationImage {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  margin-right: 1em;
}
/* line 51, ../sass/components/_healthtopics.scss */
.publicationsBlock > .view-content .publicationFlexCard .publicationText,
.field--name-field-related-publications .publicationFlexCard .publicationText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

/* line 57, ../sass/components/_healthtopics.scss */
.publicationsBlock > .view-content > .views-row {
  border: 2px solid #d7d7d7;
  background-color: #fff;
}

/* line 62, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .publicationsBlock > .view-content > .views-row {
  margin: 0 1em 1em 0;
  width: 30%;
}
/* line 65, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .publicationsBlock > .view-content > .views-row article {
  height: 100%;
  display: inline-flex;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 62, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsBlock > .view-content > .views-row {
    width: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 62, ../sass/components/_healthtopics.scss */
  .node--type-health-professional-health-topic .publicationsBlock > .view-content > .views-row {
    width: auto;
    margin-right: 0;
  }
}

/* line 80, ../sass/components/_healthtopics.scss */
.node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
  margin: 0 0.5em 1em 0.5em;
  width: 45%;
}
/* line 83, ../sass/components/_healthtopics.scss */
.node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row article {
  height: 100%;
  display: inline-flex;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 80, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
    width: auto;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 80, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .publicationsBox .publicationsBlock > .view-content > .views-row {
    width: auto;
    margin-right: 0;
  }
}

/* line 98, ../sass/components/_healthtopics.scss */
.healthEducationBlock {
  overflow: hidden;
}
/* line 100, ../sass/components/_healthtopics.scss */
.healthEducationBlock article.node--type-heath-education {
  color: #fff;
  padding: 0;
  margin: 2em 0;
  background-color: #8caac4;
}
/* line 104, ../sass/components/_healthtopics.scss */
.healthEducationBlock article.node--type-heath-education .flexItemText {
  padding: 2.6em;
  float: left;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 104, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText {
    padding: 1.6em 1.6em .3em 1.6em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 104, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText {
    padding: 0.8em 1.6em 0 1.6em;
  }
}
/* line 110, ../sass/components/_healthtopics.scss */
.healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
  font-size: 18px;
  line-height: 30px;
  border-bottom: #fff 4px solid;
  padding-bottom: 0.5em;
  margin-bottom: .8em;
  font-weight: bold;
  width: 11em;
}
@media all and (min-width: 1440px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 14px;
  }
}
@media all and (min-width: 1440px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    line-height: 24px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    line-height: 22px;
  }
}
@media all and (min-width: 1100px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 110, ../sass/components/_healthtopics.scss */
  .healthEducationBlock article.node--type-heath-education .flexItemText .whiteBottom {
    font-size: 14px;
  }
}

/* line 126, ../sass/components/_healthtopics.scss */
.field--name-field-patient-health-topic {
  margin-bottom: 1em;
}

/* line 132, ../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 138, ../sass/components/_healthtopics.scss */
.readMore {
  margin-top: -1em;
}

/* line 145, ../sass/components/_healthtopics.scss */
.node--type-clinical-trial.node--view-mode-teaser {
  background-color: #fff;
  padding: .6em;
}
/* line 146, ../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 145, ../sass/components/_healthtopics.scss */
  .node--type-clinical-trial.node--view-mode-teaser {
    padding: 1em;
  }
}
/* line 154, ../sass/components/_healthtopics.scss */
.node--type-clinical-trial.node--view-mode-teaser .field--name-field-ct-summary {
  padding-bottom: 1em;
}

/* line 159, ../sass/components/_healthtopics.scss */
.field--name-field-goal {
  margin-top: 1em;
}

/* line 169, ../sass/components/_healthtopics.scss */
.field--name-field-tools, .field--name-field-support-partners {
  padding: 0;
  background-color: #fff;
}
/* line 172, ../sass/components/_healthtopics.scss */
.field--name-field-tools .field__item, .field--name-field-support-partners .field__item {
  display: block;
  overflow: hidden;
}
/* line 175, ../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 179, ../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 181, ../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 185, ../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 190, ../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 196, ../sass/components/_healthtopics.scss */
.healthEducationBox {
  padding: 0;
}
/* line 199, ../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 206, ../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 211, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard, .node--type-press-release .healthEducationCard {
  display: block;
  overflow: hidden;
  background-color: #fff;
}
/* line 215, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard:hover, .node--type-press-release .healthEducationCard:hover {
  background-color: #fff;
}
/* line 218, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard hr, .node--type-press-release .healthEducationCard hr {
  clear: both;
  margin-bottom: 0;
}
/* line 222, ../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 919, ../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 222, ../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 222, ../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 222, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .healthEducationCard .healthEductionContainer, .node--type-press-release .healthEducationCard .healthEductionContainer {
    padding-left: 1.3em;
  }
}
/* line 225, ../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 227, ../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 231, ../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 231, ../sass/components/_healthtopics.scss */
  .node--type-health-topic .healthEducationCard .healthEductionImage, .node--type-press-release .healthEducationCard .healthEductionImage {
    max-width: 50%;
  }
}
/* line 234, ../sass/components/_healthtopics.scss */
.node--type-health-topic .healthEducationCard .photocredit, .node--type-press-release .healthEducationCard .photocredit {
  margin-right: 1rem;
}

/* line 245, ../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 251, ../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 257, ../sass/components/_healthtopics.scss */
.field--name-field-last-updated-date {
  display: inline;
}

/* line 263, ../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 137, ../sass/_mixins.scss */
.newsEventsSection h1, .newsEventsSection .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.newsEventsSection a, .newsEventsSection a:visited, .newsEventsSection a:link, .newsEventsSection a:hover {
  color: #fff;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 263, ../sass/components/_healthtopics.scss */
  .newsEventsSection {
    padding-left: 1.4em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 263, ../sass/components/_healthtopics.scss */
  .newsEventsSection {
    padding-left: 0.4em;
    padding-top: 1em;
  }
}
/* line 266, ../sass/components/_healthtopics.scss */
.newsEventsSection .content-container.flexcontainer, .newsEventsSection .content-container.related-ht-ser-container, .newsEventsSection .topicFeatured .related-ht-ser-container.view-content, .topicFeatured .newsEventsSection .related-ht-ser-container.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.related-ht-ser-container, .executive-news--landing .topicFeatured .newsEventsSection article.related-ht-ser-container, .newsEventsSection .related-ht-ser-container.previous-directors-container, .newsEventsSection .content-container.field--name-field-sfa-card, .newsEventsSection .topicFeatured .field--name-field-sfa-card.view-content, .topicFeatured .newsEventsSection .field--name-field-sfa-card.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-sfa-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-sfa-card, .newsEventsSection .field--name-field-sfa-card.previous-directors-container, .newsEventsSection .content-container.field--name-field-speaker, .newsEventsSection .topicFeatured .field--name-field-speaker.view-content, .topicFeatured .newsEventsSection .field--name-field-speaker.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-speaker, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-speaker, .newsEventsSection .field--name-field-speaker.previous-directors-container,
.newsEventsSection .content-container.field--name-field-scientific-leadership,
.newsEventsSection .topicFeatured .field--name-field-scientific-leadership.view-content,
.topicFeatured .newsEventsSection .field--name-field-scientific-leadership.view-content,
.newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-scientific-leadership,
.executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-scientific-leadership,
.newsEventsSection .field--name-field-scientific-leadership.previous-directors-container,
.newsEventsSection .content-container.field--name-field-operations-and-administrat,
.newsEventsSection .topicFeatured .field--name-field-operations-and-administrat.view-content,
.topicFeatured .newsEventsSection .field--name-field-operations-and-administrat.view-content,
.newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-operations-and-administrat,
.executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-operations-and-administrat,
.newsEventsSection .field--name-field-operations-and-administrat.previous-directors-container, .newsEventsSection .content-container.standard-card-field, .newsEventsSection .topicFeatured .standard-card-field.view-content, .topicFeatured .newsEventsSection .standard-card-field.view-content, .newsEventsSection .topicFeatured .view-content.field--name-field-advisory-committees, .topicFeatured .newsEventsSection .view-content.field--name-field-advisory-committees, .newsEventsSection .topicFeatured .view-content.contact-nhlbi-titleblock, .topicFeatured .newsEventsSection .view-content.contact-nhlbi-titleblock, .newsEventsSection .topicFeatured .view-content.field--name-field-contact-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-contact-cards, .newsEventsSection .topicFeatured .view-content.field--name-field-employment-opportunity-car, .topicFeatured .newsEventsSection .view-content.field--name-field-employment-opportunity-car, .newsEventsSection .topicFeatured .view-content.all-grants-foa-container, .topicFeatured .newsEventsSection .view-content.all-grants-foa-container,
.newsEventsSection .topicFeatured .view-content.field--name-field-program-officers,
.topicFeatured .newsEventsSection .view-content.field--name-field-program-officers,
.newsEventsSection .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
.newsEventsSection .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content,
.topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .newsEventsSection .topicFeatured .node--type-individual-contact .view-content.field--name-field-contact-methods, .topicFeatured .node--type-individual-contact .newsEventsSection .view-content.field--name-field-contact-methods, .newsEventsSection .node--type-individual-contact .topicFeatured .view-content.field--name-field-contact-methods, .node--type-individual-contact .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .topicFeatured .node--type-division.node--view-mode-full .view-content.field--name-field-contact-methods,
.topicFeatured .node--type-division.node--view-mode-full .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-full .topicFeatured .view-content.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .topicFeatured .node--type-division.node--view-mode-subscribe .view-content.field--name-field-contact-methods,
.topicFeatured .node--type-division.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .topicFeatured .node--type-branch.node--view-mode-full .view-content.field--name-field-contact-methods,
.topicFeatured .node--type-branch.node--view-mode-full .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-full .topicFeatured .view-content.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .topicFeatured .node--type-branch.node--view-mode-subscribe .view-content.field--name-field-contact-methods,
.topicFeatured .node--type-branch.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .topicFeatured .node--type-general.node--view-mode-full .view-content.field--name-field-contact-methods,
.topicFeatured .node--type-general.node--view-mode-full .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-full .topicFeatured .view-content.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .topicFeatured .node--type-general.node--view-mode-subscribe .view-content.field--name-field-contact-methods,
.topicFeatured .node--type-general.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods, .newsEventsSection .topicFeatured .node--type-committee .view-content.field--name-field-card-text, .topicFeatured .node--type-committee .newsEventsSection .view-content.field--name-field-card-text, .newsEventsSection .node--type-committee .topicFeatured .view-content.field--name-field-card-text, .node--type-committee .topicFeatured .newsEventsSection .view-content.field--name-field-card-text, .newsEventsSection .executive-news--landing .topicFeatured article.standard-card-field, .executive-news--landing .topicFeatured .newsEventsSection article.standard-card-field, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-advisory-committees, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-advisory-committees, .newsEventsSection .executive-news--landing .topicFeatured article.contact-nhlbi-titleblock, .executive-news--landing .topicFeatured .newsEventsSection article.contact-nhlbi-titleblock, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-contact-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-employment-opportunity-car, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-employment-opportunity-car, .newsEventsSection .executive-news--landing .topicFeatured article.all-grants-foa-container, .executive-news--landing .topicFeatured .newsEventsSection article.all-grants-foa-container,
.newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-program-officers,
.executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-program-officers, .newsEventsSection .executive-news--landing .topicFeatured .node--type-individual-contact article.field--name-field-contact-methods, .executive-news--landing .topicFeatured .node--type-individual-contact .newsEventsSection article.field--name-field-contact-methods, .newsEventsSection .node--type-individual-contact .executive-news--landing .topicFeatured article.field--name-field-contact-methods, .node--type-individual-contact .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-division.node--view-mode-full article.field--name-field-contact-methods,
.executive-news--landing .topicFeatured .node--type-division.node--view-mode-full .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-division.node--view-mode-subscribe article.field--name-field-contact-methods,
.executive-news--landing .topicFeatured .node--type-division.node--view-mode-subscribe .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-branch.node--view-mode-full article.field--name-field-contact-methods,
.executive-news--landing .topicFeatured .node--type-branch.node--view-mode-full .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-branch.node--view-mode-subscribe article.field--name-field-contact-methods,
.executive-news--landing .topicFeatured .node--type-branch.node--view-mode-subscribe .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-general.node--view-mode-full article.field--name-field-contact-methods,
.executive-news--landing .topicFeatured .node--type-general.node--view-mode-full .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-general.node--view-mode-subscribe article.field--name-field-contact-methods,
.executive-news--landing .topicFeatured .node--type-general.node--view-mode-subscribe .newsEventsSection article.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods, .newsEventsSection .executive-news--landing .topicFeatured .node--type-committee article.field--name-field-card-text, .executive-news--landing .topicFeatured .node--type-committee .newsEventsSection article.field--name-field-card-text, .newsEventsSection .node--type-committee .executive-news--landing .topicFeatured article.field--name-field-card-text, .node--type-committee .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-card-text, .newsEventsSection .content-container.field--name-field-advisory-committees, .newsEventsSection .field--name-field-advisory-committees.previous-directors-container, .newsEventsSection .content-container.contact-nhlbi-titleblock, .newsEventsSection .contact-nhlbi-titleblock.previous-directors-container, .newsEventsSection .content-container.field--name-field-contact-cards, .newsEventsSection .field--name-field-contact-cards.previous-directors-container, .newsEventsSection .content-container.field--name-field-employment-opportunity-car, .newsEventsSection .field--name-field-employment-opportunity-car.previous-directors-container, .newsEventsSection .content-container.all-grants-foa-container, .newsEventsSection .all-grants-foa-container.previous-directors-container,
.newsEventsSection .content-container.field--name-field-program-officers,
.newsEventsSection .field--name-field-program-officers.previous-directors-container,
.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_2 > .view-content.previous-directors-container,
.newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .content-container.view-content,
.newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content.previous-directors-container, .newsEventsSection .standard-card-field.previous-directors-container, .newsEventsSection .node--type-individual-contact .previous-directors-container.field--name-field-contact-methods, .node--type-individual-contact .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-full .previous-directors-container.field--name-field-contact-methods,
.node--type-division.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
.newsEventsSection .node--type-division.node--view-mode-subscribe .previous-directors-container.field--name-field-contact-methods,
.node--type-division.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-full .previous-directors-container.field--name-field-contact-methods,
.node--type-branch.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
.newsEventsSection .node--type-branch.node--view-mode-subscribe .previous-directors-container.field--name-field-contact-methods,
.node--type-branch.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-full .previous-directors-container.field--name-field-contact-methods,
.node--type-general.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
.newsEventsSection .node--type-general.node--view-mode-subscribe .previous-directors-container.field--name-field-contact-methods,
.node--type-general.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-contact-methods, .newsEventsSection .node--type-committee .previous-directors-container.field--name-field-card-text, .node--type-committee .newsEventsSection .previous-directors-container.field--name-field-card-text, .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-committee .content-container.field--name-field-card-text, .node--type-committee .newsEventsSection .content-container.field--name-field-card-text, .newsEventsSection .topicFeatured .flexcontainer.view-content, .topicFeatured .newsEventsSection .flexcontainer.view-content, .newsEventsSection .topicFeatured .news-and-events--landing .view-content.landing-social, .topicFeatured .news-and-events--landing .newsEventsSection .view-content.landing-social, .newsEventsSection .news-and-events--landing .topicFeatured .view-content.landing-social, .news-and-events--landing .topicFeatured .newsEventsSection .view-content.landing-social, .newsEventsSection .topicFeatured .view-content.field--name-field-sfa-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-sfa-cards, .newsEventsSection .topicFeatured .view-content.locationMap.contact-location-map-container, .topicFeatured .newsEventsSection .view-content.locationMap.contact-location-map-container, .newsEventsSection .topicFeatured .view-content.locationMap, .topicFeatured .newsEventsSection .view-content.locationMap, .newsEventsSection .topicFeatured .view-content.grants-and-training-card-wrapper, .topicFeatured .newsEventsSection .view-content.grants-and-training-card-wrapper, .newsEventsSection .topicFeatured .view-content.about-nhlbi-division-card-wrapper, .topicFeatured .newsEventsSection .view-content.about-nhlbi-division-card-wrapper, .newsEventsSection .topicFeatured .view-content.field--name-field-grants-and-training-card, .topicFeatured .newsEventsSection .view-content.field--name-field-grants-and-training-card, .newsEventsSection .topicFeatured .view-content.field--name-field-division-card, .topicFeatured .newsEventsSection .view-content.field--name-field-division-card, .newsEventsSection .topicFeatured .view-content.field--name-field-promotional-card, .topicFeatured .newsEventsSection .view-content.field--name-field-promotional-card, .newsEventsSection .topicFeatured .view-content.field--name-field-sv-promotional-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-sv-promotional-cards, .newsEventsSection .topicFeatured .view-content.field--name-field-about-nhlbi-promotional-ca, .topicFeatured .newsEventsSection .view-content.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .topicFeatured .view-content.strategic-vision-titleblock, .topicFeatured .newsEventsSection .view-content.strategic-vision-titleblock, .newsEventsSection .topicFeatured .view-content.ppg-titleblock-wrapper, .topicFeatured .newsEventsSection .view-content.ppg-titleblock-wrapper, .newsEventsSection .topicFeatured .view-content.ppg-guidelines-card-wrapper, .topicFeatured .newsEventsSection .view-content.ppg-guidelines-card-wrapper, .newsEventsSection .topicFeatured .view-content.field--name-field-human-subject-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-human-subject-cards, .newsEventsSection .topicFeatured .view-content.field--name-field-section-card, .topicFeatured .newsEventsSection .view-content.field--name-field-section-card, .newsEventsSection .topicFeatured .view-content.health-topic-teaser-container, .topicFeatured .newsEventsSection .view-content.health-topic-teaser-container, .newsEventsSection .topicFeatured .view-content.about-nhlbi-our-mission-wrapper, .topicFeatured .newsEventsSection .view-content.about-nhlbi-our-mission-wrapper, .newsEventsSection .topicFeatured .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .view-content.director-bioCard, .topicFeatured .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .view-content.director-bioCard, .newsEventsSection .about-nhlbi-our-mission-wrapper .topicFeatured .field--name-field-leadership > .view-content.director-bioCard, .about-nhlbi-our-mission-wrapper .topicFeatured .newsEventsSection .field--name-field-leadership > .view-content.director-bioCard, .newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .view-content.field--name-field-health-consumer-nhlbi-publ, .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection .view-content.field--name-field-health-consumer-nhlbi-publ, .newsEventsSection .nhlbi-publications-and-resources--landing .topicFeatured .view-content.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .topicFeatured .newsEventsSection .view-content.field--name-field-health-consumer-nhlbi-publ,
.newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .view-content.field--name-field-health-professionals-nhlbi,
.topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection .view-content.field--name-field-health-professionals-nhlbi,
.newsEventsSection .nhlbi-publications-and-resources--landing .topicFeatured .view-content.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .topicFeatured .newsEventsSection .view-content.field--name-field-health-professionals-nhlbi, .newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.view-content, .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article.view-content, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured article.view-content, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .newsEventsSection article.view-content,
.newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.view-content,
.topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article.view-content,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured article.view-content,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .topicFeatured .publicationsBlock > .view-content, .topicFeatured .newsEventsSection .publicationsBlock > .view-content,
.newsEventsSection .topicFeatured .view-content.field--name-field-related-publications,
.topicFeatured .newsEventsSection .view-content.field--name-field-related-publications, .newsEventsSection .topicFeatured .healthEducationBlock article.view-content.node--type-heath-education, .topicFeatured .healthEducationBlock .newsEventsSection article.view-content.node--type-heath-education, .newsEventsSection .healthEducationBlock .topicFeatured article.view-content.node--type-heath-education, .healthEducationBlock .topicFeatured .newsEventsSection article.view-content.node--type-heath-education, .newsEventsSection .topicFeatured .systematicEvidenceReviewsBlock .view-content, .topicFeatured .systematicEvidenceReviewsBlock .newsEventsSection .view-content, .newsEventsSection .systematicEvidenceReviewsBlock .topicFeatured .view-content, .systematicEvidenceReviewsBlock .topicFeatured .newsEventsSection .view-content,
.newsEventsSection .topicFeatured .clinicalPracticeGuidelinesBlock .view-content,
.topicFeatured .clinicalPracticeGuidelinesBlock .newsEventsSection .view-content,
.newsEventsSection .clinicalPracticeGuidelinesBlock .topicFeatured .view-content,
.clinicalPracticeGuidelinesBlock .topicFeatured .newsEventsSection .view-content,
.newsEventsSection .topicFeatured .publicationsAndFactSheetsBlock .view-content,
.topicFeatured .publicationsAndFactSheetsBlock .newsEventsSection .view-content,
.newsEventsSection .publicationsAndFactSheetsBlock .topicFeatured .view-content,
.publicationsAndFactSheetsBlock .topicFeatured .newsEventsSection .view-content, .newsEventsSection .topicFeatured .view-content.rtFlexContainer, .topicFeatured .newsEventsSection .view-content.rtFlexContainer, .newsEventsSection .topicFeatured .node--type-research-topic .view-content.field--name-field-science-supplemental-page, .topicFeatured .node--type-research-topic .newsEventsSection .view-content.field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .topicFeatured .view-content.field--name-field-science-supplemental-page, .node--type-research-topic .topicFeatured .newsEventsSection .view-content.field--name-field-science-supplemental-page, .newsEventsSection .topicFeatured .node--type-research-topic .view-content.researchTopicPublications, .topicFeatured .node--type-research-topic .newsEventsSection .view-content.researchTopicPublications, .newsEventsSection .node--type-research-topic .topicFeatured .view-content.researchTopicPublications, .node--type-research-topic .topicFeatured .newsEventsSection .view-content.researchTopicPublications, .newsEventsSection .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.view-content.listTeaserCard, .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.view-content.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .topicFeatured article.view-content.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .newsEventsSection article.view-content.listTeaserCard, .newsEventsSection .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.view-content.standard-teaser, .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.view-content.standard-teaser, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .topicFeatured article.view-content.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .newsEventsSection article.view-content.standard-teaser,
.newsEventsSection .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.view-content.newsEventsCard,
.topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.view-content.newsEventsCard,
.newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .topicFeatured article.view-content.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .topicFeatured .newsEventsSection article.view-content.newsEventsCard, .newsEventsSection .topicFeatured .view-content.esi-feature-card, .topicFeatured .newsEventsSection .view-content.esi-feature-card, .newsEventsSection .topicFeatured .view-content.featured-science-instance-teaser-container, .topicFeatured .newsEventsSection .view-content.featured-science-instance-teaser-container, .newsEventsSection .topicFeatured .view-content.sfa-teaser-container, .topicFeatured .newsEventsSection .view-content.sfa-teaser-container, .newsEventsSection .topicFeatured .training-opportunity-card .view-content.field--name-field-associated-people, .topicFeatured .training-opportunity-card .newsEventsSection .view-content.field--name-field-associated-people, .newsEventsSection .training-opportunity-card .topicFeatured .view-content.field--name-field-associated-people, .training-opportunity-card .topicFeatured .newsEventsSection .view-content.field--name-field-associated-people, .newsEventsSection .topicFeatured .view-content.field--name-field-featured-training-opportun, .topicFeatured .newsEventsSection .view-content.field--name-field-featured-training-opportun, .newsEventsSection .topicFeatured .view-content.field--name-field-career-stages, .topicFeatured .newsEventsSection .view-content.field--name-field-career-stages, .newsEventsSection .topicFeatured .view-content.field--name-field-workforce-development-card, .topicFeatured .newsEventsSection .view-content.field--name-field-workforce-development-card, .newsEventsSection .topicFeatured .view-content.node--type-update.node--view-mode-executive-teaser, .topicFeatured .newsEventsSection .view-content.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .topicFeatured .view-content.news-and-events-titleblock, .topicFeatured .newsEventsSection .view-content.news-and-events-titleblock, .newsEventsSection .topicFeatured .contact-box > .view-content.field--name-field-contact-methods, .topicFeatured .newsEventsSection .contact-box > .view-content.field--name-field-contact-methods, .newsEventsSection .topicFeatured .view-content.leadership-container, .topicFeatured .newsEventsSection .view-content.leadership-container, .newsEventsSection .topicFeatured .leadership-container .leadership-deputy-director-container .view-content.field--name-field-additional-leadership, .topicFeatured .leadership-container .leadership-deputy-director-container .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .leadership-container .leadership-deputy-director-container .topicFeatured .view-content.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .topicFeatured .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .topicFeatured .view-content.branch-leadership-container, .topicFeatured .newsEventsSection .view-content.branch-leadership-container, .newsEventsSection .topicFeatured .branch-leadership-container .leadership-deputy-director-container .view-content.field--name-field-additional-leadership, .topicFeatured .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .topicFeatured .view-content.objective-text-container, .topicFeatured .newsEventsSection .view-content.objective-text-container, .newsEventsSection .topicFeatured .view-content.objective-list-container, .topicFeatured .newsEventsSection .view-content.objective-list-container, .newsEventsSection .topicFeatured .view-content.field--name-field-goal-card, .topicFeatured .newsEventsSection .view-content.field--name-field-goal-card, .newsEventsSection .topicFeatured .view-content.strategic-vision-landing-goals-wrapper, .topicFeatured .newsEventsSection .view-content.strategic-vision-landing-goals-wrapper, .newsEventsSection .topicFeatured .node--type-principal-investigator .view-content.striped-container, .topicFeatured .node--type-principal-investigator .newsEventsSection .view-content.striped-container, .newsEventsSection .node--type-principal-investigator .topicFeatured .view-content.striped-container, .node--type-principal-investigator .topicFeatured .newsEventsSection .view-content.striped-container, .newsEventsSection .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.view-content, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article.view-content, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .topicFeatured article.view-content, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .topicFeatured .newsEventsSection article.view-content,
.newsEventsSection .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.view-content,
.topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article.view-content,
.newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .topicFeatured article.view-content,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .view-content.standard-teaser.node--view-mode-short-teaser, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .view-content.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .topicFeatured .view-content.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .topicFeatured .newsEventsSection .view-content.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .topicFeatured .view-content.field--name-field-awards, .topicFeatured .newsEventsSection .view-content.field--name-field-awards, .newsEventsSection .topicFeatured .view-content.registerSocialContainer, .topicFeatured .newsEventsSection .view-content.registerSocialContainer, .newsEventsSection .topicFeatured .view-content.eventdatesLocationType, .topicFeatured .newsEventsSection .view-content.eventdatesLocationType, .newsEventsSection .topicFeatured .view-content.news-article-container, .topicFeatured .newsEventsSection .view-content.news-article-container, .newsEventsSection .topicFeatured .view-content.node--type-feature-article.node--view-mode-press-release-teaser, .topicFeatured .newsEventsSection .view-content.node--type-feature-article.node--view-mode-press-release-teaser,
.newsEventsSection .topicFeatured .view-content.node--type-press-release.node--view-mode-press-release-teaser,
.topicFeatured .newsEventsSection .view-content.node--type-press-release.node--view-mode-press-release-teaser,
.newsEventsSection .topicFeatured .view-content.node--type-events.node--view-mode-press-release-teaser,
.topicFeatured .newsEventsSection .view-content.node--type-events.node--view-mode-press-release-teaser,
.newsEventsSection .topicFeatured .view-content.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.topicFeatured .newsEventsSection .view-content.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.newsEventsSection .topicFeatured .view-content.node--type-press-release.node--view-mode-hp-press-release-teaser,
.topicFeatured .newsEventsSection .view-content.node--type-press-release.node--view-mode-hp-press-release-teaser,
.newsEventsSection .topicFeatured .view-content.node--type-events.node--view-mode-hp-press-release-teaser,
.topicFeatured .newsEventsSection .view-content.node--type-events.node--view-mode-hp-press-release-teaser, .newsEventsSection .topicFeatured .view-content.news-header-container, .topicFeatured .newsEventsSection .view-content.news-header-container, .newsEventsSection .topicFeatured .contacts-container .view-content.field--name-field-contacts, .topicFeatured .contacts-container .newsEventsSection .view-content.field--name-field-contacts, .newsEventsSection .contacts-container .topicFeatured .view-content.field--name-field-contacts, .contacts-container .topicFeatured .newsEventsSection .view-content.field--name-field-contacts, .newsEventsSection .topicFeatured .publicationsBox .view-content.field--name-field-related-publications, .topicFeatured .publicationsBox .newsEventsSection .view-content.field--name-field-related-publications, .newsEventsSection .publicationsBox .topicFeatured .view-content.field--name-field-related-publications, .publicationsBox .topicFeatured .newsEventsSection .view-content.field--name-field-related-publications, .newsEventsSection .topicFeatured .view-content.field--name-field-primary-featured-item, .topicFeatured .newsEventsSection .view-content.field--name-field-primary-featured-item, .newsEventsSection .topicFeatured .view-content.field--name-field-additional-featured-items, .topicFeatured .newsEventsSection .view-content.field--name-field-additional-featured-items, .newsEventsSection .topicFeatured .view-content.homepage-health-topics-container, .topicFeatured .newsEventsSection .view-content.homepage-health-topics-container, .newsEventsSection .topicFeatured .view-content.homepage-mission-areas-container, .topicFeatured .newsEventsSection .view-content.homepage-mission-areas-container, .newsEventsSection .topicFeatured .view-content.homepage-location-container, .topicFeatured .newsEventsSection .view-content.homepage-location-container, .newsEventsSection .topicFeatured .view-content.field--name-field-alumni, .topicFeatured .newsEventsSection .view-content.field--name-field-alumni, .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .view-content.nhlbi-publication-details-container, .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .view-content.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .newsEventsSection .view-content.nhlbi-publication-details-container,
.newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .view-content.nhlbi-publication-details-container,
.topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .view-content.nhlbi-publication-details-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.nhlbi-publication-details-container, .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .view-content.field--name-field-related-nhlbi-publications, .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .view-content.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-related-nhlbi-publications,
.newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .view-content.field--name-field-related-nhlbi-publications,
.topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-related-nhlbi-publications,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-related-nhlbi-publications, .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article.view-content, .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.view-content, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured article.view-content, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .newsEventsSection article.view-content,
.newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.view-content,
.topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.view-content,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured article.view-content,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .news-and-events--landing .content-container.landing-social, .news-and-events--landing .newsEventsSection .content-container.landing-social, .newsEventsSection .news-and-events--landing .executive-news--landing .topicFeatured article.landing-social, .news-and-events--landing .executive-news--landing .topicFeatured .newsEventsSection article.landing-social, .newsEventsSection .executive-news--landing .topicFeatured .news-and-events--landing article.landing-social, .executive-news--landing .topicFeatured .news-and-events--landing .newsEventsSection article.landing-social, .newsEventsSection .news-and-events--landing .landing-social.previous-directors-container, .news-and-events--landing .newsEventsSection .landing-social.previous-directors-container, .newsEventsSection .content-container.field--name-field-sfa-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-sfa-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-sfa-cards, .newsEventsSection .field--name-field-sfa-cards.previous-directors-container, .newsEventsSection .executive-news--landing .topicFeatured article.flexcontainer, .executive-news--landing .topicFeatured .newsEventsSection article.flexcontainer,
.newsEventsSection .executive-news--landing .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_2 > article.view-content,
.executive-news--landing .topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > article.view-content,
.newsEventsSection .executive-news--landing .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_3 > article.view-content,
.executive-news--landing .topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > article.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.locationMap.contact-location-map-container, .executive-news--landing .topicFeatured .newsEventsSection article.locationMap.contact-location-map-container, .newsEventsSection .executive-news--landing .topicFeatured article.locationMap, .executive-news--landing .topicFeatured .newsEventsSection article.locationMap, .newsEventsSection .executive-news--landing .topicFeatured article.grants-and-training-card-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.grants-and-training-card-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.about-nhlbi-division-card-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.about-nhlbi-division-card-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-grants-and-training-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-grants-and-training-card, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-division-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-division-card, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-promotional-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-promotional-card, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-sv-promotional-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-sv-promotional-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-about-nhlbi-promotional-ca, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .executive-news--landing .topicFeatured article.strategic-vision-titleblock, .executive-news--landing .topicFeatured .newsEventsSection article.strategic-vision-titleblock, .newsEventsSection .executive-news--landing .topicFeatured article.ppg-titleblock-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.ppg-titleblock-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.ppg-guidelines-card-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.ppg-guidelines-card-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-human-subject-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-human-subject-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-section-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-section-card, .newsEventsSection .executive-news--landing .topicFeatured article.health-topic-teaser-container, .executive-news--landing .topicFeatured .newsEventsSection article.health-topic-teaser-container, .newsEventsSection .executive-news--landing .topicFeatured article.about-nhlbi-our-mission-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.about-nhlbi-our-mission-wrapper, .newsEventsSection .executive-news--landing .topicFeatured .about-nhlbi-our-mission-wrapper .field--name-field-leadership > article.director-bioCard, .executive-news--landing .topicFeatured .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > article.director-bioCard, .newsEventsSection .about-nhlbi-our-mission-wrapper .executive-news--landing .topicFeatured .field--name-field-leadership > article.director-bioCard, .about-nhlbi-our-mission-wrapper .executive-news--landing .topicFeatured .newsEventsSection .field--name-field-leadership > article.director-bioCard, .newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing article.field--name-field-health-consumer-nhlbi-publ, .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection article.field--name-field-health-consumer-nhlbi-publ, .newsEventsSection .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured article.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-health-consumer-nhlbi-publ,
.newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing article.field--name-field-health-professionals-nhlbi,
.executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection article.field--name-field-health-professionals-nhlbi,
.newsEventsSection .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured article.field--name-field-health-professionals-nhlbi,
.nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-health-professionals-nhlbi, .newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article, .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .executive-news--landing .topicFeatured article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .executive-news--landing .topicFeatured .newsEventsSection article,
.newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
.executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .executive-news--landing .topicFeatured article,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .executive-news--landing .topicFeatured .newsEventsSection article, .newsEventsSection .executive-news--landing .topicFeatured .publicationsBlock > article.view-content, .executive-news--landing .topicFeatured .newsEventsSection .publicationsBlock > article.view-content,
.newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-related-publications,
.executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-publications, .newsEventsSection .executive-news--landing .topicFeatured .healthEducationBlock article.node--type-heath-education, .executive-news--landing .topicFeatured .healthEducationBlock .newsEventsSection article.node--type-heath-education, .newsEventsSection .healthEducationBlock .executive-news--landing .topicFeatured article.node--type-heath-education, .healthEducationBlock .executive-news--landing .topicFeatured .newsEventsSection article.node--type-heath-education, .newsEventsSection .executive-news--landing .topicFeatured .systematicEvidenceReviewsBlock article.view-content, .executive-news--landing .topicFeatured .systematicEvidenceReviewsBlock .newsEventsSection article.view-content, .newsEventsSection .systematicEvidenceReviewsBlock .executive-news--landing .topicFeatured article.view-content, .systematicEvidenceReviewsBlock .executive-news--landing .topicFeatured .newsEventsSection article.view-content,
.newsEventsSection .executive-news--landing .topicFeatured .clinicalPracticeGuidelinesBlock article.view-content,
.executive-news--landing .topicFeatured .clinicalPracticeGuidelinesBlock .newsEventsSection article.view-content,
.newsEventsSection .clinicalPracticeGuidelinesBlock .executive-news--landing .topicFeatured article.view-content,
.clinicalPracticeGuidelinesBlock .executive-news--landing .topicFeatured .newsEventsSection article.view-content,
.newsEventsSection .executive-news--landing .topicFeatured .publicationsAndFactSheetsBlock article.view-content,
.executive-news--landing .topicFeatured .publicationsAndFactSheetsBlock .newsEventsSection article.view-content,
.newsEventsSection .publicationsAndFactSheetsBlock .executive-news--landing .topicFeatured article.view-content,
.publicationsAndFactSheetsBlock .executive-news--landing .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.rtFlexContainer, .executive-news--landing .topicFeatured .newsEventsSection article.rtFlexContainer, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic article.field--name-field-science-supplemental-page, .executive-news--landing .topicFeatured .node--type-research-topic .newsEventsSection article.field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .executive-news--landing .topicFeatured article.field--name-field-science-supplemental-page, .node--type-research-topic .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-science-supplemental-page, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic article.researchTopicPublications, .executive-news--landing .topicFeatured .node--type-research-topic .newsEventsSection article.researchTopicPublications, .newsEventsSection .node--type-research-topic .executive-news--landing .topicFeatured article.researchTopicPublications, .node--type-research-topic .executive-news--landing .topicFeatured .newsEventsSection article.researchTopicPublications, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured .newsEventsSection article.listTeaserCard, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .executive-news--landing .topicFeatured .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 .executive-news--landing .topicFeatured article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured .newsEventsSection article.standard-teaser,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
.executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.newsEventsCard,
.newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured article.newsEventsCard,
.node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured .newsEventsSection article.newsEventsCard, .newsEventsSection .executive-news--landing .topicFeatured article.esi-feature-card, .executive-news--landing .topicFeatured .newsEventsSection article.esi-feature-card, .newsEventsSection .executive-news--landing .topicFeatured article.featured-science-instance-teaser-container, .executive-news--landing .topicFeatured .newsEventsSection article.featured-science-instance-teaser-container, .newsEventsSection .executive-news--landing .topicFeatured article.sfa-teaser-container, .executive-news--landing .topicFeatured .newsEventsSection article.sfa-teaser-container, .newsEventsSection .executive-news--landing .topicFeatured .training-opportunity-card article.field--name-field-associated-people, .executive-news--landing .topicFeatured .training-opportunity-card .newsEventsSection article.field--name-field-associated-people, .newsEventsSection .training-opportunity-card .executive-news--landing .topicFeatured article.field--name-field-associated-people, .training-opportunity-card .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-associated-people, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-featured-training-opportun, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-featured-training-opportun, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-career-stages, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-career-stages, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-workforce-development-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-workforce-development-card, .newsEventsSection .executive-news--landing .topicFeatured article.node--type-update.node--view-mode-executive-teaser, .executive-news--landing .topicFeatured .newsEventsSection article.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .executive-news--landing .topicFeatured article.news-and-events-titleblock, .executive-news--landing .topicFeatured .newsEventsSection article.news-and-events-titleblock, .newsEventsSection .executive-news--landing .topicFeatured .contact-box > article.field--name-field-contact-methods, .executive-news--landing .topicFeatured .newsEventsSection .contact-box > article.field--name-field-contact-methods, .newsEventsSection .executive-news--landing .topicFeatured article.leadership-container, .executive-news--landing .topicFeatured .newsEventsSection article.leadership-container, .newsEventsSection .executive-news--landing .topicFeatured .leadership-container .leadership-deputy-director-container article.field--name-field-additional-leadership, .executive-news--landing .topicFeatured .leadership-container .leadership-deputy-director-container .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured article.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .executive-news--landing .topicFeatured article.branch-leadership-container, .executive-news--landing .topicFeatured .newsEventsSection article.branch-leadership-container, .newsEventsSection .executive-news--landing .topicFeatured .branch-leadership-container .leadership-deputy-director-container article.field--name-field-additional-leadership, .executive-news--landing .topicFeatured .branch-leadership-container .leadership-deputy-director-container .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured article.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .executive-news--landing .topicFeatured article.objective-text-container, .executive-news--landing .topicFeatured .newsEventsSection article.objective-text-container, .newsEventsSection .executive-news--landing .topicFeatured article.objective-list-container, .executive-news--landing .topicFeatured .newsEventsSection article.objective-list-container, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-goal-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-goal-card, .newsEventsSection .executive-news--landing .topicFeatured article.strategic-vision-landing-goals-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.strategic-vision-landing-goals-wrapper, .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator article.striped-container, .executive-news--landing .topicFeatured .node--type-principal-investigator .newsEventsSection article.striped-container, .newsEventsSection .node--type-principal-investigator .executive-news--landing .topicFeatured article.striped-container, .node--type-principal-investigator .executive-news--landing .topicFeatured .newsEventsSection article.striped-container, .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .executive-news--landing .topicFeatured .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-research-update .view-content .executive-news--landing .topicFeatured article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .executive-news--landing .topicFeatured .newsEventsSection article,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
.executive-news--landing .topicFeatured .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-all-news .view-content .executive-news--landing .topicFeatured article,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .executive-news--landing .topicFeatured .newsEventsSection article, .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content article.standard-teaser.node--view-mode-short-teaser, .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection article.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .executive-news--landing .topicFeatured article.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .executive-news--landing .topicFeatured .newsEventsSection article.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-awards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-awards, .newsEventsSection .executive-news--landing .topicFeatured article.registerSocialContainer, .executive-news--landing .topicFeatured .newsEventsSection article.registerSocialContainer, .newsEventsSection .executive-news--landing .topicFeatured article.eventdatesLocationType, .executive-news--landing .topicFeatured .newsEventsSection article.eventdatesLocationType, .newsEventsSection .executive-news--landing .topicFeatured article.news-article-container, .executive-news--landing .topicFeatured .newsEventsSection article.news-article-container, .newsEventsSection .executive-news--landing .topicFeatured article.node--type-feature-article.node--view-mode-press-release-teaser, .executive-news--landing .topicFeatured .newsEventsSection article.node--type-feature-article.node--view-mode-press-release-teaser,
.newsEventsSection .executive-news--landing .topicFeatured article.node--type-press-release.node--view-mode-press-release-teaser,
.executive-news--landing .topicFeatured .newsEventsSection article.node--type-press-release.node--view-mode-press-release-teaser,
.newsEventsSection .executive-news--landing .topicFeatured article.node--type-events.node--view-mode-press-release-teaser,
.executive-news--landing .topicFeatured .newsEventsSection article.node--type-events.node--view-mode-press-release-teaser,
.newsEventsSection .executive-news--landing .topicFeatured article.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.executive-news--landing .topicFeatured .newsEventsSection article.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.newsEventsSection .executive-news--landing .topicFeatured article.node--type-press-release.node--view-mode-hp-press-release-teaser,
.executive-news--landing .topicFeatured .newsEventsSection article.node--type-press-release.node--view-mode-hp-press-release-teaser,
.newsEventsSection .executive-news--landing .topicFeatured article.node--type-events.node--view-mode-hp-press-release-teaser,
.executive-news--landing .topicFeatured .newsEventsSection article.node--type-events.node--view-mode-hp-press-release-teaser, .newsEventsSection .executive-news--landing .topicFeatured article.news-header-container, .executive-news--landing .topicFeatured .newsEventsSection article.news-header-container, .newsEventsSection .executive-news--landing .topicFeatured .contacts-container article.field--name-field-contacts, .executive-news--landing .topicFeatured .contacts-container .newsEventsSection article.field--name-field-contacts, .newsEventsSection .contacts-container .executive-news--landing .topicFeatured article.field--name-field-contacts, .contacts-container .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contacts, .newsEventsSection .executive-news--landing .topicFeatured .publicationsBox article.field--name-field-related-publications, .executive-news--landing .topicFeatured .publicationsBox .newsEventsSection article.field--name-field-related-publications, .newsEventsSection .publicationsBox .executive-news--landing .topicFeatured article.field--name-field-related-publications, .publicationsBox .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-publications, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-primary-featured-item, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-primary-featured-item, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-additional-featured-items, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-additional-featured-items, .newsEventsSection .executive-news--landing .topicFeatured article.homepage-health-topics-container, .executive-news--landing .topicFeatured .newsEventsSection article.homepage-health-topics-container, .newsEventsSection .executive-news--landing .topicFeatured article.homepage-mission-areas-container, .executive-news--landing .topicFeatured .newsEventsSection article.homepage-mission-areas-container, .newsEventsSection .executive-news--landing .topicFeatured article.homepage-location-container, .executive-news--landing .topicFeatured .newsEventsSection article.homepage-location-container, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-alumni, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-alumni, .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full article.nhlbi-publication-details-container, .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection article.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured article.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.nhlbi-publication-details-container,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe article.nhlbi-publication-details-container,
.executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection article.nhlbi-publication-details-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured article.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.nhlbi-publication-details-container, .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full article.field--name-field-related-nhlbi-publications, .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection article.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-nhlbi-publications,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe article.field--name-field-related-nhlbi-publications,
.executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection article.field--name-field-related-nhlbi-publications,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-nhlbi-publications, .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article, .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured .newsEventsSection article,
.newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
.executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured .newsEventsSection article, .newsEventsSection .content-container.locationMap.contact-location-map-container, .newsEventsSection .locationMap.contact-location-map-container.previous-directors-container, .newsEventsSection .content-container.locationMap, .newsEventsSection .locationMap.previous-directors-container, .newsEventsSection .content-container.grants-and-training-card-wrapper, .newsEventsSection .content-container.about-nhlbi-division-card-wrapper, .newsEventsSection .about-nhlbi-division-card-wrapper.previous-directors-container, .newsEventsSection .grants-and-training-card-wrapper.previous-directors-container, .newsEventsSection .content-container.field--name-field-grants-and-training-card, .newsEventsSection .content-container.field--name-field-division-card, .newsEventsSection .field--name-field-division-card.previous-directors-container, .newsEventsSection .field--name-field-grants-and-training-card.previous-directors-container, .newsEventsSection .content-container.field--name-field-promotional-card, .newsEventsSection .field--name-field-promotional-card.previous-directors-container, .newsEventsSection .content-container.field--name-field-sv-promotional-cards, .newsEventsSection .content-container.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .field--name-field-about-nhlbi-promotional-ca.previous-directors-container, .newsEventsSection .field--name-field-sv-promotional-cards.previous-directors-container, .newsEventsSection .content-container.strategic-vision-titleblock, .newsEventsSection .strategic-vision-titleblock.previous-directors-container, .newsEventsSection .content-container.ppg-titleblock-wrapper, .newsEventsSection .ppg-titleblock-wrapper.previous-directors-container, .newsEventsSection .content-container.ppg-guidelines-card-wrapper, .newsEventsSection .ppg-guidelines-card-wrapper.previous-directors-container, .newsEventsSection .content-container.field--name-field-human-subject-cards, .newsEventsSection .field--name-field-human-subject-cards.previous-directors-container, .newsEventsSection .content-container.field--name-field-section-card, .newsEventsSection .field--name-field-section-card.previous-directors-container, .newsEventsSection .content-container.health-topic-teaser-container, .newsEventsSection .health-topic-teaser-container.previous-directors-container, .newsEventsSection .content-container.about-nhlbi-our-mission-wrapper, .newsEventsSection .about-nhlbi-our-mission-wrapper.previous-directors-container, .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 .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard.previous-directors-container, .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .director-bioCard.previous-directors-container, .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 .field--name-field-health-consumer-nhlbi-publ.previous-directors-container, .nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-consumer-nhlbi-publ.previous-directors-container,
.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-professionals-nhlbi.previous-directors-container,
.nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-professionals-nhlbi.previous-directors-container, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.content-container, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article.content-container, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.previous-directors-container, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article.previous-directors-container,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.content-container,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article.content-container,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.previous-directors-container,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article.previous-directors-container, .newsEventsSection .publicationsBlock > .content-container.view-content, .newsEventsSection .publicationsBlock > .view-content.previous-directors-container,
.newsEventsSection .content-container.field--name-field-related-publications,
.newsEventsSection .field--name-field-related-publications.previous-directors-container, .newsEventsSection .healthEducationBlock article.content-container.node--type-heath-education, .healthEducationBlock .newsEventsSection article.content-container.node--type-heath-education, .newsEventsSection .healthEducationBlock article.node--type-heath-education.previous-directors-container, .healthEducationBlock .newsEventsSection article.node--type-heath-education.previous-directors-container, .newsEventsSection .systematicEvidenceReviewsBlock .content-container.view-content, .systematicEvidenceReviewsBlock .newsEventsSection .content-container.view-content, .newsEventsSection .systematicEvidenceReviewsBlock .view-content.previous-directors-container, .systematicEvidenceReviewsBlock .newsEventsSection .view-content.previous-directors-container,
.newsEventsSection .clinicalPracticeGuidelinesBlock .content-container.view-content,
.clinicalPracticeGuidelinesBlock .newsEventsSection .content-container.view-content,
.newsEventsSection .clinicalPracticeGuidelinesBlock .view-content.previous-directors-container,
.clinicalPracticeGuidelinesBlock .newsEventsSection .view-content.previous-directors-container,
.newsEventsSection .publicationsAndFactSheetsBlock .content-container.view-content,
.publicationsAndFactSheetsBlock .newsEventsSection .content-container.view-content,
.newsEventsSection .publicationsAndFactSheetsBlock .view-content.previous-directors-container,
.publicationsAndFactSheetsBlock .newsEventsSection .view-content.previous-directors-container, .newsEventsSection .content-container.rtFlexContainer, .newsEventsSection .rtFlexContainer.previous-directors-container, .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 .field--name-field-science-supplemental-page.previous-directors-container, .node--type-research-topic .newsEventsSection .field--name-field-science-supplemental-page.previous-directors-container, .newsEventsSection .node--type-research-topic .content-container.researchTopicPublications, .node--type-research-topic .newsEventsSection .content-container.researchTopicPublications, .newsEventsSection .node--type-research-topic .researchTopicPublications.previous-directors-container, .node--type-research-topic .newsEventsSection .researchTopicPublications.previous-directors-container, .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.listTeaserCard.previous-directors-container, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.listTeaserCard.previous-directors-container, .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.standard-teaser.previous-directors-container, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.standard-teaser.previous-directors-container,
.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 .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard.previous-directors-container,
.node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.newsEventsCard.previous-directors-container, .newsEventsSection .content-container.esi-feature-card, .newsEventsSection .content-container.featured-science-instance-teaser-container, .newsEventsSection .featured-science-instance-teaser-container.previous-directors-container, .newsEventsSection .esi-feature-card.previous-directors-container, .newsEventsSection .content-container.sfa-teaser-container, .newsEventsSection .sfa-teaser-container.previous-directors-container, .newsEventsSection .training-opportunity-card .content-container.field--name-field-associated-people, .training-opportunity-card .newsEventsSection .content-container.field--name-field-associated-people, .newsEventsSection .training-opportunity-card .field--name-field-associated-people.previous-directors-container, .training-opportunity-card .newsEventsSection .field--name-field-associated-people.previous-directors-container, .newsEventsSection .content-container.field--name-field-featured-training-opportun, .newsEventsSection .field--name-field-featured-training-opportun.previous-directors-container, .newsEventsSection .content-container.field--name-field-career-stages, .newsEventsSection .field--name-field-career-stages.previous-directors-container, .newsEventsSection .content-container.field--name-field-workforce-development-card, .newsEventsSection .field--name-field-workforce-development-card.previous-directors-container, .newsEventsSection .content-container.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .node--type-update.node--view-mode-executive-teaser.previous-directors-container, .newsEventsSection .flexcontainer.previous-directors-container, .newsEventsSection .previous-directors-container.news-and-events-titleblock, .newsEventsSection .contact-box > .previous-directors-container.field--name-field-contact-methods, .newsEventsSection .previous-directors-container.leadership-container, .newsEventsSection .leadership-container .leadership-deputy-director-container .previous-directors-container.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .newsEventsSection .previous-directors-container.field--name-field-additional-leadership, .newsEventsSection .previous-directors-container.branch-leadership-container, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .previous-directors-container.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .previous-directors-container.field--name-field-additional-leadership, .newsEventsSection .previous-directors-container.objective-text-container, .newsEventsSection .previous-directors-container.objective-list-container, .newsEventsSection .previous-directors-container.field--name-field-goal-card, .newsEventsSection .previous-directors-container.strategic-vision-landing-goals-wrapper, .newsEventsSection .node--type-principal-investigator .previous-directors-container.striped-container, .node--type-principal-investigator .newsEventsSection .previous-directors-container.striped-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.previous-directors-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article.previous-directors-container,
.newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.previous-directors-container,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article.previous-directors-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .previous-directors-container.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .previous-directors-container.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .previous-directors-container.field--name-field-awards, .newsEventsSection .previous-directors-container.registerSocialContainer, .newsEventsSection .previous-directors-container.eventdatesLocationType, .newsEventsSection .previous-directors-container.news-article-container, .newsEventsSection .previous-directors-container.node--type-feature-article.node--view-mode-press-release-teaser,
.newsEventsSection .previous-directors-container.node--type-press-release.node--view-mode-press-release-teaser,
.newsEventsSection .previous-directors-container.node--type-events.node--view-mode-press-release-teaser,
.newsEventsSection .previous-directors-container.node--type-feature-article.node--view-mode-hp-press-release-teaser,
.newsEventsSection .previous-directors-container.node--type-press-release.node--view-mode-hp-press-release-teaser,
.newsEventsSection .previous-directors-container.node--type-events.node--view-mode-hp-press-release-teaser, .newsEventsSection .previous-directors-container.news-header-container, .newsEventsSection .contacts-container .previous-directors-container.field--name-field-contacts, .contacts-container .newsEventsSection .previous-directors-container.field--name-field-contacts, .newsEventsSection .publicationsBox .previous-directors-container.field--name-field-related-publications, .publicationsBox .newsEventsSection .previous-directors-container.field--name-field-related-publications, .newsEventsSection .previous-directors-container.field--name-field-primary-featured-item, .newsEventsSection .previous-directors-container.field--name-field-additional-featured-items, .newsEventsSection .previous-directors-container.homepage-health-topics-container, .newsEventsSection .previous-directors-container.homepage-mission-areas-container, .newsEventsSection .previous-directors-container.homepage-location-container, .newsEventsSection .previous-directors-container.field--name-field-alumni, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .previous-directors-container.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .previous-directors-container.nhlbi-publication-details-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .previous-directors-container.nhlbi-publication-details-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .previous-directors-container.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .previous-directors-container.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-related-nhlbi-publications,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .previous-directors-container.field--name-field-related-nhlbi-publications,
.node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article.previous-directors-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.previous-directors-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.previous-directors-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.previous-directors-container, .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 .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, .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.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 article.content-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.content-container,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.content-container,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.content-container {
  flex-direction: row;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 266, ../sass/components/_healthtopics.scss */
  .newsEventsSection .content-container.flexcontainer, .newsEventsSection .content-container.related-ht-ser-container, .newsEventsSection .topicFeatured .related-ht-ser-container.view-content, .topicFeatured .newsEventsSection .related-ht-ser-container.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.related-ht-ser-container, .executive-news--landing .topicFeatured .newsEventsSection article.related-ht-ser-container, .newsEventsSection .related-ht-ser-container.previous-directors-container, .newsEventsSection .content-container.field--name-field-sfa-card, .newsEventsSection .topicFeatured .field--name-field-sfa-card.view-content, .topicFeatured .newsEventsSection .field--name-field-sfa-card.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-sfa-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-sfa-card, .newsEventsSection .field--name-field-sfa-card.previous-directors-container, .newsEventsSection .content-container.field--name-field-speaker, .newsEventsSection .topicFeatured .field--name-field-speaker.view-content, .topicFeatured .newsEventsSection .field--name-field-speaker.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-speaker, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-speaker, .newsEventsSection .field--name-field-speaker.previous-directors-container,
  .newsEventsSection .content-container.field--name-field-scientific-leadership,
  .newsEventsSection .topicFeatured .field--name-field-scientific-leadership.view-content,
  .topicFeatured .newsEventsSection .field--name-field-scientific-leadership.view-content,
  .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-scientific-leadership,
  .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-scientific-leadership,
  .newsEventsSection .field--name-field-scientific-leadership.previous-directors-container,
  .newsEventsSection .content-container.field--name-field-operations-and-administrat,
  .newsEventsSection .topicFeatured .field--name-field-operations-and-administrat.view-content,
  .topicFeatured .newsEventsSection .field--name-field-operations-and-administrat.view-content,
  .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-operations-and-administrat,
  .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-operations-and-administrat,
  .newsEventsSection .field--name-field-operations-and-administrat.previous-directors-container, .newsEventsSection .content-container.standard-card-field, .newsEventsSection .topicFeatured .standard-card-field.view-content, .topicFeatured .newsEventsSection .standard-card-field.view-content, .newsEventsSection .topicFeatured .view-content.field--name-field-advisory-committees, .topicFeatured .newsEventsSection .view-content.field--name-field-advisory-committees, .newsEventsSection .topicFeatured .view-content.contact-nhlbi-titleblock, .topicFeatured .newsEventsSection .view-content.contact-nhlbi-titleblock, .newsEventsSection .topicFeatured .view-content.field--name-field-contact-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-contact-cards, .newsEventsSection .topicFeatured .view-content.field--name-field-employment-opportunity-car, .topicFeatured .newsEventsSection .view-content.field--name-field-employment-opportunity-car, .newsEventsSection .topicFeatured .view-content.all-grants-foa-container, .topicFeatured .newsEventsSection .view-content.all-grants-foa-container,
  .newsEventsSection .topicFeatured .view-content.field--name-field-program-officers,
  .topicFeatured .newsEventsSection .view-content.field--name-field-program-officers,
  .newsEventsSection .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .newsEventsSection .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content,
  .topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .newsEventsSection .topicFeatured .node--type-individual-contact .view-content.field--name-field-contact-methods, .topicFeatured .node--type-individual-contact .newsEventsSection .view-content.field--name-field-contact-methods, .newsEventsSection .node--type-individual-contact .topicFeatured .view-content.field--name-field-contact-methods, .node--type-individual-contact .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .topicFeatured .node--type-division.node--view-mode-full .view-content.field--name-field-contact-methods,
  .topicFeatured .node--type-division.node--view-mode-full .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-full .topicFeatured .view-content.field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .topicFeatured .node--type-division.node--view-mode-subscribe .view-content.field--name-field-contact-methods,
  .topicFeatured .node--type-division.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .topicFeatured .node--type-branch.node--view-mode-full .view-content.field--name-field-contact-methods,
  .topicFeatured .node--type-branch.node--view-mode-full .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-full .topicFeatured .view-content.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .topicFeatured .node--type-branch.node--view-mode-subscribe .view-content.field--name-field-contact-methods,
  .topicFeatured .node--type-branch.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .topicFeatured .node--type-general.node--view-mode-full .view-content.field--name-field-contact-methods,
  .topicFeatured .node--type-general.node--view-mode-full .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-full .topicFeatured .view-content.field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .topicFeatured .node--type-general.node--view-mode-subscribe .view-content.field--name-field-contact-methods,
  .topicFeatured .node--type-general.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-contact-methods, .newsEventsSection .topicFeatured .node--type-committee .view-content.field--name-field-card-text, .topicFeatured .node--type-committee .newsEventsSection .view-content.field--name-field-card-text, .newsEventsSection .node--type-committee .topicFeatured .view-content.field--name-field-card-text, .node--type-committee .topicFeatured .newsEventsSection .view-content.field--name-field-card-text, .newsEventsSection .executive-news--landing .topicFeatured article.standard-card-field, .executive-news--landing .topicFeatured .newsEventsSection article.standard-card-field, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-advisory-committees, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-advisory-committees, .newsEventsSection .executive-news--landing .topicFeatured article.contact-nhlbi-titleblock, .executive-news--landing .topicFeatured .newsEventsSection article.contact-nhlbi-titleblock, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-contact-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-employment-opportunity-car, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-employment-opportunity-car, .newsEventsSection .executive-news--landing .topicFeatured article.all-grants-foa-container, .executive-news--landing .topicFeatured .newsEventsSection article.all-grants-foa-container,
  .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-program-officers,
  .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-program-officers, .newsEventsSection .executive-news--landing .topicFeatured .node--type-individual-contact article.field--name-field-contact-methods, .executive-news--landing .topicFeatured .node--type-individual-contact .newsEventsSection article.field--name-field-contact-methods, .newsEventsSection .node--type-individual-contact .executive-news--landing .topicFeatured article.field--name-field-contact-methods, .node--type-individual-contact .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-division.node--view-mode-full article.field--name-field-contact-methods,
  .executive-news--landing .topicFeatured .node--type-division.node--view-mode-full .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-division.node--view-mode-subscribe article.field--name-field-contact-methods,
  .executive-news--landing .topicFeatured .node--type-division.node--view-mode-subscribe .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-branch.node--view-mode-full article.field--name-field-contact-methods,
  .executive-news--landing .topicFeatured .node--type-branch.node--view-mode-full .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-branch.node--view-mode-subscribe article.field--name-field-contact-methods,
  .executive-news--landing .topicFeatured .node--type-branch.node--view-mode-subscribe .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-general.node--view-mode-full article.field--name-field-contact-methods,
  .executive-news--landing .topicFeatured .node--type-general.node--view-mode-full .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-general.node--view-mode-subscribe article.field--name-field-contact-methods,
  .executive-news--landing .topicFeatured .node--type-general.node--view-mode-subscribe .newsEventsSection article.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contact-methods, .newsEventsSection .executive-news--landing .topicFeatured .node--type-committee article.field--name-field-card-text, .executive-news--landing .topicFeatured .node--type-committee .newsEventsSection article.field--name-field-card-text, .newsEventsSection .node--type-committee .executive-news--landing .topicFeatured article.field--name-field-card-text, .node--type-committee .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-card-text, .newsEventsSection .content-container.field--name-field-advisory-committees, .newsEventsSection .field--name-field-advisory-committees.previous-directors-container, .newsEventsSection .content-container.contact-nhlbi-titleblock, .newsEventsSection .contact-nhlbi-titleblock.previous-directors-container, .newsEventsSection .content-container.field--name-field-contact-cards, .newsEventsSection .field--name-field-contact-cards.previous-directors-container, .newsEventsSection .content-container.field--name-field-employment-opportunity-car, .newsEventsSection .field--name-field-employment-opportunity-car.previous-directors-container, .newsEventsSection .content-container.all-grants-foa-container, .newsEventsSection .all-grants-foa-container.previous-directors-container,
  .newsEventsSection .content-container.field--name-field-program-officers,
  .newsEventsSection .field--name-field-program-officers.previous-directors-container,
  .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_2 > .view-content.previous-directors-container,
  .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .content-container.view-content,
  .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content.previous-directors-container, .newsEventsSection .standard-card-field.previous-directors-container, .newsEventsSection .node--type-individual-contact .previous-directors-container.field--name-field-contact-methods, .node--type-individual-contact .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-full .previous-directors-container.field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-division.node--view-mode-subscribe .previous-directors-container.field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-full .previous-directors-container.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-branch.node--view-mode-subscribe .previous-directors-container.field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-full .previous-directors-container.field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-contact-methods,
  .newsEventsSection .node--type-general.node--view-mode-subscribe .previous-directors-container.field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-contact-methods, .newsEventsSection .node--type-committee .previous-directors-container.field--name-field-card-text, .node--type-committee .newsEventsSection .previous-directors-container.field--name-field-card-text, .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-committee .content-container.field--name-field-card-text, .node--type-committee .newsEventsSection .content-container.field--name-field-card-text, .newsEventsSection .topicFeatured .flexcontainer.view-content, .topicFeatured .newsEventsSection .flexcontainer.view-content, .newsEventsSection .topicFeatured .news-and-events--landing .view-content.landing-social, .topicFeatured .news-and-events--landing .newsEventsSection .view-content.landing-social, .newsEventsSection .news-and-events--landing .topicFeatured .view-content.landing-social, .news-and-events--landing .topicFeatured .newsEventsSection .view-content.landing-social, .newsEventsSection .topicFeatured .view-content.field--name-field-sfa-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-sfa-cards, .newsEventsSection .topicFeatured .view-content.locationMap.contact-location-map-container, .topicFeatured .newsEventsSection .view-content.locationMap.contact-location-map-container, .newsEventsSection .topicFeatured .view-content.locationMap, .topicFeatured .newsEventsSection .view-content.locationMap, .newsEventsSection .topicFeatured .view-content.grants-and-training-card-wrapper, .topicFeatured .newsEventsSection .view-content.grants-and-training-card-wrapper, .newsEventsSection .topicFeatured .view-content.about-nhlbi-division-card-wrapper, .topicFeatured .newsEventsSection .view-content.about-nhlbi-division-card-wrapper, .newsEventsSection .topicFeatured .view-content.field--name-field-grants-and-training-card, .topicFeatured .newsEventsSection .view-content.field--name-field-grants-and-training-card, .newsEventsSection .topicFeatured .view-content.field--name-field-division-card, .topicFeatured .newsEventsSection .view-content.field--name-field-division-card, .newsEventsSection .topicFeatured .view-content.field--name-field-promotional-card, .topicFeatured .newsEventsSection .view-content.field--name-field-promotional-card, .newsEventsSection .topicFeatured .view-content.field--name-field-sv-promotional-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-sv-promotional-cards, .newsEventsSection .topicFeatured .view-content.field--name-field-about-nhlbi-promotional-ca, .topicFeatured .newsEventsSection .view-content.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .topicFeatured .view-content.strategic-vision-titleblock, .topicFeatured .newsEventsSection .view-content.strategic-vision-titleblock, .newsEventsSection .topicFeatured .view-content.ppg-titleblock-wrapper, .topicFeatured .newsEventsSection .view-content.ppg-titleblock-wrapper, .newsEventsSection .topicFeatured .view-content.ppg-guidelines-card-wrapper, .topicFeatured .newsEventsSection .view-content.ppg-guidelines-card-wrapper, .newsEventsSection .topicFeatured .view-content.field--name-field-human-subject-cards, .topicFeatured .newsEventsSection .view-content.field--name-field-human-subject-cards, .newsEventsSection .topicFeatured .view-content.field--name-field-section-card, .topicFeatured .newsEventsSection .view-content.field--name-field-section-card, .newsEventsSection .topicFeatured .view-content.health-topic-teaser-container, .topicFeatured .newsEventsSection .view-content.health-topic-teaser-container, .newsEventsSection .topicFeatured .view-content.about-nhlbi-our-mission-wrapper, .topicFeatured .newsEventsSection .view-content.about-nhlbi-our-mission-wrapper, .newsEventsSection .topicFeatured .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .view-content.director-bioCard, .topicFeatured .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .view-content.director-bioCard, .newsEventsSection .about-nhlbi-our-mission-wrapper .topicFeatured .field--name-field-leadership > .view-content.director-bioCard, .about-nhlbi-our-mission-wrapper .topicFeatured .newsEventsSection .field--name-field-leadership > .view-content.director-bioCard, .newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .view-content.field--name-field-health-consumer-nhlbi-publ, .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection .view-content.field--name-field-health-consumer-nhlbi-publ, .newsEventsSection .nhlbi-publications-and-resources--landing .topicFeatured .view-content.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .topicFeatured .newsEventsSection .view-content.field--name-field-health-consumer-nhlbi-publ,
  .newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .view-content.field--name-field-health-professionals-nhlbi,
  .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection .view-content.field--name-field-health-professionals-nhlbi,
  .newsEventsSection .nhlbi-publications-and-resources--landing .topicFeatured .view-content.field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .topicFeatured .newsEventsSection .view-content.field--name-field-health-professionals-nhlbi, .newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.view-content, .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article.view-content, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured article.view-content, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .topicFeatured .newsEventsSection article.view-content,
  .newsEventsSection .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.view-content,
  .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article.view-content,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured article.view-content,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .topicFeatured .publicationsBlock > .view-content, .topicFeatured .newsEventsSection .publicationsBlock > .view-content,
  .newsEventsSection .topicFeatured .view-content.field--name-field-related-publications,
  .topicFeatured .newsEventsSection .view-content.field--name-field-related-publications, .newsEventsSection .topicFeatured .healthEducationBlock article.view-content.node--type-heath-education, .topicFeatured .healthEducationBlock .newsEventsSection article.view-content.node--type-heath-education, .newsEventsSection .healthEducationBlock .topicFeatured article.view-content.node--type-heath-education, .healthEducationBlock .topicFeatured .newsEventsSection article.view-content.node--type-heath-education, .newsEventsSection .topicFeatured .systematicEvidenceReviewsBlock .view-content, .topicFeatured .systematicEvidenceReviewsBlock .newsEventsSection .view-content, .newsEventsSection .systematicEvidenceReviewsBlock .topicFeatured .view-content, .systematicEvidenceReviewsBlock .topicFeatured .newsEventsSection .view-content,
  .newsEventsSection .topicFeatured .clinicalPracticeGuidelinesBlock .view-content,
  .topicFeatured .clinicalPracticeGuidelinesBlock .newsEventsSection .view-content,
  .newsEventsSection .clinicalPracticeGuidelinesBlock .topicFeatured .view-content,
  .clinicalPracticeGuidelinesBlock .topicFeatured .newsEventsSection .view-content,
  .newsEventsSection .topicFeatured .publicationsAndFactSheetsBlock .view-content,
  .topicFeatured .publicationsAndFactSheetsBlock .newsEventsSection .view-content,
  .newsEventsSection .publicationsAndFactSheetsBlock .topicFeatured .view-content,
  .publicationsAndFactSheetsBlock .topicFeatured .newsEventsSection .view-content, .newsEventsSection .topicFeatured .view-content.rtFlexContainer, .topicFeatured .newsEventsSection .view-content.rtFlexContainer, .newsEventsSection .topicFeatured .node--type-research-topic .view-content.field--name-field-science-supplemental-page, .topicFeatured .node--type-research-topic .newsEventsSection .view-content.field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .topicFeatured .view-content.field--name-field-science-supplemental-page, .node--type-research-topic .topicFeatured .newsEventsSection .view-content.field--name-field-science-supplemental-page, .newsEventsSection .topicFeatured .node--type-research-topic .view-content.researchTopicPublications, .topicFeatured .node--type-research-topic .newsEventsSection .view-content.researchTopicPublications, .newsEventsSection .node--type-research-topic .topicFeatured .view-content.researchTopicPublications, .node--type-research-topic .topicFeatured .newsEventsSection .view-content.researchTopicPublications, .newsEventsSection .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.view-content.listTeaserCard, .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.view-content.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .topicFeatured article.view-content.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .newsEventsSection article.view-content.listTeaserCard, .newsEventsSection .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.view-content.standard-teaser, .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.view-content.standard-teaser, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .topicFeatured article.view-content.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .newsEventsSection article.view-content.standard-teaser,
  .newsEventsSection .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.view-content.newsEventsCard,
  .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.view-content.newsEventsCard,
  .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .topicFeatured article.view-content.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .topicFeatured .newsEventsSection article.view-content.newsEventsCard, .newsEventsSection .topicFeatured .view-content.esi-feature-card, .topicFeatured .newsEventsSection .view-content.esi-feature-card, .newsEventsSection .topicFeatured .view-content.featured-science-instance-teaser-container, .topicFeatured .newsEventsSection .view-content.featured-science-instance-teaser-container, .newsEventsSection .topicFeatured .view-content.sfa-teaser-container, .topicFeatured .newsEventsSection .view-content.sfa-teaser-container, .newsEventsSection .topicFeatured .training-opportunity-card .view-content.field--name-field-associated-people, .topicFeatured .training-opportunity-card .newsEventsSection .view-content.field--name-field-associated-people, .newsEventsSection .training-opportunity-card .topicFeatured .view-content.field--name-field-associated-people, .training-opportunity-card .topicFeatured .newsEventsSection .view-content.field--name-field-associated-people, .newsEventsSection .topicFeatured .view-content.field--name-field-featured-training-opportun, .topicFeatured .newsEventsSection .view-content.field--name-field-featured-training-opportun, .newsEventsSection .topicFeatured .view-content.field--name-field-career-stages, .topicFeatured .newsEventsSection .view-content.field--name-field-career-stages, .newsEventsSection .topicFeatured .view-content.field--name-field-workforce-development-card, .topicFeatured .newsEventsSection .view-content.field--name-field-workforce-development-card, .newsEventsSection .topicFeatured .view-content.node--type-update.node--view-mode-executive-teaser, .topicFeatured .newsEventsSection .view-content.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .topicFeatured .view-content.news-and-events-titleblock, .topicFeatured .newsEventsSection .view-content.news-and-events-titleblock, .newsEventsSection .topicFeatured .contact-box > .view-content.field--name-field-contact-methods, .topicFeatured .newsEventsSection .contact-box > .view-content.field--name-field-contact-methods, .newsEventsSection .topicFeatured .view-content.leadership-container, .topicFeatured .newsEventsSection .view-content.leadership-container, .newsEventsSection .topicFeatured .leadership-container .leadership-deputy-director-container .view-content.field--name-field-additional-leadership, .topicFeatured .leadership-container .leadership-deputy-director-container .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .leadership-container .leadership-deputy-director-container .topicFeatured .view-content.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .topicFeatured .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .topicFeatured .view-content.branch-leadership-container, .topicFeatured .newsEventsSection .view-content.branch-leadership-container, .newsEventsSection .topicFeatured .branch-leadership-container .leadership-deputy-director-container .view-content.field--name-field-additional-leadership, .topicFeatured .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .topicFeatured .view-content.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .topicFeatured .newsEventsSection .view-content.field--name-field-additional-leadership, .newsEventsSection .topicFeatured .view-content.objective-text-container, .topicFeatured .newsEventsSection .view-content.objective-text-container, .newsEventsSection .topicFeatured .view-content.objective-list-container, .topicFeatured .newsEventsSection .view-content.objective-list-container, .newsEventsSection .topicFeatured .view-content.field--name-field-goal-card, .topicFeatured .newsEventsSection .view-content.field--name-field-goal-card, .newsEventsSection .topicFeatured .view-content.strategic-vision-landing-goals-wrapper, .topicFeatured .newsEventsSection .view-content.strategic-vision-landing-goals-wrapper, .newsEventsSection .topicFeatured .node--type-principal-investigator .view-content.striped-container, .topicFeatured .node--type-principal-investigator .newsEventsSection .view-content.striped-container, .newsEventsSection .node--type-principal-investigator .topicFeatured .view-content.striped-container, .node--type-principal-investigator .topicFeatured .newsEventsSection .view-content.striped-container, .newsEventsSection .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.view-content, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article.view-content, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .topicFeatured article.view-content, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .topicFeatured .newsEventsSection article.view-content,
  .newsEventsSection .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.view-content,
  .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article.view-content,
  .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .topicFeatured article.view-content,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .view-content.standard-teaser.node--view-mode-short-teaser, .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .view-content.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .topicFeatured .view-content.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .topicFeatured .newsEventsSection .view-content.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .topicFeatured .view-content.field--name-field-awards, .topicFeatured .newsEventsSection .view-content.field--name-field-awards, .newsEventsSection .topicFeatured .view-content.registerSocialContainer, .topicFeatured .newsEventsSection .view-content.registerSocialContainer, .newsEventsSection .topicFeatured .view-content.eventdatesLocationType, .topicFeatured .newsEventsSection .view-content.eventdatesLocationType, .newsEventsSection .topicFeatured .view-content.news-article-container, .topicFeatured .newsEventsSection .view-content.news-article-container, .newsEventsSection .topicFeatured .view-content.node--type-feature-article.node--view-mode-press-release-teaser, .topicFeatured .newsEventsSection .view-content.node--type-feature-article.node--view-mode-press-release-teaser,
  .newsEventsSection .topicFeatured .view-content.node--type-press-release.node--view-mode-press-release-teaser,
  .topicFeatured .newsEventsSection .view-content.node--type-press-release.node--view-mode-press-release-teaser,
  .newsEventsSection .topicFeatured .view-content.node--type-events.node--view-mode-press-release-teaser,
  .topicFeatured .newsEventsSection .view-content.node--type-events.node--view-mode-press-release-teaser,
  .newsEventsSection .topicFeatured .view-content.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .topicFeatured .newsEventsSection .view-content.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .topicFeatured .view-content.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .topicFeatured .newsEventsSection .view-content.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .topicFeatured .view-content.node--type-events.node--view-mode-hp-press-release-teaser,
  .topicFeatured .newsEventsSection .view-content.node--type-events.node--view-mode-hp-press-release-teaser, .newsEventsSection .topicFeatured .view-content.news-header-container, .topicFeatured .newsEventsSection .view-content.news-header-container, .newsEventsSection .topicFeatured .contacts-container .view-content.field--name-field-contacts, .topicFeatured .contacts-container .newsEventsSection .view-content.field--name-field-contacts, .newsEventsSection .contacts-container .topicFeatured .view-content.field--name-field-contacts, .contacts-container .topicFeatured .newsEventsSection .view-content.field--name-field-contacts, .newsEventsSection .topicFeatured .publicationsBox .view-content.field--name-field-related-publications, .topicFeatured .publicationsBox .newsEventsSection .view-content.field--name-field-related-publications, .newsEventsSection .publicationsBox .topicFeatured .view-content.field--name-field-related-publications, .publicationsBox .topicFeatured .newsEventsSection .view-content.field--name-field-related-publications, .newsEventsSection .topicFeatured .view-content.field--name-field-primary-featured-item, .topicFeatured .newsEventsSection .view-content.field--name-field-primary-featured-item, .newsEventsSection .topicFeatured .view-content.field--name-field-additional-featured-items, .topicFeatured .newsEventsSection .view-content.field--name-field-additional-featured-items, .newsEventsSection .topicFeatured .view-content.homepage-health-topics-container, .topicFeatured .newsEventsSection .view-content.homepage-health-topics-container, .newsEventsSection .topicFeatured .view-content.homepage-mission-areas-container, .topicFeatured .newsEventsSection .view-content.homepage-mission-areas-container, .newsEventsSection .topicFeatured .view-content.homepage-location-container, .topicFeatured .newsEventsSection .view-content.homepage-location-container, .newsEventsSection .topicFeatured .view-content.field--name-field-alumni, .topicFeatured .newsEventsSection .view-content.field--name-field-alumni, .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .view-content.nhlbi-publication-details-container, .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .view-content.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .newsEventsSection .view-content.nhlbi-publication-details-container,
  .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .view-content.nhlbi-publication-details-container,
  .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .view-content.nhlbi-publication-details-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content.nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.nhlbi-publication-details-container, .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .view-content.field--name-field-related-nhlbi-publications, .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .view-content.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .view-content.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .topicFeatured .newsEventsSection .view-content.field--name-field-related-nhlbi-publications,
  .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .view-content.field--name-field-related-nhlbi-publications,
  .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .view-content.field--name-field-related-nhlbi-publications,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .view-content.field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .topicFeatured .newsEventsSection .view-content.field--name-field-related-nhlbi-publications, .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article.view-content, .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.view-content, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured article.view-content, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .newsEventsSection article.view-content,
  .newsEventsSection .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.view-content,
  .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.view-content,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured article.view-content,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .news-and-events--landing .content-container.landing-social, .news-and-events--landing .newsEventsSection .content-container.landing-social, .newsEventsSection .news-and-events--landing .executive-news--landing .topicFeatured article.landing-social, .news-and-events--landing .executive-news--landing .topicFeatured .newsEventsSection article.landing-social, .newsEventsSection .executive-news--landing .topicFeatured .news-and-events--landing article.landing-social, .executive-news--landing .topicFeatured .news-and-events--landing .newsEventsSection article.landing-social, .newsEventsSection .news-and-events--landing .landing-social.previous-directors-container, .news-and-events--landing .newsEventsSection .landing-social.previous-directors-container, .newsEventsSection .content-container.field--name-field-sfa-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-sfa-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-sfa-cards, .newsEventsSection .field--name-field-sfa-cards.previous-directors-container, .newsEventsSection .executive-news--landing .topicFeatured article.flexcontainer, .executive-news--landing .topicFeatured .newsEventsSection article.flexcontainer,
  .newsEventsSection .executive-news--landing .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_2 > article.view-content,
  .executive-news--landing .topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_2 > article.view-content,
  .newsEventsSection .executive-news--landing .topicFeatured .view-id-nhlbi_grants_foa.view-display-id-block_3 > article.view-content,
  .executive-news--landing .topicFeatured .newsEventsSection .view-id-nhlbi_grants_foa.view-display-id-block_3 > article.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.locationMap.contact-location-map-container, .executive-news--landing .topicFeatured .newsEventsSection article.locationMap.contact-location-map-container, .newsEventsSection .executive-news--landing .topicFeatured article.locationMap, .executive-news--landing .topicFeatured .newsEventsSection article.locationMap, .newsEventsSection .executive-news--landing .topicFeatured article.grants-and-training-card-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.grants-and-training-card-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.about-nhlbi-division-card-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.about-nhlbi-division-card-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-grants-and-training-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-grants-and-training-card, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-division-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-division-card, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-promotional-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-promotional-card, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-sv-promotional-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-sv-promotional-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-about-nhlbi-promotional-ca, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .executive-news--landing .topicFeatured article.strategic-vision-titleblock, .executive-news--landing .topicFeatured .newsEventsSection article.strategic-vision-titleblock, .newsEventsSection .executive-news--landing .topicFeatured article.ppg-titleblock-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.ppg-titleblock-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.ppg-guidelines-card-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.ppg-guidelines-card-wrapper, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-human-subject-cards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-human-subject-cards, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-section-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-section-card, .newsEventsSection .executive-news--landing .topicFeatured article.health-topic-teaser-container, .executive-news--landing .topicFeatured .newsEventsSection article.health-topic-teaser-container, .newsEventsSection .executive-news--landing .topicFeatured article.about-nhlbi-our-mission-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.about-nhlbi-our-mission-wrapper, .newsEventsSection .executive-news--landing .topicFeatured .about-nhlbi-our-mission-wrapper .field--name-field-leadership > article.director-bioCard, .executive-news--landing .topicFeatured .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > article.director-bioCard, .newsEventsSection .about-nhlbi-our-mission-wrapper .executive-news--landing .topicFeatured .field--name-field-leadership > article.director-bioCard, .about-nhlbi-our-mission-wrapper .executive-news--landing .topicFeatured .newsEventsSection .field--name-field-leadership > article.director-bioCard, .newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing article.field--name-field-health-consumer-nhlbi-publ, .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection article.field--name-field-health-consumer-nhlbi-publ, .newsEventsSection .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured article.field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-health-consumer-nhlbi-publ,
  .newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing article.field--name-field-health-professionals-nhlbi,
  .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .newsEventsSection article.field--name-field-health-professionals-nhlbi,
  .newsEventsSection .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured article.field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-health-professionals-nhlbi, .newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article, .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .executive-news--landing .topicFeatured article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .executive-news--landing .topicFeatured .newsEventsSection article,
  .newsEventsSection .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
  .executive-news--landing .topicFeatured .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .executive-news--landing .topicFeatured article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .executive-news--landing .topicFeatured .newsEventsSection article, .newsEventsSection .executive-news--landing .topicFeatured .publicationsBlock > article.view-content, .executive-news--landing .topicFeatured .newsEventsSection .publicationsBlock > article.view-content,
  .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-related-publications,
  .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-publications, .newsEventsSection .executive-news--landing .topicFeatured .healthEducationBlock article.node--type-heath-education, .executive-news--landing .topicFeatured .healthEducationBlock .newsEventsSection article.node--type-heath-education, .newsEventsSection .healthEducationBlock .executive-news--landing .topicFeatured article.node--type-heath-education, .healthEducationBlock .executive-news--landing .topicFeatured .newsEventsSection article.node--type-heath-education, .newsEventsSection .executive-news--landing .topicFeatured .systematicEvidenceReviewsBlock article.view-content, .executive-news--landing .topicFeatured .systematicEvidenceReviewsBlock .newsEventsSection article.view-content, .newsEventsSection .systematicEvidenceReviewsBlock .executive-news--landing .topicFeatured article.view-content, .systematicEvidenceReviewsBlock .executive-news--landing .topicFeatured .newsEventsSection article.view-content,
  .newsEventsSection .executive-news--landing .topicFeatured .clinicalPracticeGuidelinesBlock article.view-content,
  .executive-news--landing .topicFeatured .clinicalPracticeGuidelinesBlock .newsEventsSection article.view-content,
  .newsEventsSection .clinicalPracticeGuidelinesBlock .executive-news--landing .topicFeatured article.view-content,
  .clinicalPracticeGuidelinesBlock .executive-news--landing .topicFeatured .newsEventsSection article.view-content,
  .newsEventsSection .executive-news--landing .topicFeatured .publicationsAndFactSheetsBlock article.view-content,
  .executive-news--landing .topicFeatured .publicationsAndFactSheetsBlock .newsEventsSection article.view-content,
  .newsEventsSection .publicationsAndFactSheetsBlock .executive-news--landing .topicFeatured article.view-content,
  .publicationsAndFactSheetsBlock .executive-news--landing .topicFeatured .newsEventsSection article.view-content, .newsEventsSection .executive-news--landing .topicFeatured article.rtFlexContainer, .executive-news--landing .topicFeatured .newsEventsSection article.rtFlexContainer, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic article.field--name-field-science-supplemental-page, .executive-news--landing .topicFeatured .node--type-research-topic .newsEventsSection article.field--name-field-science-supplemental-page, .newsEventsSection .node--type-research-topic .executive-news--landing .topicFeatured article.field--name-field-science-supplemental-page, .node--type-research-topic .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-science-supplemental-page, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic article.researchTopicPublications, .executive-news--landing .topicFeatured .node--type-research-topic .newsEventsSection article.researchTopicPublications, .newsEventsSection .node--type-research-topic .executive-news--landing .topicFeatured article.researchTopicPublications, .node--type-research-topic .executive-news--landing .topicFeatured .newsEventsSection article.researchTopicPublications, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard, .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.listTeaserCard, .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured article.listTeaserCard, .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured .newsEventsSection article.listTeaserCard, .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser, .executive-news--landing .topicFeatured .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 .executive-news--landing .topicFeatured article.standard-teaser, .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured .newsEventsSection article.standard-teaser,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard,
  .executive-news--landing .topicFeatured .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.newsEventsCard,
  .newsEventsSection .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured article.newsEventsCard,
  .node--type-research-topic .field--name-field-content > .field__item .executive-news--landing .topicFeatured .newsEventsSection article.newsEventsCard, .newsEventsSection .executive-news--landing .topicFeatured article.esi-feature-card, .executive-news--landing .topicFeatured .newsEventsSection article.esi-feature-card, .newsEventsSection .executive-news--landing .topicFeatured article.featured-science-instance-teaser-container, .executive-news--landing .topicFeatured .newsEventsSection article.featured-science-instance-teaser-container, .newsEventsSection .executive-news--landing .topicFeatured article.sfa-teaser-container, .executive-news--landing .topicFeatured .newsEventsSection article.sfa-teaser-container, .newsEventsSection .executive-news--landing .topicFeatured .training-opportunity-card article.field--name-field-associated-people, .executive-news--landing .topicFeatured .training-opportunity-card .newsEventsSection article.field--name-field-associated-people, .newsEventsSection .training-opportunity-card .executive-news--landing .topicFeatured article.field--name-field-associated-people, .training-opportunity-card .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-associated-people, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-featured-training-opportun, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-featured-training-opportun, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-career-stages, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-career-stages, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-workforce-development-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-workforce-development-card, .newsEventsSection .executive-news--landing .topicFeatured article.node--type-update.node--view-mode-executive-teaser, .executive-news--landing .topicFeatured .newsEventsSection article.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .executive-news--landing .topicFeatured article.news-and-events-titleblock, .executive-news--landing .topicFeatured .newsEventsSection article.news-and-events-titleblock, .newsEventsSection .executive-news--landing .topicFeatured .contact-box > article.field--name-field-contact-methods, .executive-news--landing .topicFeatured .newsEventsSection .contact-box > article.field--name-field-contact-methods, .newsEventsSection .executive-news--landing .topicFeatured article.leadership-container, .executive-news--landing .topicFeatured .newsEventsSection article.leadership-container, .newsEventsSection .executive-news--landing .topicFeatured .leadership-container .leadership-deputy-director-container article.field--name-field-additional-leadership, .executive-news--landing .topicFeatured .leadership-container .leadership-deputy-director-container .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured article.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .executive-news--landing .topicFeatured article.branch-leadership-container, .executive-news--landing .topicFeatured .newsEventsSection article.branch-leadership-container, .newsEventsSection .executive-news--landing .topicFeatured .branch-leadership-container .leadership-deputy-director-container article.field--name-field-additional-leadership, .executive-news--landing .topicFeatured .branch-leadership-container .leadership-deputy-director-container .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured article.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-additional-leadership, .newsEventsSection .executive-news--landing .topicFeatured article.objective-text-container, .executive-news--landing .topicFeatured .newsEventsSection article.objective-text-container, .newsEventsSection .executive-news--landing .topicFeatured article.objective-list-container, .executive-news--landing .topicFeatured .newsEventsSection article.objective-list-container, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-goal-card, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-goal-card, .newsEventsSection .executive-news--landing .topicFeatured article.strategic-vision-landing-goals-wrapper, .executive-news--landing .topicFeatured .newsEventsSection article.strategic-vision-landing-goals-wrapper, .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator article.striped-container, .executive-news--landing .topicFeatured .node--type-principal-investigator .newsEventsSection article.striped-container, .newsEventsSection .node--type-principal-investigator .executive-news--landing .topicFeatured article.striped-container, .node--type-principal-investigator .executive-news--landing .topicFeatured .newsEventsSection article.striped-container, .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article, .executive-news--landing .topicFeatured .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-research-update .view-content .executive-news--landing .topicFeatured article, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .executive-news--landing .topicFeatured .newsEventsSection article,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article,
  .executive-news--landing .topicFeatured .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-all-news .view-content .executive-news--landing .topicFeatured article,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .executive-news--landing .topicFeatured .newsEventsSection article, .newsEventsSection .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content article.standard-teaser.node--view-mode-short-teaser, .executive-news--landing .topicFeatured .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection article.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .executive-news--landing .topicFeatured article.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .executive-news--landing .topicFeatured .newsEventsSection article.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-awards, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-awards, .newsEventsSection .executive-news--landing .topicFeatured article.registerSocialContainer, .executive-news--landing .topicFeatured .newsEventsSection article.registerSocialContainer, .newsEventsSection .executive-news--landing .topicFeatured article.eventdatesLocationType, .executive-news--landing .topicFeatured .newsEventsSection article.eventdatesLocationType, .newsEventsSection .executive-news--landing .topicFeatured article.news-article-container, .executive-news--landing .topicFeatured .newsEventsSection article.news-article-container, .newsEventsSection .executive-news--landing .topicFeatured article.node--type-feature-article.node--view-mode-press-release-teaser, .executive-news--landing .topicFeatured .newsEventsSection article.node--type-feature-article.node--view-mode-press-release-teaser,
  .newsEventsSection .executive-news--landing .topicFeatured article.node--type-press-release.node--view-mode-press-release-teaser,
  .executive-news--landing .topicFeatured .newsEventsSection article.node--type-press-release.node--view-mode-press-release-teaser,
  .newsEventsSection .executive-news--landing .topicFeatured article.node--type-events.node--view-mode-press-release-teaser,
  .executive-news--landing .topicFeatured .newsEventsSection article.node--type-events.node--view-mode-press-release-teaser,
  .newsEventsSection .executive-news--landing .topicFeatured article.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .executive-news--landing .topicFeatured .newsEventsSection article.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .executive-news--landing .topicFeatured article.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .executive-news--landing .topicFeatured .newsEventsSection article.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .executive-news--landing .topicFeatured article.node--type-events.node--view-mode-hp-press-release-teaser,
  .executive-news--landing .topicFeatured .newsEventsSection article.node--type-events.node--view-mode-hp-press-release-teaser, .newsEventsSection .executive-news--landing .topicFeatured article.news-header-container, .executive-news--landing .topicFeatured .newsEventsSection article.news-header-container, .newsEventsSection .executive-news--landing .topicFeatured .contacts-container article.field--name-field-contacts, .executive-news--landing .topicFeatured .contacts-container .newsEventsSection article.field--name-field-contacts, .newsEventsSection .contacts-container .executive-news--landing .topicFeatured article.field--name-field-contacts, .contacts-container .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-contacts, .newsEventsSection .executive-news--landing .topicFeatured .publicationsBox article.field--name-field-related-publications, .executive-news--landing .topicFeatured .publicationsBox .newsEventsSection article.field--name-field-related-publications, .newsEventsSection .publicationsBox .executive-news--landing .topicFeatured article.field--name-field-related-publications, .publicationsBox .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-publications, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-primary-featured-item, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-primary-featured-item, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-additional-featured-items, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-additional-featured-items, .newsEventsSection .executive-news--landing .topicFeatured article.homepage-health-topics-container, .executive-news--landing .topicFeatured .newsEventsSection article.homepage-health-topics-container, .newsEventsSection .executive-news--landing .topicFeatured article.homepage-mission-areas-container, .executive-news--landing .topicFeatured .newsEventsSection article.homepage-mission-areas-container, .newsEventsSection .executive-news--landing .topicFeatured article.homepage-location-container, .executive-news--landing .topicFeatured .newsEventsSection article.homepage-location-container, .newsEventsSection .executive-news--landing .topicFeatured article.field--name-field-alumni, .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-alumni, .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full article.nhlbi-publication-details-container, .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection article.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured article.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.nhlbi-publication-details-container,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe article.nhlbi-publication-details-container,
  .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection article.nhlbi-publication-details-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured article.nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.nhlbi-publication-details-container, .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full article.field--name-field-related-nhlbi-publications, .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection article.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured article.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-nhlbi-publications,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe article.field--name-field-related-nhlbi-publications,
  .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection article.field--name-field-related-nhlbi-publications,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured article.field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .executive-news--landing .topicFeatured .newsEventsSection article.field--name-field-related-nhlbi-publications, .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article, .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured .newsEventsSection article,
  .newsEventsSection .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
  .executive-news--landing .topicFeatured .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured article,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .executive-news--landing .topicFeatured .newsEventsSection article, .newsEventsSection .content-container.locationMap.contact-location-map-container, .newsEventsSection .locationMap.contact-location-map-container.previous-directors-container, .newsEventsSection .content-container.locationMap, .newsEventsSection .locationMap.previous-directors-container, .newsEventsSection .content-container.grants-and-training-card-wrapper, .newsEventsSection .content-container.about-nhlbi-division-card-wrapper, .newsEventsSection .about-nhlbi-division-card-wrapper.previous-directors-container, .newsEventsSection .grants-and-training-card-wrapper.previous-directors-container, .newsEventsSection .content-container.field--name-field-grants-and-training-card, .newsEventsSection .content-container.field--name-field-division-card, .newsEventsSection .field--name-field-division-card.previous-directors-container, .newsEventsSection .field--name-field-grants-and-training-card.previous-directors-container, .newsEventsSection .content-container.field--name-field-promotional-card, .newsEventsSection .field--name-field-promotional-card.previous-directors-container, .newsEventsSection .content-container.field--name-field-sv-promotional-cards, .newsEventsSection .content-container.field--name-field-about-nhlbi-promotional-ca, .newsEventsSection .field--name-field-about-nhlbi-promotional-ca.previous-directors-container, .newsEventsSection .field--name-field-sv-promotional-cards.previous-directors-container, .newsEventsSection .content-container.strategic-vision-titleblock, .newsEventsSection .strategic-vision-titleblock.previous-directors-container, .newsEventsSection .content-container.ppg-titleblock-wrapper, .newsEventsSection .ppg-titleblock-wrapper.previous-directors-container, .newsEventsSection .content-container.ppg-guidelines-card-wrapper, .newsEventsSection .ppg-guidelines-card-wrapper.previous-directors-container, .newsEventsSection .content-container.field--name-field-human-subject-cards, .newsEventsSection .field--name-field-human-subject-cards.previous-directors-container, .newsEventsSection .content-container.field--name-field-section-card, .newsEventsSection .field--name-field-section-card.previous-directors-container, .newsEventsSection .content-container.health-topic-teaser-container, .newsEventsSection .health-topic-teaser-container.previous-directors-container, .newsEventsSection .content-container.about-nhlbi-our-mission-wrapper, .newsEventsSection .about-nhlbi-our-mission-wrapper.previous-directors-container, .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 .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard.previous-directors-container, .about-nhlbi-our-mission-wrapper .newsEventsSection .field--name-field-leadership > .director-bioCard.previous-directors-container, .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 .field--name-field-health-consumer-nhlbi-publ.previous-directors-container, .nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-consumer-nhlbi-publ.previous-directors-container,
  .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-professionals-nhlbi.previous-directors-container,
  .nhlbi-publications-and-resources--landing .newsEventsSection .field--name-field-health-professionals-nhlbi.previous-directors-container, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.content-container, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article.content-container, .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article.previous-directors-container, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article.previous-directors-container,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.content-container,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article.content-container,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.previous-directors-container,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article.previous-directors-container, .newsEventsSection .publicationsBlock > .content-container.view-content, .newsEventsSection .publicationsBlock > .view-content.previous-directors-container,
  .newsEventsSection .content-container.field--name-field-related-publications,
  .newsEventsSection .field--name-field-related-publications.previous-directors-container, .newsEventsSection .healthEducationBlock article.content-container.node--type-heath-education, .healthEducationBlock .newsEventsSection article.content-container.node--type-heath-education, .newsEventsSection .healthEducationBlock article.node--type-heath-education.previous-directors-container, .healthEducationBlock .newsEventsSection article.node--type-heath-education.previous-directors-container, .newsEventsSection .systematicEvidenceReviewsBlock .content-container.view-content, .systematicEvidenceReviewsBlock .newsEventsSection .content-container.view-content, .newsEventsSection .systematicEvidenceReviewsBlock .view-content.previous-directors-container, .systematicEvidenceReviewsBlock .newsEventsSection .view-content.previous-directors-container,
  .newsEventsSection .clinicalPracticeGuidelinesBlock .content-container.view-content,
  .clinicalPracticeGuidelinesBlock .newsEventsSection .content-container.view-content,
  .newsEventsSection .clinicalPracticeGuidelinesBlock .view-content.previous-directors-container,
  .clinicalPracticeGuidelinesBlock .newsEventsSection .view-content.previous-directors-container,
  .newsEventsSection .publicationsAndFactSheetsBlock .content-container.view-content,
  .publicationsAndFactSheetsBlock .newsEventsSection .content-container.view-content,
  .newsEventsSection .publicationsAndFactSheetsBlock .view-content.previous-directors-container,
  .publicationsAndFactSheetsBlock .newsEventsSection .view-content.previous-directors-container, .newsEventsSection .content-container.rtFlexContainer, .newsEventsSection .rtFlexContainer.previous-directors-container, .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 .field--name-field-science-supplemental-page.previous-directors-container, .node--type-research-topic .newsEventsSection .field--name-field-science-supplemental-page.previous-directors-container, .newsEventsSection .node--type-research-topic .content-container.researchTopicPublications, .node--type-research-topic .newsEventsSection .content-container.researchTopicPublications, .newsEventsSection .node--type-research-topic .researchTopicPublications.previous-directors-container, .node--type-research-topic .newsEventsSection .researchTopicPublications.previous-directors-container, .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.listTeaserCard.previous-directors-container, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.listTeaserCard.previous-directors-container, .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.standard-teaser.previous-directors-container, .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.standard-teaser.previous-directors-container,
  .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 .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard.previous-directors-container,
  .node--type-research-topic .field--name-field-content > .field__item .newsEventsSection article.newsEventsCard.previous-directors-container, .newsEventsSection .content-container.esi-feature-card, .newsEventsSection .content-container.featured-science-instance-teaser-container, .newsEventsSection .featured-science-instance-teaser-container.previous-directors-container, .newsEventsSection .esi-feature-card.previous-directors-container, .newsEventsSection .content-container.sfa-teaser-container, .newsEventsSection .sfa-teaser-container.previous-directors-container, .newsEventsSection .training-opportunity-card .content-container.field--name-field-associated-people, .training-opportunity-card .newsEventsSection .content-container.field--name-field-associated-people, .newsEventsSection .training-opportunity-card .field--name-field-associated-people.previous-directors-container, .training-opportunity-card .newsEventsSection .field--name-field-associated-people.previous-directors-container, .newsEventsSection .content-container.field--name-field-featured-training-opportun, .newsEventsSection .field--name-field-featured-training-opportun.previous-directors-container, .newsEventsSection .content-container.field--name-field-career-stages, .newsEventsSection .field--name-field-career-stages.previous-directors-container, .newsEventsSection .content-container.field--name-field-workforce-development-card, .newsEventsSection .field--name-field-workforce-development-card.previous-directors-container, .newsEventsSection .content-container.node--type-update.node--view-mode-executive-teaser, .newsEventsSection .node--type-update.node--view-mode-executive-teaser.previous-directors-container, .newsEventsSection .flexcontainer.previous-directors-container, .newsEventsSection .previous-directors-container.news-and-events-titleblock, .newsEventsSection .contact-box > .previous-directors-container.field--name-field-contact-methods, .newsEventsSection .previous-directors-container.leadership-container, .newsEventsSection .leadership-container .leadership-deputy-director-container .previous-directors-container.field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .newsEventsSection .previous-directors-container.field--name-field-additional-leadership, .newsEventsSection .previous-directors-container.branch-leadership-container, .newsEventsSection .branch-leadership-container .leadership-deputy-director-container .previous-directors-container.field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .newsEventsSection .previous-directors-container.field--name-field-additional-leadership, .newsEventsSection .previous-directors-container.objective-text-container, .newsEventsSection .previous-directors-container.objective-list-container, .newsEventsSection .previous-directors-container.field--name-field-goal-card, .newsEventsSection .previous-directors-container.strategic-vision-landing-goals-wrapper, .newsEventsSection .node--type-principal-investigator .previous-directors-container.striped-container, .node--type-principal-investigator .newsEventsSection .previous-directors-container.striped-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article.previous-directors-container, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .newsEventsSection article.previous-directors-container,
  .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article.previous-directors-container,
  .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .newsEventsSection article.previous-directors-container, .newsEventsSection .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .previous-directors-container.standard-teaser.node--view-mode-short-teaser, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .newsEventsSection .previous-directors-container.standard-teaser.node--view-mode-short-teaser, .newsEventsSection .previous-directors-container.field--name-field-awards, .newsEventsSection .previous-directors-container.registerSocialContainer, .newsEventsSection .previous-directors-container.eventdatesLocationType, .newsEventsSection .previous-directors-container.news-article-container, .newsEventsSection .previous-directors-container.node--type-feature-article.node--view-mode-press-release-teaser,
  .newsEventsSection .previous-directors-container.node--type-press-release.node--view-mode-press-release-teaser,
  .newsEventsSection .previous-directors-container.node--type-events.node--view-mode-press-release-teaser,
  .newsEventsSection .previous-directors-container.node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .previous-directors-container.node--type-press-release.node--view-mode-hp-press-release-teaser,
  .newsEventsSection .previous-directors-container.node--type-events.node--view-mode-hp-press-release-teaser, .newsEventsSection .previous-directors-container.news-header-container, .newsEventsSection .contacts-container .previous-directors-container.field--name-field-contacts, .contacts-container .newsEventsSection .previous-directors-container.field--name-field-contacts, .newsEventsSection .publicationsBox .previous-directors-container.field--name-field-related-publications, .publicationsBox .newsEventsSection .previous-directors-container.field--name-field-related-publications, .newsEventsSection .previous-directors-container.field--name-field-primary-featured-item, .newsEventsSection .previous-directors-container.field--name-field-additional-featured-items, .newsEventsSection .previous-directors-container.homepage-health-topics-container, .newsEventsSection .previous-directors-container.homepage-mission-areas-container, .newsEventsSection .previous-directors-container.homepage-location-container, .newsEventsSection .previous-directors-container.field--name-field-alumni, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .previous-directors-container.nhlbi-publication-details-container, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .previous-directors-container.nhlbi-publication-details-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .previous-directors-container.nhlbi-publication-details-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .previous-directors-container.nhlbi-publication-details-container, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .previous-directors-container.field--name-field-related-nhlbi-publications, .node--type-nhlbi-publication.node--view-mode-full .newsEventsSection .previous-directors-container.field--name-field-related-nhlbi-publications,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .previous-directors-container.field--name-field-related-nhlbi-publications,
  .node--type-nhlbi-publication.node--view-mode-subscribe .newsEventsSection .previous-directors-container.field--name-field-related-nhlbi-publications, .newsEventsSection .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article.previous-directors-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.previous-directors-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.previous-directors-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.previous-directors-container, .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 .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, .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.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 article.content-container, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.content-container,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.content-container,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article.content-container {
    flex-direction: column;
  }
}
/* line 273, ../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 273, ../sass/components/_healthtopics.scss */
  .newsEventsSection .views-element-container {
    margin-right: 0;
    width: auto;
  }
}
/* line 284, ../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-scientific-leadership,
.newsEventsSection .field--name-field-operations-and-administrat, .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-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 .field--name-field-grants-and-training-card, .newsEventsSection .field--name-field-division-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 .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 article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article,
.newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article, .newsEventsSection .publicationsBlock > .view-content,
.newsEventsSection .field--name-field-related-publications, .newsEventsSection .healthEducationBlock article.node--type-heath-education, .healthEducationBlock .newsEventsSection article.node--type-heath-education, .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 .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, .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 .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 article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article,
.newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article {
  -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 284, ../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-scientific-leadership,
  .newsEventsSection .field--name-field-operations-and-administrat, .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-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 .field--name-field-grants-and-training-card, .newsEventsSection .field--name-field-division-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 .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 article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .newsEventsSection article,
  .newsEventsSection .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .newsEventsSection article, .newsEventsSection .publicationsBlock > .view-content,
  .newsEventsSection .field--name-field-related-publications, .newsEventsSection .healthEducationBlock article.node--type-heath-education, .healthEducationBlock .newsEventsSection article.node--type-heath-education, .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 .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, .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 .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 article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article,
  .newsEventsSection .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .newsEventsSection article {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
}
/* line 290, ../sass/components/_healthtopics.scss */
.newsEventsSection .flexItemImage, .newsEventsSection .flexItemImageHalf, .newsEventsSection .flexItemImageTenth, .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 290, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexItemImage, .newsEventsSection .flexItemImageHalf, .newsEventsSection .flexItemImageTenth, .newsEventsSection .flexItemImageThird, .newsEventsSection .flexItemImageThirdHalf, .newsEventsSection .hero-image {
    width: 45%;
    min-width: 45%;
  }
}
/* line 299, ../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 299, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexItemText {
    padding: 2.2em 1em 1em 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 299, ../sass/components/_healthtopics.scss */
  .newsEventsSection .flexItemText {
    padding: 0 0 1em 2em;
  }
}
@media all and (min-width: 1100px) {
  /* line 304, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardOuter {
    display: none;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 304, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardOuter {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 304, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardOuter {
    display: block;
    clear: both;
    margin-bottom: 1.4em;
  }
}
/* line 314, ../sass/components/_healthtopics.scss */
.newsEventsSection .blueBottom.cardInner {
  padding-left: 0;
  margin-left: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 314, ../sass/components/_healthtopics.scss */
  .newsEventsSection .blueBottom.cardInner {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 320, ../sass/components/_healthtopics.scss */
  .newsEventsSection .field--name-field-description, .newsEventsSection .field--name-body {
    display: none;
  }
}
/* line 325, ../sass/components/_healthtopics.scss */
.newsEventsSection .field--name-field-description {
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 325, ../sass/components/_healthtopics.scss */
  .newsEventsSection .field--name-field-description {
    margin: 0;
  }
}
/* line 331, ../sass/components/_healthtopics.scss */
.newsEventsSection .field--name-field-start-date, .newsEventsSection .field--name-field-end-date {
  display: inline;
}

/* line 338, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic .views-element-container {
  clear: both;
}
/* line 341, ../sass/components/_healthtopics.scss */
.node--type-health-professional-health-topic h3 {
  font-weight: normal;
}

/* line 354, ../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 354, ../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 354, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-header,
  .clinicalPracticeGuidelinesBlock .view-header,
  .publicationsAndFactSheetsBlock .view-header {
    margin-left: 0;
  }
}
/* line 364, ../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 364, ../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 372, ../sass/components/_healthtopics.scss */
.systematicEvidenceReviewsBlock .view-content .views-row,
.clinicalPracticeGuidelinesBlock .view-content .views-row,
.publicationsAndFactSheetsBlock .view-content .views-row {
  border: 2px solid #d7d7d7;
  width: 30%;
  margin: 0 1em 1em 0;
}
/* line 376, ../sass/components/_healthtopics.scss */
.systematicEvidenceReviewsBlock .view-content .views-row article,
.clinicalPracticeGuidelinesBlock .view-content .views-row article,
.publicationsAndFactSheetsBlock .view-content .views-row article {
  height: 100%;
  display: inline-flex;
  background-color: #fff;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 372, ../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 372, ../sass/components/_healthtopics.scss */
  .systematicEvidenceReviewsBlock .view-content .views-row,
  .clinicalPracticeGuidelinesBlock .view-content .views-row,
  .publicationsAndFactSheetsBlock .view-content .views-row {
    width: auto;
    margin-right: 0;
  }
}

/* line 395, ../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 395, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    padding-left: 2.2em;
  }
}
@media all and (min-width: 1100px) {
  /* line 395, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    width: 33%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 395, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    width: 50%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 395, ../sass/components/_healthtopics.scss */
  .additionalSupportBlock {
    width: 100%;
  }
}
/* line 410, ../sass/components/_healthtopics.scss */
.additionalSupportBlock .featuredUnderline {
  border-bottom: #d2d9e1 2px solid;
  width: 95%;
}
/* line 414, ../sass/components/_healthtopics.scss */
.additionalSupportBlock .field__item {
  margin-bottom: .8em;
}

/* line 422, ../sass/components/_healthtopics.scss */
.field--name-field-past-research .paragraph--type--date-image-title-text {
  display: table;
}
/* line 425, ../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 433, ../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 439, ../sass/components/_healthtopics.scss */
.field--name-field-past-research time span {
  display: block;
  padding-top: 30px;
}

/* line 446, ../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: 100%;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
}

/* line 452, ../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 6, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .supplemental-pages > h2, .node--type-systematic-evidence-review .supplemental-pages > .contact-method-label,
.node--type-clinical-practice-guideline .supplemental-pages > h2,
.node--type-clinical-practice-guideline .supplemental-pages > .contact-method-label {
  margin-top: 2em;
}
/* line 10, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .description h3,
.node--type-clinical-practice-guideline .description h3 {
  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 .phone-desktop-description,
  .node--type-clinical-practice-guideline .phone-desktop-description {
    display: none;
  }
}
/* line 21, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .tablet-description,
.node--type-clinical-practice-guideline .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 .tablet-description,
  .node--type-clinical-practice-guideline .tablet-description {
    display: block;
  }
}
/* line 27, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .ser-guideline-header,
.node--type-clinical-practice-guideline .ser-guideline-header {
  margin-bottom: 25px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 33, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .flexcontainer, .node--type-systematic-evidence-review .related-ht-ser-container, .node--type-systematic-evidence-review .field--name-field-sfa-card, .node--type-systematic-evidence-review .field--name-field-speaker,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat, .node--type-systematic-evidence-review .standard-card-field, .node--type-systematic-evidence-review .field--name-field-advisory-committees, .node--type-systematic-evidence-review .contact-nhlbi-titleblock, .node--type-systematic-evidence-review .field--name-field-contact-cards, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car, .node--type-systematic-evidence-review .all-grants-foa-container,
  .node--type-systematic-evidence-review .field--name-field-program-officers,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods,
  .node--type-systematic-evidence-review .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-contact-methods,
  .node--type-systematic-evidence-review .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-contact-methods,
  .node--type-systematic-evidence-review .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-contact-methods,
  .node--type-systematic-evidence-review .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-contact-methods,
  .node--type-systematic-evidence-review .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-contact-methods,
  .node--type-systematic-evidence-review .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-contact-methods, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text, .node--type-systematic-evidence-review .news-and-events--landing .landing-social, .news-and-events--landing .node--type-systematic-evidence-review .landing-social, .node--type-systematic-evidence-review .field--name-field-sfa-cards, .node--type-systematic-evidence-review .locationMap.contact-location-map-container, .node--type-systematic-evidence-review .locationMap, .node--type-systematic-evidence-review .grants-and-training-card-wrapper, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card, .node--type-systematic-evidence-review .field--name-field-division-card, .node--type-systematic-evidence-review .field--name-field-promotional-card, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca, .node--type-systematic-evidence-review .strategic-vision-titleblock, .node--type-systematic-evidence-review .ppg-titleblock-wrapper, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper, .node--type-systematic-evidence-review .field--name-field-human-subject-cards, .node--type-systematic-evidence-review .field--name-field-section-card, .node--type-systematic-evidence-review .health-topic-teaser-container, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article, .node--type-systematic-evidence-review .publicationsBlock > .view-content,
  .node--type-systematic-evidence-review .field--name-field-related-publications, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content, .node--type-systematic-evidence-review .rtFlexContainer, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications, .node--type-systematic-evidence-review .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 article.listTeaserCard, .node--type-systematic-evidence-review .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 article.standard-teaser,
  .node--type-systematic-evidence-review .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 article.newsEventsCard, .node--type-systematic-evidence-review .esi-feature-card, .node--type-systematic-evidence-review .featured-science-instance-teaser-container, .node--type-systematic-evidence-review .sfa-teaser-container, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun, .node--type-systematic-evidence-review .field--name-field-career-stages, .node--type-systematic-evidence-review .field--name-field-workforce-development-card, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser, .node--type-systematic-evidence-review .news-and-events-titleblock, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods, .node--type-systematic-evidence-review .leadership-container, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership, .node--type-systematic-evidence-review .branch-leadership-container, .node--type-systematic-evidence-review .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership, .node--type-systematic-evidence-review .objective-text-container, .node--type-systematic-evidence-review .objective-list-container, .node--type-systematic-evidence-review .field--name-field-goal-card, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container, .node--type-systematic-evidence-review .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 article,
  .node--type-systematic-evidence-review .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 article, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser, .node--type-systematic-evidence-review .field--name-field-awards, .node--type-systematic-evidence-review .registerSocialContainer, .node--type-systematic-evidence-review .eventdatesLocationType, .node--type-systematic-evidence-review .news-article-container, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser, .node--type-systematic-evidence-review .news-header-container, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications, .node--type-systematic-evidence-review .field--name-field-primary-featured-item, .node--type-systematic-evidence-review .field--name-field-additional-featured-items, .node--type-systematic-evidence-review .homepage-health-topics-container, .node--type-systematic-evidence-review .homepage-mission-areas-container, .node--type-systematic-evidence-review .homepage-location-container, .node--type-systematic-evidence-review .field--name-field-alumni, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article,
  .node--type-clinical-practice-guideline .flexcontainer,
  .node--type-clinical-practice-guideline .related-ht-ser-container,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card,
  .node--type-clinical-practice-guideline .field--name-field-speaker,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat,
  .node--type-clinical-practice-guideline .standard-card-field,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car,
  .node--type-clinical-practice-guideline .all-grants-foa-container,
  .node--type-clinical-practice-guideline .field--name-field-program-officers,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-division.node--view-mode-full .field--name-field-contact-methods,
  .node--type-division.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-branch.node--view-mode-full .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-general.node--view-mode-full .field--name-field-contact-methods,
  .node--type-general.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods,
  .node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container,
  .node--type-clinical-practice-guideline .locationMap,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card,
  .node--type-clinical-practice-guideline .field--name-field-division-card,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards,
  .node--type-clinical-practice-guideline .field--name-field-section-card,
  .node--type-clinical-practice-guideline .health-topic-teaser-container,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content,
  .node--type-clinical-practice-guideline .field--name-field-related-publications,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content,
  .node--type-clinical-practice-guideline .rtFlexContainer,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard,
  .node--type-clinical-practice-guideline .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 article.standard-teaser,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard,
  .node--type-clinical-practice-guideline .esi-feature-card,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container,
  .node--type-clinical-practice-guideline .sfa-teaser-container,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun,
  .node--type-clinical-practice-guideline .field--name-field-career-stages,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser,
  .node--type-clinical-practice-guideline .news-and-events-titleblock,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods,
  .node--type-clinical-practice-guideline .leadership-container,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership,
  .node--type-clinical-practice-guideline .branch-leadership-container,
  .node--type-clinical-practice-guideline .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership,
  .branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership,
  .node--type-clinical-practice-guideline .objective-text-container,
  .node--type-clinical-practice-guideline .objective-list-container,
  .node--type-clinical-practice-guideline .field--name-field-goal-card,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container,
  .node--type-clinical-practice-guideline .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 article,
  .node--type-clinical-practice-guideline .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 article,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser,
  .node--type-clinical-practice-guideline .field--name-field-awards,
  .node--type-clinical-practice-guideline .registerSocialContainer,
  .node--type-clinical-practice-guideline .eventdatesLocationType,
  .node--type-clinical-practice-guideline .news-article-container,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser,
  .node--type-clinical-practice-guideline .news-header-container,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items,
  .node--type-clinical-practice-guideline .homepage-health-topics-container,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container,
  .node--type-clinical-practice-guideline .homepage-location-container,
  .node--type-clinical-practice-guideline .field--name-field-alumni,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article {
    -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 37, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .flexcontainer .flexItemImage, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImage, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImage,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImage,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImage, .node--type-systematic-evidence-review .standard-card-field .flexItemImage, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImage, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImage, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImage, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImage, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImage,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImage,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImage, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImage, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImage, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImage, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImage, .node--type-systematic-evidence-review .locationMap .flexItemImage, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImage, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImage, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImage, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImage, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImage, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImage, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImage, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImage, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImage, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImage, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImage, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImage, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImage,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImage, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImage,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImage, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImage, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImage,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImage,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImage, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImage, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImage, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImage, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImage, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImage,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImage, .node--type-systematic-evidence-review .esi-feature-card .flexItemImage, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImage, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImage, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImage, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImage, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImage, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImage, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImage, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImage, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review .leadership-container .flexItemImage, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImage, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review .objective-text-container .flexItemImage, .node--type-systematic-evidence-review .objective-list-container .flexItemImage, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImage, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImage, .node--type-systematic-evidence-review .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 article .flexItemImage,
.node--type-systematic-evidence-review .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 article .flexItemImage, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImage, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImage, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImage, .node--type-systematic-evidence-review .news-article-container .flexItemImage, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage, .node--type-systematic-evidence-review .news-header-container .flexItemImage, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImage, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImage, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImage, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImage, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImage, .node--type-systematic-evidence-review .homepage-location-container .flexItemImage, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImage, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImage,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImage, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImage,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImage, .node--type-systematic-evidence-review .flexcontainer .flexItemImageHalf, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageHalf,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageHalf,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageHalf, .node--type-systematic-evidence-review .standard-card-field .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageHalf, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageHalf, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageHalf,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageHalf,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageHalf, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageHalf, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageHalf, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageHalf, .node--type-systematic-evidence-review .locationMap .flexItemImageHalf, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageHalf, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageHalf, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageHalf,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageHalf, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageHalf, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageHalf, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageHalf, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageHalf, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review .leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review .objective-text-container .flexItemImageHalf, .node--type-systematic-evidence-review .objective-list-container .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageHalf, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageHalf, .node--type-systematic-evidence-review .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 article .flexItemImageHalf,
.node--type-systematic-evidence-review .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 article .flexItemImageHalf, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageHalf, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageHalf, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageHalf, .node--type-systematic-evidence-review .news-article-container .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .node--type-systematic-evidence-review .news-header-container .flexItemImageHalf, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageHalf, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageHalf, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageHalf, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageHalf, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageHalf, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageHalf, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf, .node--type-systematic-evidence-review .flexcontainer .flexItemImageTenth, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageTenth,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageTenth,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageTenth, .node--type-systematic-evidence-review .standard-card-field .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageTenth, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageTenth, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageTenth,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageTenth,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageTenth, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageTenth, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageTenth, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageTenth, .node--type-systematic-evidence-review .locationMap .flexItemImageTenth, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageTenth, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageTenth, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageTenth,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageTenth, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageTenth, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageTenth, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageTenth, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageTenth, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review .leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review .objective-text-container .flexItemImageTenth, .node--type-systematic-evidence-review .objective-list-container .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageTenth, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageTenth, .node--type-systematic-evidence-review .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 article .flexItemImageTenth,
.node--type-systematic-evidence-review .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 article .flexItemImageTenth, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageTenth, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageTenth, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageTenth, .node--type-systematic-evidence-review .news-article-container .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .node--type-systematic-evidence-review .news-header-container .flexItemImageTenth, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageTenth, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageTenth, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageTenth, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageTenth, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageTenth, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageTenth, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth, .node--type-systematic-evidence-review .flexcontainer .flexItemImageThird, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageThird,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageThird,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageThird, .node--type-systematic-evidence-review .standard-card-field .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageThird, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageThird, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageThird,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageThird,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageThird, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageThird, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageThird, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageThird, .node--type-systematic-evidence-review .locationMap .flexItemImageThird, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageThird, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageThird, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageThird, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageThird, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageThird,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageThird, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageThird,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageThird, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageThird, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThird,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageThird,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThird, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageThird, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageThird, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageThird, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageThird,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageThird, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageThird, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageThird, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageThird, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review .leadership-container .flexItemImageThird, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageThird, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review .objective-text-container .flexItemImageThird, .node--type-systematic-evidence-review .objective-list-container .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageThird, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageThird, .node--type-systematic-evidence-review .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 article .flexItemImageThird,
.node--type-systematic-evidence-review .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 article .flexItemImageThird, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageThird, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageThird, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageThird, .node--type-systematic-evidence-review .news-article-container .flexItemImageThird, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird, .node--type-systematic-evidence-review .news-header-container .flexItemImageThird, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageThird, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageThird, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageThird, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageThird, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageThird, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThird,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThird, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThird,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThird, .node--type-systematic-evidence-review .flexcontainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageThirdHalf, .node--type-systematic-evidence-review .standard-card-field .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageThirdHalf, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageThirdHalf, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .locationMap .flexItemImageThirdHalf, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageThirdHalf, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review .leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review .objective-text-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .objective-list-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 article .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 article .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-article-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-header-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageThirdHalf, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageThirdHalf, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf, .node--type-systematic-evidence-review .flexcontainer .hero-image, .node--type-systematic-evidence-review .related-ht-ser-container .hero-image, .node--type-systematic-evidence-review .field--name-field-sfa-card .hero-image, .node--type-systematic-evidence-review .field--name-field-speaker .hero-image,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .hero-image,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .hero-image, .node--type-systematic-evidence-review .standard-card-field .hero-image, .node--type-systematic-evidence-review .field--name-field-advisory-committees .hero-image, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .hero-image, .node--type-systematic-evidence-review .field--name-field-contact-cards .hero-image, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .hero-image, .node--type-systematic-evidence-review .all-grants-foa-container .hero-image,
.node--type-systematic-evidence-review .field--name-field-program-officers .hero-image,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .hero-image, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .hero-image, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .hero-image, .node--type-systematic-evidence-review .field--name-field-sfa-cards .hero-image, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .hero-image, .node--type-systematic-evidence-review .locationMap .hero-image, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .hero-image, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .hero-image, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .hero-image, .node--type-systematic-evidence-review .field--name-field-division-card .hero-image, .node--type-systematic-evidence-review .field--name-field-promotional-card .hero-image, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .hero-image, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .hero-image, .node--type-systematic-evidence-review .strategic-vision-titleblock .hero-image, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .hero-image, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .hero-image, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .hero-image, .node--type-systematic-evidence-review .field--name-field-section-card .hero-image, .node--type-systematic-evidence-review .health-topic-teaser-container .hero-image, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .hero-image, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .hero-image, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .hero-image,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .hero-image, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .hero-image,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .hero-image, .node--type-systematic-evidence-review .publicationsBlock > .view-content .hero-image,
.node--type-systematic-evidence-review .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .hero-image, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .hero-image, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .hero-image,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .hero-image,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .hero-image, .node--type-systematic-evidence-review .rtFlexContainer .hero-image, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .hero-image, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .hero-image, .node--type-systematic-evidence-review .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 article.listTeaserCard .hero-image, .node--type-systematic-evidence-review .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 article.standard-teaser .hero-image,
.node--type-systematic-evidence-review .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 article.newsEventsCard .hero-image, .node--type-systematic-evidence-review .esi-feature-card .hero-image, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .hero-image, .node--type-systematic-evidence-review .sfa-teaser-container .hero-image, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .hero-image, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .hero-image, .node--type-systematic-evidence-review .field--name-field-career-stages .hero-image, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .hero-image, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .hero-image, .node--type-systematic-evidence-review .news-and-events-titleblock .hero-image, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review .leadership-container .hero-image, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review .branch-leadership-container .hero-image, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review .objective-text-container .hero-image, .node--type-systematic-evidence-review .objective-list-container .hero-image, .node--type-systematic-evidence-review .field--name-field-goal-card .hero-image, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .hero-image, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .hero-image, .node--type-systematic-evidence-review .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 article .hero-image,
.node--type-systematic-evidence-review .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 article .hero-image, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-systematic-evidence-review .field--name-field-awards .hero-image, .node--type-systematic-evidence-review .registerSocialContainer .hero-image, .node--type-systematic-evidence-review .eventdatesLocationType .hero-image, .node--type-systematic-evidence-review .news-article-container .hero-image, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .hero-image,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .hero-image, .node--type-systematic-evidence-review .news-header-container .hero-image, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .hero-image, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .hero-image, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .hero-image, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .hero-image, .node--type-systematic-evidence-review .homepage-health-topics-container .hero-image, .node--type-systematic-evidence-review .homepage-mission-areas-container .hero-image, .node--type-systematic-evidence-review .homepage-location-container .hero-image, .node--type-systematic-evidence-review .field--name-field-alumni .hero-image, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .hero-image,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .hero-image, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .hero-image,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .hero-image, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .hero-image,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .hero-image,
.node--type-clinical-practice-guideline .flexcontainer .flexItemImage,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImage,
.node--type-clinical-practice-guideline .standard-card-field .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImage,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImage,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImage,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImage,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImage,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImage,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImage,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImage,
.node--type-clinical-practice-guideline .locationMap .flexItemImage,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImage,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImage,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImage,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImage,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImage,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImage,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImage,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImage,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImage,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImage,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImage,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImage,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImage,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemImage,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImage,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImage,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImage,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImage,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImage,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImage,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemImage,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImage,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImage,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImage,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImage,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImage,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImage,
.node--type-clinical-practice-guideline .leadership-container .flexItemImage,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImage,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImage,
.node--type-clinical-practice-guideline .objective-text-container .flexItemImage,
.node--type-clinical-practice-guideline .objective-list-container .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImage,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImage,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImage,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImage,
.node--type-clinical-practice-guideline .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 article .flexItemImage,
.node--type-clinical-practice-guideline .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 article .flexItemImage,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemImage,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemImage,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImage,
.node--type-clinical-practice-guideline .news-article-container .flexItemImage,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
.node--type-clinical-practice-guideline .news-header-container .flexItemImage,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImage,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImage,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImage,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImage,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImage,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImage,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemImage,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImage,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImage,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImage,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
.node--type-clinical-practice-guideline .flexcontainer .flexItemImageHalf,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageHalf,
.node--type-clinical-practice-guideline .standard-card-field .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageHalf,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageHalf,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageHalf,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageHalf,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageHalf,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageHalf,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .locationMap .flexItemImageHalf,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageHalf,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageHalf,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageHalf,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageHalf,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageHalf,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
.node--type-clinical-practice-guideline .leadership-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageHalf,
.node--type-clinical-practice-guideline .objective-text-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .objective-list-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageHalf,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 article .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 article .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageHalf,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageHalf,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageHalf,
.node--type-clinical-practice-guideline .news-article-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
.node--type-clinical-practice-guideline .news-header-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageHalf,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageHalf,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageHalf,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
.node--type-clinical-practice-guideline .flexcontainer .flexItemImageTenth,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageTenth,
.node--type-clinical-practice-guideline .standard-card-field .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageTenth,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageTenth,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageTenth,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageTenth,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageTenth,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageTenth,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .locationMap .flexItemImageTenth,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageTenth,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageTenth,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageTenth,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageTenth,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageTenth,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
.node--type-clinical-practice-guideline .leadership-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageTenth,
.node--type-clinical-practice-guideline .objective-text-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .objective-list-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageTenth,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageTenth,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 article .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 article .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageTenth,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageTenth,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageTenth,
.node--type-clinical-practice-guideline .news-article-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
.node--type-clinical-practice-guideline .news-header-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageTenth,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageTenth,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageTenth,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
.node--type-clinical-practice-guideline .flexcontainer .flexItemImageThird,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageThird,
.node--type-clinical-practice-guideline .standard-card-field .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageThird,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageThird,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageThird,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageThird,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageThird,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageThird,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageThird,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageThird,
.node--type-clinical-practice-guideline .locationMap .flexItemImageThird,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageThird,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageThird,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageThird,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageThird,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageThird,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThird,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageThird,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageThird,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageThird,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageThird,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemImageThird,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageThird,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageThird,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageThird,
.node--type-clinical-practice-guideline .leadership-container .flexItemImageThird,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageThird,
.node--type-clinical-practice-guideline .objective-text-container .flexItemImageThird,
.node--type-clinical-practice-guideline .objective-list-container .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageThird,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageThird,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageThird,
.node--type-clinical-practice-guideline .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 article .flexItemImageThird,
.node--type-clinical-practice-guideline .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 article .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageThird,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageThird,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageThird,
.node--type-clinical-practice-guideline .news-article-container .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
.node--type-clinical-practice-guideline .news-header-container .flexItemImageThird,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageThird,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageThird,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageThird,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageThird,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageThird,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageThird,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemImageThird,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
.node--type-clinical-practice-guideline .flexcontainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .standard-card-field .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageThirdHalf,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .locationMap .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageThirdHalf,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .leadership-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .objective-text-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .objective-list-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .news-article-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .news-header-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
.node--type-clinical-practice-guideline .flexcontainer .hero-image,
.node--type-clinical-practice-guideline .related-ht-ser-container .hero-image,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .hero-image,
.node--type-clinical-practice-guideline .field--name-field-speaker .hero-image,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .hero-image,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .hero-image,
.node--type-clinical-practice-guideline .standard-card-field .hero-image,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .hero-image,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .hero-image,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .hero-image,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .hero-image,
.node--type-clinical-practice-guideline .all-grants-foa-container .hero-image,
.node--type-clinical-practice-guideline .field--name-field-program-officers .hero-image,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .hero-image,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .hero-image,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .hero-image,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .hero-image,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .hero-image,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .hero-image,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .hero-image,
.node--type-clinical-practice-guideline .locationMap .hero-image,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .hero-image,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .hero-image,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .hero-image,
.node--type-clinical-practice-guideline .field--name-field-division-card .hero-image,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .hero-image,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .hero-image,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .hero-image,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .hero-image,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .hero-image,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .hero-image,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .hero-image,
.node--type-clinical-practice-guideline .field--name-field-section-card .hero-image,
.node--type-clinical-practice-guideline .health-topic-teaser-container .hero-image,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .hero-image,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .hero-image,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .hero-image,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .hero-image,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .hero-image,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .hero-image,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .hero-image,
.node--type-clinical-practice-guideline .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .hero-image,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .hero-image,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .hero-image,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .hero-image,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .hero-image,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .hero-image,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .hero-image,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .hero-image,
.node--type-clinical-practice-guideline .rtFlexContainer .hero-image,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .hero-image,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .hero-image,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .hero-image,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .hero-image,
.node--type-clinical-practice-guideline .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 article.standard-teaser .hero-image,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .hero-image,
.node--type-clinical-practice-guideline .esi-feature-card .hero-image,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .hero-image,
.node--type-clinical-practice-guideline .sfa-teaser-container .hero-image,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .hero-image,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .hero-image,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .hero-image,
.node--type-clinical-practice-guideline .field--name-field-career-stages .hero-image,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .hero-image,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .hero-image,
.node--type-clinical-practice-guideline .news-and-events-titleblock .hero-image,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .hero-image,
.node--type-clinical-practice-guideline .leadership-container .hero-image,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .hero-image,
.node--type-clinical-practice-guideline .branch-leadership-container .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .hero-image,
.node--type-clinical-practice-guideline .objective-text-container .hero-image,
.node--type-clinical-practice-guideline .objective-list-container .hero-image,
.node--type-clinical-practice-guideline .field--name-field-goal-card .hero-image,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .hero-image,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .hero-image,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .hero-image,
.node--type-clinical-practice-guideline .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 article .hero-image,
.node--type-clinical-practice-guideline .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 article .hero-image,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .hero-image,
.node--type-clinical-practice-guideline .field--name-field-awards .hero-image,
.node--type-clinical-practice-guideline .registerSocialContainer .hero-image,
.node--type-clinical-practice-guideline .eventdatesLocationType .hero-image,
.node--type-clinical-practice-guideline .news-article-container .hero-image,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
.node--type-clinical-practice-guideline .news-header-container .hero-image,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .hero-image,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .hero-image,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .hero-image,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .hero-image,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .hero-image,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .hero-image,
.node--type-clinical-practice-guideline .homepage-health-topics-container .hero-image,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .hero-image,
.node--type-clinical-practice-guideline .homepage-location-container .hero-image,
.node--type-clinical-practice-guideline .field--name-field-alumni .hero-image,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .hero-image,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .hero-image,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .hero-image,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .hero-image,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .hero-image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  min-width: 40%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 37, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .flexcontainer .flexItemImage, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImage, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImage,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImage,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImage, .node--type-systematic-evidence-review .standard-card-field .flexItemImage, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImage, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImage, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImage, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImage, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImage,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImage,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImage, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImage, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImage, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImage, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImage, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImage, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImage, .node--type-systematic-evidence-review .locationMap .flexItemImage, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImage, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImage, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImage, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImage, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImage, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImage, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImage, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImage, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImage, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImage, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImage, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImage, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImage, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImage, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImage,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImage, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImage,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImage, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImage, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImage, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImage,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImage,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImage, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImage, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImage, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImage, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImage, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImage, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImage,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImage, .node--type-systematic-evidence-review .esi-feature-card .flexItemImage, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImage, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImage, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImage, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImage, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImage, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImage, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImage, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImage, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImage, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImage, .node--type-systematic-evidence-review .leadership-container .flexItemImage, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImage, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImage, .node--type-systematic-evidence-review .objective-text-container .flexItemImage, .node--type-systematic-evidence-review .objective-list-container .flexItemImage, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImage, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImage, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImage, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImage, .node--type-systematic-evidence-review .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 article .flexItemImage,
  .node--type-systematic-evidence-review .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 article .flexItemImage, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImage, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImage, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImage, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImage, .node--type-systematic-evidence-review .news-article-container .flexItemImage, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage, .node--type-systematic-evidence-review .news-header-container .flexItemImage, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImage, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImage, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImage, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImage, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImage, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImage, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImage, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImage, .node--type-systematic-evidence-review .homepage-location-container .flexItemImage, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImage, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImage,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImage, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImage, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImage,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImage, .node--type-systematic-evidence-review .flexcontainer .flexItemImageHalf, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageHalf,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageHalf,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageHalf, .node--type-systematic-evidence-review .standard-card-field .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageHalf, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageHalf, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageHalf,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageHalf,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageHalf, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageHalf, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageHalf, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageHalf, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageHalf, .node--type-systematic-evidence-review .locationMap .flexItemImageHalf, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageHalf, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageHalf, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageHalf,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageHalf, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageHalf, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageHalf, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageHalf, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageHalf, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageHalf, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageHalf, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageHalf, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageHalf, .node--type-systematic-evidence-review .leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageHalf, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageHalf, .node--type-systematic-evidence-review .objective-text-container .flexItemImageHalf, .node--type-systematic-evidence-review .objective-list-container .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageHalf, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageHalf, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageHalf, .node--type-systematic-evidence-review .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 article .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 article .flexItemImageHalf, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageHalf, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageHalf, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageHalf, .node--type-systematic-evidence-review .news-article-container .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf, .node--type-systematic-evidence-review .news-header-container .flexItemImageHalf, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageHalf, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageHalf, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageHalf, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageHalf, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageHalf, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageHalf, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageHalf, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageHalf, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageHalf, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageHalf, .node--type-systematic-evidence-review .flexcontainer .flexItemImageTenth, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageTenth,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageTenth,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageTenth, .node--type-systematic-evidence-review .standard-card-field .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageTenth, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageTenth, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageTenth,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageTenth,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageTenth, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageTenth, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageTenth, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageTenth, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageTenth, .node--type-systematic-evidence-review .locationMap .flexItemImageTenth, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageTenth, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageTenth, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageTenth, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageTenth, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageTenth,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageTenth, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageTenth, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageTenth, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageTenth, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageTenth, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageTenth, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageTenth, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageTenth, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageTenth, .node--type-systematic-evidence-review .leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageTenth, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageTenth, .node--type-systematic-evidence-review .objective-text-container .flexItemImageTenth, .node--type-systematic-evidence-review .objective-list-container .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageTenth, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageTenth, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageTenth, .node--type-systematic-evidence-review .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 article .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 article .flexItemImageTenth, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageTenth, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageTenth, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageTenth, .node--type-systematic-evidence-review .news-article-container .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth, .node--type-systematic-evidence-review .news-header-container .flexItemImageTenth, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageTenth, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageTenth, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageTenth, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageTenth, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageTenth, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageTenth, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageTenth, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageTenth, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageTenth, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageTenth, .node--type-systematic-evidence-review .flexcontainer .flexItemImageThird, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageThird,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageThird,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageThird, .node--type-systematic-evidence-review .standard-card-field .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageThird, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageThird, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageThird,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageThird,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageThird, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageThird, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageThird, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageThird, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageThird, .node--type-systematic-evidence-review .locationMap .flexItemImageThird, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageThird, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageThird, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageThird, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageThird, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageThird,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageThird, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageThird, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageThird, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageThird, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageThird,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThird, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageThird, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageThird, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageThird, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageThird, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageThird, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageThird, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageThird, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageThird, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageThird, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageThird, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageThird, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageThird, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageThird, .node--type-systematic-evidence-review .leadership-container .flexItemImageThird, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageThird, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageThird, .node--type-systematic-evidence-review .objective-text-container .flexItemImageThird, .node--type-systematic-evidence-review .objective-list-container .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageThird, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageThird, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageThird, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageThird, .node--type-systematic-evidence-review .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 article .flexItemImageThird,
  .node--type-systematic-evidence-review .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 article .flexItemImageThird, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageThird, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageThird, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageThird, .node--type-systematic-evidence-review .news-article-container .flexItemImageThird, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird, .node--type-systematic-evidence-review .news-header-container .flexItemImageThird, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageThird, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageThird, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageThird, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageThird, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageThird, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageThird, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageThird, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageThird, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThird, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThird, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThird,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThird, .node--type-systematic-evidence-review .flexcontainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemImageThirdHalf, .node--type-systematic-evidence-review .standard-card-field .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemImageThirdHalf, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemImageThirdHalf, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemImageThirdHalf, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .locationMap .flexItemImageThirdHalf, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemImageThirdHalf, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemImageThirdHalf, .node--type-systematic-evidence-review .rtFlexContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemImageThirdHalf, .node--type-systematic-evidence-review .esi-feature-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemImageThirdHalf, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf, .node--type-systematic-evidence-review .leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review .branch-leadership-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemImageThirdHalf, .node--type-systematic-evidence-review .objective-text-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .objective-list-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemImageThirdHalf, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemImageThirdHalf, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 article .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 article .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-awards .flexItemImageThirdHalf, .node--type-systematic-evidence-review .registerSocialContainer .flexItemImageThirdHalf, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-article-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf, .node--type-systematic-evidence-review .news-header-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemImageThirdHalf, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemImageThirdHalf, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemImageThirdHalf, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .homepage-location-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemImageThirdHalf, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemImageThirdHalf, .node--type-systematic-evidence-review .flexcontainer .hero-image, .node--type-systematic-evidence-review .related-ht-ser-container .hero-image, .node--type-systematic-evidence-review .field--name-field-sfa-card .hero-image, .node--type-systematic-evidence-review .field--name-field-speaker .hero-image,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .hero-image,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .hero-image, .node--type-systematic-evidence-review .standard-card-field .hero-image, .node--type-systematic-evidence-review .field--name-field-advisory-committees .hero-image, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .hero-image, .node--type-systematic-evidence-review .field--name-field-contact-cards .hero-image, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .hero-image, .node--type-systematic-evidence-review .all-grants-foa-container .hero-image,
  .node--type-systematic-evidence-review .field--name-field-program-officers .hero-image,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .hero-image, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .hero-image, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .hero-image, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .hero-image, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .hero-image, .node--type-systematic-evidence-review .field--name-field-sfa-cards .hero-image, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .hero-image, .node--type-systematic-evidence-review .locationMap .hero-image, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .hero-image, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .hero-image, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .hero-image, .node--type-systematic-evidence-review .field--name-field-division-card .hero-image, .node--type-systematic-evidence-review .field--name-field-promotional-card .hero-image, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .hero-image, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .hero-image, .node--type-systematic-evidence-review .strategic-vision-titleblock .hero-image, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .hero-image, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .hero-image, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .hero-image, .node--type-systematic-evidence-review .field--name-field-section-card .hero-image, .node--type-systematic-evidence-review .health-topic-teaser-container .hero-image, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .hero-image, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .hero-image, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .hero-image, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .hero-image,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .hero-image, .node--type-systematic-evidence-review .publicationsBlock > .view-content .hero-image,
  .node--type-systematic-evidence-review .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .hero-image, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .hero-image, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .hero-image, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .hero-image,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .hero-image,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .hero-image, .node--type-systematic-evidence-review .rtFlexContainer .hero-image, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .hero-image, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .hero-image, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .hero-image, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .hero-image, .node--type-systematic-evidence-review .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 article.listTeaserCard .hero-image, .node--type-systematic-evidence-review .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 article.standard-teaser .hero-image,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .hero-image, .node--type-systematic-evidence-review .esi-feature-card .hero-image, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .hero-image, .node--type-systematic-evidence-review .sfa-teaser-container .hero-image, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .hero-image, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .hero-image, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .hero-image, .node--type-systematic-evidence-review .field--name-field-career-stages .hero-image, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .hero-image, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .hero-image, .node--type-systematic-evidence-review .news-and-events-titleblock .hero-image, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .hero-image, .node--type-systematic-evidence-review .leadership-container .hero-image, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review .branch-leadership-container .hero-image, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .hero-image, .node--type-systematic-evidence-review .objective-text-container .hero-image, .node--type-systematic-evidence-review .objective-list-container .hero-image, .node--type-systematic-evidence-review .field--name-field-goal-card .hero-image, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .hero-image, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .hero-image, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .hero-image, .node--type-systematic-evidence-review .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 article .hero-image,
  .node--type-systematic-evidence-review .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 article .hero-image, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .hero-image, .node--type-systematic-evidence-review .field--name-field-awards .hero-image, .node--type-systematic-evidence-review .registerSocialContainer .hero-image, .node--type-systematic-evidence-review .eventdatesLocationType .hero-image, .node--type-systematic-evidence-review .news-article-container .hero-image, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .hero-image, .node--type-systematic-evidence-review .news-header-container .hero-image, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .hero-image, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .hero-image, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .hero-image, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .hero-image, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .hero-image, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .hero-image, .node--type-systematic-evidence-review .homepage-health-topics-container .hero-image, .node--type-systematic-evidence-review .homepage-mission-areas-container .hero-image, .node--type-systematic-evidence-review .homepage-location-container .hero-image, .node--type-systematic-evidence-review .field--name-field-alumni .hero-image, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .hero-image,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .hero-image, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .hero-image, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .hero-image,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .hero-image,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemImage,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImage,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImage,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImage,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImage,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImage,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImage,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImage,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImage,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImage,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImage,
  .node--type-clinical-practice-guideline .locationMap .flexItemImage,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImage,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImage,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImage,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImage,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImage,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImage,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImage,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImage,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImage,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImage,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImage,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImage,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImage,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImage,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImage,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImage,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImage,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImage,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImage,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemImage,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImage,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImage,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImage,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImage,
  .node--type-clinical-practice-guideline .leadership-container .flexItemImage,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImage,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImage,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImage,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemImage,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImage,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImage,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImage,
  .node--type-clinical-practice-guideline .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 article .flexItemImage,
  .node--type-clinical-practice-guideline .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 article .flexItemImage,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemImage,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemImage,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImage,
  .node--type-clinical-practice-guideline .news-article-container .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImage,
  .node--type-clinical-practice-guideline .news-header-container .flexItemImage,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImage,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImage,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImage,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImage,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImage,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImage,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemImage,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImage,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImage,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImage,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageHalf,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageHalf,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageHalf,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageHalf,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageHalf,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageHalf,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageHalf,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .locationMap .flexItemImageHalf,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageHalf,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageHalf,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageHalf,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageHalf,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageHalf,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageHalf,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageHalf,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageHalf,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageHalf,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageHalf,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageHalf,
  .node--type-clinical-practice-guideline .leadership-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageHalf,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageHalf,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageHalf,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 article .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 article .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageHalf,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageHalf,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageHalf,
  .node--type-clinical-practice-guideline .news-article-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageHalf,
  .node--type-clinical-practice-guideline .news-header-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageHalf,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageHalf,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageHalf,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageHalf,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageHalf,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageTenth,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageTenth,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageTenth,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageTenth,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageTenth,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageTenth,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageTenth,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .locationMap .flexItemImageTenth,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageTenth,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageTenth,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageTenth,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageTenth,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageTenth,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageTenth,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageTenth,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageTenth,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageTenth,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageTenth,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageTenth,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageTenth,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageTenth,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageTenth,
  .node--type-clinical-practice-guideline .leadership-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageTenth,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageTenth,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageTenth,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageTenth,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 article .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 article .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageTenth,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageTenth,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageTenth,
  .node--type-clinical-practice-guideline .news-article-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageTenth,
  .node--type-clinical-practice-guideline .news-header-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageTenth,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageTenth,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageTenth,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageTenth,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageTenth,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemImageThird,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageThird,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageThird,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageThird,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageThird,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThird,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageThird,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageThird,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageThird,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .locationMap .flexItemImageThird,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageThird,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageThird,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageThird,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageThird,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageThird,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageThird,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageThird,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThird,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageThird,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThird,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageThird,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageThird,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageThird,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageThird,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageThird,
  .node--type-clinical-practice-guideline .leadership-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThird,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageThird,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageThird,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageThird,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 article .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 article .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageThird,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageThird,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageThird,
  .node--type-clinical-practice-guideline .news-article-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThird,
  .node--type-clinical-practice-guideline .news-header-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageThird,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageThird,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageThird,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageThird,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThird,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemImageThirdHalf,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .locationMap .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemImageThirdHalf,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemImageThirdHalf,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemImageThirdHalf,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemImageThirdHalf,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .leadership-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemImageThirdHalf,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .news-article-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .news-header-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemImageThirdHalf,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemImageThirdHalf,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemImageThirdHalf,
  .node--type-clinical-practice-guideline .flexcontainer .hero-image,
  .node--type-clinical-practice-guideline .related-ht-ser-container .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-speaker .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .hero-image,
  .node--type-clinical-practice-guideline .standard-card-field .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .hero-image,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .hero-image,
  .node--type-clinical-practice-guideline .all-grants-foa-container .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .hero-image,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .hero-image,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .hero-image,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .hero-image,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .hero-image,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .hero-image,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .hero-image,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .hero-image,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .hero-image,
  .node--type-clinical-practice-guideline .locationMap .hero-image,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-division-card .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .hero-image,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .hero-image,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .hero-image,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-section-card .hero-image,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .hero-image,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .hero-image,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .hero-image,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .hero-image,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .hero-image,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .hero-image,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .hero-image,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .hero-image,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .hero-image,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .hero-image,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .hero-image,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .hero-image,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .hero-image,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .hero-image,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .hero-image,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .hero-image,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .hero-image,
  .node--type-clinical-practice-guideline .rtFlexContainer .hero-image,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .hero-image,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .hero-image,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .hero-image,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .hero-image,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .hero-image,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .hero-image,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .hero-image,
  .node--type-clinical-practice-guideline .esi-feature-card .hero-image,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .hero-image,
  .node--type-clinical-practice-guideline .sfa-teaser-container .hero-image,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .hero-image,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .hero-image,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .hero-image,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .hero-image,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .hero-image,
  .node--type-clinical-practice-guideline .leadership-container .hero-image,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .hero-image,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .hero-image,
  .node--type-clinical-practice-guideline .branch-leadership-container .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .hero-image,
  .node--type-clinical-practice-guideline .objective-text-container .hero-image,
  .node--type-clinical-practice-guideline .objective-list-container .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .hero-image,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .hero-image,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .hero-image,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .hero-image,
  .node--type-clinical-practice-guideline .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 article .hero-image,
  .node--type-clinical-practice-guideline .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 article .hero-image,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-awards .hero-image,
  .node--type-clinical-practice-guideline .registerSocialContainer .hero-image,
  .node--type-clinical-practice-guideline .eventdatesLocationType .hero-image,
  .node--type-clinical-practice-guideline .news-article-container .hero-image,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .hero-image,
  .node--type-clinical-practice-guideline .news-header-container .hero-image,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .hero-image,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .hero-image,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .hero-image,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .hero-image,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .hero-image,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .hero-image,
  .node--type-clinical-practice-guideline .homepage-location-container .hero-image,
  .node--type-clinical-practice-guideline .field--name-field-alumni .hero-image,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .hero-image,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .hero-image,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .hero-image,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .hero-image {
    width: auto;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
/* line 49, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .flexcontainer .flexItemText, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText, .node--type-systematic-evidence-review .standard-card-field .flexItemText, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText, .node--type-systematic-evidence-review .locationMap .flexItemText, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemText, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemText, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemText, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemText,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemText, .node--type-systematic-evidence-review .esi-feature-card .flexItemText, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review .leadership-container .flexItemText, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review .objective-text-container .flexItemText, .node--type-systematic-evidence-review .objective-list-container .flexItemText, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText, .node--type-systematic-evidence-review .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 article .flexItemText,
.node--type-systematic-evidence-review .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 article .flexItemText, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText, .node--type-systematic-evidence-review .news-article-container .flexItemText, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-systematic-evidence-review .news-header-container .flexItemText, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText, .node--type-systematic-evidence-review .homepage-location-container .flexItemText, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText,
.node--type-clinical-practice-guideline .flexcontainer .flexItemText,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText,
.node--type-clinical-practice-guideline .standard-card-field .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText,
.node--type-clinical-practice-guideline .locationMap .flexItemText,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemText,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemText,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemText,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemText,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemText,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemText,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemText,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemText,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText,
.node--type-clinical-practice-guideline .leadership-container .flexItemText,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemText,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText,
.node--type-clinical-practice-guideline .objective-text-container .flexItemText,
.node--type-clinical-practice-guideline .objective-list-container .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText,
.node--type-clinical-practice-guideline .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 article .flexItemText,
.node--type-clinical-practice-guideline .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 article .flexItemText,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemText,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemText,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText,
.node--type-clinical-practice-guideline .news-article-container .flexItemText,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
.node--type-clinical-practice-guideline .news-header-container .flexItemText,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemText,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  padding-top: 0;
}
/* line 52, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .flexcontainer .flexItemText .herobannertitle, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText .herobannertitle, .node--type-systematic-evidence-review .standard-card-field .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText .herobannertitle, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText .herobannertitle, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText .herobannertitle, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText .herobannertitle, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .locationMap .flexItemText .herobannertitle, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText .herobannertitle, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .herobannertitle, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText .herobannertitle, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText .herobannertitle, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemText .herobannertitle, .node--type-systematic-evidence-review .esi-feature-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText .herobannertitle, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle, .node--type-systematic-evidence-review .leadership-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemText .herobannertitle, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .herobannertitle, .node--type-systematic-evidence-review .objective-text-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .objective-list-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText .herobannertitle, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText .herobannertitle, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 article .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 article .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText .herobannertitle, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText .herobannertitle, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText .herobannertitle, .node--type-systematic-evidence-review .news-article-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle, .node--type-systematic-evidence-review .news-header-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText .herobannertitle, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText .herobannertitle, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText .herobannertitle, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .homepage-location-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .herobannertitle, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle, .node--type-systematic-evidence-review .flexcontainer .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .standard-card-field .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .locationMap .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .herobannertitle-grey, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle-grey, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .esi-feature-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .leadership-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .objective-text-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .objective-list-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 article .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 article .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .news-article-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .news-header-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .homepage-location-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle-grey, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle-grey,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .flexcontainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .standard-card-field .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText .herobannertitle,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .locationMap .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .leadership-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .herobannertitle,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .objective-text-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .objective-list-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText .herobannertitle,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .news-article-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .news-header-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText .herobannertitle,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle,
.node--type-clinical-practice-guideline .flexcontainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .standard-card-field .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText .herobannertitle-grey,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .locationMap .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-health-consumer-nhlbi-publ .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .herobannertitle-grey,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText .herobannertitle-grey,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText .herobannertitle-grey,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText .herobannertitle-grey,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText .herobannertitle-grey,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .leadership-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .objective-text-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .objective-list-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText .herobannertitle-grey,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .news-article-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .news-header-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText .herobannertitle-grey,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle-grey,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .herobannertitle-grey,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText .herobannertitle-grey {
  color: #575b5e;
}
/* line 55, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .flexcontainer .flexItemText .ser-greydate, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText .ser-greydate, .node--type-systematic-evidence-review .standard-card-field .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText .ser-greydate, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText .ser-greydate, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText .ser-greydate, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-division.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-division.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-branch.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-branch.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-general.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-general.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText .ser-greydate, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText .ser-greydate, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText .ser-greydate, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText .ser-greydate, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .locationMap .flexItemText .ser-greydate, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText .ser-greydate, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText .ser-greydate, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText .ser-greydate, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText .ser-greydate, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText .ser-greydate, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .ser-greydate, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemText .ser-greydate, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .ser-greydate, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .ser-greydate,
.nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemText .ser-greydate, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .ser-greydate, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .ser-greydate,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText .ser-greydate, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .ser-greydate, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText .ser-greydate, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText .ser-greydate, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText .ser-greydate, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText .ser-greydate,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText .ser-greydate,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText .ser-greydate, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .ser-greydate, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText .ser-greydate, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .ser-greydate, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review article.listTeaserCard .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .ser-greydate, .node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review article.standard-teaser .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .ser-greydate,
.node--type-research-topic .field--name-field-content > .field__item .node--type-systematic-evidence-review article.newsEventsCard .flexItemText .ser-greydate, .node--type-systematic-evidence-review .esi-feature-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText .ser-greydate, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText .ser-greydate, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText .ser-greydate, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText .ser-greydate, .node--type-systematic-evidence-review .leadership-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .ser-greydate, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemText .ser-greydate, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .ser-greydate, .branch-leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemText .ser-greydate, .node--type-systematic-evidence-review .objective-text-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .objective-list-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText .ser-greydate, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText .ser-greydate, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .ser-greydate, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-systematic-evidence-review article .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .ser-greydate,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-systematic-evidence-review article .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .ser-greydate, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-systematic-evidence-review .standard-teaser.node--view-mode-short-teaser .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText .ser-greydate, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText .ser-greydate, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText .ser-greydate, .node--type-systematic-evidence-review .news-article-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .ser-greydate, .node--type-systematic-evidence-review .news-header-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText .ser-greydate, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText .ser-greydate, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText .ser-greydate, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText .ser-greydate, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .homepage-location-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .ser-greydate, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review .nhlbi-publication-details-container .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review .nhlbi-publication-details-container .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate, .node--type-nhlbi-publication.node--view-mode-full .node--type-systematic-evidence-review .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-systematic-evidence-review .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .ser-greydate, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText .ser-greydate,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .flexcontainer .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .standard-card-field .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-division.node--view-mode-full .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-division.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-division.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-division.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-branch.node--view-mode-full .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-branch.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-branch.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-branch.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-general.node--view-mode-full .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-general.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-general.node--view-mode-subscribe .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-general.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText .ser-greydate,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText .ser-greydate,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .locationMap .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText .ser-greydate,
.about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText .ser-greydate,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText .ser-greydate,
.nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .ser-greydate,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .ser-greydate,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText .ser-greydate,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText .ser-greydate,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText .ser-greydate,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText .ser-greydate,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .ser-greydate,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText .ser-greydate,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexItemText .ser-greydate,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline article.listTeaserCard .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-content > .field__item article.standard-teaser .flexItemText .ser-greydate,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline article.standard-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-content > .field__item article.newsEventsCard .flexItemText .ser-greydate,
.node--type-research-topic .field--name-field-content > .field__item .node--type-clinical-practice-guideline article.newsEventsCard .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText .ser-greydate,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .leadership-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .ser-greydate,
.leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText .ser-greydate,
.branch-leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .objective-text-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .objective-list-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText .ser-greydate,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content article .flexItemText .ser-greydate,
.node--type-principal-investigator .views-element-container > .view-nhlbi-research-update .view-content .node--type-clinical-practice-guideline article .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content article .flexItemText .ser-greydate,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news .view-content .node--type-clinical-practice-guideline article .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser .flexItemText .ser-greydate,
.node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .node--type-clinical-practice-guideline .standard-teaser.node--view-mode-short-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .news-article-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .news-header-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText .ser-greydate,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText .ser-greydate,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .nhlbi-publication-details-container .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline .nhlbi-publication-details-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .nhlbi-publication-details-container .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline .nhlbi-publication-details-container .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-full .node--type-clinical-practice-guideline .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-subscribe .node--type-clinical-practice-guideline .field--name-field-related-nhlbi-publications .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText .ser-greydate,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText .ser-greydate,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText .ser-greydate {
  font-size: 12px;
}
/* line 58, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .flexcontainer .flexItemText .file-download-button, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText .file-download-button,
.node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText .file-download-button,
.node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText .file-download-button, .node--type-systematic-evidence-review .standard-card-field .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText .file-download-button, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText .file-download-button, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText .file-download-button,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText .file-download-button, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText .file-download-button, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText .file-download-button, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText .file-download-button, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .locationMap .flexItemText .file-download-button, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText .file-download-button, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText .file-download-button, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .file-download-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText .file-download-button,
.node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText .file-download-button, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText .file-download-button, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText .file-download-button, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText .file-download-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText .file-download-button,
.clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText .file-download-button,
.node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText .file-download-button,
.publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText .file-download-button, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .file-download-button, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText .file-download-button, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemText .file-download-button, .node--type-systematic-evidence-review .esi-feature-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText .file-download-button, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText .file-download-button, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText .file-download-button, .node--type-systematic-evidence-review .leadership-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .file-download-button, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .file-download-button, .node--type-systematic-evidence-review .objective-text-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .objective-list-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText .file-download-button, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText .file-download-button, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 article .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 article .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText .file-download-button, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText .file-download-button, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText .file-download-button, .node--type-systematic-evidence-review .news-article-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button, .node--type-systematic-evidence-review .news-header-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText .file-download-button, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText .file-download-button, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText .file-download-button, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText .file-download-button, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .homepage-location-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .file-download-button, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .file-download-button, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .file-download-button,
.node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .flexcontainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .standard-card-field .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText .file-download-button,
.node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText .file-download-button,
.news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .locationMap .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-leadership > .director-bioCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-health-consumer-nhlbi-publ .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-health-professionals-nhlbi .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .file-download-button,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText .file-download-button,
.healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText .file-download-button,
.systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText .file-download-button,
.clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText .file-download-button,
.publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .rtFlexContainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText .file-download-button,
.node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .esi-feature-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText .file-download-button,
.training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .leadership-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .branch-leadership-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .objective-text-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .objective-list-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText .file-download-button,
.node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-awards .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .registerSocialContainer .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .news-article-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .news-header-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText .file-download-button,
.contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText .file-download-button,
.publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .homepage-location-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .file-download-button,
.node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .file-download-button {
  margin-top: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 61, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .flexcontainer .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .standard-card-field .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText .desktop-and-tablet-button, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText .desktop-and-tablet-button, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .locationMap .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .desktop-and-tablet-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText .desktop-and-tablet-button, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText .desktop-and-tablet-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText .desktop-and-tablet-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText .desktop-and-tablet-button, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .esi-feature-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText .desktop-and-tablet-button, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .leadership-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .objective-text-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .objective-list-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText .desktop-and-tablet-button, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 article .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 article .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .news-article-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .news-header-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText .desktop-and-tablet-button, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .homepage-location-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .desktop-and-tablet-button,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText .desktop-and-tablet-button,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .locationMap .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-leadership > .director-bioCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-health-consumer-nhlbi-publ .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-health-professionals-nhlbi .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText .desktop-and-tablet-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText .desktop-and-tablet-button,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText .desktop-and-tablet-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText .desktop-and-tablet-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .news-article-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .news-header-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .desktop-and-tablet-button,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .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 article .flexItemText .desktop-and-tablet-button {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 49, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .flexcontainer .flexItemText, .node--type-systematic-evidence-review .related-ht-ser-container .flexItemText, .node--type-systematic-evidence-review .field--name-field-sfa-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-speaker .flexItemText,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .flexItemText,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .flexItemText, .node--type-systematic-evidence-review .standard-card-field .flexItemText, .node--type-systematic-evidence-review .field--name-field-advisory-committees .flexItemText, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .flexItemText, .node--type-systematic-evidence-review .field--name-field-contact-cards .flexItemText, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .flexItemText, .node--type-systematic-evidence-review .all-grants-foa-container .flexItemText,
  .node--type-systematic-evidence-review .field--name-field-program-officers .flexItemText,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .flexItemText, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .flexItemText, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .flexItemText, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .flexItemText, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .flexItemText, .node--type-systematic-evidence-review .field--name-field-sfa-cards .flexItemText, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .flexItemText, .node--type-systematic-evidence-review .locationMap .flexItemText, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .flexItemText, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .flexItemText, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-division-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-promotional-card .flexItemText, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .flexItemText, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .flexItemText, .node--type-systematic-evidence-review .strategic-vision-titleblock .flexItemText, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .flexItemText, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .flexItemText, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .flexItemText, .node--type-systematic-evidence-review .field--name-field-section-card .flexItemText, .node--type-systematic-evidence-review .health-topic-teaser-container .flexItemText, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .flexItemText, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .flexItemText, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .flexItemText, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .flexItemText,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .flexItemText, .node--type-systematic-evidence-review .publicationsBlock > .view-content .flexItemText,
  .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .flexItemText, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .flexItemText, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .flexItemText, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .flexItemText,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .flexItemText,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .flexItemText, .node--type-systematic-evidence-review .rtFlexContainer .flexItemText, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .flexItemText, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .flexItemText, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .flexItemText, .node--type-systematic-evidence-review .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 article.listTeaserCard .flexItemText, .node--type-systematic-evidence-review .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 article.standard-teaser .flexItemText,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .flexItemText, .node--type-systematic-evidence-review .esi-feature-card .flexItemText, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .flexItemText, .node--type-systematic-evidence-review .sfa-teaser-container .flexItemText, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .flexItemText, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .flexItemText, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .flexItemText, .node--type-systematic-evidence-review .field--name-field-career-stages .flexItemText, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .flexItemText, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .flexItemText, .node--type-systematic-evidence-review .news-and-events-titleblock .flexItemText, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .flexItemText, .node--type-systematic-evidence-review .leadership-container .flexItemText, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review .branch-leadership-container .flexItemText, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .flexItemText, .node--type-systematic-evidence-review .objective-text-container .flexItemText, .node--type-systematic-evidence-review .objective-list-container .flexItemText, .node--type-systematic-evidence-review .field--name-field-goal-card .flexItemText, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .flexItemText, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .flexItemText, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .flexItemText, .node--type-systematic-evidence-review .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 article .flexItemText,
  .node--type-systematic-evidence-review .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 article .flexItemText, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .flexItemText, .node--type-systematic-evidence-review .field--name-field-awards .flexItemText, .node--type-systematic-evidence-review .registerSocialContainer .flexItemText, .node--type-systematic-evidence-review .eventdatesLocationType .flexItemText, .node--type-systematic-evidence-review .news-article-container .flexItemText, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText, .node--type-systematic-evidence-review .news-header-container .flexItemText, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .flexItemText, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .flexItemText, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .flexItemText, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .flexItemText, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .flexItemText, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .flexItemText, .node--type-systematic-evidence-review .homepage-health-topics-container .flexItemText, .node--type-systematic-evidence-review .homepage-mission-areas-container .flexItemText, .node--type-systematic-evidence-review .homepage-location-container .flexItemText, .node--type-systematic-evidence-review .field--name-field-alumni .flexItemText, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .flexItemText, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .flexItemText, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .flexItemText,
  .node--type-clinical-practice-guideline .flexcontainer .flexItemText,
  .node--type-clinical-practice-guideline .related-ht-ser-container .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-speaker .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .flexItemText,
  .node--type-clinical-practice-guideline .standard-card-field .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .flexItemText,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .flexItemText,
  .node--type-clinical-practice-guideline .all-grants-foa-container .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .flexItemText,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .flexItemText,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .flexItemText,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .flexItemText,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .flexItemText,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .flexItemText,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .flexItemText,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .flexItemText,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .flexItemText,
  .node--type-clinical-practice-guideline .locationMap .flexItemText,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-division-card .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .flexItemText,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .flexItemText,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .flexItemText,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-section-card .flexItemText,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .flexItemText,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .flexItemText,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .flexItemText,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .flexItemText,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .flexItemText,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .flexItemText,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .flexItemText,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .flexItemText,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .flexItemText,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .flexItemText,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .flexItemText,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .flexItemText,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .flexItemText,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .flexItemText,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .flexItemText,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .flexItemText,
  .node--type-clinical-practice-guideline .rtFlexContainer .flexItemText,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .flexItemText,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .flexItemText,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .flexItemText,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .flexItemText,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .flexItemText,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .flexItemText,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .flexItemText,
  .node--type-clinical-practice-guideline .esi-feature-card .flexItemText,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline .sfa-teaser-container .flexItemText,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .flexItemText,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .flexItemText,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .flexItemText,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .flexItemText,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .flexItemText,
  .node--type-clinical-practice-guideline .leadership-container .flexItemText,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .flexItemText,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .flexItemText,
  .node--type-clinical-practice-guideline .branch-leadership-container .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .flexItemText,
  .node--type-clinical-practice-guideline .objective-text-container .flexItemText,
  .node--type-clinical-practice-guideline .objective-list-container .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .flexItemText,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .flexItemText,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .flexItemText,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .flexItemText,
  .node--type-clinical-practice-guideline .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 article .flexItemText,
  .node--type-clinical-practice-guideline .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 article .flexItemText,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-awards .flexItemText,
  .node--type-clinical-practice-guideline .registerSocialContainer .flexItemText,
  .node--type-clinical-practice-guideline .eventdatesLocationType .flexItemText,
  .node--type-clinical-practice-guideline .news-article-container .flexItemText,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .flexItemText,
  .node--type-clinical-practice-guideline .news-header-container .flexItemText,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .flexItemText,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .flexItemText,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .flexItemText,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .flexItemText,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .flexItemText,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .flexItemText,
  .node--type-clinical-practice-guideline .homepage-location-container .flexItemText,
  .node--type-clinical-practice-guideline .field--name-field-alumni .flexItemText,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .flexItemText,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .flexItemText {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (min-width: 768px) {
  /* line 71, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .flexcontainer .phone-button, .node--type-systematic-evidence-review .related-ht-ser-container .phone-button, .node--type-systematic-evidence-review .field--name-field-sfa-card .phone-button, .node--type-systematic-evidence-review .field--name-field-speaker .phone-button,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .phone-button,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .phone-button, .node--type-systematic-evidence-review .standard-card-field .phone-button, .node--type-systematic-evidence-review .field--name-field-advisory-committees .phone-button, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .phone-button, .node--type-systematic-evidence-review .field--name-field-contact-cards .phone-button, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .phone-button, .node--type-systematic-evidence-review .all-grants-foa-container .phone-button,
  .node--type-systematic-evidence-review .field--name-field-program-officers .phone-button,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .phone-button, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .phone-button, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .phone-button, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .phone-button, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .phone-button, .node--type-systematic-evidence-review .field--name-field-sfa-cards .phone-button, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .phone-button, .node--type-systematic-evidence-review .locationMap .phone-button, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .phone-button, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .phone-button, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .phone-button, .node--type-systematic-evidence-review .field--name-field-division-card .phone-button, .node--type-systematic-evidence-review .field--name-field-promotional-card .phone-button, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .phone-button, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .phone-button, .node--type-systematic-evidence-review .strategic-vision-titleblock .phone-button, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .phone-button, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .phone-button, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .phone-button, .node--type-systematic-evidence-review .field--name-field-section-card .phone-button, .node--type-systematic-evidence-review .health-topic-teaser-container .phone-button, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .phone-button, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .phone-button, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .phone-button, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .phone-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .phone-button,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .phone-button, .node--type-systematic-evidence-review .publicationsBlock > .view-content .phone-button,
  .node--type-systematic-evidence-review .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .phone-button, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .phone-button, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .phone-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .phone-button,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .phone-button,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .phone-button, .node--type-systematic-evidence-review .rtFlexContainer .phone-button, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .phone-button, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .phone-button, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .phone-button, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .phone-button, .node--type-systematic-evidence-review .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 article.listTeaserCard .phone-button, .node--type-systematic-evidence-review .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 article.standard-teaser .phone-button,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .phone-button, .node--type-systematic-evidence-review .esi-feature-card .phone-button, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .phone-button, .node--type-systematic-evidence-review .sfa-teaser-container .phone-button, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .phone-button, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .phone-button, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .phone-button, .node--type-systematic-evidence-review .field--name-field-career-stages .phone-button, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .phone-button, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .phone-button, .node--type-systematic-evidence-review .news-and-events-titleblock .phone-button, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review .leadership-container .phone-button, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review .branch-leadership-container .phone-button, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review .objective-text-container .phone-button, .node--type-systematic-evidence-review .objective-list-container .phone-button, .node--type-systematic-evidence-review .field--name-field-goal-card .phone-button, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .phone-button, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .phone-button, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .phone-button, .node--type-systematic-evidence-review .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 article .phone-button,
  .node--type-systematic-evidence-review .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 article .phone-button, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .phone-button, .node--type-systematic-evidence-review .field--name-field-awards .phone-button, .node--type-systematic-evidence-review .registerSocialContainer .phone-button, .node--type-systematic-evidence-review .eventdatesLocationType .phone-button, .node--type-systematic-evidence-review .news-article-container .phone-button, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .phone-button, .node--type-systematic-evidence-review .news-header-container .phone-button, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .phone-button, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .phone-button, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .phone-button, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .phone-button, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .phone-button, .node--type-systematic-evidence-review .homepage-health-topics-container .phone-button, .node--type-systematic-evidence-review .homepage-mission-areas-container .phone-button, .node--type-systematic-evidence-review .homepage-location-container .phone-button, .node--type-systematic-evidence-review .field--name-field-alumni .phone-button, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .phone-button, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .phone-button, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .phone-button, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .phone-button,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .phone-button,
  .node--type-clinical-practice-guideline .flexcontainer .phone-button,
  .node--type-clinical-practice-guideline .related-ht-ser-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-speaker .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .phone-button,
  .node--type-clinical-practice-guideline .standard-card-field .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .phone-button,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .phone-button,
  .node--type-clinical-practice-guideline .all-grants-foa-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .phone-button,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .phone-button,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .phone-button,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .phone-button,
  .node--type-clinical-practice-guideline .locationMap .phone-button,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-division-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .phone-button,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .phone-button,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-section-card .phone-button,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .phone-button,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .phone-button,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .phone-button,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .phone-button,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .phone-button,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .phone-button,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .phone-button,
  .node--type-clinical-practice-guideline .rtFlexContainer .phone-button,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .phone-button,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .phone-button,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .phone-button,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .phone-button,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .phone-button,
  .node--type-clinical-practice-guideline .esi-feature-card .phone-button,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .phone-button,
  .node--type-clinical-practice-guideline .sfa-teaser-container .phone-button,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .phone-button,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .phone-button,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .leadership-container .phone-button,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline .branch-leadership-container .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline .objective-text-container .phone-button,
  .node--type-clinical-practice-guideline .objective-list-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .phone-button,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .phone-button,
  .node--type-clinical-practice-guideline .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 article .phone-button,
  .node--type-clinical-practice-guideline .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 article .phone-button,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-awards .phone-button,
  .node--type-clinical-practice-guideline .registerSocialContainer .phone-button,
  .node--type-clinical-practice-guideline .eventdatesLocationType .phone-button,
  .node--type-clinical-practice-guideline .news-article-container .phone-button,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .news-header-container .phone-button,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .phone-button,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .phone-button,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .phone-button,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .phone-button,
  .node--type-clinical-practice-guideline .homepage-location-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-alumni .phone-button,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .phone-button,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .phone-button {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 71, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .flexcontainer .phone-button, .node--type-systematic-evidence-review .related-ht-ser-container .phone-button, .node--type-systematic-evidence-review .field--name-field-sfa-card .phone-button, .node--type-systematic-evidence-review .field--name-field-speaker .phone-button,
  .node--type-systematic-evidence-review .field--name-field-scientific-leadership .phone-button,
  .node--type-systematic-evidence-review .field--name-field-operations-and-administrat .phone-button, .node--type-systematic-evidence-review .standard-card-field .phone-button, .node--type-systematic-evidence-review .field--name-field-advisory-committees .phone-button, .node--type-systematic-evidence-review .contact-nhlbi-titleblock .phone-button, .node--type-systematic-evidence-review .field--name-field-contact-cards .phone-button, .node--type-systematic-evidence-review .field--name-field-employment-opportunity-car .phone-button, .node--type-systematic-evidence-review .all-grants-foa-container .phone-button,
  .node--type-systematic-evidence-review .field--name-field-program-officers .phone-button,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-systematic-evidence-review .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button, .node--type-systematic-evidence-review .node--type-individual-contact .field--name-field-contact-methods .phone-button, .node--type-individual-contact .node--type-systematic-evidence-review .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review .node--type-committee .field--name-field-card-text .phone-button, .node--type-committee .node--type-systematic-evidence-review .field--name-field-card-text .phone-button, .node--type-systematic-evidence-review .news-and-events--landing .landing-social .phone-button, .news-and-events--landing .node--type-systematic-evidence-review .landing-social .phone-button, .node--type-systematic-evidence-review .field--name-field-sfa-cards .phone-button, .node--type-systematic-evidence-review .locationMap.contact-location-map-container .phone-button, .node--type-systematic-evidence-review .locationMap .phone-button, .node--type-systematic-evidence-review .grants-and-training-card-wrapper .phone-button, .node--type-systematic-evidence-review .about-nhlbi-division-card-wrapper .phone-button, .node--type-systematic-evidence-review .field--name-field-grants-and-training-card .phone-button, .node--type-systematic-evidence-review .field--name-field-division-card .phone-button, .node--type-systematic-evidence-review .field--name-field-promotional-card .phone-button, .node--type-systematic-evidence-review .field--name-field-sv-promotional-cards .phone-button, .node--type-systematic-evidence-review .field--name-field-about-nhlbi-promotional-ca .phone-button, .node--type-systematic-evidence-review .strategic-vision-titleblock .phone-button, .node--type-systematic-evidence-review .ppg-titleblock-wrapper .phone-button, .node--type-systematic-evidence-review .ppg-guidelines-card-wrapper .phone-button, .node--type-systematic-evidence-review .field--name-field-human-subject-cards .phone-button, .node--type-systematic-evidence-review .field--name-field-section-card .phone-button, .node--type-systematic-evidence-review .health-topic-teaser-container .phone-button, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .phone-button, .node--type-systematic-evidence-review .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button, .about-nhlbi-our-mission-wrapper .node--type-systematic-evidence-review .field--name-field-leadership > .director-bioCard .phone-button, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button, .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-systematic-evidence-review .field--name-field-health-professionals-nhlbi .phone-button, .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .phone-button, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-systematic-evidence-review article .phone-button,
  .node--type-systematic-evidence-review .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-systematic-evidence-review article .phone-button, .node--type-systematic-evidence-review .publicationsBlock > .view-content .phone-button,
  .node--type-systematic-evidence-review .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review .healthEducationBlock article.node--type-heath-education .phone-button, .healthEducationBlock .node--type-systematic-evidence-review article.node--type-heath-education .phone-button, .node--type-systematic-evidence-review .systematicEvidenceReviewsBlock .view-content .phone-button, .systematicEvidenceReviewsBlock .node--type-systematic-evidence-review .view-content .phone-button,
  .node--type-systematic-evidence-review .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-systematic-evidence-review .view-content .phone-button,
  .node--type-systematic-evidence-review .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-systematic-evidence-review .view-content .phone-button, .node--type-systematic-evidence-review .rtFlexContainer .phone-button, .node--type-systematic-evidence-review .node--type-research-topic .field--name-field-science-supplemental-page .phone-button, .node--type-research-topic .node--type-systematic-evidence-review .field--name-field-science-supplemental-page .phone-button, .node--type-systematic-evidence-review .node--type-research-topic .researchTopicPublications .phone-button, .node--type-research-topic .node--type-systematic-evidence-review .researchTopicPublications .phone-button, .node--type-systematic-evidence-review .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 article.listTeaserCard .phone-button, .node--type-systematic-evidence-review .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 article.standard-teaser .phone-button,
  .node--type-systematic-evidence-review .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 article.newsEventsCard .phone-button, .node--type-systematic-evidence-review .esi-feature-card .phone-button, .node--type-systematic-evidence-review .featured-science-instance-teaser-container .phone-button, .node--type-systematic-evidence-review .sfa-teaser-container .phone-button, .node--type-systematic-evidence-review .training-opportunity-card .field--name-field-associated-people .phone-button, .training-opportunity-card .node--type-systematic-evidence-review .field--name-field-associated-people .phone-button, .node--type-systematic-evidence-review .field--name-field-featured-training-opportun .phone-button, .node--type-systematic-evidence-review .field--name-field-career-stages .phone-button, .node--type-systematic-evidence-review .field--name-field-workforce-development-card .phone-button, .node--type-systematic-evidence-review .node--type-update.node--view-mode-executive-teaser .phone-button, .node--type-systematic-evidence-review .news-and-events-titleblock .phone-button, .node--type-systematic-evidence-review .contact-box > .field--name-field-contact-methods .phone-button, .node--type-systematic-evidence-review .leadership-container .phone-button, .node--type-systematic-evidence-review .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button, .leadership-container .leadership-deputy-director-container .node--type-systematic-evidence-review .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review .branch-leadership-container .phone-button, .node--type-systematic-evidence-review .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 .field--name-field-additional-leadership .phone-button, .node--type-systematic-evidence-review .objective-text-container .phone-button, .node--type-systematic-evidence-review .objective-list-container .phone-button, .node--type-systematic-evidence-review .field--name-field-goal-card .phone-button, .node--type-systematic-evidence-review .strategic-vision-landing-goals-wrapper .phone-button, .node--type-systematic-evidence-review .node--type-principal-investigator .striped-container .phone-button, .node--type-principal-investigator .node--type-systematic-evidence-review .striped-container .phone-button, .node--type-systematic-evidence-review .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 article .phone-button,
  .node--type-systematic-evidence-review .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 article .phone-button, .node--type-systematic-evidence-review .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 .standard-teaser.node--view-mode-short-teaser .phone-button, .node--type-systematic-evidence-review .field--name-field-awards .phone-button, .node--type-systematic-evidence-review .registerSocialContainer .phone-button, .node--type-systematic-evidence-review .eventdatesLocationType .phone-button, .node--type-systematic-evidence-review .news-article-container .phone-button, .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-systematic-evidence-review .node--type-events.node--view-mode-hp-press-release-teaser .phone-button, .node--type-systematic-evidence-review .news-header-container .phone-button, .node--type-systematic-evidence-review .contacts-container .field--name-field-contacts .phone-button, .contacts-container .node--type-systematic-evidence-review .field--name-field-contacts .phone-button, .node--type-systematic-evidence-review .publicationsBox .field--name-field-related-publications .phone-button, .publicationsBox .node--type-systematic-evidence-review .field--name-field-related-publications .phone-button, .node--type-systematic-evidence-review .field--name-field-primary-featured-item .phone-button, .node--type-systematic-evidence-review .field--name-field-additional-featured-items .phone-button, .node--type-systematic-evidence-review .homepage-health-topics-container .phone-button, .node--type-systematic-evidence-review .homepage-mission-areas-container .phone-button, .node--type-systematic-evidence-review .homepage-location-container .phone-button, .node--type-systematic-evidence-review .field--name-field-alumni .phone-button, .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .phone-button,
  .node--type-systematic-evidence-review .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 .nhlbi-publication-details-container .phone-button, .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-systematic-evidence-review .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 .field--name-field-related-nhlbi-publications .phone-button, .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .phone-button, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .phone-button,
  .node--type-systematic-evidence-review .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-systematic-evidence-review article .phone-button,
  .node--type-clinical-practice-guideline .flexcontainer .phone-button,
  .node--type-clinical-practice-guideline .related-ht-ser-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-sfa-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-speaker .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-scientific-leadership .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-operations-and-administrat .phone-button,
  .node--type-clinical-practice-guideline .standard-card-field .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-advisory-committees .phone-button,
  .node--type-clinical-practice-guideline .contact-nhlbi-titleblock .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-contact-cards .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-employment-opportunity-car .phone-button,
  .node--type-clinical-practice-guideline .all-grants-foa-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-program-officers .phone-button,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_2 > .view-content .phone-button,
  .node--type-clinical-practice-guideline .view-id-nhlbi_grants_foa.view-display-id-block_3 > .view-content .phone-button,
  .node--type-clinical-practice-guideline .node--type-individual-contact .field--name-field-contact-methods .phone-button,
  .node--type-individual-contact .node--type-clinical-practice-guideline .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .node--type-committee .field--name-field-card-text .phone-button,
  .node--type-committee .node--type-clinical-practice-guideline .field--name-field-card-text .phone-button,
  .node--type-clinical-practice-guideline .news-and-events--landing .landing-social .phone-button,
  .news-and-events--landing .node--type-clinical-practice-guideline .landing-social .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-sfa-cards .phone-button,
  .node--type-clinical-practice-guideline .locationMap.contact-location-map-container .phone-button,
  .node--type-clinical-practice-guideline .locationMap .phone-button,
  .node--type-clinical-practice-guideline .grants-and-training-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline .about-nhlbi-division-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-grants-and-training-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-division-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-promotional-card .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-sv-promotional-cards .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-about-nhlbi-promotional-ca .phone-button,
  .node--type-clinical-practice-guideline .strategic-vision-titleblock .phone-button,
  .node--type-clinical-practice-guideline .ppg-titleblock-wrapper .phone-button,
  .node--type-clinical-practice-guideline .ppg-guidelines-card-wrapper .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-human-subject-cards .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-section-card .phone-button,
  .node--type-clinical-practice-guideline .health-topic-teaser-container .phone-button,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .phone-button,
  .node--type-clinical-practice-guideline .about-nhlbi-our-mission-wrapper .field--name-field-leadership > .director-bioCard .phone-button,
  .about-nhlbi-our-mission-wrapper .node--type-clinical-practice-guideline .field--name-field-leadership > .director-bioCard .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-consumer-nhlbi-publ .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi .phone-button,
  .nhlbi-publications-and-resources--landing .node--type-clinical-practice-guideline .field--name-field-health-professionals-nhlbi .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item article .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-clinical-practice-guideline article .phone-button,
  .node--type-clinical-practice-guideline .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article .phone-button,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-clinical-practice-guideline article .phone-button,
  .node--type-clinical-practice-guideline .publicationsBlock > .view-content .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline .healthEducationBlock article.node--type-heath-education .phone-button,
  .healthEducationBlock .node--type-clinical-practice-guideline article.node--type-heath-education .phone-button,
  .node--type-clinical-practice-guideline .systematicEvidenceReviewsBlock .view-content .phone-button,
  .systematicEvidenceReviewsBlock .node--type-clinical-practice-guideline .view-content .phone-button,
  .node--type-clinical-practice-guideline .clinicalPracticeGuidelinesBlock .view-content .phone-button,
  .clinicalPracticeGuidelinesBlock .node--type-clinical-practice-guideline .view-content .phone-button,
  .node--type-clinical-practice-guideline .publicationsAndFactSheetsBlock .view-content .phone-button,
  .publicationsAndFactSheetsBlock .node--type-clinical-practice-guideline .view-content .phone-button,
  .node--type-clinical-practice-guideline .rtFlexContainer .phone-button,
  .node--type-clinical-practice-guideline .node--type-research-topic .field--name-field-science-supplemental-page .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline .field--name-field-science-supplemental-page .phone-button,
  .node--type-clinical-practice-guideline .node--type-research-topic .researchTopicPublications .phone-button,
  .node--type-research-topic .node--type-clinical-practice-guideline .researchTopicPublications .phone-button,
  .node--type-clinical-practice-guideline .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 article.listTeaserCard .phone-button,
  .node--type-clinical-practice-guideline .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 article.standard-teaser .phone-button,
  .node--type-clinical-practice-guideline .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 article.newsEventsCard .phone-button,
  .node--type-clinical-practice-guideline .esi-feature-card .phone-button,
  .node--type-clinical-practice-guideline .featured-science-instance-teaser-container .phone-button,
  .node--type-clinical-practice-guideline .sfa-teaser-container .phone-button,
  .node--type-clinical-practice-guideline .training-opportunity-card .field--name-field-associated-people .phone-button,
  .training-opportunity-card .node--type-clinical-practice-guideline .field--name-field-associated-people .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-featured-training-opportun .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-career-stages .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-workforce-development-card .phone-button,
  .node--type-clinical-practice-guideline .node--type-update.node--view-mode-executive-teaser .phone-button,
  .node--type-clinical-practice-guideline .news-and-events-titleblock .phone-button,
  .node--type-clinical-practice-guideline .contact-box > .field--name-field-contact-methods .phone-button,
  .node--type-clinical-practice-guideline .leadership-container .phone-button,
  .node--type-clinical-practice-guideline .leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership .phone-button,
  .leadership-container .leadership-deputy-director-container .node--type-clinical-practice-guideline .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline .branch-leadership-container .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-additional-leadership .phone-button,
  .node--type-clinical-practice-guideline .objective-text-container .phone-button,
  .node--type-clinical-practice-guideline .objective-list-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-goal-card .phone-button,
  .node--type-clinical-practice-guideline .strategic-vision-landing-goals-wrapper .phone-button,
  .node--type-clinical-practice-guideline .node--type-principal-investigator .striped-container .phone-button,
  .node--type-principal-investigator .node--type-clinical-practice-guideline .striped-container .phone-button,
  .node--type-clinical-practice-guideline .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 article .phone-button,
  .node--type-clinical-practice-guideline .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 article .phone-button,
  .node--type-clinical-practice-guideline .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 .standard-teaser.node--view-mode-short-teaser .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-awards .phone-button,
  .node--type-clinical-practice-guideline .registerSocialContainer .phone-button,
  .node--type-clinical-practice-guideline .eventdatesLocationType .phone-button,
  .node--type-clinical-practice-guideline .news-article-container .phone-button,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-feature-article.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-press-release.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .node--type-events.node--view-mode-hp-press-release-teaser .phone-button,
  .node--type-clinical-practice-guideline .news-header-container .phone-button,
  .node--type-clinical-practice-guideline .contacts-container .field--name-field-contacts .phone-button,
  .contacts-container .node--type-clinical-practice-guideline .field--name-field-contacts .phone-button,
  .node--type-clinical-practice-guideline .publicationsBox .field--name-field-related-publications .phone-button,
  .publicationsBox .node--type-clinical-practice-guideline .field--name-field-related-publications .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-primary-featured-item .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-additional-featured-items .phone-button,
  .node--type-clinical-practice-guideline .homepage-health-topics-container .phone-button,
  .node--type-clinical-practice-guideline .homepage-mission-areas-container .phone-button,
  .node--type-clinical-practice-guideline .homepage-location-container .phone-button,
  .node--type-clinical-practice-guideline .field--name-field-alumni .phone-button,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline .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 .nhlbi-publication-details-container .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline .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 .field--name-field-related-nhlbi-publications .phone-button,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .phone-button,
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .phone-button,
  .node--type-clinical-practice-guideline .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .phone-button,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-clinical-practice-guideline article .phone-button {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: block;
  }
}
/* line 83, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .darkBlueBackground h3,
.node--type-clinical-practice-guideline .darkBlueBackground h3 {
  color: #fff;
  font-weight: normal;
  margin: 15px 0;
}
/* line 91, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .file-download-button a:link,
.node--type-clinical-practice-guideline .file-download-button a:link {
  color: #fff;
}
/* line 97, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review a.grayLabelFile,
.node--type-clinical-practice-guideline a.grayLabelFile {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 8px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  color: #fff;
  background-color: #575b5e;
  color: white;
  display: inline-block;
  width: 211px;
  margin-top: 15px;
  text-align: center;
  padding: 10px 0;
}
/* line 1299, ../sass/_mixins.scss */
.node--type-systematic-evidence-review a.grayLabelFile :hover,
.node--type-clinical-practice-guideline a.grayLabelFile :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 97, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review a.grayLabelFile,
  .node--type-clinical-practice-guideline a.grayLabelFile {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.node--type-systematic-evidence-review a.grayLabelFile h1, .node--type-systematic-evidence-review a.grayLabelFile .photocredit,
.node--type-clinical-practice-guideline a.grayLabelFile h1,
.node--type-clinical-practice-guideline a.grayLabelFile .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.node--type-systematic-evidence-review a.grayLabelFile a, .node--type-systematic-evidence-review a.grayLabelFile a:visited, .node--type-systematic-evidence-review a.grayLabelFile a:link, .node--type-systematic-evidence-review a.grayLabelFile a:hover,
.node--type-clinical-practice-guideline a.grayLabelFile a,
.node--type-clinical-practice-guideline a.grayLabelFile a:visited,
.node--type-clinical-practice-guideline a.grayLabelFile a:link,
.node--type-clinical-practice-guideline a.grayLabelFile a:hover {
  color: #fff;
}
/* line 1310, ../sass/_mixins.scss */
.node--type-systematic-evidence-review a.grayLabelFile a, .node--type-systematic-evidence-review a.grayLabelFile a:visited, .node--type-systematic-evidence-review a.grayLabelFile a:link,
.node--type-clinical-practice-guideline a.grayLabelFile a,
.node--type-clinical-practice-guideline a.grayLabelFile a:visited,
.node--type-clinical-practice-guideline a.grayLabelFile a:link {
  color: #fff;
}
/* line 1313, ../sass/_mixins.scss */
.node--type-systematic-evidence-review a.grayLabelFile a:hover,
.node--type-clinical-practice-guideline a.grayLabelFile a:hover {
  color: #fff;
  text-decoration: none;
}
/* line 1317, ../sass/_mixins.scss */
.node--type-systematic-evidence-review a.grayLabelFile:hover,
.node--type-clinical-practice-guideline a.grayLabelFile:hover {
  background-color: #232526;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 97, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review a.grayLabelFile,
  .node--type-clinical-practice-guideline a.grayLabelFile {
    padding: 10px 0;
    display: block;
    width: 240px;
  }
}
/* line 110, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review a.grayLabelFile span,
.node--type-clinical-practice-guideline a.grayLabelFile span {
  display: block;
  font-size: 12px;
}
/* line 114, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review a.grayLabelFile span:hover,
.node--type-clinical-practice-guideline a.grayLabelFile span:hover {
  color: white;
}
/* line 118, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review a.grayLabelFile:hover,
.node--type-clinical-practice-guideline a.grayLabelFile:hover {
  color: white;
}
/* line 122, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field--name-field-health-pro-news .whitesubhead,
.node--type-clinical-practice-guideline .field--name-field-health-pro-news .whitesubhead {
  padding-bottom: 1.5em;
}
/* line 128, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .otherVersions,
.node--type-clinical-practice-guideline .otherVersions {
  padding: 15px 0 0 0;
}
/* line 131, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .otherVersions .field__items,
.node--type-clinical-practice-guideline .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: #000;
  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 131, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .otherVersions .field__items,
  .node--type-clinical-practice-guideline .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 135, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .otherVersions .field__item,
.node--type-clinical-practice-guideline .otherVersions .field__item {
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
}
@media all and (min-width: 1100px) {
  /* line 135, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .otherVersions .field__item,
  .node--type-clinical-practice-guideline .otherVersions .field__item {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 135, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .otherVersions .field__item,
  .node--type-clinical-practice-guideline .otherVersions .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 135, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .otherVersions .field__item,
  .node--type-clinical-practice-guideline .otherVersions .field__item {
    width: 90%;
  }
}
/* line 1909, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file--application-pdf,
.node--type-clinical-practice-guideline .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 1913, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file--x-office-document,
.node--type-clinical-practice-guideline .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 1917, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file--x-office-spreadsheet,
.node--type-clinical-practice-guideline .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 1921, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file--x-office-presentation,
.node--type-clinical-practice-guideline .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 1925, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file-download-card,
.node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card {
  background-color: white;
  height: 100px;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1925, ../sass/_mixins.scss */
  .node--type-systematic-evidence-review .otherVersions .field__item .file-download-card,
  .node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card {
    flex-direction: row;
  }
}
/* line 1937, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file-download-card .file-details,
.node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card .file-details {
  width: 100%;
}
/* line 1939, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file-download-card .file-details .file-link-text,
.node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 1943, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file-download-card .file-details .file-size,
.node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 1948, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file-download-card .file,
.node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card .file {
  width: 50px;
  margin-right: 10px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 135, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .otherVersions .field__item,
  .node--type-clinical-practice-guideline .otherVersions .field__item {
    padding-bottom: 0;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }
}
/* line 147, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .otherVersions .field__item .file-download-card,
.node--type-clinical-practice-guideline .otherVersions .field__item .file-download-card {
  border: 2px solid #D7D7D7;
}
/* line 153, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials {
  padding: 0;
}
/* line 155, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__items,
.node--type-clinical-practice-guideline .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: #000;
  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 155, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .field--name-field-supporting-materials .field__items,
  .node--type-clinical-practice-guideline .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 159, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item {
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
}
@media all and (min-width: 1100px) {
  /* line 159, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item {
    width: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 159, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 159, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item {
    width: 90%;
  }
}
/* line 1909, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file--application-pdf,
.node--type-clinical-practice-guideline .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 1913, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file--x-office-document,
.node--type-clinical-practice-guideline .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 1917, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file--x-office-spreadsheet,
.node--type-clinical-practice-guideline .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 1921, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file--x-office-presentation,
.node--type-clinical-practice-guideline .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 1925, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file-download-card,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item .file-download-card {
  background-color: white;
  height: 100px;
  width: 100%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 1925, ../sass/_mixins.scss */
  .node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file-download-card,
  .node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item .file-download-card {
    flex-direction: row;
  }
}
/* line 1937, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file-download-card .file-details,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item .file-download-card .file-details {
  width: 100%;
}
/* line 1939, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-link-text,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-link-text {
  padding-top: 25px;
  padding-left: 1em;
}
/* line 1943, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-size,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item .file-download-card .file-details .file-size {
  padding-top: 0.5em;
  padding-left: 1em;
}
/* line 1948, ../sass/_mixins.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item .file-download-card .file,
.node--type-clinical-practice-guideline .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 159, ../sass/components/_health_pro.scss */
  .node--type-systematic-evidence-review .field--name-field-supporting-materials .field__item,
  .node--type-clinical-practice-guideline .field--name-field-supporting-materials .field__item {
    padding-bottom: 0;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }
}
/* line 171, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field--name-field-supporting-materials h3,
.node--type-clinical-practice-guideline .field--name-field-supporting-materials h3 {
  color: white;
}
/* line 177, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field-accordion-pane,
.node--type-clinical-practice-guideline .field-accordion-pane {
  margin-bottom: 20px;
}
/* line 179, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field-accordion-pane .content-container, .node--type-systematic-evidence-review .field-accordion-pane .topicFeatured .view-content, .topicFeatured .node--type-systematic-evidence-review .field-accordion-pane .view-content, .node--type-systematic-evidence-review .field-accordion-pane .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .node--type-systematic-evidence-review .field-accordion-pane article, .node--type-systematic-evidence-review .field-accordion-pane .previous-directors-container,
.node--type-clinical-practice-guideline .field-accordion-pane .content-container,
.node--type-clinical-practice-guideline .field-accordion-pane .topicFeatured .view-content,
.topicFeatured .node--type-clinical-practice-guideline .field-accordion-pane .view-content,
.node--type-clinical-practice-guideline .field-accordion-pane .executive-news--landing .topicFeatured article,
.executive-news--landing .topicFeatured .node--type-clinical-practice-guideline .field-accordion-pane article,
.node--type-clinical-practice-guideline .field-accordion-pane .previous-directors-container {
  margin-top: 0;
}
/* line 183, ../sass/components/_health_pro.scss */
.node--type-systematic-evidence-review .field-accordion-pane .secondary-accordion,
.node--type-clinical-practice-guideline .field-accordion-pane .secondary-accordion {
  padding-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;
  padding-top: 2em;
}
/* line 9, ../sass/components/_researchtopics.scss */
.rtFlexContainer h1 {
  background-color: #f4f4f4;
  padding-top: 0;
  margin: 0;
}
/* line 14, ../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 14, ../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 23, ../sass/components/_researchtopics.scss */
.rtFlexContainer .field--name-field-related-sfas {
  margin-top: 1em;
  margin-bottom: 1em;
  white-space: nowrap;
}
/* line 27, ../sass/components/_researchtopics.scss */
.rtFlexContainer .field--name-field-related-sfas .field__item {
  display: inline;
  margin-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 27, ../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 35, ../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 35, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .field--name-field-related-sfas a {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}
/* line 48, ../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 52, ../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 56, ../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 56, ../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 65, ../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 65, ../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 71, ../sass/components/_researchtopics.scss */
.rtFlexContainer .rtPIandOfficer a.contact-link {
  float: right;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 71, ../sass/components/_researchtopics.scss */
  .rtFlexContainer .rtPIandOfficer a.contact-link {
    float: none;
  }
}

/* line 80, ../sass/components/_researchtopics.scss */
.node--type-research-topic h3 {
  color: #fff;
}
/* line 84, ../sass/components/_researchtopics.scss */
.node--type-research-topic .rtDescription {
  padding-bottom: 2em;
  width: 75%;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 84, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .rtDescription {
    margin-top: 1em;
    width: 100%;
  }
}
@media all and (min-width: 1100px) {
  /* line 98, ../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 98, ../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 98, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .researchPeopleToolsBlock {
    padding-top: 2em;
    padding-bottom: 0.5em;
  }
}
/* line 113, ../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;
}
/* line 120, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item {
  text-align: center;
}
/* line 126, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 {
  display: block;
  position: relative;
  text-align: center;
  clear: both;
  width: 100%;
  margin: 0.6em 0 0 0;
  color: #575b5e;
  background-color: transparent;
}
/* line 137, ../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 h3 .photocredit {
  color: #575b5e;
}
/* line 140, ../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 h3 a:visited, .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 h3 a:hover {
  color: #575b5e;
}
/* line 132, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-science-supplemental-page .field__item h3 a:hover {
  background-color: transparent;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 120, ../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 143, ../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 152, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content {
  color: #fff;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content h1, .node--type-research-topic .field--name-field-content .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.node--type-research-topic .field--name-field-content a, .node--type-research-topic .field--name-field-content a:visited, .node--type-research-topic .field--name-field-content a:link, .node--type-research-topic .field--name-field-content a:hover {
  color: #fff;
}
/* line 155, ../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 159, ../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 163, ../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 171, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 {
  color: #575b5e;
  background-color: #fff;
}
/* line 137, ../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: #575b5e;
}
/* line 140, ../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:visited, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a:link, .node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a:hover {
  color: #575b5e;
}
/* line 174, ../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: #000;
}
/* line 177, ../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;
}
/* line 180, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a.viewallupdatelink {
  color: #3885ca;
}
/* line 182, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item .rtUpdatesView.rtUpdatesView.view-display-id-block_4 a.viewallupdatelink:hover {
  color: #144571;
  background-color: transparent;
}
@media all and (min-width: 768px) {
  /* line 196, ../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 .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 196, ../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 .flexItemImageThird, .node--type-research-topic .researchTopicPublications .flexItemImageThirdHalf, .node--type-research-topic .researchTopicPublications .hero-image {
    max-width: 100%;
  }
}
/* line 205, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item {
  background-color: #1a568c;
  display: block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 209, ../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 {
    display: none;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 217, ../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 {
    display: block;
  }
}
/* line 232, ../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 235, ../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 .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 239, ../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 243, ../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 247, ../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;
}
@media all and (min-width: 768px) {
  /* line 247, ../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 247, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextLeft {
    max-width: 100%;
    border-right: none;
  }
}
/* line 258, ../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;
  overflow: hidden;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 258, ../sass/components/_researchtopics.scss */
  .node--type-research-topic .field--name-field-content > .field__item article.listTeaserCard .flexTextRight {
    padding-left: 0;
    padding-top: 0;
  }
}
/* line 267, ../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 270, ../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 275, ../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 280, ../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 289, ../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 292, ../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 .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 .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 292, ../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 .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 .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 292, ../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 .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 .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 304, ../sass/components/_researchtopics.scss */
.node--type-research-topic .field--name-field-content > .field__item:nth-of-type(2n) {
  background-color: #102d66;
}
/* line 311, ../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 311, ../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 318, ../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 318, ../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 329, ../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 329, ../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 335, ../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 .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 .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 .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 335, ../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 .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 .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 .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 347, ../sass/components/_researchtopics.scss */
article.node--type-employment-and-fellowship-opport .content-container, article.node--type-employment-and-fellowship-opport .topicFeatured .view-content, .topicFeatured article.node--type-employment-and-fellowship-opport .view-content, article.node--type-employment-and-fellowship-opport .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured article.node--type-employment-and-fellowship-opport article, article.node--type-employment-and-fellowship-opport .previous-directors-container {
  margin-bottom: 1.4em;
}
/* line 350, ../sass/components/_researchtopics.scss */
article.node--type-employment-and-fellowship-opport .field--name-field-teaser-description {
  margin-bottom: 1em;
}

/* line 356, ../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 1em 2em;
  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 41, ../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 45, ../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 45, ../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 55, ../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 55, ../sass/components/_esi.scss */
  .storycallouttitle {
    width: 35%;
    max-width: 35%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 55, ../sass/components/_esi.scss */
  .storycallouttitle {
    width: auto;
  }
}

/* line 66, ../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 66, ../sass/components/_esi.scss */
  .storycallouttext {
    width: 60%;
    max-width: 60%;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 66, ../sass/components/_esi.scss */
  .storycallouttext {
    padding-left: 0;
    width: auto;
  }
}

/* line 80, ../sass/components/_esi.scss */
.storycalloutlist ul {
  list-style: none;
  margin-left: 0;
}
/* line 84, ../sass/components/_esi.scss */
.storycalloutlist li {
  margin-bottom: 0.8em;
}
/* line 86, ../sass/components/_esi.scss */
.storycalloutlist li .calloutdata {
  display: table-cell;
  padding-left: 22px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 86, ../sass/components/_esi.scss */
  .storycalloutlist li .calloutdata {
    padding-left: 17px;
  }
}
/* line 94, ../sass/components/_esi.scss */
.storycalloutlist li:before {
  margin-top: 10px;
  width: 11px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 94, ../sass/components/_esi.scss */
  .storycalloutlist li:before {
    width: 7px;
  }
}

/* line 115, ../sass/components/_esi.scss */
.esi-feature-card, .featured-science-instance-teaser-container {
  padding: 1em;
  margin: 1.4em 0 2em 0;
  background-color: #fff;
}
/* line 120, ../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: #575b5e;
  margin-bottom: 0;
}
/* line 124, ../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 {
  color: #575b5e;
  background-color: transparent;
}
/* line 129, ../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: #575b5e;
  padding: 0;
  border: 0;
}
/* line 134, ../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 134, ../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 134, ../sass/components/_esi.scss */
  .esi-feature-card .flexItemText, .featured-science-instance-teaser-container .flexItemText {
    padding-top: 1rem;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 147, ../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 153, ../sass/components/_esi.scss */
.sfa-teaser-container {
  color: #fff;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
.sfa-teaser-container h1, .sfa-teaser-container .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.sfa-teaser-container a, .sfa-teaser-container a:visited, .sfa-teaser-container a:link, .sfa-teaser-container a:hover {
  color: #fff;
}

/* line 162, ../sass/components/_esi.scss */
.theScienceNewsItem {
  background-color: #102d66;
}
/* line 165, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .flexItemImage, .theScienceNewsItem .sfa-teaser-container .flexItemImageHalf, .theScienceNewsItem .sfa-teaser-container .flexItemImageTenth, .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 165, ../sass/components/_esi.scss */
  .theScienceNewsItem .sfa-teaser-container .flexItemImage, .theScienceNewsItem .sfa-teaser-container .flexItemImageHalf, .theScienceNewsItem .sfa-teaser-container .flexItemImageTenth, .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 171, ../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 171, ../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 177, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .herobannertitle, .theScienceNewsItem .sfa-teaser-container .herobannertitle-grey {
  color: #fff;
}
/* line 180, ../sass/components/_esi.scss */
.theScienceNewsItem .sfa-teaser-container .grayDate {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 183, ../sass/components/_esi.scss */
  .theScienceNewsItem .sfa-teaser-container .bodytext, .theScienceNewsItem .sfa-teaser-container .darkGrayBodyText, .theScienceNewsItem .sfa-teaser-container .foa-expiration-date {
    display: none;
  }
}

/* line 190, ../sass/components/_esi.scss */
.theScienceEventItem {
  background-color: #1a568c;
}
/* line 193, ../sass/components/_esi.scss */
.theScienceEventItem .sfa-teaser-container .flexItemImage, .theScienceEventItem .sfa-teaser-container .flexItemImageHalf, .theScienceEventItem .sfa-teaser-container .flexItemImageTenth, .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 197, ../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 201, ../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 216, ../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 216, ../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 222, ../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 228, ../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;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 237, ../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 237, ../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 246, ../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 250, ../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 259, ../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 262, ../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 267, ../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-full .topicFeatured .research-making-a-difference.view-content, .topicFeatured .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference.view-content, .node--type-scientific-focus-area.node--view-mode-full .executive-news--landing .topicFeatured article.research-making-a-difference, .executive-news--landing .topicFeatured .node--type-scientific-focus-area.node--view-mode-full article.research-making-a-difference, .node--type-scientific-focus-area.node--view-mode-full .research-making-a-difference.previous-directors-container,
.node--type-scientific-focus-area.node--view-mode-subscribe .content-container.research-making-a-difference,
.node--type-scientific-focus-area.node--view-mode-subscribe .topicFeatured .research-making-a-difference.view-content,
.topicFeatured .node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference.view-content,
.node--type-scientific-focus-area.node--view-mode-subscribe .executive-news--landing .topicFeatured article.research-making-a-difference,
.executive-news--landing .topicFeatured .node--type-scientific-focus-area.node--view-mode-subscribe article.research-making-a-difference,
.node--type-scientific-focus-area.node--view-mode-subscribe .research-making-a-difference.previous-directors-container {
  margin-top: 0;
}
/* line 270, ../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 273, ../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: 1em;
  padding-bottom: 2em;
}
/* line 276, ../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 276, ../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 284, ../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 288, ../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 292, ../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 .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 .contact-method-label {
  margin-bottom: 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 292, ../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 .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 .contact-method-label {
    padding-top: 1rem;
  }
}
/* line 298, ../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 298, ../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 308, ../sass/components/_esi.scss */
.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 {
  color: #1a568c;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 312, ../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 312, ../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: -4em;
  }
}
/* line 322, ../sass/components/_esi.scss */
.node--type-scientific-focus-area.node--view-mode-full .key-accomplishments .storycallouttitle,
.node--type-scientific-focus-area.node--view-mode-subscribe .key-accomplishments .storycallouttitle {
  color: #fff;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 326, ../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 326, ../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 336, ../sass/components/_esi.scss */
.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 {
  color: #1a568c;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 340, ../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 340, ../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 349, ../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 357, ../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 359, ../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;
}

/* line 368, ../sass/components/_esi.scss */
.science-instance-card h5, .science-instance-card .node--type-webform .form-type-checkbox label span, .node--type-webform .form-type-checkbox label .science-instance-card span, .science-instance-card .webform-submission-form .form-type-checkbox label span, .webform-submission-form .form-type-checkbox label .science-instance-card span {
  text-align: center;
}
/* line 372, ../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 379, ../sass/components/_esi.scss */
ul.sub-category-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 21px;
}
/* line 384, ../sass/components/_esi.scss */
ul.sub-category-list h3.subcategory-title {
  color: #1a568c;
}
/* line 389, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryBlankListItem,
ul.sub-category-list li.subCategoryListItem {
  margin-top: 1em;
}
/* line 395, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryBlankListItem:before,
ul.sub-category-list li.subCategoryListItem:before {
  margin-top: 10px;
  width: 14px;
}
/* line 403, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryBlankListItem {
  list-style-image: none;
}
/* line 407, ../sass/components/_esi.scss */
ul.sub-category-list li.subCategoryListItem {
  list-style-image: url("/themes/custom/nhlbi/images/ico-bluesquarebullet.png");
}
/* line 417, ../sass/components/_esi.scss */
ul.sub-category-list a .field--name-field-subcategory-title {
  display: inline;
}

/* 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:last-child,
.general-accordion .ui-accordion-content.ui-widget-content .view-nhlbi-career-stages .views-row:last-child {
  padding: 0;
}
/* line 12, ../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 18, ../sass/components/_training.scss */
.training-opportunity-card {
  background-color: #f4f4f4;
  padding: 1em;
}
/* line 24, ../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 24, ../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 24, ../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 24, ../sass/components/_training.scss */
  .training-opportunity-card .field--name-field-associated-people > .field__item {
    width: auto;
    max-width: auto;
  }
}
/* line 40, ../sass/components/_training.scss */
.training-opportunity-card .field--name-field-associated-people > .field__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
/* line 44, ../sass/components/_training.scss */
.training-opportunity-card h3.primarybluesubhead > a:hover,
.training-opportunity-card a:hover {
  text-decoration: underline;
}
/* line 49, ../sass/components/_training.scss */
.training-opportunity-card .person-card a:hover {
  text-decoration: underline;
}

/* line 54, ../sass/components/_training.scss */
.opportunity-codes {
  margin-top: 1em;
}

/* line 57, ../sass/components/_training.scss */
.activity-code, .diversity-code {
  display: inline-block;
}

/* line 60, ../sass/components/_training.scss */
.activity-code {
  background-color: #fff;
  border: 2px solid #d7d7d7;
  padding: 0 0.5em;
  margin-right: 0.5em;
}

/* line 67, ../sass/components/_training.scss */
.diversity-code {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
  background-color: #d7d7d7;
  border-radius: 4px;
  padding: 0.4em 1.3em;
}

/* line 75, ../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 79, ../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 86, ../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 86, ../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 86, ../sass/components/_training.scss */
  .field--name-field-featured-training-opportun > .field__item {
    width: 100%;
    max-width: auto;
  }
}

/* line 102, ../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 102, ../sass/components/_training.scss */
  .field--name-field-featured-training-opportun > .field__item:last-child {
    margin-bottom: 0;
  }
}

/* line 108, ../sass/components/_training.scss */
.training-opportunity-small-card {
  background-color: #fff;
  padding: 1em 2em 1em 2em;
}

@media all and (min-width: 1100px) {
  /* line 112, ../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 112, ../sass/components/_training.scss */
  .tcd-career-stage-container {
    width: auto;
  }
}

/* line 122, ../sass/components/_training.scss */
.field--name-field-career-stages {
  margin-top: 1em;
}
@media all and (min-width: 1100px) {
  /* line 122, ../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 122, ../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 132, ../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 132, ../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 132, ../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 144, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item .flex-content {
    width: 130px;
    line-height: 20px;
    display: inline-flex;
  }
}

/* line 152, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(1) {
  background-color: #d7e7f4;
}
@media all and (min-width: 1100px) {
  /* line 152, ../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 152, ../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 152, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(1) {
    background-size: 233px 147px;
    height: 147px;
  }
}

/* line 159, ../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, .field--name-field-career-stages > .field__item:nth-child(1) a:visited {
  color: #4a4a4a;
}

/* line 163, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(2) {
  background-color: #B4CDE1;
}
@media all and (min-width: 1100px) {
  /* line 163, ../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 163, ../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 163, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(2) {
    background-size: 189px 147px;
    height: 147px;
  }
}

/* line 170, ../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, .field--name-field-career-stages > .field__item:nth-child(2) a:visited {
  color: #4a4a4a;
}

/* line 174, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(3) {
  background-color: #79A1BD;
}
@media all and (min-width: 1100px) {
  /* line 174, ../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 174, ../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 174, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(3) {
    background-size: 189px 147px;
    height: 147px;
  }
}

/* line 181, ../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, .field--name-field-career-stages > .field__item:nth-child(3) a:visited {
  color: #fff;
}

/* line 188, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(4) {
  background-color: #497090;
}
@media all and (min-width: 1100px) {
  /* line 188, ../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 188, ../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 188, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(4) {
    background-size: 190px 147px;
    height: 147px;
  }
}

/* line 195, ../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, .field--name-field-career-stages > .field__item:nth-child(4) a:visited {
  color: #fff;
}

/* line 202, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(5) {
  background-color: #25557F;
}
@media all and (min-width: 1100px) {
  /* line 202, ../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 202, ../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 202, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(5) {
    background-size: 189px 147px;
    height: 147px;
  }
}

/* line 209, ../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, .field--name-field-career-stages > .field__item:nth-child(5) a:visited {
  color: #fff;
}

/* line 216, ../sass/components/_training.scss */
.field--name-field-career-stages > .field__item:nth-child(6) {
  background-color: #183852;
}
@media all and (min-width: 1100px) {
  /* line 216, ../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 216, ../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 216, ../sass/components/_training.scss */
  .field--name-field-career-stages > .field__item:nth-child(6) {
    background-size: 172px 147px;
    height: 147px;
  }
}

/* line 223, ../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, .field--name-field-career-stages > .field__item:nth-child(6) a:visited {
  color: #fff;
}

/* line 233, ../sass/components/_training.scss */
.field--name-field-workforce-development-card {
  padding-top: 1em;
  padding-bottom: 2em;
}

@media all and (min-width: 768px) {
  /* line 238, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item {
    width: 50%;
    max-width: 50%;
  }
}

@media all and (min-width: 768px) {
  /* line 244, ../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 244, ../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 256, ../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 256, ../sass/components/_training.scss */
  .field--name-field-workforce-development-card > .field__item:last-child {
    padding-top: 2em;
  }
}

/* line 266, ../sass/components/_training.scss */
.standard-title-text-link-card {
  height: 100%;
}
/* line 268, ../sass/components/_training.scss */
.standard-title-text-link-card li.field__item {
  list-style: none;
}

/* line 278, ../sass/components/_training.scss */
.tcd-events-container .eventdatesLocationType .eventLocation .map-icon {
  background-position: center;
}

@media all and (min-width: 768px) {
  /* line 287, ../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 292, ../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 297, ../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 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;
}
/* line 16, ../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 20, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .node--type-news-mention .flexItemText {
  padding-left: 0;
  padding-top: 0.8rem;
}
/* line 25, ../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 29, ../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 h3.ui-accordion-header.graysubSecondHeader,
.node--type-executive-biography .general-accordion.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.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,
.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 h3.ui-accordion-header.graysubSecondHeader,
.node--type-executive-biography .primary-accordion.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.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,
.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 h3.ui-accordion-header.graysubSecondHeader,
.node--type-executive-biography .secondary-accordion.ui-accordion h3.ui-accordion-header.graysubThirdHeader,
.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,
.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 35, ../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 .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 h3.ui-accordion-header.ui-accordion-header-active.graysubSecondHeader,
.node--type-executive-biography .ui-accordion h3.ui-accordion-header.ui-accordion-header-active.graysubThirdHeader,
.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,
.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 44, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .topicFeatured > .view-content {
  width: auto;
}
/* line 47, ../sass/components/_executive_biography.scss */
.node--type-executive-biography .field--name-field-related-publications > .field__item {
  border: 3px solid #d7e7f4;
  margin-bottom: 1em;
}

/* line 58, ../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 63, ../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 .flexItemImageThird, .node--view-mode-executive-teaser .flexItemImageThirdHalf, .node--view-mode-executive-teaser .hero-image {
    max-width: 50%;
  }
}
/* line 68, ../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 71, ../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 80, ../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 87, ../sass/components/_executive_biography.scss */
.previous-directors-container .view-header, .previous-directors-container .view-footer {
  align-self: center;
}
/* line 90, ../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 97, ../sass/components/_executive_biography.scss */
.previous-directors-container .views-row {
  overflow: hidden;
  border-bottom: 8px solid transparent;
}
/* line 102, ../sass/components/_executive_biography.scss */
.previous-directors-container .views-row:hover,
.previous-directors-container .views-row.active-row {
  border-bottom: 8px solid #bf0d2e;
}
/* line 108, ../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 113, ../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 113, ../sass/components/_executive_biography.scss */
  .previousNavigation, .nextNavigation {
    margin-top: -4em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 113, ../sass/components/_executive_biography.scss */
  .previousNavigation, .nextNavigation {
    margin-top: -3.5em;
  }
}

/* line 127, ../sass/components/_executive_biography.scss */
.previousNavigation {
  cursor: pointer;
}

/* line 131, ../sass/components/_executive_biography.scss */
.nextNavigation {
  cursor: pointer;
}

/* line 135, ../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 135, ../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 135, ../sass/components/_executive_biography.scss */
  .director-short-bioCard {
    margin-right: 0.6em;
    margin-left: 0.6em;
  }
}
/* line 151, ../sass/components/_executive_biography.scss */
.director-short-bioCard .directordate {
  padding-bottom: 0.5em;
}
/* line 154, ../sass/components/_executive_biography.scss */
.director-short-bioCard .field--name-field-starting-year, .director-short-bioCard .field--name-field-ending-year {
  display: inline;
}
/* line 157, ../sass/components/_executive_biography.scss */
.director-short-bioCard .speakername {
  padding-top: 0.5em;
}
/* line 160, ../sass/components/_executive_biography.scss */
.director-short-bioCard .speakername:hover, .director-short-bioCard .speakername.active {
  color: #bf0d2e;
}

/* line 166, ../sass/components/_executive_biography.scss */
.director-short-bioCard:hover .speakername,
.director-short-bioCard.active .speakername {
  color: #bf0d2e;
}

/* line 171, ../sass/components/_executive_biography.scss */
.director-short-text-bioCard.hidden {
  display: none;
}

/* line 175, ../sass/components/_executive_biography.scss */
.previous-directors-text-container {
  padding-top: 0.5em;
  padding-bottom: 1em;
}

/* line 179, ../sass/components/_executive_biography.scss */
.twitterlink {
  padding-left: 20px;
  padding-top: 1em;
  height: 18px;
}

/* line 9, ../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 {
  margin-top: 1em;
}
/* line 13, ../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 {
  background-color: #fff;
}
@media all and (min-width: 1100px) {
  /* line 13, ../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 {
    width: 25%;
    padding: 1em 2em 1.5em 2em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 13, ../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 {
    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 26, ../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 {
  padding-right: 1em;
  padding-left: 1em;
  background-color: #f1f7fb;
}
/* line 33, ../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 {
  margin-right: 0;
}

/* line 37, ../sass/components/_individual_contact.scss */
.contact-method-card > div {
  margin-top: 1em;
}

/* line 40, ../sass/components/_individual_contact.scss */
.contact-method-label {
  display: block;
  margin-top: 0;
  padding-bottom: 0.7em;
  padding-left: 45px;
}

/* line 51, ../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 59, ../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 64, ../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 69, ../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 72, ../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 72, ../sass/components/_individual_contact.scss */
  .contact-method-phone-and-email-container .contact-method-container-phone {
    padding-left: 0;
    padding-top: 1em;
  }
}

/* line 82, ../sass/components/_individual_contact.scss */
.contact-method-short-label {
  display: inline-block;
  width: 45px;
}

/* line 92, ../sass/components/_individual_contact.scss */
.contact-method-icon-email {
  background-position: left 25%;
  padding-bottom: 1.1em;
}

/* line 97, ../sass/components/_individual_contact.scss */
.contact-method-icon-twitter {
  background-position: left 25%;
  padding-bottom: 1.1em;
}

/* line 102, ../sass/components/_individual_contact.scss */
.contact-method-icon-postal-mail {
  height: auto;
}

/* line 106, ../sass/components/_individual_contact.scss */
.contact-method-icon-web-form {
  background-position: left 15%;
  padding-bottom: 1.1em;
}

/* line 112, ../sass/components/_individual_contact.scss */
.contact-box {
  padding-bottom: 0.5em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 112, ../sass/components/_individual_contact.scss */
  .contact-box {
    margin-bottom: 1em;
  }
}
/* line 118, ../sass/components/_individual_contact.scss */
.contact-box .contact-brief-description {
  display: none;
}

/* line 122, ../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 122, ../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 129, ../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 129, ../sass/components/_individual_contact.scss */
  .contact-box > .field--name-field-contact-methods .contact-method-container-email {
    margin-right: 0;
  }
}
/* line 136, ../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 136, ../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 143, ../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: #000;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 143, ../sass/components/_individual_contact.scss */
  .contact-box > .field--name-field-contact-methods .contact-method-container-phone {
    margin-top: 1em;
    height: 20px;
  }
}

/* line 2, ../sass/components/_committee.scss */
.node--type-committee .field--name-field-roster {
  padding-top: 1em;
}
/* line 8, ../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 8, ../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 8, ../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 8, ../sass/components/_committee.scss */
  .node--type-committee .field--name-field-card-text > .field__item {
    max-width: none;
    min-width: inherit;
    flex-basis: auto;
  }
}
/* line 32, ../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 h3 > a:link, .node--type-division.node--view-mode-full .field--name-field-programs > .field__item h3 > a:visited,
.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 h3 > a:link,
.node--type-division.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a:visited,
.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 h3 > a:link,
.node--type-branch.node--view-mode-full .field--name-field-programs > .field__item h3 > a:visited,
.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 h3 > a:link,
.node--type-branch.node--view-mode-subscribe .field--name-field-programs > .field__item h3 > a:visited {
  color: #1a568c;
  display: inline-block;
}
/* line 21, ../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 25, ../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 30, ../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 .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 .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 .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 .contact-method-label {
  padding-bottom: 0.5em;
}
/* line 35, ../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 38, ../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: 1rem;
}

/* line 43, ../sass/components/_division.scss */
.full-leadership-container {
  padding: 2.5em;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 43, ../sass/components/_division.scss */
  .full-leadership-container {
    padding: 1.5em;
  }
}

@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 49, ../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 54, ../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 60, ../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: 1rem;
}
@media all and (min-width: 1100px) {
  /* line 60, ../sass/components/_division.scss */
  .leadership-container .leadership-director-container {
    min-width: 40%;
  }
}
/* line 68, ../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 73, ../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 73, ../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 73, ../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 91, ../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 91, ../sass/components/_division.scss */
  .leadership-container .leadership-deputy-director-container .node--view-mode-short-teaser .flexItemText {
    padding-left: 0;
  }
}
/* line 98, ../sass/components/_division.scss */
.leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership {
  width: 100%;
  -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 98, ../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 98, ../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 115, ../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 115, ../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 115, ../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 115, ../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 115, ../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 140, ../sass/components/_division.scss */
.branch-leadership-container {
  padding-top: 2em;
  padding-bottom: 2em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 140, ../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 148, ../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 152, ../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 158, ../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: 1rem;
}
@media all and (min-width: 768px) {
  /* line 158, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container {
    min-width: 40%;
  }
}
/* line 166, ../sass/components/_division.scss */
.branch-leadership-container .leadership-director-container h3 {
  margin-bottom: 0.2em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 158, ../sass/components/_division.scss */
  .branch-leadership-container .leadership-director-container {
    margin-right: 0;
  }
}
/* line 176, ../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 176, ../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 176, ../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 193, ../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;
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 193, ../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 193, ../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 206, ../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 206, ../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 206, ../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 206, ../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 206, ../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 232, ../sass/components/_division.scss */
.branch-leadership-container .leadership-deputy-director-container .field--name-field-additional-leadership > .field__item:last-child {
  margin-right: 0;
}

/* line 2, ../sass/components/_job.scss */
.node--type-job h1 {
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}

/* line 2, ../sass/components/_general.scss */
.node--type-general .supplemental-accordion {
  margin-bottom: 1em;
}
/* line 6, ../sass/components/_general.scss */
.node--type-general .field--name-field-related-video .herobannertitle, .node--type-general .field--name-field-related-video .herobannertitle-grey {
  color: #575b5e;
  background-color: transparent;
}
/* line 137, ../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: #575b5e;
}
/* line 140, ../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:visited, .node--type-general .field--name-field-related-video .herobannertitle-grey a:visited, .node--type-general .field--name-field-related-video .herobannertitle a:link, .node--type-general .field--name-field-related-video .herobannertitle-grey a:link, .node--type-general .field--name-field-related-video .herobannertitle a:hover, .node--type-general .field--name-field-related-video .herobannertitle-grey a:hover {
  color: #575b5e;
}
/* line 1668, ../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: #575b5e;
  text-decoration: none;
}
/* line 1672, ../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: #575b5e;
}
/* line 1675, ../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: #575b5e;
}
/* line 1678, ../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 {
  color: #575b5e;
  text-decoration: underline;
}
/* line 1682, ../sass/_mixins.scss */
.node--type-general .field--name-field-related-video .herobannertitle a:active, .node--type-general .field--name-field-related-video .herobannertitle-grey a:active {
  color: #000;
}

/* line 12, ../sass/components/_general.scss */
.node--type-general.node--view-mode-full,
.node--type-general.node--view-mode-subscribe {
  color: #000;
}

/* line 2, ../sass/components/_objective.scss */
.node--type-objective .pager__item a.button {
  background-color: #590716;
  border: 1px solid #fff;
}
/* line 7, ../sass/components/_objective.scss */
.node--type-objective .pager__item a.button:hover {
  background-color: #bf0d2e;
  border-color: #bf0d2e;
}

/* line 14, ../sass/components/_objective.scss */
.objective-page-title {
  height: auto;
  margin-top: 1.5em;
  min-height: 62px;
  padding-left: 82px;
}
@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;
  }
}

@media all and (min-width: 768px) {
  /* line 28, ../sass/components/_objective.scss */
  h1.objective-page-title {
    line-height: 62px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 28, ../sass/components/_objective.scss */
  h1.objective-page-title {
    line-height: 35px;
  }
}

/* line 36, ../sass/components/_objective.scss */
.cc-cq-category-label {
  color: #333;
  padding-bottom: 0.8em;
}

/* line 40, ../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 44, ../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 49, ../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 52, ../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 52, ../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 52, ../sass/components/_objective.scss */
  .objective-text-container .objective-introduction {
    max-width: 42%;
    min-width: 42%;
    width: 42%;
    padding-right: 1em;
  }
}
/* line 67, ../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 67, ../sass/components/_objective.scss */
  .objective-text-container .objective-future-goals {
    max-width: 35%;
    min-width: 35%;
    width: 35%;
    margin-left: 1em;
  }
}
@inclue bp-phone {
  /* line 67, ../sass/components/_objective.scss */
  .objective-text-container .objective-future-goals {
    margin-top: 1em;
  }
}
/* line 84, ../sass/components/_objective.scss */
.objective-list-wrapper h2, .objective-list-wrapper .contact-method-label {
  color: #000;
}

/* line 88, ../sass/components/_objective.scss */
.objective-list-wrapper > .objective-list-container > ol.objective-list > li.objective-list-item.active:before {
  color: #fff;
}

/* line 92, ../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 96, ../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 96, ../sass/components/_objective.scss */
  .objective-list-container ol.objective-list {
    max-width: 100%;
  }
}
/* line 104, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li {
  counter-increment: item;
  margin-bottom: 2em;
  line-height: 35px;
  display: inline-flex;
  width: 100%;
}
/* line 112, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.inactive > span a {
  color: #000;
}
/* line 116, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.inactive:before {
  background: transparent;
  border: solid #979797 1px;
  color: #000;
}
/* line 121, ../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;
  line-height: 35px;
  text-align: center;
  display: inline-table;
  font-weight: normal;
}
/* line 131, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.active > span {
  color: #1a568c;
  font-weight: bold;
}
/* line 135, ../sass/components/_objective.scss */
.objective-list-container ol.objective-list li.objective-list-item.active {
  color: #fff;
}
/* line 138, ../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 144, ../sass/components/_objective.scss */
  .objective-list-container .objective-list-image-wrapper {
    display: none;
  }
}
/* line 149, ../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 149, ../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 149, ../sass/components/_objective.scss */
  .objective-list-container .objective-list-image, .objective-list-container .objective-list-image-line {
    display: none;
  }
}
/* line 163, ../sass/components/_objective.scss */
.objective-list-container .objective-side-text {
  padding-top: 0.4em;
  width: 253px;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 163, ../sass/components/_objective.scss */
  .objective-list-container .objective-side-text {
    width: 184px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 163, ../sass/components/_objective.scss */
  .objective-list-container .objective-side-text {
    display: none;
  }
}

/* line 175, ../sass/components/_objective.scss */
.cc-cq-related-objective {
  padding-top: 1em;
}

/* line 178, ../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 185, ../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 185, ../sass/components/_objective.scss */
  .field--name-field-goal-card > .field__item {
    width: auto;
    margin-right: 0;
  }
}

@media all and (min-width: 768px) {
  /* line 195, ../sass/components/_objective.scss */
  .field--name-field-goal-card > .field__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* line 200, ../sass/components/_objective.scss */
.strategic-goal-card {
  background-color: #fff;
  padding: 1em;
  height: 100%;
  border-top: solid #f4f4f4 1em;
}

/* line 206, ../sass/components/_objective.scss */
h4.strategic-goal-card-title {
  font-family: "Roboto Slab", Verdana, Arial, sans-serif;
  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;
}
/* line 212, ../sass/components/_objective.scss */
h4.strategic-goal-card-title:hover {
  color: #fff;
}

/* line 216, ../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.5em 3.5em;
  color: #fff;
  background-color: #C5203E;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 216, ../sass/components/_objective.scss */
  .strategic-goal-card-title-red {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.strategic-goal-card-title-red h1, .strategic-goal-card-title-red .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.strategic-goal-card-title-red a, .strategic-goal-card-title-red a:visited, .strategic-goal-card-title-red a:link, .strategic-goal-card-title-red a:hover {
  color: #fff;
}
/* line 1327, ../sass/_mixins.scss */
.strategic-goal-card-title-red:hover {
  background-color: #C5203E;
  text-decoration: none;
}

/* line 220, ../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.5em 3.5em;
  color: #fff;
  background-color: #006F7E;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 220, ../sass/components/_objective.scss */
  .strategic-goal-card-title-green {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.strategic-goal-card-title-green h1, .strategic-goal-card-title-green .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.strategic-goal-card-title-green a, .strategic-goal-card-title-green a:visited, .strategic-goal-card-title-green a:link, .strategic-goal-card-title-green a:hover {
  color: #fff;
}
/* line 1327, ../sass/_mixins.scss */
.strategic-goal-card-title-green:hover {
  background-color: #006F7E;
  text-decoration: none;
}

/* line 224, ../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.5em 3.5em;
  color: #fff;
  background-color: #E17325;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 224, ../sass/components/_objective.scss */
  .strategic-goal-card-title-orange {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.strategic-goal-card-title-orange h1, .strategic-goal-card-title-orange .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.strategic-goal-card-title-orange a, .strategic-goal-card-title-orange a:visited, .strategic-goal-card-title-orange a:link, .strategic-goal-card-title-orange a:hover {
  color: #fff;
}
/* line 1327, ../sass/_mixins.scss */
.strategic-goal-card-title-orange:hover {
  background-color: #E17325;
  text-decoration: none;
}

/* line 227, ../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.5em 3.5em;
  color: #fff;
  background-color: #1E2F53;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 227, ../sass/components/_objective.scss */
  .strategic-goal-card-title-blue {
    padding: 0.35em 2.5em;
  }
}
/* line 137, ../sass/_mixins.scss */
.strategic-goal-card-title-blue h1, .strategic-goal-card-title-blue .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.strategic-goal-card-title-blue a, .strategic-goal-card-title-blue a:visited, .strategic-goal-card-title-blue a:link, .strategic-goal-card-title-blue a:hover {
  color: #fff;
}
/* line 1327, ../sass/_mixins.scss */
.strategic-goal-card-title-blue:hover {
  background-color: #1E2F53;
  text-decoration: none;
}

/* line 235, ../sass/components/_objective.scss */
ul.colored-list {
  list-style: none;
  padding-left: 0;
}
/* line 238, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item {
  margin-bottom: 1em;
  line-height: 30px;
  display: flex;
}
/* line 244, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item a {
  color: #000;
}
/* line 248, ../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 257, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-red:before {
  background-color: #C5203E;
  border: solid #C5203E 1px;
}
/* line 261, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-orange:before {
  background-color: #E17325;
  border: solid #E17325 1px;
}
/* line 265, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-green:before {
  background-color: #006F7E;
  border: solid #006F7E 1px;
}
/* line 269, ../sass/components/_objective.scss */
ul.colored-list li.colored-list-item.colored-list-item-blue:before {
  background-color: #1E2F53;
  border: solid #1E2F53 1px;
}

/* line 274, ../sass/components/_objective.scss */
.strategic-vision-landing-goals-wrapper {
  overflow: visible;
}
@media all and (min-width: 768px) {
  /* line 274, ../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 280, ../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 280, ../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 280, ../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 294, ../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 294, ../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 294, ../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 312, ../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 312, ../sass/components/_objective.scss */
  .strategic-vision-landing-goals-wrapper .strategic-vision-goals-right {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* line 2, ../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 6, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator h1 {
  margin: 0.5em 0 0.2em 0;
}
/* line 10, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .content-container, .node--type-principal-investigator .topicFeatured .view-content, .topicFeatured .node--type-principal-investigator .view-content, .node--type-principal-investigator .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .node--type-principal-investigator article, .node--type-principal-investigator .previous-directors-container {
  margin-top: 0;
  padding-top: 0;
}
/* line 14, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-content-section {
  padding-top: 2em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 14, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .pi-content-section {
    padding: 3em 0 1em 0;
  }
}
/* line 20, ../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 27, ../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 32, ../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 37, ../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 40, ../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 44, ../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 49, ../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: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 49, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container .column-left {
    display: none;
    width: 0;
  }
}
/* line 57, ../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: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 57, ../sass/components/_principle_investigator.scss */
  .node--type-principal-investigator .striped-container .column-right {
    display: none;
    width: 0;
  }
}
/* line 65, ../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: 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;
  /*
  .col1, .col3 {
    @include flexbox;
    @include property-prefix(flex-direction, column);
    width: 10%;
    @include bp-tablet {
      width: 5%;
    }
    @include bp-phone {
      display: none;
      width: 0;
    }
  }
  .col2 {
    width: 80%;
    @include bp-tablet {
      width: 90%;
    }
    @include bp-phone {
      width: 100%;
    }
  } */
}
/* line 96, ../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 101, ../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 106, ../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 106, ../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 118, ../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 118, ../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 118, ../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 118, ../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 143, ../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 153, ../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 157, ../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 180, ../sass/components/_principle_investigator.scss */
.node--type-principal-investigator .pi-contact-container .paragraph--type--lab-member .field--name-field-address p.address {
  margin: 0;
}
/* line 207, ../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 137, ../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;
}
/* line 140, ../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:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-research-update a:link, .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,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a:visited,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a:link,
.node--type-principal-investigator .views-element-container > .view-nhlbi-all-news a:hover {
  color: #fff;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 216, ../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-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 {
    display: none;
  }
}
/* line 231, ../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 .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 .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 231, ../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 .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 .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 237, ../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 240, ../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 250, ../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 256, ../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 {
    display: none;
  }
}
/* line 265, ../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 137, ../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 140, ../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:visited, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:link, .node--type-principal-investigator .views-element-container > .view-nhlbi-featured-events .view-content .standard-teaser.node--view-mode-short-teaser a:hover {
  color: #fff;
}
/* line 269, ../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 271, ../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 269, ../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: 1rem;
    min-width: 90%;
  }
}
/* line 280, ../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 .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 280, ../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 .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 280, ../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 .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 295, ../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 301, ../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 301, ../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 301, ../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 301, ../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 345, ../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 351, ../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 358, ../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 360, ../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 360, ../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: #575b5e;
}
/* 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: #575b5e;
}
/* line 13, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .greyBottom,
.node--type-events.node--view-mode-subscribe .greyBottom {
  margin-bottom: 0;
}
/* line 16, ../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 20, ../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 20, ../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 28, ../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 34, ../sass/components/_events.scss */
.hero-image {
  float: left;
  margin: 0 1.5em 1em 0;
}

/* line 40, ../sass/components/_events.scss */
.registerSocialContainer {
  clear: both;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 40, ../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 46, ../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 46, ../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 58, ../sass/components/_events.scss */
.registerSocialContainer .blueRoundButton, .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 58, ../sass/components/_events.scss */
  .registerSocialContainer .blueRoundButton, .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 58, ../sass/components/_events.scss */
  .registerSocialContainer .blueRoundButton, .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 68, ../sass/components/_events.scss */
.registerButton {
  display: inline-block;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 68, ../sass/components/_events.scss */
  .registerButton {
    display: none;
  }
}

/* line 75, ../sass/components/_events.scss */
.eventdatesLocationType {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
}
@media all and (min-width: 1440px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 14px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    line-height: 20px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    line-height: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    line-height: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 75, ../sass/components/_events.scss */
  .eventdatesLocationType {
    clear: both;
  }
}
/* line 84, ../sass/components/_events.scss */
.eventdatesLocationType .eventDates,
.eventdatesLocationType .eventLocation,
.eventdatesLocationType .eventType {
  margin: 1em 1em 0 0;
  height: 40px;
  line-height: 40px;
  word-wrap: break-word;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 84, ../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 94, ../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-height: normal;
}
/* line 100, ../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;
  line-height: normal;
  padding-left: 6px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 84, ../sass/components/_events.scss */
  .eventdatesLocationType .eventDates,
  .eventdatesLocationType .eventLocation,
  .eventdatesLocationType .eventType {
    float: none;
    display: block;
    margin: 1em 0 0 0;
  }
}
/* line 114, ../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;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 114, ../sass/components/_events.scss */
  .eventdatesLocationType .eventDates {
    line-height: 25px;
  }
}
/* line 122, ../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;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 122, ../sass/components/_events.scss */
  .eventdatesLocationType .eventLocation {
    line-height: 1.2em;
  }
}
/* line 128, ../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;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 128, ../sass/components/_events.scss */
  .eventdatesLocationType .eventType {
    line-height: 1.2em;
  }
}

/* line 141, ../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: 0em) and (max-width: 1099px) {
  /* line 147, ../sass/components/_events.scss */
  .field--name-field-video, .field--name-field-related-video {
    display: block;
    padding-bottom: 1em;
  }
}
/* line 153, ../sass/components/_events.scss */
.field--name-field-video .flexItemText, .field--name-field-related-video .flexItemText {
  padding-top: 0;
}
/* line 155, ../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 153, ../sass/components/_events.scss */
  .field--name-field-video .flexItemText, .field--name-field-related-video .flexItemText {
    padding-top: 1em;
  }
}

/* line 169, ../sass/components/_events.scss */
.other-speakers {
  clear: both;
  display: block;
  margin-top: 1em;
}
/* line 173, ../sass/components/_events.scss */
.other-speakers .speakerCard {
  margin-bottom: 1em;
}

/* line 178, ../sass/components/_events.scss */
.field--name-field-time, .field--name-field-session-title {
  display: inline;
}

/* line 181, ../sass/components/_events.scss */
.field--name-field-session-subtitle {
  color: #999;
}

/* line 192, ../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 192, ../sass/components/_events.scss */
  #map {
    height: 339px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 192, ../sass/components/_events.scss */
  #map {
    height: 254px;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 192, ../sass/components/_events.scss */
  #map {
    height: 189px;
    margin-top: 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 192, ../sass/components/_events.scss */
  #map {
    width: 95%;
  }
}

/* line 213, ../sass/components/_events.scss */
.fixedDarkBluePane .travelling-and-security {
  float: none;
  clear: both;
  margin: 1em auto;
}
/* line 219, ../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 227, ../sass/components/_events.scss */
  .list-title-block {
    margin-left: 1.1em;
  }
}

/* line 234, ../sass/components/_events.scss */
.field--name-field-partners ol, .field--name-field-partners ul {
  padding-left: 0;
  margin-top: 0;
}
/* line 238, ../sass/components/_events.scss */
.field--name-field-partners ul {
  list-style-type: none;
}
/* line 240, ../sass/components/_events.scss */
.field--name-field-partners ul li {
  margin-bottom: 0.5em;
}

/* line 247, ../sass/components/_events.scss */
.maintainedBy {
  margin: 2em 0 2.5em 0;
}
/* line 249, ../sass/components/_events.scss */
.maintainedBy .field--name-field-maintained-by {
  display: inline;
}

/* line 257, ../sass/components/_events.scss */
.eventLocation .map-icon {
  width: 47px;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 260, ../sass/components/_events.scss */
  .eventLocation .map-icon {
    width: 47px;
    background-position: 15% center;
  }
}

/* line 267, ../sass/components/_events.scss */
.event-type-icon {
  width: 67px;
}

@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 272, ../sass/components/_events.scss */
  .node--type-events.node--view-mode-full .locationMap,
  .node--type-events.node--view-mode-subscribe .locationMap {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
/* line 276, ../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: 2em;
  padding-left: 1em;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 276, ../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 276, ../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 285, ../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 288, ../sass/components/_events.scss */
.node--type-events.node--view-mode-full .locationMap .mapLocation-container .mapLocation h3,
.node--type-events.node--view-mode-subscribe .locationMap .mapLocation-container .mapLocation h3 {
  color: #fff;
}

/* line 297, ../sass/components/_events.scss */
.eventCalendarIcon {
  position: relative;
  background-position: left center;
  width: 47px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 297, ../sass/components/_events.scss */
  .eventCalendarIcon {
    line-height: 1.2em;
  }
}

/* line 307, ../sass/components/_events.scss */
.news-article-container {
  color: #fff;
  background-color: transparent;
}
/* line 137, ../sass/_mixins.scss */
.news-article-container h1, .news-article-container .photocredit {
  color: #fff;
}
/* line 140, ../sass/_mixins.scss */
.news-article-container a, .news-article-container a:visited, .news-article-container a:link, .news-article-container a:hover {
  color: #fff;
}
/* line 310, ../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 313, ../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 310, ../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 321, ../sass/components/_events.scss */
.news-article-container .flexItemImage, .news-article-container .flexItemImageHalf, .news-article-container .flexItemImageTenth, .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 321, ../sass/components/_events.scss */
  .news-article-container .flexItemImage, .news-article-container .flexItemImageHalf, .news-article-container .flexItemImageTenth, .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 328, ../sass/components/_events.scss */
.node--type-speaker.node--view-mode-short-teaser {
  margin-bottom: 1em;
}

/* 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 */
.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 10, ../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 18, ../sass/components/_news.scss */
.related-ht-press-container .card {
  background-color: #f4f4f4;
  width: 45%;
  min-height: 5rem;
  margin: 0.5rem 1rem 0 0;
  padding: 2rem;
  overflow: auto;
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 18, ../sass/components/_news.scss */
  .related-ht-press-container .card {
    width: 85%;
  }
}
/* line 28, ../sass/components/_news.scss */
.related-ht-press-container .card h2, .related-ht-press-container .card .contact-method-label {
  padding-bottom: 0.4em;
  color: #000;
}

/* line 40, ../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: #000;
}
/* line 43, ../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: #575b5e;
}
/* line 45, ../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: #575b5e;
}
/* line 49, ../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 52, ../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: #000;
}
/* line 55, ../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-height: 1em;
}
/* line 61, ../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 64, ../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 69, ../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 80, ../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 84, ../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: #575b5e;
  background-color: transparent;
}
/* line 137, ../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: #575b5e;
}
/* line 140, ../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: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-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-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,
.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: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-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-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,
.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: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-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-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,
.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:visited,
.node--type-feature-article.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:visited,
.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-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,
.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: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-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-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,
.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: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-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-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,
.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: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-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-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,
.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:visited,
.node--type-press-release.node--view-mode-subscribe .field--name-field-related-video .herobannertitle-grey a:visited,
.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,
.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 {
  color: #575b5e;
}
@media all and (min-width: 1100px) {
  /* line 88, ../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 96, ../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 {
  margin-bottom: 1em;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  /* line 106, ../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 {
    padding-top: 0;
  }
}
/* line 110, ../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 {
  color: #575b5e;
  background-color: transparent;
}
/* line 137, ../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 {
  color: #575b5e;
}
/* line 140, ../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:visited, .node--type-feature-article.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited, .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-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,
.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:visited,
.node--type-press-release.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.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-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,
.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:visited,
.node--type-events.node--view-mode-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.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-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,
.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:visited,
.node--type-feature-article.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:visited,
.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-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,
.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:visited,
.node--type-press-release.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:link,
.node--type-press-release.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: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,
.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:visited,
.node--type-events.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:link,
.node--type-events.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:hover,
.node--type-events.node--view-mode-hp-press-release-teaser .flexItemText .herobannertitle-grey a:hover {
  color: #575b5e;
}

/* line 116, ../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 {
  padding: 1em;
}

/* line 123, ../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 129, ../sass/components/_news.scss */
  .field--name-field-boilerplate-footer {
    padding-bottom: 1em;
  }
}

/* line 137, ../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 144, ../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 151, ../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 156, ../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 169, ../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;
  border: 3px #d7e7f4 solid;
  padding: 1.5em;
  margin: 1em 0 1em 1em;
}
@media all and (min-width: 1100px) {
  /* line 169, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    max-width: 30%;
    min-width: 30%;
    flex-basis: 30%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 169, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    max-width: 38%;
    min-width: 38%;
    flex-basis: 38%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 169, ../sass/components/_news.scss */
  .contact-and-content-container .press-contact-top {
    display: none;
  }
}

/* line 194, ../sass/components/_news.scss */
.press-release-boilerplate-footer {
  font-style: italic;
  clear: both;
}

@media all and (min-width: 768px) {
  /* line 200, ../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;
  }
}
@media all and (min-width: 768px) {
  /* line 205, ../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 210, ../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 210, ../sass/components/_news.scss */
  .news-header-container .flexItemText {
    padding: 1em 0 0 0;
  }
}
/* line 222, ../sass/components/_news.scss */
.news-header-container .field--name-field-topic {
  padding-top: 1em;
}
/* line 224, ../sass/components/_news.scss */
.news-header-container .field--name-field-topic .field__item {
  display: inline;
}
/* line 230, ../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 234, ../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 228, ../sass/components/_news.scss */
  .news-header-container .alternate-language,
  .news-header-container .social-desktop-and-tablet {
    display: none;
  }
}
/* line 244, ../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 244, ../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 253, ../sass/components/_news.scss */
.contacts-container {
  border: 3px #d7e7f4 solid;
  padding: 1.5em;
}
/* line 256, ../sass/components/_news.scss */
.contacts-container h2, .contacts-container .contact-method-label {
  padding-bottom: 0.5em;
  margin-bottom: 0;
}
/* line 261, ../sass/components/_news.scss */
.contacts-container .contact-info {
  padding-bottom: 1em;
}
/* line 264, ../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 264, ../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 264, ../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 273, ../sass/components/_news.scss */
.contacts-container .field--name-field-contacts h4 {
  color: #575b5e;
}
/* line 278, ../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 278, ../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 278, ../sass/components/_news.scss */
  .contacts-container .field--name-field-contacts > .field__item {
    width: auto;
  }
}

/* line 289, ../sass/components/_news.scss */
.contact-card {
  margin: 1em 1.5em 1em 0;
  height: 100%;
}
/* line 292, ../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 298, ../sass/components/_news.scss */
.contact-card .contact-mail .contact-icon, .contact-card .contact-number .contact-icon {
  width: 36px;
  background-position: center;
}
/* line 302, ../sass/components/_news.scss */
.contact-card .contact-mail .contact-text, .contact-card .contact-number .contact-text {
  padding-left: 1em;
}

/* line 319, ../sass/components/_news.scss */
h3.flataccordionheading {
  padding-top: 0.3em;
}

/* line 322, ../sass/components/_news.scss */
.flatcontainer {
  padding-bottom: 1em;
}
/* line 324, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-topics,
.flatcontainer .field--name-field-additional-support {
  padding-left: 1em;
}
/* line 328, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-publications {
  padding: 0;
}
/* line 331, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-education {
  padding-left: 1em;
  padding-bottom: 1em;
}
/* line 336, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-education .healthEductionContainer {
  padding: 1em;
}
/* line 340, ../sass/components/_news.scss */
.flatcontainer .field--name-field-related-health-education > .field__item {
  margin-bottom: 1em;
}

/* line 345, ../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 345, ../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 345, ../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 345, ../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 360, ../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 365, ../sass/components/_news.scss */
.publicationsBox .field--name-field-related-publications > .field__item article {
  height: 100%;
  display: inline-flex;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 360, ../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 360, ../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 381, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-teaser .field--name-field-summary {
  margin-top: 1em;
}

/* line 386, ../sass/components/_news.scss */
.node--type-news-mention.node--view-mode-full,
.node--type-news-mention.node--view-mode-subscribe {
  padding-bottom: 1em;
}
/* line 389, ../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-scientific-leadership,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat, .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-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.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-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.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 article.title-banner, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education, .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 .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, .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.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 article.title-banner, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full article.title-banner,
.node--type-news-mention.node--view-mode-full .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.title-banner,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-full article.title-banner,
.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-scientific-leadership,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat,
.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-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.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-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.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 article.title-banner,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education,
.healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education,
.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 .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,
.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.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 article.title-banner,
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner,
.node--type-news-mention.node--view-mode-subscribe .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article.title-banner,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner {
  padding-bottom: 2em;
}
/* line 393, ../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-scientific-leadership .flexItemText,
.node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText,
.node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemText, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemText,
.nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
.node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemText,
.healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .flexItemText {
  padding-left: 0;
}
@media all and (min-width: 768px) {
  /* line 393, ../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-scientific-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemText, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemText,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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 393, ../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-scientific-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemText, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemText, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemText, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemText,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemText,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemText,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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 403, ../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-scientific-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImage, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .flexItemImageTenth, .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-scientific-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThird, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .hero-image, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .hero-image, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImage,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageTenth,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .flexItemImageTenth,
  .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-scientific-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThird,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .hero-image,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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 403, ../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-scientific-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImage, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImage, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImage, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageTenth, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageTenth, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageTenth, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .flexItemImageTenth, .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-scientific-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThird, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThird, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThird, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThirdHalf, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .flexItemImageThirdHalf, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThirdHalf, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .hero-image,
  .node--type-news-mention.node--view-mode-full .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .hero-image, .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-full .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-full article.title-banner .hero-image, .node--type-news-mention.node--view-mode-full .publicationsBlock > .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 article.title-banner.node--type-heath-education .hero-image, .healthEducationBlock .node--type-news-mention.node--view-mode-full article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImage,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImage,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImage,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageTenth,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageTenth,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageTenth,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .flexItemImageTenth,
  .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-scientific-leadership .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThird,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThird,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThird,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .flexItemImageThirdHalf,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .flexItemImageThirdHalf,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .flexItemImageThirdHalf,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .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-scientific-leadership .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .title-banner.field--name-field-operations-and-administrat .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-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.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-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.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 article.title-banner .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-consumer-nhlbi-publ > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item article.title-banner .hero-image,
  .nhlbi-publications-and-resources--landing .field--name-field-health-professionals-nhlbi > .field__item .node--type-news-mention.node--view-mode-subscribe article.title-banner .hero-image,
  .node--type-news-mention.node--view-mode-subscribe .publicationsBlock > .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 article.title-banner.node--type-heath-education .hero-image,
  .healthEducationBlock .node--type-news-mention.node--view-mode-subscribe article.title-banner.node--type-heath-education .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 .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 .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.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 article.title-banner .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 article.title-banner .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 article.title-banner .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 article.title-banner .hero-image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

/* line 416, ../sass/components/_news.scss */
.paragraph--type--media-coverage-source {
  padding: 1em 0;
}
/* line 418, ../sass/components/_news.scss */
.paragraph--type--media-coverage-source li, .paragraph--type--media-coverage-source li.field__item {
  list-style: none;
}

/* line 2, ../sass/components/_homepage.scss */
.home-page--landing .field--name-field-division-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 20, ../sass/components/_homepage.scss */
.home-page-featured-item-card-featured-wrapper a.no-hover-color, .home-page-featured-item-card-featured-wrapper a.no-hover-color:hover,
.home-page-featured-item-card-wrapper a.no-hover-color,
.home-page-featured-item-card-wrapper a.no-hover-color:hover,
.about-nhlbi-featured-item-card-featured-wrapper a.no-hover-color,
.about-nhlbi-featured-item-card-featured-wrapper a.no-hover-color:hover {
  color: #575b5e;
}

/* line 24, ../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 39, ../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 44, ../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 51, ../sass/components/_homepage.scss */
.homepage-description {
  font-size: 22px;
  line-height: 30px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-style: italic;
  color: #fff;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 1440px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    font-size: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 51, ../sass/components/_homepage.scss */
  .homepage-description {
    line-height: 24px;
  }
}

/* line 60, ../sass/components/_homepage.scss */
.homepage-title {
  font-size: 60px;
  line-height: 72px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  padding-top: 2em;
  padding-bottom: 0.5em;
  margin-right: auto;
  margin-left: auto;
  width: 70%;
}
@media all and (min-width: 1440px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 60px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 60px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 40px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    font-size: 32px;
  }
}
@media all and (min-width: 1440px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    line-height: 72px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    line-height: 72px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    line-height: 48px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 60, ../sass/components/_homepage.scss */
  .homepage-title {
    line-height: 42px;
  }
}

/* line 73, ../sass/components/_homepage.scss */
.home-page-photocredit {
  font-size: 8px;
  line-height: 10px;
  color: #fff;
}
/* line 77, ../sass/components/_homepage.scss */
.home-page-photocredit span {
  background: #4a4a4a;
  background: rgba(74, 74, 74, 0.4);
  box-sizing: border-box;
}

/* line 84, ../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 84, ../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 84, ../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 84, ../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 84, ../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 84, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    background-size: 767px auto;
    height: auto;
  }
}

@media all and (min-width: 1100px) {
  /* line 84, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    padding-bottom: 7em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 84, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    padding-bottom: 5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 84, ../sass/components/_homepage.scss */
  .homepage-featured-additional-background {
    padding-bottom: 5em;
  }
}

/* line 134, ../sass/components/_homepage.scss */
.homepage-featured-items-container {
  padding-bottom: 2em;
}
/* line 136, ../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 136, ../sass/components/_homepage.scss */
  .homepage-featured-items-container a.bluebutton {
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 144, ../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 150, ../sass/components/_homepage.scss */
.home-page-featured-item-card-wrapper {
  width: 100%;
  background-color: #fff;
}

/* line 155, ../sass/components/_homepage.scss */
.home-page-featured-item-card-featured-wrapper {
  width: 100%;
}

/* line 158, ../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 161, ../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 161, ../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 172, ../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 .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 {
  -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 172, ../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 .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 {
    -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 172, ../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 .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 {
    width: auto;
    max-width: 100%;
    min-width: inherit;
    margin-bottom: 1em;
  }
}
/* line 187, ../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-top: 0;
  padding-right: 1em;
  padding-left: 2em;
}
@media all and (min-width: 768px) {
  /* line 187, ../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 187, ../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 187, ../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 187, ../sass/components/_homepage.scss */
  .featured-home-page-promoted-card .flexItemText, .featured-home-page-promoted-card .flexItemTextHalf {
    padding-bottom: 0.3em;
    max-width: none;
  }
}

/* line 216, ../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 221, ../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 221, ../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 221, ../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 242, ../sass/components/_homepage.scss */
  .field--name-field-additional-featured-items > .field__item:nth-child(2n) {
    margin-right: 1em;
  }
}

/* line 248, ../sass/components/_homepage.scss */
.field--name-field-additional-featured-items > .field__item:last-child {
  margin-right: 0;
}

/* line 251, ../sass/components/_homepage.scss */
.field--name-field-additional-featured-items > .field__item > a {
  background-color: #fff;
  flex: 1;
}

/* line 256, ../sass/components/_homepage.scss */
.full-height {
  height: 100%;
}

/* line 259, ../sass/components/_homepage.scss */
.home-page-promoted-card {
  height: 100%;
  padding: 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 259, ../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 268, ../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 .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 .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 .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 .homepage-location-container .homepage-location-image img.flexItemImageThird, .homepage-location-container .homepage-location-image .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 .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 .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 .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.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 .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 .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 .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 {
  -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 268, ../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 .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 .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 .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 .homepage-location-container .homepage-location-image img.flexItemImageThird, .homepage-location-container .homepage-location-image .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 .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 .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 .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.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 .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 .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 .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 {
    width: 30%;
  }
}
/* line 274, ../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 0 1em;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 274, ../sass/components/_homepage.scss */
  .home-page-promoted-card .flexItemText {
    width: 65%;
    padding: 1em 1em 0 0;
  }
}

@media all and (min-width: 1100px) {
  /* line 283, ../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 295, ../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 295, ../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 295, ../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 307, ../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 307, ../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 307, ../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 307, ../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 323, ../sass/components/_homepage.scss */
.homepage-health-topics-container .homepage-health-topics-text .homepage-health-topics-text-wrapper {
  width: 100%;
}

/* line 328, ../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 333, ../sass/components/_homepage.scss */
.field--name-field-health-topic-images > .field__item {
  width: 47%;
  margin-right: 0.5em;
  margin-bottom: 0.1em;
}

/* line 338, ../sass/components/_homepage.scss */
ul.health-topic-link-list {
  list-style: none;
  padding: 0;
}
/* line 341, ../sass/components/_homepage.scss */
ul.health-topic-link-list li {
  margin-bottom: 1.5em;
}

/* line 345, ../sass/components/_homepage.scss */
.home-page-mission-background {
  background-color: #fff;
}

/* line 351, ../sass/components/_homepage.scss */
.homepage-mission-areas-container {
  height: auto;
}
@media all and (min-width: 1100px) {
  /* line 351, ../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 351, ../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 351, ../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 351, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container {
    padding-top: 12em;
    padding-bottom: 6em;
  }
}
/* line 372, ../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 377, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text h4 {
  padding-bottom: 1em;
  padding-top: 1.5em;
}
/* line 381, ../sass/components/_homepage.scss */
.homepage-mission-areas-container .homepage-mission-areas-text a.bluebutton {
  margin: 2em 0 0 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 381, ../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 372, ../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 372, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-text {
    padding-right: 0;
    width: 100%;
  }
}
/* line 401, ../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 401, ../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 401, ../sass/components/_homepage.scss */
  .homepage-mission-areas-container .homepage-mission-areas-images {
    display: none;
  }
}

/* line 412, ../sass/components/_homepage.scss */
.homepage-organization-container {
  padding-bottom: 2em;
}

@media all and (min-width: 1100px) {
  /* line 416, ../sass/components/_homepage.scss */
  h2.homepage-location-title, .homepage-location-title.contact-method-label {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 416, ../sass/components/_homepage.scss */
  h2.homepage-location-title, .homepage-location-title.contact-method-label {
    padding-top: 0.2em;
    padding-bottom: 0.5em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 416, ../sass/components/_homepage.scss */
  h2.homepage-location-title, .homepage-location-title.contact-method-label {
    padding-top: 0.2em;
    padding-bottom: 0.5em;
  }
}

/* line 431, ../sass/components/_homepage.scss */
.homepage-location-container {
  padding-bottom: 2em;
}
/* line 435, ../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 435, ../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 435, ../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 435, ../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 453, ../sass/components/_homepage.scss */
.homepage-location-container .homepage-location-text .mapLocation {
  float: none;
}
/* line 455, ../sass/components/_homepage.scss */
.homepage-location-container .homepage-location-text .mapLocation h3 {
  color: #575b5e;
}
/* line 460, ../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 460, ../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 460, ../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 460, ../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 481, ../sass/components/_homepage.scss */
.homepage-view-button a.bluebutton {
  margin: 1.5em 0;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 481, ../sass/components/_homepage.scss */
  .homepage-view-button a.bluebutton {
    margin-left: auto;
    margin-right: auto;
  }
}

/* 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, #banner-promotion-wrapper .topicFeatured .view-content, .topicFeatured #banner-promotion-wrapper .view-content, #banner-promotion-wrapper .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured #banner-promotion-wrapper article, #banner-promotion-wrapper .previous-directors-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-title {
  font-size: 18px;
  font-family: Lato, Verdana, Arial, sans-serif;
  text-transform: uppercase;
  padding-bottom: 1em;
}
@media all and (min-width: 1440px) {
  /* line 22, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 18px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 22, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 22, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 16px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 22, ../sass/components/_banner_promotion.scss */
  .banner-promotion-title {
    font-size: 14px;
  }
}
/* line 27, ../sass/components/_banner_promotion.scss */
.banner-promotion-title .blue-promotion-text {
  color: #1C578B;
}
/* line 30, ../sass/components/_banner_promotion.scss */
.banner-promotion-title .red-promotion-text {
  color: #ae304d;
}

/* line 34, ../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 34, ../sass/components/_banner_promotion.scss */
  .banner-promotion-container-wrapper {
    padding-bottom: 3rem;
  }
}

/* line 41, ../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 41, ../sass/components/_banner_promotion.scss */
  .banner-promotion-container {
    padding-left: 70px;
  }
}

/* line 49, ../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 .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 {
  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: #102d66;
}
/* 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 .contact-method-label {
  color: #fff;
  padding-top: 20px;
}
/* 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: 1em;
  }
}
/* 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 {
  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 {
  color: #144571;
}
/* line 54, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .singlePublicationCard {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1.5em;
}
/* line 60, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-authors {
  margin-bottom: 1em;
}
/* line 64, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-volume, .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-date, .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications .field--name-field-publication-issue {
  display: inline;
}
/* line 68, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button {
  padding: .5em 1.5em .5em 1.5em;
  display: table;
  border-radius: 38px;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  cursor: pointer;
  padding: 0.5em 3.5em;
  color: #fff;
  text-decoration: none;
  background-color: #1a568c;
  border: 1px solid #1a568c;
  clear: both;
  margin: 1em auto;
  padding: 0.5em 3.5em;
  border: 1px solid #fff;
}
/* line 1299, ../sass/_mixins.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button :hover {
  color: #3885ca;
  background-color: transparent;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 68, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button {
    padding: 0.35em 2.5em;
  }
}
/* line 1339, ../sass/_mixins.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button:hover {
  background-color: #144571;
  border-color: #144571;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 68, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button {
    padding: 0.35em 2.5em;
  }
}
/* line 1352, ../sass/_mixins.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button a:hover {
  text-decoration: none;
}
/* line 72, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .publicationsContainer .views-element-container .view-nhlbi-research-publications a.button:hover {
  background-color: #3885ca;
  border-color: #3885ca;
}
/* line 83, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .pale-blue-darker-white-background {
  background-color: #f1f7fb;
}
/* line 85, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .pale-blue-darker-white-background .content-container, .node--type-science-supplemental .pale-blue-darker-white-background .topicFeatured .view-content, .topicFeatured .node--type-science-supplemental .pale-blue-darker-white-background .view-content, .node--type-science-supplemental .pale-blue-darker-white-background .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .node--type-science-supplemental .pale-blue-darker-white-background article, .node--type-science-supplemental .pale-blue-darker-white-background .previous-directors-container {
  padding-top: 40px;
  margin-top: 0;
}
/* line 91, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .pi-container h3 {
  padding: 20px 0;
}
/* line 96, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background {
  background-color: #f4f4f4;
  padding-bottom: 20px;
}
/* line 98, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background h1, .node--type-science-supplemental .secondary-gray-background h3 {
  background-color: #f4f4f4;
}
/* line 101, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background div.ui-accordion-content {
  background-color: #f4f4f4;
}
/* line 105, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .field--name-field-science-accordion > .field__item {
  padding-bottom: 10px;
}
/* line 109, ../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 114, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .readMoreButton {
  margin-top: 0;
  padding-top: 1em;
}
/* line 122, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .ui-accordion-content {
  padding: 0;
}
/* line 126, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .node__content {
  padding-bottom: 30px;
}
/* line 130, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .secondary-gray-background .content-container, .node--type-science-supplemental .secondary-gray-background .topicFeatured .view-content, .topicFeatured .node--type-science-supplemental .secondary-gray-background .view-content, .node--type-science-supplemental .secondary-gray-background .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .node--type-science-supplemental .secondary-gray-background article, .node--type-science-supplemental .secondary-gray-background .previous-directors-container {
  margin-top: 0;
  padding-top: 20px;
}
/* line 137, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .bluesubhead {
  font-size: 16px;
  line-height: 22px;
  color: #3885ca;
  font-family: Lato, Verdana, Arial, sans-serif;
}
@media all and (min-width: 1440px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 16px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 14px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    font-size: 12px;
  }
}
@media all and (min-width: 1440px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    line-height: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    line-height: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    line-height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 137, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .bluesubhead {
    line-height: 18px;
  }
}
/* line 141, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .bluesubhead .field--name-field-related-research-topics {
  padding-top: 1em;
}
/* line 146, ../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 148, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .principal-investigator .memberphoto {
  margin: 25px;
}
/* line 150, ../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 150, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .principal-investigator .memberphoto img {
    width: 125px;
    height: 125px;
  }
}
@media all and (min-width: 1100px) {
  /* line 150, ../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 150, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .principal-investigator .memberphoto img {
    width: 90px;
    height: 90px;
  }
}
/* line 172, ../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 177, ../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: 22px;
  line-height: 30px;
}
@media all and (min-width: 1440px) {
  /* line 177, ../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: 22px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 177, ../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: 22px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../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: 18px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../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: 16px;
  }
}
@media all and (min-width: 1440px) {
  /* line 177, ../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 {
    line-height: 30px;
  }
}
@media all and (min-width: 1100px) and (max-width: 1399px) {
  /* line 177, ../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 {
    line-height: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 177, ../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 {
    line-height: 26px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 177, ../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 {
    line-height: 24px;
  }
}
/* line 181, ../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 194, ../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 194, ../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 194, ../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 194, ../sass/components/_science_supplemental.scss */
  .node--type-science-supplemental .flexitem-3-2-1 {
    width: 40%;
  }
}
/* line 210, ../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 212, ../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 217, ../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 222, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .card-row {
  width: 80%;
  margin: auto;
  padding: 20px 0px;
}
/* line 228, ../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 234, ../sass/components/_science_supplemental.scss */
.node--type-science-supplemental .flexitem-3-2-1 .memberphoto {
  margin: 25px;
}
/* line 236, ../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 252, ../sass/components/_science_supplemental.scss */
.member-links a {
  display: inline-block;
  padding-top: 0.5em;
}

/* line 258, ../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 263, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni > .field__item {
  border: 3px solid #d7e7f4;
  width: 30%;
  margin: 0 1em 1em 0;
}
/* line 267, ../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 263, ../sass/components/_science_supplemental.scss */
  .field--name-field-alumni > .field__item {
    width: 45%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 263, ../sass/components/_science_supplemental.scss */
  .field--name-field-alumni > .field__item {
    width: auto;
    margin-right: 0;
  }
}
/* line 279, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni > .field__item .profileheader div, .field--name-field-alumni > .field__item .bodytext div, .field--name-field-alumni > .field__item .darkGrayBodyText div, .field--name-field-alumni > .field__item .foa-expiration-date div {
  display: inline;
}
/* line 283, ../sass/components/_science_supplemental.scss */
.field--name-field-alumni > .field__item .bodytext, .field--name-field-alumni > .field__item .darkGrayBodyText, .field--name-field-alumni > .field__item .foa-expiration-date {
  margin-top: 1em;
}

/* line 289, ../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 289, ../sass/components/_science_supplemental.scss */
  .prev-next {
    margin-top: 3.5em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 289, ../sass/components/_science_supplemental.scss */
  .prev-next {
    margin-top: 3em;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 289, ../sass/components/_science_supplemental.scss */
  .prev-next {
    flex-direction: column;
    margin-top: 2em;
  }
}

/* line 303, ../sass/components/_science_supplemental.scss */
.prev-next-item {
  flex: 1 1 0;
}
/* line 305, ../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 311, ../sass/components/_science_supplemental.scss */
.prev-next-item .previous-arrow-icon, .prev-next-item .previousNavigation {
  float: left;
}
/* line 314, ../sass/components/_science_supplemental.scss */
.prev-next-item .next-arrow-icon, .prev-next-item .nextNavigation {
  float: right;
}
/* line 318, ../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 324, ../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 330, ../sass/components/_science_supplemental.scss */
.prev-next-details .image img {
  display: block;
}
/* line 334, ../sass/components/_science_supplemental.scss */
.prev-next-details .date-title {
  padding: 5px 20px;
}

/* 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;
}
@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;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 10, ../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;
  }
}
/* line 18, ../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 24, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-download,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download {
  margin-bottom: 0.5em;
}
/* line 27, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
}
/* line 32, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-download > .field__item:hover > a,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-download > .field__item:hover > a {
  color: #fff;
}
/* line 36, ../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 40, ../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 40, ../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 40, ../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 59, ../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 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 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-subscribe h3.publicationTitle,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.primary-blue-publication-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 h3.publicationTitle > a:link,
.node--type-nhlbi-publication.node--view-mode-subscribe h3.primary-blue-publication-title > a:link {
  color: #1a568c;
}
/* line 62, ../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;
  margin-bottom: 1em;
}
@media all and (min-width: 1100px) {
  /* line 62, ../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 62, ../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 62, ../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 76, ../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;
}
@media all and (min-width: 1100px) {
  /* line 76, ../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%;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 76, ../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%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 76, ../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: auto;
  }
}
/* line 90, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* line 94, ../sass/components/_nhlbi_publications.scss */
.node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
.node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image {
  min-width: auto;
}
@media all and (min-width: 1100px) {
  /* line 94, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image {
    max-width: 35%;
    min-width: 35%;
    margin-right: 1em;
  }
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 94, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image {
    max-width: 35%;
    min-width: 35%;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 94, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf, .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .hero-image,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImage,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageTenth,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThird,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemImageThirdHalf,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .hero-image {
    max-width: 25%;
    min-width: 25%;
  }
}
@media all and (min-width: 1100px) {
  /* line 110, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 0em) and (max-width: 1099px) {
  /* line 110, ../sass/components/_nhlbi_publications.scss */
  .node--type-nhlbi-publication.node--view-mode-full .field--name-field-related-nhlbi-publications > .field__item article .flexItemText,
  .node--type-nhlbi-publication.node--view-mode-subscribe .field--name-field-related-nhlbi-publications > .field__item article .flexItemText {
    padding: 0 0 0 1em;
  }
}
@media all and (min-width: 1100px) {
  /* line 120, ../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 125, ../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 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: black;
}
/* line 21, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input {
  height: 35px;
}
/* line 25, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar select {
  color: black;
}
/* line 30, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button {
  display: flex;
}
/* line 32, ../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 37, ../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 46, ../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 46, ../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 46, ../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 46, ../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 46, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #text-input-cross {
    background-position: left center;
    height: 35px;
  }
}
/* line 70, ../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 76, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .form-autocomplete#edit-name {
  padding: 0 0 0 35px;
}
/* line 80, ../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 93, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters {
  float: right;
  cursor: pointer;
  margin: 0;
  height: 35px;
}
/* line 97, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters p {
  line-height: 35px;
  margin: 0;
  text-align: left;
  vertical-align: middle;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 97, ../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 93, ../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 93, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar #edit-add-other-filters {
    height: 35px;
  }
}
/* line 116, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #edit-selected-terms {
  margin: 0;
}
/* line 121, ../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 121, ../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 121, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .search-icon {
    background-size: 20px 20px;
    height: 20px;
  }
}
/* line 131, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete {
  background-image: none;
  padding-left: 30px;
  height: 35px;
}
/* line 134, ../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 131, ../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 131, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete {
    height: 35px;
  }
}
/* line 147, ../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 147, ../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 147, ../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 147, ../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 147, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar input.form-autocomplete.ui-autocomplete-loading {
    height: 35px;
  }
}
/* line 159, ../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 159, ../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 159, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
    background-size: 25px 25px;
    height: 25px;
  }
}
/* line 163, ../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 159, ../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 159, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button #edit-name {
    height: 35px;
  }
}
/* line 176, ../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 176, ../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 176, ../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 176, ../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 176, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .searchbar-text-button input.form-text {
    height: 35px;
  }
}
/* line 189, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .edit-selected-terms {
  margin: 0;
}
/* line 195, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #division-selected-filters:not(:first-child) .selected-filter-options {
  margin-left: 10px;
}
/* line 199, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar #sfa-selected-filters:not(:first-child) .selected-filter-options {
  margin-left: 10px;
}
/* line 204, ../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 215, ../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 215, ../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 215, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .delete-sfa-filter {
    background-size: 15px 15px;
    height: 15px;
  }
}
/* line 224, ../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 224, ../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 224, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .delete-division-filter {
    background-size: 15px 15px;
    height: 15px;
  }
}
/* line 232, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .sfa-selected-filters {
  float: left;
}
/* line 235, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .division-selected-filters {
  float: left;
}
/* line 239, ../sass/components/_filters.scss */
.nhlbi-searchbar-container .nhlbi-searchbar .selected-filters {
  float: left;
  padding-right: 10px;
}
/* line 245, ../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 245, ../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 245, ../sass/components/_filters.scss */
  .nhlbi-searchbar-container .nhlbi-searchbar .selected-filters-cross {
    background-size: 15px 15px;
    height: 15px;
  }
}
/* line 256, ../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 266, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar-container .nhlbi-searchbar #edit-name.form-autocomplete {
  padding-left: 45px;
}

/* line 273, ../sass/components/_filters.scss */
.scope-search-grants {
  padding-bottom: 20px;
}

/* line 279, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar {
  margin: 0 auto;
  border-radius: 16px;
  padding: 12px;
  width: 80%;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 279, ../sass/components/_filters.scss */
  .scope-search .nhlbi-searchbar {
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
  }
}
/* line 290, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .form-type-textfield {
  margin: 0;
}
/* line 293, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .nhlbi-search-autocomplete {
  display: flex;
}
/* line 296, ../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 302, ../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 312, ../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 319, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .form-type-textfield {
  width: 100%;
}
/* line 324, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar #edit-submit {
  height: 40px;
}
/* line 327, ../sass/components/_filters.scss */
.scope-search .nhlbi-searchbar .input-container {
  width: 100%;
}

/* line 335, ../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 348, ../sass/components/_filters.scss */
.filters-lightbox-buttons, .filters-wrapper {
  display: block;
  position: relative;
  top: 200px;
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 348, ../sass/components/_filters.scss */
  .filters-lightbox-buttons, .filters-wrapper {
    top: 50px;
  }
}
/* line 355, ../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 355, ../sass/components/_filters.scss */
  .filters-lightbox-buttons .center-align, .filters-wrapper .center-align {
    width: 300px;
  }
}
/* line 364, ../sass/components/_filters.scss */
.filters-lightbox-buttons .filtertitle, .filters-wrapper .filtertitle {
  padding: 10px 20px;
  margin: 0;
  text-align: left;
  background-color: #1a568c;
}
/* line 368, ../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;
  padding: 5px 25px 0 0;
  background-position: right 10px center;
}
@media all and (min-width: 768px) and (max-width: 1099px) {
  /* line 368, ../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 368, ../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 368, ../sass/components/_filters.scss */
  .filters-lightbox-buttons .filtertitle .close-button, .filters-wrapper .filtertitle .close-button {
    padding-right: 10px;
  }
}
/* line 383, ../sass/components/_filters.scss */
.filters-lightbox-buttons .filtertitle span, .filters-wrapper .filtertitle span {
  float: right;
}
/* line 388, ../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: black;
}
/* line 398, ../sass/components/_filters.scss */
.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 #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 404, ../sass/components/_filters.scss */
.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 #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 408, ../sass/components/_filters.scss */
.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 #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 408, ../sass/components/_filters.scss */
  .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 #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 408, ../sass/components/_filters.scss */
  .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 #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 414, ../sass/components/_filters.scss */
.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 #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 418, ../sass/components/_filters.scss */
.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 #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: black;
}
/* line 423, ../sass/components/_filters.scss */
.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 #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 431, ../sass/components/_filters.scss */
.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 #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 434, ../sass/components/_filters.scss */
.filters-lightbox-buttons #sfa_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #division_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #doc_type_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #release_date_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #expiration_date_filter .js-form-type-checkbox h3.filtertitle,
.filters-lightbox-buttons #cc_cq_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #objective_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons #start_date_filter .js-form-type-checkbox h3.filtertitle, .filters-lightbox-buttons .options-button-wrapper .js-form-type-checkbox h3.filtertitle, .filters-wrapper #sfa_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #division_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #doc_type_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #release_date_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #expiration_date_filter .js-form-type-checkbox h3.filtertitle,
.filters-wrapper #cc_cq_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #objective_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper #start_date_filter .js-form-type-checkbox h3.filtertitle, .filters-wrapper .options-button-wrapper .js-form-type-checkbox h3.filtertitle {
  margin: 0;
}
/* line 440, ../sass/components/_filters.scss */
.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 #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 447, ../sass/components/_filters.scss */
.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 #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 457, ../sass/components/_filters.scss */
.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 #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 459, ../sass/components/_filters.scss */
.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 #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 461, ../sass/components/_filters.scss */
.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 #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 466, ../sass/components/_filters.scss */
.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 #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 469, ../sass/components/_filters.scss */
.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 #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 475, ../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 478, ../sass/components/_filters.scss */
.filters-lightbox-buttons .form-type-checkbox label, .filters-wrapper .form-type-checkbox label {
  cursor: pointer;
}

/* line 484, ../sass/components/_filters.scss */
#edit-add-other-filters-buttons {
  margin: 0;
}

/* line 489, ../sass/components/_filters.scss */
#edit-filter-ajax-submit {
  display: none;
}

/* line 493, ../sass/components/_filters.scss */
#clear-all {
  float: right;
}

/* line 497, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #1a568c 75px, #ffffff 76px) repeat scroll 0 0;
}
/* line 499, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient .content-container, .primaryBlueBackgroundGradient .topicFeatured .view-content, .topicFeatured .primaryBlueBackgroundGradient .view-content, .primaryBlueBackgroundGradient .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .primaryBlueBackgroundGradient article, .primaryBlueBackgroundGradient .previous-directors-container {
  margin-top: 0px;
}

/* line 504, ../sass/components/_filters.scss */
.tertiaryBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #102d66 75px, #ffffff 76px) repeat scroll 0 0;
}
/* line 506, ../sass/components/_filters.scss */
.tertiaryBlueBackgroundGradient .content-container, .tertiaryBlueBackgroundGradient .topicFeatured .view-content, .topicFeatured .tertiaryBlueBackgroundGradient .view-content, .tertiaryBlueBackgroundGradient .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .tertiaryBlueBackgroundGradient article, .tertiaryBlueBackgroundGradient .previous-directors-container {
  margin-top: 0px;
}

/* line 511, ../sass/components/_filters.scss */
.lightBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #ffffff 75px, #d7e7f4 76px) repeat scroll 0 0;
}
/* line 513, ../sass/components/_filters.scss */
.lightBlueBackgroundGradient .content-container, .lightBlueBackgroundGradient .topicFeatured .view-content, .topicFeatured .lightBlueBackgroundGradient .view-content, .lightBlueBackgroundGradient .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .lightBlueBackgroundGradient article, .lightBlueBackgroundGradient .previous-directors-container {
  margin-top: 0px;
}

/* line 518, ../sass/components/_filters.scss */
.darkRedBackgroundGradient {
  background: transparent linear-gradient(180deg, #ffffff 75px, #850920 76px) repeat scroll 0 0;
}
/* line 520, ../sass/components/_filters.scss */
.darkRedBackgroundGradient .content-container, .darkRedBackgroundGradient .topicFeatured .view-content, .topicFeatured .darkRedBackgroundGradient .view-content, .darkRedBackgroundGradient .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .darkRedBackgroundGradient article, .darkRedBackgroundGradient .previous-directors-container {
  margin-top: 0px;
}

/* line 526, ../sass/components/_filters.scss */
.lightBlueBackgroundGradientReverse {
  background: transparent linear-gradient(180deg, #d7e7f4 75px, #ffffff 76px) repeat scroll 0 0;
}
/* line 528, ../sass/components/_filters.scss */
.lightBlueBackgroundGradientReverse .content-container, .lightBlueBackgroundGradientReverse .topicFeatured .view-content, .topicFeatured .lightBlueBackgroundGradientReverse .view-content, .lightBlueBackgroundGradientReverse .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .lightBlueBackgroundGradientReverse article, .lightBlueBackgroundGradientReverse .previous-directors-container {
  margin-top: 0px;
}

/* line 535, ../sass/components/_filters.scss */
#filter_results_wrapper ul {
  list-style: outside none none;
}
/* line 537, ../sass/components/_filters.scss */
#filter_results_wrapper ul li {
  border-bottom: 1px solid #bcbcbc;
  margin-bottom: 1em;
  padding: 0 0 10px 10px;
}
/* line 542, ../sass/components/_filters.scss */
#filter_results_wrapper ul li:last-child {
  border-bottom: none;
}

/* line 552, ../sass/components/_filters.scss */
.view-filters .nhlbi-searchbar {
  width: 100%;
  box-sizing: border-box;
}

/* line 557, ../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 557, ../sass/components/_filters.scss */
  .filter-no-matches {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 557, ../sass/components/_filters.scss */
  .filter-no-matches {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 564, ../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: black;
}

/* line 569, ../sass/components/_filters.scss */
#filter_results_wrapper .center-align {
  text-align: center;
  background-color: white;
  display: table;
  margin-right: auto;
  margin-left: auto;
}

/* line 580, ../sass/components/_filters.scss */
#nhlbi-science-filter .ajax-progress {
  display: table;
  margin: auto;
}
/* line 585, ../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 585, ../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 585, ../sass/components/_filters.scss */
  #nhlbi-science-filter .ajax-progress-throbber .throbber {
    background-size: 55px 55px;
    height: 55px;
  }
}
/* line 593, ../sass/components/_filters.scss */
#nhlbi-science-filter .ajax-progress-throbber .message {
  display: none;
}

/* line 603, ../sass/components/_filters.scss */
.selected-filter-options .selected-filters-cross {
  background-color: transparent;
}

/* line 608, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-state-focus {
  border: none;
  background: none;
}
/* line 612, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-state-focus a {
  background-color: white;
  cursor: pointer;
  color: #3885CA;
}
/* line 616, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-state-focus a span {
  background-color: #f1f7fb;
  border-bottom: 1px solid #3885CA;
}
/* line 626, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu li.ui-menu-item {
  margin: 10px;
  padding: 0;
}
/* line 631, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu a {
  color: #3885CA;
}
/* line 633, ../sass/components/_filters.scss */
.ui-autocomplete.ui-menu a span {
  padding: 5px;
}

/* line 639, ../sass/components/_filters.scss */
.ui-autocomplete.ui-widget-content {
  border: 1px solid #D7D7D7;
  max-width: 60% !important;
}

/* line 645, ../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 645, ../sass/components/_filters.scss */
  .ui-autocomplete-loading1 {
    background-size: 20px 20px;
    height: 20px;
  }
}
@media all and (min-width: 0em) and (max-width: 767px) {
  /* line 645, ../sass/components/_filters.scss */
  .ui-autocomplete-loading1 {
    background-size: 20px 20px;
    height: 20px;
  }
}

/* line 652, ../sass/components/_filters.scss */
input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/* line 653, ../sass/components/_filters.scss */
input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* line 657, ../sass/components/_filters.scss */
#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 660, ../sass/components/_filters.scss */
#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 667, ../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 672, ../sass/components/_filters.scss */
#views-exposed-form-nhlbi-grants-foa-block-1 .form-text {
  border: medium none;
}

/* line 677, ../sass/components/_filters.scss */
.all-grants-foa-container .views-element-container {
  width: 100%;
}
/* line 679, ../sass/components/_filters.scss */
.all-grants-foa-container .views-element-container .filter-no-matches {
  margin: auto;
}
/* line 682, ../sass/components/_filters.scss */
.all-grants-foa-container .views-element-container #filter_results_wrapper {
  background-color: white;
}

/* line 688, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient {
  background: transparent linear-gradient(180deg, #1a568c 75px, #ffffff 76px) repeat scroll 0 0;
}
/* line 690, ../sass/components/_filters.scss */
.primaryBlueBackgroundGradient .content-container, .primaryBlueBackgroundGradient .topicFeatured .view-content, .topicFeatured .primaryBlueBackgroundGradient .view-content, .primaryBlueBackgroundGradient .executive-news--landing .topicFeatured article, .executive-news--landing .topicFeatured .primaryBlueBackgroundGradient article, .primaryBlueBackgroundGradient .previous-directors-container {
  margin-top: 0px;
}

/* 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;
  }

  /* line 33, ../sass/_print.scss */
  h2, .contact-method-label, h3 {
    page-break-after: avoid;
  }

  /* line 37, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 46, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 52, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 58, ../sass/_print.scss */
  #content {
    width: 100% !important;
  }

  /* Turn off any background colors or images. */
  /* line 66, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
  }

  /* Move breadcrumb to bottom of page */
  /* Hide sidebars and nav elements. */
  /* line 88, ../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 139, ../sass/_print.scss */
  .ui-accordion-content, .ui-accordion-header {
    display: block !important;
  }
}
