/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * To FORCE PRINT all selectors you can search and replace a single { (opening
 * curly brace) and insert an empty comment. This is very useful in conjuction
 * with FireSass: https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
html {
  background: #fff;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 100%;
  color: #484848;
}

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: #11294b;
}

h1 {
  font-size: 32px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  margin: 15px 0;
}

h2 {
  font-size: 26px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  margin: 15px 0;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
}

h6 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0;
}

p {
  margin: 10px 0;
}

blockquote {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 18px;
  padding: 5px 20px;
  border-left: 7px solid #4b9cd3;
  font-weight: bold;
}

figcaption {
  font-size: .8em;
  font-style: italic;
  padding: 5px 10px;
  margin-top: -7px;
}

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}

a {
  text-decoration: underline;
  color: #007FAE;
}

a:hover, a:focus {
  color: #13294b;
}

img {
  max-width: 100%;
}

/* =============================================================================
 *   Wrappers
 * ========================================================================== */
/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps the header
 */
#header-wrapper {
  padding-bottom: 50px;
  background: url("images/banner_ltblue.png") bottom left no-repeat;
  background-size: 100% auto;
}

body.front #header-wrapper {
  padding-bottom: 0;
  background-image: none;
}

#header-wrapper-inner {
  background: #0f294b url("images/banner_bg.png") bottom left no-repeat;
  background-size: auto 100%;
}

#tertiary-content-wrapper {
  background: #F5F6F7 url("images/tertiary_bg.png") top right no-repeat;
  background-size: auto 100%;
  padding: 20px 0;
  margin-top: 30px;
}

body.front #tertiary-content-wrapper {
  background: none;
  padding: 5px 0 35px 0;
}

#footer-wrapper {
  background: #13294b;
  color: #fff;
}

/* =============================================================================
 *   Header and Branding
 * ========================================================================== */
#header {
  height: 100px;
}

#header .block {
  margin-bottom: 0;
}

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {
  position: absolute;
  top: 30px;
  width: 420px;
  padding: 20px 0px 20px 20px;
  clear: left;
  margin-right: 0;
  z-index: 998;
}

body.admin-menu #branding {
  top: 60px;
}

/*
 * Logo
 */
#logo {
  padding: 10px 0;
}

#logo img {
  vertical-align: bottom;
  max-width: 100%;
}

#logo a {
  display: block;
}

#logo a:focus {
  border: 1px dotted #fff;
}

/* header content */
.region-header .block {
  float: right;
  text-align: right;
}

.region-header .block-superfish {
  margin: 20px 0 5px 0;
  clear: right;
}

.region-header .social {
  display: inline-block;
  margin-right: 15px;
}

.region-header .social a {
  display: block;
}

.region-header .social a:focus {
  border: 1px dotted #fff;
}

#block-block-10 {
  margin: 15px 0px 0 0;
}

/* search form in header */
#block-block-12 {
  float: right;
  margin: 12px 20px 0 0;
  border-left: 2px solid #fff;
  padding-bottom: 2px;
}

#block-block-12 p {
  margin: 0;
}

.overlay {
  height: 140px;
  width: 400px;
  display: none;
  position: absolute;
  z-index: 1000;
  top: 80px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
}

/* The content */
.overlay-content {
  position: relative;
  width: auto;
  text-align: center;
  margin-top: 20px;
  margin-left: 30px;
}

.overlay-content h2 {
  text-align: left;
  font-size: 1.1em;
  padding-left: 5px;
}

.overlay-content label {
  text-align: left;
  font-size: .9em;
}

.overlay-content .views-exposed-form .views-exposed-widget {
  float: left;
  padding: 0 0 0 7px;
}

.overlay-content .views-exposed-widget .form-submit {
  margin-top: 22px;
  background-color: #b4d856;
  padding: 6px 10px;
  font-size: 16px;
  border: 3px solid #b4d856;
  font-weight: bold;
  max-width: 95%;
  text-decoration: none;
}

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 40px;
  line-height: 40px;
  cursor: pointer;
  color: #b4d856;
  z-index: 1000;
}

.overlay .closebtn:hover,
.overlay .closebtn:focus {
  color: #006548;
}

/* Style the search field */
.overlay .form-item input.form-text {
  padding: 7px;
  font-size: 17px;
  float: left;
  width: 200px;
  background: white;
}

.overlay input[type=text]:hover,
.overlay input[type=text]:focus {
  background: #f1f1f1;
}

/* Style the open button */
button.openBtn {
  color: transparent;
  font-size: 1px;
  background: url("images/search.png") center center no-repeat;
  background-size: 24px 24px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  border: 0;
}

/* =============================================================================
 *   Superfish
 * ========================================================================== */
/* hide menu items at full size */
li#menu-1713-1,
li#menu-1714-1,
li#menu-1715-1,
li#menu-1716-1 {
  display: none;
}

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 15px;
  text-decoration: none;
  color: #fff;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1em;
}

ul.sf-menu li:hover, ul.sf-menu li.sfHover {
  outline: 0;
}

ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish ul {
  margin: 0;
  padding: 0;
  padding-left: 0 !important;
}

.block-superfish ul li a:hover, .block-superfish ul li a:focus {
  text-decoration: underline;
}

.block-superfish ul ul {
  background-color: #fff;
  padding: 0;
  color: #11294b;
  box-shadow: 1px 1px 2px #bbb;
}

.block-superfish ul ul li a {
  font-size: .9em;
  color: #11294b;
  padding: 7px 15px;
  line-height: 150%;
}

.block-superfish ul ul li a:hover, .block-superfish ul ul li a:focus {
  background-color: #13294b;
  color: #fff;
  text-decoration: none;
}

.block-superfish li {
  margin: 0;
  padding: 0;
}

.block-superfish .sf-menu li > ul {
  top: 2em;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}

/* mobile menu from sils */
.sf-accordion-toggle a {
  display: block;
  float: right;
  width: 50px;
  background: url("images/menu-wh.png") no-repeat;
  background-size: 35px auto;
  color: transparent;
  height: 35px;
  padding-left: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  font-size: 1px;
  margin: 20px 0px 0 0;
}

.sf-accordion-toggle a.sf-expanded {
  background: url("images/menu-wh.png") no-repeat;
  background-size: 35px auto;
}

nav#block-superfish-1 ul#superfish-1-accordion {
  width: 100%;
  background: #fff;
  padding-top: 20px !important;
  padding-bottom: 0px;
}

body.front nav#block-superfish-1 ul#superfish-1-accordion {
  border-bottom: 1px solid #11294b;
}

nav#block-superfish-1 ul#superfish-1-accordion ul {
  box-shadow: none;
}

nav#block-superfish-1 ul#superfish-1-accordion li {
  float: none;
  clear: both;
}

nav#block-superfish-1 ul#superfish-1-accordion li a {
  font-size: 1.1em;
  padding: 10px 30px;
  color: #11294b;
  font-weight: 600;
  line-height: 150%;
}

nav#block-superfish-1 ul#superfish-1-accordion li a:hover, nav#block-superfish-1 ul#superfish-1-accordion li a:focus {
  background-color: #11294b;
  color: #fff;
}

nav#block-superfish-1 ul#superfish-1-accordion li a.menuparent {
  background: url("images/down-bl.png") 95% center no-repeat;
  background-size: 20px auto;
}

nav#block-superfish-1 ul#superfish-1-accordion li a.menuparent:hover, nav#block-superfish-1 ul#superfish-1-accordion li a.menuparent:focus {
  color: #11294b;
  text-decoration: underline;
}

nav#block-superfish-1 ul#superfish-1-accordion li li a {
  padding-left: 60px;
}

nav#block-superfish-1 ul#superfish-1-accordion li li a:hover, nav#block-superfish-1 ul#superfish-1-accordion li li a:focus {
  color: #fff;
}

nav#block-superfish-1 ul#superfish-1-accordion li li a.menuparent {
  background-image: none;
}

nav#block-superfish-1 ul#superfish-1-accordion li.sf-expanded a.sf-depth-1.menuparent {
  background: url("images/up-bl.png") 95% center no-repeat;
  background-size: 20px auto;
}

/* specific menu items */
/*social */
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1714-1,
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1715-1,
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1716-1 {
  clear: both;
  display: inline-block;
  width: 50px;
  text-align: center;
  padding: 0 0 10px 0;
  margin-top: 15px;
}

/* line 946, C:/Bitnami/Drupal7/apps/drupal/htdocs/sites/all/themes/sils_nmc/sass/global.styles.scss */
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1714-1 a,
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1715-1 a,
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1716-1 a {
  font-size: 1px;
  color: transparent;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("images/FB.png") center center no-repeat;
  background-size: 30px auto;
  padding: 0;
  margin: 10px 20px 20px 30px;
}

/* line 960, C:/Bitnami/Drupal7/apps/drupal/htdocs/sites/all/themes/sils_nmc/sass/global.styles.scss */
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1715-1 a {
  background: url("images/Twitter.png") center center no-repeat;
  background-size: 30px auto;
}

/* line 969, C:/Bitnami/Drupal7/apps/drupal/htdocs/sites/all/themes/sils_nmc/sass/global.styles.scss */
.region-header nav#block-superfish-1 ul#superfish-1-accordion li#menu-1716-1 a {
  background: url("images/Linkedin.png") center center no-repeat;
  background-size: 30px auto;
}

/* =============================================================================
 *   Footer and footer top (tertiary region)
 * ========================================================================== */
.region-footer {
  padding: 20px;
}

.region-footer .footer-left {
  float: left;
  width: 400px;
  padding-top: 15px;
}

.region-footer .footer-left p {
  line-height: 135%;
  font-size: .9em;
}

.region-footer .footer-right {
  float: right;
  padding-top: 10px;
}

.region-footer .footer-right a {
  color: #fff;
  text-decoration: none;
}

.region-footer .footer-right a:hover, .region-footer .footer-right a:focus {
  color: #4b9cd3;
  text-decoration: underline;
}

.region-footer .footer-right ul {
  display: block;
  float: left;
  margin: 0 50px 0 0;
  list-style-type: none;
  list-style-image: none;
}

.region-footer .footer-right ul li {
  list-style-type: none;
  list-style-image: none;
  margin: 5px 0;
}

.simple-footer {
  padding: 30px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.simple-footer h2, .simple-footer p {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  height: 40px;
  line-height: 40px;
}

.simple-footer h2 {
  padding-right: 25px;
}

.simple-footer a.social {
  padding-right: 15px;
  display: inline-block;
}

.simple-footer .simple-footer-left {
  border-right: 1px solid #ccc;
  width: 55%;
}

.simple-footer .simple-footer-right {
  width: 45%;
}

/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
/*
 * The main page title (h1)
 */
#page-title {
  margin: 30px 0;
  font-weight: bold;
  font-size: 32px;
  line-height: 140%;
  color: #11294b;
}

#page-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  border-bottom: 3px solid #4b9cd3;
}

/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
/*
 * Feed icons
 */
/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}

.attribution a {
  text-decoration: none;
  color: inherit;
}

.attribution a:hover, .attribution a:focus {
  text-decoration: underline;
}

/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Sidebars - targets both
 */
.sidebar {
  padding-top: 74px;
}

#columns {
  padding: 0 15px;
}

/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */
.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.at-mt .at-menu-toggle-button {
  margin: 0;
}

.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}

/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu li {
  margin: 0;
}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}

/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}

.book-navigation .menu {
  margin-left: 0;
}

/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
.block-easy-breadcrumb {
  margin: 20px 0 0 0;
  padding: 0 15px;
  font-size: .8em;
  /* If the label is set to show in theme settings the label class is added */
}

.block-easy-breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

.block-easy-breadcrumb .breadcrumb-label:after {
  content: ":";
}

.block-easy-breadcrumb ol {
  margin: 0;
  padding: 0;
}

.block-easy-breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

.block-easy-breadcrumb li {
  list-style: none;
  display: inline;
}

/* =============================================================================
 *   Pagers
 * ========================================================================== */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}

ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link, #skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
  outline: 0;
}

/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}

ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}

ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}

ul.primary li a:hover, ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}

ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}

ul.secondary li a:hover, ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}

/* =============================================================================
 *   Action links
 * ========================================================================== */
ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

/* =============================================================================
 *  Field Styling
 * ========================================================================== */
/*
 * Wrapper for any field
 */
.field .field-label {
  font-weight: 600;
}

/*
 * Above and inline classes are on the field wrapper
 */
/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
.field-label-inline {
  /* Remove the margin on inline field lables to preserve vertical formatting */
}

.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 600;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

/*
 * Field types (Core)
 */
/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
/*
 * Long text
 */
/*
 * Text with summary
 */
/*
 * File
 */
/*
 * Number/Integer
 */
/*
 * Decimal
 */
/*
 * Number float
 */
/*
 * List
 */
/*
 * List boolean
 */
/*
 * List integer
 */
/*
 * List float
 */
/*
 * Field types (Contrib)
 */
/*
 * Named fields
 */
/*
 * Underscores in field name are replaced with dashes
 */
/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}

/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/* sidebar blocks */
.sidebar .block {
  font-size: .9em;
  line-height: 140%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin: 0 20px 15px 15px;
}

.sidebar .block h2.block-title {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #484848;
}

.sidebar .block .block-inner {
  margin-left: 0;
  margin-right: 0;
}

.sidebar .block.first {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

/*
 * Block title
 */
.block-title {
  margin: 0;
}

/*
 * Match item list and block menu margin and padding
 */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}

.block-content li {
  margin: 0;
  padding: 0;
}

/* =============================================================================
 *   Node Styling
 * ========================================================================== */
.node {
  margin-bottom: 20px;
}

.node .node-title {
  margin: 0;
}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
/* =============================================================================
 *   Forms and buttons
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {
  max-width: 100%;
}

.form-item select,
.form-item input.form-text {
  max-width: 95%;
  border: .5px solid #707070;
  padding: 3px 7px;
  color: #444;
  font-size: .9em;
}

.form-item input.form-text {
  padding: 4px 7px;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
}

.form-item .description {
  font-size: 0.85em;
}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

/*
 * The submit button
 */
a.blue-button,
a.dk-green-button,
a.green-button,
.form-submit {
  background-color: #b4d856;
  padding: 7px 25px;
  border-radius: 7px;
  color: #13294b;
  font-size: 16px;
  border: 3px solid #b4d856;
  font-weight: bold;
  text-decoration: none;
}

a.blue-button:hover, a.blue-button:focus,
a.dk-green-button:hover, a.dk-green-button:focus,
a.green-button:hover,
a.green-button:focus,
.form-submit:hover,
.form-submit:focus {
  background-color: #fff;
}

a.blue-button,
a.dk-green-button,
a.green-button {
  padding: 10px 30px;
}

a.dk-green-button {
  background-color: #006548;
  color: #fff;
  border: 3px solid #006548;
}

a.blue-button {
  background-color: #13294b;
  color: #fff;
  border: 3px solid #13294b;
}

a.dk-green-button:hover, a.dk-green-button:focus {
  color: #11294b;
}

a.blue-button:hover, a.blue-button:focus {
  color: #13294b;
}


.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* =============================================================================
 *   Views
 * ========================================================================== */
.views-exposed-widget {
  max-width: 100%;
}

.views-exposed-widget label {
  font-size: 1em;
  font-weight: normal;
}

/* =============================================================================
 *   Tables
 * ========================================================================== */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}

table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border: 0;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 600;
  background-color: #fff;
  font-size: 1.1em;
}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody tr {
  border-top: 1px solid #ddd;
}

tbody tr td {
  font-size: .9em;
}

tr {
  /* Table row striping */
}

tr.odd {
  background: #fff;
}

tr.odd td.active {
  background-color: #fff;
}

tr.even td.active {
  background-color: #fff;
}

/* =============================================================================
 *   Messages
 * ========================================================================== */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Unpublished nodes
 */
.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

.ie6-7 .node-unpublished p.unpublished > *, .ie6-7
.comment-unpublished p.unpublished > * {
  position: relative;
}

/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}

.db-offline div.messages {
  margin: 20px 0 0;
}

.db-offline #content {
  padding: 20px 0;
}

/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}

#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}

/* =============================================================================
 *   Resources
 * ========================================================================== */
/* set colors */
body.section-publications #header-wrapper,
body.page-publications #header-wrapper,
body.section-resources #header-wrapper,
body.page-resources #header-wrapper,
.node-type-resource #header-wrapper {
  padding-bottom: 50px;
  background: #6b3c6b url("images/banner_purple.png") bottom left no-repeat;
  background-size: auto 50px;
}

body.section-publications h1#page-title::after,
body.page-publications h1#page-title::after,
body.section-resources h1#page-title::after,
body.page-resources h1#page-title::after {
  border-bottom: 3px solid #673065;
}

/* covid resources */
.page-node-5572 .node-content h2 {
  margin-top: 30px;
}

/* Search page */
body.page-publications #main-content h1#page-title,
body.page-resources #main-content h1#page-title {
  display: none;
}

body.page-publications .region-secondary-content .block-inner,
body.page-resources .region-secondary-content .block-inner {
  margin: 0 30px;
}

body.page-publications .sidebar,
body.page-resources .sidebar {
  padding-top: 20px;
}

body.page-publications .views-exposed-form .views-exposed-widget .form-submit,
body.page-resources .views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 5px;
}

body.page-publications .views-reset-button input.form-submit,
body.page-resources .views-reset-button input.form-submit {
  background-color: #fff;
  border: 0;
  color: #007FAE;
  padding: 0;
  font-weight: normal;
  text-decoration: underline;
  box-shadow: none;
  padding-right: 20px;
}

body.page-publications .views-reset-button input.form-submit:hover, body.page-publications .views-reset-button input.form-submit:focus,
body.page-resources .views-reset-button input.form-submit:hover,
body.page-resources .views-reset-button input.form-submit:focus {
  color: #13294b;
}

body.page-publications .view-resource-search,
body.page-resources .view-resource-search {
  padding: 30px 10px;
}

body.page-publications .view-resource-search .view-header,
body.page-resources .view-resource-search .view-header {
  font-size: .9em;
}

body.page-publications .view-resource-search .views-row .pub-date,
body.page-resources .view-resource-search .views-row .pub-date {
  padding-right: 10px;
}

body.page-publications .view-resource-search .views-row .pub-date,
body.page-publications .view-resource-search .views-row .views-field-field-resource-type,
body.page-resources .view-resource-search .views-row .pub-date,
body.page-resources .view-resource-search .views-row .views-field-field-resource-type {
  font-size: .9em;
}

body.page-publications #block-views-exp-resource-search-page,
body.page-resources #block-views-exp-resource-search-page {
  padding-top: 0;
  border-top: 0;
}

body.page-publications #block-views-exp-resource-search-page label,
body.page-resources #block-views-exp-resource-search-page label {
  font-weight: bold;
}

body.page-publications .block-facetapi ul,
body.page-resources .block-facetapi ul {
  margin: 5px 0 0 0;
  padding: 0;
}

body.page-publications .block-facetapi ul li,
body.page-resources .block-facetapi ul li {
  list-style-type: none;
  list-style-image: none;
  padding: 0;
  margin: 0 0 5px 0;
}

body.page-publications .block-facetapi ul li a,
body.page-resources .block-facetapi ul li a {
  text-decoration: none;
  font-size: .9em;
  color: #484848;
}

body.page-publications .block-facetapi ul li a:hover, body.page-publications .block-facetapi ul li a:focus,
body.page-resources .block-facetapi ul li a:hover,
body.page-resources .block-facetapi ul li a:focus {
  text-decoration: underline;
}

body.page-publications #block-views-exp-resource-search-page-1,
body.page-publications #block-views-exp-resource-search-page #edit-field-areas-of-work-wrapper,
body.page-publications #block-views-exp-resource-search-page #edit-field-resource-type-wrapper,
body.page-resources #block-views-exp-resource-search-page-1,
body.page-resources #block-views-exp-resource-search-page #edit-field-areas-of-work-wrapper,
body.page-resources #block-views-exp-resource-search-page #edit-field-resource-type-wrapper {
  display: none;
}

.node-type-resource h1#page-title {
  color: #11294b;
  font-size: 24px;
  margin: 30px 0 15px 0;
}

.node-type-resource h1#page-title::after {
  display: none;
}

.node-type-resource .field-name-field-resource-authors,
.node-type-resource .field-name-field-resource-pub-year,
.node-type-resource .field-name-field-resource-pub-month {
  font-size: 20px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  margin-bottom: 15px;
  font-weight: bold;
  color: #11294b;
}

.node-type-resource .field-name-field-resource-authors {
  margin-bottom: 5px;
}

.node-type-resource .field-name-field-resource-pub-year,
.node-type-resource .field-name-field-resource-pub-month {
  display: inline-block;
}

.node-type-resource .field-name-field-resource-pub-month {
  padding-right: 5px;
}

.node-type-resource .field-name-field-resource-pub-year {
  margin-bottom: 10px;
}

.node-type-resource .group-resource-bottom {
  display: flex;
  flex-direction: row;
}

.node-type-resource h2 {
  font-size: 120%;
  font-weight: 600;
  margin-bottom: 5px;
}

.node-type-resource .group-resource-right {
  order: 2;
  margin-left: 40px;
  padding: 5px 15px 15px 15px;
  flex-shrink: 1;
  flex-grow: 0;
}

.node-type-resource .group-resource-right h2 {
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #484848;
}

.node-type-resource .group-resource-right .field-name-field-resource-work-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.node-type-resource .group-resource-left {
  padding-top: 15px;
  order: 1;
  flex-basis: 220px;
  flex-shrink: 0;
  flex-grow: 0;
  width: 220px;
}

.node-type-resource .group-resource-left a {
  word-wrap: break-word;
  word-break: break-word;
}

.node-type-resource .group-resource-left h2 {
  font-weight: 600;
  font-size: 18px;
  color: #484848;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-top: 5px;
}

.node-type-resource .group-resource-left .field {
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  font-size: .9em;
}

.node-type-resource .group-resource-left .field-name-field-resource-image,
.node-type-resource .group-resource-left .field-name-field-resource-type {
  border: 0px;
}

.node-type-resource .group-resource-left ul {
  margin: 0;
  padding: 0;
}

.node-type-resource .group-resource-left ul li {
  list-style-type: none;
  list-style-image: none;
  margin: 0;
  padding: 0 0 10px 0;
}

.node-type-resource .file-icon {
  display: none;
}

/* =============================================================================
 *   Components
 * ========================================================================== */
/*views classes */
.list-tile {
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 30px;
  margin: 15px 0;
  border: 1px solid #eee;
  background-color: #fff;
}

.list-tile h2,
.list-tile h3 a,
.list-tile .views-field-title a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0;
}

.list-tile h2:hover, .list-tile h2:focus,
.list-tile h3 a:hover,
.list-tile h3 a:focus,
.list-tile .views-field-title a:hover,
.list-tile .views-field-title a:focus {
  text-decoration: none;
}

.list-tile h3 {
  font-size: 1.1em;
  margin: 0;
}

.list-tile h2,
.list-tile .views-field-title,
.list-tile h3 {
  margin-bottom: 5px;
}

/*wysiwyg styles*/
.field-name-body figure.image,
.field-type-text figure.image {
  margin: 15px;
}

ul.leaves {
  margin: 30px 0 15px 0;
}

ul.leaves li {
  margin-bottom: 15px;
  font-size: 1.2em;
  list-style-type: none;
  list-style-image: none;
  padding-left: 25px;
  background: url("images/leaf.png") center left no-repeat;
}

/*paragraphs */
.entity-paragraphs-item {
  clear: both;
}

/* text component */
.paragraphs-item-component-text {
  margin-bottom: 30px;
}

/*Video with Text */
.paragraphs-item-large-video {
  margin: 0 auto;
  max-width: 650px;
}

.paragraphs-item-large-video .field-name-field-description {
  text-align: left;
  font-size: .9em;
  margin: 0 10px 30px 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #4b9cd3;
  line-height: 140%;
}

/* Accordion */
.accordion {
  margin-bottom: 30px;
}

.accordion h3 {
  border: 0px;
  background-image: none;
  background-color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #007FAE;
  font-weight: 600;
  border-top: 1px solid #ccc;
}

.field-item .ui-accordion .ui-accordion-header {
  padding: 20px 40px 20px 40px;
  margin-bottom: 0px;
  position: relative;
}

.field-item .ui-accordion .ui-accordion-content {
  margin-top: -10px;
}

.accordion h3 .ui-icon {
  background: url("images/plus.png") center left no-repeat;
  margin-top: 0;
}

.accordion h3#ui-accordion-accordion-header-0 {
  border-top: 0px;
}

.accordion .ui-accordion-header-active .ui-icon {
  background-image: url("images/minus.png");
}

.accordion .ui-accordion-content {
  border: 0px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #555;
  padding: 5px 30px;
  margin-bottom: 15px;
}

.accordion .ui-accordion-content a {
  color: #007FAE;
}

.accordion .ui-helper-reset {
  line-height: 1.5;
}

/* Image with text */
.paragraphs-item-right-image-with-title-and-text,
.paragraphs-item-image-with-title-and-text {
  margin: 30px auto;
  width: 95%;
}

.paragraphs-item-right-image-with-title-and-text .content,
.paragraphs-item-image-with-title-and-text .content {
  display: flex;
}

.paragraphs-item-right-image-with-title-and-text .field-name-field-component-image,
.paragraphs-item-image-with-title-and-text .field-name-field-component-image {
  padding-top: 15px;
  padding-right: 20px;
  max-width: 33%;
  flex-shrink: 0;
}

.paragraphs-item-right-image-with-title-and-text .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text .field-name-field-component-image img {
  display: block;
  border: 4px solid #4b9cd3;
  padding: 4px;
  width: 95%;
}

.paragraphs-item-right-image-with-title-and-text .group-image-text-left .field-name-field-file-image-title-text,
.paragraphs-item-right-image-with-title-and-text .group-image-text-left .field-name-field-image-text-title,
.paragraphs-item-right-image-with-title-and-text .group-image-text-right .field-name-field-file-image-title-text,
.paragraphs-item-right-image-with-title-and-text .group-image-text-right .field-name-field-image-text-title,
.paragraphs-item-image-with-title-and-text .group-image-text-left .field-name-field-file-image-title-text,
.paragraphs-item-image-with-title-and-text .group-image-text-left .field-name-field-image-text-title,
.paragraphs-item-image-with-title-and-text .group-image-text-right .field-name-field-file-image-title-text,
.paragraphs-item-image-with-title-and-text .group-image-text-right .field-name-field-image-text-title {
  color: #11294b;
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 20px;
}

.paragraphs-item-right-image-with-title-and-text .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text .group-image-text-right .field-name-field-image-text-title .field-item::after {
  content: '';
  display: block;
  width: 30px;
  height: 5px;
  border-bottom: 3px solid #4b9cd3;
}

.paragraphs-item-right-image-with-title-and-text .group-image-text-left .field-name-field-image-text-description,
.paragraphs-item-right-image-with-title-and-text .group-image-text-right .field-name-field-image-text-description,
.paragraphs-item-image-with-title-and-text .group-image-text-left .field-name-field-image-text-description,
.paragraphs-item-image-with-title-and-text .group-image-text-right .field-name-field-image-text-description {
  padding: 10px 20px;
}

.paragraphs-item-right-image-with-title-and-text .content {
  display: block;
}

.paragraphs-item-right-image-with-title-and-text .content .field-name-field-component-image {
  margin: 0 0 5px 20px;
  float: right;
}

.paragraphs-item-right-image-with-title-and-text .content .field-name-field-image-text-description {
  padding: 10px 20px 20px 20px;
}

.paragraphs-item-right-image-with-title-and-text.purple .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text.purple .field-name-field-component-image img {
  border: 4px solid #673065;
}

.paragraphs-item-right-image-with-title-and-text.purple .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.purple .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text.purple .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.purple .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.purple .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.purple .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.purple .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.purple .group-image-text-right .field-name-field-image-text-title .field-item::after {
  border-bottom: 3px solid #673065;
}

.paragraphs-item-right-image-with-title-and-text.orange .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text.orange .field-name-field-component-image img {
  border: 4px solid #bc4700;
}

.paragraphs-item-right-image-with-title-and-text.orange .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.orange .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text.orange .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.orange .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.orange .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.orange .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.orange .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.orange .group-image-text-right .field-name-field-image-text-title .field-item::after {
  border-bottom: 3px solid #bc4700;
}

.paragraphs-item-right-image-with-title-and-text.dark-blue .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text.dark-blue .field-name-field-component-image img {
  border: 4px solid #13294b;
}

.paragraphs-item-right-image-with-title-and-text.dark-blue .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.dark-blue .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text.dark-blue .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.dark-blue .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-blue .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-blue .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-blue .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-blue .group-image-text-right .field-name-field-image-text-title .field-item::after {
  border-bottom: 3px solid #13294b;
}

.paragraphs-item-right-image-with-title-and-text.light-green .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text.light-green .field-name-field-component-image img {
  border: 4px solid #b4d856;
}

.paragraphs-item-right-image-with-title-and-text.light-green .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.light-green .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text.light-green .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.light-green .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.light-green .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.light-green .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.light-green .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.light-green .group-image-text-right .field-name-field-image-text-title .field-item::after {
  border-bottom: 3px solid #b4d856;
}

.paragraphs-item-right-image-with-title-and-text.dark-green .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text.dark-green .field-name-field-component-image img {
  border: 4px solid #006548;
}

.paragraphs-item-right-image-with-title-and-text.dark-green .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.dark-green .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text.dark-green .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.dark-green .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-green .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-green .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-green .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.dark-green .group-image-text-right .field-name-field-image-text-title .field-item::after {
  border-bottom: 3px solid #006548;
}

.paragraphs-item-right-image-with-title-and-text.gray .field-name-field-component-image img,
.paragraphs-item-image-with-title-and-text.gray .field-name-field-component-image img {
  border: 4px solid #ccc;
}

.paragraphs-item-right-image-with-title-and-text.gray .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.gray .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-right-image-with-title-and-text.gray .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-right-image-with-title-and-text.gray .group-image-text-right .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.gray .group-image-text-left .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.gray .group-image-text-left .field-name-field-image-text-title .field-item::after,
.paragraphs-item-image-with-title-and-text.gray .group-image-text-right .field-name-field-file-image-title-text .field-item::after,
.paragraphs-item-image-with-title-and-text.gray .group-image-text-right .field-name-field-image-text-title .field-item::after {
  border-bottom: 3px solid #ccc;
}

/* Full width image */
.paragraphs-item-full-width-image img {
  width: 100%;
}

/* People group */
.paragraphs-item-people-group {
  margin: 30px 0;
}

.paragraphs-item-people-group .field-name-field-people-title .field-item {
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 15px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-weight: bold;
  padding-bottom: 0;
  color: #11294b;
}

.paragraphs-item-people-group .field-name-field-people .field-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.paragraphs-item-people-group .field-name-field-people .field-items .field-items {
  display: block;
}

.paragraphs-item-people-group .field-name-field-people .field-item {
  max-width: 330px;
  width: 29%;
  margin: 10px 40px 40px 0;
}

.paragraphs-item-people-group .field-name-field-people .field-item .field-item {
  width: auto;
  margin: 0;
}

.paragraphs-item-people-group .field-name-field-people .field-item p {
  margin: 0;
}

.paragraphs-item-people-group .field-name-field-people .field-item .field-name-field-title-as-link a {
  font-size: 1.2em;
  text-decoration: none;
  font-weight: 600;
}

.paragraphs-item-people-group .field-name-field-people .field-item .field-name-field-person-text {
  font-size: .9em;
  margin-top: 5px;
}

/* colored feature box */
.paragraphs-item-feature-box-with-image {
  margin: 30px 0;
}

.paragraphs-item-feature-box-with-image .content {
  display: flex;
}

.paragraphs-item-feature-box-with-image .content .field-name-field-feature-image {
  flex-basis: 450px;
  flex-shrink: 0;
  flex-grow: 1;
  width: 450px;
}

.paragraphs-item-feature-box-with-image .content .field-name-field-feature-image img {
  display: block;
}

.paragraphs-item-feature-box-with-image .content .field-name-field-feature-text {
  background: #5AA3D2 url("images/waves_ltblue.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #11294b;
  font-weight: bold;
  padding: 10px 40px;
}

.paragraphs-item-feature-box-with-image .content .field-name-field-feature-text h2 {
  line-height: 1.1;
}

.paragraphs-item-feature-box-with-image .content .field-name-field-feature-text h2 a {
  font-family: sans-serif;
  text-decoration: none;
  font-size: .9em;
}

.paragraphs-item-feature-box-with-image.gray .field-name-field-feature-text {
  background: #F5F6F7 url("images/waves_gray.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #484848;
  font-weight: normal;
}

.paragraphs-item-feature-box-with-image.gray .field-name-field-feature-text h2, .paragraphs-item-feature-box-with-image.gray .field-name-field-feature-text h3, .paragraphs-item-feature-box-with-image.gray .field-name-field-feature-text h4, .paragraphs-item-feature-box-with-image.gray .field-name-field-feature-text h5, .paragraphs-item-feature-box-with-image.gray .field-name-field-feature-text h6 {
  color: #484848;
  margin-bottom: 15px;
}

.paragraphs-item-feature-box-with-image.purple .field-name-field-feature-text {
  background: #5D265E url("images/waves_purple.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #fff;
}

.paragraphs-item-feature-box-with-image.purple .field-name-field-feature-text h2, .paragraphs-item-feature-box-with-image.purple .field-name-field-feature-text h3, .paragraphs-item-feature-box-with-image.purple .field-name-field-feature-text h4, .paragraphs-item-feature-box-with-image.purple .field-name-field-feature-text h5, .paragraphs-item-feature-box-with-image.purple .field-name-field-feature-text h6 {
  color: #fff;
}

.paragraphs-item-feature-box-with-image.light-green .field-name-field-feature-text {
  background: #B4D557 url("images/waves_ltgreen.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #11294b;
}

.paragraphs-item-feature-box-with-image.light-green .field-name-field-feature-text h2, .paragraphs-item-feature-box-with-image.light-green .field-name-field-feature-text h3, .paragraphs-item-feature-box-with-image.light-green .field-name-field-feature-text h4, .paragraphs-item-feature-box-with-image.light-green .field-name-field-feature-text h5, .paragraphs-item-feature-box-with-image.light-green .field-name-field-feature-text h6 {
  color: #11294b;
}

.paragraphs-item-feature-box-with-image.dark-green .field-name-field-feature-text {
  background: #106549 url("images/waves_dkgreen.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #fff;
}

.paragraphs-item-feature-box-with-image.dark-green .field-name-field-feature-text h2, .paragraphs-item-feature-box-with-image.dark-green .field-name-field-feature-text h3, .paragraphs-item-feature-box-with-image.dark-green .field-name-field-feature-text h4, .paragraphs-item-feature-box-with-image.dark-green .field-name-field-feature-text h5, .paragraphs-item-feature-box-with-image.dark-green .field-name-field-feature-text h6 {
  color: #fff;
}

.paragraphs-item-feature-box-with-image.dark-blue .field-name-field-feature-text {
  background: #13294B url("images/waves_dkblue.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #fff;
}

.paragraphs-item-feature-box-with-image.dark-blue .field-name-field-feature-text h2, .paragraphs-item-feature-box-with-image.dark-blue .field-name-field-feature-text h3, .paragraphs-item-feature-box-with-image.dark-blue .field-name-field-feature-text h4, .paragraphs-item-feature-box-with-image.dark-blue .field-name-field-feature-text h5, .paragraphs-item-feature-box-with-image.dark-blue .field-name-field-feature-text h6 {
  color: #fff;
}

.paragraphs-item-feature-box-with-image.orange .field-name-field-feature-text {
  background: #AD3E25 url("images/waves_orange.png") bottom right no-repeat;
  background-size: 100% auto;
  color: #fff;
}

.paragraphs-item-feature-box-with-image.orange .field-name-field-feature-text h2, .paragraphs-item-feature-box-with-image.orange .field-name-field-feature-text h3, .paragraphs-item-feature-box-with-image.orange .field-name-field-feature-text h4, .paragraphs-item-feature-box-with-image.orange .field-name-field-feature-text h5, .paragraphs-item-feature-box-with-image.orange .field-name-field-feature-text h6 {
  color: #fff;
}

/* cards with colored titles */
.paragraphs-item-cards-2-columns {
  margin: 30px 0;
}

.paragraphs-item-cards-2-columns .content .field-items {
  display: flex;
}

.paragraphs-item-cards-2-columns .content .field-items .field-item {
  flex-basis: 0;
  flex-grow: 1;
  margin: 0 10px 20px 10px;
  border: 1px solid #ddd;
}

.paragraphs-item-cards-2-columns .content .field-items .field-item .field-item {
  margin: 0;
  border: 0;
}

.paragraphs-item-cards-2-columns .content .field-items .field-item img {
  display: block;
}

.paragraphs-item-cards-2-columns .content .field-items .field-name-field-card-title h2 {
  padding: 20px 20px 10px 20px;
  font-size: 1.3em;
  font-weight: bold;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  margin: -1px;
  color: #11294b;
}

.paragraphs-item-cards-2-columns .content .field-items .field-name-field-card-title p {
  margin: 0;
}

.paragraphs-item-cards-2-columns .content .field-items .field-name-field-card-text {
  padding: 10px 20px;
  border-top: 0;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.purple .field-name-field-card-title h2 {
  padding: 20px;
  background: #6B3C6B url("images/title_purple.png") top left no-repeat;
  background-size: 100% auto;
  color: #fff;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.orange .field-name-field-card-title h2 {
  padding: 20px;
  background: #BD4C26 url("images/title_orange.png") top left no-repeat;
  background-size: auto 100%;
  color: #fff;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.light-green .field-name-field-card-title h2 {
  padding: 20px;
  background: #B3D457 url("images/title_ltgreen.png") top left no-repeat;
  background-size: 100% auto;
  color: #11294b;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.dark-green .field-name-field-card-title h2 {
  padding: 20px;
  background: #106549 url("images/title_dkgreen.png") top left no-repeat;
  background-size: auto 100%;
  color: #fff;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.dark-blue .field-name-field-card-title h2 {
  padding: 20px;
  background: #11294A url("images/title_dkblue.png") top left no-repeat;
  background-size: auto 100%;
  color: #fff;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.light-blue .field-name-field-card-title h2 {
  padding: 20px;
  background: #4CA3D7 url("images/title_ltblue.png") top left no-repeat;
  background-size: auto 100%;
  color: #11294b;
}

.paragraphs-item-cards-2-columns .paragraphs-item-card.gray .field-name-field-card-title h2 {
  padding: 20px;
  background: #EEF0F1 url("images/title_gray.png") bottom right no-repeat;
  background-size: auto 100%;
  color: #11294b;
}

/* =============================================================================
 *   Home page
 * ========================================================================== */
body.front {
  /* top banner */
  /* alert block */
  /*news list*/
  /* our focus */
  /*in the media and events */
  /*Resources*/
  /*footer top */
}

body.front #secondary-content-wrapper {
}

body.front #secondary-content-wrapper .container {
  background: url("images/home2023.png") top center no-repeat;
  background-size: 100% auto;
  max-width: 1800px;
  margin: 0 auto;
}

body.front #secondary-content-wrapper .container .block {
  padding: 0;
  margin: 0;
  min-height: 400px;
}

body.front #secondary-content-wrapper .container .block-content {
  padding-top: 100px;
  padding-left: 55%;
  width: 420px;
  text-align: center;
}

body.front #secondary-content-wrapper .container h2 {
  color: #fff;
  font-size: 30px;
}

body.front #block-block-14 {
  background: #e6e7e7 url("images/alert_bg.png") bottom left no-repeat;
  background-size: auto 100%;
  margin: 0 25px;
  width: auto;
}

body.front #block-block-14 .block-inner {
  padding: 15px;
}

body.front #block-block-14 .block-inner h2 {
  font-size: 1.3em;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0;
}

body.front #block-block-14 .block-inner p {
  font-size: .9em;
  margin: 0;
}

body.front #content-top-wrapper {
  background: url("images/circles-tl.png") top left no-repeat;
  background-size: 200px auto;
  padding-top: 30px;
}

body.front #content-top-wrapper #content-top-inner {
  background: url("images/circles-br.png") bottom right no-repeat;
  background-size: 200px auto;
}

body.front #content-top-wrapper .view-home-page-news .view-content {
  display: flex;
}

body.front #content-top-wrapper .view-home-page-news .views-row {
  margin: 30px 15px;
  flex-basis: 0;
  flex-grow: 1;
  background-color: #13294b;
  color: #fff;
}

body.front #content-top-wrapper .view-home-page-news .views-row img {
  display: block;
}

body.front #content-top-wrapper .view-home-page-news .views-row a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

body.front #content-top-wrapper .view-home-page-news .views-row a:hover, body.front #content-top-wrapper .view-home-page-news .views-row a:focus {
  text-decoration: underline;
}

body.front #content-top-wrapper .view-home-page-news .views-row .news-title {
  margin: 10px 20px 20px 20px;
  min-height: 120px;
}

body.front #content-top-wrapper .view-home-page-news .views-row .news-date {
  margin: 5px 20px 20px 20px;
  font-size: .8em;
}

body.front #block-block-7 {
  color: #11294b;
  max-width: 1000px;
  margin: 10px auto 0px auto;
}

body.front #block-block-7 p {
  padding: 0 15px;
}

body.front #block-block-7 h2 {
  text-align: center;
  margin-bottom: 15px;
}

body.front .focus-icons {
  text-align: center;
  padding-right: 20px;
}

body.front .focus-icons div {
  width: 150px;
  display: inline-block;
  text-align: center;
  margin: 30px;
  font-size: 1.2em;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-weight: bold;
}

body.front .focus-icons div img {
  width: 150px;
}

body.front .focus-icons .research {
  color: #4b9cd3;
}

body.front .focus-icons .practice {
  color: #bc4700;
}

body.front .focus-icons .policy {
  color: #673065;
}

body.front #content-wrapper {
  background: url("images/big_blue_wave.png") top left no-repeat;
  background-size: 100% auto;
}

body.front #content-wrapper #content {
  display: flex;
  justify-content: center;
}

body.front #content-wrapper #block-system-main,
body.front #content-wrapper #main-content-header {
  display: none;
}

body.front #content-wrapper .block-views {
  margin: 30px 15px;
  padding: 20px 30px;
  flex-basis: 0;
  flex-grow: 1;
  background-color: #fff;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #ddd;
}

body.front #content-wrapper h2.block-title {
  font-size: 1.2em;
  margin-bottom: 15px;
}

body.front #content-wrapper h2.block-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  border-bottom: 3px solid #4b9cd3;
}

body.front #content-wrapper .view a {
  font-weight: bold;
  text-decoration: none;
}

body.front #content-wrapper .view a:hover, body.front #content-wrapper .view a:focus {
  text-decoration: underline;
}

body.front #content-wrapper .view .more-link {
  text-align: left;
}

body.front #content-wrapper .views-row {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

body.front #content-wrapper .views-row.Event {
  padding-left: 60px;
  background: url("images/event.png") 0px 10px no-repeat;
  background-size: auto 60px;
  min-height: 70px;
}

body.front #content-wrapper .views-row.Training {
  padding-left: 60px;
  background: url("images/training.png") 0px 10px no-repeat;
  background-size: auto 60px;
  min-height: 70px;
}

body.front #content-wrapper .views-field-field-event-topic {
  font-size: .8em;
}

body.front #content-wrapper .views-field-field-event-dates {
  font-weight: 600;
}

body.front #content-bottom-wrapper {
  background: url("images/resources_bg.png") top center no-repeat;
  color: #fff;
  padding: 30px 0;
}

body.front #block-block-9 .block-content {
  display: flex;
}

body.front .resources-left {
  font-size: 1.1em;
  padding-right: 40px;
}

body.front .resources-right {
  width: 250px;
  flex-basis: 250px;
  flex-shrink: 0;
  flex-grow: 1;
  padding: 40px 0 0 0;
}

body.front .footer-top {
  display: flex;
}

body.front .footer-top .footer-top-left {
  flex-shrink: 0;
  flex-grow: 1;
  padding: 20px;
}

body.front .footer-top .footer-top-left a {
  display: inline-block;
  margin: 5px 0 15px 0;
}

body.front .footer-top .footer-top-center {
  flex-shrink: 0;
  flex-grow: 1;
  padding: 20px;
}

body.front .footer-top .footer-top-center .social {
  display: inline-block;
  margin-right: 10px;
}

body.front .footer-top .footer-top-right {
  flex-basis: 400px;
  flex-shrink: 0;
  flex-grow: 2;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fffcfc;
}

body.front .footer-top .footer-top-right .footer-top-right-inner {
  padding-left: 20px;
}

body.front .footer-top .footer-top-right p {
  padding-bottom: 15px;
  font-size: .95em;
}

body.front .footer-top .footer-top-right div {
  padding-bottom: 10px;
}

/* =============================================================================
 *   News
 * ========================================================================== */
/* set colors */
.page-news #header-wrapper,
.node-type-news #header-wrapper {
  padding-bottom: 50px;
  background: #B3D457 url("images/banner_ltgreen.png") center bottom no-repeat;
  background-size: 1200px auto;
}

.page-news h1#page-title::after {
  border-bottom: 3px solid #b4d856;
}

/* landing page and archives*/
.view-news .views-row {
  clear: left;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.view-news .views-row::after {
  content: '';
  display: block;
  height: 5px;
  clear: both;
}

.view-news .views-field-field-news-image {
  float: left;
  width: 200px;
  margin: 0 30px 0 0;
}

.view-news .views-field-title {
  font-size: 1.1em;
  font-weight: bold;
}

.view-news .views-field-title a {
  text-decoration: none;
}

.view-news .views-field-field-news-brief-desc,
.view-news .views-field-field-news-date {
  font-size: .9em;
  margin: 7px 0;
}

.view-news .more-link {
  text-align: left;
  font-weight: bold;
  padding-bottom: 20px;
}

.view-news .more-link a {
  text-decoration: none;
}

.page-news #content-bottom-wrapper {
  background: url("images/big_blue_wave.png") top left no-repeat;
  background-size: 100% auto;
  padding-top: 10px;
}

.page-news #content-bottom-wrapper .region-inner {
  display: flex;
}

.page-news #content-bottom-wrapper .region-inner #block-block-11 {
  padding-top: 20px;
}

.page-news .block-views {
  margin: 30px 15px;
  padding: 20px 30px;
  flex-basis: 0;
  flex-grow: 1;
  background-color: #fff;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #ddd;
}

.page-news h2.block-title {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.page-news h2.block-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  border-bottom: 3px solid #4b9cd3;
}

.page-news .view a {
  font-weight: bold;
  text-decoration: none;
}

.page-news .view a:hover, .page-news .view a:focus {
  text-decoration: underline;
}

.page-news .view .more-link {
  text-align: left;
}

.page-news .views-row {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

/*nodes */
.node-type-news #page-title {
  display: none;
}

.node-type-news #block-system-main {
  margin-top: 40px;
}

.node-type-news h1 {
  font-size: 1.5em;
  line-height: 140%;
}

.node-type-news h2 {
  font-size: 1.3em;
}

.node-type-news h3 {
  font-size: 1.1em;
}

.node-type-news .field-name-field-news-image {
  float: left;
  margin-right: 30px;
  max-width: 450px;
}

.node-type-news .group-news-right::after {
  content: '';
  clear: both;
  display: block;
  height: 35px;
}

.node-type-news .field-name-field-news-date {
  font-size: 1.2em;
  font-family: "Libre Baskerville", "Times New Roman", serif;
}

.node-type-news .field-name-field-news-full-story {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* =============================================================================
   *   People
   * ========================================================================== */
/* set colors */
.section-people #header-wrapper,
.page-people #header-wrapper,
.node-type-profile #header-wrapper {
  padding-bottom: 50px;
  background: #10674a url("images/banner_dkgreen.png") center bottom no-repeat;
  background-size: 1400px auto;
}

.section-people h1#page-title::after,
.page-people h1#page-title::after {
  border-bottom: 3px solid #006548;
}

.view-people-directory .views-exposed-widgets {
  clear: both;
  background-color: #f7f7f7;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  border-top: 1px solid #777;
  padding: 10px 20px;
}

.view-people-directory .views-exposed-widgets .form-item-field-core-value select,
.view-people-directory .views-exposed-widgets .form-item-field-profile-areas-of-work-tid select,
.view-people-directory .views-exposed-widgets #edit-field-profile-areas-of-work-tid,
.view-people-directory .views-exposed-widgets #edit-field-core-value {
  width: 200px;
}

.view-people-directory .views-exposed-widgets .views-submit-button {
  margin: 0;
}

.view-people-directory .views-exposed-widgets .views-submit-button .form-submit {
  margin-top: 18px;
}

.view-people-directory .views-exposed-widgets .form-item-title input,
.view-people-directory .views-exposed-widgets input#edit-title {
  width: 150px;
}

.view-people-directory .views-exposed-widgets .views-reset-button .form-submit {
  background-color: transparent;
  border: 0;
  margin-top: 20px;
  padding: 0 20px 0 0;
  color: #007FAE;
  font-weight: normal;
  text-decoration: underline;
  line-height: 40px;
}

.view-people-directory .views-exposed-widgets .views-reset-button .form-submit:hover, .view-people-directory .views-exposed-widgets .views-reset-button .form-submit:focus {
  color: #11294b;
}

.view-people-directory .attachment .views-summary a {
  padding: 0 5px;
}

.view-people-directory .attachment .view-people-directory {
  padding-top: 20px;
  padding-bottom: 0;
  padding-left: 20px;
}

.view-people-directory .view-content {
  display: flex;
  flex-wrap: wrap;
}

.view-people-directory .view-content .views-row {
  flex-basis: 320px;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 30px 15px;
  font-size: .9em;
}

.view-people-directory .view-content .views-row a:hover, .view-people-directory .view-content .views-row a:focus {
  text-decoration: underline;
}

.view-people-directory .view-content .views-row .views-field-field-photo {
  float: left;
  margin: 0 15px 0 0;
  border: 2px solid #b4d856;
  padding: 3px;
}

.view-people-directory .view-content .views-row .views-field-field-photo img {
  border: 1px solid #b4d856;
  display: block;
}

/*investigators page */
.view-investigators .description {
  max-width: 750px;
  margin: 0px 20px 40px 0;
  float: left;
}

.view-investigators .view-content {
  margin: 0 auto;
  clear: both;
  column-count: 2;
  max-width: 1000px;
}

.view-investigators .view-content h3 {
  font-size: 1.2em;
  margin-top: 0;
}

.view-investigators .view-content a {
  text-decoration: none;
}

.view-investigators .view-content a:hover, .view-investigators .view-content a:focus {
  text-decoration: underline;
}

.view-investigators .view-content .views-row-last {
  margin-bottom: 20px;
}

/* =============================================================================
   *   Areas of Work
   * ========================================================================== */
/* set colors */
.node-type-digital-directory #header-wrapper,
.page-projects #header-wrapper,
.page-areas-of-work #header-wrapper,
.node-type-project #header-wrapper {
  padding-bottom: 50px;
  background: #bd4c26 url("images/banner_orange.png") center bottom no-repeat;
  background-size: 1400px auto;
}

.node-type-digital-directory h1#page-title::after,
.page-projects h1#page-title::after,
.page-areas-of-work h1#page-title::after {
  border-bottom: 3px solid #bc4700;
}

/* landing page */
.view-areas-of-work .description {
  max-width: 750px;
  width: calc(100% - 300px);
  margin: 0px 20px 20px 0;
  float: left;
}

.view-areas-of-work .links {
  float: right;
  width: 250px;
}

.view-areas-of-work .links .project-link {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
}

.view-areas-of-work .links .project-link a {
  text-decoration: none;
}

.view-areas-of-work .links .project-link a:hover, .view-areas-of-work .links .project-link a:focus {
  text-decoration: underline;
}

.view-areas-of-work .view-content {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 40px;
  width: auto;
  margin: 0 auto;
}

.view-areas-of-work .view-content .views-row {
  text-align: center;
  background-color: #13294b;
  margin: 15px;
  flex-basis: 200px;
  flex-grow: 1;
  flex-shrink: 0;
}

.view-areas-of-work .view-content .views-row .views-field-title a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  padding: 10px 10px 15px 10px;
  font-size: 1.1em;
}

.view-areas-of-work .view-content .views-row .views-field-title a:hover, .view-areas-of-work .view-content .views-row .views-field-title a:focus {
  text-decoration: underline;
}

/* Single areas of work page */
body.node-type-area-of-work #header-wrapper {
  background-image: none;
  padding-bottom: 0;
}

body.node-type-area-of-work #tasks {
  clear: both;
  margin-top: 30px;
}

body.node-type-area-of-work .easy-breadcrumb {
  clear: left;
  font-size: .8em;
  margin: 30px 0;
}

body.node-type-area-of-work #content-wrapper {
  background: url("images/areas.png") top left no-repeat;
  background-size: auto 155px;
}

body.node-type-area-of-work #main-content-header {
  height: 90px;
  padding: 30px 0;
}

body.node-type-area-of-work #main-content-header h1#page-title {
  background-color: #13294b;
  color: #fff;
  font-size: 24px;
  padding: 30px 60px;
  max-width: 600px;
  margin: 0 0 0 -20px;
}

body.node-type-area-of-work #main-content-header h1#page-title::after {
  border: 0;
  height: 0;
}

body.node-type-area-of-work .field-name-field-area-image {
  float: left;
  max-width: 450px;
  width: 40%;
}

body.node-type-area-of-work .field-name-field-area-description {
  margin-left: 43%;
}

body.node-type-area-of-work .field-name-field-area-description::after {
  content: '';
  display: block;
  clear: both;
  height: 5px;
}

body.node-type-area-of-work .field-name-field-tiles {
  clear: both;
}

body.node-type-area-of-work #content-bottom-wrapper {
  background: #F5F6F7 url("images/waves_gray.png") bottom left no-repeat;
  background-size: 100% auto;
  padding: 30px 0;
}

body.node-type-area-of-work #content-bottom-wrapper h2 {
  font-size: 1.3em;
  padding-left: 25px;
}

body.node-type-area-of-work .paragraphs-item-cards-2-columns {
  margin: 30px 0 15px 0;
}

body.node-type-area-of-work .views-row .views-field-field-project-brief-description,
body.node-type-area-of-work .views-row .views-field-field-resource-pub-year,
body.node-type-area-of-work .views-row .views-field-field-resource-type {
  font-size: .9em;
}

body.node-type-area-of-work .views-row .views-field-field-resource-pub-year {
  padding-right: 20px;
}

body.node-type-area-of-work .top-link {
  text-align: right;
  font-weight: bold;
  margin-top: -20px;
  margin-right: 30px;
}

body.node-type-area-of-work .top-link a {
  text-decoration: none;
}

body.node-type-area-of-work .top-link a:hover, body.node-type-area-of-work .top-link a:focus {
  text-decoration: underline;
}

body.node-type-area-of-work #content-bottom2-wrapper {
  padding: 30px 0;
}

body.node-type-area-of-work #content-bottom2-wrapper h2 {
  font-size: 1.3em;
  padding-left: 25px;
}

/* =============================================================================
 *   Profiles
 * ========================================================================== */
.node-type-profile #block-system-main {
  padding-top: 20px;
}

.node-type-profile #page-title {
  display: none;
}

.node-type-profile h1#profile-title {
  font-size: 24px;
  margin-bottom: 5px;
}

.node-type-profile .field-name-field-biographical-statement h2.field-label,
.node-type-profile .field-name-field-fpg-title,
.node-type-profile .field-name-field-unc-working-title {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 20px;
  color: #11294b;
  margin-bottom: 5px;
  font-weight: bold;
}

.node-type-profile .field-name-field-biographical-statement {
  padding: 0 20px;
  clear: both;
}

.node-type-profile .field-name-field-biographical-statement h2.field-label {
  padding-top: 15px;
  margin-bottom: 10px;
}

.node-type-profile .field-name-field-pronouns {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.node-type-profile .photo-group {
  float: left;
  width: 200px;
  margin: 0 30px 30px 0;
}

.node-type-profile .photo-group .field-name-field-photo {
  float: left;
  border: 3px solid #b4d856;
  padding: 4px;
}

.node-type-profile .photo-group .field-name-field-photo img {
  border: 2px solid #b4d856;
  display: block;
}

.node-type-profile .photo-group .social {
  clear: left;
  padding-left: 10px;
}

.node-type-profile .photo-group .field-name-field-orcid-url,
.node-type-profile .photo-group .field-name-field-twitter-handle,
.node-type-profile .photo-group .field-name-field-linkedin-profile {
  margin: 15px 10px 15px 0;
  display: inline-block;
}

.node-type-profile .photo-group .field-name-field-orcid-url img,
.node-type-profile .photo-group .field-name-field-twitter-handle img,
.node-type-profile .photo-group .field-name-field-linkedin-profile img {
  max-width: 40px;
} 

.node-type-profile .group-right-bottom {
  background: #F5F6F7 url("images/profile-waves.png") bottom right no-repeat;
  background-size: auto 100%;
  margin: 20px -20px;
  font-size: .9em;
  padding: 20px 30px;
  min-height: 150px;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
}

.node-type-profile .group-right-bottom a:hover, .node-type-profile .group-right-bottom a:focus {
  text-decoration: underline;
}

.node-type-profile .group-right-bottom h2.field-label {
  color: #484848;
  margin-top: 0;
}

.node-type-profile .group-right-bottom-inner {
  display: flex;
}

.node-type-profile .group-right-bottom-inner .group-left, .node-type-profile .group-right-bottom-inner .group-right {
  flex-basis: 0;
  flex-grow: 1;
}

.node-type-profile .group-right-bottom-inner .group-left .field, .node-type-profile .group-right-bottom-inner .group-right .field {
  margin-bottom: 10px;
}

.node-type-profile .group-right-bottom-inner .group-left {
  margin-right: 15px;
}

.node-type-profile .field-name-field-education .field-item {
  margin-bottom: 5px;
  line-height: 135%;
}

.node-type-profile .field-name-field-education .field-item .field-item {
  margin-bottom: 0;
}

.node-type-profile .field-name-field-academic-title,
.node-type-profile .field-name-field-affiliated-department,
.node-type-profile .field-name-field-degree,
.node-type-profile .field-name-field-discipline,
.node-type-profile .field-name-field-institution {
  display: inline;
  padding: 0;
}

.node-type-profile .field-name-field-academic-title div,
.node-type-profile .field-name-field-affiliated-department div,
.node-type-profile .field-name-field-degree div,
.node-type-profile .field-name-field-discipline div,
.node-type-profile .field-name-field-institution div {
  display: inline;
}

.node-type-profile .field-name-field-academic-title,
.node-type-profile .field-name-field-degree {
  padding-right: 1px;
}

.node-type-profile .field-name-field-academic-title .field-item::after,
.node-type-profile .field-name-field-degree .field-item::after {
  content: ',';
  margin-left: -.2em;
  white-space: nowrap;
}

.node-type-profile .field-name-field-other-phone-number,
.node-type-profile .field-name-field-email-address,
.node-type-profile .views-field-field-phone-number,
.node-type-profile .views-field-field-building-address,
.node-type-profile .views-field-views-conditional,
.node-type-profile .views-field-views-conditional-1,
.node-type-profile .views-field-views-conditional-2,
.node-type-profile .views-field-views-conditional-3,
.node-type-profile .field-name-field-cv {
  padding-left: 30px;
  background: url("images/phone.png") center left no-repeat;
  background-size: 20px auto;
}

.node-type-profile .views-field-field-building-address {
  background: url("images/map.png") 2px 0px no-repeat;
  background-size: auto 20px;
}

.node-type-profile .views-field-views-conditional,
.node-type-profile .views-field-views-conditional-1,
.node-type-profile .views-field-views-conditional-2,
.node-type-profile .views-field-views-conditional-3 {
  background: url("images/mail.png") 0px 5px no-repeat;
  background-size: 20px auto;
  margin-top: 10px;
}

.node-type-profile .field-name-field-email-address {
  background: url("images/email.png") center left no-repeat;
  background-size: auto 20px;
  padding-top: 3px;
}

.node-type-profile .field-name-field-cv {
  background: url("images/cv.png") top left no-repeat;
  background-size: auto 20px;
  padding-top: 3px;
}

.node-type-profile .field-name-field-cv img {
  display: none;
}

.node-type-profile .field-name-field-profile-areas-of-work ul, .node-type-profile .field-name-field-profile-areas-of-work li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}

.node-type-profile .block-views {
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  padding: 20px;
  margin: 15px 0 30px 0;
  border: 1px solid #eee;
  background-color: #fff;
}

.node-type-profile .block-views h2.block-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.node-type-profile .block-views .views-field-title a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 10px;
}

.node-type-profile .block-views .views-field-title a:hover, .node-type-profile .block-views .views-field-title a:focus {
  text-decoration: none;
}

.node-type-profile .block-views .views-row {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.node-type-profile .more-link a {
  font-weight: bold;
  text-decoration: none;
}

/*extra page of resources */
.manual-breadcrumb {
  font-size: .8em;
  margin-top: 20px;
}

.view-profile-related-resource-list h1 {
  font-size: 1.5em;
  margin-top: 20px;
}

.view-profile-related-resource-list .views-field {
  font-size: .9em;
}

.view-profile-related-resource-list .views-field-title {
  font-size: 1em;
  margin-bottom: 0;
}

/* =============================================================================
 *   Projects
 * ========================================================================== */
/* search page */
#block-views-exp-projects-search-page {
  clear: both;
  background-color: #f7f7f7;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  border-top: 1px solid #777;
  padding: 10px 20px;
  margin-bottom: 30px;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper {
  float: none;
  margin-bottom: 5px;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper .form-item {
  display: inline-block;
  margin-right: 20px;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper label {
  display: inline-block;
  font-weight: bold;
  padding: 5px;
  font-size: 1.1em;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper input[type="radio"]:checked + label {
  color: #007FAE;
  text-decoration: underline;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper input[type="radio"]:focus + label {
  border: 1px dotted #aaa;
}

#block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper label:hover, #block-views-exp-projects-search-page #edit-field-project-end-date-value-wrapper label:focus {
  text-decoration: underline;
  cursor: pointer;
  color: #007FAE;
}

#block-views-exp-projects-search-page .views-submit-button input {
  margin-top: 15px;
}

#block-views-exp-projects-search-page .form-type-textfield input#edit-keys {
  width: 150px;
}

#block-views-exp-projects-search-page .views-reset-button input.form-submit {
  background-color: transparent;
  border: 0;
  color: #007FAE;
  padding: 0;
  padding-right: 0px;
  font-weight: normal;
  text-decoration: underline;
  box-shadow: none;
  padding-right: 20px;
}

.view-projects-search .views-field-field-project-brief-description {
  font-size: .9em;
}

/* project nodes */
.node-type-project h1#page-title {
  font-size: 24px;
  margin: 30px 0 15px 0;
}

.node-type-project h1#page-title::after {
  border: 0px;
}

.node-type-project .field-name-field-project-logo {
  float: left;
  max-width: 30%;
  margin: 10px 40px 20px 0;
}

.node-type-project .group-proj-top-right {
  float: left;
  max-width: 65%;
  clear: none;
  margin: 10px 0 20px 0;
}

.node-type-project .group-proj-top-right .field-item.area-work {
  padding: 0 5px;
}

.node-type-project .group-proj-description {
  clear: both;
}

.node-type-project .group-proj-description h2 {
  font-size: 20px;
}

.node-type-project .field h2 {
  color: #484848;
}

.node-type-project .field-name-title h2 {
  font-size: 24px;
  line-height: 140%;
  color: #11294b;
}

.node-type-project .field-name-field-areas-of-work ul, .node-type-project .field-name-field-areas-of-work li {
  list-style-type: none;
  list-style-image: none;
  padding: 0;
  margin: 0;
}

.node-type-project .group-awards h2,
.node-type-project .view-header h2 {
  font-size: 1.2em;
  color: #484848;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  margin-top: 30px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.node-type-project .group-awards .field h2.field-label {
  font-size: 1em;
  font-weight: 600;
  margin: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.node-type-project .paragraphs-item-awards {
  margin-bottom: 15px;
  line-height: 150%;
}

.node-type-project .field-type-taxonomy-term-reference {
  margin-bottom: 10px;
}

.node-type-project .group-social .field-type-text {
  display: inline-block;
  margin: 10px 10px 0 0;
}

.node-type-project .group-social .field-type-text img {
  max-width: 30px;
}

/*project related resources */
#block-views-3f731098c6f030c1d648ee33f8d57602 {
  margin-top: 30px;
}

#block-views-3f731098c6f030c1d648ee33f8d57602 h2 {
  font-size: 1.3em;
  padding-left: 25px;
}

#block-views-3f731098c6f030c1d648ee33f8d57602 .all-resources {
  text-align: right;
  font-weight: bold;
  margin-top: -20px;
  margin-right: 30px;
}

#block-views-3f731098c6f030c1d648ee33f8d57602 .all-resources a {
  text-decoration: none;
}

#block-views-3f731098c6f030c1d648ee33f8d57602 .all-resources a:hover, #block-views-3f731098c6f030c1d648ee33f8d57602 .all-resources a:focus {
  text-decoration: underline;
}

#block-views-3f731098c6f030c1d648ee33f8d57602 .views-field-field-resource-pub-year {
  padding-right: 20px;
  font-size: .9em;
}

#block-views-3f731098c6f030c1d648ee33f8d57602 .views-field-field-resource-type {
  font-size: .9em;
}

/* related projects/umbrella */
#block-views-fda29f1961c14363d95eeb5a66260e79 {
  margin: 0 15px;
}

#block-views-fda29f1961c14363d95eeb5a66260e79 h2.block-title {
  font-size: 1.2em;
  color: #484848;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  margin-top: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

/*digital directory */
.view-digital-directory-table tr td {
  padding: 10px;
}

.view-digital-directory-table tr td a {
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
}

.view-digital-directory-table tr td a img {
  height: 40px;
  width: 40px;
}

.view-digital-directory-table tr td img {
  display: block;
}

.view-digital-directory-table th.views-field-field-facebook-url,
.view-digital-directory-table th.views-field-field-linkedin-url,
.view-digital-directory-table th.views-field-field-twitter-url,
.view-digital-directory-table th.views-field-field-pinterest-url,
.view-digital-directory-table th.views-field-field-youtube-url {
  font-size: 1px;
  color: transparent;
  height: 40px;
  width: 40px;
  padding: 10px;
  background: url("images/FB-sq.png") center center no-repeat;
  background-size: 40px 40px;
}

.view-digital-directory-table th.views-field-field-linkedin-url {
  background: url("images/Linkedin-sq.png") center center no-repeat;
  background-size: 40px 40px;
}

.view-digital-directory-table th.views-field-field-twitter-url {
  background: url("images/Twitter-sq.png") center center no-repeat;
  background-size: 40px 40px;
}

.view-digital-directory-table th.views-field-field-pinterest-url {
  background: url("images/Pinterest-sq.png") center center no-repeat;
  background-size: 40px 40px;
}

.view-digital-directory-table th.views-field-field-youtube-url {
  background: url("images/YouTube-sq.png") center center no-repeat;
  background-size: 40px 40px;
}

.view-digital-directory-table td.views-field-field-facebook-url,
.view-digital-directory-table td.views-field-field-linkedin-url,
.view-digital-directory-table td.views-field-field-twitter-url,
.view-digital-directory-table td.views-field-field-pinterest-url,
.view-digital-directory-table td.views-field-field-youtube-url {
  height: 40px;
  width: 40px;
  padding: 10px;
  text-align: center;
}

/* =============================================================================
 *   events
 * ========================================================================== */
/* set colors */
.page-events-and-training #header-wrapper,
.node-type-event #header-wrapper {
  padding-bottom: 50px;
  background: #B3D457 url("images/banner_ltgreen.png") center bottom no-repeat;
  background-size: 1200px auto;
}

.page-events-and-training h1#page-title::after {
  border-bottom: 3px solid #b4d856;
}

/*landing page */
.view-events-trainings .attachment .view-content {
  padding-top: 0;
  background: #102441 url("images/waves_dkblue.png") bottom right no-repeat;
}

.view-events-trainings .attachment .views-row {
  display: flex;
}

.view-events-trainings .attachment .views-row .views-field-field-event-image {
  flex-basis: 450px;
  flex-shrink: 0;
  flex-grow: 1;
}

.view-events-trainings .attachment .views-row .views-field-field-event-image img {
  display: block;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building {
  color: #fff;
  background-size: 100% auto;
  padding: 20px 40px;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .title {
  font-size: 22px;
  font-weight: 600;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .title a {
  color: #fff;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .title a:hover, .view-events-trainings .attachment .views-row .views-field-field-location-building .title a:focus {
  color: #4b9cd3;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .topic {
  font-size: .8em;
  margin: 5px 0 10px 0;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .date {
  font-size: 1.3em;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .address {
  font-weight: 500;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .address p {
  margin: 0;
}

.view-events-trainings .attachment .views-row .views-field-field-location-building .description {
  font-size: .9em;
}

.view-events-trainings .view-content {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  margin: 0 auto;
}

.view-events-trainings .view-content .event-box {
  flex-basis: 27%;
  flex-basis: calc(33% - 60px);
  flex-grow: 0;
  flex-shrink: 1;
  padding: 15px 20px 20px 20px;
  border: 1px solid #ddd;
  margin: 10px 10px;
  box-shadow: 1px 1px 3px #ddd;
}

.view-events-trainings .view-content .views-field-field-event-category {
  padding-left: 40px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  line-height: 40px;
}

.view-events-trainings .view-content .Event .views-field-field-event-category {
  background: url("images/blue-leaf.png") top left no-repeat;
  background-size: auto 35px;
}

.view-events-trainings .view-content .Training .views-field-field-event-category {
  background: url("images/green-leaf.png") top left no-repeat;
  background-size: auto 35px;
}

.view-events-trainings .view-content .views-field-field-event-dates {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
}

.view-events-trainings .view-content .views-field-field-event-topic,
.view-events-trainings .view-content .views-field-field-event-organizer {
  font-size: .8em;
  line-height: 140%;
  margin-bottom: 5px;
}

.view-events-trainings .view-content .views-field-title {
  margin: 10px 0;
  line-height: 130%;
}

.view-events-trainings .view-content .views-field-title a {
  text-decoration: none;
  font-weight: bold;
}

.view-events-trainings .view-content .views-field-title a:hover {
  text-decoration: underline;
}

.view-events-trainings .view-content .event-info p {
  margin: 0;
  display: inline;
}

.view-events-trainings .archive-link {
  font-weight: bold;
  margin: 15px;
}

.view-events-trainings .archive-link a {
  text-decoration: none;
}

.view-events-trainings .archive-link a:hover {
  text-decoration: underline;
}

/* event nodes */
.node-type-event h1#page-title {
  display: none;
}

.node-type-event .field-name-field-event-category {
  margin-top: 30px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  line-height: 20px;
  margin-bottom: 15px;
  font-size: .8em;
}

.node-type-event .field-name-field-event-category .Event {
  padding-left: 30px;
  background: url("images/blue-leaf.png") center left no-repeat;
  background-size: auto 20px;
}

.node-type-event .field-name-field-event-category .Training {
  padding-left: 30px;
  background: url("images/green-leaf.png") center left no-repeat;
  background-size: auto 20px;
}

.node-type-event .field-name-field-event-topic {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.node-type-event .field-name-field-event-organizer {
  font-size: .9em;
  margin-bottom: 20px;
  margin-top: 5px;
}

.node-type-event .views-field-field-building {
  margin-bottom: 10px;
}

.node-type-event .field-name-title h2 {
  line-height: 150%;
  font-size: 1.5em;
  margin: 5px 0;
}

.node-type-event .field-name-field-location-building,
.node-type-event .field-name-field-event-dates {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.1em;
  margin-bottom: 5px;
  display: inline-block;
}

.node-type-event .field-name-field-location-building div,
.node-type-event .field-name-field-event-dates div {
  display: inline;
}

.node-type-event .field-name-field-location-building::before {
  content: '|';
  padding-left: 5px;
  margin-left: 0px;
  display: inline;
}

.node-type-event .field-name-field-map-link-and-address2 p {
  margin: 0;
}

.node-type-event .field-name-field-map-link-and-address2,
.node-type-event .field-name-field-map-link {
  font-size: 1em;
  margin: 5px 0;
}

.node-type-event .field-name-field-map-link-and-address2 .views-field-field-other-map-url,
.node-type-event .field-name-field-map-link-and-address2 .views-field-field-building,
.node-type-event .field-name-field-map-link .views-field-field-other-map-url,
.node-type-event .field-name-field-map-link .views-field-field-building {
  padding-left: 20px;
  background: url("images/map.png") center left no-repeat;
  background-size: auto 18px;
}

.node-type-event .field-name-field-event-address {
  clear: left;
  margin-bottom: 20px;
}

.node-type-event .field-name-field-event-description {
  padding-top: 10px;
  border-top: 1px solid #ddd;
  clear: left;
}

.node-type-event h2.field-label {
  color: #484848;
}

.node-type-event .field-name-field-event-link {
  margin: 15px 0;
}

.node-type-event .field-name-field-event-link a {
  display: inline-block;
  background-color: #b4d856;
  padding: 5px 35px;
  border-radius: 7px;
  color: #13294b;
  font-size: 16px;
  border: 3px solid #b4d856;
  font-weight: bold;
  max-width: 95%;
  text-decoration: none;
}

.node-type-event .field-name-field-event-link a:hover, .node-type-event .field-name-field-event-link a:focus {
  background-color: #fff;
}

/*archives*/
#block-views-exp-events-archive-page {
  clear: both;
  background-color: #f7f7f7;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  border-top: 1px solid #777;
  padding: 10px 20px;
  margin-bottom: 30px;
}

#block-views-exp-events-archive-page .views-submit-button input {
  margin-top: 15px;
}

#block-views-exp-events-archive-page .form-type-textfield input#edit-keys {
  width: 150px;
}

#block-views-exp-events-archive-page .views-reset-button input.form-submit {
  background-color: transparent;
  border: 0;
  color: #007FAE;
  padding: 0;
  padding-right: 0px;
  font-weight: normal;
  text-decoration: underline;
  box-shadow: none;
  padding-right: 20px;
}

.view-events-archive .Event .views-field-field-event-category {
  padding-left: 22px;
  background: url("images/blue-leaf.png") top left no-repeat;
  background-size: auto;
  background-size: auto 18px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: .9em;
}

.view-events-archive .Training .views-field-field-event-category {
  padding-left: 22px;
  background: url("images/green-leaf.png") top left no-repeat;
  background-size: auto;
  background-size: auto 18px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: .9em;
}

.view-events-archive .views-field-title {
  margin: 5px 0;
}

.view-events-archive .views-field-field-event-topic,
.view-events-archive .views-field-field-event-organizer,
.view-events-archive .views-field-field-event-dates {
  font-size: .9em;
}

/* =============================================================================
 *   Top navigation on landing pages
 * ========================================================================== */
.view-people-directory .description,
.about-description {
  margin: 0px 20px 20px 0;
  float: left;
  max-width: 750px;
  width: calc(100% - 300px);
}

.view-people-directory .links,
.about-links {
  float: right;
  width: 260px;
  padding-top: 10px;
}

.view-people-directory .links ul, .view-people-directory .links li,
.about-links ul,
.about-links li {
  list-style-type: none;
  list-style-image: none;
  margin: 0;
}

.view-people-directory .links li,
.about-links li {
  margin-bottom: 3px;
}

.view-people-directory .links .people-link,
.about-links .people-link {
  margin-bottom: 3px;
}

.view-people-directory .links a,
.about-links a {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
}

.view-people-directory .links a:hover,
.about-links a:hover {
  text-decoration: underline;
}

.view-people-directory .links {
  padding-top: 0;
  margin-bottom: 20px;
  width: 260px;
}

/* =============================================================================
 *   About us pages
 * ========================================================================== */
.page-node-4200 .field-name-body {
  margin-top: -10px;
}

.page-node-4200 .field-name-body::after {
  content: '';
  clear: both;
  display: block;
  height: 5px;
}

/* =============================================================================
 *   Search
 * ========================================================================== */
/* search page */
.page-search .views-exposed-widgets {
  clear: both;
  background-color: #f7f7f7;
  box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.16);
  border-top: 1px solid #777;
  padding: 10px 20px 30px 20px;
  margin-bottom: 20px;
}

.page-search .views-exposed-widgets .views-submit-button {
  margin: 0;
}

.page-search .views-exposed-widgets .views-submit-button .form-submit {
  margin-top: 20px;
}

.page-search .views-exposed-widgets input#edit-title {
  width: 150px;
}

.page-search .views-exposed-widgets .views-reset-button .form-submit {
  background-color: transparent;
  border: 0;
  margin-top: 30px;
  padding: 0 20px 0 0;
  color: #007FAE;
  font-weight: normal;
  text-decoration: underline;
}

.page-search .list-tile .views-field-title a {
  font-weight: normal;
  font-size: 1.1em;
}

.page-search .views-field-search-api-excerpt,
.page-search .views-field-type {
  font-size: .9em;
  margin-bottom: 3px;
}

/* handling embedded images */
.field-name-field-news-full-story img {
  margin: 10px 15px;
}

.field-name-field-news-full-story figure.image {
  text-align: center;
  margin: 10px 20px -10px 20px;
}

.field-name-field-news-full-story figure.image img {
  margin: 0 !important;
}

/* Fixes for individual pages */
/*Our divisions */
.page-node-5541 .paragraphs-item-image-with-title-and-text {
  margin-top: 0;
}

/* Make videos responsive */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-embed iframe,
.video-embed object,
.video-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =============================================================================
 *   Post launch additions
 * ========================================================================== */

/* News sidebar 2-15-21 */

.group-news-main {
  display: flex;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.group-news-main .group-news-main-left {
  flex-shrink: 1;
  flex-grow: 0;
}

.group-news-main .field-name-field-sidebar {
  margin: 0 0 15px 15px;
  flex-basis: 220px;
  flex-shrink: 0;
  flex-grow: 0;
  width: 220px;
  background: #F5F6F7 url("images/news_gray_waves.png") bottom left no-repeat;
  background-size: 100% auto;
  padding: 10px 20px 20px 20px;
}

.node-type-news .field-name-field-news-full-story {
    border-top: 0px;
    padding-top: 0;
}

@media only screen and (max-width: 850px) {
  .group-news-main {
    display: block;
  }

  .group-news-main .field-name-field-sidebar {
    width: auto;
    margin: 20px 0;
  }

}

/* home page updates 2021 */

body.front #block-block-14 {
    margin-bottom: 50px;
    margin-top: 20px;
}

#block-views-home-page-news-block {
  margin: 40px 0;
}

#block-views-home-page-news-block h2.block-title {

  margin: 0 0 10px 15px;
}

#block-views-home-page-news-block h2.block-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    border-bottom: 3px solid #4b9cd3;
}

#block-views-home-page-news-block .more-news {
  text-align: right;
}

#block-views-home-page-news-block .more-news a {
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  margin-right: 15px;
}

#block-views-home-page-news-block .more-news a:hover,
#block-views-home-page-news-block .more-news a:focus {
  text-decoration: underline;
}

body.front #content-top-wrapper .view-home-page-news .views-row {
    margin: 15px;
}

/* temporarily hide breadcrumbs */

.page-node-7922 .easy-breadcrumb,
.page-node-5540 .easy-breadcrumb,
.page-node-5559 .easy-breadcrumb,
.page-node-5562 .easy-breadcrumb,
.page-node-5563 .easy-breadcrumb,
.page-node-5568 .easy-breadcrumb {
  display:none;
}

/* temp add caption to one image */
.page-node-8737 .field-name-field-news-image .field-items::after {
  content: 'Photo courtesy OU-Tulsa';
  font-style: italic;
  text-align: right;
  font-size: 90%;
  display: block;
}
