/* Add to all projects */
/* Please maintain alphabetical order */
/* @import (less) "normalize"; */
/* =Variables Generic */
@font-face {
  font-family: 'Source Code Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Code Pro Regular'), local('SourceCodePro-Regular'), url(https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevT.ttf) format('truetype');
}
/*
* === LILO THEME ===
*/
/* =Mixins Generic */
/* Responsive Mixins */
.mixin-example {
  padding: 10px;
}
@media (min-width: 1200px) {
  .mixin-example {
    padding: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
/* stylelint-disable */
@keyframes slide-panel {
  0% {
    -webkit-transition: width 0.2s ease;
    -moz-transition: width 0.2s ease;
    -o-transition: width 0.2s ease;
    transition: width 0.2s ease;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transition: width 0.2s ease;
    -moz-transition: width 0.2s ease;
    -o-transition: width 0.2s ease;
    transition: width 0.2s ease;
  }
}
/* stylelint-enable */
/* =Utility Generic */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
pre {
  font-family: "Source Code Pro", "Courier New", "Menlo-Regular", monospace;
}
ol,
ul {
  list-style: none;
}
.ordered-list {
  list-style-type: decimal;
}
.unordered-list {
  list-style: disc;
  margin-left: 2em;
}
.decimal {
  list-style-type: decimal;
  padding-left: 40px;
}
.decimal li {
  padding: 0.5em 0;
}
blockquote {
  font-style: italic;
  border-left: 3px solid;
  padding-left: 20px;
  margin: 0 20px;
}
blockquote i {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #006298;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: #00314c;
  text-decoration: underline;
}
.hide,
.hidden {
  display: none;
}
.offscreen {
  position: absolute;
  text-indent: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.error,
.error-message {
  color: #c00;
}
.error::-webkit-input-placeholder,
.error-message::-webkit-input-placeholder {
  color: #c00;
  font-size: 12px;
}
.error::-moz-placeholder,
.error-message::-moz-placeholder {
  color: #c00;
  font-size: 12px;
}
.error:-ms-input-placeholder,
.error-message:-ms-input-placeholder {
  color: #c00;
  font-size: 12px;
}
.column-two {
  column-count: 2;
}
.workflow-loading-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 56, 101, 0.8);
  color: #fff;
}
.workflow-loading-wrapper.hide {
  display: none;
}
.wrap-text {
  word-break: break-all;
}
.grid-column-two {
  display: grid;
  grid-template-columns: min-content auto;
  grid-gap: 2%;
}
.grid-column-two--equal-size {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 599px) {
  .grid-column-two--gdl-card {
    grid-template-columns: auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.grid-column-two--uneven-right {
  grid-template-columns: 2fr 5fr;
}
.grid-column-span-two {
  grid-column-end: span 2;
}
.grid-column-span-three {
  grid-column-end: span 3;
}
.grid-column-two--uneven-left {
  grid-template-columns: auto min-content;
}
.loading {
  background: url(../images/ajax-loader.gif) no-repeat center center;
  padding: 40px;
}
.flexbox-column-two {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 2em;
}
.flexbox-column-two--item {
  margin: 1%;
  flex: 1 42%;
  position: relative;
  align-self: stretch;
}
@media (max-width: 768px) {
  .flexbox-column-two--item {
    flex: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.orange-font {
  color: #d54405;
}
.italics {
  font-style: italic;
}
.reset-button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}
.reset-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.curriculum-alignment-state .alignment-results-icon {
  padding: 10px 11px;
  background-color: #006298;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 12px;
}
.curriculum-alignment-state .alignment-results-header {
  font-weight: 600;
}
.curriculum-alignment-state .curriculum-standard {
  margin-bottom: 1em;
}
.curriculum-alignment-state .standardNumber {
  font-weight: 600;
  margin-right: 10px;
}
.sideBarArticle,
.document-comment {
  background-color: rgba(110, 206, 246, 0.211);
  padding: 1em;
  margin-bottom: 2em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.sideBarArticle .removeDrive,
.document-comment .removeDrive {
  margin: 0;
}
.sideBarArticle .sidebarContent,
.document-comment .sidebarContent {
  margin-top: 1em;
}
.sideBarArticle .sidebarContent h2,
.document-comment .sidebarContent h2 {
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
}
.sideBarArticle .sidebarContent h2 .hitHighlite,
.document-comment .sidebarContent h2 .hitHighlite {
  color: #d54405;
  font-weight: bold;
  padding-left: 5px;
}
.sidebarArticleToggle.toggled .hide-message {
  display: none;
}
.sidebarArticleToggle.toggled .show-message {
  display: inline-block;
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.sidebarArticleToggle.toggled .show-message [class*="fa-"] {
  margin: 0 5px;
}
.sidebarArticleToggle.toggled .show-message_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.sidebarArticleToggle.toggled .show-message_primary:hover,
.sidebarArticleToggle.toggled .show-message_primary:active,
.sidebarArticleToggle.toggled .show-message_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.sidebarArticleToggle.toggled .show-message_inverted:active,
.sidebarArticleToggle.toggled .show-message_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.sidebarArticleToggle.toggled .show-message_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_accent:active,
.sidebarArticleToggle.toggled .show-message_accent:visited,
.sidebarArticleToggle.toggled .show-message_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.sidebarArticleToggle.toggled .show-message_filter:hover,
.sidebarArticleToggle.toggled .show-message_filter:active,
.sidebarArticleToggle.toggled .show-message_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.sidebarArticleToggle.toggled .show-message_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_filter--active:active,
.sidebarArticleToggle.toggled .show-message_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle.toggled .show-message_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.sidebarArticleToggle.toggled .show-message_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.sidebarArticleToggle.toggled .show-message_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sidebarArticleToggle.toggled .show-message--expanded {
  width: 100%;
}
.sidebarArticleToggle.toggled .show-message_clean {
  background: transparent;
  border: none;
}
.sidebarArticleToggle.toggled .show-message_clean:hover {
  background: #000;
  color: #fff;
}
.sidebarArticleToggle.toggled .show-message--small {
  font-size: 11px;
  padding: 5px 8px;
}
.sidebarArticleToggle.toggled .show-message:hover,
.sidebarArticleToggle.toggled .show-message:active,
.sidebarArticleToggle.toggled .show-message:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message {
  display: inline-block;
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.sidebarArticleToggle .hide-message [class*="fa-"] {
  margin: 0 5px;
}
.sidebarArticleToggle .hide-message_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.sidebarArticleToggle .hide-message_primary:hover,
.sidebarArticleToggle .hide-message_primary:active,
.sidebarArticleToggle .hide-message_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.sidebarArticleToggle .hide-message_inverted:active,
.sidebarArticleToggle .hide-message_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.sidebarArticleToggle .hide-message_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_accent:active,
.sidebarArticleToggle .hide-message_accent:visited,
.sidebarArticleToggle .hide-message_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.sidebarArticleToggle .hide-message_filter:hover,
.sidebarArticleToggle .hide-message_filter:active,
.sidebarArticleToggle .hide-message_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.sidebarArticleToggle .hide-message_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_filter--active:active,
.sidebarArticleToggle .hide-message_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .hide-message_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.sidebarArticleToggle .hide-message_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.sidebarArticleToggle .hide-message_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sidebarArticleToggle .hide-message--expanded {
  width: 100%;
}
.sidebarArticleToggle .hide-message_clean {
  background: transparent;
  border: none;
}
.sidebarArticleToggle .hide-message_clean:hover {
  background: #000;
  color: #fff;
}
.sidebarArticleToggle .hide-message--small {
  font-size: 11px;
  padding: 5px 8px;
}
.sidebarArticleToggle .hide-message:hover,
.sidebarArticleToggle .hide-message:active,
.sidebarArticleToggle .hide-message:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.sidebarArticleToggle .show-message {
  display: none;
}
.getLink__header {
  font-size: large;
  margin-bottom: 5px;
  display: block;
}
.getLink__subheader {
  font-size: smaller;
}
.getLink__box {
  margin-top: 10px;
  border: 1px solid #000;
  background-color: #fff;
  padding: 10px;
}
.getLink__url {
  word-break: break-all;
  font-size: small;
}
.getLink__button {
  margin-top: 10px;
}
.breadcrumbs {
  display: inline-block;
  margin-bottom: 2em;
  font-size: smaller;
  padding-top: 1em;
}
.breadcrumbs_crumb {
  display: inline;
}
.breadcrumbs_crumb::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  margin: 0 5px;
}
.breadcrumbs_crumb--last::after {
  content: "";
}
.content-wrapper__browse-by-date {
  padding: 0;
  width: 100%;
}
.content-wrapper__browse-by-date input:invalid {
  box-shadow: none;
}
.content-wrapper__browse-by-date .contentSection {
  padding-top: 0;
  margin-top: 0;
}
.content-wrapper__browse-by-date .contentSection.browse-by-date {
  margin-top: 60px;
}
.browse-date-section {
  display: grid;
  vertical-align: top;
  padding: 1em 1em 100px 1em;
  grid-column-gap: 10px;
  grid-template-columns: min-content minmax(300px, auto);
  grid-template-rows: min-content auto;
  column-gap: 2em;
  min-height: 60vh;
}
@media (max-width: 1024px) {
  .browse-date-section {
    min-height: 65vh;
    grid-template-columns: 1fr 2fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .browse-date-section {
    min-height: 65vh;
    display: flex;
    flex-wrap: wrap;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .browse-date-section__inputs {
    padding-right: 30px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .date-entry {
    max-width: 240px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.date-entry .input {
  width: 200px;
}
@media (max-width: 768px) {
  .date-entry .input {
    max-width: 160px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.pub-results__image {
  width: 100%;
  max-width: 250px;
  padding-top: 21px;
}
@media (max-width: 1024px) {
  .pub-results__image {
    width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.datepicker {
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .datepicker {
    width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.loading {
  width: 400px;
  max-width: 400px;
  height: 200px;
}
.button {
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.button [class*="fa-"] {
  margin: 0 5px;
}
.button_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.button_primary:hover,
.button_primary:active,
.button_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.button_inverted:active,
.button_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.button_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_accent:active,
.button_accent:visited,
.button_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.button_filter:hover,
.button_filter:active,
.button_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.button_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_filter--active:active,
.button_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.button_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.button_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button--expanded {
  width: 100%;
}
.button_clean {
  background: transparent;
  border: none;
}
.button_clean:hover {
  background: #000;
  color: #fff;
}
.button--small {
  font-size: 11px;
  padding: 5px 8px;
}
.button_circle-icon {
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 1.5em;
  padding: 0;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.button_circle-icon [class*="fa-"] {
  margin-left: -3px;
}
.button_circle-icon:hover {
  background-color: #e6e6e6;
  border: 1px #e6e6e6 solid;
  transition: all 0.3s ease;
}
.button-wrapper {
  margin: 10px 0;
}
.button-row--left {
  text-align: left;
}
.button-row--center {
  text-align: center;
}
.button-row--right {
  text-align: right;
}
.button-row--container {
  margin: 1em 0;
}
.button-row .prev [class*="fa-"] {
  margin-right: 5px;
  font-size: 1.5em;
}
.button-row .prev > * {
  display: flex;
  align-items: center;
}
.button-row .next [class*="fa-"] {
  margin-left: 5px;
  font-size: 1.5em;
}
.button-row .next > * {
  display: flex;
  align-items: center;
}
[class*="button-row"] li {
  display: inline-block;
  margin-right: 5px;
}
[class*="button-row"] .button {
  margin-right: 5px;
}
.topic-list {
  list-style: none;
  padding: 0;
  display: inline;
  max-width: 60%;
}
@media (max-width: 768px) {
  .topic-list {
    max-width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.topic-list .topic {
  display: inline-block;
}
.topic-list .topic a {
  text-decoration: none;
}
.topic-list .topic.category-name {
  display: inline-block;
  margin: 0.5em 0.5em 0.5em 0;
  height: auto !important;
}
.topic-list .topic .category-link {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.topic-list .topic .category-link [class*="fa-"] {
  margin: 0 5px;
}
.topic-list .topic .category-link_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.topic-list .topic .category-link_primary:hover,
.topic-list .topic .category-link_primary:active,
.topic-list .topic .category-link_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.topic-list .topic .category-link_inverted:active,
.topic-list .topic .category-link_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.topic-list .topic .category-link_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_accent:active,
.topic-list .topic .category-link_accent:visited,
.topic-list .topic .category-link_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.topic-list .topic .category-link_filter:hover,
.topic-list .topic .category-link_filter:active,
.topic-list .topic .category-link_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.topic-list .topic .category-link_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_filter--active:active,
.topic-list .topic .category-link_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .topic .category-link_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.topic-list .topic .category-link_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.topic-list .topic .category-link_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.topic-list .topic .category-link--expanded {
  width: 100%;
}
.topic-list .topic .category-link_clean {
  background: transparent;
  border: none;
}
.topic-list .topic .category-link_clean:hover {
  background: #000;
  color: #fff;
}
.topic-list .topic .category-link--small {
  font-size: 11px;
  padding: 5px 8px;
}
.topic-list .topic .category-link:hover,
.topic-list .topic .category-link:active,
.topic-list .topic .category-link:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  transition: all 0.3s ease;
}
.topic-list .active button {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.topic-list .active button [class*="fa-"] {
  margin: 0 5px;
}
.topic-list .active button_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.topic-list .active button_primary:hover,
.topic-list .active button_primary:active,
.topic-list .active button_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.topic-list .active button_inverted:active,
.topic-list .active button_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.topic-list .active button_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_accent:active,
.topic-list .active button_accent:visited,
.topic-list .active button_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.topic-list .active button_filter:hover,
.topic-list .active button_filter:active,
.topic-list .active button_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.topic-list .active button_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_filter--active:active,
.topic-list .active button_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topic-list .active button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.topic-list .active button_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.topic-list .active button_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.topic-list .active button--expanded {
  width: 100%;
}
.topic-list .active button_clean {
  background: transparent;
  border: none;
}
.topic-list .active button_clean:hover {
  background: #000;
  color: #fff;
}
.topic-list .active button--small {
  font-size: 11px;
  padding: 5px 8px;
}
.topic-list .active button:hover,
.topic-list .active button:active,
.topic-list .active button:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.collection-counts ~ .button-row {
  padding-top: 0.5em;
}
.card {
  background-color: #fff;
  padding: 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
}
.card--blue {
  background-color: #006298;
}
.card__title-link a {
  color: #000;
}
.card__image-card {
  padding: 0;
}
.card__image-card img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card__image-card .header {
  display: block;
  padding: 0 1em 0.5em 1em;
  text-align: center;
  font-size: 1.3em;
}
.card__image-card .header--small {
  font-size: 0.8em;
}
.card__partner_logo--image {
  border-radius: 4px 4px 0 0;
  width: auto;
  max-height: 200px;
  max-width: 600px;
}
@media (max-width: 599px) {
  .card__partner_logo--image {
    max-width: 14em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .card__partner_logo--image {
    max-width: 29.5em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.card--no-padding {
  padding: 0;
}
.card__topic-image-container {
  position: relative;
  width: 150px;
  overflow: hidden;
  border-radius: 0 4px 4px 0;
  flex: 0 auto;
}
.card__topic-image-img {
  position: absolute;
  right: 0;
  height: 100%;
}
.card__image-card--horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  height: 150px;
}
.card__image-card--horizontal .image {
  object-fit: cover;
  height: 150px;
  width: 200px;
  display: flex;
  border-radius: 0 4px 4px 0;
}
.card__image-card--horizontal .subcategory__header {
  padding: 1em;
}
.card__image-card--horizontal .subcategory__header .topic-title {
  margin-bottom: 0;
}
.card__image-card--bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card__image-card--bottom .header {
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  display: grid;
  grid-template-columns: 30px auto;
  align-items: flex-start;
  min-height: 50px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.card__image-card--bottom .image {
  object-fit: cover;
  display: flex;
  border-radius: 0 0 4px 4px;
  height: 300px;
  width: 100%;
  position: absolute;
}
.card__image-card--bottom .input {
  justify-self: center;
  align-self: flex-start;
  margin-top: 6px;
}
.card__image-card--bottom .image-links__label {
  padding: 0.5em;
  font-size: smaller;
}
.card__color-header {
  border: 0;
  padding: 0;
}
.card__color-header--blue {
  background-color: #003865;
  color: #fff;
  font-weight: 200;
}
.card__color-header-title {
  padding: 0.5em 1em;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
}
.card__color-header-body {
  padding: 1em;
  border-radius: 0 0 4px 4px;
  font-size: smaller;
}
.card__related-books {
  max-width: 165px;
  margin: 0.5em;
}
.card__browse-all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card__browse-all--content {
  text-align: right;
}
.card__browse-all--content a {
  color: #fff;
  font-size: 1.5em;
}
.card__browse-all--content a:hover .card__browse-all--content__text {
  text-decoration: underline;
}
.card__browse-all--content a:hover .card__browse-all--content__icon {
  border-bottom: solid 2px;
}
.card__browse-all--content__text,
.card__browse-all--content__icon {
  display: inline-block;
  margin-right: 0.5em;
}
.card__browse-all--content [class*="fa-"] {
  color: #fff;
  font-size: 40px;
  align-self: center;
  vertical-align: unset;
}
.card__SBRC-card .topicListItem {
  display: inline-block;
  width: 50%;
}
.card__SBRC-card .topicListItem li {
  margin: 5px 0;
}
.card__SBRC-card .image {
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  width: 50%;
}
.card__SBRC-card img {
  max-width: 100px;
  max-height: 100px;
}
.card__suggested-persons {
  max-width: 200px;
  margin: 0 0.5em;
}
.card__suggested-persons .csProductName {
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.card__suggested-persons .csProductName.cross-search-other {
  background-color: #d9f3ff;
  border-color: #4F5A63;
  color: #000;
}
.card__suggested-persons .csProductName.cross-search-current {
  background-color: #003865;
  border-color: #fff;
  color: #fff;
}
.card__border-card {
  display: flex;
  align-items: center;
  border: 1px solid #4F5A63;
  border-left: 6px solid #d54405;
  height: 75px;
  padding: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.card__border-card:hover {
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.card__border-card-header {
  color: #000;
  font-weight: normal;
  text-decoration: none;
}
.card__border-card-header:hover {
  text-decoration: none;
}
.card .topicListItem {
  padding: 3px 0;
}
.partner_logo {
  width: min-content;
}
.related-topics__carousel img {
  background-position: 50%;
  background-repeat: no-repeat;
  object-fit: cover;
  margin: 0 auto;
  height: 150px;
}
.GDSC .card__image-card--bottom .header {
  grid-template-columns: auto;
  text-indent: 0.5em;
}
.carousel {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  background-color: #f2f2f2;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .carousel {
    margin: 0 -30px;
    grid-template-columns: 25px 1fr 25px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carousel__card {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  max-height: 100%;
  padding: 2em;
}
@media (max-width: 599px) {
  .carousel__card {
    padding: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carousel__card .description {
  display: flex;
  align-items: center;
}
@media (max-width: 599px) {
  .carousel__card .description {
    grid-row: 2;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carousel .image {
  background-position: 50%;
  background-repeat: no-repeat;
  object-fit: cover;
  margin: 0 auto;
  max-height: 340px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 599px) {
  .carousel .image {
    grid-row: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .carousel .image img {
    max-height: 200px;
    object-fit: cover;
  }
}
.carousel .button {
  margin-top: 15px;
}
.carousel .copyright {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
}
@media (max-width: 599px) {
  .carousel .copyright {
    position: relative;
    bottom: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carousel .topics-carousel__nav-prev,
.carousel .topics-carousel__nav-next {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 40px;
  height: 45px;
  position: relative;
  top: 200px;
}
.carousel .slick-slide {
  display: inline-grid;
}
@media (max-width: 599px) {
  .carousel .slick-slide {
    display: grid;
    grid-template-columns: auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .carousel .slick-slide img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carousel .slick-prev,
.carousel .slick-next {
  height: 50px;
  width: 50px;
  font-size: 1.5em;
  overflow: hidden;
}
.carousel .slick-prev::before,
.carousel .slick-next::before {
  color: #000;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 1.5em;
  margin-left: 15px;
}
.carousel .slick-prev:hover,
.carousel .slick-next:hover {
  overflow: hidden;
}
.carousel .slick-prev {
  grid-column: 1;
  left: unset;
}
.carousel .slick-prev::before {
  content: "\f053";
}
.carousel .slick-next {
  right: 0;
  position: absolute;
}
.carousel .slick-next::before {
  content: "\f054";
}
.carousel .slick-next:hover {
  right: 0;
  position: absolute;
}
.carousel .slick-list {
  grid-column: 2;
  padding: 1em;
}
.carousel .slick-dots {
  grid-row: 2;
  grid-column: 1 / 4;
  position: absolute;
  top: 0;
}
.carousel .slick-dots li button::before {
  font-size: 14px;
}
.book-carousel {
  display: grid;
  grid-template-columns: min-content auto min-content;
  height: 335px;
  overflow: hidden;
}
.book-carousel__list {
  display: flex;
  flex-wrap: wrap;
}
.book-carousel__prev,
.book-carousel__next {
  border: none;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 3em;
  color: #000000;
  background: #F2F2F2;
  margin-top: 115px;
  border-radius: 60px;
  height: 60px;
  width: 60px;
}
.book-carousel__prev:disabled,
.book-carousel__next:disabled {
  color: #6E6F6F;
}
.book-carousel__prev:focus,
.book-carousel__next:focus {
  outline: none;
}
.book-carousel__prev:focus::before,
.book-carousel__next:focus::before {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
.book-carousel__prev::before {
  content: '\f053';
  position: relative;
  left: -1px;
}
.book-carousel__next::before {
  content: '\f054';
  position: relative;
  left: 1px;
}
.book-carousel__item[aria-hidden=true] {
  display: none;
}
.BNA .book-carousel {
  height: 425px;
}
@media (max-width: 599px) {
  .BNA .book-carousel {
    height: 320px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.BNA .book-carousel__prev,
.BNA .book-carousel__next {
  padding-top: 60px;
  margin-top: 150px;
}
.BNA .book-carousel__prev::before,
.BNA .book-carousel__next::before {
  top: -54px;
}
.citationWrapper {
  background-color: #f2f2f2;
  border-top: 3px solid #000;
  padding: 1em;
  margin: 1em 0;
}
.citation_types {
  margin: 1em 0;
}
.citation_types a {
  margin-right: 10px;
}
.citation_types a.active {
  text-decoration: underline;
}
.citation_types .mobile-citation-types {
  display: none;
}
@media (max-width: 599px) {
  .citation_types {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .citation_types a {
    display: none;
  }
  .citation_types .mobile-citation-types {
    display: block;
  }
}
.citation_section {
  background-color: #fff;
  padding: 1em;
  margin-bottom: 1em;
  position: relative;
}
.citation_section .ct_ScholarlyJournal div {
  word-break: break-word;
}
.citation_button-list {
  display: flex;
  justify-content: flex-end;
}
.citation_exports {
  display: inline;
}
.citation_exports--item {
  display: inline-block;
  text-align: center;
  margin-right: 1em;
}
@media (max-width: 599px) {
  .citation_exports--item {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.citation_exports--item .icon {
  height: 50px;
  width: 50px;
  background-color: #fff;
  border-radius: 50%;
  margin: 10px auto;
}
.citation_exports--item img {
  height: 50px;
  border-radius: 50%;
}
@media (max-width: 599px) {
  .citation_exports .subheader {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.citation_exports .note {
  font-size: 0.7em;
  float: right;
  width: 150px;
  text-align: left;
}
@media (max-width: 1024px) {
  .citation_exports .note {
    padding: 2em 0 1em 0;
    width: auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.citation_exports .mobile-citation-exports {
  display: none;
}
@media (max-width: 599px) {
  .citation_exports .mobile-citation-exports {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.citation .docUrl {
  word-break: break-word;
}
.document-tgnumber {
  display: inline;
}
.document-tgnumber > * {
  display: inline-block;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #006298;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect [class*="fa-"],
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload [class*="fa-"] {
  margin: 0 5px;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_primary,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_primary:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_primary:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_primary:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_primary:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_primary:focus,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_inverted,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_inverted:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_inverted:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_inverted:focus,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_inverted:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_accent,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_accent:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_accent:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_accent:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_accent:visited,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_accent:visited,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_accent:focus,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter:focus,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter--active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter--active:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter--active:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter--active:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter--active:focus,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_filter--active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_link,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_link:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect--expanded,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload--expanded {
  width: 100%;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_clean,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_clean {
  background: transparent;
  border: none;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect_clean:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload_clean:hover {
  background: #000;
  color: #fff;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect--small,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload--small {
  font-size: 11px;
  padding: 5px 8px;
}
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload:hover,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload:active,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsClickToSelect:focus,
.citationToolsEmbedContainer .citationToolsContainer .citationToolsFormatsContainer .citationToolsDownload:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.curriculum-sidebar .header {
  background-color: #0083cb;
  color: #fff;
  display: grid;
  grid-template-columns: 50px auto;
}
.curriculum-sidebar .header-name {
  align-self: center;
  justify-self: left;
  padding: 0.5em;
}
.curriculum-sidebar .back-button {
  background-color: #006298;
  color: #fff;
  font-size: 1.5em;
}
.curriculum-sidebar .back-button:hover {
  color: #fff;
}
.curriculum-sidebar .ui-accordion-header {
  background-color: #f2f2f2;
  color: #000;
  text-indent: 0;
  padding-left: 25px;
  font-size: 0.8em;
  margin: 0;
}
.curriculum-sidebar .ui-accordion-header-icon {
  background: url("../images/caret-right-solid.svg") no-repeat;
}
.curriculum-sidebar .ui-accordion-header-active {
  border: 1px solid #4F5A63;
}
.curriculum-sidebar .ui-accordion-header-active .ui-icon {
  background: url("../images/caret-down-solid.svg") no-repeat;
}
.curriculum-sidebar .ui-accordion-header .header-selection {
  color: #006298;
  font-size: 1.2em;
  text-indent: 0;
}
.curriculum-sidebar .ui-accordion-header .header-selection:hover {
  text-decoration: underline;
}
.curriculum-sidebar .ui-accordion-content {
  background-color: #fff;
  border: 0;
}
.curriculum-sidebar .aligned-text {
  text-align: left;
  text-transform: capitalize;
}
.custom-fa-About::before {
  content: "\f128";
}
.custom-fa-activity::before {
  content: "\f0c3";
}
.custom-fa-all-content::before {
  content: "\f57d";
}
.custom-fa-audio::before,
.custom-fa-audios::before {
  content: "\f6a8";
}
.custom-fa-biographies::before,
.custom-fa-middle_school_biographies::before,
.custom-fa-bios::before {
  content: "\f007";
}
.custom-fa-books::before {
  content: "\f5db";
}
.custom-fa-citations::before {
  content: "\f08e";
}
.custom-fa-conferences::before {
  content: "\f680";
}
.custom-fa-content-level-Advanced::before {
  content: "\f2ec";
  color: #c00;
}
.custom-fa-content-level-Basic::before {
  content: "\f111";
  color: #78a12b;
}
.custom-fa-content-level-Intermediate::before {
  content: "\f0c8";
  color: #ffe724;
}
.custom-fa-directories::before {
  content: "\f07c";
}
.custom-fa-essay::before {
  content: "\f305";
}
.custom-fa-EssaysResources::before {
  content: "\f02d";
}
.custom-fa-gdsc_microfilmcoll::before {
  content: "\f187";
}
.custom-fa-images::before {
  content: "\f302";
}
.custom-fa-ib::before,
.custom-fa-bibliography::before {
  content: "\f03a";
}
.custom-fa-journals::before {
  content: "\f19d";
}
.custom-fa-litcrit::before {
  content: "\f4a4";
}
.custom-fa-magazines::before,
.custom-fa-magazinesandjournals::before {
  content: "\f518";
}
.custom-fa-manuscripts::before {
  content: "\f660";
}
.custom-fa-maps::before {
  content: "\f279";
}
.custom-fa-monographs::before {
  content: "\f70e";
}
.custom-fa-multimedia::before {
  content: "\f3c9";
}
.custom-fa-news::before,
.custom-fa-newspapers::before,
.custom-fa-reviewsnotes::before {
  content: "\f1ea";
}
.custom-fa-none::before {
  content: "\f005";
}
.custom-fa-overview::before {
  content: "\f24e";
}
.custom-fa-photographs::before {
  content: "\f030";
}
.custom-fa-plans-activities::before {
  content: "\f46c";
}
.custom-fa-primarysources::before {
  content: "\f5ac";
}
.custom-fa-reference::before,
.custom-fa-recommendedresources::before,
.custom-fa-topicworkoverviews::before {
  content: "\f02d";
}
.custom-fa-smallbusinessplans::before {
  content: "\f64a";
}
.custom-fa-statistics::before {
  content: "\f1fe";
}
.custom-fa-studies::before {
  content: "\f659";
}
.custom-fa-videos::before {
  content: "\f144";
}
.custom-fa-viewpoints::before {
  content: "\f086";
}
.custom-fa-websites::before {
  content: "\f37e";
}
.custom-fa-works::before {
  content: "\f1c5";
}
.custom-fa-summary::before {
  content: "\f65b";
}
.custom-fa-content-level {
  height: 22px;
  width: 25px;
  vertical-align: bottom;
}
.custom-fa-content-level-Level1 {
  background: url(../images/Level1.svg) no-repeat 0 4px;
}
.custom-fa-content-level-Level2 {
  background: url(../images/Level2.svg) no-repeat 0 4px;
}
.custom-fa-content-level-Level3 {
  background: url(../images/Level3.svg) no-repeat 0 4px;
}
.custom-fa-content-level-Level4 {
  background: url(../images/Level4.svg) no-repeat 0 4px;
}
.custom-fa-content-level-Level5 {
  background: url(../images/Level5.svg) no-repeat 0 4px;
}
.fancytree-has-children .fancytree-expander::before {
  content: "\f0fe";
}
.fancytree-expanded .fancytree-expander::before {
  content: "\f146";
  font-weight: 900;
}
.fancytree-expander {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
}
[class*="custom-fa-"] {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
[class*="custom-fa-content-level-"] {
  display: inline-flex;
  align-items: center;
  font-size: small;
  font-weight: bold;
  margin: 0 5px;
}
[class*="custom-fa-content-level-"]::before {
  align-self: center;
  margin-left: 5px;
}
.calendars {
  width: 100%;
  min-width: 300px;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .calendars {
    width: 40%;
    min-width: 250px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.datepicker table {
  border-spacing: 2px;
  overflow: hidden;
}
.datepicker .calendars {
  padding: 2px;
  border: 1px solid #d6d6d6;
  background-color: #f2f2f2;
}
.datepicker .calendars-nav,
.datepicker .calendars-ctrl {
  float: left;
  width: 100%;
  background-color: #003865;
  color: #fff;
  font-weight: bold;
  font-size: 100%;
}
.datepicker .calendars-month {
  float: left;
  width: 15em;
  border: none;
  text-align: center;
}
.datepicker .calendars-month td .calendars-highlight {
  background-color: #6ecef6;
  color: #006298;
}
.datepicker .calendars-month td .calendars-selected {
  background-color: #006298;
  color: #fff;
  padding: 8px 0;
}
@media (max-width: 768px) {
  .datepicker .calendars-month td .calendars-selected {
    padding: 5px 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.datepicker .calendars-month-year {
  font-size: 100%;
}
.datepicker .calendars-month-header,
.datepicker .calendars-month-header select,
.datepicker .calendars-month-header input {
  height: 2em;
  background-color: #003865;
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
}
.datepicker .calendars-month {
  width: 100%;
}
.datepicker .calendars-month a {
  display: block;
  width: 100%;
  padding: 8px 0;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 768px) {
  .datepicker .calendars-month a {
    padding: 5px 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.datepicker .calendars-month table {
  border-collapse: separate;
}
.datepicker .calendars-month thead {
  border-bottom: none;
}
.datepicker .calendars-month th,
.datepicker .calendars-month th a {
  background-color: #f2f2f2;
  color: #000;
  border: none;
  font-weight: bold;
  padding-bottom: 10px;
}
.datepicker .calendars-month td {
  background-color: #fff;
  border: 1px solid #d6d6d6;
}
.datepicker .calendars-month td .calendars-other-month {
  background-color: #fff;
}
.datepicker .calendars-month td span {
  background-color: #f2f2f2;
  color: #d6d6d6;
  padding: 8px 0;
}
@media (max-width: 768px) {
  .datepicker .calendars-month td span {
    padding: 5px 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.datepicker .calendars-month .calendars-weekend {
  background-color: #f2f2f2;
}
.datepicker .calendars a.calendars-disabled {
  display: none;
}
.datepicker .calendars-cmd:hover {
  background-color: #f2f2f2;
  color: #003865;
}
/* Default styling for jQuery Calendars Picker v2.0.0. */
.calendars-popup {
  z-index: 1000;
}
.calendars-disable {
  position: absolute;
  z-index: 100;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.calendars a {
  color: #fff;
  text-decoration: none;
}
.calendars a.calendars-disabled {
  cursor: auto;
}
.calendars button {
  margin: 0.25em;
  padding: 0.125em 0;
  border: none;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  border-radius: 0.25em;
  font-weight: bold;
}
.calendars-nav,
.calendars-ctrl {
  float: left;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 90%;
  font-weight: bold;
}
.calendars-cmd {
  width: 30%;
  padding: 5px 0;
}
.calendars-cmd a {
  height: 1.5em;
}
.calendars-cmd button {
  text-align: center;
}
.calendars-cmd-prevJump,
.calendars-cmd-nextJump {
  width: 8%;
}
.calendars-cmd-prev,
.calendars-cmd-prevJump,
.calendars-cmd-clear {
  float: left;
  padding-left: 2%;
}
.calendars-cmd-current,
.calendars-cmd-today {
  float: left;
  width: 35%;
  text-align: center;
}
.calendars-cmd-next,
.calendars-cmd-nextJump,
.calendars-cmd-close {
  float: right;
  padding-right: 2%;
  text-align: right;
}
.calendars-rtl {
  direction: rtl;
}
.calendars-rtl .calendars-cmd-prev,
.calendars-rtl .calendars-cmd-prevJump,
.calendars-rtl .calendars-cmd-clear {
  float: right;
  padding-left: 0;
  padding-right: 2%;
  text-align: right;
}
.calendars-rtl .calendars-cmd-current,
.calendars-rtl .calendars-cmd-today {
  float: right;
}
.calendars-rtl .calendars-cmd-next,
.calendars-rtl .calendars-cmd-nextJump,
.calendars-rtl .calendars-cmd-close {
  float: left;
  padding: 0 0 0 2%;
  text-align: left;
}
.calendars-month-nav {
  float: left;
  text-align: center;
}
.calendars-month-nav div {
  float: left;
  width: 12.5%;
  margin: 1%;
  padding: 1%;
}
.calendars-month-nav span {
  width: 30px;
}
.calendars-month-row {
  clear: left;
}
.calendars-month-header {
  height: 1.5em;
  color: #fff;
  font-weight: bold;
}
.calendars-month-header select,
.calendars-month-header input {
  color: #fff;
  font-weight: bold;
  height: 1.4em;
  border: none;
}
.calendars-month-header input {
  position: absolute;
  display: none;
}
.calendars-month {
  float: left;
  width: 15em;
  text-align: center;
}
.calendars-month a {
  display: block;
  width: 100%;
  padding: 0.125em 0;
  color: #000;
  text-decoration: none;
}
.calendars-month span {
  display: block;
  width: 100%;
  padding: 0.125em 0;
}
.calendars-month table {
  width: 100%;
  border-collapse: separate;
}
.calendars-month th,
.calendars-month td {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-align: center;
}
.calendars-month td.calendars-week * {
  color: #fff;
  border: none;
}
.calendars-month td .calendars-other-month {
  background-color: #fff;
}
.calendars-month td .calendars-selected {
  color: #fff;
}
.calendars-month th.calendars-week {
  color: #fff;
}
.calendars-status {
  clear: both;
  text-align: center;
}
.calendars-clear-fix {
  clear: both;
}
/* Jquery popup overrides */
.ui-dialog {
  padding: 0;
  border: 0;
  border-radius: 5px;
}
.ui-dialog.ui-widget {
  border: 0;
}
.ui-dialog.ui-widget input[role=button] {
  padding: 10px;
}
.ui-dialog.ui-widget input,
.ui-dialog.ui-widget textarea {
  padding-left: 3px;
}
@media (max-width: 599px) {
  .ui-dialog.ui-widget {
    max-width: 350px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.ui-dialog.ui-widget .birth-format {
  min-width: 50px;
}
.ui-dialog .ui-dialog-title {
  font-weight: 200;
  text-transform: uppercase;
}
.ui-dialog .ui-dialog-titlebar-close .ui-icon {
  background: url("../images/close.svg") no-repeat;
  transition: background 0.3s ease;
}
.ui-dialog .ui-dialog-titlebar-close .ui-icon:hover {
  background: url("../images/close-filled.svg") no-repeat;
  transition: background 0.3s ease;
}
.ui-dialog .ui-widget-header .ui-button {
  border: 0;
  background-color: transparent;
}
.ui-dialog .ui-dialog-content {
  padding: 1em;
}
.ui-dialog .ui-dialog-buttonset .ui-button {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.ui-dialog .ui-dialog-buttonset .ui-button [class*="fa-"] {
  margin: 0 5px;
}
.ui-dialog .ui-dialog-buttonset .ui-button_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.ui-dialog .ui-dialog-buttonset .ui-button_primary:hover,
.ui-dialog .ui-dialog-buttonset .ui-button_primary:active,
.ui-dialog .ui-dialog-buttonset .ui-button_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.ui-dialog .ui-dialog-buttonset .ui-button_inverted:active,
.ui-dialog .ui-dialog-buttonset .ui-button_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.ui-dialog .ui-dialog-buttonset .ui-button_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_accent:active,
.ui-dialog .ui-dialog-buttonset .ui-button_accent:visited,
.ui-dialog .ui-dialog-buttonset .ui-button_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.ui-dialog .ui-dialog-buttonset .ui-button_filter:hover,
.ui-dialog .ui-dialog-buttonset .ui-button_filter:active,
.ui-dialog .ui-dialog-buttonset .ui-button_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.ui-dialog .ui-dialog-buttonset .ui-button_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_filter--active:active,
.ui-dialog .ui-dialog-buttonset .ui-button_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ui-dialog .ui-dialog-buttonset .ui-button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.ui-dialog .ui-dialog-buttonset .ui-button_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.ui-dialog .ui-dialog-buttonset .ui-button_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ui-dialog .ui-dialog-buttonset .ui-button--expanded {
  width: 100%;
}
.ui-dialog .ui-dialog-buttonset .ui-button_clean {
  background: transparent;
  border: none;
}
.ui-dialog .ui-dialog-buttonset .ui-button_clean:hover {
  background: #000;
  color: #fff;
}
.ui-dialog .ui-dialog-buttonset .ui-button--small {
  font-size: 11px;
  padding: 5px 8px;
}
.ui-dialog .ui-dialog-buttonset .ui-button:hover,
.ui-dialog .ui-dialog-buttonset .ui-button:active,
.ui-dialog .ui-dialog-buttonset .ui-button:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.ui-dialog .ui-button-text-only .ui-button-text {
  padding: 0;
}
.ui-dialog.citationDialog.ui-widget-content {
  border: 0;
  padding: 0;
}
.ui-dialog.citationDialog .ui-dialog-content {
  padding: 1em;
}
.ui-dialog.citationDialog .ui-corner-all {
  border: 0;
}
.ui-dialog.citationDialog .ui-dialog-title {
  font-weight: 200;
}
.ui-dialog.citationDialog .ui-dialog-titlebar {
  border: 0;
  border-radius: 0;
}
.ui-dialog.citationDialog .ui-dialog-titlebar.ui-widget-header .ui-state-default {
  background: transparent;
  border: 0;
}
.ui-dialog.citationDialog .ui-dialog-titlebar.ui-widget-header .ui-state-default:hover {
  background: transparent !important;
}
#breadCrumb span.browse::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
}
.row-indent {
  margin: 1em 0 1em 30px;
  grid-row-gap: 1em;
}
.row-indent .rubric {
  font-weight: bold;
}
.translate-wrapper {
  display: none;
}
.translate-wrapper.visible {
  display: block;
}
.translate-wrapper.active {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  margin: 10px 0;
  z-index: 2;
  position: absolute;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.translate-wrapper.active .translate-popup {
  margin: 1em;
  position: relative;
  background-color: #fff;
}
.translate-wrapper.active .translate-popup::before,
.translate-wrapper.active .translate-popup::after {
  left: 20%;
  border: 10px solid transparent;
  border-bottom-color: #d6d6d6;
  content: " ";
  height: 0;
  width: 0;
  top: -36px;
  position: absolute;
  margin-left: -25px;
}
.translate-wrapper.active .translate-popup__dropdown {
  margin: 10px 0;
}
.document {
  border-top: 3px solid #000;
  padding-top: 1em;
}
.document .document-tools .toolbar-button:hover {
  background-color: #fff;
}
.document .document-tools a.toolbar-button:hover {
  background-color: #f2f2f2;
}
.document .document-tools .right {
  align-items: center;
}
.document .read-speaker {
  display: none;
}
.document pre {
  font-size: 16px;
  font-family: "Source Code Pro", "Courier New", "Menlo-Regular", monospace;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.document .hitHighlite {
  color: #d54405;
}
.document .navigation .nav-button [class*="fa-"] {
  width: 35px;
  margin: auto;
}
.document .about_info {
  border: 1px solid #d6d6d6;
  margin: 1em;
  background-color: rgba(0, 98, 152, 0.1);
}
.document .about_info .subheader {
  margin: 0.5em 0 0 1em;
  font-size: 1em;
  font-weight: 200;
}
.document .about_info_content {
  margin: 0.5em 0 1em 1em;
  font-size: 0.85em;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media (max-width: 768px) {
  .document .about_info_content {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .document .about_info_content {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document .about_info_content .docData {
  padding: 5px;
}
.document [id="relatedDocumentIndex"] {
  padding: 1em;
  margin-top: 1em;
  background-color: #f2f2f2;
  font-size: small;
}
.document .bioRubric {
  margin-right: 5px;
}
.document .imageInline {
  margin: 1em 0;
  display: block;
}
.document .workDefinition li {
  margin-bottom: 0.5em;
}
.document .poem {
  font-style: italic;
}
.document .poemLineGroup {
  padding: 0.5em 0;
}
.document .Primary {
  padding: 1em;
  border: 1px solid #4F5A63;
}
.document .Primary h2 {
  margin-top: 0;
}
.bodyTextTable {
  border: 1px solid #4F5A63;
}
.bodyTextTable tr,
.bodyTextTable td {
  border: 1px solid #4F5A63;
  padding: 3px;
}
.font_adjust .font_adjust_icon {
  display: flex;
  justify-content: center;
}
.font_adjust .toolbar-button {
  display: inline-flex;
  border: 1px solid #000 !important;
  height: 23px;
  margin: 2px 0;
  padding: 0 !important;
}
.font_adjust [class*="font-size-icon"] {
  display: flex;
  justify-self: center;
  align-self: center;
  width: 15px;
  height: 100%;
  margin: 0 2px;
}
.font_adjust .font-size-icon--small {
  background: url("../images/FONT-DECREASE.svg") no-repeat;
}
.font_adjust .font-size-icon--large {
  background: url("../images/FONT-INCREASE.svg") no-repeat;
}
.document-text {
  padding: 0 30px;
  margin-top: 2em;
}
.document-text .SideNotePara {
  margin-bottom: 1em;
  position: relative;
}
.document-text .SideNotePara dd {
  padding-bottom: 0.5em;
}
.document-text .citation-title {
  font-size: 2em;
  font-weight: 200;
  color: #000;
  margin-bottom: 1em;
}
.document-text h1 {
  font-size: smaller;
  margin-bottom: 1em;
}
.document-text .toclink,
.document-text h2 {
  font-size: 1.3em;
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
  margin-top: 1em;
}
.document-text .toclink .hitHighlite,
.document-text h2 .hitHighlite {
  color: #d54405;
  font-weight: bold;
  padding-left: 5px;
}
.document-text .toclink {
  display: flex;
}
.document-text .toclink .word {
  padding-right: 5px;
}
.document-text h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 0.5em;
}
.document-text h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 0.5em;
}
.document-text ul {
  list-style: initial;
  padding-left: 60px;
}
.document-text ul li {
  margin: 5px 0;
  position: relative;
}
.document-text .lower-latin {
  list-style-type: lower-latin;
  padding-left: 60px;
}
.document-text p {
  margin-block-start: 1em;
  margin-block-end: 1em;
  overflow-wrap: break-word;
}
.SideNotePara ul,
.sidebarContent ul {
  list-style-type: disc;
  padding-left: 60px;
}
.SideNotePara li,
.sidebarContent li {
  margin: 5px 0;
  position: relative;
}
.SideNotePara dl,
.sidebarContent dl {
  padding-top: 1em;
}
.SideNotePara dd,
.sidebarContent dd {
  padding-bottom: 0.5em;
}
.SideNotePara a,
.sidebarContent a {
  word-break: break-word;
}
.doc-copyright {
  margin-left: 30px;
}
.document-tools {
  display: block;
  height: 50px;
}
.document-tools.navigation {
  overflow-x: auto;
  overflow-y: unset;
}
.pageBreak {
  display: block;
  margin: 1em 0;
}
.Bolt .pageBreak {
  display: none;
}
.more-results {
  padding-top: 1em;
}
.more-results .citation-view {
  margin: 1em 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #f2f2f2;
}
.more-results .citation-view .documentLink {
  font-weight: normal;
}
.more-results .button {
  display: flex;
  margin: auto;
}
.more-results .more-results-wrapper .block-header:first-child {
  border-top: 3px solid #000;
  padding-top: 1.8em;
  margin-top: 1em;
}
.readmore-login {
  display: flex;
  position: relative;
}
.readmore-login::before {
  content: '';
  position: absolute;
  bottom: 35px;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(transparent, #fff);
}
.readmore-login .button {
  display: flex;
  margin: auto;
}
.fulltext {
  display: none;
}
.lti-container {
  display: grid;
  margin: 2em;
  align-items: center;
}
.lti-container__dvi {
  display: block;
  margin: 0 0 5px;
  align-items: flex-start;
}
.lti-container ul {
  grid-column: 2;
}
.lti-container ul li {
  display: inline-block;
}
.media_caption {
  font-size: smaller;
  background-color: #f2f2f2;
  padding: 1em;
}
.media_caption:empty {
  padding: 0;
}
.interactive-simulation {
  width: 1px;
  min-width: 100%;
}
.inlineVideo .inline-video-close {
  display: none;
}
.inlineVideo .bannerCaption {
  margin-top: 30px;
  font-size: smaller;
}
.inlineVideo .toggle-transcript button {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 1em 0 0 0;
}
.inlineVideo .toggle-transcript button [class*="fa-"] {
  margin: 0 5px;
}
.inlineVideo .toggle-transcript button_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.inlineVideo .toggle-transcript button_primary:hover,
.inlineVideo .toggle-transcript button_primary:active,
.inlineVideo .toggle-transcript button_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.inlineVideo .toggle-transcript button_inverted:active,
.inlineVideo .toggle-transcript button_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.inlineVideo .toggle-transcript button_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_accent:active,
.inlineVideo .toggle-transcript button_accent:visited,
.inlineVideo .toggle-transcript button_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.inlineVideo .toggle-transcript button_filter:hover,
.inlineVideo .toggle-transcript button_filter:active,
.inlineVideo .toggle-transcript button_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.inlineVideo .toggle-transcript button_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_filter--active:active,
.inlineVideo .toggle-transcript button_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript button_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.inlineVideo .toggle-transcript button_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.inlineVideo .toggle-transcript button_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.inlineVideo .toggle-transcript button--expanded {
  width: 100%;
}
.inlineVideo .toggle-transcript button_clean {
  background: transparent;
  border: none;
}
.inlineVideo .toggle-transcript button_clean:hover {
  background: #000;
  color: #fff;
}
.inlineVideo .toggle-transcript button--small {
  font-size: 11px;
  padding: 5px 8px;
}
.inlineVideo .toggle-transcript button:hover,
.inlineVideo .toggle-transcript button:active,
.inlineVideo .toggle-transcript button:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.inlineVideo .toggle-transcript .showing .show-transcript {
  display: none;
}
.inlineVideo .toggle-transcript .showing .hide-transcript {
  display: block;
}
.inlineVideo .toggle-transcript .show-transcript {
  display: block;
}
.inlineVideo .toggle-transcript .hide-transcript {
  display: none;
}
.inlineVideo .videoscript {
  position: relative;
  width: 100%;
  float: left;
}
@media (min-width: 900px) {
  .inlineVideo .videoscript {
    height: 485px !important;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .inlineVideo .videoscript {
    height: auto !important;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .inlineVideo [id*="videoDialogContainer"] {
    height: auto !important;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.grid-column-span-two .inlineVideo {
  max-width: 66%;
  margin: auto;
}
@media (max-width: 768px) {
  .grid-column-span-two .inlineVideo {
    max-width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .headerPubUrl {
    word-break: break-word;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.video-transcript .transcript {
  display: grid;
  grid-gap: 1em;
}
.video-transcript .transcript .videoTranscript {
  grid-row: 1;
}
.video-transcript .transcript .SideNotePara {
  display: none;
}
.video-transcript .transcript .document-text {
  padding-right: 0;
  margin: 0;
}
.video-transcript .transcript .media_caption {
  margin-bottom: 1em;
}
#glossaryTip {
  padding-top: 3em;
}
#glossaryTip #glossaryClose {
  top: 40px !important;
}
#glossaryTip .glossary-e-title:focus {
  text-decoration: none;
}
.LessonPlansActivities .document-text,
.Experiments .document-text {
  padding-left: 30px;
}
.Lesson_overview h2,
.Learning_outcomes h2,
.Skills_applied h2,
.Lesson_sequence h2,
.Sources h2,
.Assessment h2,
.Differentiating_instructions h2,
.Related_activities h2,
.Related_sources h2,
.Curriculum_standards h2 {
  color: #003865;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 18px;
  background-color: #fff;
  padding-bottom: 1em;
}
.Lesson_overview h2::after,
.Learning_outcomes h2::after,
.Skills_applied h2::after,
.Lesson_sequence h2::after,
.Sources h2::after,
.Assessment h2::after,
.Differentiating_instructions h2::after,
.Related_activities h2::after,
.Related_sources h2::after,
.Curriculum_standards h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 55px;
  height: 4px;
  background-color: #d54405;
}
.Lesson_overview h3,
.Learning_outcomes h3,
.Skills_applied h3,
.Lesson_sequence h3,
.Sources h3,
.Assessment h3,
.Differentiating_instructions h3,
.Related_activities h3,
.Related_sources h3,
.Curriculum_standards h3 {
  color: #d54405;
  font-weight: bold;
  font-size: 16px;
}
.Lesson_overview h4,
.Learning_outcomes h4,
.Skills_applied h4,
.Lesson_sequence h4,
.Sources h4,
.Assessment h4,
.Differentiating_instructions h4,
.Related_activities h4,
.Related_sources h4,
.Curriculum_standards h4 {
  font-weight: 200;
  border-bottom: 1px solid #d6d6d6;
  font-size: 16px;
}
.Lesson_overview .resource-link,
.Learning_outcomes .resource-link,
.Skills_applied .resource-link,
.Lesson_sequence .resource-link,
.Sources .resource-link,
.Assessment .resource-link,
.Differentiating_instructions .resource-link,
.Related_activities .resource-link,
.Related_sources .resource-link,
.Curriculum_standards .resource-link {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.Lesson_overview .resource-link [class*="fa-"],
.Learning_outcomes .resource-link [class*="fa-"],
.Skills_applied .resource-link [class*="fa-"],
.Lesson_sequence .resource-link [class*="fa-"],
.Sources .resource-link [class*="fa-"],
.Assessment .resource-link [class*="fa-"],
.Differentiating_instructions .resource-link [class*="fa-"],
.Related_activities .resource-link [class*="fa-"],
.Related_sources .resource-link [class*="fa-"],
.Curriculum_standards .resource-link [class*="fa-"] {
  margin: 0 5px;
}
.Lesson_overview .resource-link_primary,
.Learning_outcomes .resource-link_primary,
.Skills_applied .resource-link_primary,
.Lesson_sequence .resource-link_primary,
.Sources .resource-link_primary,
.Assessment .resource-link_primary,
.Differentiating_instructions .resource-link_primary,
.Related_activities .resource-link_primary,
.Related_sources .resource-link_primary,
.Curriculum_standards .resource-link_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.Lesson_overview .resource-link_primary:hover,
.Learning_outcomes .resource-link_primary:hover,
.Skills_applied .resource-link_primary:hover,
.Lesson_sequence .resource-link_primary:hover,
.Sources .resource-link_primary:hover,
.Assessment .resource-link_primary:hover,
.Differentiating_instructions .resource-link_primary:hover,
.Related_activities .resource-link_primary:hover,
.Related_sources .resource-link_primary:hover,
.Curriculum_standards .resource-link_primary:hover,
.Lesson_overview .resource-link_primary:active,
.Learning_outcomes .resource-link_primary:active,
.Skills_applied .resource-link_primary:active,
.Lesson_sequence .resource-link_primary:active,
.Sources .resource-link_primary:active,
.Assessment .resource-link_primary:active,
.Differentiating_instructions .resource-link_primary:active,
.Related_activities .resource-link_primary:active,
.Related_sources .resource-link_primary:active,
.Curriculum_standards .resource-link_primary:active,
.Lesson_overview .resource-link_primary:focus,
.Learning_outcomes .resource-link_primary:focus,
.Skills_applied .resource-link_primary:focus,
.Lesson_sequence .resource-link_primary:focus,
.Sources .resource-link_primary:focus,
.Assessment .resource-link_primary:focus,
.Differentiating_instructions .resource-link_primary:focus,
.Related_activities .resource-link_primary:focus,
.Related_sources .resource-link_primary:focus,
.Curriculum_standards .resource-link_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_inverted,
.Learning_outcomes .resource-link_inverted,
.Skills_applied .resource-link_inverted,
.Lesson_sequence .resource-link_inverted,
.Sources .resource-link_inverted,
.Assessment .resource-link_inverted,
.Differentiating_instructions .resource-link_inverted,
.Related_activities .resource-link_inverted,
.Related_sources .resource-link_inverted,
.Curriculum_standards .resource-link_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.Lesson_overview .resource-link_inverted:active,
.Learning_outcomes .resource-link_inverted:active,
.Skills_applied .resource-link_inverted:active,
.Lesson_sequence .resource-link_inverted:active,
.Sources .resource-link_inverted:active,
.Assessment .resource-link_inverted:active,
.Differentiating_instructions .resource-link_inverted:active,
.Related_activities .resource-link_inverted:active,
.Related_sources .resource-link_inverted:active,
.Curriculum_standards .resource-link_inverted:active,
.Lesson_overview .resource-link_inverted:focus,
.Learning_outcomes .resource-link_inverted:focus,
.Skills_applied .resource-link_inverted:focus,
.Lesson_sequence .resource-link_inverted:focus,
.Sources .resource-link_inverted:focus,
.Assessment .resource-link_inverted:focus,
.Differentiating_instructions .resource-link_inverted:focus,
.Related_activities .resource-link_inverted:focus,
.Related_sources .resource-link_inverted:focus,
.Curriculum_standards .resource-link_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_inverted:hover,
.Learning_outcomes .resource-link_inverted:hover,
.Skills_applied .resource-link_inverted:hover,
.Lesson_sequence .resource-link_inverted:hover,
.Sources .resource-link_inverted:hover,
.Assessment .resource-link_inverted:hover,
.Differentiating_instructions .resource-link_inverted:hover,
.Related_activities .resource-link_inverted:hover,
.Related_sources .resource-link_inverted:hover,
.Curriculum_standards .resource-link_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_accent,
.Learning_outcomes .resource-link_accent,
.Skills_applied .resource-link_accent,
.Lesson_sequence .resource-link_accent,
.Sources .resource-link_accent,
.Assessment .resource-link_accent,
.Differentiating_instructions .resource-link_accent,
.Related_activities .resource-link_accent,
.Related_sources .resource-link_accent,
.Curriculum_standards .resource-link_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.Lesson_overview .resource-link_accent:hover,
.Learning_outcomes .resource-link_accent:hover,
.Skills_applied .resource-link_accent:hover,
.Lesson_sequence .resource-link_accent:hover,
.Sources .resource-link_accent:hover,
.Assessment .resource-link_accent:hover,
.Differentiating_instructions .resource-link_accent:hover,
.Related_activities .resource-link_accent:hover,
.Related_sources .resource-link_accent:hover,
.Curriculum_standards .resource-link_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_accent:active,
.Learning_outcomes .resource-link_accent:active,
.Skills_applied .resource-link_accent:active,
.Lesson_sequence .resource-link_accent:active,
.Sources .resource-link_accent:active,
.Assessment .resource-link_accent:active,
.Differentiating_instructions .resource-link_accent:active,
.Related_activities .resource-link_accent:active,
.Related_sources .resource-link_accent:active,
.Curriculum_standards .resource-link_accent:active,
.Lesson_overview .resource-link_accent:visited,
.Learning_outcomes .resource-link_accent:visited,
.Skills_applied .resource-link_accent:visited,
.Lesson_sequence .resource-link_accent:visited,
.Sources .resource-link_accent:visited,
.Assessment .resource-link_accent:visited,
.Differentiating_instructions .resource-link_accent:visited,
.Related_activities .resource-link_accent:visited,
.Related_sources .resource-link_accent:visited,
.Curriculum_standards .resource-link_accent:visited,
.Lesson_overview .resource-link_accent:focus,
.Learning_outcomes .resource-link_accent:focus,
.Skills_applied .resource-link_accent:focus,
.Lesson_sequence .resource-link_accent:focus,
.Sources .resource-link_accent:focus,
.Assessment .resource-link_accent:focus,
.Differentiating_instructions .resource-link_accent:focus,
.Related_activities .resource-link_accent:focus,
.Related_sources .resource-link_accent:focus,
.Curriculum_standards .resource-link_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_filter,
.Learning_outcomes .resource-link_filter,
.Skills_applied .resource-link_filter,
.Lesson_sequence .resource-link_filter,
.Sources .resource-link_filter,
.Assessment .resource-link_filter,
.Differentiating_instructions .resource-link_filter,
.Related_activities .resource-link_filter,
.Related_sources .resource-link_filter,
.Curriculum_standards .resource-link_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.Lesson_overview .resource-link_filter:hover,
.Learning_outcomes .resource-link_filter:hover,
.Skills_applied .resource-link_filter:hover,
.Lesson_sequence .resource-link_filter:hover,
.Sources .resource-link_filter:hover,
.Assessment .resource-link_filter:hover,
.Differentiating_instructions .resource-link_filter:hover,
.Related_activities .resource-link_filter:hover,
.Related_sources .resource-link_filter:hover,
.Curriculum_standards .resource-link_filter:hover,
.Lesson_overview .resource-link_filter:active,
.Learning_outcomes .resource-link_filter:active,
.Skills_applied .resource-link_filter:active,
.Lesson_sequence .resource-link_filter:active,
.Sources .resource-link_filter:active,
.Assessment .resource-link_filter:active,
.Differentiating_instructions .resource-link_filter:active,
.Related_activities .resource-link_filter:active,
.Related_sources .resource-link_filter:active,
.Curriculum_standards .resource-link_filter:active,
.Lesson_overview .resource-link_filter:focus,
.Learning_outcomes .resource-link_filter:focus,
.Skills_applied .resource-link_filter:focus,
.Lesson_sequence .resource-link_filter:focus,
.Sources .resource-link_filter:focus,
.Assessment .resource-link_filter:focus,
.Differentiating_instructions .resource-link_filter:focus,
.Related_activities .resource-link_filter:focus,
.Related_sources .resource-link_filter:focus,
.Curriculum_standards .resource-link_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_filter--active,
.Learning_outcomes .resource-link_filter--active,
.Skills_applied .resource-link_filter--active,
.Lesson_sequence .resource-link_filter--active,
.Sources .resource-link_filter--active,
.Assessment .resource-link_filter--active,
.Differentiating_instructions .resource-link_filter--active,
.Related_activities .resource-link_filter--active,
.Related_sources .resource-link_filter--active,
.Curriculum_standards .resource-link_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.Lesson_overview .resource-link_filter--active:hover,
.Learning_outcomes .resource-link_filter--active:hover,
.Skills_applied .resource-link_filter--active:hover,
.Lesson_sequence .resource-link_filter--active:hover,
.Sources .resource-link_filter--active:hover,
.Assessment .resource-link_filter--active:hover,
.Differentiating_instructions .resource-link_filter--active:hover,
.Related_activities .resource-link_filter--active:hover,
.Related_sources .resource-link_filter--active:hover,
.Curriculum_standards .resource-link_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_filter--active:active,
.Learning_outcomes .resource-link_filter--active:active,
.Skills_applied .resource-link_filter--active:active,
.Lesson_sequence .resource-link_filter--active:active,
.Sources .resource-link_filter--active:active,
.Assessment .resource-link_filter--active:active,
.Differentiating_instructions .resource-link_filter--active:active,
.Related_activities .resource-link_filter--active:active,
.Related_sources .resource-link_filter--active:active,
.Curriculum_standards .resource-link_filter--active:active,
.Lesson_overview .resource-link_filter--active:focus,
.Learning_outcomes .resource-link_filter--active:focus,
.Skills_applied .resource-link_filter--active:focus,
.Lesson_sequence .resource-link_filter--active:focus,
.Sources .resource-link_filter--active:focus,
.Assessment .resource-link_filter--active:focus,
.Differentiating_instructions .resource-link_filter--active:focus,
.Related_activities .resource-link_filter--active:focus,
.Related_sources .resource-link_filter--active:focus,
.Curriculum_standards .resource-link_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.Lesson_overview .resource-link_filter--active,
.Learning_outcomes .resource-link_filter--active,
.Skills_applied .resource-link_filter--active,
.Lesson_sequence .resource-link_filter--active,
.Sources .resource-link_filter--active,
.Assessment .resource-link_filter--active,
.Differentiating_instructions .resource-link_filter--active,
.Related_activities .resource-link_filter--active,
.Related_sources .resource-link_filter--active,
.Curriculum_standards .resource-link_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.Lesson_overview .resource-link_link,
.Learning_outcomes .resource-link_link,
.Skills_applied .resource-link_link,
.Lesson_sequence .resource-link_link,
.Sources .resource-link_link,
.Assessment .resource-link_link,
.Differentiating_instructions .resource-link_link,
.Related_activities .resource-link_link,
.Related_sources .resource-link_link,
.Curriculum_standards .resource-link_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.Lesson_overview .resource-link_link:hover,
.Learning_outcomes .resource-link_link:hover,
.Skills_applied .resource-link_link:hover,
.Lesson_sequence .resource-link_link:hover,
.Sources .resource-link_link:hover,
.Assessment .resource-link_link:hover,
.Differentiating_instructions .resource-link_link:hover,
.Related_activities .resource-link_link:hover,
.Related_sources .resource-link_link:hover,
.Curriculum_standards .resource-link_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.Lesson_overview .resource-link--expanded,
.Learning_outcomes .resource-link--expanded,
.Skills_applied .resource-link--expanded,
.Lesson_sequence .resource-link--expanded,
.Sources .resource-link--expanded,
.Assessment .resource-link--expanded,
.Differentiating_instructions .resource-link--expanded,
.Related_activities .resource-link--expanded,
.Related_sources .resource-link--expanded,
.Curriculum_standards .resource-link--expanded {
  width: 100%;
}
.Lesson_overview .resource-link_clean,
.Learning_outcomes .resource-link_clean,
.Skills_applied .resource-link_clean,
.Lesson_sequence .resource-link_clean,
.Sources .resource-link_clean,
.Assessment .resource-link_clean,
.Differentiating_instructions .resource-link_clean,
.Related_activities .resource-link_clean,
.Related_sources .resource-link_clean,
.Curriculum_standards .resource-link_clean {
  background: transparent;
  border: none;
}
.Lesson_overview .resource-link_clean:hover,
.Learning_outcomes .resource-link_clean:hover,
.Skills_applied .resource-link_clean:hover,
.Lesson_sequence .resource-link_clean:hover,
.Sources .resource-link_clean:hover,
.Assessment .resource-link_clean:hover,
.Differentiating_instructions .resource-link_clean:hover,
.Related_activities .resource-link_clean:hover,
.Related_sources .resource-link_clean:hover,
.Curriculum_standards .resource-link_clean:hover {
  background: #000;
  color: #fff;
}
.Lesson_overview .resource-link--small,
.Learning_outcomes .resource-link--small,
.Skills_applied .resource-link--small,
.Lesson_sequence .resource-link--small,
.Sources .resource-link--small,
.Assessment .resource-link--small,
.Differentiating_instructions .resource-link--small,
.Related_activities .resource-link--small,
.Related_sources .resource-link--small,
.Curriculum_standards .resource-link--small {
  font-size: 11px;
  padding: 5px 8px;
}
.Lesson_overview .resource-link:hover,
.Learning_outcomes .resource-link:hover,
.Skills_applied .resource-link:hover,
.Lesson_sequence .resource-link:hover,
.Sources .resource-link:hover,
.Assessment .resource-link:hover,
.Differentiating_instructions .resource-link:hover,
.Related_activities .resource-link:hover,
.Related_sources .resource-link:hover,
.Curriculum_standards .resource-link:hover,
.Lesson_overview .resource-link:active,
.Learning_outcomes .resource-link:active,
.Skills_applied .resource-link:active,
.Lesson_sequence .resource-link:active,
.Sources .resource-link:active,
.Assessment .resource-link:active,
.Differentiating_instructions .resource-link:active,
.Related_activities .resource-link:active,
.Related_sources .resource-link:active,
.Curriculum_standards .resource-link:active,
.Lesson_overview .resource-link:focus,
.Learning_outcomes .resource-link:focus,
.Skills_applied .resource-link:focus,
.Lesson_sequence .resource-link:focus,
.Sources .resource-link:focus,
.Assessment .resource-link:focus,
.Differentiating_instructions .resource-link:focus,
.Related_activities .resource-link:focus,
.Related_sources .resource-link:focus,
.Curriculum_standards .resource-link:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  transition: all 0.3s ease;
}
.Lesson_overview b,
.Learning_outcomes b,
.Skills_applied b,
.Lesson_sequence b,
.Sources b,
.Assessment b,
.Differentiating_instructions b,
.Related_activities b,
.Related_sources b,
.Curriculum_standards b {
  font-weight: 600;
}
.Lesson_overview,
.Curriculum_standards {
  background-color: #f2f2f2;
}
.Lesson_overview .SideNotePara,
.Curriculum_standards .SideNotePara {
  padding: 0 10px;
}
.Lesson_overview .SideNotePara:last-of-type,
.Curriculum_standards .SideNotePara:last-of-type {
  padding-bottom: 10px;
}
.SideNotePara .imageGroup {
  display: block;
  text-align: center;
}
@media (max-width: 599px) {
  .SideNotePara .imageGroup {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .SideNotePara .imageGroup .callistoImage {
    height: auto;
    width: 100%;
  }
}
.translate-context-container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 10px;
  align-items: center;
  background: #d9f3ff;
  padding: 0 10px;
  margin: 10px 0;
  font-size: initial;
  text-transform: none;
  font-weight: initial;
}
.translate-context-container .button {
  height: 31px;
}
.document-explorer {
  border-top: 3px solid #000;
}
.document-explorer--dvi {
  width: 340px;
  background-color: #fff;
  border-top: 0;
  -webkit-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
  overflow-y: auto;
}
.document-explorer--dvi > * {
  background-color: #fff;
  visibility: visible;
  opacity: 1;
  animation-delay: 0.1s;
  -webkit-transition: visibility 0.2s ease;
  -moz-transition: visibility 0.2s ease;
  -o-transition: visibility 0.2s ease;
  transition: visibility 0.2s ease;
}
.document-explorer--dvi.hide--animate {
  width: 0;
  -webkit-transition: width 0.2s ease;
  -moz-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.document-explorer--dvi.hide--animate > * {
  visibility: hidden;
  animation-delay: 0.1s;
  opacity: 0;
  -webkit-transition: visibility 0.2s ease;
  -moz-transition: visibility 0.2s ease;
  -o-transition: visibility 0.2s ease;
  transition: visibility 0.2s ease;
}
.document-explorer > * {
  background-color: #f2f2f2;
}
.document-explorer .custom-fa-explorer::before {
  content: "\f1e5";
}
@media (max-width: 1024px) {
  .document-explorer {
    margin-top: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-explorer_title {
  font-size: 1.5em;
  padding: 1em;
  border-bottom: 1px solid #d6d6d6;
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.document-explorer .doc-explorer-header-close [class*="fa-"] {
  margin: 0;
}
.document-explorer_section {
  border-bottom: solid #d6d6d6 1px;
  padding: 1em 0.5em 1.1em 0.7em;
}
.document-explorer_section:last-of-type {
  border-bottom: 0;
}
.document-explorer_section .hidden {
  padding: 0;
  border: 0;
}
.document-explorer_section .items__item {
  margin: 0.5em 0;
}
.document-explorer_section .items__item .link {
  cursor: pointer;
}
.document-explorer_section .list {
  list-style: inside;
}
.document-explorer_section .rsbtn_loadtext {
  max-width: 260px;
  position: unset;
}
.document-explorer_section .toggleButton__collapsed,
.document-explorer_section .toggleButton__expanded {
  margin-right: 10px;
}
.document-explorer_section .toggleButton__toggle {
  margin: 0;
  font-weight: bold;
}
.document-explorer_section .collapsibleList__item {
  padding: initial;
}
.document-explorer_section .collapsibleList__entries {
  padding: 0 25px;
}
.document-explorer_section .similar-articles {
  padding-left: 25px;
  margin-top: 0.5em;
}
.document-explorer_section--close-panel {
  padding: 0;
  float: right;
  margin-top: 17px;
}
.document-explorer_section--close-panel [class*="fa-"] {
  font-size: 1.5em;
  font-weight: 200;
}
.document-explorer_section .article-title {
  cursor: pointer;
}
.document-explorer_section-content {
  padding: 10px 0;
  margin-top: 0;
}
.document-explorer .more-results-wrapper .block-header {
  font-size: 1em;
  text-transform: none;
  font-weight: bold;
}
.document-explorer .more-results-wrapper .citation-view,
.document-explorer .more-results-wrapper .article-date-group {
  padding: 0.5em 0;
}
.document-explorer .more-results-wrapper .citation-view h3,
.document-explorer .more-results-wrapper .article-date-group h3 {
  margin: 0;
}
@supports (-webkit-line-clamp: 2) {
  .document-explorer .more-results-wrapper .citation-view .documentLink,
  .document-explorer .more-results-wrapper .article-date-group .documentLink {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@supports not (-webkit-line-clamp: 2) {
  .document-explorer .more-results-wrapper .citation-view .title,
  .document-explorer .more-results-wrapper .article-date-group .title {
    overflow: hidden;
    position: relative;
    max-height: 3rem;
  }
  .document-explorer .more-results-wrapper .citation-view .title::after,
  .document-explorer .more-results-wrapper .article-date-group .title::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12%;
    height: 24px;
  }
}
.document-explorer .more-results-wrapper .citation-view .documentLink,
.document-explorer .more-results-wrapper .article-date-group .documentLink {
  font-weight: normal;
}
.document-explorer .more-results-wrapper .citation-view .citation-details,
.document-explorer .more-results-wrapper .article-date-group .citation-details {
  font-size: small;
}
.document-explorer .more-results-wrapper .citation-view > *,
.document-explorer .more-results-wrapper .article-date-group > * {
  display: block;
}
.document-explorer .more-results-wrapper .citation-view .date,
.document-explorer .more-results-wrapper .article-date-group .date {
  font-size: small;
}
.document-explorer .signin-notes {
  padding: 0.5em;
  font-size: small;
}
.document-explorer .library-links-info {
  background-color: #d54405;
  color: #fff;
  display: block;
  padding: 0.5em 1em;
  margin: -1em -0.5em 1em -0.7em;
}
.document-explorer__readspeaker .readspeakerplayer {
  display: flex !important;
}
.document-explorer__readspeaker .rsbtn_play {
  margin: 0 !important;
  float: none !important;
}
.doc-explorer_title {
  padding: 0.5em;
}
.doc-explorer-views,
.doc-explorer-search-within {
  padding-bottom: 1em;
}
.doc-explorer-views__search {
  border: solid #4F5A63 1px;
}
.doc-explorer-views__search-input {
  border: none;
}
.doc-explorer-tools-header {
  padding-bottom: 0.5em;
}
.doc-explorer-toc-tree {
  padding-top: 1em;
}
.doc-explorer-content {
  padding: 0.5em;
  height: 100vh;
}
.doc-explorer-content__toc .list-header {
  list-style: none;
}
.doc-explorer-content__toc .list-header h2 {
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
  padding-bottom: 1em;
}
.doc-explorer-content__toc .list-header h2 .hitHighlite {
  color: #d54405;
  font-weight: bold;
  padding-left: 5px;
}
.doc-explorer-content__toc .listItem {
  margin-bottom: 0.5em;
  cursor: pointer;
}
.doc-explorer-content__tools .article {
  border-bottom: 1px solid #4F5A63;
  padding: 3px 0;
}
.doc-explorer-content__tools .article:last-of-type {
  border: 0;
}
.doc-explorer-view-option {
  font-size: smaller;
}
.exploreToggle {
  align-items: center;
  height: min-content;
  cursor: pointer;
  width: 15px;
}
.exploreToggle [class*="fa-"] {
  margin: 0;
}
.pages-list__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-row-gap: 5px;
  padding-left: 0;
  justify-items: center;
}
.pages-list__item {
  background-color: transparent;
  display: grid;
  height: 1.5em;
  width: 1.5em;
  padding: 3px;
  text-align: center;
  border-radius: 50%;
}
.pages-list__item-page--active {
  background-color: #d54405;
  color: #fff;
  border-radius: 50%;
  padding: 2px 4px;
}
.dvi-sidebar-section__buttons {
  margin-top: 1em;
}
.dvi-sidebar-section__list {
  margin: 1em 0.5em;
}
.dvi-sidebar-section__list-item {
  font-size: 0.9em;
}
.dvi-sidebar-section__list-item-link::after {
  content: "\f324";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 0.1em;
  margin-left: 0.5em;
}
.toctree__list {
  display: block;
  list-style: none;
}
.toctree__sub-list {
  display: block;
  list-style: none;
}
.toctree__list-item {
  padding-left: 0;
  position: relative;
  margin: 0.5em 0;
}
.toctree__list-item.ACTIVE .article {
  cursor: pointer;
}
.toctree__sub-list-title {
  padding-left: 1em;
  line-height: 1.5em;
}
.toctree__list-item--category::before {
  position: absolute;
  margin-top: -0.26em;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  content: "\f054";
  cursor: pointer;
}
.toctree__list-item--category.expanded::before {
  transform: rotateZ(90deg);
}
.explorer_container {
  display: inline-flex;
  -webkit-box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 599px) {
  .explorer_container {
    width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .explorer_container {
    width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.explorer_container a.accessFeature:focus {
  width: 100%;
  height: 20px;
  text-indent: 0;
  padding: 5px 10px;
}
.dvi-document__info-wrapper {
  margin: 0 1em 0.5em 0;
}
.force-hide {
  display: none !important;
}
.doc-display .label {
  margin-bottom: 0.5em;
}
.doc-display ul {
  list-style: inside;
}
.document-explorer_title {
  text-transform: capitalize;
  font-weight: 300;
}
.workflow .custom-fa-explorer::before {
  content: "\f552";
  color: #d54405;
}
.student-notes {
  height: auto;
  padding: 0.9em;
  background-color: #f2f2f2;
  border-left: solid #d54405;
}
.student-notes_header {
  height: 2.5em;
  border-bottom: solid #d6d6d6 1px;
  margin-bottom: 1em;
  padding-bottom: 0.3em;
}
.student-notes_header .header-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #f2a900;
  border: solid #ffc72c 2px;
  border-radius: 30px;
  font-size: 1.2em;
  color: #d54405;
  vertical-align: middle;
}
.student-notes_header .header-icon [class*="fa-"] {
  margin: 5px 0 10px 4.5px;
}
.student-notes_header .header-text {
  font-weight: 600;
  color: #006298;
  margin-left: 10px;
}
.student-notes__items {
  font-weight: 300;
  margin: 0 1em 1em;
}
.student-notes__items .note_item {
  position: absolute;
  overflow: hidden;
}
.student-notes__items .note_item.hidden {
  right: 0;
}
.student-notes__pagination {
  margin: 0 1em;
}
.student-notes__count {
  display: inline-block;
  font-size: 0.8em;
  font-style: italic;
  font-weight: 100;
  color: #006298;
}
.student-notes .pagination-group {
  display: inline-block;
  float: right;
}
.student-notes .pagination-group .paginate-previous {
  margin-right: -7px;
}
.student-notes .pagination-group .paginate-next,
.student-notes .pagination-group .paginate-previous {
  color: #006298;
  border: solid #006298 2px;
  cursor: pointer;
}
.student-notes .pagination-group .paginate-next:disabled,
.student-notes .pagination-group .paginate-previous:disabled {
  color: #4F5A63;
  border-color: #002133;
  cursor: default;
}
.launchpad {
  padding: 0.1em 0.8em 0.8em;
  position: relative;
}
.launchpad .overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
  opacity: 0.3;
  height: 100%;
  width: 100%;
}
.launchpad .tab_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}
.launchpad-tools:last-of-type {
  margin-right: 0;
}
.launchpad .authorities {
  background-color: #fff;
  border-radius: 4px;
  border: solid #d6d6d6 1px;
  padding: 5px 19px 5px 5px;
  width: 100%;
  height: 30px;
}
.launchpad .standard-data-section .collapsibleList__entries {
  margin-left: 8px;
}
.launchpad .standard-data-section .standard-header {
  display: inline-block;
  margin-left: 16px;
}
.launchpad .standard-data-section .toggleButton__collapsed,
.launchpad .standard-data-section .toggleButton__expanded {
  display: none;
}
.launchpad .standard-data-section .toggleButton__toggle {
  position: relative;
}
.launchpad .standard-data-section .toggleButton__toggle::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  position: absolute;
  top: 5px;
  transition: transform 0.3s ease;
  font-size: 0.8em;
  font-weight: bold;
}
.launchpad .standard-data-section .toggleButton__toggle--expanded::before {
  transform: rotateZ(90deg);
}
.launchpad .standard-data-section .root-level-data {
  font-weight: 300;
  font-size: 0.9em;
  color: #4F5A63;
}
.launchpad .collapsibleList .standard-number {
  margin-right: 5px;
  font-size: 0.8em;
}
.launchpad .collapsibleList .standard-text {
  font-size: 0.8em;
}
.launchpad-content {
  margin-top: 20px;
}
.launchpad-content .no-aligned {
  font-size: 12px;
  color: #4F5A63;
  padding: 1em 2em 2em;
  border: solid #d6d6d6 1px;
  border-radius: 4px;
}
.launchpad-content .no-aligned_img {
  background: url("../../Lilo/images/no-alignments-illustration.svg") no-repeat;
  background-size: 200px 200px;
  width: 200px;
  height: 200px;
  margin: auto;
}
.tool-section {
  margin-bottom: 2.5em;
}
.tool-section__clippings {
  border-top: solid #000 3px;
  padding-top: 10px;
}
.tool-section__header-container {
  border-bottom: solid #d6d6d6 1px;
  margin-bottom: 20px;
}
.tool-section__header-container .upper {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 6px;
}
.tool-section__header-container .upper .circuler {
  background-color: #fff;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  padding: 5px;
  border: solid #000 1px;
  border-radius: 15px;
  vertical-align: middle;
}
.tool-section__header-container .global-tool {
  display: inline-block;
  float: right;
}
.tool-section__header-container .global-tool .top-tools__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
.tool-section__header-container .global-tool .top-tools__container button {
  margin-left: 0;
}
.tool-section__header-container .global-tool .top-tools__tool {
  padding: 0;
}
.tool-section .action-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
.tool-section .action-group button {
  font-size: 1em;
  margin: 10px 5px 5px;
}
.tool-section .action-group .tool-add-new {
  font-size: 12px;
  margin: 0;
}
.tool-section .tool-content {
  overflow: auto;
  max-height: 590px;
  margin: 0 0 5px 0;
}
.tool-section .tool-content .single-tool {
  margin: 10px 0 20px 0;
  width: 99%;
}
.tool-section .tool-content .single-tool:last-of-type {
  margin: 10px 0 0 0;
}
.tool-section .tool-content .tool-text {
  display: block;
  width: calc(100% - 22px);
  /* stylelint-disable-line function-calc-no-invalid */
  height: 100px;
  padding: 10px;
  border: solid #d6d6d6 1px;
  border-radius: 2px;
  border-bottom: none;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  resize: none;
}
.tool-section .tool-content .action-group {
  border: solid #d6d6d6 1px;
  border-radius: 0 0 2px 2px;
}
.document-summary .doc-title {
  text-align: center;
  margin: 3em auto;
}
@media (max-width: 768px) {
  .document-summary .doc-title {
    text-align: left;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-summary .doc-title .definition {
  font-family: "Georgia", serif;
  font-size: 2em;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 768px) {
  .document-summary .doc-title .definition {
    font-size: 1.5em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-summary .doc-copyright {
  margin-left: 0;
}
.document-summary .volume-info {
  padding-left: 4px;
}
.document-summary .icon-bg {
  background-color: #4F5A63;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}
.document-summary .icon-bg [class*="fa-"] {
  color: #fff;
  font-size: 30px;
  height: 30px;
  width: 30px;
  margin: 10px;
}
.document-summary .document-lexile {
  display: flex;
  align-items: center;
}
.document-summary .document-lexile .definition {
  margin-left: 5px;
}
.document-summary .document-lexile .input__dropdown {
  margin: 0;
}
.document-summary .document-content-level {
  display: inline-block;
  align-items: center;
}
.image-viewer__header,
.dvi-document__page-header {
  background-color: #f2f2f2;
  padding: 1em 2em;
  -webkit-box-shadow: inset 0 0 4px 0 rgba(79, 90, 99, 0.33);
  -moz-box-shadow: inset 0 0 4px 0 rgba(79, 90, 99, 0.33);
  box-shadow: inset 0 0 4px 0 rgba(79, 90, 99, 0.33);
}
.image-viewer__header .button__btn--link,
.dvi-document__page-header .button__btn--link {
  padding: 0;
}
.image-viewer__header .document-title .definition,
.dvi-document__page-header .document-title .definition {
  font-family: "Georgia", serif;
  font-size: 1.7em;
  font-weight: 400;
}
.image-viewer__header .title,
.dvi-document__page-header .title {
  font-family: "Georgia", serif;
  font-size: 1.7em;
  font-weight: 400;
  display: block;
  margin-bottom: 0.3em;
}
.image-viewer__header .publication,
.dvi-document__page-header .publication {
  padding-top: 5px;
}
.image-viewer__header .publication .label,
.dvi-document__page-header .publication .label {
  margin-right: 5px;
}
.image-viewer__header .publication .b-doc-lexile-selector__select,
.dvi-document__page-header .publication .b-doc-lexile-selector__select {
  width: initial;
  margin: 0;
}
.image-viewer__header .author,
.dvi-document__page-header .author {
  display: block;
  font-size: smaller;
  margin: 3px 0;
}
.image-viewer__header .author .definition,
.dvi-document__page-header .author .definition {
  margin-left: 1em;
}
.dvi-document__page-header {
  display: flex;
  flex-flow: column wrap;
}
.workflow .doc-title .definition {
  display: inline-block;
}
.workflow .doc-title .content-set-status {
  justify-content: center;
  margin: 5px 10px;
}
@media (max-width: 768px) {
  .workflow .doc-title .content-set-status {
    margin-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
#etocContainer {
  display: none;
}
#etocContainer.visible {
  display: block;
}
#etocContainer .etoc-header {
  display: inline;
}
#etocContainer #etoc-navigation {
  display: inline;
  padding: 0.2em;
  border: none;
}
#etocContainer #etoc-navigation .right {
  float: right;
  width: auto;
  padding: 0 0.3em;
  font-size: medium;
}
@media (max-width: 1024px) {
  #etocContainer #etoc-navigation .right {
    float: none;
    padding-left: 0;
    padding-top: 10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
#etocContainer.active {
  position: absolute;
  top: 70px;
  max-height: 400px;
  width: 418px;
  background-color: #fff;
  padding: 2em;
  border-radius: 5px;
  z-index: 15;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
}
#etocContainer.active::before {
  left: 229px;
  content: " ";
  top: -35px;
  position: absolute;
  margin-left: -25px;
  border: 17px solid transparent;
  border-bottom-color: #d6d6d6;
}
@media (max-height: 500px) {
  #etocContainer.active {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  #etocContainer.active::before {
    border: 0 ;
  }
}
@media (max-width: 599px) {
  #etocContainer.active {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  #etocContainer.active::before {
    border: 0 ;
  }
}
#etocContainer.active > ul {
  margin-top: 1em;
  max-height: 254px;
  overflow: auto;
  padding-left: 1em;
  border: 1px solid #d6d6d6;
}
#etocContainer.active ul [class*="fa-"] {
  margin: 0;
  display: inline;
}
#etocContainer.active ul li {
  width: 100%;
  text-align: left;
  font-size: small;
}
@media (max-width: 768px) {
  #etocContainer.active ul li {
    width: 40%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
#etocContainer.active ul li.selected {
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  #etocContainer.active {
    width: 280px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  #etocContainer.active .etoc-header {
    display: block;
  }
}
.expandable-content__expanded-content {
  display: none;
}
.expandable-content__expanded-button-text {
  display: none;
}
.expandable-content--expanded .expandable-content__collapsed-button-text {
  display: none;
}
.expandable-content--expanded .expandable-content__expanded-button-text {
  display: block;
}
.expandable-content--expanded .expandable-content__collapsed-content {
  display: none;
}
.expandable-content--expanded .expandable-content__expanded-content {
  display: block;
}
.export-results-popup #content {
  margin-left: 10px;
}
.export-results-popup .export-row {
  margin-bottom: 15px;
}
.export-results-popup .export-row-header {
  margin-bottom: 5px;
}
.export-results-popup .row-header {
  margin-bottom: 8px;
}
.export-results-popup .limit-message {
  font-size: small;
  padding: 10px;
}
@media (max-width: 599px) {
  .export-results-popup .limit-message {
    display: block;
    padding-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.export-results-popup .export-type {
  margin: 0.5em 0;
  grid-gap: 2px;
}
.export-results-popup .export-type .description {
  font-size: small;
  display: block;
  margin: 0;
}
.export-results-popup .export-tools {
  max-width: 400px;
  display: grid;
  grid-template-columns: repeat(4, auto);
}
@media (max-width: 599px) {
  .export-results-popup .export-tools {
    grid-template-columns: repeat(2, auto);
    row-gap: 10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.export-results-popup .export-tools .tool {
  margin-right: 15px;
  width: 103px;
}
.export-results-popup .export-tools .tool-button {
  background: transparent;
  border: none;
  cursor: pointer;
  vertical-align: top;
  display: block;
}
@media (max-width: 599px) {
  .export-results-popup .export-tools .tool-button {
    margin: 0 auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.export-results-popup .export-tools .tool-button:hover .tool-icon {
  border: solid #006298 1px;
}
.export-results-popup .export-tools .tool-button:hover .tool-label {
  color: #006298;
}
.export-results-popup .export-tools .tool-icon {
  display: block;
  height: 50px;
  width: 50px;
  background-color: #fff;
  background-size: 65%;
  border: solid #d6d6d6 1px;
  border-radius: 50%;
  line-height: 53px;
  margin: auto auto 2px auto;
}
.export-results-popup .export-tools .tool-icon--google {
  background-image: url('../images/drive/Google_Drive_Logo.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.export-results-popup .export-tools .tool-icon--microsoft {
  background-image: url('../images/drive/onedrive.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.export-results-popup .export-tools .tool-label {
  font-size: small;
}
.export-results-popup .email-form {
  padding-left: 0;
}
.export-results-popup .export-page-error {
  color: #c00;
  font-size: small;
  margin: 0.5em 0;
}
.filters .gridtab > dt {
  pointer-events: auto;
  transition: background 1s;
  background: #fff;
  margin-right: 5px;
  margin-bottom: 1px;
  text-align: center;
  padding: 7px 16px;
}
.filters .gridtab > dt:hover,
.filters .gridtab > dt.is-active,
.filters .gridtab > dt:active,
.filters .gridtab > dt:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.filters .gridtab--0 > dd {
  min-width: 98%;
  max-width: 98%;
  margin: -2px 0 0 0 !important;
}
.filters .gridtab--0 > dt {
  border: solid 1px #006298;
}
@media (max-width: 599px) {
  .filters .gridtab--0 > dt {
    min-width: calc(97% + 3px);
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .filters .gridtab--0 {
    margin-top: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.filters_content--input {
  height: 2.5em;
  margin-right: 5px;
  padding-left: 3px;
}
.filters_content .fa-long-arrow-right {
  margin: 0 10px;
}
.filters_content .facet {
  padding: 3px 0;
}
.filters_content .two-col-facet {
  display: grid;
  grid-template-columns: 0fr auto;
  /* stylelint-disable-line  length-zero-no-unit */
}
.filters_content .count {
  margin-left: 0.5em;
}
.filters_content .content_item {
  padding: 1em;
}
.filters .checkbox-group {
  max-height: 300px;
  overflow: auto;
}
.filters .checkbox-group .filters_content--input {
  width: 80%;
  height: 2.5em;
}
.filters_list {
  margin-bottom: 1em;
}
.filters .list {
  display: block;
  padding: 0.5em 0;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 0.5em;
}
.filters .list_item {
  margin: 3px 0;
  display: block;
}
.filters .list_item.hide {
  display: none;
}
.filters .list .PastWeek,
.filters .list .PastMonth,
.filters .list .PastYear {
  display: inline-block;
  margin: 5px 0;
}
.filters .searchwithin_contents input {
  width: 80%;
  height: 2.5em;
  padding-left: 3px;
  margin-right: 5px;
}
@media (max-width: 599px) {
  .filters .searchwithin_contents input {
    width: 70%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.filters .button-list {
  display: flex;
  justify-content: flex-end;
}
.filters .button-list .button {
  margin-left: 5px;
}
.filters_limiters {
  margin: 1em 0;
}
.filters .limiter-container > li {
  margin: 7px 0 0 0;
  border-radius: 0 4px 4px 4px;
  border: 1px solid #003865;
  padding: 0.5em;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.filters .limiter-container .facet .facet-checkbox {
  margin-right: 10px;
  vertical-align: middle;
}
.filters .limiter-container .facet label {
  margin-left: 5px;
}
.filters .limiter-controls {
  background-color: #fff;
  border-top: 1px solid #d6d6d6;
  padding: 0.5em 0;
}
.filters .custom-select-box {
  width: 75px;
}
@media (max-width: 599px) {
  .filters .date-limiter .fa-long-arrow-right {
    display: block;
    margin: 0.5em 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.filters .date-limiter .custom-select-box {
  width: auto;
}
.select-wrapper {
  font-size: 14px;
}
.select-wrapper .custom-select-box.hasCustomSelect:focus + .custom-select-box {
  outline: 1px dotted #002133;
  outline: 5px auto -webkit-focus-ring-color;
}
.sortByLabel {
  margin-right: 5px;
}
.search-filter {
  margin: 5px 5px 5px 0;
}
.search-filter .type {
  color: #4F5A63;
  font-size: 14px;
  font-weight: normal;
}
.search-filter .value {
  color: #000;
  font-size: 14px;
}
.search-filter ~ .search-filter {
  margin: 5px;
}
.pass-through {
  font-size: 14px;
}
.pass-through .index {
  color: #4F5A63;
  font-size: 14px;
}
.pass-through .index::after {
  content: ':';
}
.pass-through .searchTerm {
  color: #000;
  font-size: 14px;
}
.operator {
  text-transform: uppercase;
  font-size: 14px;
}
.applied-searchterm {
  display: grid;
  grid-template-columns: 80px auto;
}
.applied-searchterm_title {
  padding-top: 3px;
  font-style: italic;
  font-size: 12px;
  color: #000;
}
.applied-filters_container {
  display: grid;
  grid-template-columns: 80px auto;
}
.applied-filters_list {
  max-width: 600px;
}
.applied-filters {
  margin: 1em 0;
}
.applied-filters_title {
  display: block;
  padding-top: 10px;
  font-style: italic;
  font-size: 12px;
  color: #000;
}
.applied-filters_filter {
  display: inline-block;
  background-color: #003865;
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  cursor: pointer;
  margin: 5px;
}
.applied-filters_filter .type {
  font-style: italic;
}
.applied-filters_filter .value a {
  color: #fff;
}
.applied-filters_filter .value a:hover {
  text-decoration: none;
}
.applied-filters_filter:hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.filter-limiter {
  width: min-content;
  white-space: nowrap;
}
.filter-limiter__section {
  border: 1px solid #4F5A63;
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto 40px;
  margin-left: 5px;
  width: 400px;
}
@media (max-width: 599px) {
  .filter-limiter__section {
    width: 315px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.filter-limiter__section.hidden {
  display: none;
}
.filter-limiter__selection-input {
  height: 14px;
  margin-left: 3px;
  padding: 7px 20px 7px 5px;
  width: 175px;
}
.filter-limiter__entry {
  display: inline-block;
}
.filter-limiter__entry::after {
  content: ", ";
}
.filter-limiter__entry:last-child::after {
  content: "";
}
.filter-limiter__list {
  grid-column-end: 3;
  grid-column-start: 1;
  margin-top: 10px;
  max-height: 180px;
  overflow-y: scroll;
}
.filter-limiter__list-item {
  border-top: 1px solid #4F5A63;
  display: grid;
  grid-template-columns: min-content auto;
  height: 22px;
}
.filter-limiter__list-item-label {
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 1024px) {
  .filter-limiter__list-item-label {
    font-size: 16px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.filter-limiter__list-item .filter-limiter__checkbox {
  padding-top: 5px;
}
.filter-limiter__input {
  margin: 10px 5px 0 10px;
  font-size: 13px;
  padding-left: 5px;
}
.filter-limiter__button {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 15px;
}
.filter-limiter__dropdown-button {
  font-size: 10px;
  position: relative;
  right: 24px;
}
.filter-limiter__dropdown-icon {
  background: #fff;
  padding: 7px;
}
.filter-limiter__close-icon {
  margin: 10px;
  font-size: 17px;
}
.filter-limiter .label {
  display: block;
}
.c-limiter__clear,
.c-limiter__clear-all {
  display: none;
}
.c-limiter__clear--show,
.c-limiter__clear-all--show {
  display: inline-block;
  cursor: pointer;
  border: none;
  background: none;
  float: right;
}
.c-limiter__clear--show .undo-icon,
.c-limiter__clear-all--show .undo-icon {
  margin-left: 5px;
}
.footnote-bar {
  border-top: 2px solid #fff;
  padding: 0.5em 1em;
  position: relative;
}
.footnote-bar--gray {
  background-color: #d6d6d6;
  text-align: right;
}
@media (max-height: 500px) {
  .footnote-bar {
    font-size: 0.7em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.hero-bar .gale-tag,
.hero-bar .gale-logo {
  height: 60px;
}
@media (max-width: 599px) {
  .hero-bar .gale-tag,
  .hero-bar .gale-logo {
    height: 40px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.hero-bar .gale-tag a:hover,
.hero-bar .gale-logo a:hover {
  text-decoration: none;
}
.hero-bar .brand-primary {
  position: relative;
  float: left;
  height: 38px;
  padding: 9px 0 13px 54px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  background: #d54405;
  /* Old browsers */
  background: -moz-linear-gradient(top, #d54405 0%, #c43d04 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #d54405 0%, #c43d04 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #d54405 0%, #c43d04 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d24204', endColorstr='#c43d04', GradientType=0);
  /* IE6-9 */
}
@media (max-width: 599px) {
  .hero-bar .brand-primary {
    height: 24px;
    font-size: 20px;
    padding: 6px 0 10px 45px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.hero-bar .brand-secondary {
  position: absolute;
  margin: 10px 0 0 60px;
  color: #fff;
  font-size: 28px;
  text-shadow: 0 0 4px #000c;
  font-weight: 200;
}
.hero-bar .gale-logo__pinwheel {
  background: url("../images/gale-logo-pinwheel.svg") no-repeat;
  height: 31px;
  width: 31px;
  position: absolute;
  left: 19px;
  margin-top: 12px;
  z-index: 2;
}
@media (max-width: 599px) {
  .hero-bar .gale-logo__pinwheel {
    height: 25px;
    width: 25px;
    margin-top: 8px;
    left: 14px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.hero-bar .gale-logo__curve {
  background: url("../images/gale-badge-curve.svg") no-repeat;
  height: 60px;
  width: 60px;
  position: absolute;
  margin-left: -1px;
}
@media (max-width: 599px) {
  .hero-bar .gale-logo__curve {
    height: 40px;
    width: 40px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.homepageWrapper .gale-tag .gale-logo {
  margin: -2em 0 0 -2em;
  background: url("../images/Gale Badge.svg") no-repeat;
  height: 60px;
  width: 200px;
}
@media (max-width: 599px) {
  .homepageWrapper .gale-tag .gale-logo {
    height: 40px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.homepageWrapper .gale-tag .gale-logo span {
  position: absolute;
  text-indent: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
/* I know it's gross but these are very specific situations
with long primary and secondary names. These can be removed if the products
get renamed with shorter names. */
@media (min-width: 769px) and (max-width: 1024px) {
  .NCCO .brand-secondary,
  .GDSC .brand-secondary,
  .PHIA .brand-secondary,
  .ROAM .brand-secondary,
  .AHSI .brand-secondary,
  .WMNS .brand-secondary,
  .USDD .brand-secondary,
  .MOME .brand-secondary,
  .STHA .brand-secondary,
  .SMIT .brand-secondary,
  .AAHP .brand-secondary,
  .AAN .brand-secondary,
  .BBCN .brand-secondary,
  .BNCN .brand-secondary,
  .NICN .brand-secondary {
    font-size: 27px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .NCCO .brand-secondary,
  .GDSC .brand-secondary,
  .PHIA .brand-secondary,
  .ROAM .brand-secondary,
  .AHSI .brand-secondary,
  .WMNS .brand-secondary,
  .USDD .brand-secondary,
  .MOME .brand-secondary,
  .STHA .brand-secondary,
  .SMIT .brand-secondary,
  .AAHP .brand-secondary,
  .AAN .brand-secondary,
  .BBCN .brand-secondary,
  .BNCN .brand-secondary,
  .NICN .brand-secondary {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.subheader,
.sub-header {
  text-transform: uppercase;
  font-weight: 200;
}
.subheader--bigger {
  font-size: 1.3em;
}
.label-padding {
  padding: 0 1em 1.5em 0;
}
.page-header {
  font-size: 2.5em;
  font-weight: 200;
  color: #000;
}
.page-header__image-bg {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}
.page-header__image-bg--curriculum {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/icfe_curriculum-bg.svg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
@media (max-width: 1024px) {
  .page-header__image-bg--curriculum {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.page-header__image-bg--browse-subjects {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/browse-subjects-header.jpg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
.page-header__image-bg ~ .description {
  color: #fff;
  max-width: 800px;
}
.page-header--icfe {
  font-size: 1.5em;
  color: #006298;
  padding: 0.5em 0;
}
.block-header {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}
.block-header [class*="fa-"] {
  margin-right: 0.5em;
}
.block-header[class*="custom-fa-"]::before {
  font-weight: 300;
}
.block-header--bold {
  font-weight: bold;
}
.CFER .About .product_resources h3,
.NICN .About .product_resources h3 {
  font-size: 1.2em;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
}
.document-header {
  font-family: "Georgia", serif;
  font-size: 2em;
  font-weight: normal;
  text-align: center;
}
.topic-title {
  font-size: 1em;
  font-weight: bold;
  color: #d54405;
  margin-bottom: 0.5em;
}
.topic-title--caps {
  text-transform: uppercase;
}
.topic-title--lco-card {
  margin: auto;
  padding: 1em;
  flex: 2;
}
.subject-title {
  font-size: 18px;
  font-weight: normal;
  color: #000;
}
.results-header {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 14px;
  padding-bottom: 0.5em;
}
.search-results-header {
  display: inline-flex;
}
@media (max-width: 599px) {
  .search-results-header {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-results-header .result-count {
  margin-right: 1em;
}
@media (max-width: 599px) {
  .search-results-header .result-count {
    display: block;
    white-space: nowrap;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.portal-header {
  font-family: "Georgia", serif;
  font-size: 2em;
  font-weight: normal;
}
.searchResultsTitle .count,
.block-header .count {
  margin-left: 0.5em;
}
.accent-word {
  font-weight: 100;
}
.accent-bar {
  width: 55px;
  height: 3px;
  background-color: #d54405;
  margin-bottom: 1em;
  margin-top: 3px;
}
.description {
  margin: 0.5em 0;
}
.resProdTitle {
  font-weight: 100;
  font-size: 1em;
  text-shadow: 0 0 4px #000c;
}
@media (max-width: 599px) {
  .resProdTitle {
    font-size: smaller;
    line-height: 0.5em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.resProdTitle em {
  font-weight: 400;
  font-size: inherit;
  font-style: normal;
}
@media (max-width: 599px) {
  .resProdTitle em {
    line-height: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.About h2 {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 2.5em;
  font-weight: 200;
  color: #000;
}
.About h2__image-bg {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}
.About h2__image-bg--curriculum {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/icfe_curriculum-bg.svg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
@media (max-width: 1024px) {
  .About h2__image-bg--curriculum {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.About h2__image-bg--browse-subjects {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/browse-subjects-header.jpg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
.About h2__image-bg ~ .description {
  color: #fff;
  max-width: 800px;
}
.About h2--icfe {
  font-size: 1.5em;
  color: #006298;
  padding: 0.5em 0;
}
.home-page-info__text h1,
.home-page-info__text h2,
.home-page-info__text h3 {
  display: none;
}
.help-container-dialog {
  position: fixed;
}
#helpContent {
  display: none;
}
.helpLoaded {
  display: none;
  max-width: 1024px;
  margin: 0 auto 40px;
  color: #4F5A63;
}
.helpLoaded ol,
.helpLoaded ul {
  margin: 13px 0;
  padding-left: 40px;
}
.helpLoaded ul {
  list-style: disc;
}
.helpLoaded ol {
  list-style: decimal;
}
.helpLoaded.viewAll section {
  min-height: 100px;
}
.helpLoaded section {
  min-height: 500px;
  background-color: #fff;
  padding: 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.25);
}
.helpLoaded section--blue {
  background-color: #006298;
}
.helpLoaded section__title-link a {
  color: #000;
}
.helpLoaded section__image-card {
  padding: 0;
}
.helpLoaded section__image-card img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.helpLoaded section__image-card .header {
  display: block;
  padding: 0 1em 0.5em 1em;
  text-align: center;
  font-size: 1.3em;
}
.helpLoaded section__image-card .header--small {
  font-size: 0.8em;
}
.helpLoaded section__partner_logo--image {
  border-radius: 4px 4px 0 0;
  width: auto;
  max-height: 200px;
  max-width: 600px;
}
@media (max-width: 599px) {
  .helpLoaded section__partner_logo--image {
    max-width: 14em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .helpLoaded section__partner_logo--image {
    max-width: 29.5em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.helpLoaded section--no-padding {
  padding: 0;
}
.helpLoaded section__topic-image-container {
  position: relative;
  width: 150px;
  overflow: hidden;
  border-radius: 0 4px 4px 0;
  flex: 0 auto;
}
.helpLoaded section__topic-image-img {
  position: absolute;
  right: 0;
  height: 100%;
}
.helpLoaded section__image-card--horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  height: 150px;
}
.helpLoaded section__image-card--horizontal .image {
  object-fit: cover;
  height: 150px;
  width: 200px;
  display: flex;
  border-radius: 0 4px 4px 0;
}
.helpLoaded section__image-card--horizontal .subcategory__header {
  padding: 1em;
}
.helpLoaded section__image-card--horizontal .subcategory__header .topic-title {
  margin-bottom: 0;
}
.helpLoaded section__image-card--bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  position: relative;
  height: 250px;
  overflow: hidden;
}
.helpLoaded section__image-card--bottom .header {
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  display: grid;
  grid-template-columns: 30px auto;
  align-items: flex-start;
  min-height: 50px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.helpLoaded section__image-card--bottom .image {
  object-fit: cover;
  display: flex;
  border-radius: 0 0 4px 4px;
  height: 300px;
  width: 100%;
  position: absolute;
}
.helpLoaded section__image-card--bottom .input {
  justify-self: center;
  align-self: flex-start;
  margin-top: 6px;
}
.helpLoaded section__image-card--bottom .image-links__label {
  padding: 0.5em;
  font-size: smaller;
}
.helpLoaded section__color-header {
  border: 0;
  padding: 0;
}
.helpLoaded section__color-header--blue {
  background-color: #003865;
  color: #fff;
  font-weight: 200;
}
.helpLoaded section__color-header-title {
  padding: 0.5em 1em;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
}
.helpLoaded section__color-header-body {
  padding: 1em;
  border-radius: 0 0 4px 4px;
  font-size: smaller;
}
.helpLoaded section__related-books {
  max-width: 165px;
  margin: 0.5em;
}
.helpLoaded section__browse-all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.helpLoaded section__browse-all--content {
  text-align: right;
}
.helpLoaded section__browse-all--content a {
  color: #fff;
  font-size: 1.5em;
}
.helpLoaded section__browse-all--content a:hover .card__browse-all--content__text {
  text-decoration: underline;
}
.helpLoaded section__browse-all--content a:hover .card__browse-all--content__icon {
  border-bottom: solid 2px;
}
.helpLoaded section__browse-all--content__text,
.helpLoaded section__browse-all--content__icon {
  display: inline-block;
  margin-right: 0.5em;
}
.helpLoaded section__browse-all--content [class*="fa-"] {
  color: #fff;
  font-size: 40px;
  align-self: center;
  vertical-align: unset;
}
.helpLoaded section__SBRC-card .topicListItem {
  display: inline-block;
  width: 50%;
}
.helpLoaded section__SBRC-card .topicListItem li {
  margin: 5px 0;
}
.helpLoaded section__SBRC-card .image {
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  width: 50%;
}
.helpLoaded section__SBRC-card img {
  max-width: 100px;
  max-height: 100px;
}
.helpLoaded section__suggested-persons {
  max-width: 200px;
  margin: 0 0.5em;
}
.helpLoaded section__suggested-persons .csProductName {
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.helpLoaded section__suggested-persons .csProductName.cross-search-other {
  background-color: #d9f3ff;
  border-color: #4F5A63;
  color: #000;
}
.helpLoaded section__suggested-persons .csProductName.cross-search-current {
  background-color: #003865;
  border-color: #fff;
  color: #fff;
}
.helpLoaded section__border-card {
  display: flex;
  align-items: center;
  border: 1px solid #4F5A63;
  border-left: 6px solid #d54405;
  height: 75px;
  padding: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.helpLoaded section__border-card:hover {
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.helpLoaded section__border-card-header {
  color: #000;
  font-weight: normal;
  text-decoration: none;
}
.helpLoaded section__border-card-header:hover {
  text-decoration: none;
}
.helpLoaded section .topicListItem {
  padding: 3px 0;
}
.helpLoaded .help-module {
  display: none;
}
.helpLoaded .help-module::before {
  content: '';
  display: block;
  position: relative;
}
.helpLoaded .help-module.active {
  display: block;
}
.helpLoaded.viewAll .help-module {
  display: block;
  margin-bottom: 1em;
}
.helpLoaded.viewAll .help-module .control-group {
  display: none;
}
.helpLoaded.viewAll .help-module .all-help-link {
  display: none;
}
.helpLoaded.viewAll .help-module .control-group.first {
  display: block;
}
.helpLoaded .control-group {
  zoom: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.helpLoaded .control-group::before {
  content: '';
  display: block;
}
.helpLoaded .control-group::after {
  content: '';
  display: table;
  clear: both;
}
.helpLoaded .control-group h1,
.helpLoaded .control-group .help-title {
  float: left;
  font-weight: 400;
  font-size: 30px;
  color: #4F5A63;
  padding-bottom: 10px;
}
.helpLoaded .control-group .all-help-link {
  display: block;
  float: right;
  margin-right: 10px;
  background: url("../../Rio/images/help/help.png") no-repeat -4px -136px;
  height: 32px;
  padding-left: 34px;
  color: #4F5A63;
  padding-top: 2px;
  margin-top: 8px;
}
.helpLoaded .control-group .all-help-link:hover {
  color: #d54405;
  background-position: -4px -177px;
}
.helpLoaded .header-group h2 {
  font-weight: 400;
  font-size: 22px;
  margin: 10px 0 5px 0;
  padding-top: 5px;
}
.helpLoaded .header-group h2 .label-1 {
  color: #d6d6d6;
}
.helpLoaded .header-group h2 .label-2 {
  color: #4F5A63;
}
.helpLoaded .header-group p {
  margin: 0;
  padding-bottom: 15px;
}
.helpLoaded .body-group {
  margin-left: 40px;
}
.helpLoaded .ebook,
.helpLoaded.viewAll .help-module.ebook {
  display: none;
}
.helpLoaded .help-citation {
  margin: 5px;
}
.helpLoaded .para.citation {
  display: none;
}
.helpLoaded .RIO .para.citation.Magazines,
.helpLoaded .LILO .para.citation.Magazines,
.helpLoaded .RIO .para.citation.Journals,
.helpLoaded .LILO .para.citation.Journals,
.helpLoaded .RIO .para.citation.News,
.helpLoaded .LILO .para.citation.News,
.helpLoaded .RIO .para.citation.Media,
.helpLoaded .LILO .para.citation.Media,
.helpLoaded .RIO .para.citation.Books,
.helpLoaded .LILO .para.citation.Books,
.helpLoaded .RIO .para.citation.Plays,
.helpLoaded .LILO .para.citation.Plays {
  display: block;
}
.helpLoaded .ITKE .para.citation.Magazines,
.helpLoaded .ITKE .para.citation.News,
.helpLoaded .ITKE .para.citation.Books {
  display: block;
}
.helpLoaded .LIT .para.citation.Magazines,
.helpLoaded .LIT .para.citation.Journals,
.helpLoaded .LIT .para.citation.News,
.helpLoaded .LIT .para.citation.Media,
.helpLoaded .LIT .para.citation.Books,
.helpLoaded .LIT .para.citation.Plays {
  display: block;
}
.helpLoaded .SBRC .para.citation.Magazines,
.helpLoaded .SBRC .para.citation.Journals,
.helpLoaded .SBRC .para.citation.News,
.helpLoaded .SBRC .para.citation.Media,
.helpLoaded .SBRC .para.citation.Books {
  display: block;
}
.helpLoaded .EbookRio .para.citation.Books,
.helpLoaded .EbookLilo .para.citation.Books {
  display: block;
}
.helpLoaded .GLRS .para.citation.Magazines,
.helpLoaded .GLRS .para.citation.Journals,
.helpLoaded .GLRS .para.citation.News,
.helpLoaded .GLRS .para.citation.Media,
.helpLoaded .GLRS .para.citation.Books,
.helpLoaded .GLRS .para.citation.Monographs,
.helpLoaded .GLRS .para.citation.Manuscripts,
.helpLoaded .GLRS .para.citation.Plays {
  display: block;
}
.helpLoaded .Bolt .para.citation.Magazines,
.helpLoaded .Bolt .para.citation.Journals,
.helpLoaded .Bolt .para.citation.News,
.helpLoaded .Bolt .para.citation.Media,
.helpLoaded .Bolt .para.citation.Books,
.helpLoaded .Bolt .para.citation.Plays {
  display: block;
}
.helpLoaded a.externalLink {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  word-wrap: break-word;
}
body.helpActive#home .bucket-wrapper,
body.helpActive#home .two-column-container {
  display: none !important;
}
body.helpActive#home #helpContent section {
  margin: 2em 0;
}
body.helpActive:not(#home) main {
  display: none !important;
}
body.helpActive .helpLoaded {
  display: block;
  margin: 4em auto 0 auto;
  padding-bottom: 70px;
}
@media (max-width: 1024px) {
  body.helpActive .helpLoaded {
    padding-bottom: 120px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media only screen and (max-width: 736px) {
  .helpLoaded {
    margin: 50px auto 40px;
  }
  .helpLoaded .body-group {
    margin-left: 0;
  }
}
body.ITKE .helpLoaded .fontSize,
body.HWRC .helpLoaded .fontSize {
  display: block;
}
body.GPS .helpLoaded li.ebook {
  display: list-item;
}
body.GPS .helpLoaded.viewAll section.help-module.ebook {
  display: block;
}
body.GPS .helpLoaded section.help-module .ebookProductOnly {
  display: none;
}
.AMFN .helpLoaded.viewAll #topicEssaysAndResources {
  display: none;
}
.AMFN .essaysAndResources {
  display: none;
}
.PNCH .helpLoaded.viewAll #topicBrowsePublications {
  display: none;
}
.PNCH .browsePublications {
  display: none;
}
.ROAM .helpLoaded.viewAll #topicMapLocator {
  display: none;
}
.ROAM .topicMapLocator {
  display: none;
}
.Ebook.Lilo .helpLoaded.viewAll section.help-module.ebook {
  display: block;
}
.Ebook.Lilo .helpLoaded li.ebook {
  display: list-item;
}
.Ebook.Lilo.G-Scrib .helpLoaded .gvrl,
.Ebook.Lilo.G-Twayne .helpLoaded .gvrl,
.Ebook.Lilo.GENVRL .helpLoaded .gvrl {
  display: none !important;
}
.stage-wrapper {
  margin-top: 30px;
  background-size: cover;
}
.homepageWrapper {
  height: 360px;
  color: #fff;
  padding: 0 2em;
  background-size: cover, cover;
}
.homepageWrapper .stage-header {
  color: #fff;
  font-weight: 200;
  font-size: 2.2em;
  margin-top: 60px;
  text-transform: uppercase;
}
@media (max-width: 599px) {
  .homepageWrapper .stage-header {
    margin-top: 42px;
    line-height: 0.9em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.homepageWrapper .stage-header ~ div {
  padding: 10px 0;
}
.homepageWrapper .stage-header ~ div.title-bar__button-group {
  padding-top: 70px;
}
.homepageWrapper .stage-header .gale {
  font-weight: 500;
}
.homepageWrapper .stage-header .resProdSubTitle {
  border-left: 6px solid #d54405;
  font-size: smaller;
  max-width: 800px;
  font-weight: 600;
  display: block;
  padding-left: 10px;
  margin-bottom: 15px;
  text-transform: none;
  text-shadow: 0 0 4px #000c;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .homepageWrapper .stage-header .resProdSubTitle {
    max-width: 600px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .homepageWrapper .stage-header .resProdSubTitle {
    font-size: 0.5em;
    margin-top: 10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.homepageWrapper .customer-logo {
  float: right;
  display: inline-block;
  margin: -20px 0 0 0;
}
@media (max-width: 599px) {
  .homepageWrapper .customer-logo {
    margin: -32px -25px 0 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.homepageWrapper .customer-logo #locationBrandingLogo {
  border-radius: 5px;
}
.homepageWrapper .customer-logo #locationBrandingLogo img {
  background-color: #fff;
  border-radius: 5px;
  max-height: 80px;
  max-width: 160px;
  padding: 5px;
  -webkit-box-shadow: 0 0 4px #4F5A63;
  box-shadow: 0 0 4px #4F5A63;
}
@media (max-width: 599px) {
  .homepageWrapper .customer-logo #locationBrandingLogo img {
    max-height: 60px;
    max-width: 100px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.homepageWrapper .searchLinks__searchLinkList {
  display: none;
}
.hero-bar {
  height: 60px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 599px) {
  .hero-bar {
    height: 40px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.hero-bar .gale-tag {
  display: inline-block;
}
.hero-bar .customer-logo {
  float: right;
  display: inline-block;
  margin: 0 30px 0 0;
}
.hero-bar .customer-logo #locationBrandingLogo {
  border-radius: 5px;
  max-height: 42px;
}
.hero-bar .customer-logo #locationBrandingLogo img {
  background-color: #fff;
  border-radius: 5px;
  max-height: 35px;
  padding: 4px;
  margin-top: 8px;
}
.workflow .hero-bar {
  background-position: unset;
}
.legend-block {
  position: absolute;
  right: 220px;
  background-color: #fff;
  border: 1px solid #4F5A63;
  border-radius: 4px;
  padding: 1em;
  z-index: 2;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.legend-block_list {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #4F5A63;
}
.legend-block_list-element {
  margin: 0.5em 0;
}
.legend-block_list-element .legendText {
  height: 25px;
  padding-left: 5px;
}
.legend-block_list-element [class*="fa-"] {
  float: left;
  padding-top: 5px;
  width: 50px;
}
.legend-block_list-element [class*="fa-"]::before {
  text-align: center;
  display: block;
}
@media (max-width: 599px) {
  .legend-block {
    right: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.legend-labels {
  margin: 1em 0;
}
.legend-labels_list {
  display: inline-block;
}
.legend-labels_list li {
  display: inline-block;
  margin: 5px 10px 0 0;
}
.legend-labels_list-item {
  display: inline;
  margin-right: 1em;
  font-weight: 200;
}
.legend-labels_list-label {
  margin-left: 3px;
}
[id*="scribbledListLink"] label {
  pointer-events: none;
}
.scribbledList .highlightedText,
.scribbledList .userNotes {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.scribbledList .default-msg {
  white-space: normal;
}
.scribbledDocs .scribbled-list-container {
  top: 56px;
  border: 1px solid #4F5A63;
  border-radius: 4px;
  padding: 1em;
  max-height: 450px;
  overflow-y: auto;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  .scribbledDocs .scribbled-list-container {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .scribbledDocs .scribbled-list-container .scribbledList {
    max-height: 50vh;
  }
}
@media (max-width: 768px) {
  .scribbledDocs .scribbled-list-container {
    left: 10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .scribbledDocs .scribbled-list-container .scribbledList {
    width: 100%;
  }
}
@media (max-height: 500px) {
  .scribbledDocs .scribbled-list-container {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .scribbledDocs .scribbled-list-container .scribbledList {
    max-height: 30vh;
  }
}
.scribbledDocs .scribbled-list-container::before {
  right: 50px;
  border: 10px solid transparent;
  border-bottom-color: #d6d6d6;
  content: " ";
  height: 0;
  width: 0;
  top: -20px;
  position: absolute;
  margin-left: -25px;
}
.scribbledDocs .allNotesLink .button_inverted {
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.scribbledDocs .allNotesLink .button_inverted [class*="fa-"] {
  margin: 0 5px;
}
.scribbledDocs .allNotesLink .button_inverted_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.scribbledDocs .allNotesLink .button_inverted_primary:hover,
.scribbledDocs .allNotesLink .button_inverted_primary:active,
.scribbledDocs .allNotesLink .button_inverted_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.scribbledDocs .allNotesLink .button_inverted_inverted:active,
.scribbledDocs .allNotesLink .button_inverted_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.scribbledDocs .allNotesLink .button_inverted_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_accent:active,
.scribbledDocs .allNotesLink .button_inverted_accent:visited,
.scribbledDocs .allNotesLink .button_inverted_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.scribbledDocs .allNotesLink .button_inverted_filter:hover,
.scribbledDocs .allNotesLink .button_inverted_filter:active,
.scribbledDocs .allNotesLink .button_inverted_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.scribbledDocs .allNotesLink .button_inverted_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_filter--active:active,
.scribbledDocs .allNotesLink .button_inverted_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scribbledDocs .allNotesLink .button_inverted_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.scribbledDocs .allNotesLink .button_inverted_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.scribbledDocs .allNotesLink .button_inverted_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.scribbledDocs .allNotesLink .button_inverted--expanded {
  width: 100%;
}
.scribbledDocs .allNotesLink .button_inverted_clean {
  background: transparent;
  border: none;
}
.scribbledDocs .allNotesLink .button_inverted_clean:hover {
  background: #000;
  color: #fff;
}
.scribbledDocs .allNotesLink .button_inverted--small {
  font-size: 11px;
  padding: 5px 8px;
}
.scribbled-list-container {
  top: 56px;
  border: 1px solid #4F5A63;
  border-radius: 4px;
  padding: 1em;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.notepad {
  margin-bottom: 1em;
}
.notepad .citationFormatSelect > * {
  margin-right: 1em;
}
.notepad .citationFormatSelect .active {
  font-weight: bold;
  text-decoration: underline;
}
.highlights-block_row {
  border-bottom: 1px solid #d6d6d6;
  margin: 1em 0 0 0;
  padding-bottom: 1em;
}
.highlights-block_row li:not(:first-of-type) {
  margin-left: 20px;
}
.highlights-block .note {
  margin-left: 10px;
}
.highlights-block .note .stackedHeader {
  font-weight: bold;
  margin: 0 5px 0 0;
}
.highlights-block .note .notes {
  margin: 0 5px 0 0;
}
.highlights-block .docTitle {
  margin-bottom: 1em;
}
.highlights-block .docTitle [class*="fa-"] {
  margin-right: 5px;
  color: #006298;
}
.highlights-block .scribbledItems {
  margin: 1em 0;
}
.highlights-block .highlightedText {
  padding-left: 10px;
  margin-bottom: 5px;
}
.highlights-block .notesAddEdit {
  cursor: pointer;
}
.highlights-block .notesEditSave,
.highlights-block .notesEditCancel {
  vertical-align: top;
}
.imagelist__list {
  list-style: none;
  border: 0;
  padding: 0;
  margin: 10px;
  display: flex;
}
.imagelist__item {
  width: 220px;
  height: 210px;
  float: left;
  padding: 1px;
  margin: 10px;
  flex: 1;
  border: 0;
}
.imagelist__item--magazine {
  width: 110px;
}
.imagelist__item .header {
  display: block;
  padding: 0 1em 0.5em 1em;
  text-align: center;
  font-size: 1.3em;
}
.imagelist__item .header--small {
  font-size: 0.8em;
}
.imagelist__image {
  width: 100%;
  height: 147px;
  border-radius: 4px 4px 0 0;
  margin: 0;
  object-fit: contain;
  border: 0;
  padding: 0;
  background-color: #fff;
}
.imagelist__label {
  color: #000;
  border: 0;
  padding: 0;
  text-align: center;
  width: calc(100% - 20px);
  margin: 0 auto 10px auto;
}
.imagelist__clear-all {
  float: right;
}
@media (max-width: 1024px) {
  .imagelist {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .imagelist__item {
    width: 200px;
  }
  .imagelist__item--magazine {
    width: 110px;
  }
}
.inlinePDFViewer .contentSection {
  display: grid;
  grid-template-columns: 30% 70%;
  column-gap: 20px;
}
.inlinePDFViewer .noViewer {
  display: flex;
}
.inlinePDFViewer .noViewer .pdfLinks {
  width: 100%;
  height: 700px;
  overflow: visible;
}
.inlinePDFViewer .noViewer .pdfLinks .product_resources {
  min-width: 100%;
}
.inlinePDFViewer [id*="embeddedPDF"] {
  width: 100%;
  height: 700px;
}
.inlinePDFViewer .pdfLinks {
  height: 700px;
  overflow: scroll;
  overflow-x: hidden;
}
.inlinePDFViewer .pdfLinks .resources_notes {
  display: none;
}
.inlinePDFViewer .pdfLinks h2 {
  margin-bottom: 10px;
  font-size: 2.5em;
  font-weight: 200;
  color: #000;
}
.inlinePDFViewer .pdfLinks h2__image-bg {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}
.inlinePDFViewer .pdfLinks h2__image-bg--curriculum {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/icfe_curriculum-bg.svg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
@media (max-width: 1024px) {
  .inlinePDFViewer .pdfLinks h2__image-bg--curriculum {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.inlinePDFViewer .pdfLinks h2__image-bg--browse-subjects {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/browse-subjects-header.jpg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
.inlinePDFViewer .pdfLinks h2__image-bg ~ .description {
  color: #fff;
  max-width: 800px;
}
.inlinePDFViewer .pdfLinks h2--icfe {
  font-size: 1.5em;
  color: #006298;
  padding: 0.5em 0;
}
.inlinePDFViewer .pdfLinks .product_resources h1,
.inlinePDFViewer .pdfLinks .product_resources h2 {
  display: none;
}
.inlinePDFViewer .pdfLinks .authorname {
  border-top: 0;
  padding: 0 0 10px 0;
  margin: 0;
  font-style: italic;
}
.inlinePDFViewer .pdfLinks .overview {
  padding: 0;
  border-top: 0;
  margin: 0;
}
.inlinePDFViewer .pdfLinks p {
  border-top: 1px solid #d6d6d6;
  padding-top: 10px;
  margin: 0;
}
@media (max-width: 768px) {
  .inlinePDFViewer {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .inlinePDFViewer .contentSection {
    display: flex;
    flex-wrap: wrap;
  }
  .inlinePDFViewer .contentSection [id*="embeddedPDF"] {
    width: 100%;
    height: 700px;
    padding-top: 20px;
  }
  .inlinePDFViewer .contentSection .pdfLinks {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .inlinePDFViewer .contentSection .pdfLinks .product_resources {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .inlinePDFViewer {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .inlinePDFViewer .contentSection {
    display: flex;
    flex-wrap: wrap;
  }
  .inlinePDFViewer .contentSection [id*="embeddedPDF"] {
    width: 100%;
    height: 1000px;
    padding-top: 20px;
  }
  .inlinePDFViewer .contentSection .pdfLinks {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .inlinePDFViewer .contentSection .pdfLinks .product_resources {
    width: 100%;
    max-width: 100%;
  }
}
.label {
  font-weight: bold;
}
.label--no-bold {
  font-weight: normal;
}
input {
  border-radius: 4px;
  border: 1px solid #4F5A63;
}
@media (max-width: 1024px) {
  input,
  select {
    font-size: 16px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.input {
  margin-right: 5px;
  padding: 3px;
}
.input__dropdown {
  background-color: #fff;
  width: 100%;
  height: 25px;
  margin: 0.5em 0 1em 0;
  border-radius: 4px;
  border: 1px solid #4F5A63;
}
.input__dropdown--inline {
  width: auto;
  margin: 0.5em 0.2em;
}
.ui-widget {
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
}
.ui-autocomplete-input {
  border-radius: 4px;
  border: 1px solid #4F5A63;
  height: 25px;
  padding-left: 3px;
  font-size: 100%;
}
@media (max-width: 599px) {
  .searchBox {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .searchBox .ui-autocomplete-input {
    min-width: unset;
    width: 150px;
  }
}
@media (max-width: 1024px) {
  .searchBox {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .searchBox a {
    display: block;
  }
}
.ui-dropdownchecklist-selector {
  border-radius: 4px;
  border: 1px solid #4F5A63;
  background-image: none;
  background-color: #fff;
}
.ui-dropdownchecklist-selector::after {
  content: "\f107";
  font-weight: normal;
  color: #000;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  vertical-align: middle;
  position: absolute;
  margin: 4px 0 0 -15px;
}
.ui-dropdownchecklist-text {
  color: #000;
  font-weight: normal;
  font-size: 100%;
  padding-left: 5px;
  height: 25px;
  line-height: 2;
  vertical-align: middle;
}
.ui-dropdownchecklist-dropcontainer {
  border-radius: 4px;
  margin-top: -6px;
  border-color: #4F5A63;
}
.ui-dropdownchecklist-dropcontainer .ui-state-default {
  border: 0;
  border-bottom: 1px solid #4F5A63;
  background: #fff;
}
.ui-dropdownchecklist-dropcontainer .ui-state-default:last-of-type {
  border: 0;
  border-bottom: none;
  background: #fff;
}
.date-entry {
  margin-bottom: 10px;
}
.date-entry__label {
  margin-right: 5px;
}
.date-entry .input {
  height: 25px;
}
.app-tip {
  display: inline;
  margin: 0 5px;
}
.app-tip dt {
  display: inline;
}
.magazineDateLimiter .dateLabels {
  min-width: 50px;
  display: inline-block;
}
.interactive_product {
  min-height: auto !important;
  height: auto !important;
  background: #fff;
}
.interactive_product .header-wrapper .tools,
.interactive_product .hero-bar,
.interactive_product .media-object,
.interactive_product .footer-wrapper,
.interactive_product .doc-copyright,
.interactive_product #locationBrandingContainer,
.interactive_product #showIterfaceLang {
  display: none !important;
}
.interactive_product .document-summary .doc-title {
  margin: 1em auto;
}
.interactive_product .content-wrapper {
  padding-bottom: 0;
}
.interactive_product .document-tools.navigation {
  overflow-x: scroll;
}
.interactive_product .ui-dialog {
  position: fixed !important;
  top: 10px !important;
}
.interactive_product.mobile_or_tablet .docTools-download,
.interactive_product.desktopViewer .docTools-download,
.interactive_product.mobile_or_tablet #docTools-google-download,
.interactive_product.desktopViewer #docTools-google-download,
.interactive_product.mobile_or_tablet #docTools-microsoft-download,
.interactive_product.desktopViewer #docTools-microsoft-download,
.interactive_product.mobile_or_tablet .cloud-drive-download,
.interactive_product.desktopViewer .cloud-drive-download,
.interactive_product.mobile_or_tablet #docTools-print,
.interactive_product.desktopViewer #docTools-print,
.interactive_product.mobile_or_tablet #docTools-citation,
.interactive_product.desktopViewer #docTools-citation,
.interactive_product.mobile_or_tablet #docSummary-librarylinks,
.interactive_product.desktopViewer #docSummary-librarylinks {
  display: none;
}
.interactive_product.mobile_or_tablet #read-speaker-tool,
.interactive_product.mobile_or_tablet .docTools-email,
.interactive_product.mobile_or_tablet .docTools-sendTo,
.interactive_product.mobile_or_tablet .nav-divider {
  display: none;
}
.interactive_product .email-confirmation {
  min-width: auto;
}
.interactive_product .email-form__input-group,
.interactive_product .email-confirmation__list {
  display: block;
}
.interactive_product .navigation {
  height: fit-content;
  scrollbar-width: initial !important;
}
@media (max-width: 599px) {
  .interactive_product .navigation {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .interactive_product .navigation::-webkit-scrollbar {
    width: initial !important;
    height: initial !important;
    background-color: #f2f2f2;
  }
  .interactive_product .navigation::-webkit-scrollbar-thumb {
    background: #d6d6d6;
  }
}
@media (max-width: 599px) {
  .interactive_product {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .interactive_product #content-wrapper {
    margin-top: 70px !important;
  }
}
@-moz-document url-prefix() {
  .interactive_product .navigation {
    height: 80px;
  }
}
.limiter__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow: hidden;
}
.limiter__list:hover {
  overflow-y: auto;
}
.limiter__item {
  display: flex;
  align-items: baseline;
  margin: 5px 20px 3px 5px;
}
.limiter__item--disabled .limiter__label {
  color: #d6d6d6;
}
.limiter__checkbox {
  display: block;
  flex: 0 0 25px;
}
.limiter__label {
  display: block;
}
.limiter__count {
  display: flex;
  text-align: right;
  width: 50px;
  justify-content: flex-end;
  flex: 1;
}
.limiter__clear,
.limiter__clear-all {
  display: none;
}
.limiter__clear--show,
.limiter__clear-all--show {
  display: inline-flex;
  border: none;
  margin-left: 10px;
  float: right;
  background-color: transparent;
  cursor: pointer;
}
.limiter__clear--show [class*="fa-"],
.limiter__clear-all--show [class*="fa-"] {
  margin-left: 5px;
}
@media (max-width: 599px) {
  .limiter {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .limiter__checkbox {
    flex: 0 0 30px;
  }
  .limiter__label {
    flex: 0 0 270px;
  }
  .limiter__count {
    flex: 0 0 30px;
  }
}
.main {
  background-color: #fff;
  border-bottom: solid #d6d6d6 1px;
  -webkit-box-shadow: 0 2px 4px 0 #4f5a6354;
  -moz-box-shadow: 0 2px 4px 0 #4f5a6354;
  box-shadow: 0 2px 4px 0 #4f5a6354;
}
.main + * {
  margin-top: 55px;
}
.navigation {
  padding: 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .navigation {
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Firefox */
    padding: 0 30px 0 10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .navigation::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.navigation .nav-item {
  padding-top: 8px;
}
.navigation .tool-link,
.navigation .nav-item {
  font-size: 11px;
  color: #000;
  text-decoration: none;
}
.navigation .tool-link > svg,
.navigation .nav-item > svg {
  pointer-events: none;
  text-decoration: none;
}
.navigation .tool-link [class*="fa-"],
.navigation .nav-item [class*="fa-"] {
  text-decoration: none;
}
.navigation .nav-divider {
  border-right: 1px solid #d6d6d6;
  margin: 0 10px;
}
.navigation .advancedSearch {
  width: 50px;
  line-height: 1.2;
  margin-top: 3px;
}
.navigation .advancedSearch a {
  color: #000;
}
.navigation .toolbar-button {
  display: block;
  padding: 3px;
}
.navigation .toolbar-button .tool-link[class*="fa-"]::before,
.navigation .toolbar-button .nav-breadcrumb,
.navigation .toolbar-button .nav-breadcrumb-label {
  display: block;
  text-align: center;
  cursor: pointer;
  color: #000;
  text-transform: capitalize;
}
.navigation .toolbar-button .tool-link[class*="fa-"]::before {
  font-size: 20px;
}
.navigation .toolbar-button .tool-link {
  min-width: 50px;
}
.navigation .toolbar-button .nav-breadcrumb-label {
  font-size: 11px;
}
.navigation .toolbar-button:hover {
  background-color: #f2f2f2;
  border-radius: 3px;
  text-decoration: none;
}
.navigation .toolbar-button:hover span {
  text-decoration: underline;
}
.navigation .toolbar-button span {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
}
.navigation .toolbar-button_bg [class*="fa-"] {
  background-color: #f2f2f2;
  border-radius: 3px;
  padding: 5px 0;
  margin-top: 0;
}
.navigation .toolbar-button .custom-fa-Glossary::before {
  content: "\f02d";
}
.navigation .toolbar-button .custom-fa-BusinessTopics::before,
.navigation .toolbar-button .custom-fa-BusinessTypes::before {
  content: "\f0b1";
}
.navigation .toolbar-button .custom-fa-HowTo::before {
  content: "\f059";
}
.navigation .toolbar-button .custom-fa-MultiResource::before {
  content: "\f0eb";
}
.navigation .toolbar-button.highlightsMode .icon-color {
  color: #d54405;
}
.navigation .workflow-tools-container {
  display: flex;
}
.navigation .workflow-tools-container .student-view-container {
  padding: 0;
}
.navigation .workflow-tools-container .student-view-container .top-tools__tool-label {
  margin-top: -2px;
}
.navigation .workflow-tools-container .student-view-toggle.hide {
  display: none;
}
.navigation .product .short {
  display: none;
}
@media (max-width: 599px) {
  .navigation .product .short {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .navigation .product .long {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.navigation .tray {
  display: none;
}
.navigation.active .tray {
  display: block;
}
.navigation .welcome-link {
  display: inline-flex;
  align-items: center;
}
.navigation .welcome-link.hide {
  display: none;
}
.navigation .cloud-ico {
  display: inline-flex;
  margin: 2px 5px 0 0;
  height: 20px;
  width: 25px;
}
.navigation .Google .cloud-ico {
  background-image: url('../images/google_logo.svg');
  background-repeat: no-repeat;
  background-position: initial;
  background-size: contain;
}
.navigation .Microsoft .cloud-ico {
  background-image: url('../images/microsoft_logo.svg');
  background-repeat: no-repeat;
  background-position: initial;
  background-size: contain;
}
.navigation .Google-drive .cloud-ico {
  background-image: url('../images/drive/Google_Drive_Logo.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.navigation .One-drive .cloud-ico {
  background-image: url('../images/drive/onedrive.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.extraLinks .tool-link {
  font-size: 11px;
  color: #fff;
  text-decoration: none;
}
.extraLinks .tool-link > svg {
  pointer-events: none;
  text-decoration: none;
}
.extraLinks .tool-link [class*="fa-"] {
  text-decoration: none;
}
.extraLinks .toolbar-button {
  margin: 0 1em;
}
.extraLinks .toolbar-button [class*="fa-"],
.extraLinks .toolbar-button label {
  cursor: pointer;
  font-size: 14px;
  color: #fff;
}
.extraLinks .toolbar-button label {
  font-weight: bolder;
  text-shadow: 0 0 4px #000c;
}
.extraLinks .toolbar-button label:hover {
  text-decoration: underline;
}
.extraLinks .toolbar-button:hover {
  background-color: unset;
}
.navigation .top-tools__tool:hover {
  background-color: #f2f2f2;
  border-radius: 3px;
  text-decoration: none;
}
.top-tools__container .button__btn,
.top-tools__container .link {
  padding: 0;
  display: inline-block;
  text-align: center;
}
.top-tools__container .link {
  margin-top: -1px;
}
.top-tools__tool {
  display: block;
  padding: 3px 6px;
}
.top-tools__tool [class*="fa-"] {
  color: #000;
}
.top-tools__tool--add [class*="fa-"] {
  color: #78a12b;
}
.top-tools__tool--remove [class*="fa-"] {
  color: #c00;
}
.top-tools__tool-icon [class*="fa-"] {
  height: 20px;
  width: 50px;
  padding-bottom: 2px;
  margin: 2px auto 0 auto;
  font-size: 20px;
  text-decoration: none;
}
.top-tools__tool-icon > * {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-weight: 100;
}
.top-tools__tool-label {
  display: block;
  text-align: center;
  cursor: pointer;
  font-size: 11px;
  color: #000;
  text-transform: capitalize;
}
.top-tools__tool-label:hover {
  text-decoration: underline;
}
.content-set-menu {
  position: absolute;
  width: 353px;
  max-width: 353px;
}
.content-set-menu .list__entries {
  background-color: #fff;
  border-radius: 4px;
  margin-top: 60px;
  padding: 0.5em 0;
  max-height: 150px;
  overflow: auto;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.content-set-menu .list__entries::after {
  bottom: calc(100% - 60px);
  /* stylelint-disable-line function-calc-no-invalid */
  left: 45px;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  margin-left: -10px;
}
.content-set-menu .list__item:first-of-type {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.content-set-menu .list__item .button__btn {
  max-width: 314px;
  text-overflow: ellipsis;
  overflow-x: hidden;
  text-transform: none;
  color: #000;
}
.map-popup {
  background: white;
  position: absolute;
  width: 400px;
  left: 350px;
  border: solid #d6d6d6 5px;
  z-index: 100001;
}
.map-popup__image {
  width: inherit;
}
.map-locator__container {
  display: flex;
  flex-flow: row wrap;
}
.map-locator__container .map-locator,
.map-locator__container .map-results {
  margin: 0.5em;
}
.map-locator__range-error {
  color: #c00;
}
.map-locator__pubyr {
  display: grid;
  grid-template-columns: auto auto;
  margin: 0 0.5em;
}
.map-locator__slider-desc {
  margin: 1em 0;
}
.map-locator .map-publication-year .ui-slider-handle {
  border-radius: 3px;
}
.map-locator__range-input {
  width: max-content;
  margin: 0.5em auto;
}
.map-locator__range-input .map-locator__range-number {
  padding: 0.5em;
}
.map-locator__submit {
  margin: 2.7em 2em;
}
@media (max-width: 599px) {
  .map-locator__submit {
    margin: 5.5em 0 0 1.5em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.map-results {
  min-width: 390px;
  width: 100%;
  flex: 1;
}
@media (max-width: 599px) {
  .map-results {
    min-width: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.map-results-content {
  overflow: auto;
  border: 1px solid #d6d6d6;
  margin-bottom: 5px;
  height: 450px;
}
.map-results .zero-results {
  text-align: center;
  background: #f2f2f2;
  height: 100%;
  padding: 0 0.5em;
}
.map-results .zero-results::before {
  content: "\f279";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 100px;
  color: #d6d6d6;
  display: block;
  padding: 1em 0 0.5em 0;
}
.map-entry {
  display: grid;
  grid-template-columns: 130px auto;
  padding: 0.5em;
  border-bottom: solid #d6d6d6 1px;
}
.map-preview {
  margin-right: 1em;
}
.map-preview-image {
  max-width: 100px;
  max-height: 80px;
}
.map-result {
  font-size: small;
}
.map-canvas {
  height: 450px;
}
.media-object {
  display: inline-grid;
  grid-template-columns: 60px auto;
  margin-bottom: 1em;
}
.media-object_icon {
  grid-column: 1;
}
.media-object_icon img,
.media-object_icon [class*="fa-"] {
  height: 60px;
  width: 45px;
}
.media-object_icon img.book_cover_image,
.media-object_icon [class*="fa-"].book_cover_image {
  height: 84px;
  width: 56px;
}
.media-object_icon [class*="fa-"] {
  color: #4F5A63;
}
.media-object_content {
  grid-column: 2;
  font-size: small;
  padding-left: 5px;
}
.media-object_content .subheader {
  margin-bottom: 0.5em;
  font-size: 1.2em;
  font-weight: 200;
}
.media-object .document-content-level {
  margin-bottom: 4px;
}
.alert {
  margin: 1em 0;
}
.alert_body {
  border-radius: 4px;
  background-color: #f2f2f2;
  padding: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.alert_body [class*="fa-"] {
  color: #d54405;
  height: 30px;
  width: 30px;
}
.alert_body--content {
  font-size: small;
  padding: 0 1em;
  max-width: 600px;
}
.alert_message {
  padding-left: 5px;
}
div.ui-dialog.citationDialog {
  max-width: 70%;
}
div.ui-dialog.citationDialog .ui-dialog-titlebar {
  width: auto;
}
div.ui-dialog.citationDialog .ui-state-default,
div.ui-dialog.citationDialog .ui-widget-content .ui-state-default,
div.ui-dialog.citationDialog .ui-widget-header .ui-state-default,
div.ui-dialog.citationDialog .ui-button,
div.ui-dialog.citationDialog html .ui-button.ui-state-disabled:hover,
div.ui-dialog.citationDialog html .ui-button.ui-state-disabled:active {
  border: 1px solid #d6d6d6;
  background: #f2f2f2;
  font-weight: normal;
  color: #4F5A63;
}
div.ui-dialog.citationDialog .ui-state-hover,
div.ui-dialog.citationDialog .ui-widget-content .ui-state-hover,
div.ui-dialog.citationDialog .ui-widget-header .ui-state-hover,
div.ui-dialog.citationDialog .ui-state-focus,
div.ui-dialog.citationDialog .ui-widget-content .ui-state-focus,
div.ui-dialog.citationDialog .ui-widget-header .ui-state-focus,
div.ui-dialog.citationDialog .ui-button:hover,
div.ui-dialog.citationDialog .ui-button:focus {
  border: 1px solid #d6d6d6;
  background: #6ecef6 !important;
  font-weight: normal;
  color: #000;
}
#oqeOverrideContainer {
  z-index: 999;
  position: fixed;
  top: 155px;
  left: 20%;
  font-size: 1.8em;
  display: block;
}
#oqeOverrideOptions {
  width: 800px;
  height: 160px;
  font-size: 1.2em;
  padding: 10px;
  margin-top: 0;
  border: 1px solid #000;
}
#oqeOverrideTitleBar {
  width: 100%;
  position: relative;
  height: 10px;
  background-color: #006298;
}
#oqeOverrideClose {
  width: 40px;
  height: 40px;
  background: url('../../Rio/images/dialog-sprite.png') no-repeat scroll 0 -109px transparent;
  position: absolute;
  right: -21px;
  top: -15px;
}
.MultiResource h2:first-child {
  font-size: 2.5em;
  font-weight: 200;
  color: #000;
}
.MultiResource h2:first-child__image-bg {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}
.MultiResource h2:first-child__image-bg--curriculum {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/icfe_curriculum-bg.svg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
@media (max-width: 1024px) {
  .MultiResource h2:first-child__image-bg--curriculum {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.MultiResource h2:first-child__image-bg--browse-subjects {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/browse-subjects-header.jpg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
.MultiResource h2:first-child__image-bg ~ .description {
  color: #fff;
  max-width: 800px;
}
.MultiResource h2:first-child--icfe {
  font-size: 1.5em;
  color: #006298;
  padding: 0.5em 0;
}
.MultiResource .product_resources li p:first-child {
  margin-top: 0;
}
@media (max-width: 599px) {
  .MultiResource {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .MultiResource .Introduction p {
    max-width: 600px;
    margin-bottom: 0;
  }
}
.ocr-wrapper__confidence {
  padding: 1em 0;
  display: inline-block;
}
.ocr-wrapper__confidence-score {
  padding-left: 0.5em;
}
.ocr-wrapper__confidence-info {
  display: inline-block;
}
.ocr-wrapper__confidence-info .modal__container {
  position: absolute;
  left: 37%;
}
.ocr-wrapper__title-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ocr-wrapper__title-container .ocr-rs {
  justify-self: end;
  min-height: 32px;
}
.ocr-nav {
  background-color: #f2f2f2;
  padding: 0.5em 1em;
}
.ocr-nav__tools {
  display: flex;
  align-items: center;
}
.ocr-nav__input {
  margin: 0 5px;
  height: 25px;
  width: 50px;
  text-align: center;
  font-size: 1em;
}
.ocr-nav__button {
  background-color: transparent;
  color: #4F5A63;
  border: 0;
  font-size: 1em;
}
.ocr-nav__button--go {
  background-color: #4F5A63;
  color: #fff;
  padding: 5px 10px;
}
.fulltext-ocr {
  height: calc(100vh - 70px);
  /* stylelint-disable-line function-calc-no-invalid */
  width: calc(100% - 2.1em);
  /* stylelint-disable-line function-calc-no-invalid */
  border: 1px solid #4F5A63;
  padding: 1em;
  overflow-y: auto;
}
.full-article-ocr {
  margin-top: 2em;
}
.ocr-rs__icon {
  display: block;
  border: none;
  background: none;
  width: auto;
  padding-left: 4px;
  padding-right: 4px;
}
.ocr-rs__icon:hover {
  cursor: pointer;
}
.ocr-rs__label {
  display: block;
  font-weight: normal;
  font-size: 11px;
  margin-top: 4px;
  -moz-osx-font-smoothing: initial;
  font-family: "Open Sans", sans-serif;
}
.ocr-rs__label:hover {
  text-decoration: underline;
}
.pagination {
  margin: 2em auto;
  width: 100%;
  text-align: center;
}
.pagination-current {
  text-decoration: underline;
}
.pagination-link,
.pagination-current {
  margin: 0 5px;
}
.pagination-next,
.pagination-prev {
  font-weight: bold;
}
.pagination-next [class*="fa-"],
.pagination-prev [class*="fa-"] {
  margin: 0 5px;
}
.portal-header {
  text-align: center;
}
.portal-featured .subheader {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 1em;
}
.search-within-portals {
  margin: 0.5em 0 1em 0;
}
.portal-result-list .SearchResultsList_multi-bucket {
  padding: 1em;
  background-color: #fff;
}
.portal-result-list .SearchResultsList_multi-bucket .Images {
  display: inline-flex;
}
.portal-result-list .SearchResultsList_multi-bucket .gallery-view_image .title {
  font-size: 1em;
  position: absolute;
}
.onThisPageSection .search-type_multi-bucket .block-header {
  font-size: 1em;
  text-transform: initial;
  font-weight: 400;
  color: #006298;
}
.related-header {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 1em;
}
body:not(#home) .product-categories,
body:not(#home) .archives-limiter {
  display: none;
}
.product-categories__select-all-wrapper {
  padding: 1em;
}
.product-categories__container {
  display: flex;
  flex-flow: row wrap;
}
.product-categories__category {
  margin: 10px;
  flex: 0 30%;
}
.product-categories__product-wrapper {
  padding-bottom: 5px;
}
.product-categories__category-select {
  margin-right: 5px;
}
.rsbtn_loadtext {
  margin-top: -2px;
  position: absolute;
  font-size: 11px;
}
@media (max-width: 599px) {
  .rsbtn_loadtext {
    position: relative;
    top: -10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-box-wrapper {
  display: grid;
  grid-template-columns: min-content auto;
}
.input-wrapper {
  display: grid;
  grid-template-columns: auto 40px;
}
.search-box-wrapper,
.input-wrapper {
  background-color: #fff;
  border-radius: 4px;
}
.search .ui-autocomplete-input {
  width: 100%;
  border: 1px solid #fff;
  height: 28px;
  text-indent: 5px;
}
@media (max-width: 768px) {
  .search .ui-autocomplete-input {
    border-radius: 0 4px 4px 0;
    text-indent: 5px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search .select-wrapper {
  color: #000;
  display: flex;
}
.search .select-wrapper select {
  height: 100%;
  border: none;
  border-radius: 4px 0 0 4px;
  background-color: #f2f2f2;
}
.search .submit {
  width: 30px;
  height: 20px;
  padding: 0;
  border: 0;
  color: transparent;
  background: url(../images/search.svg) center no-repeat transparent;
  margin: 5px;
}
.search .submit:hover {
  cursor: pointer;
}
.stage-search {
  max-width: 500px;
}
.stage-search .index-selection {
  border: none;
  font-size: 14px;
}
.stage-search .advanced-search {
  color: #fff;
  margin-top: 5px;
  font-size: smaller;
  text-shadow: 0 0 4px #000c;
  left: 35px;
  position: absolute;
}
.nav-search {
  border-radius: 3px;
  border: 1px solid #4F5A63;
}
.nav-search .ui-autocomplete-input {
  width: 300px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .nav-search .ui-autocomplete-input {
    border: none;
    font-size: 16px;
    width: 160px;
    margin-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .nav-search .select-wrapper {
    display: none;
  }
  .nav-search .ui-autocomplete-input {
    margin-left: 0;
    width: 150px;
  }
  /* stylelint-disable-line at-rule-no-unknown */
}
@media (max-width: 599px) and (min-width: 1200px) {
  .nav-search .submit {
    margin-top: -23px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.navigation .advancedSearch .label {
  width: 50px;
  white-space: normal;
  font-weight: normal;
}
.navigation .advancedSearch .label:hover {
  text-decoration: underline;
}
.basic-search__input {
  height: 25px;
  width: 100%;
  max-width: 600px;
  padding-left: 3px;
}
@media (max-width: 768px) {
  .basic-search__input {
    max-width: 250px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.basic-search .submit {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  margin: -2px 0 0 -26px;
  color: transparent;
  background: url(../images/search.svg) center no-repeat transparent;
}
.basic-search .submit--button {
  margin: 4px 0 0 -26px;
}
.basic-search .submit:hover {
  cursor: pointer;
}
.ui-autocomplete {
  height: 300px;
  overflow: auto;
}
.limiter_box .input {
  height: 25px;
  padding-left: 3px;
}
@media (max-width: 599px) {
  .stage-search.no-basic-search-options .ui-autocomplete-input {
    width: 100%;
    margin-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .stage-search.no-basic-search-options .ui-autocomplete-input {
    width: 100%;
    border-radius: 4px;
    margin-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .stage-search.no-basic-search-options .ui-autocomplete-input {
    border: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-explorer .search {
  border: 1px solid #4F5A63;
}
.document-explorer .search input {
  border-color: #fff;
}
.dvi-caret-container {
  background-color: #f2f2f2;
  padding: 0 10px;
  color: #4F5A63;
}
.dvi-caret {
  vertical-align: -0.325em;
}
.archives-limiter--navBar {
  display: none;
}
.results-content-filter {
  background-color: #f2f2f2;
  padding: 1em 2em;
  margin-bottom: 10px;
}
.results-content-filter .subheader {
  padding: 0.5em 0 1em 0;
}
.searchResultsListHeaderDGName {
  font-weight: normal;
  display: inline-block;
}
.select-all-results {
  padding: 0 0 1em 2em;
}
.select-all-results input {
  margin-left: 0;
  padding-left: 0;
}
.select-all-results label {
  margin-left: 5px;
}
.result-count_count {
  color: #d54405;
  font-weight: bold;
}
.SearchResultsList .title {
  font-size: 1.2em;
  font-weight: normal;
}
.SearchResultsList .title a {
  color: #006298;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.SearchResultsList .pagePreviewWrapper {
  display: flex;
  align-items: center;
}
.SearchResultsList .docTypeAccessLevel .docType {
  background-color: #f2f2f2;
  padding: 5px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 0.8em;
}
.SearchResultsList .citation-view {
  margin: 0 0 1em 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #d6d6d6;
}
.SearchResultsList .citation-view:last-of-type {
  border-bottom: 0;
}
.SearchResultsList .citation-ebooks,
.SearchResultsList .citation-dvi {
  display: grid;
  grid-template-columns: 200px auto;
}
@media (max-width: 599px) {
  .SearchResultsList .citation-ebooks,
  .SearchResultsList .citation-dvi {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.SearchResultsList .DVI-Citations {
  display: block;
}
.SearchResultsList .Videos:last-of-type .gallery-view_video {
  border-bottom: 0;
}
.SearchResultsList .titleWrapper {
  padding: 0.5em 0;
  line-height: 1.3;
}
.SearchResultsList .publication_citation,
.SearchResultsList .citation-metadata,
.SearchResultsList .directory-snippet-wrapper,
.SearchResultsList .author,
.SearchResultsList .citation-sourceLibrary {
  font-size: small;
  display: block;
}
.SearchResultsList .publication_citation .citation-details::before,
.SearchResultsList .citation-metadata .citation-details::before,
.SearchResultsList .directory-snippet-wrapper .citation-details::before,
.SearchResultsList .author .citation-details::before,
.SearchResultsList .citation-sourceLibrary .citation-details::before,
.SearchResultsList .publication_citation .definition::before,
.SearchResultsList .citation-metadata .definition::before,
.SearchResultsList .directory-snippet-wrapper .definition::before,
.SearchResultsList .author .definition::before,
.SearchResultsList .citation-sourceLibrary .definition::before {
  content: "";
  margin-right: 5px;
}
.SearchResultsList .snippetWrapper {
  margin-top: 0.5em;
}
.SearchResultsList .citation-metadata,
.SearchResultsList .author {
  padding: 0;
}
.SearchResultsList .libraryLinks {
  display: block;
}
.SearchResultsList .libraryLinks li {
  display: inline;
  margin: 10px 10px 0 0;
  font-size: small;
}
.SearchResultsList .citation-rightsIndicator {
  font-weight: bold;
  font-size: small;
  margin: 0.5em 0;
}
.SearchResultsList .citation-rightsIndicator [class*="fa-"] {
  color: #d54405;
}
.SearchResultsList .citation-location::before {
  content: ' (';
}
.SearchResultsList .citation-location::after {
  content: ')';
}
.SearchResultsList .product-from,
.SearchResultsList .library-links-info,
.SearchResultsList .related-doc {
  font-size: small;
}
.SearchResultsList .related-doc {
  margin: 0 1em;
}
.SearchResultsList .related-doc-icon {
  color: #006298;
  font-size: 1.2em;
  font-weight: 600;
  margin-right: 0.2em;
}
.carrot__results li {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.carrot__results a {
  display: block;
  margin-bottom: 0.5em;
}
.carrot__results .snippet {
  display: block;
  padding-bottom: 0.5em;
}
.carrot__results .subjects {
  display: block;
}
.peer-reviewed {
  display: inline-block;
  align-items: center;
}
.peer-reviewed [class*="fa-"] {
  height: 14px;
  width: 14px;
  background-size: contain;
  margin: 0 5px;
}
.metadata-box {
  background-color: #f2f2f2;
  padding: 3px 4px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 0.7em;
  display: inline-block;
  margin: 0 0.5em 0 0;
}
.snippetWrapper .citation-snippet {
  display: block;
  margin: 0.5em 0;
}
.Audio .snippetWrapper .citation-snippet,
.Audios .snippetWrapper .citation-snippet,
.GTX-Audios .snippetWrapper .citation-snippet {
  display: none;
}
.SearchResultsList_multi-bucket {
  border-radius: 4px;
  border: 1px solid #003865;
}
.content-set-status {
  display: none;
}
.content-set-status.added {
  display: flex;
  justify-content: flex-end;
  margin: 5px 0;
}
.content-set-status.added .status {
  white-space: nowrap;
  display: inline;
  text-overflow: ellipsis;
  max-width: 200px;
  overflow: hidden;
  font-size: 14px;
  padding: 0 5px;
}
.content-set-status.added .svg-inline--fa {
  width: 14px;
  height: 14px;
}
.content-set-manage-wrapper {
  display: none;
}
.workflow .citation-view,
.workflow .video-citation {
  padding-left: 20px;
}
.workflow .citation-view .titleWrapper,
.workflow .video-citation .titleWrapper {
  margin-left: -27px;
  display: grid;
  grid-template-columns: 25px auto auto;
  grid-template-rows: 30px auto;
}
@media (max-width: 768px) {
  .workflow .citation-view .titleWrapper,
  .workflow .video-citation .titleWrapper {
    grid-template-columns: 25px auto;
    grid-template-rows: auto auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .workflow .citation-view .titleWrapper .content-set-status.added,
  .workflow .video-citation .titleWrapper .content-set-status.added {
    grid-row: 3;
    grid-column: 1 / 3;
    display: flex;
    justify-content: flex-start;
  }
}
.workflow .citation-view .titleWrapper .result-item,
.workflow .video-citation .titleWrapper .result-item {
  justify-self: center;
  align-self: flex-start;
}
.workflow .citation-view .titleWrapper .result-item > div,
.workflow .video-citation .titleWrapper .result-item > div {
  display: inline;
  vertical-align: text-top;
}
.workflow .citation-view .titleWrapper .title,
.workflow .video-citation .titleWrapper .title {
  display: inline;
  grid-row: 1 / 3;
  grid-column: 2;
}
.workflow .gallery-view_image .title {
  display: inline-block;
  align-items: baseline;
}
.workflow .gallery-view_image .title a {
  display: inline;
}
.workflow .gallery-view_image .result-item {
  display: inline;
}
.workflow .gallery-view_image .result-item > div {
  display: inline;
}
.workflow .gallery-view_image .content-set-status.added {
  justify-content: flex-start;
}
.search-results-images {
  display: flex;
  align-items: flex-start;
}
.search-results-images .title {
  font-size: 12px;
  position: absolute;
}
.search-results-images .truncatedTitle {
  display: none;
}
.workflow .search-results-images .title {
  position: relative;
}
.gallery-view_image {
  margin: 0.5em;
  position: relative;
  min-height: 230px;
}
.gallery-view_image .media_float {
  text-align: center;
}
.gallery-view_image .media_float img {
  width: auto;
  max-width: 100%;
  height: 180px;
}
.gallery-view_image .title a {
  display: block;
  display: -webkit-box;
  line-height: 16px;
  max-height: 32px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.search-results-bucket .search-results-images {
  flex-flow: row nowrap;
}
.search-results-bucket .gallery-view_image {
  max-width: 280px;
}
.search-results-bucket .gallery-view_image .media_float img {
  min-height: 100px;
  max-height: 180px;
  height: auto;
}
.loi_entry .shadow,
.lov_entry .shadow {
  padding: 1.5em;
}
.loi_entry .shadow .media_float img,
.lov_entry .shadow .media_float img {
  max-width: 200px;
}
.view-all-wrapper {
  margin-top: 3.4em;
}
.ebook-wrapper .category-gallery .book {
  display: initial;
  grid-template-columns: unset;
  min-width: unset;
}
.ebook-wrapper .category-gallery .book .image-wrapper img {
  border: none;
  height: 250px;
  width: auto;
  min-width: unset;
  max-width: unset;
  text-indent: unset;
}
.ebook-wrapper .category-gallery .book .title {
  position: relative;
  font-size: 1em;
}
.ebook-wrapper .category-gallery .book .noCoverTitle {
  font-size: 1em;
  max-width: 166px;
}
.gallery-view_video .truncatedTitle {
  display: none;
}
.gallery-view_video-image {
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
}
.gallery-view_video .videoDuration {
  background-color: #000;
  border: 1px solid #4F5A63;
  width: auto;
  display: inline;
  border-radius: 4px;
  padding: 0 5px;
  position: absolute;
  top: 76%;
  right: 4%;
}
.gallery-view_video .value {
  color: #fff;
}
.gallery-view_video .media_float img {
  width: 200px;
}
.send-to-dialog .sendToList {
  width: 600px;
}
.send-to-dialog .ui-widget-content {
  overflow: hidden;
}
.send-to-dialog .cloud-ico,
.send-to-dialog [class*="fa-"] {
  display: inline-flex;
  height: 20px;
  width: 25px;
}
.send-to-dialog .Google-drive .cloud-ico {
  background-image: url('../images/drive/Google_Drive_Logo.svg');
  background-repeat: no-repeat;
  background-position: initial;
}
.send-to-dialog .One-drive .cloud-ico {
  background-image: url('../images/drive/onedrive.svg');
  background-repeat: no-repeat;
  background-position: initial;
}
.send-to-dialog .tool-list__tool .button {
  display: flex;
  align-items: center;
}
.send-to-dialog .signin-link {
  padding: 7px 16px;
}
.send-to-dialog .signin-link .classroom-label {
  margin-left: 4px;
  vertical-align: super;
}
.send-to-dialog .sendTo-message {
  margin-bottom: 10px;
}
.searchalert-dialog {
  font-size: 90%;
}
.searchalert-dialog .sa_main__email,
.searchalert-dialog .sa_main__rss {
  padding-left: 10px;
  cursor: pointer;
}
.searchalert-dialog .sa_main__email__icon,
.searchalert-dialog .sa_main__rss__icon {
  padding-left: 10px;
}
.searchalert-dialog .sa_main_rss_back_icon {
  padding-left: 3px;
  padding-right: 4px;
  font-size: 20px;
  cursor: pointer;
}
.searchalert-dialog .sa_main_rss_back_icon .fa-arrow-left {
  font-weight: 400;
}
.searchalert-dialog .button_circle-icon {
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 1.1em;
  padding: 1px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.searchalert-dialog .button_circle-icon [class*="fa-"] {
  margin-left: 6px;
}
.searchalert-dialog .button_circle_heading-icon {
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 1.8em;
  padding-right: 3px;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.searchalert-dialog .button_circle_heading-icon [class*="fa-"] {
  margin-left: 6px;
}
.searchalert-dialog .search-alert__feed-url {
  height: 65px;
}
.searchalert-dialog .sa_rss_heading__icon {
  padding-right: 10px;
  padding-left: 10px;
}
.searchalert-dialog .rss_url_link {
  padding: 0;
}
.searchalert-dialog .sa__menu {
  padding: 0 0 10px;
}
.searchalert-dialog .sa_label__rss {
  padding-left: 10px;
}
.searchalert-dialog .search-alert__options {
  margin-bottom: 3px;
  display: inline-flex;
  padding-top: 1%;
}
.searchalert-dialog .sa_option__label {
  padding-right: 10px;
  font-weight: 600;
}
.searchalert-dialog .sa_agreement {
  font-size: small;
  padding-left: 19px;
  padding-top: 3px;
}
.searchalert-dialog .sa_agreement__link a {
  color: #006298;
}
.searchalert-dialog .sa_email__label {
  padding-right: 45px;
  font-weight: 600;
}
.searchalert-dialog .sa_email__text {
  width: 68%;
  height: 23px;
  color: #000;
}
.searchalert-dialog .ga-rss_select {
  float: right;
  padding-top: 8px;
}
.searchalert-dialog .ga-rss_select__btn {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.searchalert-dialog .ga-rss_select__btn [class*="fa-"] {
  margin: 0 5px;
}
.searchalert-dialog .ga-rss_select__btn_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.searchalert-dialog .ga-rss_select__btn_primary:hover,
.searchalert-dialog .ga-rss_select__btn_primary:active,
.searchalert-dialog .ga-rss_select__btn_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.searchalert-dialog .ga-rss_select__btn_inverted:active,
.searchalert-dialog .ga-rss_select__btn_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.searchalert-dialog .ga-rss_select__btn_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_accent:active,
.searchalert-dialog .ga-rss_select__btn_accent:visited,
.searchalert-dialog .ga-rss_select__btn_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.searchalert-dialog .ga-rss_select__btn_filter:hover,
.searchalert-dialog .ga-rss_select__btn_filter:active,
.searchalert-dialog .ga-rss_select__btn_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.searchalert-dialog .ga-rss_select__btn_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_filter--active:active,
.searchalert-dialog .ga-rss_select__btn_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.searchalert-dialog .ga-rss_select__btn_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.searchalert-dialog .ga-rss_select__btn_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.searchalert-dialog .ga-rss_select__btn_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.searchalert-dialog .ga-rss_select__btn--expanded {
  width: 100%;
}
.searchalert-dialog .ga-rss_select__btn_clean {
  background: transparent;
  border: none;
}
.searchalert-dialog .ga-rss_select__btn_clean:hover {
  background: #000;
  color: #fff;
}
.searchalert-dialog .ga-rss_select__btn--small {
  font-size: 11px;
  padding: 5px 8px;
}
.searchalert-dialog .ga-rss_select__btn:hover,
.searchalert-dialog .ga-rss_select__btn:active,
.searchalert-dialog .ga-rss_select__btn:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.searchalert-dialog .sa_option__format {
  padding-left: 23%;
}
@media (max-width: 599px) {
  .searchalert-dialog .sa_option__format {
    padding-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .searchalert-dialog .sa_option__label {
    min-width: 80px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.searchalert-dialog label[for='privacyAgreed'],
.searchalert-dialog label[for='birthDate'] {
  display: block;
  float: right;
  width: 16em;
  font-size: smaller;
}
.searchalert-dialog label[for='emailId'] {
  display: block;
  width: 16em;
  font-size: smaller;
  padding-left: 17%;
  padding-top: 4px;
}
.lang-translation {
  display: none;
}
.lang-translation.visible {
  display: block;
}
.lang-translation .lang-link {
  font-size: 1em;
}
.lang-translation.active {
  position: absolute;
  background-color: #f2f2f2;
  width: 102%;
  top: 28px;
  left: 0;
  right: 0;
  min-height: 200px;
  z-index: 101;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.lang-translation.active ul {
  display: inline-block;
  padding: 2em;
}
.lang-translation.active ul li {
  display: inline-block;
  width: 20%;
  padding: 0.3em 0;
  text-align: left;
  float: left;
}
@media (max-width: 768px) {
  .lang-translation.active ul li {
    width: 40%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.lang-translation.active ul li.selected {
  font-weight: bold;
  text-decoration: underline;
}
.header-wrapper {
  background-color: #f2f2f2;
}
.header-wrapper a.accessFeature {
  display: block;
  height: 0;
  width: 0;
  text-indent: -99999px;
}
.header-wrapper a.accessFeature:focus {
  width: 100%;
  height: 25px;
  text-indent: 0;
  padding: 5px 10px;
}
.resourceLinkWrapper {
  margin-right: 25px;
  position: relative;
  min-height: 30px;
}
.resourceLinks {
  display: inline-block;
  list-style: none;
  padding: 0 20px 0 0;
  text-align: right;
  width: 100%;
}
@media (max-width: 1024px) {
  .resourceLinks {
    display: flex;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .resourceLinks {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.resourceLinks_mobile {
  display: none;
}
@media (max-width: 599px) {
  .resourceLinks_mobile {
    display: flex;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.resourceLinks .arrowUp {
  cursor: pointer;
}
.resourceLinks .right,
.resourceLinks .left {
  margin: 0 10px;
}
@media (max-width: 768px) {
  .resourceLinks .right,
  .resourceLinks .left {
    margin: 0 -15px 0 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.resourceLinks .right a,
.resourceLinks .left a {
  display: flex;
  align-items: center;
  height: 27px;
  font-size: 11px;
  color: #000;
  text-decoration: none;
}
.resourceLinks .right a > svg,
.resourceLinks .left a > svg {
  pointer-events: none;
  text-decoration: none;
}
.resourceLinks .right a [class*="fa-"],
.resourceLinks .left a [class*="fa-"] {
  text-decoration: none;
}
.resourceLinks .right a.hide,
.resourceLinks .left a.hide {
  display: none;
}
.resourceLinks .right span,
.resourceLinks .left span {
  font-size: 11px;
}
.resourceLinks .right .classroom-share,
.resourceLinks .left .classroom-share {
  display: flex;
  align-items: center;
  justify-items: center;
  margin: 2px 10px 0 0;
}
.resourceLinks .right .toolbar-button,
.resourceLinks .left .toolbar-button {
  background-color: transparent;
  position: relative;
  border: 0;
  display: flex;
  align-items: center;
  justify-items: center;
  height: 27px;
  cursor: pointer;
  font-size: 12px;
  padding: 0 1.8em 0 2.8em;
  margin: 0;
}
.resourceLinks .right .toolbar-button::before,
.resourceLinks .left .toolbar-button::before,
.resourceLinks .right .toolbar-button::after,
.resourceLinks .left .toolbar-button::after {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  position: absolute;
}
.resourceLinks .right .toolbar-button::before,
.resourceLinks .left .toolbar-button::before {
  content: "\f1ab";
  font-weight: 100;
  font-size: 1.5em;
  top: 5px;
  left: 5px;
}
.resourceLinks .right .toolbar-button::after,
.resourceLinks .left .toolbar-button::after {
  content: "\f0d7";
  font-weight: 600;
  font-size: 1.3em;
  top: 7px;
  right: 11px;
}
.resourceLinks .signin-link:hover {
  text-decoration: underline;
}
.resourceLinks .signin-link [class*="fa-"],
.resourceLinks .signin-link .nav-arrow {
  width: auto;
  padding: 0 5px;
}
.resourceLinks .signin-link [class*="fa-"]:hover,
.resourceLinks .signin-link .nav-arrow:hover {
  text-decoration: none;
}
.resourceLinks .signin-link .nav-arrow [class*="fa-"] {
  width: 10px;
}
.resourceLinks .accessFeature {
  display: none;
}
.library-label {
  margin-right: 5px;
}
.library-label.button__btn {
  text-transform: none;
  background: none;
  cursor: pointer;
  font-size: 11px;
  padding: 0;
}
.library-label:hover {
  text-decoration: underline;
}
.library-brand {
  font-weight: bold;
}
.library-brand:hover {
  text-decoration: underline;
}
@media (max-width: 599px) {
  .locationBranding_content .navigation {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.locationBranding_logo {
  float: left;
}
.locationBranding_logo img {
  margin: 10px 0 2px 0;
  max-width: 160px;
  max-height: 80px;
}
.locationBranding_text {
  float: left;
  font-size: 12px;
  margin: 15px 0 0 10px;
}
.locationBranding_text > * {
  display: block;
}
.locationBrandingText {
  display: flex;
  align-items: center;
}
.simpleTree .leaf,
.simpleTree .branch {
  line-height: 2em;
}
.simpleTree .branch .toctree__sub-list-title {
  cursor: pointer;
}
.simpleTree .branch ul {
  padding-left: 10px;
}
.simpleTree .branch ul li {
  padding: 3px 0 3px 10px;
  line-height: 1.5;
  border-bottom: 1px solid #4F5A63;
}
.simpleTree .branch ul li:last-of-type {
  border: 0;
}
.simpleTree .branch button .custom-fa-toc-caret-right::before {
  content: "\f0da";
}
.simpleTree .branch.expanded > button .custom-fa-toc-caret-right::before {
  content: "\f0da";
}
.tab_list {
  display: inline-block;
}
.tab_list.hide {
  display: none;
}
.tab_list [class*="custom-fa"]::before {
  margin-right: 5px;
}
.tab_list [class*="custom-fa"]:hover {
  text-decoration: none;
}
.tab_list .tab {
  display: inline-block;
  margin-right: 1em;
  padding-bottom: 0.5em;
}
@media (max-width: 599px) {
  .tab_list .tab {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.tab_list .tab a,
.tab_list .tab .tab-link {
  color: #006298;
  font-weight: 400;
}
.tab_list .tab a.active,
.tab_list .tab .tab-link.active,
.tab_list .tab a.selected,
.tab_list .tab .tab-link.selected {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #d54405;
}
.tab_list .tab a.active:hover,
.tab_list .tab .tab-link.active:hover,
.tab_list .tab a.selected:hover,
.tab_list .tab .tab-link.selected:hover {
  text-decoration: none;
}
.tab_list .tab a span:last-of-type,
.tab_list .tab .tab-link span:last-of-type {
  width: fit-content;
  width: -moz-fit-content;
}
.tab_list .tab.active a,
.tab_list .tab.active .active,
.tab_list .tab.active .tab-action,
.tab_list .tab.active .tab-grid {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #d54405;
}
.tab_list .tab.active a:hover,
.tab_list .tab.active .active:hover,
.tab_list .tab.active .tab-action:hover,
.tab_list .tab.active .tab-grid:hover {
  text-decoration: none;
}
.tab_list .tab.active a .tab-link,
.tab_list .tab.active .active .tab-link,
.tab_list .tab.active .tab-action .tab-link,
.tab_list .tab.active .tab-grid .tab-link {
  color: #000;
  font-weight: bold;
}
.tab_list .tab [class*="fa-"]::before {
  color: #000;
  font-weight: 300;
  width: 20px;
  margin-right: 5px;
}
.tab_list .tab.hide {
  display: none;
}
.tab_list .count {
  margin-left: 5px;
}
.tab_list--doc-explorer-tabs {
  background-color: #d6d6d6;
  width: 80px;
  padding: 1em 0;
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .tab_list--doc-explorer-tabs {
    width: 68px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.tab_list--doc-explorer-tabs .tab {
  margin-right: 0;
  display: flex;
  justify-content: center;
  width: 80px;
}
@media (max-width: 599px) {
  .tab_list--doc-explorer-tabs .tab {
    width: 68px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.tab_list--doc-explorer-tabs .tab [class*="fa-"] {
  padding-bottom: 2px;
  margin-right: 0;
  width: 100%;
  font-size: 20px;
  text-decoration: none;
}
.tab_list--doc-explorer-tabs .doc-explorer-tab-btn {
  padding: 0.5em;
  margin-bottom: 6px;
  text-align: center;
  text-transform: capitalize;
  color: #000;
  width: 100%;
  border: 0;
  border-left: solid transparent 5px;
  background-color: #d6d6d6;
  box-shadow: none;
  -webkit-box-shadow: none;
}
@media (max-width: 599px) {
  .tab_list--doc-explorer-tabs .doc-explorer-tab-btn {
    font-size: 0.7em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.tab_list--doc-explorer-tabs .doc-explorer-tab-btn:hover {
  color: #000;
  text-decoration: underline;
  background-color: #f2f2f2;
}
.tab_list--doc-explorer-tabs .doc-explorer-tab-btn.active {
  background-color: #f2f2f2;
  border-left: solid #d54405 5px;
}
.launchpad-tools .button_accent {
  box-shadow: none;
}
.launchpad-tools .button_accent:active,
.launchpad-tools .button_accent:hover {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
.c-tab__bar {
  display: flex;
  justify-content: space-around;
}
.c-tab__tab {
  display: inline-block;
  background-color: transparent;
  border: 0;
  color: #006298;
}
.c-tab__tab--active {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #d54405;
}
.c-tab__tab-content--hide {
  display: none;
}
.tab-grid {
  display: grid;
  grid-template-columns: auto;
}
.termCluster .carrot__visualization {
  width: 96%;
  max-width: 500px;
  min-height: 600px;
  float: left;
}
@media (max-width: 599px) {
  .termCluster .carrot__visualization {
    float: none;
    min-height: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .termCluster .carrot__visualization {
    float: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.termCluster .carrot__visualization .visualization {
  min-width: 500px;
  min-height: 500px;
}
@media (max-width: 599px) {
  .termCluster .carrot__visualization .visualization {
    width: 250px;
    height: 250px;
    min-width: unset;
    min-height: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.termCluster .visualization-help {
  background: url("../../Rio/images/topicfinder_gtx.png") no-repeat -4px -610px;
  position: relative;
  display: none;
  margin-top: 21px;
  margin-left: 15px;
  height: 480px;
  width: 480px;
}
.termCluster .visualizationFoamtreeHelp {
  background: url("../../Rio/images/topicfinder_gtx.png") no-repeat -531px -613px;
}
.termCluster .visualizationCirclesHelp > span,
.termCluster .visualizationFoamtreeHelp > span {
  position: absolute;
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 5px 10px 5px 5px;
  max-width: 200px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.termCluster .visualizationCirclesHelp > span span,
.termCluster .visualizationFoamtreeHelp > span span {
  display: inline-block;
  max-width: 180px;
  vertical-align: middle;
}
.termCluster .visualizationCirclesHelp > span i,
.termCluster .visualizationFoamtreeHelp > span i {
  vertical-align: middle;
}
.termCluster .visualizationCirclesHelp1 {
  top: 10px;
  left: 0;
}
.termCluster .visualizationCirclesHelp2 {
  left: 138px;
  top: 285px;
}
.termCluster .visualizationCirclesHelp3 {
  left: 175px;
  top: 400px;
}
.termCluster .visualizationCirclesHelp4 {
  right: 42px;
  top: 209px;
  padding: 8px 5px 8px 10px;
}
.termCluster .visualizationCirclesHelp4 i {
  background: url("../../Rio/images/topicfinder-arrow.png") no-repeat 0 -44px;
  margin-right: 0;
  margin-left: 5px;
}
.termCluster .visualizationCirclesHelp5 {
  left: 95px;
  top: 122px;
}
.termCluster .visualizationCirclesHelp6 {
  right: 10px;
  top: 45px;
}
.termCluster .visualizationFoamtreeHelp1 {
  right: 10px;
  top: 45px;
}
.termCluster .visualizationFoamtreeHelp2 {
  top: 10px;
  left: 20px;
}
.termCluster .visualizationFoamtreeHelp3 {
  left: 100px;
  top: 169px;
}
.termCluster .visualizationFoamtreeHelp4 {
  left: 132px;
  top: 386px;
}
.termCluster .visualizationFoamtreeHelp5 {
  left: 248px;
  top: 270px;
}
.termCluster .carrotHelpClose,
.termCluster .carrotFoamtreeHelpClose {
  height: 32px;
  position: absolute;
  right: 0;
  width: 32px;
}
.termCluster .ajaxLoader {
  width: 100%;
  height: 50px;
  background: url("../../Rio/images/ajax-loader.gif") no-repeat scroll center center transparent;
}
.termCluster .carrot_tipInfo {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  margin: auto auto auto 2em;
  padding-left: 2em;
  border-top: 1px solid #d6d6d6;
}
.termCluster .carrot_tipInfo .subheader {
  align-self: center;
}
.termCluster .carrot_tipInfo .description {
  padding-left: 20px;
  border-left: 1px solid #d6d6d6;
}
@media (max-width: 599px) {
  .termCluster .carrot_tipInfo {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
    margin: 30px 0 0 0;
    padding-left: 0;
    border-top: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .termCluster .carrot_tipInfo .description {
    padding-left: 0;
    border-left: none;
  }
}
@media (max-width: 1024px) {
  .termCluster .carrot_tipInfo {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
    margin: 30px 0 0 0;
    padding-left: 0;
    border-top: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .termCluster .carrot_tipInfo .description {
    padding-left: 0;
    border-left: none;
  }
}
.categories {
  padding-top: 2em;
  height: 100%;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
@media (max-width: 768px) {
  .categories {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .categories {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .categories {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.categories .topicListItem {
  padding: 5px 0;
}
.categories .topicListItem__header {
  display: inline;
}
.categories .topicListItem__header,
.categories .product_resources__header {
  font-weight: normal;
}
.categories .product_resources__header {
  margin-bottom: 1em;
}
.browseTopics .topic {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
.topic_status {
  background-color: #d54405;
  padding: 3px;
  font-size: x-small;
  color: #fff;
  margin-left: 5px;
  border-radius: 3px;
}
.topic_status--blue {
  background-color: #006298;
}
.topic_status--icon {
  display: flex;
  align-items: center;
}
.topic_status--icon [class*="fa-"] {
  padding: 0.3em 0.3em;
}
.portal-header .topic_status {
  font-size: small;
  vertical-align: middle;
}
.login-dialog {
  display: grid;
  grid-template-columns: auto 202px;
  column-gap: 30px;
}
.login-dialog .left-section {
  display: grid;
}
.login-dialog .right-section {
  display: grid;
  row-gap: 15px;
}
.login-dialog .why-sign-up-section {
  display: grid;
  grid-template-columns: 55px auto;
}
.login-dialog .cloud-link {
  display: flex;
  width: 200px;
  cursor: pointer;
}
.login-dialog .why-sign-up-section {
  padding-right: 35px;
}
.login-dialog .why-sign-up-section .icon {
  border: 1px solid #d6d6d6;
  border-radius: 18px;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 36px;
}
.login-dialog .why-sign-up-section .text {
  padding: 3px 0;
  font-size: 14px;
}
.login-dialog .cloud-link__google {
  border: 1px solid #4285f4;
  background: #4285f4;
  padding: 0;
  height: 35px;
}
.login-dialog .cloud-link__google .cloud-ico {
  background-image: url('../images/google_logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #fff;
  width: 33px;
  height: 33px;
}
.login-dialog .cloud-link__google .sign-in-label {
  color: #fff;
  margin-left: 11px;
  margin-top: 8px;
  font-size: 14px;
}
.login-dialog .cloud-link__microsoft {
  border: 1px solid #8c8c8c;
  background: #fff;
  padding: 5px;
  height: 35px;
}
.login-dialog .cloud-link__microsoft .cloud-ico {
  background-image: url('../images/microsoft_logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #fff;
  width: 25px;
  height: 20px;
}
.login-dialog .cloud-link__microsoft .sign-in-label {
  color: #5e5e5e;
  margin-left: 11px;
  font-size: 15px;
}
.login-dialog .privacy-image {
  text-align: center;
  color: #003865;
  font-size: 25px;
}
.login-dialog .privacy-policy-link {
  display: block;
  color: #006298;
  margin-top: 20px;
  font-size: 13px;
}
.login-dialog .privacy-text {
  font-size: 13px;
}
.login-dialog .text,
.login-dialog .why-sign-up-header,
.login-dialog .privacy-text {
  color: #4F5A63;
}
.login-dialog .text em,
.login-dialog .why-sign-up-header em,
.login-dialog .privacy-text em {
  font-style: normal;
}
.about-archive .divider--gray {
  margin-bottom: 1em;
}
.about-archive__image-section {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .about-archive__image-section {
    margin-top: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.about-archive__image-section-content {
  width: min-content;
}
@media (max-width: 768px) {
  .about-archive__aside {
    grid-row: 2;
    padding-bottom: 25px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .about-archive__overview {
    grid-row: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.about-archive__text {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 20px;
}
.about-archive__text h2:first-child {
  font-size: 2.5em;
  font-weight: 200;
  color: #000;
}
.about-archive__text h2:first-child__image-bg {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}
.about-archive__text h2:first-child__image-bg--curriculum {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/icfe_curriculum-bg.svg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
@media (max-width: 1024px) {
  .about-archive__text h2:first-child__image-bg--curriculum {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.about-archive__text h2:first-child__image-bg--browse-subjects {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/browse-subjects-header.jpg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
.about-archive__text h2:first-child__image-bg ~ .description {
  color: #fff;
  max-width: 800px;
}
.about-archive__text h2:first-child--icfe {
  font-size: 1.5em;
  color: #006298;
  padding: 0.5em 0;
}
@media (max-width: 768px) {
  .about-archive__text {
    grid-template-columns: 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.about-archive__caption-credit {
  background-color: #f2f2f2;
  font-size: small;
  margin-top: -5px;
}
.about-archive__caption {
  padding: 1em 1em 0 1em;
}
.about-archive__credit {
  padding: 0 1em 1em 1em;
}
.about-archive__expand-toggle {
  margin: 1em 0 1.5em;
}
.about-collection .divider--gray {
  margin-bottom: 1em;
}
.about-collection__header {
  text-align: center;
}
.about-collection__search {
  display: block;
  margin: 1em 0;
}
.about-collection__search-within .c-search {
  margin: 1em 0;
  display: inline;
}
.about-collection__search-within .c-search ~ .subheader {
  margin: 0 2em;
}
.about-collection__search-within .button:first-of-type {
  margin-right: 1em;
}
.about-collection__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 20px;
}
.about-collection__image-section {
  margin-top: 2em;
}
.about-collection__image-section-content {
  width: min-content;
}
.about-collection__caption-credit {
  background-color: #f2f2f2;
  font-size: small;
  margin-top: -5px;
}
.about-collection__caption {
  padding: 1em 1em 0 1em;
}
.about-collection__credit {
  padding: 0 1em 1em 1em;
}
.about-collection__expand-toggle {
  margin: 1em 0 1.5em;
}
.about-collection__publications {
  padding-bottom: 1.5em;
}
.facts__dt {
  font-weight: 700;
}
.facts__dd {
  margin-bottom: 1em;
}
.adv-search_input-group {
  padding: 1em 0;
}
.adv-search_input-group .customSelect.hasCustomSelect:focus + .customSelect,
.adv-search_input-group .custom-select-box.hasCustomSelect:focus + .custom-select-box {
  outline: 1px dotted #002133;
  outline: 5px auto -webkit-focus-ring-color;
}
.adv-search_input-group [id*="inputField_999"] {
  display: none;
}
.adv-search_input-group--row {
  margin: 10px 0;
}
.adv-search_input-group--row > * {
  min-width: 111px;
}
.adv-search_input-group--row [class*="button-row"] {
  width: 500px;
}
@media (max-width: 599px) {
  .adv-search_input-group--row [class*="button-row"] {
    width: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.adv-search_input-group--row .selectFormLimiter {
  display: inline-block;
}
.adv-search_input-group [class*="button-row"] .button-item {
  margin-right: 3px;
}
.adv-search_input-group--add-row {
  padding: 4px 10px;
  text-align: center;
  border: 1px dotted #4F5A63;
  border-radius: 4px;
  width: 486px;
}
@media (max-width: 599px) {
  .adv-search_input-group--add-row {
    width: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.adv-search_input-group .form_element {
  margin-top: 0.5em;
  margin-right: 0.5em;
  display: flex;
  align-items: center;
}
.adv-search_input-group .dateLimiter__list-item {
  display: inline-block;
  margin-right: 1em;
}
@media (max-width: 599px) {
  .adv-search_input-group .dateLimiter__list-item {
    margin-right: 0.5em;
    display: block;
    position: relative;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.adv-search_input-group .dateSelect-row {
  display: block;
  align-items: center;
  margin: 0 0 1em 0;
}
.adv-search_input-group .dateSelect-row .selectFormLimiter {
  display: inline-block;
}
.adv-search_input-group .advanceSearchIn {
  margin: 3px;
}
.adv-search_input-group .dateselect-and {
  display: block;
  margin: 0 0 1em 0;
}
@media (max-width: 599px) {
  .adv-search_input-group .custom-select-box {
    display: block;
    width: max-content;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.adv-search_input-line {
  padding: 8px 0 0 0;
  font-size: 14px;
}
.adv-search_input {
  height: 25px;
  min-width: 200px;
  margin-left: 3px;
  padding-left: 3px;
}
@media (max-width: 599px) {
  .adv-search_input {
    margin-left: 0;
    margin-bottom: 7px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.adv-search_input ~ .button {
  margin: 0 0 0 5px;
}
.adv-search_input--small {
  min-width: 100px;
  height: 25px;
  vertical-align: top;
  margin: 0 5px 0 0;
}
.adv-search_input--select {
  border: 1px solid #4F5A63;
  border-radius: 4px;
  height: 25px;
  padding: 2px 4px;
  margin: 0 5px 0 0;
  min-width: 100px;
}
.adv-search_input--select .customSelectInner {
  white-space: nowrap;
  width: auto;
  font-size: 12px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .adv-search_input--select {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .adv-search_input--select .customSelectInner {
    width: 90px !important;
  }
}
.adv-search_input--select::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  margin-right: 3px;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .adv-search_input--select {
    margin: 0 7px 7px 0;
    display: block;
    max-width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.adv-search_input--label {
  width: 100px;
  display: inline-block;
  margin-right: 8px;
}
.adv-search_limiter-wrapper {
  border-top: 1px solid #4F5A63;
  padding: 2em 0 0 0;
  margin: 2em 0 0 0;
}
.searchPage .contentSection_header {
  margin-top: 47px;
}
.advLimiter .ui-dropdownchecklist-selector {
  width: unset !important;
}
.advLimiter .ui-dropdownchecklist-selector .ui-dropdownchecklist-text {
  width: unset !important;
  min-width: 196px;
  padding-right: 20px;
}
[id*="limit-limitByEdition"] {
  position: relative;
}
[id*="limit-limitByEdition"].disabled .disable-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: block;
}
[id*="limit-limitByEdition"].disabled .ui-dropdownchecklist-selector {
  background-color: #d6d6d6;
}
.token-list {
  list-style: none;
  padding: 0;
}
.token-list .token {
  overflow: hidden;
  margin: 0.5em 0.5em 0.5em 0;
  padding: 0.5em;
  background-color: #f2f2f2;
  border-width: 1px;
  border-style: solid;
  text-align: left;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
  width: 400px;
}
.token-list .token__label {
  margin: 0;
  font-size: 1em;
  display: inline-block;
  font-weight: normal;
  width: 94%;
}
.token-list .token__remove {
  vertical-align: top;
}
.workflow .curriculum__layout {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 400px auto;
}
.workflow .curriculum__layout--sidebar {
  border-right: 1px solid #d6d6d6;
}
.workflow .curriculum__layout--alignment-result {
  padding: 2em;
}
@media (max-width: 1024px) {
  .workflow .curriculum__layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .workflow .curriculum__layout--sidebar {
    padding: 0 2em;
  }
}
.workflow .curriculum__layout .alignment-message,
.workflow .curriculum__layout .sidebar-alignment-selection {
  margin: 0 1em;
}
.workflow .standards-result-header__label {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 5px;
}
.workflow .curriculum-list .list-item {
  margin: 2em 0;
}
.workflow .curriculum-list .list-item__bg {
  background-color: #006298;
  padding: 5px 11px;
  border-radius: 50%;
  margin-right: 1em;
  color: #fff;
}
.workflow .tab-view__box {
  display: flex;
  text-align: center;
}
@media (max-width: 1024px) {
  .workflow .tab-view__box {
    display: inline-block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .tab-view__box .tab {
  display: inline-flex;
  padding: 1em;
}
.workflow .tab-view__box .tab:first-of-type {
  border-right: 1px solid #d6d6d6;
}
@media (max-width: 1024px) {
  .workflow .tab-view__box .tab:first-of-type {
    border: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .tab-view__box .active .button__btn {
  font-weight: bold;
}
.workflow .tab-view__box .active .button__btn:hover {
  cursor: default;
  color: #006298;
}
.workflow .authority__item .aligned-text {
  text-transform: capitalize;
}
.workflow .authority__list {
  border: 1px solid #d6d6d6;
  padding: 1.4em;
  overflow: auto;
  max-height: 80vh;
}
@media (max-width: 1024px) {
  .workflow .authority__list {
    max-height: 20vh;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .curriculum-input-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 1em;
}
.workflow .curriculum-input-group > * {
  display: inline-block;
}
.workflow .curriculum-input-group__input {
  margin: 0 1em;
  height: 25px;
  width: 100%;
  background: url(../images/search.svg) 98% 50% no-repeat #f2f2f2;
  background-size: 20px;
}
.workflow .globe {
  background-color: #006298;
  color: #fff;
}
.workflow .globe [class*="fa-"] {
  font-size: 24px;
  padding: 10px;
}
.workflow .fancytree-container {
  border: 0;
}
.workflow .fancytree-container .aligned-text {
  color: #000;
  cursor: default;
  text-align: left;
  font-size: 1.2em;
  padding-left: 0;
  text-transform: unset;
}
.workflow .fancytree-container .aligned-text > .label {
  padding-right: 5px;
}
.workflow .fancytree-container .aligned-documents {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 30px;
  padding: 0.5em 0;
}
.workflow .fancytree-container .see-resources {
  text-align: right;
  cursor: default;
}
.workflow .fancytree-container .see-resources .link-label {
  cursor: pointer;
}
.workflow .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active,
.workflow .fancytree-container.fancytree-treefocus span.fancytree-node:hover {
  border-color: transparent;
  background-color: transparent;
}
.workflow .fancytree-container span.fancytree-node {
  display: flex;
  align-items: baseline;
}
.workflow .fancytree-container span.fancytree-node .fancytree-icon {
  cursor: default;
}
.workflow .fancytree-container span.fancytree-node.fancytree-active {
  background-color: transparent;
  border-color: transparent;
}
.workflow .fancytree-container .fancytree-expander {
  padding-top: 0.8em;
  color: #d54405;
  font-size: 1.5em;
}
.workflow .fancytree-container .fancytree-title {
  white-space: normal;
  width: 100%;
  max-width: 93%;
  border: 0;
  padding: 0;
}
.workflow .fancytree-container .fancytree-title .aligned-documents,
.workflow .fancytree-container .fancytree-title .standard {
  cursor: default;
}
.workflow .fancytree-container .fancytree-title .standard {
  color: #000;
  font-size: 1.2em;
}
.workflow .fancytree-container .fancytree-title .standard > .label {
  padding-right: 5px;
}
.workflow .fancytree-container .fancytree-title .aligned-documents-link .link-label {
  font-size: 12px;
}
.workflow .fancytree-container .fancytree-title .link-label {
  cursor: pointer;
}
.workflow .fancytree-container [role="group"] .fancytree-title .aligned-documents-link {
  color: #006298;
  font-size: 14px;
}
.workflow .fancytree-container [role="group"] .fancytree-title .aligned-documents-link > .label {
  padding-right: 5px;
}
.workflow .fancytree-container [role="group"] .fancytree-expander::before {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  content: "\f0da";
  font-weight: 900;
}
.workflow .fancytree-container [role="group"] .fancytree-expanded .fancytree-expander::before {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  content: "\f0d7";
  font-weight: 900;
}
.workflow .fancytree-container [role="group"] .no-children .fancytree-expander::before {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  content: "\f0da";
  color: transparent;
}
.workflow .fancytree-container [role="group"] .no-children .aligned-documents {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 30px;
}
.workflow .fancytree-container [role="group"] .no-children .aligned-documents .aligned-text {
  background-color: #f2f2f2;
  padding: 0.5em;
  font-size: 12px;
}
.workflow .fancytree-container [role="group"] .no-children .see-resources {
  text-align: right;
  cursor: default;
}
.workflow .fancytree-container [role="group"] .no-children .see-resources .link-label {
  cursor: pointer;
}
.workflow .fancytree-container [role="treeitem"] .fancytree-expander::before {
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
}
.atp-display {
  display: grid;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 599px) {
  .atp-display {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.atp-display .page-header {
  grid-column: 1 / 3;
  margin-bottom: 0.5em;
}
.atp-display .sidebar {
  padding: 2em;
  margin-top: 53px;
}
@media (max-width: 599px) {
  .atp-display .sidebar {
    margin-top: 0;
    padding: 0 1em 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.atp-display tr {
  display: grid;
  grid-template-columns: 1fr 4fr;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .atp-display tr {
    grid-template-columns: 2fr 4fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.atp-display__publogo {
  padding: 1em;
}
.atp-display__table td:nth-child(1) {
  background-color: #f2f2f2;
  text-align: right;
}
.atp-display__table td {
  padding: 5px 10px;
}
.atp-display .publicationIssues-issues {
  padding: 5px 0;
}
.atp-display .atp-header {
  margin-bottom: 1em;
}
.atp-display .sidebar {
  padding-left: 0;
}
.coverage-head {
  font-weight: bold;
}
.issueYears div {
  overflow: auto;
  max-height: 200px;
  max-width: 300px;
}
.atp-grid-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  column-gap: 3%;
  background-color: #f2f2f2;
  padding: 1.5em;
}
@media (max-width: 768px) {
  .atp-grid-container {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.atp-grid__header {
  margin-bottom: 0;
}
.atp-grid__sidebar {
  padding: 0;
  margin-top: 21%;
  width: 260px;
}
@media (max-width: 768px) {
  .atp-grid__sidebar {
    margin-top: 0;
    width: 300px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .atp-grid__sidebar .atp-sidebar {
    margin-top: 1em;
  }
}
.atp-grid__content-section {
  margin-top: 50px;
}
.atp-grid__doc-info {
  padding: 1.5em;
}
.atp-grid__doc-info .toctree__header,
.atp-grid__doc-info .toctree__sub-list-title {
  font-weight: 100;
}
.inactive-article {
  color: #4F5A63;
}
.atp-grid__doc-info .INACTIVE .inactive-article::after,
.icon-legend__key::after {
  content: "\f071";
  font-weight: 600;
  color: #d54405;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  margin: 0 0.2em;
}
.toctree__sub-list .inactive-article.FM-BM::after,
.toctree__list-item .inactive-article.FM-BM::after {
  content: '';
}
.icon-legend__section,
.icon-legend__description {
  margin-top: 1em;
}
.icon-legend__description {
  font-size: small;
}
.browse-threelevel-topics {
  display: grid;
  grid-template-columns: 1fr 3.4fr;
  grid-column-gap: 20px;
  min-height: 100vh;
}
.category-list-sidebar {
  border: 1px solid #4F5A63;
  margin: 0;
}
.category-list-sidebar .block-header {
  padding: 1em 0.5em 1em 1em;
}
.category-list-sidebar .input__dropdown {
  width: 275px;
  margin: 0.5em 1em 2em 1em;
}
@media (max-width: 599px) {
  .category-list-sidebar .input__dropdown {
    width: 90%;
    font-size: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .category-list-sidebar .input__dropdown {
    font-size: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .category-list-sidebar {
    grid-column: span 2;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.category-list-sidebar__header-container {
  padding: 2em 2em 1em 2em;
  background-color: #f2f2f2;
}
.category-list-sidebar--device {
  position: absolute;
  z-index: 1;
  background-color: #f2f2f2;
}
.category-list-sidebar__close {
  float: right;
}
.category-list-sidebar__close [class*="fa-"] {
  margin: 0;
}
.workflow .browse-categories .subcategories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 2em;
}
.workflow .browse-categories .subcategories a:hover {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .workflow .browse-categories .subcategories {
    grid-template-columns: 1fr 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .workflow .browse-categories .subcategories {
    grid-template-columns: 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .browse-categories .categories-container {
  margin-top: 2em;
}
.workflow .category-details--unit {
  margin-bottom: 2em;
}
.workflow .unit-topic-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
@media (max-width: 1024px) {
  .workflow .unit-topic-list {
    grid-template-columns: 1fr 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .unit-topic-list__item {
  position: relative;
}
.workflow .unit-topic-list__item [class*="fa-"] {
  position: absolute;
  color: transparent;
  right: 10px;
  top: 10px;
  transition: all 0.3s ease;
}
.workflow .unit-topic-list__item .SEARCH {
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
}
.workflow .unit-topic-list__item .SEARCH:hover {
  text-decoration: none;
}
.workflow .unit-topic-list__item:hover [class*="fa-"] {
  color: #4F5A63;
  transition: all 0.3s ease;
}
.workflow .unit-name ~ div {
  margin-bottom: 1em;
}
.workflow .topic-list .topic {
  margin: 5px 5px 0 0;
}
.workflow .categories-header {
  padding: 2em 1em;
  margin-bottom: 2em;
  background-size: cover;
  background-position: center;
}
.workflow .category-list .list {
  display: none;
}
.workflow .category-list .list.selected {
  display: block;
}
.workflow .category-list .list_item {
  padding: 1em 2em;
  font-size: smaller;
  border-bottom: 1px solid #4F5A63;
  background-color: #f2f2f2;
  cursor: pointer;
}
.workflow .category-list .list_item.selected {
  background-color: #003865;
  color: #fff;
  font-weight: bolder;
}
.workflow .category-details--subcategory {
  display: none;
}
.workflow .category-details--subcategory.selected {
  display: block;
}
.workflow .category-details--unit {
  display: none;
}
.workflow .category-details--unit.selected {
  display: block;
}
.workflow .category-list-sidebar--device {
  width: 53%;
}
.card-grid__layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  padding-top: 2em;
}
.card-grid__item {
  min-height: 150px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .card-grid {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .card-grid__layout {
    display: block;
  }
}
.feature-block__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2em;
}
@media (max-width: 1024px) {
  .feature-block__layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.feature-block__layout .feature-block {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.feature-block__layout .feature-block .featuredWork,
.feature-block__layout .feature-block .featuredAuthor {
  flex: 1;
}
.SBRC .card-grid__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  flex-direction: column;
}
@media (max-width: 599px) {
  .SBRC .card-grid__layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.SBRC .card-grid__item {
  width: auto;
}
.MSIC .card-grid__layout {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .MSIC .card-grid__layout {
    grid-template-columns: repeat(3, 1fr);
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.ICFE .card-grid__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 0;
}
.ICFE .bucket-wrapper__image-wrapper .card-grid__layout {
  grid-template-columns: 1fr 1fr 1fr;
}
.Zazu .card-grid__layout {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.Zazu .card-grid__layout .image-links__label {
  padding: 0;
}
.card-flex__layout-row,
.card-flex__layout-col {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 2em;
}
.card-flex__layout-col {
  flex-flow: column wrap;
}
.card-flex__item {
  min-height: 150px;
  margin: 0.5em;
  flex: 1 29%;
  display: flex;
}
.full-citation-padding {
  padding-top: 1em;
}
.full-citation .card__header {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  display: none;
}
.full-citation .card__container {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding-left: 0.5em;
}
.full-citation .card__body {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  min-height: auto;
}
.full-citation .rubric-list__item {
  margin-bottom: 10px;
  display: block;
  font-size: smaller;
}
.full-citation .rubric-list__item .rubric-list__rubric-value {
  display: block;
}
.full-citation .rubric-list__rubric-key {
  font-weight: bold;
}
.about-archive-collection .rubric {
  font-size: smaller;
  margin-bottom: 3px;
}
.about-archive-collection a {
  margin-left: 0.5em;
}
.named-citation {
  font-size: small;
  display: inline-block;
}
/* stylelint-disable-line at-rule-no-unknown */
.workflow .selectAll {
  margin: 0 0.9em;
}
.workflow .content-sets-get-started .message {
  margin-bottom: 10px;
}
.workflow .working-sets {
  margin: 1em;
}
.workflow .working-sets-page-content {
  margin: 1em 0;
}
.workflow .working-sets-page-content .selectAll label {
  font-weight: 200;
  font-size: 12px;
}
.workflow .working-sets .working-set-create {
  margin: 0.5em 0;
}
.workflow .working-sets .working-set__name {
  font-weight: 300;
  font-size: 18px;
}
.workflow .working-sets .working-set__name a {
  color: #000;
}
.workflow .working-sets .working-set__sharedBy {
  font-size: 14px;
  font-weight: 300;
}
.workflow .working-sets .working-set__share-type .svg-inline--fa {
  width: 26px;
  height: 26px;
}
.workflow .working-sets .working-set__modified-date {
  font-size: 12px;
}
.workflow .working-sets.grid-view {
  display: flex;
  flex-flow: row wrap;
}
.workflow .working-sets.grid-view .view {
  margin-top: 1em;
}
.workflow .working-sets.grid-view .view .working-set {
  display: grid;
  grid-template-columns: 2fr auto;
  grid-template-rows: 35px 35px auto 35px 45px;
  width: 280px;
  height: 202px;
  margin: 0.5em;
  border: solid #f2f2f2 1px;
  border-radius: 3px;
  background-color: #fcfcfc;
  box-shadow: 0.5px 0.5px 3px #f2f2f2;
}
.workflow .working-sets.grid-view .view .working-set__name {
  grid-column-end: span 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 16px 8px 16px;
  height: 24px;
  width: 240px;
}
.workflow .working-sets.grid-view .view .working-set__description {
  grid-column-end: span 2;
  margin: 0 16px 8px;
  height: 35px;
  min-width: 0;
  font-size: 12px;
}
.workflow .working-sets.grid-view .view .working-set__description .value {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.workflow .working-sets.grid-view .view .working-set__sharedBy {
  grid-column-end: span 2;
  margin: 8px 16px;
}
.workflow .working-sets.grid-view .view .working-set__marker input {
  margin: 8px 0 0 8px;
}
.workflow .working-sets.grid-view .view .working-set__tools {
  width: 26px;
  height: 26px;
  margin: 8px 8px 0 8px;
  background-color: #f2f2f2;
  text-align: center;
}
.workflow .working-sets.grid-view .view .working-set__tools .tool-area {
  color: #000;
  font-size: 16px;
  padding: 0;
}
.workflow .working-sets.grid-view .view .working-set__tools .tool-options {
  background-color: #fff;
  width: auto;
  padding: 10px 5px;
  margin-top: -20px;
  position: absolute;
  text-align: left;
  box-shadow: 0.5px 0.5px 3px #d6d6d6;
}
.workflow .working-sets.grid-view .view .working-set__modified-date {
  padding: 10px 0 8px;
  margin-left: 16px;
  border-top: solid #d6d6d6 1px;
  grid-row-start: 5;
}
.workflow .working-sets.grid-view .view .working-set__share-type {
  margin: 0 16px 5px 0;
  padding-top: 8px;
  border-top: solid #d6d6d6 1px;
  grid-row-start: 5;
}
.workflow .working-sets.list-view .view {
  border-top: solid #d6d6d6 1px;
}
.workflow .working-sets.list-view:last-of-type {
  border-bottom: solid #d6d6d6 1px;
}
.workflow .working-sets.list-view .list-view-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: none;
  margin: 10px 0;
}
@media (max-width: 1024px) {
  .workflow .working-sets.list-view .list-view-header {
    grid-template-columns: 3fr 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .working-sets.list-view .list-view-header__name {
  margin-left: 4.8em;
}
.workflow .working-sets.list-view .list-view-header__modified-date {
  margin-left: 5%;
}
.workflow .working-sets.list-view .ws-sort-button {
  color: #4F5A63;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  border: none;
  padding: 0;
  background-color: #fff;
}
.workflow .working-sets.list-view .ws-sort-button.active::after {
  content: "\f0d7";
  font-weight: 700;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  margin-left: 5px;
}
.workflow .working-sets.list-view .ws-sort-button.active.asc::after {
  content: "\f0d8";
  font-weight: 700;
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  margin-left: 5px;
}
.workflow .working-sets.list-view .working-set {
  display: grid;
  grid-template-columns: 27px 50px 2fr 2fr;
  padding: 10px 0;
}
@media (max-width: 1024px) {
  .workflow .working-sets.list-view .working-set {
    grid-template-columns: 27px 50px 3fr 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .working-sets.list-view .working-set__name {
  grid-column-start: 3;
  grid-column-end: 3;
  margin-top: 3px;
  font-size: 14px;
  width: 90%;
}
.workflow .working-sets.list-view .working-set__share-type {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
}
.workflow .working-sets.list-view .working-set__modified-date {
  margin-top: 5px;
  color: #4F5A63;
}
.workflow .working-set__share-type .fa-folder {
  color: #6ecef6;
}
.workflow .working-set__share-type .fa-clone {
  color: #d54405;
}
.workflow .working-set__share-type .fa-user-friends {
  color: #ffe724;
}
.workflow .button__btn .top-tools__tool-icon {
  padding-bottom: 1px;
}
.workflow .view-action[data-view='list'] .toolview-grid {
  display: none;
}
.workflow .view-action[data-view='list'] .toolview-list {
  display: block;
}
.workflow .view-action[data-view='grid'] .toolview-list {
  display: none;
}
.workflow .view-action[data-view='grid'] .toolview-grid {
  display: block;
}
.clippings-page .clippings {
  margin: 1em 0;
}
.clippings-page .clippings--data {
  margin: 1em 0;
}
.clippings-page .citation-rubric {
  margin: 12px;
}
.clippings-page .document-tgnumber {
  display: block;
  padding-left: 2em;
}
.standards-content select,
.standards-content__exp-coll-container,
.standards-content__curriculum-link .standards-content__desc,
.standards-content__grade-filter-container {
  margin-bottom: 5px;
}
@media (max-width: 599px) {
  .standards-content select,
  .standards-content__exp-coll-container,
  .standards-content__curriculum-link .standards-content__desc,
  .standards-content__grade-filter-container {
    max-width: 200px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.standards-content__terms-link {
  margin-right: 10px;
}
.standards-content__desc-number,
.standards-content__grades,
.standards-content__desc-full {
  display: inline;
}
.standards-content__desc-number,
.standards-content__detail-issuingBody {
  font-weight: bold;
}
.standards-content__grade-filter-text {
  float: left;
  margin-right: 10px;
}
.standards-content .fancytree-title {
  white-space: normal;
  width: 98%;
}
@media (max-width: 599px) {
  .standards-content .fancytree-title {
    width: 70%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .standards-content .fancytree-title {
    width: 89%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.standards-content .fancytree-icon {
  width: 0;
}
.standards-content .fancytree-container {
  line-height: 25px;
}
.standards-content .fancytree-active,
.standards-content .fancytree-node {
  background-color: unset !important;
  border: none !important;
}
.content-section__heading {
  margin: 5px;
}
.lmsView .document-display {
  display: block;
}
.document-display {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 66% 33%;
  grid-gap: 1em;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1024px) {
  .document-display {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-display .document-summary {
  grid-row: 1;
  grid-column: 1 / 3;
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1em;
  grid-template-areas: "author" "source" "resource";
  width: 100%;
  padding-bottom: 1em;
}
.document-display .document-summary.hide {
  display: none;
}
@media (max-width: 599px) {
  .document-display .document-summary .media-object {
    grid-column: 1 / 4;
    margin-bottom: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .document-display .document {
    grid-column: 1 / 3;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-display .doc-title {
  grid-column: 1 / 4;
}
.document-display .more-results {
  grid-column: 1;
}
@media (max-width: 1024px) {
  .document-display .more-results {
    grid-column: 1 / 3;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.document-display .document-explorer {
  grid-column: 2;
  grid-row: 2;
}
.document-display [id="relatedDocumentIndex-main"] .term {
  margin-bottom: 1em;
}
.document-display [id="relatedDocumentIndex-main"] .term span {
  font-weight: 600;
  display: block;
}
.document-display [id="relatedDocumentIndex-main"] .term .ref {
  display: inline-block;
}
.document-display [id="relatedDocumentIndex-main"] .term .ref li {
  display: inline-block;
  border-right: 1px solid #4F5A63;
  padding-right: 5px;
  margin: 0 0 5px 5px;
}
.document-display [id="relatedDocumentIndex-main"] .term .ref li:last-of-type {
  border: 0;
}
.document-tools .right .cloud-ico,
.document-tools .right [class*="fa-"] {
  width: 30px;
}
.studentView .document {
  grid-column-end: span 2;
}
.studentView .annotation-toggle {
  padding-left: 25%;
}
.studentView .clip-icon,
.studentView .annotation-icon {
  background: #00a398;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  font-size: 19px;
  left: -4.5%;
}
.studentView .clip-icon::before,
.studentView .annotation-icon::before {
  content: unset;
  border-color: unset;
}
.studentView .annotation-view {
  position: absolute;
  left: -40%;
  width: 35%;
}
@media (max-width: 768px) {
  .studentView .annotation-view {
    left: -45%;
    width: 40%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.studentView .annotation-view__header {
  background-color: #4F5A63;
  position: relative;
}
.studentView .annotation-view__header::before {
  content: "";
  border-style: solid;
  border-width: 13px;
  position: absolute;
  right: -26px;
  border-color: transparent transparent transparent #4F5A63;
}
.studentView .annotation-view__close {
  border-radius: 17px;
  margin: 0.4em;
  padding: 0 0.8px 0.9px 0.9px;
  width: 17px;
  height: 17px;
  cursor: pointer;
}
.studentView .annotation-view__note {
  background-color: #f2f2f2;
  padding: 1em;
  word-break: break-word;
}
.clip-icon,
.annotation-icon {
  color: #fff;
  background: #d54405;
  font-size: 15px;
  position: absolute;
  left: -6%;
  padding: 1px 3px;
  width: 20px;
  height: 20px;
  border-radius: 3px 0 0 3px;
}
.clip-icon::before,
.annotation-icon::before {
  content: "";
  border-style: solid;
  border-width: 10px;
  position: absolute;
  border-color: transparent transparent transparent #d54405;
  margin: -1px 0 0 17px;
}
.clip-icon::before {
  margin: -1px 0 0 16px;
}
.document-text ul li .clip-icon,
.document-text ul li .annotation-icon {
  left: -15%;
  height: 20px;
}
.document-text ul li .clip-icon::before {
  margin: -1px 0 0 16px;
}
.document-text ul li .annotation-icon::before {
  margin: -1px 0 0 17px;
}
.document-text ul li .icon-educator-view {
  left: -8%;
}
.SideNotePara ul li .clip-icon,
.SideNotePara ul li .annotation-icon {
  left: -18%;
  height: 20px;
}
.SideNotePara ul li .clip-icon::before,
.SideNotePara ul li .annotation-icon::before {
  margin: -1px 0 0 17px;
}
.SideNotePara ul li .clip-icon::before {
  margin: -1px 0 0 16px;
}
.SideNotePara ul li .icon-educator-view {
  left: -11%;
}
.studentView ul li .annotation-icon {
  left: -120px;
}
.studentView ul li .annotation-view {
  top: 0;
  left: -50%;
}
.studentView .document-text ul li .annotation-icon {
  left: -10%;
}
.studentView .document-text ul li .annotation-view {
  left: -47%;
}
@media (max-width: 768px) {
  .studentView .document-text ul li .annotation-view {
    left: -75%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.studentView .annotation-toggle .document-text ul li .annotation-icon {
  left: -16%;
}
.icon-educator-view {
  border: solid #d54405 2px;
  background-color: #fff;
  position: absolute;
  top: -6px;
  left: 0;
  max-width: 400px;
  min-width: 100px;
  padding: 1em;
  word-break: break-word;
  box-shadow: 1px 1px 5px -1px #4F5A63;
  border-radius: 3px;
  z-index: 2;
}
.icon-educator-view::before,
.icon-educator-view::after {
  content: "";
  border-style: solid;
  border-width: 10px;
  width: 0;
  height: 0;
  position: absolute;
  top: 4px;
  left: -20px;
}
.icon-educator-view::before {
  border-color: transparent #d54405 transparent transparent;
}
.icon-educator-view::after {
  margin-left: 4px;
  border-color: transparent #fff transparent transparent;
}
.content__dvi {
  display: flex;
  flex-flow: row nowrap;
}
@media (max-width: 599px) {
  .content__dvi {
    display: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.content__dvi-container {
  display: grid;
  grid-template-areas: "imageViewer ocr";
  grid-template-columns: minmax(40%, 50%) auto;
  overflow: auto;
}
.content__dvi-container.hide {
  display: none;
}
.content__dvi--ocr-only .content__dvi-container {
  display: initial;
  width: 100%;
}
.content__dvi--ocr-only .content__dvi-container.hide {
  display: none;
}
.content__dvi--ocr-only .content__dvi-container .content__dvi-viewer {
  display: none;
}
.content__dvi--image-viewer-only .content__dvi-container {
  display: initial;
  width: 100%;
}
.content__dvi--image-viewer-only .content__dvi-container.hide {
  display: none;
}
.content__dvi .content__dvi-viewer {
  grid-area: imageViewer;
  padding: 1em;
}
.content__dvi .content__dvi-explorer {
  grid-area: docExplorer;
}
.content__dvi .exploreToggle.hide ~ .content__dvi-explorer {
  width: 300px;
}
.content__dvi .content__dvi-ocr {
  grid-area: ocr;
  padding: 1em 2em;
}
.ebook-wrapper {
  overflow: hidden;
}
@media (max-width: 768px) {
  .ebook-wrapper {
    width: 95%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.ebook-wrapper .category {
  margin: 40px 20px 20px 0;
  border-bottom: solid #d6d6d6 1px;
}
.ebook-wrapper .category:first-of-type {
  margin-top: 0;
}
.ebook-wrapper .category:last-of-type {
  border-bottom: none;
}
.ebook-wrapper .category__header {
  font-size: 1.3em;
  font-weight: 400;
}
.ebook-wrapper .book {
  padding: 10px 25px;
  min-width: 150px;
}
.ebook-wrapper .book .thumbnail {
  display: grid;
  grid-template-columns: min-content;
  margin-bottom: 40px;
}
.ebook-wrapper .book .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.ebook-wrapper .book .date {
  text-align: center;
}
.ebook-wrapper .book .image-wrapper {
  position: relative;
}
.ebook-wrapper .book .image-wrapper__image {
  border: 1px solid #d6d6d6;
  height: 250px;
  text-indent: -9999999em;
  width: 175px;
}
@media (max-width: 768px) {
  .ebook-wrapper .book .image-wrapper__image {
    height: 250px;
    min-width: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.ebook-wrapper .book .noCoverTitle {
  position: absolute;
  top: 8%;
  text-align: center;
  padding: 0 0.5em;
}
@media (max-width: 768px) {
  .ebook-wrapper .book .noCoverTitle {
    font-size: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .ebook-wrapper .book .noCoverTitle {
    font-size: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.ebook-wrapper .book .date {
  color: #000;
  display: block;
}
.ebook-wrapper .book .date:hover {
  text-decoration: none;
}
.ebook-wrapper .book.view_all {
  grid-template-columns: unset;
  border: solid #4F5A63 2px;
  background-color: #f2f2f2;
  color: #4F5A63;
  margin-top: 10px;
  text-align: center;
  width: 135px;
  height: 238px;
  padding: 5px;
  margin-left: 20px;
}
.ebook-wrapper .view_all__container {
  margin: 50% 5px;
  font-size: 1.2em;
}
.single-col {
  grid-column: span 2;
}
.links-tools {
  position: relative;
  width: 100%;
  margin-bottom: 2em;
}
.sidebar .links-tools {
  margin-bottom: 0;
}
.links-tools .toggleTool {
  width: fit-content;
}
.sidebar .links-tools .toggleTool {
  margin: 0 0 0 auto;
}
.sidebar .links-tools .toggleTool .toggle-tools {
  font-size: 1.4em;
  float: right;
  background: none;
  border: none;
}
.ebookSubjects .subject-nav-item {
  margin: 0.5em 0;
}
.admin-wrapper {
  border-top: solid #d6d6d6 1px;
  padding-top: 0.5em;
  margin-top: 1em;
}
@media (max-width: 768px) {
  .admin-wrapper {
    border-top: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .admin-wrapper {
    border-top: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.admin-wrapper .customization-wrapper-header {
  margin: 10px 0;
}
.admin-wrapper--manage-ebooks {
  margin-bottom: 1.5em;
}
.admin-wrapper .customizationLink {
  display: block;
}
.admin-wrapper .admin-login__link {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
.admin-wrapper .admin-login-fields__label {
  display: block;
  font-size: small;
  font-weight: bold;
  margin-top: 5px;
}
.admin-wrapper .admin-login-fields__input {
  width: 100%;
}
.two-column-container {
  padding: 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .two-column-container {
    overflow: hidden;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .two-column-container {
    overflow: hidden;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.two-column-container .sidebar {
  min-width: 250px;
  margin: 0 0 0.1em 0;
  padding: 2em;
  background-color: #f2f2f2;
  border-right: solid #d6d6d6 1px;
}
@media (max-width: 599px) {
  .two-column-container .sidebar {
    grid-column: span 2;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.two-column-container .main-content-wrapper {
  padding: 2em;
}
.manage-ebooks_layout {
  margin-top: 3.4em;
}
.manage-ebooks_layout .manage-ebooks-2col-grid {
  display: grid;
  grid-template-columns: 9fr auto;
}
.manage-ebooks_layout .manage-collection {
  margin-bottom: 1.5em;
}
.manage-ebooks_layout .info {
  background-color: #d6d6d6;
  padding: 1em;
  margin-bottom: 1.5em;
}
.manage-ebooks_layout .drag-message__icon,
.manage-ebooks_layout .edit-message__icon {
  font-size: 1.3em;
  vertical-align: middle;
}
.manage-ebooks_layout .drag-message__label,
.manage-ebooks_layout .edit-message__label {
  font-size: 0.8em;
}
.manage-ebooks_layout .header-section__new-collection-container {
  margin-top: 10px;
}
.manage-ebooks_layout .header-section .new-collection__icon {
  font-size: 1.2em;
  margin-right: 0.5em;
}
.manage-ebooks_layout .initial-message {
  margin: 12em 0;
  position: relative;
}
.manage-ebooks_layout .initial-message__arrow {
  position: absolute;
  left: -38px;
  top: 3px;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.manage-ebooks_layout .initial-message__text {
  background-color: #f2f2f2;
  border-right: solid 9px #d6d6d6;
  padding: 20px;
}
.manage-ebooks_layout .collection-info {
  border: solid #d6d6d6 1px;
  margin-top: 1em;
}
.manage-ebooks_layout .collection-info .collection-header {
  padding: 1em;
}
.manage-ebooks_layout .collection-info .collection-header__message {
  font-size: 0.8em;
}
.manage-ebooks_layout .collection-info .collection-controls {
  padding: 1em;
}
@media (max-width: 1024px) {
  .manage-ebooks_layout .collection-info .collection-controls {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.manage-ebooks_layout .collection-info .collection-controls__button {
  margin: 0.5em;
}
.manage-ebooks_layout .collection-info .collection-controls__button-icon {
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 0.5em;
}
.manage-ebooks_layout .collection-info .custom-subject-fields {
  display: grid;
  grid-template-columns: 19% 60% 21%;
  margin: 1em;
}
@media (max-width: 1024px) {
  .manage-ebooks_layout .collection-info .custom-subject-fields {
    grid-template-columns: 1fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.manage-ebooks_layout .collection-info .custom-subject-fields__input-message {
  font-size: 0.7em;
  margin: 0.5em 1em;
}
.manage-ebooks_layout .collection-info .custom-subject-fields__textarea {
  height: 100px;
  vertical-align: middle;
}
.manage-ebooks_layout .collection-info .collection-message {
  padding: 1em;
  background-color: #d6d6d6;
}
.manage-ebooks_layout .collection-info .disable-control {
  display: grid;
  grid-template-columns: min-content min-content;
  padding: 0 0 1em 1em;
}
.manage-ebooks_layout .collection-info .disable-control__switch {
  padding: 6px 0 0 6px;
}
.manage-ebooks_layout .collection-info .disable-control .toggle-switch {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 12px;
}
.manage-ebooks_layout .collection-info .disable-control .toggle-switch__checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
.manage-ebooks_layout .collection-info .disable-control .toggle-switch__checkbox:checked + .toggle-switch__slider {
  background-color: #006298;
}
.manage-ebooks_layout .collection-info .disable-control .toggle-switch__checkbox:checked + .toggle-switch__slider::before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
.manage-ebooks_layout .collection-info .disable-control .toggle-switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d6d6d6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 16px;
}
.manage-ebooks_layout .collection-info .disable-control .toggle-switch__slider::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 1px;
  bottom: 1px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
.manage-ebooks_layout .collection-title {
  margin-bottom: 1.3em;
}
.manage-ebooks_layout .manage-ebooks-books-grid {
  display: flex;
  flex-flow: row wrap;
}
.manage-ebooks_layout .manage-ebooks-books-grid .book {
  position: relative;
  margin: 1em;
}
.manage-ebooks_layout .manage-ebooks-books-grid .book .title {
  color: #006298;
}
.manage-ebooks_layout .manage-ebooks-books-grid .checkmark {
  display: block;
  cursor: pointer;
  position: absolute;
  height: 21px;
  width: 21px;
  right: 1px;
  top: 1px;
  font-size: 21px;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}
.manageEbooks .ebookSubjects .subject-nav-item {
  padding: 0.6em;
  margin: 0.4em 0;
  background-color: #fff;
}
.manageEbooks .ebookSubjects .subject-nav-item.customCollection {
  border-right: solid #006298 5px;
}
.manageEbooks .ebookSubjects .subject-nav-item.customCollection.disabled {
  border-right: solid #4F5A63 5px;
}
.manageEbooks .ebookSubjects .subject-nav-item.disabled {
  background-color: #d6d6d6;
}
.manageEbooks .ebookSubjects .subject-nav-item.disabled a {
  color: #002133;
}
.manageEbooks .ebookSearchContainer {
  background-color: #fff;
}
.manageEbooks .ebookSearchContainer .results-header {
  background-color: #f2f2f2;
  padding: 1em 2em 0.5em 2em;
  margin-bottom: 10px;
}
.manageEbooks .ebookSearchContainer .pagination-control {
  position: relative;
  margin: 10px 20px;
  padding: 1em;
}
.manageEbooks .ebookSearchContainer .pagination-control .slick-next,
.manageEbooks .ebookSearchContainer .pagination-control .slick-prev {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 25px;
  position: absolute;
  top: -10px;
  color: #002133;
}
.manageEbooks .ebookSearchContainer .pagination-control .slick-next.slick-disabled,
.manageEbooks .ebookSearchContainer .pagination-control .slick-prev.slick-disabled {
  color: #f2f2f2;
}
.manageEbooks .ebookSearchContainer .pagination-control .slick-next::before,
.manageEbooks .ebookSearchContainer .pagination-control .slick-prev::before {
  content: '';
}
.manageEbooks .ebookSearchContainer .pagination-control .slick-prev {
  margin-left: 5px;
}
.manageEbooks .ebookSearchContainer .pagination-control .slick-next {
  margin-right: 10px;
}
.manageEbooks .ebookSearchContainer .results-popup {
  display: flex;
  flex-flow: row wrap;
}
.manageEbooks .ebookSearchContainer .results-popup .book {
  min-width: unset;
}
.manageEbooks .ebookSearchContainer .results-popup .book .title {
  color: #006298;
}
.manageEbooks .ebookSearchContainer .results-popup .book .image-wrapper__image {
  height: 200px;
}
.manageEbooks .ebookSearchContainer .results-popup .checkmark {
  display: none;
}
.manageEbooks .ebookSearchContainer .results-popup .selectedBook .checkmark {
  display: block;
  z-index: 10;
  position: absolute;
  height: 32px;
  width: 32px;
  background: #fff;
  font-size: 25px;
  border-radius: 50%;
}
.manageEbooks .ebookSearchContainer .results-popup .selectedBook .checkmark .fa-check-circle {
  color: #00857c;
  margin-bottom: 0.1em;
}
.manageEbooks .ebook-wrapper .results {
  display: grid;
  grid-template-columns: repeat(4, min-content);
}
.manageEbooks .ebook-wrapper .results .book {
  position: relative;
  cursor: pointer;
}
.manageEbooks .ebook-add-titles__text-input {
  border-radius: 4px 0 0 4px;
  border-right: none;
  width: 65%;
}
.manageEbooks .ebook-add-titles__search {
  border-radius: 0 4px 4px 0;
  border: solid #4F5A63 1px;
  border-left: none;
  padding: 2.5px 9px;
}
.manageEbooks .ebook-add-titles__done {
  margin-left: 10%;
  color: #fff !important;
}
.book-preview {
  width: 100%;
  margin-top: 20px;
}
.book-preview .title {
  font-weight: bold;
  display: block;
}
.alphabets {
  margin: 15px 0;
}
.alphabets__element {
  margin: 5px 5px 0 0;
  color: #d6d6d6;
  list-style: none;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  padding: 1px 4px;
  border: 1px solid #d6d6d6;
}
.company-contact {
  border-top: solid #d6d6d6 1px;
  border-bottom: solid #d6d6d6 1px;
  margin-top: 1em;
}
.citation-section {
  border-top: solid #d6d6d6 1px;
  margin: 1em 0;
  padding-top: 0.5em;
}
.grid-column-two--doc-page {
  display: grid;
  grid-template-columns: 25% auto;
}
@media (max-width: 599px) {
  .grid-column-two--doc-page {
    grid-template-columns: 34% auto;
    grid-column-gap: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.toc-volume-form {
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 1em;
  margin-bottom: 10px;
}
.toc-volume-form__select {
  margin-left: 1em;
}
.iteratorBar-noPds {
  float: right;
}
.se-etoc-content-section .custom-fa-toc-caret-right {
  font-size: 20px;
}
.se-etoc-content-section .subheader,
.se-etoc-content-section .simpleTree {
  padding-left: 2em;
}
.ats-content-section {
  margin-top: 2em;
}
.ats-content-section .item {
  line-height: 2em;
}
.indexBody {
  padding: 1em;
}
.indexBody .index-main-list {
  column-count: 3;
}
@media (max-width: 768px) {
  .indexBody .index-main-list {
    column-count: 2;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.indexBody .term {
  font-size: small;
}
.indexBody .sectionBreak {
  font-weight: bold;
  font-size: larger;
}
.indexBody .index-term {
  font-weight: bold;
}
.indexBody .ref,
.indexBody .cross,
.indexBody .sub-index {
  margin-left: 20px;
}
.indexBody .cross,
.indexBody .sectionBreak,
.indexBody .term {
  margin-bottom: 15px;
}
.indexBody .prev .disabled,
.indexBody .next .disabled {
  color: #d6d6d6;
}
.loiResults,
.lovResults {
  position: relative;
}
.content-wrapper.ebook-atp__layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: min-content auto;
  width: 100%;
}
.content-wrapper.ebook-atp__layout .sidebar {
  padding: 2em;
  margin-top: 53px;
  grid-row: 1;
  grid-column: 2;
}
.content-wrapper.ebook-atp__layout .subheader {
  margin-bottom: 1em;
}
.content-wrapper.ebook-atp__layout .ebook-atp-content-wrapper {
  grid-column: 1 / 3;
}
.content-wrapper.ebook-atp__layout .show-more-block {
  height: 50px;
}
@media (max-width: 599px) {
  .content-wrapper.ebook-atp__layout {
    grid-template-columns: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .content-wrapper.ebook-atp__layout .sidebar {
    grid-row: auto;
    grid-column: auto;
    margin-top: 0;
  }
  .content-wrapper.ebook-atp__layout .book-preview {
    grid-template-columns: 100%;
  }
}
@media (max-height: 500px) {
  .content-wrapper.ebook-atp__layout {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .content-wrapper.ebook-atp__layout .book-preview {
    grid-template-columns: 100%;
  }
}
.ebook-atp-tabs {
  padding: 1em 1em 0.5em 2em;
}
.ebook-atp-tabs .tab_list .tab {
  margin-right: 2em;
}
.book-cover {
  position: relative;
}
.book-cover .view-ebook {
  max-width: 108px;
}
.series-cover-title--level,
.series-cover-title--series {
  position: absolute;
  top: 200px;
  border: solid 2px;
  font-weight: 700;
  text-align: left;
  padding: 3px 10px;
}
.series-cover-title--series {
  background-color: #003865;
  border-color: #fff;
  color: #fff;
}
.series-cover-title--series.manage-series {
  top: 121px;
}
.series-cover-title--series.about-series {
  top: 117px;
}
.series-cover-title--level {
  background-color: #d9f3ff;
  border-color: #4F5A63;
  color: #000;
}
.series-cover-title--level.manage-level {
  top: 121px;
}
.series-cover-title--level.about-level {
  top: 131px;
}
.expand-or-collapse-button {
  border: none;
  background-color: transparent;
}
.glossary-ebook-list li {
  padding: 0.2em;
  margin: 3px 0 3px 3px !important;
}
.directory-snippet-wrapper {
  margin-top: 0.5em;
}
.searchBox__link {
  display: block;
  margin-top: 1em;
}
.dvi-tabs-container {
  margin-top: 4em;
  grid-column: 1 / span 2;
  grid-row: 1;
}
.whats-inside-subheader-caption {
  font-size: 0.8em;
  font-style: italic;
}
.whats-inside__database {
  border-top: solid #f2f2f2 1px;
  padding: 1em 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 1em;
}
.whats-inside__database:first-of-type {
  margin-top: 1em;
}
.whats-inside__database-icon:hover,
.whats-inside__database-title:hover {
  cursor: pointer;
}
.whats-inside__database-search-container {
  margin-top: 1em;
}
.whats-inside__database-search-input {
  margin: 0 0.5em;
}
.whats-inside__database-go-to {
  display: block;
  margin-top: 0.5em;
}
.whats-inside--series-list__database-title,
.whats-inside--series-list__list {
  margin: 1em 0;
}
.whats-inside--series-list__ebooks-list {
  margin-left: 2em;
}
.whats-inside--series-list__ebooks-list-item {
  margin: 0.3em 0;
}
.whats-inside--series-list__list {
  width: fit-content;
  width: -moz-fit-content;
}
.whats-inside--series-list__list .seriesTitle {
  font-size: 16px;
  color: #000;
  padding-left: 5px;
}
.explore-collections__layout .card-grid__layout {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .explore-collections__layout .card-grid__layout {
    grid-template-columns: repeat(2, 1fr);
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .explore-collections__layout .card-grid__layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.exploreCollection-wrapper {
  background-color: #f2f2f2;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 4fr 2fr;
}
.exploreCollection-wrapper--magazines {
  grid-template-columns: 1fr 350px;
}
@media (max-width: 1024px) {
  .exploreCollection-wrapper--magazines {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .exploreCollection-wrapper--magazines.content-wrapper {
    min-height: 800px;
  }
}
.exploreCollection-wrapper--magazines .sidebar {
  margin-top: 3.5em;
}
.exploreCollection-wrapper .imagelist__label {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.exploreCollection-wrapper .removeLink {
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: top, left, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.EducatorResources {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-gap: 2%;
}
.EducatorResources h1 {
  background-color: #f2f2f2;
  padding: 5px;
  margin-bottom: 7px;
  margin-top: 2em;
  font-size: large;
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
}
.EducatorResources h1 .hitHighlite {
  color: #d54405;
  font-weight: bold;
  padding-left: 5px;
}
.EducatorResources h1:first-child {
  margin-top: 0;
}
.EducatorResources h2:first-child {
  font-size: 2.5em;
  font-weight: 200;
  color: #000;
  grid-column: 1 / 3;
}
.EducatorResources h2:first-child__image-bg {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}
.EducatorResources h2:first-child__image-bg--curriculum {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/icfe_curriculum-bg.svg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
@media (max-width: 1024px) {
  .EducatorResources h2:first-child__image-bg--curriculum {
    display: none;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.EducatorResources h2:first-child__image-bg--browse-subjects {
  background: linear-gradient(to right, rgba(0, 56, 101, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/browse-subjects-header.jpg") no-repeat;
  height: 150px;
  background-size: cover;
  padding: 1em;
}
.EducatorResources h2:first-child__image-bg ~ .description {
  color: #fff;
  max-width: 800px;
}
.EducatorResources h2:first-child--icfe {
  font-size: 1.5em;
  color: #006298;
  padding: 0.5em 0;
}
@media (max-width: 599px) {
  .EducatorResources {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .EducatorResources .resource_notes p {
    max-width: 600px;
    margin-bottom: 0;
  }
}
.EducatorResources .resources_notes {
  grid-column: 1 / 3;
  margin-bottom: 2em;
}
.EducatorResources .product_resources {
  word-break: break-word;
}
.EducatorResources .product_resources p:last-child {
  margin-bottom: 2em;
}
.EducatorResources .text_link:hover,
.EducatorResources .search_link:hover {
  color: #006298;
}
.EducatorResources .product_resources {
  page-break-inside: avoid;
}
.footer-wrapper {
  background-color: #f2f2f2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 0 1em 0;
  font-size: 0.7em;
}
.footer-wrapper--empty-results {
  position: fixed;
}
@media (max-width: 1024px) {
  .footer-wrapper--empty-results {
    position: relative;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
  border-top: solid #fff 2px;
}
@media (max-width: 1024px) {
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.footer-links__list {
  list-style: none;
  display: flex;
  padding: 10px 0;
  margin: 0;
  justify-content: center;
}
@media (max-width: 1024px) {
  .footer-links__list {
    grid-column: 1 / 3;
    grid-row: 1;
    margin: 0 2em 1em 2em;
    text-align: center;
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .footer-links__list-entry {
    display: inline-block;
    line-height: 2;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.footer-links__list-entry__link {
  padding: 0;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: #006298;
  white-space: nowrap;
}
.footer-links__list-entry__link:hover {
  text-decoration: underline;
}
.footer-links__list-entry:nth-child(n+2)::before {
  color: #006298;
  content: "|";
  margin: 0 5px;
}
.footer_gale-logo {
  background: url("../images/gale-logo-footer.png") no-repeat;
  background-size: contain;
  height: 40px;
  width: 200px;
  margin-left: 10px;
}
@media (max-width: 1024px) {
  .footer_gale-logo {
    grid-column: 1;
    grid-row: 2;
    height: 30px;
    width: 110px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.footer_branding {
  background: url("../images/empower-logo.png") no-repeat;
  background-size: contain;
  height: 30px;
  width: 160px;
}
@media (max-width: 1024px) {
  .footer_branding {
    grid-column: 2;
    grid-row: 2;
    height: 20px;
    justify-self: flex-end;
    width: 110px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.gdl-homepage-form__container {
  border: solid #d6d6d6 1px;
}
.form-search-input {
  width: 100%;
  border: 1px solid #fff;
  height: 28px;
  text-indent: 5px;
  -webkit-appearance: unset;
}
.form-search-submit {
  width: 30px;
  height: 20px;
  padding: 0;
  border: 0;
  font-size: 1px;
  color: transparent;
  background: url(../images/search.svg) center no-repeat transparent;
  margin: 5px;
}
.seriesInfo:nth-last-child(1):nth-child(odd) {
  margin-right: 51%;
}
@media (max-width: 768px) {
  .seriesInfo:nth-last-child(1):nth-child(odd) {
    margin-right: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.gdl-pub-title {
  margin-bottom: 0.2em;
}
.gdl-pub-info {
  font-size: small;
}
@media (max-width: 599px) {
  .series-cover {
    text-align: center;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.glossary-section {
  margin-bottom: 2em;
}
.glossary-section .Body {
  margin-top: 20px;
  column-count: 2;
  font-size: small;
  column-gap: 20px;
}
.glossary-section .Body dl {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .glossary-section .Body {
    column-count: 1;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.glossary-section__header-container {
  height: 170px;
  margin-bottom: 1em;
  position: relative;
  padding: 0.5em 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.glossary-section__header-container.hide {
  display: none;
}
.glossary-section__header {
  color: #fff;
  margin-bottom: 0.2em;
}
.glossary-section__mobile-button {
  margin: 1em 0;
  bottom: 3em;
  left: 1.5em;
}
.glossary-section__input {
  width: 80%;
  max-width: 240px;
  bottom: 2em;
  left: 2em;
}
@media (max-width: 599px) {
  .glossary-section__input {
    font-size: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.manage-working-set__layout {
  margin-top: 60px;
}
.manage-working-set__layout .lti-section {
  padding-top: 20px;
}
.manage-working-set__layout .lti-section .b-lti {
  margin: 0 auto;
  width: min-content;
  white-space: nowrap;
}
.manage-working-set__layout .drag-n-drop-icon {
  font-weight: bold;
  color: #4F5A63;
  font-size: larger;
}
.manage-working-set__layout .reorder-message {
  padding: 0 0 1em 1em;
  background-color: #fcfcfc;
}
.manage-working-set__layout .reorder-message .drag-n-drop-icon {
  margin-top: 11px;
}
.manage-working-set__layout .reorder-message .custom-drag-icon::after {
  content: "\f255";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  left: 0;
  position: absolute;
  top: 0;
  position: unset;
  font-weight: normal;
}
.manage-working-set__layout .working-set {
  padding: 2em;
  width: -webkit-fill-available;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
.manage-working-set__layout .working-set .sub-label {
  text-transform: uppercase;
  color: #4F5A63;
  font-size: 0.7em;
  margin: 2px 0;
}
.manage-working-set__layout .working-set .page-label {
  display: block;
  text-transform: uppercase;
  color: #4F5A63;
  font-size: 0.7em;
}
.manage-working-set__layout .working-set__information > div {
  margin-bottom: 1em;
}
.manage-working-set__layout .working-set__header-name {
  margin-bottom: 1em;
}
.manage-working-set__layout .working-set__header-name-title {
  font-size: 1.5em;
}
.manage-working-set__layout .working-set__header-edit {
  padding-left: 0;
  margin-top: 2px;
}
.manage-working-set__layout .working-set__header-input {
  width: 80%;
}
@media (max-width: 1024px) {
  .manage-working-set__layout .working-set__header-input {
    width: 50%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.manage-working-set__layout .working-set__header,
.manage-working-set__layout .working-set__information {
  padding: 0 1em;
}
.working-set-page-content__layout {
  display: grid;
  grid-template-columns: 260px auto;
  padding: 2em;
}
@media (max-width: 599px) {
  .working-set-page-content__layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.working-set-page-content__layout .sidebar {
  grid-column: 1;
  grid-row: 1 / 3;
  background-color: #f2f2f2;
  margin: 0;
  padding: 1em;
}
.working-set-page-content__layout .sidebar .partiallyCollapsibleList {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 1em;
}
.working-set-page-content__layout .sidebar .partiallyCollapsibleList:last-of-type {
  border-bottom: 0;
}
.working-set-page-content__layout .sidebar .partiallyCollapsibleList__limiter-header {
  font-size: 18px;
}
.working-set-page-content__layout .sidebar .partiallyCollapsibleList .link {
  color: #000;
  font-size: smaller;
  text-transform: capitalize;
}
.working-set-page-content__layout .content-set-documents {
  margin-top: 0;
  padding: 0;
}
.working-set-page-content__layout .content-set-documents--none {
  grid-column: 1 / 3;
}
.working-set-page-content__layout .select-all-results {
  border-bottom: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
  padding: 1em 0 1em 3em;
}
.working-set-page-content__layout .SearchResultsList {
  padding: 0;
}
.working-set-page-content__layout .tab-banner-label {
  display: none;
}
.working-set-page-content__layout .citation-view {
  display: grid;
  grid-template-columns: 3fr 2fr;
}
@media (max-width: 1024px) {
  .working-set-page-content__layout .citation-view {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.working-set-page-content__layout .tag-container {
  display: block;
  width: fit-content;
  padding: 1em;
}
.working-set-page-content__layout .tag-container__list {
  display: inline;
}
.working-set-page-content__layout .tag-container__heading {
  margin-bottom: 10px;
}
.working-set-page-content__layout .tag-container__list-item {
  display: inline-block;
}
.working-set-page-content__layout .tag-container__custom.button__btn--default {
  border: 1px solid #006298;
  font-weight: normal;
}
.working-set-page-content__layout .custom-tag-parent {
  display: block;
  border-top: 1px solid #d6d6d6;
  padding-top: 0.5em;
  margin-top: 0.5em;
}
.working-set-page-content__layout .button__btn--tag {
  border: 1px solid #000;
  background-color: #fff;
  margin: 2px;
  text-transform: capitalize;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
.working-set-page-content__layout .button__btn--tag.button__btn--default {
  border: 1px solid #006298;
  background-color: #006298;
  font-weight: normal;
}
.workflow .working-set-page-content__layout .titleWrapper {
  grid-template-columns: 48px auto auto;
  margin-left: 0;
}
.workflow .working-set-page-content__layout .titleWrapper .result-item {
  justify-self: normal;
}
.workflow .working-set-page-content__layout .titleWrapper .drag-n-drop-icon {
  padding-right: 10px;
}
.workflow .working-set-page-content__layout .article-information__field {
  margin-left: 47px;
}
.workingSetReadOnlyPage .working-set-page-content__layout .citation-view {
  padding-left: 54px;
}
.workingSetReadOnlyPage .content-container {
  margin-top: 60px;
}
.workingSetReadOnlyPage .content-set-documents--none {
  margin: 30px;
}
.workingSetReadOnlyPage .working-set-header {
  background: url(../images/student-folder-transparent-bg.png) no-repeat right 30px top -61px #0A738A;
  background-size: 18% 146%;
  min-height: 188px;
  color: #fff;
  padding-left: 22px;
  margin: 88px 30px 0 30px;
}
@media (max-width: 1024px) {
  .workingSetReadOnlyPage .working-set-header {
    background-size: 22% 130%;
    background-position: right 4px top -36px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workingSetReadOnlyPage .working-set-info {
  max-width: 80%;
}
.workingSetReadOnlyPage .working-set-header--name {
  font-size: 1.5em;
  padding: 30px 0;
}
.workingSetReadOnlyPage .working-set-header--description {
  font-size: 100%;
  padding-bottom: 5px;
}
.workingSetReadOnlyPage .document-tag {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: initial;
  pointer-events: none;
  display: inline-block;
}
.workingSetReadOnlyPage .document-tag [class*="fa-"] {
  margin: 0 5px;
}
.workingSetReadOnlyPage .document-tag_primary {
  color: #fff;
  background-color: #006298;
  border: 1px solid #006298;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.workingSetReadOnlyPage .document-tag_primary:hover,
.workingSetReadOnlyPage .document-tag_primary:active,
.workingSetReadOnlyPage .document-tag_primary:focus {
  background-color: #002032;
  border: 1px #002032 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_inverted {
  color: #006298;
  border: 1px solid #006298;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.workingSetReadOnlyPage .document-tag_inverted:active,
.workingSetReadOnlyPage .document-tag_inverted:focus {
  color: #ffffff;
  background-color: #0083cb;
  border: 1px #0083cb solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_inverted:hover {
  background-color: #004165;
  border: 1px #004165 solid;
  color: #e6e6e6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_accent {
  color: #fff;
  background-color: #d54405;
  border: 1px solid #d54405;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
}
.workingSetReadOnlyPage .document-tag_accent:hover {
  color: #fff;
  background-color: #a33404;
  border: 1px #a33404 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_accent:active,
.workingSetReadOnlyPage .document-tag_accent:visited,
.workingSetReadOnlyPage .document-tag_accent:focus {
  color: #fff;
  background-color: #f95914;
  border: 1px #f95914 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_filter {
  background-color: #fff;
  border: 1px solid #006298;
  color: #006298;
}
.workingSetReadOnlyPage .document-tag_filter:hover,
.workingSetReadOnlyPage .document-tag_filter:active,
.workingSetReadOnlyPage .document-tag_filter:focus {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  border-radius: 2px 2px 0 0;
  color: #fff;
  padding: 7px 16px 7px 16px;
}
.workingSetReadOnlyPage .document-tag_filter--active:hover {
  background-color: #001c32;
  border: 1px #001c32 solid;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_filter--active:active,
.workingSetReadOnlyPage .document-tag_filter--active:focus {
  background-color: #005498;
  border: 1px #005498 solid;
  text-decoration: none;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .document-tag_filter--active {
  background-color: #003865;
  border: 1px solid #003865;
  color: #fff;
}
.workingSetReadOnlyPage .document-tag_link {
  color: #006298;
  background-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.workingSetReadOnlyPage .document-tag_link:hover {
  color: #004165;
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}
.workingSetReadOnlyPage .document-tag--expanded {
  width: 100%;
}
.workingSetReadOnlyPage .document-tag_clean {
  background: transparent;
  border: none;
}
.workingSetReadOnlyPage .document-tag_clean:hover {
  background: #000;
  color: #fff;
}
.workingSetReadOnlyPage .document-tag--small {
  font-size: 11px;
  padding: 5px 8px;
}
.workingSetReadOnlyPage .document-tag:hover,
.workingSetReadOnlyPage .document-tag:active,
.workingSetReadOnlyPage .document-tag:focus {
  background-color: #004165;
  border: 1px #004165 solid;
  transition: all 0.3s ease;
}
.workingSetReadOnlyPage .tag-container {
  display: block;
  width: auto;
  padding-right: 0;
  text-align: right;
}
.workingSetReadOnlyPage .tag-container__heading {
  font-style: italic;
  font-size: small;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .workingSetReadOnlyPage .tag-container,
  .working-set-page-content__layout .tag-container {
    text-align: left;
    padding-left: 0;
    padding-bottom: 0;
  }
  .workflow .working-set-page-content__layout {
    grid-template-columns: 210px auto;
    padding-right: 3em;
  }
  .workflow .working-set-page-content__layout .SearchResultsList {
    margin-right: 30px;
  }
  .workflow .working-set-page-content__layout .tag-container {
    margin-left: 41px;
  }
  .workingSetReadOnlyPage .tag-container.no-tag {
    padding: 0;
    height: 0;
  }
  /* stylelint-disable-line at-rule-no-unknown */
}
.feature-author__header,
.feature-work__header {
  margin: 1em 0;
}
.feature-author__header-title,
.feature-work__header-title {
  display: inline-block;
}
@media (max-width: 599px) {
  .feature-author__header-title,
  .feature-work__header-title {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.feature-author__view-all,
.feature-work__view-all {
  display: inline-block;
  float: right;
}
@media (max-width: 599px) {
  .feature-author__view-all,
  .feature-work__view-all {
    float: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.feature-author__card,
.feature-work__card {
  grid-template-columns: auto 0fr;
  /* stylelint-disable-line  length-zero-no-unit */
  grid-column-gap: 20px;
}
@media (max-width: 599px) {
  .feature-author__card,
  .feature-work__card {
    grid-template-columns: auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.feature-author__info,
.feature-work__info {
  margin-top: 0.5em;
}
.feature-author__facts-overview,
.feature-work__facts-overview {
  margin: 0.5em 0;
}
.feature-author__full-bio,
.feature-work__full-bio {
  margin: 1em 0;
}
.feature-author__photo,
.feature-work__photo {
  width: min-content;
}
.feature-author__photo-img,
.feature-work__photo-img {
  width: 300px;
  height: auto;
}
@media (max-width: 599px) {
  .feature-author__photo-img,
  .feature-work__photo-img {
    width: 220px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.feature-author__photo-credit,
.feature-work__photo-credit {
  text-align: center;
}
@media (max-width: 599px) {
  .feature-author__photo-credit,
  .feature-work__photo-credit {
    padding-bottom: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.entity-list {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 1024px) {
  .entity-list {
    justify-content: center;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.entity-card {
  width: min-content;
  margin: 1em;
}
.entity-card__img {
  width: 300px;
  height: auto;
}
@media (max-width: 768px) {
  .entity-card__img {
    width: 269px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.entity-card__title {
  margin: 0.5em 0;
}
.entity-card__credit {
  font-size: small;
}
.category-list-sidebar--device {
  width: 80%;
}
@media (max-width: 599px) {
  .category-details__container {
    grid-column: 1 / 3;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .category-details {
    grid-column: 1 / 3;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.lit-category-details,
.lit-category-details__subcategory {
  margin: 1em 0;
}
.unit-topic-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 3%;
}
@media (max-width: 599px) {
  .unit-topic-list {
    grid-template-columns: auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.unit-topic-list__item {
  margin: 0.5em 0;
}
.unit-topic-list__header {
  display: inline;
}
.category-list {
  padding-bottom: 2em;
}
.category-list__item {
  margin: 0.5em 0;
  padding: 0 2em;
  cursor: pointer;
}
.category-list__item-link:hover,
.category-list__item-link:focus,
.category-list__item-link:active {
  text-decoration: none;
}
.category-list__item.selected {
  background-color: #006298;
  padding: 0.5em 2em;
}
.category-list__item.selected .category-list__item-link {
  color: #fff;
  font-weight: bold;
}
.related-books__list {
  display: flex;
  flex-flow: row wrap;
}
.main {
  position: absolute;
  width: 100%;
  white-space: nowrap;
  height: 55px;
  z-index: 100;
}
.navbar-tools {
  display: flex;
}
.navbar-tools .toolbar-button {
  font-size: 20px;
}
.navbar-tools .tool-link {
  display: block;
  border: none;
  background: none;
  width: auto;
  padding-left: 4px;
  padding-right: 4px;
}
.navbar-tools .tool-link:hover {
  background: none;
  cursor: pointer;
}
.navbar-tools .tool-link label {
  display: block;
  font-weight: normal;
  font-size: 11px;
  margin-top: 4px;
  -moz-osx-font-smoothing: initial;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
}
.navbar-tools .font_adjust .tool-link {
  font-size: 11px;
}
.nav-container {
  padding: 2px 0;
}
.nav-container .navigation [class*="fa"] {
  padding-top: 6px;
}
.navigation {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
}
@media (max-width: 599px) {
  .navigation {
    display: flex;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.navigation .left {
  display: inline-flex;
  float: left;
}
@media (max-width: 599px) {
  .navigation .left {
    display: flex;
    white-space: nowrap;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.navigation .left > * {
  margin-right: 10px;
  float: left;
}
.navigation .left .toolbar-button {
  margin-right: 10px;
}
.navigation .left .font_adjust {
  margin-right: 10px;
}
.navigation .left .font_adjust_icon .toolbar-button {
  margin-right: 0;
}
.navigation .right {
  display: inline-flex;
  float: right;
}
@media (max-width: 1024px) {
  .navigation .right {
    white-space: nowrap;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.navigation .right > * {
  margin-left: 10px;
  float: left;
}
.navigation .right .top-tools__container--right {
  display: inline-flex;
}
.navigation .stacked-icons {
  position: relative;
}
.navigation .stacked-icons .tilde-icon {
  height: 16px;
}
.navigation .stacked-icons .tilde-icon::before {
  content: "\f69f";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  left: 22px;
  position: absolute;
  top: 3px;
}
.navigation .stacked-icons .highlighter-icon {
  height: 0;
  padding-top: 0;
}
.navigation .stacked-icons .highlighter-icon::before {
  content: "\f591";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  left: 37px;
  position: absolute;
  top: -6px;
}
[id*="home"] .nav-container .navigation {
  display: block;
}
@media (max-width: 599px) {
  [id*="home"] .nav-container .navigation {
    display: flex;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
body:not(#home).lmsView .extraLinks .navigation {
  margin-top: 40px;
}
.document-tools .left .toolbar-button [class*="fa-"] {
  padding-bottom: 5px;
}
.termfreq-wrapper .message {
  margin: 5px 0;
}
.termfreq-wrapper .chart-container {
  border: 1px solid #4F5A63;
  clear: both;
  height: 400px;
  margin: 0 0 20px;
  overflow: hidden;
  padding: 1px;
  width: 100%;
}
.termfreq-wrapper .chart-container img {
  width: 100%;
}
.termfreq-wrapper .chart-container.spinner .highcharts-container {
  display: none;
}
.termfreq-wrapper .spinner {
  background: url('../../images/ajax-loader.gif') no-repeat scroll center center transparent;
}
.termfreq-wrapper .ngram_align {
  float: none;
  margin-right: 34px;
}
.termfreq-wrapper #ngram_sample_graph {
  background-image: url('../images/ngram-sample-graph2.png');
  width: 920px;
  height: 639px;
}
.termfreq-wrapper #searchResultsDisplayQueryNav .source {
  font-weight: bold;
  padding-right: 5px;
}
.termfreq-wrapper #searchResultsDisplayQueryNav .sourceTitle {
  list-style-type: none;
}
.termfreq-wrapper #searchResultsDisplayQueryNav .docSource {
  padding: 0 20px;
  display: grid;
  grid-template-columns: min-content auto min-content;
  white-space: nowrap;
}
.termfreq-wrapper #searchResultsDisplayQueryNav .docSource li {
  display: inline-block;
}
.error-container {
  color: #c00;
  font-weight: bold;
  margin-bottom: 10px;
}
.search-results-error {
  color: #c00;
  padding-bottom: 10px;
}
.term-freq-subheader {
  margin-bottom: 0.8em;
}
.ngram-placeholder__grid {
  display: grid;
  grid-template-columns: min-content min-content auto;
  width: 100%;
  min-width: 600px;
  height: 400px;
  padding-top: 30px;
  padding-right: 60px;
  color: #4F5A63;
  font-size: 11px;
}
.ngram-placeholder .ngram__header {
  grid-column-start: 1;
  grid-column-end: 4;
  text-align: center;
  font-size: 18px;
  color: #000;
}
.ngram-placeholder .ngram-yaxis__label {
  text-align: right;
}
.ngram-placeholder .ngram-yaxis__header {
  grid-row-start: 2;
  grid-row-end: 9;
  white-space: nowrap;
  width: 60px;
}
.ngram-placeholder .ngram-yaxis__header-container {
  transform: translate(0, 150px) rotate(-90deg);
  font-size: 14px;
  color: #4F5A63;
}
.ngram-placeholder .ngram-yaxis__blank {
  margin: 7px 0 7px 10px;
  border-top: 1px solid #4F5A63;
}
.ngram-placeholder .ngram-xaxis {
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: 7px auto;
  display: grid;
  margin-left: 7px;
}
.ngram-placeholder .ngram-xaxis__value {
  text-align: right;
  position: relative;
  right: -13px;
}
.ngram-placeholder .ngram-xaxis__blank {
  border-top: 1px solid #4F5A63;
  border-right: 1px solid #4F5A63;
}
.ngram-placeholder .ngram-xaxis__blank-last {
  border-right: 0;
}
@media (max-width: 599px) {
  .ngram-placeholder__grid {
    min-width: auto;
    padding-right: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .ngram-placeholder__grid .ngram__header {
    padding-left: 20px;
  }
  .ngram-placeholder__grid .ngram-xaxis {
    grid-template-columns: repeat(4, 1fr);
  }
  .ngram-placeholder__grid .ngram-xaxis__blank:nth-of-type(n+5),
  .ngram-placeholder__grid .ngram-xaxis__value:nth-of-type(n+20) {
    display: none;
  }
}
.ngram-form {
  border: 1px solid #4F5A63;
  display: flex;
  flex-flow: row wrap;
  margin: 15px 0;
  padding: 18px 0 18px 18px;
  position: relative;
}
.ngram-form__narrow-search {
  display: block;
  margin: 12px 0;
  font-size: 13px;
}
.ngram-form__phrase {
  margin-right: 2em;
}
.ngram-form__databases {
  flex: 100%;
  margin: 1em 1em 1em 0;
}
.ngram-form__databases-categories {
  margin-top: 0.5em;
}
.ngram-form__chart-type {
  margin: 0 1em 1em 0;
}
@media (max-width: 768px) {
  .ngram-form__chart-type {
    margin: 1em 1em 0 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.ngram-form__chart-type-container,
.ngram-form__chart-type-item {
  display: inline-block;
}
.ngram-form__chart-type-container {
  margin-right: 0.5em;
}
.ngram-form__year-range-label,
.ngram-form__content-type-label {
  display: block;
}
.ngram-form__year-range {
  margin-right: 2em;
}
.ngram-form__year-range-start,
.ngram-form__year-range-end {
  width: 3em;
}
.ngram-form__year-range-start-container::after {
  content: '-';
  margin: 0 0.3em;
}
.ngram-form__content-type-list {
  line-height: 1em;
}
.ngram-form__content-type-item {
  font-size: small;
  display: grid;
  grid-template-columns: min-content auto;
  column-gap: 0.2em;
}
.ngram-label {
  font-weight: 600;
  font-size: 13px;
  margin: 0 3px 3px;
}
.ngram-phrase {
  display: grid;
  grid-template-columns: auto auto;
  line-height: 1.5em;
}
.ngram-phrase__input {
  width: 192px;
  margin-bottom: 3px;
}
.no-cssgrid .ngram-placeholder__grid {
  display: none;
}
.no-cssgrid .ngram-placeholder__ie {
  background: url(../../Rio/images/graphing-placeholder.jpg) no-repeat;
  height: 400px;
}
.term-frequency__header {
  margin-bottom: 2em;
}
.term-frequency__container {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 599px) {
  .term-frequency__container {
    display: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.term-frequency__term-input-container {
  width: max-content;
  margin-right: 2em;
}
@media (max-width: 599px) {
  .term-frequency__term-input-container {
    margin-bottom: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.term-frequency__term-controls-container {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 1em;
  column-gap: 1em;
  align-self: flex-end;
  margin-bottom: 0.4em;
}
@media (max-width: 599px) {
  .term-frequency__term-controls-container {
    width: 250px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.term-frequency__term-controls-container .add,
.term-frequency__term-controls-container .remove {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: #006298;
  background: none;
}
.term-frequency__term-controls-container .add:hover,
.term-frequency__term-controls-container .remove:hover,
.term-frequency__term-controls-container .add:focus,
.term-frequency__term-controls-container .remove:focus {
  text-decoration: none;
  cursor: pointer;
  color: #00314c;
}
.term-frequency__term-controls-container .add .icon,
.term-frequency__term-controls-container .remove .icon {
  color: #fff;
  background-color: #4F5A63;
  padding: 1px 7px;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 5px;
}
.term-frequency__term-controls-container .add .icon.remove,
.term-frequency__term-controls-container .remove .icon.remove {
  padding: 1px 9px;
}
.term-frequency__term-controls-submit {
  grid-row-start: 2;
}
.term-frequency__options-container {
  display: flex;
  top: 18px;
  margin-right: 1em;
}
@media (max-width: 768px) {
  .term-frequency__options-container {
    margin-top: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.no-results {
  margin-top: 10px;
  background-color: #f2f2f2;
  padding: 10px;
}
.no-results__link {
  margin: 10px 20px 10px 0;
}
.no-results__icon {
  margin-right: 5px;
}
.prod-not-auth .center-align-block {
  width: 80%;
  margin: auto auto;
  background-color: #f2f2f2;
  padding: 30px;
}
.prod-not-auth .BorderedDiv {
  margin-bottom: 30px;
}
.prod-not-auth .access-text {
  margin: 10px 0;
}
a.accessFeature {
  display: block;
  height: 0;
  width: 0;
  text-indent: -99999px;
}
@media (min-width: 900px) {
  .logout-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px;
    width: 50%;
    margin: 5em auto;
  }
  .logout-link-list {
    font-size: large;
  }
  .logout-link-list__element {
    margin: 10px;
  }
  /* stylelint-disable-line at-rule-no-unknown */
}
.logout-section {
  background-color: #f2f2f2;
}
.bucket-wrapper {
  background-color: #f2f2f2;
  padding: 2em;
  position: relative;
}
.bucket-wrapper--darker {
  background-color: #d6d6d6;
}
.bucket-wrapper .bucket {
  display: grid;
  grid-template-columns: auto auto auto;
  background-color: #f2f2f2;
  vertical-align: top;
  padding: 1em;
  grid-column-gap: 10px;
}
@media (max-width: 768px) {
  .bucket-wrapper .bucket {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.bucket-wrapper .bucket--newspaper {
  grid-column-gap: 2em;
  grid-template-columns: 5fr 4fr;
  padding: 0;
}
.bucket-wrapper .bucket--newspaper .about {
  padding: 1em 0 1em 0;
}
.bucket-wrapper .bucket--newspaper .partner {
  padding: 1em 0 1em 0;
}
.bucket-wrapper .bucket--calendar {
  grid-template-columns: min-content minmax(300px, auto);
  grid-template-rows: min-content auto;
  column-gap: 2em;
  min-height: 60vh;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .bucket-wrapper .bucket--calendar {
    background-color: #f2f2f2;
    min-height: 65vh;
    grid-template-columns: 1fr 2fr;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .bucket-wrapper .bucket--calendar {
    background-color: #f2f2f2;
    min-height: 65vh;
    display: flex;
    flex-wrap: wrap;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .gallery-wrapper {
    padding: 1em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.callout-bucket__layout--SBRC {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}
.callout-bucket__layout--SBRC .header {
  grid-column: 1 / 3;
}
.callout-bucket__layout--SBRC .about-list {
  list-style: initial;
  padding-left: 20px;
}
.callout-bucket__layout--SBRC .label {
  margin-right: 5px;
}
.callout-bucket__layout--SBRC li {
  margin: 0 0 1em 0;
}
@media (max-width: 599px) {
  .callout-bucket__layout--SBRC {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .callout-bucket__layout--SBRC .container {
    margin-top: 20px;
  }
}
.workflow .page-wrapper {
  overflow-x: hidden;
}
.page-wrapper {
  min-height: 100vh;
  position: relative;
}
.content-wrapper {
  min-height: 100%;
  padding-bottom: 62.38px;
}
@media (max-width: 1024px) {
  .content-wrapper {
    padding-bottom: 128px;
    width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.contentSection {
  padding: 2em;
  margin-top: 60px;
}
.contentSection_header {
  margin-top: 56px;
}
.contentSection_body {
  padding: 2em;
}
.contentSection.noResults {
  grid-column: 1/3;
}
.b-map-country-select {
  margin-bottom: 20px;
}
.b-map-info {
  display: inline-block;
}
.b-map-info__heading {
  font-weight: 200;
  font-size: 2.5em;
}
@media (max-width: 599px) {
  .b-map-info__list {
    margin-bottom: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.map {
  display: inline-block;
  width: 50%;
  min-width: 500px;
  margin-right: 2rem;
  vertical-align: top;
}
@media (max-width: 599px) {
  .map {
    width: 100%;
    min-width: unset;
    margin-bottom: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.SearchResultsList {
  padding: 0 2em 2em 2em;
}
@media (max-width: 599px) {
  .SearchResultsList {
    padding: 0 2em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.SearchResultsHeader {
  padding: 1em 0 0 2em;
}
.more-results .SearchResultsList {
  padding: 0;
}
.divider--white {
  height: 2px;
  display: block;
  background-color: #fff;
}
.divider--gray {
  height: 1px;
  display: block;
  background-color: #d6d6d6;
}
.top-search {
  font-size: smaller;
}
.top-search .search-term {
  margin: 0.5em 0;
}
.fixed-top-tools .header-wrapper .navbar {
  position: fixed;
  z-index: 100000;
  top: 0;
}
#home .page-wrapper {
  background-color: #f2f2f2;
}
.image-links__limiter {
  margin-left: 0.5em;
}
.product_resources,
.archive-search-description,
.Abstract {
  max-width: 800px;
}
.About .product_resources {
  margin: auto;
}
.archive-search-bucket {
  padding-bottom: 0;
}
.ill-request-form .docData {
  margin-bottom: 5px;
}
.ill-request-form .docData input {
  width: 45%;
}
.ill-request-form .label {
  float: left;
  width: 50%;
  font-weight: normal;
}
.ill-request-form .form_element {
  margin-left: 0.3em;
}
.ill-request-form input {
  padding: 2px;
}
.ill-request-form .column {
  margin: 10px 0;
}
.search-alert__form {
  margin-top: 1em;
}
.search-alert__list {
  margin-bottom: 10px;
}
.search-alert__feed-url {
  width: 100%;
}
.search-alert__rss-list {
  margin-left: 20px;
}
.search-alert__rss-list li {
  list-style: circle;
}
.search-alert__rss-feed,
.search-alert .cssform {
  margin-top: 10px;
}
.email-form {
  margin-top: 0.5em;
  padding: 7px 16px;
}
.email-form__input-group {
  display: grid;
  grid-template-columns: 20% 75%;
  margin: 1em 0;
}
.email-form__input-group:first-of-type {
  margin-bottom: 0;
}
.email-form__input-group .email-form__inline-description,
.email-form__input-group .error {
  grid-column-start: 2;
}
@media (max-width: 599px) {
  .email-form__input-group {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .email-form__input-group--input,
  .email-form__input-group--textarea {
    width: 100%;
  }
}
.email-form__inline-description {
  margin-top: 0;
}
@media (max-width: 599px) {
  .email-form__inline-description {
    margin: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.email-form--textarea {
  border-radius: 4px;
  border: #d6d6d6;
}
.email-confirmation {
  min-width: 300px;
}
.email-confirmation__list {
  display: grid;
  grid-template-columns: 20% 75%;
  grid-gap: 0.9em;
  margin-bottom: 10px;
}
.dialog-button-panel__email {
  float: right;
}
.dialog-button-panel__email .button {
  margin: 10px;
}
.edit-tag-dialog {
  display: grid;
  grid-template-columns: min-content auto;
  grid-gap: 5px 5px;
}
.edit-tag-dialog .custom-tag-select {
  grid-column: 2;
}
.edit-tag-dialog .edit-tag-input-label {
  white-space: nowrap;
}
.folder-share-form {
  display: grid;
  grid-template-columns: auto 30%;
  grid-row-gap: 7px;
}
.share-form__header,
.share-form__label,
.share-form__subject,
.share-form__message,
.rights-options {
  grid-column: 1/3;
}
.folder-share-form label.error {
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column: 1/3;
}
.rights-options {
  position: absolute;
  background: #fff;
  border: 1px solid #000;
  padding: 10px;
  right: 16px;
  top: 85px;
}
.rights-description {
  font-size: 14px;
  color: #6ecef6;
  padding-left: 24px;
}
.share-form__message {
  resize: none;
}
.content-set-name-wrapper .content-set-name,
.content-set-copy-name-wrapper .content-set-name {
  margin-left: 6px;
  width: 83%;
}
.content-set-name-wrapper .error-message,
.content-set-copy-name-wrapper .error-message {
  margin-left: 54px;
  margin-top: 5px;
}
.expand-container {
  list-style-type: disc;
  padding-left: 30px;
  overflow-y: auto;
}
.expand-container__item {
  padding-top: 12px;
  word-break: break-word;
}
.edit-container .tool-text {
  min-height: 108px;
  resize: none;
  width: 420px;
}
.select-or-create-folder .select-message {
  margin-bottom: 15px;
}
.folder-select {
  max-width: 100%;
}
.portal__layout .portal-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  grid-gap: 20px;
}
.portal__layout .portal-featured .portal-header {
  grid-column: 1 / 4;
  grid-row: 1;
}
.portal__layout .portal-featured .overview {
  display: inline-grid;
  grid-column: 1 / 3;
  grid-column-gap: 20px;
  justify-content: center;
  grid-template-columns: min-content auto auto;
  grid-template-rows: 40px auto auto;
}
.portal__layout .portal-featured .overview .subheader {
  grid-column: 1 / 3;
  grid-row: 1;
}
@media (max-width: 1024px) {
  .portal__layout .portal-featured .overview {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .portal__layout .portal-featured .overview .spotlight {
    display: block;
  }
  .portal__layout .portal-featured .overview .spotlight img {
    max-width: 300px;
  }
}
.portal__layout .portal-featured .spotlight {
  grid-row: 2;
  grid-column: 1;
}
.portal__layout .portal-featured .intro {
  grid-row: 2;
  grid-column: 2;
  max-width: 600px;
  padding-bottom: 10px;
}
@media (max-width: 1024px) {
  .portal__layout .portal-featured .intro {
    max-width: 100%;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.portal__layout .portal-featured .facts {
  grid-row: 1 / 3;
  grid-column: 3;
}
@media (max-width: 768px) {
  .portal__layout .portal-featured .facts {
    margin-top: 15px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.portal__layout .portal-featured .factbox {
  column-count: 2;
}
.portal__layout .spotlight {
  display: inline-block;
  width: min-content;
}
.portal__layout .spotlight .description {
  margin-bottom: 0;
}
.portal__layout .spotlight .description,
.portal__layout .spotlight .credit {
  display: block;
  font-size: small;
}
.portal__layout .intro {
  display: inline-block;
}
.portal__layout .intro.hide {
  display: none;
}
.portal__layout .intro p {
  margin-top: 0;
}
.portal__layout .onThisPageSection {
  grid-column: 1 / 4;
  grid-row: 3;
  margin: 2em -2em;
}
.portal__layout .related-topics__carousel .gallery-view {
  display: inline-block;
  margin: 3px;
  max-width: 200px;
}
.portal__layout .portal-result-list {
  position: relative;
  margin-top: 1em;
}
.portal__layout .portal-result-list .search-results-bucket {
  margin: 20px;
}
@media (max-width: 599px) {
  .portal__layout .portal-result-list .search-results-bucket {
    margin: 0 0 31px 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.factbox__item {
  margin-bottom: 0.5em;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
}
.featured-bucket-header {
  background-color: #d9f3ff;
  padding: 1em;
  margin: 2em 0;
}
.featured-bucket-info {
  text-align: center;
  margin-bottom: 1em;
}
.featured-bucket-info .series-title {
  font-style: italic;
}
.no-featured-bucket-header {
  background-color: #fc8d5a;
  padding: 1em;
  margin: 2em 0;
}
.no-featured-bucket-info {
  text-align: center;
}
.no-featured-bucket-info .series-title {
  font-style: italic;
}
.featured-criticism-bucket {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 2em;
}
.featured-criticism-bucket .citation-view {
  flex: 0 45%;
  margin: 1em;
}
.featured-criticism-bucket .citation-view:last-of-type {
  border-bottom: solid #d6d6d6 1px;
}
.featured-criticism-bucket .citation-view:nth-last-child(1):nth-child(odd) {
  margin-right: 51%;
}
@media (max-width: 599px) {
  .featured-criticism-bucket .citation-view:nth-last-child(1):nth-child(odd) {
    margin-right: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .featured-criticism-bucket .citation-view:nth-last-child(1):nth-child(odd) {
    margin-right: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .featured-criticism-bucket {
    display: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .featured-criticism-bucket {
    display: initial;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.featured-related-works {
  display: flex;
  flex-flow: row nowrap;
}
.featured-related-works__item {
  margin: 0.5em;
  max-width: 200px;
}
.search-history__layout {
  max-width: 900px;
  min-height: 600px;
  margin: 40px auto;
}
.search-history__layout .header {
  display: inline-block;
  width: 100%;
}
.search-history__layout .header .page-header {
  float: left;
}
.search-history__layout .header .button {
  float: right;
  margin-top: 15px;
}
.search-history__header {
  display: flex;
  justify-content: space-between;
  background-color: #f2f2f2;
  padding: 0.5em;
  margin-bottom: 1em;
}
.search-history__body-item .searchItem {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #d6d6d6;
}
.search-history__body-item .searchName {
  display: block;
}
.search-history__body-item .value {
  word-break: break-word;
}
.search-history__body-item .previousSearchLink {
  width: calc(100% - 100px);
  /* stylelint-disable-line function-calc-no-invalid */
  position: relative;
  display: inline-block;
}
.search-history__body-item .hits {
  float: right;
}
.search-results_layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 599px) {
  .search-results_layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .search-results_layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-results_layout .contentSection_header {
  grid-column: 1 / 3;
  grid-row: 1;
  margin-top: -3px;
}
@media (max-width: 768px) {
  .search-results_layout .contentSection_header {
    margin-top: -4px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-results_layout .search-results {
  grid-column: 1;
  grid-row: 2;
}
.search-results_layout .search-results-info {
  margin-bottom: 1em;
}
.search-results_layout .search-results-bucket {
  padding: 1em 2em 0 2em;
}
@media (max-width: 599px) {
  .search-results_layout .search-results-bucket {
    padding: 1em 0.5em 0 0.5em;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-results_layout .search-results-bucket .SearchResultsList {
  padding: 0;
}
.search-results_layout .search-results-bucket .SearchResultsList_multi-bucket {
  padding: 1em;
  margin: 0.5em 0 2em 0;
}
.search-results_layout .search-results-bucket .SearchResultsList_multi-bucket.search-results-images {
  justify-content: unset;
}
.search-results_layout .search-results-bucket .SearchResultsList_multi-bucket .Videos {
  padding-top: 0;
}
.search-results_layout .sidebar {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 599px) {
  .search-results_layout .sidebar {
    padding-bottom: 20px;
    margin-top: 65px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-height: 500px) {
  .search-results_layout .sidebar {
    margin-top: 65px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-results_layout .results-navigation {
  grid-column: 1 / 3;
  grid-row: 3;
}
.search-results_layout .related-topics__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  grid-gap: 10px;
}
@media (max-width: 1024px) {
  .search-results_layout .related-topics__list {
    grid-template-columns: auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.search-results_layout .show-search-tools {
  display: block;
  font-size: large;
}
.search-results_layout .close-search-tools {
  float: right;
}
.search-results_layout .select-wrapper .custom-select-box {
  border: 1px solid #4F5A63;
  border-radius: 4px;
  padding: 2px 4px;
  margin: 0 5px 0 0;
  min-width: 100px;
}
.search-results_layout .select-wrapper .custom-select-box .customSelectInner {
  width: 125px !important;
}
.search-results_layout .select-wrapper .custom-select-box .customSelectInner::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro", "Open Sans", sans-serif;
  margin: 3px 3px 0 5px;
  vertical-align: middle;
  float: right;
  font-weight: bold;
}
.search-results_layout .advLimiter.dateLimiter {
  padding: 0 0 1em 0;
}
.search-type_multi-bucket {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-row-gap: 5px;
}
.search-type_multi-bucket li:first-of-type {
  grid-column: 1;
  grid-row: span 4;
}
@media (max-width: 599px) {
  .search-type_multi-bucket {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .search-type_multi-bucket li {
    margin-bottom: 5px;
  }
}
@media (max-width: 1024px) {
  .search-type_multi-bucket {
    grid-template-columns: auto auto auto;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .search-type_multi-bucket li:first-of-type {
    grid-row: auto;
  }
}
.pub-search-results {
  grid-row: 1;
  grid-column: 1;
}
.pub-search-results.publications-results {
  grid-row: 2;
  margin-top: 0;
}
.search-results-images,
.search-results-images--no-justify {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  margin-top: 2em;
  height: auto;
}
.search-results-images--no-justify {
  justify-content: unset;
}
.person-results__layout {
  width: 100%;
}
.person-results__layout .table {
  padding: 1em;
}
.person-results__layout .table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d6d6d6;
}
@media (max-width: 599px) {
  .person-results__layout .table__header {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.person-results__layout .table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: baseline;
  border-bottom: 1px solid #d6d6d6;
  padding: 0.5em 0;
}
@media (max-width: 599px) {
  .person-results__layout .table__row {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.person-results__layout .table .nameColumn {
  max-width: 92%;
}
.person-results__layout .table__entity-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d6d6d6;
}
@media (max-width: 599px) {
  .person-results__layout .table__entity-header {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.person-results__layout .table__entity-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  align-items: baseline;
  border-bottom: 1px solid #d6d6d6;
  padding: 0.5em 0;
}
@media (max-width: 599px) {
  .person-results__layout .table__entity-row {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.person-results__layout .resultsRow-subject {
  display: block;
  font-weight: bold;
  font-size: small;
  margin-top: 5px;
}
.person-results__layout .aka-names {
  display: block;
  font-size: small;
  margin-top: 5px;
}
.person-results__layout .aka-names .aka-label {
  font-weight: bold;
}
.person-results__layout .button-row {
  display: block;
  text-align: center;
  margin-top: 1em;
}
.person-results__layout .related-topics__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 10px;
}
.searchResultsTitle {
  margin-bottom: 1em;
}
.entity-results__header {
  display: block;
  margin: 1em 0 2em 0;
}
.entity-results__nav {
  display: inline-block;
}
.entity-results__sort-fields {
  display: inline-block;
  float: right;
}
.entity-results__form {
  display: inline;
}
.entity-results__form-label {
  display: inline;
}
.subject-guide__layout,
.pub-search__layout,
.two-column__layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  width: 100%;
}
.subject-guide__layout .header,
.pub-search__layout .header,
.two-column__layout .header {
  grid-column: 1 / 3;
}
.subject-guide__layout .show-search-tools,
.pub-search__layout .show-search-tools,
.two-column__layout .show-search-tools {
  margin: 1em;
}
.subject-guide__layout .sidebar,
.pub-search__layout .sidebar,
.two-column__layout .sidebar {
  padding: 2em;
  margin-top: 53px;
}
.subject-guide__layout .table__row,
.pub-search__layout .table__row,
.two-column__layout .table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: baseline;
  border-bottom: 1px solid #d6d6d6;
  padding: 0.5em 0;
}
.subject-guide__layout .table .seesection,
.pub-search__layout .table .seesection,
.two-column__layout .table .seesection,
.subject-guide__layout .table .resultsRow-subjectlinks,
.pub-search__layout .table .resultsRow-subjectlinks,
.two-column__layout .table .resultsRow-subjectlinks {
  font-size: small;
}
.subject-guide__layout .count,
.pub-search__layout .count,
.two-column__layout .count,
.subject-guide__layout .articlecount,
.pub-search__layout .articlecount,
.two-column__layout .articlecount {
  text-align: right;
}
.subject-guide__layout .button-row,
.pub-search__layout .button-row,
.two-column__layout .button-row {
  display: block;
  text-align: center;
  margin-top: 1em;
}
.subject-guide__layout .subject-results,
.pub-search__layout .subject-results,
.two-column__layout .subject-results,
.subject-guide__layout .publication-results,
.pub-search__layout .publication-results,
.two-column__layout .publication-results {
  padding: 1em;
}
.subject-guide__layout .publication-results::before,
.pub-search__layout .publication-results::before,
.two-column__layout .publication-results::before {
  content: '';
  display: block;
  visibility: hidden;
  width: 0;
  height: 2.5em;
}
.results-row__header {
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d6d6d6;
}
.subject-guide__layout .show-search-tools,
.pub-search__layout .show-search-tools {
  margin: 1em 0;
}
.subject-guide__layout .sidebar .close-search-tools,
.pub-search__layout .sidebar .close-search-tools {
  float: right;
}
@media (max-width: 599px) {
  .subject-guide__layout .sidebar,
  .pub-search__layout .sidebar {
    padding: 2em 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .subject-guide__layout .sidebar .subheader,
  .pub-search__layout .sidebar .subheader {
    margin-bottom: 1em;
  }
}
@media (max-width: 599px) {
  .subject-guide__layout,
  .pub-search__layout {
    display: block;
    grid-template-columns: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .subject-guide__layout .button-row li,
  .pub-search__layout .button-row li {
    margin-bottom: 10px;
  }
  .subject-guide__layout .ui-autocomplete-input,
  .pub-search__layout .ui-autocomplete-input {
    margin: 0.5em 0 0.8em;
  }
}
.subject-guide__layout .results-row__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 599px) {
  .subject-guide__layout {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .subject-guide__layout .table__row {
    grid-template-columns: 1fr 1fr 0.3fr;
    padding: 3px;
  }
}
.pub-search__layout .results-row__header {
  display: block;
}
.pub-search__layout [class*="citation-"] {
  margin-right: 5px;
}
@media (max-width: 599px) {
  .pub-search__layout {
    /* stylelint-disable-line at-rule-no-unknown */
  }
  .pub-search__layout .table__row {
    display: block;
    grid-template-columns: unset;
  }
}
@media (max-width: 599px) {
  .two-column__layout {
    display: block;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.gallery-view_video {
  display: grid;
  grid-template-columns: 200px auto;
  grid-column-gap: 10px;
  margin-bottom: 1em;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 1em;
  position: relative;
}
@media (max-width: 599px) {
  .gallery-view_video {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.SearchResultsList .Videos:first-child {
  padding-top: 2em;
}
.sidebar {
  margin: 1em;
}
.sidebar_block {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #d6d6d6;
}
.sidebar_block:last-child {
  border-bottom: 0;
}
.sidebar_block--border {
  border: 1px solid #003865;
  border-radius: 4px;
  margin-top: 0.5em;
}
.sidebar_block--header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #003865;
  padding: 0.5em;
}
.sidebar_block--body {
  padding: 1em;
}
.sidebar .subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar .related-searches {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sidebar .related-search_list {
  grid-column: 1;
  font-size: smaller;
  padding-top: 1em;
}
.sidebar .related-search_list--item {
  padding: 5px 0;
}
.sidebar .related-search_list ~ .related-search_list {
  grid-column: 2;
}
.sidebar .search-options {
  margin-top: 1em;
}
.sidebar .partiallyCollapsibleList__limiter-header {
  margin-left: 5px;
}
.sidebar .partiallyCollapsibleList__item {
  margin-left: 5px;
}
.sidebar .partiallyCollapsibleList .toggleButton__collapsed,
.sidebar .partiallyCollapsibleList .toggleButton__expanded {
  margin-right: 5px;
}
.date-range-entry {
  margin: 10px 0 10px 5px;
  display: grid;
  grid-template-columns: 45px auto;
  column-gap: 1em;
  width: 193px;
}
.date-range-entry__label {
  text-align: right;
  margin-right: 0;
}
.date-range-entry .form-message {
  grid-column: span 2;
}
.cslink {
  background-color: #eee;
  padding: 15px 10px;
  border-top: solid 0.5px #d6d6d6;
}
.cslink__info {
  font-size: 0.9em;
}
.cslink__link {
  height: 70px;
  width: 160px;
  display: inline-block;
}
.cslink__link--GDCS {
  background: url("../images/gdcs-icon.png") no-repeat;
  background-size: contain;
}
@media (max-width: 1024px) {
  .cslink__link {
    height: 50px;
    width: 120px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 768px) {
  .cslink__link {
    height: 40px;
    width: 100px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.title-list__header {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 15px;
}
.title-list__ebook-list {
  margin-top: 10px;
  font-size: small;
}
@media (max-width: 599px) {
  .title-list__ebook-list {
    column-count: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.title-list__ebook {
  margin: 10px 0;
}
.title-list__exports {
  display: inline-block;
}
.title-list__exports .button--small {
  margin: 0 5px;
}
@media (max-width: 599px) {
  .title-list__exports {
    margin: 10px 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.title-list__label {
  font-size: small;
}
.title-list .titleListSorter {
  float: right;
}
.topic-finder__layout {
  display: grid;
  grid-template-rows: min-content min-content auto;
  grid-row-gap: 20px;
  min-height: 600px;
}
@media (max-width: 599px) {
  .topic-finder__layout {
    min-height: 400px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carrot__preview-image {
  grid-column: 1 / 3;
  background: url("../images/topic-finder-preview.png") center no-repeat;
  position: relative;
  opacity: 0.5;
  width: 100%;
  background-size: contain;
}
.carrot__header,
.carrot__search-bar {
  grid-column: 1 / 3;
}
.carrot__search-bar .searchTerm {
  margin-top: 1em;
}
.carrot__graph {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  border-top: 1px solid #d6d6d6;
  padding-top: 1em;
}
@media (max-width: 599px) {
  .carrot__graph {
    display: block;
    grid-template-columns: unset;
    grid-column-gap: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 1024px) {
  .carrot__graph {
    display: block;
    grid-template-columns: unset;
    grid-column-gap: unset;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carrot__tip {
  grid-column: 1;
  grid-row: 2;
}
.carrot__tip-label {
  margin: 1em 0 0.5em 0;
}
.carrot__results {
  grid-column: 2;
  grid-row: 1;
  max-height: 600px;
  overflow: auto;
}
.carrot__results .search-topic {
  font-weight: bold;
  color: #d54405;
  margin-right: 5px;
}
@media (max-width: 1024px) {
  .carrot__results {
    margin-top: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
@media (max-width: 599px) {
  .carrot__results {
    margin-top: 20px;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.carrot__visualization {
  margin: auto;
}
.carrot__visualization-selector {
  margin: 1em 0;
}
.carrot__visualization-selector > * {
  margin-right: 0.5em;
}
.subheader .hitHighlite {
  color: #d54405;
  font-weight: bold;
  padding-left: 5px;
}
.lti-embed-view .lti-container,
.lti-embed-view .footer-wrapper,
.lti-embed-view .header-wrapper {
  display: none;
}
.workflow .homepageWrapper {
  height: 375px;
}
.workflow.workflow-home .navbar {
  display: none;
}
.workflow.workflow-home .extraLinks {
  margin: -56px -40px 0 0;
}
.workflow .extraLinks {
  height: 100%;
  float: right;
  font-size: 14px;
}
.workflow .extraLinks .navigation {
  margin: 20px 0;
}
.workflow .extraLinks .navigation .right > * {
  margin-left: 3em;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .workflow .extraLinks .navigation .right > * {
    margin-left: 0;
    /* stylelint-disable-line at-rule-no-unknown */
  }
}
.workflow .bucket-wrapper__image-wrapper {
  padding: 2em;
  background: linear-gradient(135deg, #7296a8 0%, #292f40 100%);
  background-size: cover;
  display: block;
  position: relative;
}
.workflow .bucket-wrapper__image-wrapper--image {
  background: url('../images/icfe_home-bg.svg') center right no-repeat;
  object-fit: cover;
  right: 20px;
  top: 20px;
  position: absolute;
  min-height: 500px;
  width: 60%;
}
.workflow .card__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.workflow .card__body {
  display: flex;
  flex-direction: column;
  height: 97%;
}
.workflow .card__body .description {
  flex-grow: 1;
}
.workflow .card__body .button {
  align-self: baseline;
  margin-bottom: 1em;
  white-space: nowrap;
}
.workflow .card__body .list-item {
  padding: 0.5em 0;
}
.workflow .card__body .unordered-list {
  margin-bottom: 1em;
}
.workflow .card__body-image--curriculum {
  background: url("../images/icfe_home_curriculum-standards-map.svg") center no-repeat;
  object-fit: contain;
  align-self: center;
  height: 120%;
}
.workflow .card__body-image--subjects {
  background: url("../images/icfe_home_subject-browse.svg") center no-repeat;
  object-fit: contain;
  align-self: center;
  height: 120%;
}
/*!
 * Font Awesome Pro 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}
.fa-xs {
  font-size: 0.75em;
}
.fa-sm {
  font-size: 0.875em;
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}
.fa-border {
  border-radius: 0.1em;
  border: solid 0.08em #eee;
  padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}
.fa-abacus:before {
  content: "\f640";
}
.fa-accessible-icon:before {
  content: "\f368";
}
.fa-accusoft:before {
  content: "\f369";
}
.fa-acorn:before {
  content: "\f6ae";
}
.fa-acquisitions-incorporated:before {
  content: "\f6af";
}
.fa-ad:before {
  content: "\f641";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-card:before {
  content: "\f2bb";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-adn:before {
  content: "\f170";
}
.fa-adobe:before {
  content: "\f778";
}
.fa-adversal:before {
  content: "\f36a";
}
.fa-affiliatetheme:before {
  content: "\f36b";
}
.fa-air-freshener:before {
  content: "\f5d0";
}
.fa-airbnb:before {
  content: "\f834";
}
.fa-alarm-clock:before {
  content: "\f34e";
}
.fa-alarm-exclamation:before {
  content: "\f843";
}
.fa-alarm-plus:before {
  content: "\f844";
}
.fa-alarm-snooze:before {
  content: "\f845";
}
.fa-album:before {
  content: "\f89f";
}
.fa-album-collection:before {
  content: "\f8a0";
}
.fa-algolia:before {
  content: "\f36c";
}
.fa-alicorn:before {
  content: "\f6b0";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-slash:before {
  content: "\f846";
}
.fa-alipay:before {
  content: "\f642";
}
.fa-allergies:before {
  content: "\f461";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-amazon-pay:before {
  content: "\f42c";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-amilia:before {
  content: "\f36d";
}
.fa-amp-guitar:before {
  content: "\f8a1";
}
.fa-analytics:before {
  content: "\f643";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-android:before {
  content: "\f17b";
}
.fa-angel:before {
  content: "\f779";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angry:before {
  content: "\f556";
}
.fa-angrycreative:before {
  content: "\f36e";
}
.fa-angular:before {
  content: "\f420";
}
.fa-ankh:before {
  content: "\f644";
}
.fa-app-store:before {
  content: "\f36f";
}
.fa-app-store-ios:before {
  content: "\f370";
}
.fa-apper:before {
  content: "\f371";
}
.fa-apple:before {
  content: "\f179";
}
.fa-apple-alt:before {
  content: "\f5d1";
}
.fa-apple-crate:before {
  content: "\f6b1";
}
.fa-apple-pay:before {
  content: "\f415";
}
.fa-archive:before {
  content: "\f187";
}
.fa-archway:before {
  content: "\f557";
}
.fa-arrow-alt-circle-down:before {
  content: "\f358";
}
.fa-arrow-alt-circle-left:before {
  content: "\f359";
}
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}
.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}
.fa-arrow-alt-down:before {
  content: "\f354";
}
.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}
.fa-arrow-alt-from-left:before {
  content: "\f347";
}
.fa-arrow-alt-from-right:before {
  content: "\f348";
}
.fa-arrow-alt-from-top:before {
  content: "\f349";
}
.fa-arrow-alt-left:before {
  content: "\f355";
}
.fa-arrow-alt-right:before {
  content: "\f356";
}
.fa-arrow-alt-square-down:before {
  content: "\f350";
}
.fa-arrow-alt-square-left:before {
  content: "\f351";
}
.fa-arrow-alt-square-right:before {
  content: "\f352";
}
.fa-arrow-alt-square-up:before {
  content: "\f353";
}
.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}
.fa-arrow-alt-to-left:before {
  content: "\f34b";
}
.fa-arrow-alt-to-right:before {
  content: "\f34c";
}
.fa-arrow-alt-to-top:before {
  content: "\f34d";
}
.fa-arrow-alt-up:before {
  content: "\f357";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-arrow-from-bottom:before {
  content: "\f342";
}
.fa-arrow-from-left:before {
  content: "\f343";
}
.fa-arrow-from-right:before {
  content: "\f344";
}
.fa-arrow-from-top:before {
  content: "\f345";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-square-down:before {
  content: "\f339";
}
.fa-arrow-square-left:before {
  content: "\f33a";
}
.fa-arrow-square-right:before {
  content: "\f33b";
}
.fa-arrow-square-up:before {
  content: "\f33c";
}
.fa-arrow-to-bottom:before {
  content: "\f33d";
}
.fa-arrow-to-left:before {
  content: "\f33e";
}
.fa-arrow-to-right:before {
  content: "\f340";
}
.fa-arrow-to-top:before {
  content: "\f341";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-arrows-alt-h:before {
  content: "\f337";
}
.fa-arrows-alt-v:before {
  content: "\f338";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-artstation:before {
  content: "\f77a";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-asymmetrik:before {
  content: "\f372";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-atlas:before {
  content: "\f558";
}
.fa-atlassian:before {
  content: "\f77b";
}
.fa-atom:before {
  content: "\f5d2";
}
.fa-atom-alt:before {
  content: "\f5d3";
}
.fa-audible:before {
  content: "\f373";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-autoprefixer:before {
  content: "\f41c";
}
.fa-avianex:before {
  content: "\f374";
}
.fa-aviato:before {
  content: "\f421";
}
.fa-award:before {
  content: "\f559";
}
.fa-aws:before {
  content: "\f375";
}
.fa-axe:before {
  content: "\f6b2";
}
.fa-axe-battle:before {
  content: "\f6b3";
}
.fa-baby:before {
  content: "\f77c";
}
.fa-baby-carriage:before {
  content: "\f77d";
}
.fa-backpack:before {
  content: "\f5d4";
}
.fa-backspace:before {
  content: "\f55a";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-bacon:before {
  content: "\f7e5";
}
.fa-badge:before {
  content: "\f335";
}
.fa-badge-check:before {
  content: "\f336";
}
.fa-badge-dollar:before {
  content: "\f645";
}
.fa-badge-percent:before {
  content: "\f646";
}
.fa-badge-sheriff:before {
  content: "\f8a2";
}
.fa-badger-honey:before {
  content: "\f6b4";
}
.fa-bags-shopping:before {
  content: "\f847";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-balance-scale-left:before {
  content: "\f515";
}
.fa-balance-scale-right:before {
  content: "\f516";
}
.fa-ball-pile:before {
  content: "\f77e";
}
.fa-ballot:before {
  content: "\f732";
}
.fa-ballot-check:before {
  content: "\f733";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-band-aid:before {
  content: "\f462";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-banjo:before {
  content: "\f8a3";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-barcode-alt:before {
  content: "\f463";
}
.fa-barcode-read:before {
  content: "\f464";
}
.fa-barcode-scan:before {
  content: "\f465";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-baseball:before {
  content: "\f432";
}
.fa-baseball-ball:before {
  content: "\f433";
}
.fa-basketball-ball:before {
  content: "\f434";
}
.fa-basketball-hoop:before {
  content: "\f435";
}
.fa-bat:before {
  content: "\f6b5";
}
.fa-bath:before {
  content: "\f2cd";
}
.fa-battery-bolt:before {
  content: "\f376";
}
.fa-battery-empty:before {
  content: "\f244";
}
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-slash:before {
  content: "\f377";
}
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battle-net:before {
  content: "\f835";
}
.fa-bed:before {
  content: "\f236";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-bell-exclamation:before {
  content: "\f848";
}
.fa-bell-plus:before {
  content: "\f849";
}
.fa-bell-school:before {
  content: "\f5d5";
}
.fa-bell-school-slash:before {
  content: "\f5d6";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bells:before {
  content: "\f77f";
}
.fa-betamax:before {
  content: "\f8a4";
}
.fa-bezier-curve:before {
  content: "\f55b";
}
.fa-bible:before {
  content: "\f647";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-biking:before {
  content: "\f84a";
}
.fa-biking-mountain:before {
  content: "\f84b";
}
.fa-bimobject:before {
  content: "\f378";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-biohazard:before {
  content: "\f780";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitcoin:before {
  content: "\f379";
}
.fa-bity:before {
  content: "\f37a";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-blackberry:before {
  content: "\f37b";
}
.fa-blanket:before {
  content: "\f498";
}
.fa-blender:before {
  content: "\f517";
}
.fa-blender-phone:before {
  content: "\f6b6";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-blog:before {
  content: "\f781";
}
.fa-blogger:before {
  content: "\f37c";
}
.fa-blogger-b:before {
  content: "\f37d";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-bold:before {
  content: "\f032";
}
.fa-bolt:before {
  content: "\f0e7";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-bone:before {
  content: "\f5d7";
}
.fa-bone-break:before {
  content: "\f5d8";
}
.fa-bong:before {
  content: "\f55c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-book-alt:before {
  content: "\f5d9";
}
.fa-book-dead:before {
  content: "\f6b7";
}
.fa-book-heart:before {
  content: "\f499";
}
.fa-book-medical:before {
  content: "\f7e6";
}
.fa-book-open:before {
  content: "\f518";
}
.fa-book-reader:before {
  content: "\f5da";
}
.fa-book-spells:before {
  content: "\f6b8";
}
.fa-book-user:before {
  content: "\f7e7";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-books:before {
  content: "\f5db";
}
.fa-books-medical:before {
  content: "\f7e8";
}
.fa-boombox:before {
  content: "\f8a5";
}
.fa-boot:before {
  content: "\f782";
}
.fa-booth-curtain:before {
  content: "\f734";
}
.fa-bootstrap:before {
  content: "\f836";
}
.fa-border-all:before {
  content: "\f84c";
}
.fa-border-bottom:before {
  content: "\f84d";
}
.fa-border-center-h:before {
  content: "\f89c";
}
.fa-border-center-v:before {
  content: "\f89d";
}
.fa-border-inner:before {
  content: "\f84e";
}
.fa-border-left:before {
  content: "\f84f";
}
.fa-border-none:before {
  content: "\f850";
}
.fa-border-outer:before {
  content: "\f851";
}
.fa-border-right:before {
  content: "\f852";
}
.fa-border-style:before {
  content: "\f853";
}
.fa-border-style-alt:before {
  content: "\f854";
}
.fa-border-top:before {
  content: "\f855";
}
.fa-bow-arrow:before {
  content: "\f6b9";
}
.fa-bowling-ball:before {
  content: "\f436";
}
.fa-bowling-pins:before {
  content: "\f437";
}
.fa-box:before {
  content: "\f466";
}
.fa-box-alt:before {
  content: "\f49a";
}
.fa-box-ballot:before {
  content: "\f735";
}
.fa-box-check:before {
  content: "\f467";
}
.fa-box-fragile:before {
  content: "\f49b";
}
.fa-box-full:before {
  content: "\f49c";
}
.fa-box-heart:before {
  content: "\f49d";
}
.fa-box-open:before {
  content: "\f49e";
}
.fa-box-up:before {
  content: "\f49f";
}
.fa-box-usd:before {
  content: "\f4a0";
}
.fa-boxes:before {
  content: "\f468";
}
.fa-boxes-alt:before {
  content: "\f4a1";
}
.fa-boxing-glove:before {
  content: "\f438";
}
.fa-brackets:before {
  content: "\f7e9";
}
.fa-brackets-curly:before {
  content: "\f7ea";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-brain:before {
  content: "\f5dc";
}
.fa-bread-loaf:before {
  content: "\f7eb";
}
.fa-bread-slice:before {
  content: "\f7ec";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-briefcase-medical:before {
  content: "\f469";
}
.fa-bring-forward:before {
  content: "\f856";
}
.fa-bring-front:before {
  content: "\f857";
}
.fa-broadcast-tower:before {
  content: "\f519";
}
.fa-broom:before {
  content: "\f51a";
}
.fa-browser:before {
  content: "\f37e";
}
.fa-brush:before {
  content: "\f55d";
}
.fa-btc:before {
  content: "\f15a";
}
.fa-buffer:before {
  content: "\f837";
}
.fa-bug:before {
  content: "\f188";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-bullseye-arrow:before {
  content: "\f648";
}
.fa-bullseye-pointer:before {
  content: "\f649";
}
.fa-burger-soda:before {
  content: "\f858";
}
.fa-burn:before {
  content: "\f46a";
}
.fa-buromobelexperte:before {
  content: "\f37f";
}
.fa-burrito:before {
  content: "\f7ed";
}
.fa-bus:before {
  content: "\f207";
}
.fa-bus-alt:before {
  content: "\f55e";
}
.fa-bus-school:before {
  content: "\f5dd";
}
.fa-business-time:before {
  content: "\f64a";
}
.fa-buy-n-large:before {
  content: "\f8a6";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-cabinet-filing:before {
  content: "\f64b";
}
.fa-cactus:before {
  content: "\f8a7";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-calculator-alt:before {
  content: "\f64c";
}
.fa-calendar:before {
  content: "\f133";
}
.fa-calendar-alt:before {
  content: "\f073";
}
.fa-calendar-check:before {
  content: "\f274";
}
.fa-calendar-day:before {
  content: "\f783";
}
.fa-calendar-edit:before {
  content: "\f333";
}
.fa-calendar-exclamation:before {
  content: "\f334";
}
.fa-calendar-minus:before {
  content: "\f272";
}
.fa-calendar-plus:before {
  content: "\f271";
}
.fa-calendar-star:before {
  content: "\f736";
}
.fa-calendar-times:before {
  content: "\f273";
}
.fa-calendar-week:before {
  content: "\f784";
}
.fa-camcorder:before {
  content: "\f8a8";
}
.fa-camera:before {
  content: "\f030";
}
.fa-camera-alt:before {
  content: "\f332";
}
.fa-camera-movie:before {
  content: "\f8a9";
}
.fa-camera-polaroid:before {
  content: "\f8aa";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-campfire:before {
  content: "\f6ba";
}
.fa-campground:before {
  content: "\f6bb";
}
.fa-canadian-maple-leaf:before {
  content: "\f785";
}
.fa-candle-holder:before {
  content: "\f6bc";
}
.fa-candy-cane:before {
  content: "\f786";
}
.fa-candy-corn:before {
  content: "\f6bd";
}
.fa-cannabis:before {
  content: "\f55f";
}
.fa-capsules:before {
  content: "\f46b";
}
.fa-car:before {
  content: "\f1b9";
}
.fa-car-alt:before {
  content: "\f5de";
}
.fa-car-battery:before {
  content: "\f5df";
}
.fa-car-building:before {
  content: "\f859";
}
.fa-car-bump:before {
  content: "\f5e0";
}
.fa-car-bus:before {
  content: "\f85a";
}
.fa-car-crash:before {
  content: "\f5e1";
}
.fa-car-garage:before {
  content: "\f5e2";
}
.fa-car-mechanic:before {
  content: "\f5e3";
}
.fa-car-side:before {
  content: "\f5e4";
}
.fa-car-tilt:before {
  content: "\f5e5";
}
.fa-car-wash:before {
  content: "\f5e6";
}
.fa-caret-circle-down:before {
  content: "\f32d";
}
.fa-caret-circle-left:before {
  content: "\f32e";
}
.fa-caret-circle-right:before {
  content: "\f330";
}
.fa-caret-circle-up:before {
  content: "\f331";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-caret-square-down:before {
  content: "\f150";
}
.fa-caret-square-left:before {
  content: "\f191";
}
.fa-caret-square-right:before {
  content: "\f152";
}
.fa-caret-square-up:before {
  content: "\f151";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-carrot:before {
  content: "\f787";
}
.fa-cars:before {
  content: "\f85b";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cash-register:before {
  content: "\f788";
}
.fa-cassette-tape:before {
  content: "\f8ab";
}
.fa-cat:before {
  content: "\f6be";
}
.fa-cauldron:before {
  content: "\f6bf";
}
.fa-cc-amazon-pay:before {
  content: "\f42d";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-apple-pay:before {
  content: "\f416";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cctv:before {
  content: "\f8ac";
}
.fa-centercode:before {
  content: "\f380";
}
.fa-centos:before {
  content: "\f789";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-chair:before {
  content: "\f6c0";
}
.fa-chair-office:before {
  content: "\f6c1";
}
.fa-chalkboard:before {
  content: "\f51b";
}
.fa-chalkboard-teacher:before {
  content: "\f51c";
}
.fa-charging-station:before {
  content: "\f5e7";
}
.fa-chart-area:before {
  content: "\f1fe";
}
.fa-chart-bar:before {
  content: "\f080";
}
.fa-chart-line:before {
  content: "\f201";
}
.fa-chart-line-down:before {
  content: "\f64d";
}
.fa-chart-network:before {
  content: "\f78a";
}
.fa-chart-pie:before {
  content: "\f200";
}
.fa-chart-pie-alt:before {
  content: "\f64e";
}
.fa-chart-scatter:before {
  content: "\f7ee";
}
.fa-check:before {
  content: "\f00c";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-check-double:before {
  content: "\f560";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-cheese:before {
  content: "\f7ef";
}
.fa-cheese-swiss:before {
  content: "\f7f0";
}
.fa-cheeseburger:before {
  content: "\f7f1";
}
.fa-chess:before {
  content: "\f439";
}
.fa-chess-bishop:before {
  content: "\f43a";
}
.fa-chess-bishop-alt:before {
  content: "\f43b";
}
.fa-chess-board:before {
  content: "\f43c";
}
.fa-chess-clock:before {
  content: "\f43d";
}
.fa-chess-clock-alt:before {
  content: "\f43e";
}
.fa-chess-king:before {
  content: "\f43f";
}
.fa-chess-king-alt:before {
  content: "\f440";
}
.fa-chess-knight:before {
  content: "\f441";
}
.fa-chess-knight-alt:before {
  content: "\f442";
}
.fa-chess-pawn:before {
  content: "\f443";
}
.fa-chess-pawn-alt:before {
  content: "\f444";
}
.fa-chess-queen:before {
  content: "\f445";
}
.fa-chess-queen-alt:before {
  content: "\f446";
}
.fa-chess-rook:before {
  content: "\f447";
}
.fa-chess-rook-alt:before {
  content: "\f448";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-double-down:before {
  content: "\f322";
}
.fa-chevron-double-left:before {
  content: "\f323";
}
.fa-chevron-double-right:before {
  content: "\f324";
}
.fa-chevron-double-up:before {
  content: "\f325";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-square-down:before {
  content: "\f329";
}
.fa-chevron-square-left:before {
  content: "\f32a";
}
.fa-chevron-square-right:before {
  content: "\f32b";
}
.fa-chevron-square-up:before {
  content: "\f32c";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-chimney:before {
  content: "\f78b";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-chromecast:before {
  content: "\f838";
}
.fa-church:before {
  content: "\f51d";
}
.fa-circle:before {
  content: "\f111";
}
.fa-circle-notch:before {
  content: "\f1ce";
}
.fa-city:before {
  content: "\f64f";
}
.fa-clarinet:before {
  content: "\f8ad";
}
.fa-claw-marks:before {
  content: "\f6c2";
}
.fa-clinic-medical:before {
  content: "\f7f2";
}
.fa-clipboard:before {
  content: "\f328";
}
.fa-clipboard-check:before {
  content: "\f46c";
}
.fa-clipboard-list:before {
  content: "\f46d";
}
.fa-clipboard-list-check:before {
  content: "\f737";
}
.fa-clipboard-prescription:before {
  content: "\f5e8";
}
.fa-clipboard-user:before {
  content: "\f7f3";
}
.fa-clock:before {
  content: "\f017";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-closed-captioning:before {
  content: "\f20a";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-download-alt:before {
  content: "\f381";
}
.fa-cloud-drizzle:before {
  content: "\f738";
}
.fa-cloud-hail:before {
  content: "\f739";
}
.fa-cloud-hail-mixed:before {
  content: "\f73a";
}
.fa-cloud-meatball:before {
  content: "\f73b";
}
.fa-cloud-moon:before {
  content: "\f6c3";
}
.fa-cloud-moon-rain:before {
  content: "\f73c";
}
.fa-cloud-music:before {
  content: "\f8ae";
}
.fa-cloud-rain:before {
  content: "\f73d";
}
.fa-cloud-rainbow:before {
  content: "\f73e";
}
.fa-cloud-showers:before {
  content: "\f73f";
}
.fa-cloud-showers-heavy:before {
  content: "\f740";
}
.fa-cloud-sleet:before {
  content: "\f741";
}
.fa-cloud-snow:before {
  content: "\f742";
}
.fa-cloud-sun:before {
  content: "\f6c4";
}
.fa-cloud-sun-rain:before {
  content: "\f743";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-cloud-upload-alt:before {
  content: "\f382";
}
.fa-clouds:before {
  content: "\f744";
}
.fa-clouds-moon:before {
  content: "\f745";
}
.fa-clouds-sun:before {
  content: "\f746";
}
.fa-cloudscale:before {
  content: "\f383";
}
.fa-cloudsmith:before {
  content: "\f384";
}
.fa-cloudversify:before {
  content: "\f385";
}
.fa-club:before {
  content: "\f327";
}
.fa-cocktail:before {
  content: "\f561";
}
.fa-code:before {
  content: "\f121";
}
.fa-code-branch:before {
  content: "\f126";
}
.fa-code-commit:before {
  content: "\f386";
}
.fa-code-merge:before {
  content: "\f387";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-coffee-togo:before {
  content: "\f6c5";
}
.fa-coffin:before {
  content: "\f6c6";
}
.fa-cog:before {
  content: "\f013";
}
.fa-cogs:before {
  content: "\f085";
}
.fa-coin:before {
  content: "\f85c";
}
.fa-coins:before {
  content: "\f51e";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-comment:before {
  content: "\f075";
}
.fa-comment-alt:before {
  content: "\f27a";
}
.fa-comment-alt-check:before {
  content: "\f4a2";
}
.fa-comment-alt-dollar:before {
  content: "\f650";
}
.fa-comment-alt-dots:before {
  content: "\f4a3";
}
.fa-comment-alt-edit:before {
  content: "\f4a4";
}
.fa-comment-alt-exclamation:before {
  content: "\f4a5";
}
.fa-comment-alt-lines:before {
  content: "\f4a6";
}
.fa-comment-alt-medical:before {
  content: "\f7f4";
}
.fa-comment-alt-minus:before {
  content: "\f4a7";
}
.fa-comment-alt-music:before {
  content: "\f8af";
}
.fa-comment-alt-plus:before {
  content: "\f4a8";
}
.fa-comment-alt-slash:before {
  content: "\f4a9";
}
.fa-comment-alt-smile:before {
  content: "\f4aa";
}
.fa-comment-alt-times:before {
  content: "\f4ab";
}
.fa-comment-check:before {
  content: "\f4ac";
}
.fa-comment-dollar:before {
  content: "\f651";
}
.fa-comment-dots:before {
  content: "\f4ad";
}
.fa-comment-edit:before {
  content: "\f4ae";
}
.fa-comment-exclamation:before {
  content: "\f4af";
}
.fa-comment-lines:before {
  content: "\f4b0";
}
.fa-comment-medical:before {
  content: "\f7f5";
}
.fa-comment-minus:before {
  content: "\f4b1";
}
.fa-comment-music:before {
  content: "\f8b0";
}
.fa-comment-plus:before {
  content: "\f4b2";
}
.fa-comment-slash:before {
  content: "\f4b3";
}
.fa-comment-smile:before {
  content: "\f4b4";
}
.fa-comment-times:before {
  content: "\f4b5";
}
.fa-comments:before {
  content: "\f086";
}
.fa-comments-alt:before {
  content: "\f4b6";
}
.fa-comments-alt-dollar:before {
  content: "\f652";
}
.fa-comments-dollar:before {
  content: "\f653";
}
.fa-compact-disc:before {
  content: "\f51f";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-compass-slash:before {
  content: "\f5e9";
}
.fa-compress:before {
  content: "\f066";
}
.fa-compress-alt:before {
  content: "\f422";
}
.fa-compress-arrows-alt:before {
  content: "\f78c";
}
.fa-compress-wide:before {
  content: "\f326";
}
.fa-computer-classic:before {
  content: "\f8b1";
}
.fa-computer-speaker:before {
  content: "\f8b2";
}
.fa-concierge-bell:before {
  content: "\f562";
}
.fa-confluence:before {
  content: "\f78d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-construction:before {
  content: "\f85d";
}
.fa-container-storage:before {
  content: "\f4b7";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-conveyor-belt:before {
  content: "\f46e";
}
.fa-conveyor-belt-alt:before {
  content: "\f46f";
}
.fa-cookie:before {
  content: "\f563";
}
.fa-cookie-bite:before {
  content: "\f564";
}
.fa-copy:before {
  content: "\f0c5";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-corn:before {
  content: "\f6c7";
}
.fa-cotton-bureau:before {
  content: "\f89e";
}
.fa-couch:before {
  content: "\f4b8";
}
.fa-cow:before {
  content: "\f6c8";
}
.fa-cowbell:before {
  content: "\f8b3";
}
.fa-cowbell-more:before {
  content: "\f8b4";
}
.fa-cpanel:before {
  content: "\f388";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-creative-commons-by:before {
  content: "\f4e7";
}
.fa-creative-commons-nc:before {
  content: "\f4e8";
}
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}
.fa-creative-commons-nd:before {
  content: "\f4eb";
}
.fa-creative-commons-pd:before {
  content: "\f4ec";
}
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}
.fa-creative-commons-remix:before {
  content: "\f4ee";
}
.fa-creative-commons-sa:before {
  content: "\f4ef";
}
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}
.fa-creative-commons-share:before {
  content: "\f4f2";
}
.fa-creative-commons-zero:before {
  content: "\f4f3";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-credit-card-blank:before {
  content: "\f389";
}
.fa-credit-card-front:before {
  content: "\f38a";
}
.fa-cricket:before {
  content: "\f449";
}
.fa-critical-role:before {
  content: "\f6c9";
}
.fa-croissant:before {
  content: "\f7f6";
}
.fa-crop:before {
  content: "\f125";
}
.fa-crop-alt:before {
  content: "\f565";
}
.fa-cross:before {
  content: "\f654";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-crow:before {
  content: "\f520";
}
.fa-crown:before {
  content: "\f521";
}
.fa-crutch:before {
  content: "\f7f7";
}
.fa-crutches:before {
  content: "\f7f8";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-css3-alt:before {
  content: "\f38b";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-curling:before {
  content: "\f44a";
}
.fa-cut:before {
  content: "\f0c4";
}
.fa-cuttlefish:before {
  content: "\f38c";
}
.fa-d-and-d:before {
  content: "\f38d";
}
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}
.fa-dagger:before {
  content: "\f6cb";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-deaf:before {
  content: "\f2a4";
}
.fa-debug:before {
  content: "\f7f9";
}
.fa-deer:before {
  content: "\f78e";
}
.fa-deer-rudolph:before {
  content: "\f78f";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-democrat:before {
  content: "\f747";
}
.fa-deploydog:before {
  content: "\f38e";
}
.fa-deskpro:before {
  content: "\f38f";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-desktop-alt:before {
  content: "\f390";
}
.fa-dev:before {
  content: "\f6cc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-dewpoint:before {
  content: "\f748";
}
.fa-dharmachakra:before {
  content: "\f655";
}
.fa-dhl:before {
  content: "\f790";
}
.fa-diagnoses:before {
  content: "\f470";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-diaspora:before {
  content: "\f791";
}
.fa-dice:before {
  content: "\f522";
}
.fa-dice-d10:before {
  content: "\f6cd";
}
.fa-dice-d12:before {
  content: "\f6ce";
}
.fa-dice-d20:before {
  content: "\f6cf";
}
.fa-dice-d4:before {
  content: "\f6d0";
}
.fa-dice-d6:before {
  content: "\f6d1";
}
.fa-dice-d8:before {
  content: "\f6d2";
}
.fa-dice-five:before {
  content: "\f523";
}
.fa-dice-four:before {
  content: "\f524";
}
.fa-dice-one:before {
  content: "\f525";
}
.fa-dice-six:before {
  content: "\f526";
}
.fa-dice-three:before {
  content: "\f527";
}
.fa-dice-two:before {
  content: "\f528";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-digging:before {
  content: "\f85e";
}
.fa-digital-ocean:before {
  content: "\f391";
}
.fa-digital-tachograph:before {
  content: "\f566";
}
.fa-diploma:before {
  content: "\f5ea";
}
.fa-directions:before {
  content: "\f5eb";
}
.fa-disc-drive:before {
  content: "\f8b5";
}
.fa-discord:before {
  content: "\f392";
}
.fa-discourse:before {
  content: "\f393";
}
.fa-disease:before {
  content: "\f7fa";
}
.fa-divide:before {
  content: "\f529";
}
.fa-dizzy:before {
  content: "\f567";
}
.fa-dna:before {
  content: "\f471";
}
.fa-do-not-enter:before {
  content: "\f5ec";
}
.fa-dochub:before {
  content: "\f394";
}
.fa-docker:before {
  content: "\f395";
}
.fa-dog:before {
  content: "\f6d3";
}
.fa-dog-leashed:before {
  content: "\f6d4";
}
.fa-dollar-sign:before {
  content: "\f155";
}
.fa-dolly:before {
  content: "\f472";
}
.fa-dolly-empty:before {
  content: "\f473";
}
.fa-dolly-flatbed:before {
  content: "\f474";
}
.fa-dolly-flatbed-alt:before {
  content: "\f475";
}
.fa-dolly-flatbed-empty:before {
  content: "\f476";
}
.fa-donate:before {
  content: "\f4b9";
}
.fa-door-closed:before {
  content: "\f52a";
}
.fa-door-open:before {
  content: "\f52b";
}
.fa-dot-circle:before {
  content: "\f192";
}
.fa-dove:before {
  content: "\f4ba";
}
.fa-download:before {
  content: "\f019";
}
.fa-draft2digital:before {
  content: "\f396";
}
.fa-drafting-compass:before {
  content: "\f568";
}
.fa-dragon:before {
  content: "\f6d5";
}
.fa-draw-circle:before {
  content: "\f5ed";
}
.fa-draw-polygon:before {
  content: "\f5ee";
}
.fa-draw-square:before {
  content: "\f5ef";
}
.fa-dreidel:before {
  content: "\f792";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-dribbble-square:before {
  content: "\f397";
}
.fa-drone:before {
  content: "\f85f";
}
.fa-drone-alt:before {
  content: "\f860";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-drum:before {
  content: "\f569";
}
.fa-drum-steelpan:before {
  content: "\f56a";
}
.fa-drumstick:before {
  content: "\f6d6";
}
.fa-drumstick-bite:before {
  content: "\f6d7";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-dryer:before {
  content: "\f861";
}
.fa-dryer-alt:before {
  content: "\f862";
}
.fa-duck:before {
  content: "\f6d8";
}
.fa-dumbbell:before {
  content: "\f44b";
}
.fa-dumpster:before {
  content: "\f793";
}
.fa-dumpster-fire:before {
  content: "\f794";
}
.fa-dungeon:before {
  content: "\f6d9";
}
.fa-dyalog:before {
  content: "\f399";
}
.fa-ear:before {
  content: "\f5f0";
}
.fa-ear-muffs:before {
  content: "\f795";
}
.fa-earlybirds:before {
  content: "\f39a";
}
.fa-ebay:before {
  content: "\f4f4";
}
.fa-eclipse:before {
  content: "\f749";
}
.fa-eclipse-alt:before {
  content: "\f74a";
}
.fa-edge:before {
  content: "\f282";
}
.fa-edit:before {
  content: "\f044";
}
.fa-egg:before {
  content: "\f7fb";
}
.fa-egg-fried:before {
  content: "\f7fc";
}
.fa-eject:before {
  content: "\f052";
}
.fa-elementor:before {
  content: "\f430";
}
.fa-elephant:before {
  content: "\f6da";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-h-alt:before {
  content: "\f39b";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-ellipsis-v-alt:before {
  content: "\f39c";
}
.fa-ello:before {
  content: "\f5f1";
}
.fa-ember:before {
  content: "\f423";
}
.fa-empire:before {
  content: "\f1d1";
}
.fa-empty-set:before {
  content: "\f656";
}
.fa-engine-warning:before {
  content: "\f5f2";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-dollar:before {
  content: "\f657";
}
.fa-envelope-open-text:before {
  content: "\f658";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-envira:before {
  content: "\f299";
}
.fa-equals:before {
  content: "\f52c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-erlang:before {
  content: "\f39d";
}
.fa-ethereum:before {
  content: "\f42e";
}
.fa-ethernet:before {
  content: "\f796";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-euro-sign:before {
  content: "\f153";
}
.fa-evernote:before {
  content: "\f839";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-exchange-alt:before {
  content: "\f362";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-exclamation-square:before {
  content: "\f321";
}
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-expand:before {
  content: "\f065";
}
.fa-expand-alt:before {
  content: "\f424";
}
.fa-expand-arrows:before {
  content: "\f31d";
}
.fa-expand-arrows-alt:before {
  content: "\f31e";
}
.fa-expand-wide:before {
  content: "\f320";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-external-link-alt:before {
  content: "\f35d";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-external-link-square-alt:before {
  content: "\f360";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-dropper:before {
  content: "\f1fb";
}
.fa-eye-evil:before {
  content: "\f6db";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-facebook-messenger:before {
  content: "\f39f";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-fan:before {
  content: "\f863";
}
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}
.fa-farm:before {
  content: "\f864";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-feather:before {
  content: "\f52d";
}
.fa-feather-alt:before {
  content: "\f56b";
}
.fa-fedex:before {
  content: "\f797";
}
.fa-fedora:before {
  content: "\f798";
}
.fa-female:before {
  content: "\f182";
}
.fa-field-hockey:before {
  content: "\f44c";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-figma:before {
  content: "\f799";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-alt:before {
  content: "\f15c";
}
.fa-file-archive:before {
  content: "\f1c6";
}
.fa-file-audio:before {
  content: "\f1c7";
}
.fa-file-certificate:before {
  content: "\f5f3";
}
.fa-file-chart-line:before {
  content: "\f659";
}
.fa-file-chart-pie:before {
  content: "\f65a";
}
.fa-file-check:before {
  content: "\f316";
}
.fa-file-code:before {
  content: "\f1c9";
}
.fa-file-contract:before {
  content: "\f56c";
}
.fa-file-csv:before {
  content: "\f6dd";
}
.fa-file-download:before {
  content: "\f56d";
}
.fa-file-edit:before {
  content: "\f31c";
}
.fa-file-excel:before {
  content: "\f1c3";
}
.fa-file-exclamation:before {
  content: "\f31a";
}
.fa-file-export:before {
  content: "\f56e";
}
.fa-file-image:before {
  content: "\f1c5";
}
.fa-file-import:before {
  content: "\f56f";
}
.fa-file-invoice:before {
  content: "\f570";
}
.fa-file-invoice-dollar:before {
  content: "\f571";
}
.fa-file-medical:before {
  content: "\f477";
}
.fa-file-medical-alt:before {
  content: "\f478";
}
.fa-file-minus:before {
  content: "\f318";
}
.fa-file-music:before {
  content: "\f8b6";
}
.fa-file-pdf:before {
  content: "\f1c1";
}
.fa-file-plus:before {
  content: "\f319";
}
.fa-file-powerpoint:before {
  content: "\f1c4";
}
.fa-file-prescription:before {
  content: "\f572";
}
.fa-file-search:before {
  content: "\f865";
}
.fa-file-signature:before {
  content: "\f573";
}
.fa-file-spreadsheet:before {
  content: "\f65b";
}
.fa-file-times:before {
  content: "\f317";
}
.fa-file-upload:before {
  content: "\f574";
}
.fa-file-user:before {
  content: "\f65c";
}
.fa-file-video:before {
  content: "\f1c8";
}
.fa-file-word:before {
  content: "\f1c2";
}
.fa-files-medical:before {
  content: "\f7fd";
}
.fa-fill:before {
  content: "\f575";
}
.fa-fill-drip:before {
  content: "\f576";
}
.fa-film:before {
  content: "\f008";
}
.fa-film-alt:before {
  content: "\f3a0";
}
.fa-film-canister:before {
  content: "\f8b7";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-fingerprint:before {
  content: "\f577";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-fire-alt:before {
  content: "\f7e4";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-fire-smoke:before {
  content: "\f74b";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-fireplace:before {
  content: "\f79a";
}
.fa-first-aid:before {
  content: "\f479";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-first-order-alt:before {
  content: "\f50a";
}
.fa-firstdraft:before {
  content: "\f3a1";
}
.fa-fish:before {
  content: "\f578";
}
.fa-fish-cooked:before {
  content: "\f7fe";
}
.fa-fist-raised:before {
  content: "\f6de";
}
.fa-flag:before {
  content: "\f024";
}
.fa-flag-alt:before {
  content: "\f74c";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-flag-usa:before {
  content: "\f74d";
}
.fa-flame:before {
  content: "\f6df";
}
.fa-flashlight:before {
  content: "\f8b8";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-flask-poison:before {
  content: "\f6e0";
}
.fa-flask-potion:before {
  content: "\f6e1";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-flipboard:before {
  content: "\f44d";
}
.fa-flower:before {
  content: "\f7ff";
}
.fa-flower-daffodil:before {
  content: "\f800";
}
.fa-flower-tulip:before {
  content: "\f801";
}
.fa-flushed:before {
  content: "\f579";
}
.fa-flute:before {
  content: "\f8b9";
}
.fa-flux-capacitor:before {
  content: "\f8ba";
}
.fa-fly:before {
  content: "\f417";
}
.fa-fog:before {
  content: "\f74e";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-minus:before {
  content: "\f65d";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-folder-plus:before {
  content: "\f65e";
}
.fa-folder-times:before {
  content: "\f65f";
}
.fa-folder-tree:before {
  content: "\f802";
}
.fa-folders:before {
  content: "\f660";
}
.fa-font:before {
  content: "\f031";
}
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-font-awesome-alt:before {
  content: "\f35c";
}
.fa-font-awesome-flag:before {
  content: "\f425";
}
.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}
.fa-font-case:before {
  content: "\f866";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-fonticons-fi:before {
  content: "\f3a2";
}
.fa-football-ball:before {
  content: "\f44e";
}
.fa-football-helmet:before {
  content: "\f44f";
}
.fa-forklift:before {
  content: "\f47a";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-fragile:before {
  content: "\f4bb";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-freebsd:before {
  content: "\f3a4";
}
.fa-french-fries:before {
  content: "\f803";
}
.fa-frog:before {
  content: "\f52e";
}
.fa-frosty-head:before {
  content: "\f79b";
}
.fa-frown:before {
  content: "\f119";
}
.fa-frown-open:before {
  content: "\f57a";
}
.fa-fulcrum:before {
  content: "\f50b";
}
.fa-function:before {
  content: "\f661";
}
.fa-funnel-dollar:before {
  content: "\f662";
}
.fa-futbol:before {
  content: "\f1e3";
}
.fa-galactic-republic:before {
  content: "\f50c";
}
.fa-galactic-senate:before {
  content: "\f50d";
}
.fa-game-board:before {
  content: "\f867";
}
.fa-game-board-alt:before {
  content: "\f868";
}
.fa-game-console-handheld:before {
  content: "\f8bb";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-gamepad-alt:before {
  content: "\f8bc";
}
.fa-gas-pump:before {
  content: "\f52f";
}
.fa-gas-pump-slash:before {
  content: "\f5f4";
}
.fa-gavel:before {
  content: "\f0e3";
}
.fa-gem:before {
  content: "\f3a5";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-ghost:before {
  content: "\f6e2";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-gift-card:before {
  content: "\f663";
}
.fa-gifts:before {
  content: "\f79c";
}
.fa-gingerbread-man:before {
  content: "\f79d";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-git-alt:before {
  content: "\f841";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-github:before {
  content: "\f09b";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-gitkraken:before {
  content: "\f3a6";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-gitter:before {
  content: "\f426";
}
.fa-glass:before {
  content: "\f804";
}
.fa-glass-champagne:before {
  content: "\f79e";
}
.fa-glass-cheers:before {
  content: "\f79f";
}
.fa-glass-citrus:before {
  content: "\f869";
}
.fa-glass-martini:before {
  content: "\f000";
}
.fa-glass-martini-alt:before {
  content: "\f57b";
}
.fa-glass-whiskey:before {
  content: "\f7a0";
}
.fa-glass-whiskey-rocks:before {
  content: "\f7a1";
}
.fa-glasses:before {
  content: "\f530";
}
.fa-glasses-alt:before {
  content: "\f5f5";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-globe-africa:before {
  content: "\f57c";
}
.fa-globe-americas:before {
  content: "\f57d";
}
.fa-globe-asia:before {
  content: "\f57e";
}
.fa-globe-europe:before {
  content: "\f7a2";
}
.fa-globe-snow:before {
  content: "\f7a3";
}
.fa-globe-stand:before {
  content: "\f5f6";
}
.fa-gofore:before {
  content: "\f3a7";
}
.fa-golf-ball:before {
  content: "\f450";
}
.fa-golf-club:before {
  content: "\f451";
}
.fa-goodreads:before {
  content: "\f3a8";
}
.fa-goodreads-g:before {
  content: "\f3a9";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-google-drive:before {
  content: "\f3aa";
}
.fa-google-play:before {
  content: "\f3ab";
}
.fa-google-plus:before {
  content: "\f2b3";
}
.fa-google-plus-g:before {
  content: "\f0d5";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-gopuram:before {
  content: "\f664";
}
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-gramophone:before {
  content: "\f8bd";
}
.fa-gratipay:before {
  content: "\f184";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-greater-than:before {
  content: "\f531";
}
.fa-greater-than-equal:before {
  content: "\f532";
}
.fa-grimace:before {
  content: "\f57f";
}
.fa-grin:before {
  content: "\f580";
}
.fa-grin-alt:before {
  content: "\f581";
}
.fa-grin-beam:before {
  content: "\f582";
}
.fa-grin-beam-sweat:before {
  content: "\f583";
}
.fa-grin-hearts:before {
  content: "\f584";
}
.fa-grin-squint:before {
  content: "\f585";
}
.fa-grin-squint-tears:before {
  content: "\f586";
}
.fa-grin-stars:before {
  content: "\f587";
}
.fa-grin-tears:before {
  content: "\f588";
}
.fa-grin-tongue:before {
  content: "\f589";
}
.fa-grin-tongue-squint:before {
  content: "\f58a";
}
.fa-grin-tongue-wink:before {
  content: "\f58b";
}
.fa-grin-wink:before {
  content: "\f58c";
}
.fa-grip-horizontal:before {
  content: "\f58d";
}
.fa-grip-lines:before {
  content: "\f7a4";
}
.fa-grip-lines-vertical:before {
  content: "\f7a5";
}
.fa-grip-vertical:before {
  content: "\f58e";
}
.fa-gripfire:before {
  content: "\f3ac";
}
.fa-grunt:before {
  content: "\f3ad";
}
.fa-guitar:before {
  content: "\f7a6";
}
.fa-guitar-electric:before {
  content: "\f8be";
}
.fa-guitars:before {
  content: "\f8bf";
}
.fa-gulp:before {
  content: "\f3ae";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-h1:before {
  content: "\f313";
}
.fa-h2:before {
  content: "\f314";
}
.fa-h3:before {
  content: "\f315";
}
.fa-h4:before {
  content: "\f86a";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-hacker-news-square:before {
  content: "\f3af";
}
.fa-hackerrank:before {
  content: "\f5f7";
}
.fa-hamburger:before {
  content: "\f805";
}
.fa-hammer:before {
  content: "\f6e3";
}
.fa-hammer-war:before {
  content: "\f6e4";
}
.fa-hamsa:before {
  content: "\f665";
}
.fa-hand-heart:before {
  content: "\f4bc";
}
.fa-hand-holding:before {
  content: "\f4bd";
}
.fa-hand-holding-box:before {
  content: "\f47b";
}
.fa-hand-holding-heart:before {
  content: "\f4be";
}
.fa-hand-holding-magic:before {
  content: "\f6e5";
}
.fa-hand-holding-seedling:before {
  content: "\f4bf";
}
.fa-hand-holding-usd:before {
  content: "\f4c0";
}
.fa-hand-holding-water:before {
  content: "\f4c1";
}
.fa-hand-lizard:before {
  content: "\f258";
}
.fa-hand-middle-finger:before {
  content: "\f806";
}
.fa-hand-paper:before {
  content: "\f256";
}
.fa-hand-peace:before {
  content: "\f25b";
}
.fa-hand-point-down:before {
  content: "\f0a7";
}
.fa-hand-point-left:before {
  content: "\f0a5";
}
.fa-hand-point-right:before {
  content: "\f0a4";
}
.fa-hand-point-up:before {
  content: "\f0a6";
}
.fa-hand-pointer:before {
  content: "\f25a";
}
.fa-hand-receiving:before {
  content: "\f47c";
}
.fa-hand-rock:before {
  content: "\f255";
}
.fa-hand-scissors:before {
  content: "\f257";
}
.fa-hand-spock:before {
  content: "\f259";
}
.fa-hands:before {
  content: "\f4c2";
}
.fa-hands-heart:before {
  content: "\f4c3";
}
.fa-hands-helping:before {
  content: "\f4c4";
}
.fa-hands-usd:before {
  content: "\f4c5";
}
.fa-handshake:before {
  content: "\f2b5";
}
.fa-handshake-alt:before {
  content: "\f4c6";
}
.fa-hanukiah:before {
  content: "\f6e6";
}
.fa-hard-hat:before {
  content: "\f807";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-hat-chef:before {
  content: "\f86b";
}
.fa-hat-cowboy:before {
  content: "\f8c0";
}
.fa-hat-cowboy-side:before {
  content: "\f8c1";
}
.fa-hat-santa:before {
  content: "\f7a7";
}
.fa-hat-winter:before {
  content: "\f7a8";
}
.fa-hat-witch:before {
  content: "\f6e7";
}
.fa-hat-wizard:before {
  content: "\f6e8";
}
.fa-haykal:before {
  content: "\f666";
}
.fa-hdd:before {
  content: "\f0a0";
}
.fa-head-side:before {
  content: "\f6e9";
}
.fa-head-side-brain:before {
  content: "\f808";
}
.fa-head-side-headphones:before {
  content: "\f8c2";
}
.fa-head-side-medical:before {
  content: "\f809";
}
.fa-head-vr:before {
  content: "\f6ea";
}
.fa-heading:before {
  content: "\f1dc";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-headphones-alt:before {
  content: "\f58f";
}
.fa-headset:before {
  content: "\f590";
}
.fa-heart:before {
  content: "\f004";
}
.fa-heart-broken:before {
  content: "\f7a9";
}
.fa-heart-circle:before {
  content: "\f4c7";
}
.fa-heart-rate:before {
  content: "\f5f8";
}
.fa-heart-square:before {
  content: "\f4c8";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-helicopter:before {
  content: "\f533";
}
.fa-helmet-battle:before {
  content: "\f6eb";
}
.fa-hexagon:before {
  content: "\f312";
}
.fa-highlighter:before {
  content: "\f591";
}
.fa-hiking:before {
  content: "\f6ec";
}
.fa-hippo:before {
  content: "\f6ed";
}
.fa-hips:before {
  content: "\f452";
}
.fa-hire-a-helper:before {
  content: "\f3b0";
}
.fa-history:before {
  content: "\f1da";
}
.fa-hockey-mask:before {
  content: "\f6ee";
}
.fa-hockey-puck:before {
  content: "\f453";
}
.fa-hockey-sticks:before {
  content: "\f454";
}
.fa-holly-berry:before {
  content: "\f7aa";
}
.fa-home:before {
  content: "\f015";
}
.fa-home-alt:before {
  content: "\f80a";
}
.fa-home-heart:before {
  content: "\f4c9";
}
.fa-home-lg:before {
  content: "\f80b";
}
.fa-home-lg-alt:before {
  content: "\f80c";
}
.fa-hood-cloak:before {
  content: "\f6ef";
}
.fa-hooli:before {
  content: "\f427";
}
.fa-horizontal-rule:before {
  content: "\f86c";
}
.fa-hornbill:before {
  content: "\f592";
}
.fa-horse:before {
  content: "\f6f0";
}
.fa-horse-head:before {
  content: "\f7ab";
}
.fa-horse-saddle:before {
  content: "\f8c3";
}
.fa-hospital:before {
  content: "\f0f8";
}
.fa-hospital-alt:before {
  content: "\f47d";
}
.fa-hospital-symbol:before {
  content: "\f47e";
}
.fa-hospital-user:before {
  content: "\f80d";
}
.fa-hospitals:before {
  content: "\f80e";
}
.fa-hot-tub:before {
  content: "\f593";
}
.fa-hotdog:before {
  content: "\f80f";
}
.fa-hotel:before {
  content: "\f594";
}
.fa-hotjar:before {
  content: "\f3b1";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-house-damage:before {
  content: "\f6f1";
}
.fa-house-flood:before {
  content: "\f74f";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-hryvnia:before {
  content: "\f6f2";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-hubspot:before {
  content: "\f3b2";
}
.fa-humidity:before {
  content: "\f750";
}
.fa-hurricane:before {
  content: "\f751";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-ice-cream:before {
  content: "\f810";
}
.fa-ice-skate:before {
  content: "\f7ac";
}
.fa-icicles:before {
  content: "\f7ad";
}
.fa-icons:before {
  content: "\f86d";
}
.fa-icons-alt:before {
  content: "\f86e";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-id-card:before {
  content: "\f2c2";
}
.fa-id-card-alt:before {
  content: "\f47f";
}
.fa-igloo:before {
  content: "\f7ae";
}
.fa-image:before {
  content: "\f03e";
}
.fa-image-polaroid:before {
  content: "\f8c4";
}
.fa-images:before {
  content: "\f302";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-inbox-in:before {
  content: "\f310";
}
.fa-inbox-out:before {
  content: "\f311";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-industry:before {
  content: "\f275";
}
.fa-industry-alt:before {
  content: "\f3b3";
}
.fa-infinity:before {
  content: "\f534";
}
.fa-info:before {
  content: "\f129";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-info-square:before {
  content: "\f30f";
}
.fa-inhaler:before {
  content: "\f5f9";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-integral:before {
  content: "\f667";
}
.fa-intercom:before {
  content: "\f7af";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-intersection:before {
  content: "\f668";
}
.fa-inventory:before {
  content: "\f480";
}
.fa-invision:before {
  content: "\f7b0";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-island-tropical:before {
  content: "\f811";
}
.fa-italic:before {
  content: "\f033";
}
.fa-itch-io:before {
  content: "\f83a";
}
.fa-itunes:before {
  content: "\f3b4";
}
.fa-itunes-note:before {
  content: "\f3b5";
}
.fa-jack-o-lantern:before {
  content: "\f30e";
}
.fa-java:before {
  content: "\f4e4";
}
.fa-jedi:before {
  content: "\f669";
}
.fa-jedi-order:before {
  content: "\f50e";
}
.fa-jenkins:before {
  content: "\f3b6";
}
.fa-jira:before {
  content: "\f7b1";
}
.fa-joget:before {
  content: "\f3b7";
}
.fa-joint:before {
  content: "\f595";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-journal-whills:before {
  content: "\f66a";
}
.fa-joystick:before {
  content: "\f8c5";
}
.fa-js:before {
  content: "\f3b8";
}
.fa-js-square:before {
  content: "\f3b9";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-jug:before {
  content: "\f8c6";
}
.fa-kaaba:before {
  content: "\f66b";
}
.fa-kaggle:before {
  content: "\f5fa";
}
.fa-kazoo:before {
  content: "\f8c7";
}
.fa-kerning:before {
  content: "\f86f";
}
.fa-key:before {
  content: "\f084";
}
.fa-key-skeleton:before {
  content: "\f6f3";
}
.fa-keybase:before {
  content: "\f4f5";
}
.fa-keyboard:before {
  content: "\f11c";
}
.fa-keycdn:before {
  content: "\f3ba";
}
.fa-keynote:before {
  content: "\f66c";
}
.fa-khanda:before {
  content: "\f66d";
}
.fa-kickstarter:before {
  content: "\f3bb";
}
.fa-kickstarter-k:before {
  content: "\f3bc";
}
.fa-kidneys:before {
  content: "\f5fb";
}
.fa-kiss:before {
  content: "\f596";
}
.fa-kiss-beam:before {
  content: "\f597";
}
.fa-kiss-wink-heart:before {
  content: "\f598";
}
.fa-kite:before {
  content: "\f6f4";
}
.fa-kiwi-bird:before {
  content: "\f535";
}
.fa-knife-kitchen:before {
  content: "\f6f5";
}
.fa-korvue:before {
  content: "\f42f";
}
.fa-lambda:before {
  content: "\f66e";
}
.fa-lamp:before {
  content: "\f4ca";
}
.fa-landmark:before {
  content: "\f66f";
}
.fa-landmark-alt:before {
  content: "\f752";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-laptop-code:before {
  content: "\f5fc";
}
.fa-laptop-medical:before {
  content: "\f812";
}
.fa-laravel:before {
  content: "\f3bd";
}
.fa-lasso:before {
  content: "\f8c8";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-laugh:before {
  content: "\f599";
}
.fa-laugh-beam:before {
  content: "\f59a";
}
.fa-laugh-squint:before {
  content: "\f59b";
}
.fa-laugh-wink:before {
  content: "\f59c";
}
.fa-layer-group:before {
  content: "\f5fd";
}
.fa-layer-minus:before {
  content: "\f5fe";
}
.fa-layer-plus:before {
  content: "\f5ff";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-leaf-heart:before {
  content: "\f4cb";
}
.fa-leaf-maple:before {
  content: "\f6f6";
}
.fa-leaf-oak:before {
  content: "\f6f7";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-lemon:before {
  content: "\f094";
}
.fa-less:before {
  content: "\f41d";
}
.fa-less-than:before {
  content: "\f536";
}
.fa-less-than-equal:before {
  content: "\f537";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-level-down-alt:before {
  content: "\f3be";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-up-alt:before {
  content: "\f3bf";
}
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-lightbulb:before {
  content: "\f0eb";
}
.fa-lightbulb-dollar:before {
  content: "\f670";
}
.fa-lightbulb-exclamation:before {
  content: "\f671";
}
.fa-lightbulb-on:before {
  content: "\f672";
}
.fa-lightbulb-slash:before {
  content: "\f673";
}
.fa-lights-holiday:before {
  content: "\f7b2";
}
.fa-line:before {
  content: "\f3c0";
}
.fa-line-columns:before {
  content: "\f870";
}
.fa-line-height:before {
  content: "\f871";
}
.fa-link:before {
  content: "\f0c1";
}
.fa-linkedin:before {
  content: "\f08c";
}
.fa-linkedin-in:before {
  content: "\f0e1";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-lips:before {
  content: "\f600";
}
.fa-lira-sign:before {
  content: "\f195";
}
.fa-list:before {
  content: "\f03a";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-list-music:before {
  content: "\f8c9";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-location:before {
  content: "\f601";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-location-circle:before {
  content: "\f602";
}
.fa-location-slash:before {
  content: "\f603";
}
.fa-lock:before {
  content: "\f023";
}
.fa-lock-alt:before {
  content: "\f30d";
}
.fa-lock-open:before {
  content: "\f3c1";
}
.fa-lock-open-alt:before {
  content: "\f3c2";
}
.fa-long-arrow-alt-down:before {
  content: "\f309";
}
.fa-long-arrow-alt-left:before {
  content: "\f30a";
}
.fa-long-arrow-alt-right:before {
  content: "\f30b";
}
.fa-long-arrow-alt-up:before {
  content: "\f30c";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-loveseat:before {
  content: "\f4cc";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-luchador:before {
  content: "\f455";
}
.fa-luggage-cart:before {
  content: "\f59d";
}
.fa-lungs:before {
  content: "\f604";
}
.fa-lyft:before {
  content: "\f3c3";
}
.fa-mace:before {
  content: "\f6f8";
}
.fa-magento:before {
  content: "\f3c4";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-mail-bulk:before {
  content: "\f674";
}
.fa-mailbox:before {
  content: "\f813";
}
.fa-mailchimp:before {
  content: "\f59e";
}
.fa-male:before {
  content: "\f183";
}
.fa-mandalorian:before {
  content: "\f50f";
}
.fa-mandolin:before {
  content: "\f6f9";
}
.fa-map:before {
  content: "\f279";
}
.fa-map-marked:before {
  content: "\f59f";
}
.fa-map-marked-alt:before {
  content: "\f5a0";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-map-marker-alt:before {
  content: "\f3c5";
}
.fa-map-marker-alt-slash:before {
  content: "\f605";
}
.fa-map-marker-check:before {
  content: "\f606";
}
.fa-map-marker-edit:before {
  content: "\f607";
}
.fa-map-marker-exclamation:before {
  content: "\f608";
}
.fa-map-marker-minus:before {
  content: "\f609";
}
.fa-map-marker-plus:before {
  content: "\f60a";
}
.fa-map-marker-question:before {
  content: "\f60b";
}
.fa-map-marker-slash:before {
  content: "\f60c";
}
.fa-map-marker-smile:before {
  content: "\f60d";
}
.fa-map-marker-times:before {
  content: "\f60e";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-markdown:before {
  content: "\f60f";
}
.fa-marker:before {
  content: "\f5a1";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mask:before {
  content: "\f6fa";
}
.fa-mastodon:before {
  content: "\f4f6";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-mdb:before {
  content: "\f8ca";
}
.fa-meat:before {
  content: "\f814";
}
.fa-medal:before {
  content: "\f5a2";
}
.fa-medapps:before {
  content: "\f3c6";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-medium-m:before {
  content: "\f3c7";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-medrt:before {
  content: "\f3c8";
}
.fa-meetup:before {
  content: "\f2e0";
}
.fa-megaphone:before {
  content: "\f675";
}
.fa-megaport:before {
  content: "\f5a3";
}
.fa-meh:before {
  content: "\f11a";
}
.fa-meh-blank:before {
  content: "\f5a4";
}
.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}
.fa-memory:before {
  content: "\f538";
}
.fa-mendeley:before {
  content: "\f7b3";
}
.fa-menorah:before {
  content: "\f676";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-meteor:before {
  content: "\f753";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-alt:before {
  content: "\f3c9";
}
.fa-microphone-alt-slash:before {
  content: "\f539";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-microphone-stand:before {
  content: "\f8cb";
}
.fa-microscope:before {
  content: "\f610";
}
.fa-microsoft:before {
  content: "\f3ca";
}
.fa-mind-share:before {
  content: "\f677";
}
.fa-minus:before {
  content: "\f068";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-minus-hexagon:before {
  content: "\f307";
}
.fa-minus-octagon:before {
  content: "\f308";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-mistletoe:before {
  content: "\f7b4";
}
.fa-mitten:before {
  content: "\f7b5";
}
.fa-mix:before {
  content: "\f3cb";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-mizuni:before {
  content: "\f3cc";
}
.fa-mobile:before {
  content: "\f10b";
}
.fa-mobile-alt:before {
  content: "\f3cd";
}
.fa-mobile-android:before {
  content: "\f3ce";
}
.fa-mobile-android-alt:before {
  content: "\f3cf";
}
.fa-modx:before {
  content: "\f285";
}
.fa-monero:before {
  content: "\f3d0";
}
.fa-money-bill:before {
  content: "\f0d6";
}
.fa-money-bill-alt:before {
  content: "\f3d1";
}
.fa-money-bill-wave:before {
  content: "\f53a";
}
.fa-money-bill-wave-alt:before {
  content: "\f53b";
}
.fa-money-check:before {
  content: "\f53c";
}
.fa-money-check-alt:before {
  content: "\f53d";
}
.fa-money-check-edit:before {
  content: "\f872";
}
.fa-money-check-edit-alt:before {
  content: "\f873";
}
.fa-monitor-heart-rate:before {
  content: "\f611";
}
.fa-monkey:before {
  content: "\f6fb";
}
.fa-monument:before {
  content: "\f5a6";
}
.fa-moon:before {
  content: "\f186";
}
.fa-moon-cloud:before {
  content: "\f754";
}
.fa-moon-stars:before {
  content: "\f755";
}
.fa-mortar-pestle:before {
  content: "\f5a7";
}
.fa-mosque:before {
  content: "\f678";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-mountain:before {
  content: "\f6fc";
}
.fa-mountains:before {
  content: "\f6fd";
}
.fa-mouse:before {
  content: "\f8cc";
}
.fa-mouse-alt:before {
  content: "\f8cd";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-mp3-player:before {
  content: "\f8ce";
}
.fa-mug:before {
  content: "\f874";
}
.fa-mug-hot:before {
  content: "\f7b6";
}
.fa-mug-marshmallows:before {
  content: "\f7b7";
}
.fa-mug-tea:before {
  content: "\f875";
}
.fa-music:before {
  content: "\f001";
}
.fa-music-alt:before {
  content: "\f8cf";
}
.fa-music-alt-slash:before {
  content: "\f8d0";
}
.fa-music-slash:before {
  content: "\f8d1";
}
.fa-napster:before {
  content: "\f3d2";
}
.fa-narwhal:before {
  content: "\f6fe";
}
.fa-neos:before {
  content: "\f612";
}
.fa-network-wired:before {
  content: "\f6ff";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-newspaper:before {
  content: "\f1ea";
}
.fa-nimblr:before {
  content: "\f5a8";
}
.fa-node:before {
  content: "\f419";
}
.fa-node-js:before {
  content: "\f3d3";
}
.fa-not-equal:before {
  content: "\f53e";
}
.fa-notes-medical:before {
  content: "\f481";
}
.fa-npm:before {
  content: "\f3d4";
}
.fa-ns8:before {
  content: "\f3d5";
}
.fa-nutritionix:before {
  content: "\f3d6";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-octagon:before {
  content: "\f306";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-oil-can:before {
  content: "\f613";
}
.fa-oil-temp:before {
  content: "\f614";
}
.fa-old-republic:before {
  content: "\f510";
}
.fa-om:before {
  content: "\f679";
}
.fa-omega:before {
  content: "\f67a";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-orcid:before {
  content: "\f8d2";
}
.fa-ornament:before {
  content: "\f7b8";
}
.fa-osi:before {
  content: "\f41a";
}
.fa-otter:before {
  content: "\f700";
}
.fa-outdent:before {
  content: "\f03b";
}
.fa-overline:before {
  content: "\f876";
}
.fa-page-break:before {
  content: "\f877";
}
.fa-page4:before {
  content: "\f3d7";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-pager:before {
  content: "\f815";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-paint-brush-alt:before {
  content: "\f5a9";
}
.fa-paint-roller:before {
  content: "\f5aa";
}
.fa-palette:before {
  content: "\f53f";
}
.fa-palfed:before {
  content: "\f3d8";
}
.fa-pallet:before {
  content: "\f482";
}
.fa-pallet-alt:before {
  content: "\f483";
}
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-parachute-box:before {
  content: "\f4cd";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-paragraph-rtl:before {
  content: "\f878";
}
.fa-parking:before {
  content: "\f540";
}
.fa-parking-circle:before {
  content: "\f615";
}
.fa-parking-circle-slash:before {
  content: "\f616";
}
.fa-parking-slash:before {
  content: "\f617";
}
.fa-passport:before {
  content: "\f5ab";
}
.fa-pastafarianism:before {
  content: "\f67b";
}
.fa-paste:before {
  content: "\f0ea";
}
.fa-patreon:before {
  content: "\f3d9";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-paw-alt:before {
  content: "\f701";
}
.fa-paw-claws:before {
  content: "\f702";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-peace:before {
  content: "\f67c";
}
.fa-pegasus:before {
  content: "\f703";
}
.fa-pen:before {
  content: "\f304";
}
.fa-pen-alt:before {
  content: "\f305";
}
.fa-pen-fancy:before {
  content: "\f5ac";
}
.fa-pen-nib:before {
  content: "\f5ad";
}
.fa-pen-square:before {
  content: "\f14b";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-pencil-alt:before {
  content: "\f303";
}
.fa-pencil-paintbrush:before {
  content: "\f618";
}
.fa-pencil-ruler:before {
  content: "\f5ae";
}
.fa-pennant:before {
  content: "\f456";
}
.fa-penny-arcade:before {
  content: "\f704";
}
.fa-people-carry:before {
  content: "\f4ce";
}
.fa-pepper-hot:before {
  content: "\f816";
}
.fa-percent:before {
  content: "\f295";
}
.fa-percentage:before {
  content: "\f541";
}
.fa-periscope:before {
  content: "\f3da";
}
.fa-person-booth:before {
  content: "\f756";
}
.fa-person-carry:before {
  content: "\f4cf";
}
.fa-person-dolly:before {
  content: "\f4d0";
}
.fa-person-dolly-empty:before {
  content: "\f4d1";
}
.fa-person-sign:before {
  content: "\f757";
}
.fa-phabricator:before {
  content: "\f3db";
}
.fa-phoenix-framework:before {
  content: "\f3dc";
}
.fa-phoenix-squadron:before {
  content: "\f511";
}
.fa-phone:before {
  content: "\f095";
}
.fa-phone-alt:before {
  content: "\f879";
}
.fa-phone-laptop:before {
  content: "\f87a";
}
.fa-phone-office:before {
  content: "\f67d";
}
.fa-phone-plus:before {
  content: "\f4d2";
}
.fa-phone-rotary:before {
  content: "\f8d3";
}
.fa-phone-slash:before {
  content: "\f3dd";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-phone-square-alt:before {
  content: "\f87b";
}
.fa-phone-volume:before {
  content: "\f2a0";
}
.fa-photo-video:before {
  content: "\f87c";
}
.fa-php:before {
  content: "\f457";
}
.fa-pi:before {
  content: "\f67e";
}
.fa-piano:before {
  content: "\f8d4";
}
.fa-piano-keyboard:before {
  content: "\f8d5";
}
.fa-pie:before {
  content: "\f705";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-pied-piper-hat:before {
  content: "\f4e5";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pig:before {
  content: "\f706";
}
.fa-piggy-bank:before {
  content: "\f4d3";
}
.fa-pills:before {
  content: "\f484";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-pizza:before {
  content: "\f817";
}
.fa-pizza-slice:before {
  content: "\f818";
}
.fa-place-of-worship:before {
  content: "\f67f";
}
.fa-plane:before {
  content: "\f072";
}
.fa-plane-alt:before {
  content: "\f3de";
}
.fa-plane-arrival:before {
  content: "\f5af";
}
.fa-plane-departure:before {
  content: "\f5b0";
}
.fa-play:before {
  content: "\f04b";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-playstation:before {
  content: "\f3df";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-plus:before {
  content: "\f067";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-plus-hexagon:before {
  content: "\f300";
}
.fa-plus-octagon:before {
  content: "\f301";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-podium:before {
  content: "\f680";
}
.fa-podium-star:before {
  content: "\f758";
}
.fa-poll:before {
  content: "\f681";
}
.fa-poll-h:before {
  content: "\f682";
}
.fa-poll-people:before {
  content: "\f759";
}
.fa-poo:before {
  content: "\f2fe";
}
.fa-poo-storm:before {
  content: "\f75a";
}
.fa-poop:before {
  content: "\f619";
}
.fa-popcorn:before {
  content: "\f819";
}
.fa-portrait:before {
  content: "\f3e0";
}
.fa-pound-sign:before {
  content: "\f154";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-pray:before {
  content: "\f683";
}
.fa-praying-hands:before {
  content: "\f684";
}
.fa-prescription:before {
  content: "\f5b1";
}
.fa-prescription-bottle:before {
  content: "\f485";
}
.fa-prescription-bottle-alt:before {
  content: "\f486";
}
.fa-presentation:before {
  content: "\f685";
}
.fa-print:before {
  content: "\f02f";
}
.fa-print-search:before {
  content: "\f81a";
}
.fa-print-slash:before {
  content: "\f686";
}
.fa-procedures:before {
  content: "\f487";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-project-diagram:before {
  content: "\f542";
}
.fa-projector:before {
  content: "\f8d6";
}
.fa-pumpkin:before {
  content: "\f707";
}
.fa-pushed:before {
  content: "\f3e1";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-python:before {
  content: "\f3e2";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-question:before {
  content: "\f128";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-question-square:before {
  content: "\f2fd";
}
.fa-quidditch:before {
  content: "\f458";
}
.fa-quinscape:before {
  content: "\f459";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-quran:before {
  content: "\f687";
}
.fa-r-project:before {
  content: "\f4f7";
}
.fa-rabbit:before {
  content: "\f708";
}
.fa-rabbit-fast:before {
  content: "\f709";
}
.fa-racquet:before {
  content: "\f45a";
}
.fa-radiation:before {
  content: "\f7b9";
}
.fa-radiation-alt:before {
  content: "\f7ba";
}
.fa-radio:before {
  content: "\f8d7";
}
.fa-radio-alt:before {
  content: "\f8d8";
}
.fa-rainbow:before {
  content: "\f75b";
}
.fa-raindrops:before {
  content: "\f75c";
}
.fa-ram:before {
  content: "\f70a";
}
.fa-ramp-loading:before {
  content: "\f4d4";
}
.fa-random:before {
  content: "\f074";
}
.fa-raspberry-pi:before {
  content: "\f7bb";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-react:before {
  content: "\f41b";
}
.fa-reacteurope:before {
  content: "\f75d";
}
.fa-readme:before {
  content: "\f4d5";
}
.fa-rebel:before {
  content: "\f1d0";
}
.fa-receipt:before {
  content: "\f543";
}
.fa-record-vinyl:before {
  content: "\f8d9";
}
.fa-rectangle-landscape:before {
  content: "\f2fa";
}
.fa-rectangle-portrait:before {
  content: "\f2fb";
}
.fa-rectangle-wide:before {
  content: "\f2fc";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-red-river:before {
  content: "\f3e3";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-redhat:before {
  content: "\f7bc";
}
.fa-redo:before {
  content: "\f01e";
}
.fa-redo-alt:before {
  content: "\f2f9";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-remove-format:before {
  content: "\f87d";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-repeat:before {
  content: "\f363";
}
.fa-repeat-1:before {
  content: "\f365";
}
.fa-repeat-1-alt:before {
  content: "\f366";
}
.fa-repeat-alt:before {
  content: "\f364";
}
.fa-reply:before {
  content: "\f3e5";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-replyd:before {
  content: "\f3e6";
}
.fa-republican:before {
  content: "\f75e";
}
.fa-researchgate:before {
  content: "\f4f8";
}
.fa-resolving:before {
  content: "\f3e7";
}
.fa-restroom:before {
  content: "\f7bd";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-retweet-alt:before {
  content: "\f361";
}
.fa-rev:before {
  content: "\f5b2";
}
.fa-ribbon:before {
  content: "\f4d6";
}
.fa-ring:before {
  content: "\f70b";
}
.fa-rings-wedding:before {
  content: "\f81b";
}
.fa-road:before {
  content: "\f018";
}
.fa-robot:before {
  content: "\f544";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-rocketchat:before {
  content: "\f3e8";
}
.fa-rockrms:before {
  content: "\f3e9";
}
.fa-route:before {
  content: "\f4d7";
}
.fa-route-highway:before {
  content: "\f61a";
}
.fa-route-interstate:before {
  content: "\f61b";
}
.fa-router:before {
  content: "\f8da";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-ruble-sign:before {
  content: "\f158";
}
.fa-ruler:before {
  content: "\f545";
}
.fa-ruler-combined:before {
  content: "\f546";
}
.fa-ruler-horizontal:before {
  content: "\f547";
}
.fa-ruler-triangle:before {
  content: "\f61c";
}
.fa-ruler-vertical:before {
  content: "\f548";
}
.fa-running:before {
  content: "\f70c";
}
.fa-rupee-sign:before {
  content: "\f156";
}
.fa-rv:before {
  content: "\f7be";
}
.fa-sack:before {
  content: "\f81c";
}
.fa-sack-dollar:before {
  content: "\f81d";
}
.fa-sad-cry:before {
  content: "\f5b3";
}
.fa-sad-tear:before {
  content: "\f5b4";
}
.fa-safari:before {
  content: "\f267";
}
.fa-salad:before {
  content: "\f81e";
}
.fa-salesforce:before {
  content: "\f83b";
}
.fa-sandwich:before {
  content: "\f81f";
}
.fa-sass:before {
  content: "\f41e";
}
.fa-satellite:before {
  content: "\f7bf";
}
.fa-satellite-dish:before {
  content: "\f7c0";
}
.fa-sausage:before {
  content: "\f820";
}
.fa-save:before {
  content: "\f0c7";
}
.fa-sax-hot:before {
  content: "\f8db";
}
.fa-saxophone:before {
  content: "\f8dc";
}
.fa-scalpel:before {
  content: "\f61d";
}
.fa-scalpel-path:before {
  content: "\f61e";
}
.fa-scanner:before {
  content: "\f488";
}
.fa-scanner-image:before {
  content: "\f8f3";
}
.fa-scanner-keyboard:before {
  content: "\f489";
}
.fa-scanner-touchscreen:before {
  content: "\f48a";
}
.fa-scarecrow:before {
  content: "\f70d";
}
.fa-scarf:before {
  content: "\f7c1";
}
.fa-schlix:before {
  content: "\f3ea";
}
.fa-school:before {
  content: "\f549";
}
.fa-screwdriver:before {
  content: "\f54a";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-scroll:before {
  content: "\f70e";
}
.fa-scroll-old:before {
  content: "\f70f";
}
.fa-scrubber:before {
  content: "\f2f8";
}
.fa-scythe:before {
  content: "\f710";
}
.fa-sd-card:before {
  content: "\f7c2";
}
.fa-search:before {
  content: "\f002";
}
.fa-search-dollar:before {
  content: "\f688";
}
.fa-search-location:before {
  content: "\f689";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-searchengin:before {
  content: "\f3eb";
}
.fa-seedling:before {
  content: "\f4d8";
}
.fa-sellcast:before {
  content: "\f2da";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-send-back:before {
  content: "\f87e";
}
.fa-send-backward:before {
  content: "\f87f";
}
.fa-server:before {
  content: "\f233";
}
.fa-servicestack:before {
  content: "\f3ec";
}
.fa-shapes:before {
  content: "\f61f";
}
.fa-share:before {
  content: "\f064";
}
.fa-share-all:before {
  content: "\f367";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-sheep:before {
  content: "\f711";
}
.fa-shekel-sign:before {
  content: "\f20b";
}
.fa-shield:before {
  content: "\f132";
}
.fa-shield-alt:before {
  content: "\f3ed";
}
.fa-shield-check:before {
  content: "\f2f7";
}
.fa-shield-cross:before {
  content: "\f712";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-shipping-fast:before {
  content: "\f48b";
}
.fa-shipping-timed:before {
  content: "\f48c";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-shish-kebab:before {
  content: "\f821";
}
.fa-shoe-prints:before {
  content: "\f54b";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-shopware:before {
  content: "\f5b5";
}
.fa-shovel:before {
  content: "\f713";
}
.fa-shovel-snow:before {
  content: "\f7c3";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-shredder:before {
  content: "\f68a";
}
.fa-shuttle-van:before {
  content: "\f5b6";
}
.fa-shuttlecock:before {
  content: "\f45b";
}
.fa-sickle:before {
  content: "\f822";
}
.fa-sigma:before {
  content: "\f68b";
}
.fa-sign:before {
  content: "\f4d9";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-sign-in-alt:before {
  content: "\f2f6";
}
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-sign-out-alt:before {
  content: "\f2f5";
}
.fa-signal:before {
  content: "\f012";
}
.fa-signal-1:before {
  content: "\f68c";
}
.fa-signal-2:before {
  content: "\f68d";
}
.fa-signal-3:before {
  content: "\f68e";
}
.fa-signal-4:before {
  content: "\f68f";
}
.fa-signal-alt:before {
  content: "\f690";
}
.fa-signal-alt-1:before {
  content: "\f691";
}
.fa-signal-alt-2:before {
  content: "\f692";
}
.fa-signal-alt-3:before {
  content: "\f693";
}
.fa-signal-alt-slash:before {
  content: "\f694";
}
.fa-signal-slash:before {
  content: "\f695";
}
.fa-signal-stream:before {
  content: "\f8dd";
}
.fa-signature:before {
  content: "\f5b7";
}
.fa-sim-card:before {
  content: "\f7c4";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-sistrix:before {
  content: "\f3ee";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-sith:before {
  content: "\f512";
}
.fa-skating:before {
  content: "\f7c5";
}
.fa-skeleton:before {
  content: "\f620";
}
.fa-sketch:before {
  content: "\f7c6";
}
.fa-ski-jump:before {
  content: "\f7c7";
}
.fa-ski-lift:before {
  content: "\f7c8";
}
.fa-skiing:before {
  content: "\f7c9";
}
.fa-skiing-nordic:before {
  content: "\f7ca";
}
.fa-skull:before {
  content: "\f54c";
}
.fa-skull-cow:before {
  content: "\f8de";
}
.fa-skull-crossbones:before {
  content: "\f714";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-slack:before {
  content: "\f198";
}
.fa-slack-hash:before {
  content: "\f3ef";
}
.fa-slash:before {
  content: "\f715";
}
.fa-sledding:before {
  content: "\f7cb";
}
.fa-sleigh:before {
  content: "\f7cc";
}
.fa-sliders-h:before {
  content: "\f1de";
}
.fa-sliders-h-square:before {
  content: "\f3f0";
}
.fa-sliders-v:before {
  content: "\f3f1";
}
.fa-sliders-v-square:before {
  content: "\f3f2";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-smile:before {
  content: "\f118";
}
.fa-smile-beam:before {
  content: "\f5b8";
}
.fa-smile-plus:before {
  content: "\f5b9";
}
.fa-smile-wink:before {
  content: "\f4da";
}
.fa-smog:before {
  content: "\f75f";
}
.fa-smoke:before {
  content: "\f760";
}
.fa-smoking:before {
  content: "\f48d";
}
.fa-smoking-ban:before {
  content: "\f54d";
}
.fa-sms:before {
  content: "\f7cd";
}
.fa-snake:before {
  content: "\f716";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-snooze:before {
  content: "\f880";
}
.fa-snow-blowing:before {
  content: "\f761";
}
.fa-snowboarding:before {
  content: "\f7ce";
}
.fa-snowflake:before {
  content: "\f2dc";
}
.fa-snowflakes:before {
  content: "\f7cf";
}
.fa-snowman:before {
  content: "\f7d0";
}
.fa-snowmobile:before {
  content: "\f7d1";
}
.fa-snowplow:before {
  content: "\f7d2";
}
.fa-socks:before {
  content: "\f696";
}
.fa-solar-panel:before {
  content: "\f5ba";
}
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-alpha-down:before {
  content: "\f15d";
}
.fa-sort-alpha-down-alt:before {
  content: "\f881";
}
.fa-sort-alpha-up:before {
  content: "\f15e";
}
.fa-sort-alpha-up-alt:before {
  content: "\f882";
}
.fa-sort-alt:before {
  content: "\f883";
}
.fa-sort-amount-down:before {
  content: "\f160";
}
.fa-sort-amount-down-alt:before {
  content: "\f884";
}
.fa-sort-amount-up:before {
  content: "\f161";
}
.fa-sort-amount-up-alt:before {
  content: "\f885";
}
.fa-sort-down:before {
  content: "\f0dd";
}
.fa-sort-numeric-down:before {
  content: "\f162";
}
.fa-sort-numeric-down-alt:before {
  content: "\f886";
}
.fa-sort-numeric-up:before {
  content: "\f163";
}
.fa-sort-numeric-up-alt:before {
  content: "\f887";
}
.fa-sort-shapes-down:before {
  content: "\f888";
}
.fa-sort-shapes-down-alt:before {
  content: "\f889";
}
.fa-sort-shapes-up:before {
  content: "\f88a";
}
.fa-sort-shapes-up-alt:before {
  content: "\f88b";
}
.fa-sort-size-down:before {
  content: "\f88c";
}
.fa-sort-size-down-alt:before {
  content: "\f88d";
}
.fa-sort-size-up:before {
  content: "\f88e";
}
.fa-sort-size-up-alt:before {
  content: "\f88f";
}
.fa-sort-up:before {
  content: "\f0de";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-soup:before {
  content: "\f823";
}
.fa-sourcetree:before {
  content: "\f7d3";
}
.fa-spa:before {
  content: "\f5bb";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-spade:before {
  content: "\f2f4";
}
.fa-sparkles:before {
  content: "\f890";
}
.fa-speakap:before {
  content: "\f3f3";
}
.fa-speaker:before {
  content: "\f8df";
}
.fa-speaker-deck:before {
  content: "\f83c";
}
.fa-speakers:before {
  content: "\f8e0";
}
.fa-spell-check:before {
  content: "\f891";
}
.fa-spider:before {
  content: "\f717";
}
.fa-spider-black-widow:before {
  content: "\f718";
}
.fa-spider-web:before {
  content: "\f719";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-spinner-third:before {
  content: "\f3f4";
}
.fa-splotch:before {
  content: "\f5bc";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-spray-can:before {
  content: "\f5bd";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-square-full:before {
  content: "\f45c";
}
.fa-square-root:before {
  content: "\f697";
}
.fa-square-root-alt:before {
  content: "\f698";
}
.fa-squarespace:before {
  content: "\f5be";
}
.fa-squirrel:before {
  content: "\f71a";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-stackpath:before {
  content: "\f842";
}
.fa-staff:before {
  content: "\f71b";
}
.fa-stamp:before {
  content: "\f5bf";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-and-crescent:before {
  content: "\f699";
}
.fa-star-christmas:before {
  content: "\f7d4";
}
.fa-star-exclamation:before {
  content: "\f2f3";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-star-half-alt:before {
  content: "\f5c0";
}
.fa-star-of-david:before {
  content: "\f69a";
}
.fa-star-of-life:before {
  content: "\f621";
}
.fa-stars:before {
  content: "\f762";
}
.fa-staylinked:before {
  content: "\f3f5";
}
.fa-steak:before {
  content: "\f824";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-steam-symbol:before {
  content: "\f3f6";
}
.fa-steering-wheel:before {
  content: "\f622";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-sticker-mule:before {
  content: "\f3f7";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-stocking:before {
  content: "\f7d5";
}
.fa-stomach:before {
  content: "\f623";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stopwatch:before {
  content: "\f2f2";
}
.fa-store:before {
  content: "\f54e";
}
.fa-store-alt:before {
  content: "\f54f";
}
.fa-strava:before {
  content: "\f428";
}
.fa-stream:before {
  content: "\f550";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-stretcher:before {
  content: "\f825";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-stripe:before {
  content: "\f429";
}
.fa-stripe-s:before {
  content: "\f42a";
}
.fa-stroopwafel:before {
  content: "\f551";
}
.fa-studiovinari:before {
  content: "\f3f8";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-subway:before {
  content: "\f239";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-suitcase-rolling:before {
  content: "\f5c1";
}
.fa-sun:before {
  content: "\f185";
}
.fa-sun-cloud:before {
  content: "\f763";
}
.fa-sun-dust:before {
  content: "\f764";
}
.fa-sun-haze:before {
  content: "\f765";
}
.fa-sunglasses:before {
  content: "\f892";
}
.fa-sunrise:before {
  content: "\f766";
}
.fa-sunset:before {
  content: "\f767";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-supple:before {
  content: "\f3f9";
}
.fa-surprise:before {
  content: "\f5c2";
}
.fa-suse:before {
  content: "\f7d6";
}
.fa-swatchbook:before {
  content: "\f5c3";
}
.fa-swift:before {
  content: "\f8e1";
}
.fa-swimmer:before {
  content: "\f5c4";
}
.fa-swimming-pool:before {
  content: "\f5c5";
}
.fa-sword:before {
  content: "\f71c";
}
.fa-swords:before {
  content: "\f71d";
}
.fa-symfony:before {
  content: "\f83d";
}
.fa-synagogue:before {
  content: "\f69b";
}
.fa-sync:before {
  content: "\f021";
}
.fa-sync-alt:before {
  content: "\f2f1";
}
.fa-syringe:before {
  content: "\f48e";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-table-tennis:before {
  content: "\f45d";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-tablet-alt:before {
  content: "\f3fa";
}
.fa-tablet-android:before {
  content: "\f3fb";
}
.fa-tablet-android-alt:before {
  content: "\f3fc";
}
.fa-tablet-rugged:before {
  content: "\f48f";
}
.fa-tablets:before {
  content: "\f490";
}
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-tachometer-alt:before {
  content: "\f3fd";
}
.fa-tachometer-alt-average:before {
  content: "\f624";
}
.fa-tachometer-alt-fast:before {
  content: "\f625";
}
.fa-tachometer-alt-fastest:before {
  content: "\f626";
}
.fa-tachometer-alt-slow:before {
  content: "\f627";
}
.fa-tachometer-alt-slowest:before {
  content: "\f628";
}
.fa-tachometer-average:before {
  content: "\f629";
}
.fa-tachometer-fast:before {
  content: "\f62a";
}
.fa-tachometer-fastest:before {
  content: "\f62b";
}
.fa-tachometer-slow:before {
  content: "\f62c";
}
.fa-tachometer-slowest:before {
  content: "\f62d";
}
.fa-taco:before {
  content: "\f826";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-tally:before {
  content: "\f69c";
}
.fa-tanakh:before {
  content: "\f827";
}
.fa-tape:before {
  content: "\f4db";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-tasks-alt:before {
  content: "\f828";
}
.fa-taxi:before {
  content: "\f1ba";
}
.fa-teamspeak:before {
  content: "\f4f9";
}
.fa-teeth:before {
  content: "\f62e";
}
.fa-teeth-open:before {
  content: "\f62f";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-telegram-plane:before {
  content: "\f3fe";
}
.fa-temperature-frigid:before {
  content: "\f768";
}
.fa-temperature-high:before {
  content: "\f769";
}
.fa-temperature-hot:before {
  content: "\f76a";
}
.fa-temperature-low:before {
  content: "\f76b";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-tenge:before {
  content: "\f7d7";
}
.fa-tennis-ball:before {
  content: "\f45e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-text:before {
  content: "\f893";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-size:before {
  content: "\f894";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-the-red-yeti:before {
  content: "\f69d";
}
.fa-theater-masks:before {
  content: "\f630";
}
.fa-themeco:before {
  content: "\f5c6";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-thermometer:before {
  content: "\f491";
}
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-theta:before {
  content: "\f69e";
}
.fa-think-peaks:before {
  content: "\f731";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbtack:before {
  content: "\f08d";
}
.fa-thunderstorm:before {
  content: "\f76c";
}
.fa-thunderstorm-moon:before {
  content: "\f76d";
}
.fa-thunderstorm-sun:before {
  content: "\f76e";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-ticket-alt:before {
  content: "\f3ff";
}
.fa-tilde:before {
  content: "\f69f";
}
.fa-times:before {
  content: "\f00d";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-times-hexagon:before {
  content: "\f2ee";
}
.fa-times-octagon:before {
  content: "\f2f0";
}
.fa-times-square:before {
  content: "\f2d3";
}
.fa-tint:before {
  content: "\f043";
}
.fa-tint-slash:before {
  content: "\f5c7";
}
.fa-tire:before {
  content: "\f631";
}
.fa-tire-flat:before {
  content: "\f632";
}
.fa-tire-pressure-warning:before {
  content: "\f633";
}
.fa-tire-rugged:before {
  content: "\f634";
}
.fa-tired:before {
  content: "\f5c8";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-toilet:before {
  content: "\f7d8";
}
.fa-toilet-paper:before {
  content: "\f71e";
}
.fa-toilet-paper-alt:before {
  content: "\f71f";
}
.fa-tombstone:before {
  content: "\f720";
}
.fa-tombstone-alt:before {
  content: "\f721";
}
.fa-toolbox:before {
  content: "\f552";
}
.fa-tools:before {
  content: "\f7d9";
}
.fa-tooth:before {
  content: "\f5c9";
}
.fa-toothbrush:before {
  content: "\f635";
}
.fa-torah:before {
  content: "\f6a0";
}
.fa-torii-gate:before {
  content: "\f6a1";
}
.fa-tornado:before {
  content: "\f76f";
}
.fa-tractor:before {
  content: "\f722";
}
.fa-trade-federation:before {
  content: "\f513";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-traffic-cone:before {
  content: "\f636";
}
.fa-traffic-light:before {
  content: "\f637";
}
.fa-traffic-light-go:before {
  content: "\f638";
}
.fa-traffic-light-slow:before {
  content: "\f639";
}
.fa-traffic-light-stop:before {
  content: "\f63a";
}
.fa-train:before {
  content: "\f238";
}
.fa-tram:before {
  content: "\f7da";
}
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-trash-alt:before {
  content: "\f2ed";
}
.fa-trash-restore:before {
  content: "\f829";
}
.fa-trash-restore-alt:before {
  content: "\f82a";
}
.fa-trash-undo:before {
  content: "\f895";
}
.fa-trash-undo-alt:before {
  content: "\f896";
}
.fa-treasure-chest:before {
  content: "\f723";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-tree-alt:before {
  content: "\f400";
}
.fa-tree-christmas:before {
  content: "\f7db";
}
.fa-tree-decorated:before {
  content: "\f7dc";
}
.fa-tree-large:before {
  content: "\f7dd";
}
.fa-tree-palm:before {
  content: "\f82b";
}
.fa-trees:before {
  content: "\f724";
}
.fa-trello:before {
  content: "\f181";
}
.fa-triangle:before {
  content: "\f2ec";
}
.fa-triangle-music:before {
  content: "\f8e2";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-trophy-alt:before {
  content: "\f2eb";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-truck-container:before {
  content: "\f4dc";
}
.fa-truck-couch:before {
  content: "\f4dd";
}
.fa-truck-loading:before {
  content: "\f4de";
}
.fa-truck-monster:before {
  content: "\f63b";
}
.fa-truck-moving:before {
  content: "\f4df";
}
.fa-truck-pickup:before {
  content: "\f63c";
}
.fa-truck-plow:before {
  content: "\f7de";
}
.fa-truck-ramp:before {
  content: "\f4e0";
}
.fa-trumpet:before {
  content: "\f8e3";
}
.fa-tshirt:before {
  content: "\f553";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-turkey:before {
  content: "\f725";
}
.fa-turntable:before {
  content: "\f8e4";
}
.fa-turtle:before {
  content: "\f726";
}
.fa-tv:before {
  content: "\f26c";
}
.fa-tv-alt:before {
  content: "\f8e5";
}
.fa-tv-music:before {
  content: "\f8e6";
}
.fa-tv-retro:before {
  content: "\f401";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-typewriter:before {
  content: "\f8e7";
}
.fa-typo3:before {
  content: "\f42b";
}
.fa-uber:before {
  content: "\f402";
}
.fa-ubuntu:before {
  content: "\f7df";
}
.fa-uikit:before {
  content: "\f403";
}
.fa-umbraco:before {
  content: "\f8e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-umbrella-beach:before {
  content: "\f5ca";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-undo:before {
  content: "\f0e2";
}
.fa-undo-alt:before {
  content: "\f2ea";
}
.fa-unicorn:before {
  content: "\f727";
}
.fa-union:before {
  content: "\f6a2";
}
.fa-uniregistry:before {
  content: "\f404";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-university:before {
  content: "\f19c";
}
.fa-unlink:before {
  content: "\f127";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-untappd:before {
  content: "\f405";
}
.fa-upload:before {
  content: "\f093";
}
.fa-ups:before {
  content: "\f7e0";
}
.fa-usb:before {
  content: "\f287";
}
.fa-usb-drive:before {
  content: "\f8e9";
}
.fa-usd-circle:before {
  content: "\f2e8";
}
.fa-usd-square:before {
  content: "\f2e9";
}
.fa-user:before {
  content: "\f007";
}
.fa-user-alt:before {
  content: "\f406";
}
.fa-user-alt-slash:before {
  content: "\f4fa";
}
.fa-user-astronaut:before {
  content: "\f4fb";
}
.fa-user-chart:before {
  content: "\f6a3";
}
.fa-user-check:before {
  content: "\f4fc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-clock:before {
  content: "\f4fd";
}
.fa-user-cog:before {
  content: "\f4fe";
}
.fa-user-cowboy:before {
  content: "\f8ea";
}
.fa-user-crown:before {
  content: "\f6a4";
}
.fa-user-edit:before {
  content: "\f4ff";
}
.fa-user-friends:before {
  content: "\f500";
}
.fa-user-graduate:before {
  content: "\f501";
}
.fa-user-hard-hat:before {
  content: "\f82c";
}
.fa-user-headset:before {
  content: "\f82d";
}
.fa-user-injured:before {
  content: "\f728";
}
.fa-user-lock:before {
  content: "\f502";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-user-md-chat:before {
  content: "\f82e";
}
.fa-user-minus:before {
  content: "\f503";
}
.fa-user-music:before {
  content: "\f8eb";
}
.fa-user-ninja:before {
  content: "\f504";
}
.fa-user-nurse:before {
  content: "\f82f";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-user-shield:before {
  content: "\f505";
}
.fa-user-slash:before {
  content: "\f506";
}
.fa-user-tag:before {
  content: "\f507";
}
.fa-user-tie:before {
  content: "\f508";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-users-class:before {
  content: "\f63d";
}
.fa-users-cog:before {
  content: "\f509";
}
.fa-users-crown:before {
  content: "\f6a5";
}
.fa-users-medical:before {
  content: "\f830";
}
.fa-usps:before {
  content: "\f7e1";
}
.fa-ussunnah:before {
  content: "\f407";
}
.fa-utensil-fork:before {
  content: "\f2e3";
}
.fa-utensil-knife:before {
  content: "\f2e4";
}
.fa-utensil-spoon:before {
  content: "\f2e5";
}
.fa-utensils:before {
  content: "\f2e7";
}
.fa-utensils-alt:before {
  content: "\f2e6";
}
.fa-vaadin:before {
  content: "\f408";
}
.fa-value-absolute:before {
  content: "\f6a6";
}
.fa-vector-square:before {
  content: "\f5cb";
}
.fa-venus:before {
  content: "\f221";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-vhs:before {
  content: "\f8ec";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-vial:before {
  content: "\f492";
}
.fa-vials:before {
  content: "\f493";
}
.fa-viber:before {
  content: "\f409";
}
.fa-video:before {
  content: "\f03d";
}
.fa-video-plus:before {
  content: "\f4e1";
}
.fa-video-slash:before {
  content: "\f4e2";
}
.fa-vihara:before {
  content: "\f6a7";
}
.fa-vimeo:before {
  content: "\f40a";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-vimeo-v:before {
  content: "\f27d";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-violin:before {
  content: "\f8ed";
}
.fa-vk:before {
  content: "\f189";
}
.fa-vnv:before {
  content: "\f40b";
}
.fa-voicemail:before {
  content: "\f897";
}
.fa-volcano:before {
  content: "\f770";
}
.fa-volleyball-ball:before {
  content: "\f45f";
}
.fa-volume:before {
  content: "\f6a8";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-mute:before {
  content: "\f6a9";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-slash:before {
  content: "\f2e2";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-vote-nay:before {
  content: "\f771";
}
.fa-vote-yea:before {
  content: "\f772";
}
.fa-vr-cardboard:before {
  content: "\f729";
}
.fa-vuejs:before {
  content: "\f41f";
}
.fa-wagon-covered:before {
  content: "\f8ee";
}
.fa-walker:before {
  content: "\f831";
}
.fa-walkie-talkie:before {
  content: "\f8ef";
}
.fa-walking:before {
  content: "\f554";
}
.fa-wallet:before {
  content: "\f555";
}
.fa-wand:before {
  content: "\f72a";
}
.fa-wand-magic:before {
  content: "\f72b";
}
.fa-warehouse:before {
  content: "\f494";
}
.fa-warehouse-alt:before {
  content: "\f495";
}
.fa-washer:before {
  content: "\f898";
}
.fa-watch:before {
  content: "\f2e1";
}
.fa-watch-calculator:before {
  content: "\f8f0";
}
.fa-watch-fitness:before {
  content: "\f63e";
}
.fa-water:before {
  content: "\f773";
}
.fa-water-lower:before {
  content: "\f774";
}
.fa-water-rise:before {
  content: "\f775";
}
.fa-wave-sine:before {
  content: "\f899";
}
.fa-wave-square:before {
  content: "\f83e";
}
.fa-wave-triangle:before {
  content: "\f89a";
}
.fa-waveform:before {
  content: "\f8f1";
}
.fa-waveform-path:before {
  content: "\f8f2";
}
.fa-waze:before {
  content: "\f83f";
}
.fa-webcam:before {
  content: "\f832";
}
.fa-webcam-slash:before {
  content: "\f833";
}
.fa-weebly:before {
  content: "\f5cc";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-weight:before {
  content: "\f496";
}
.fa-weight-hanging:before {
  content: "\f5cd";
}
.fa-weixin:before {
  content: "\f1d7";
}
.fa-whale:before {
  content: "\f72c";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-whatsapp-square:before {
  content: "\f40c";
}
.fa-wheat:before {
  content: "\f72d";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-whistle:before {
  content: "\f460";
}
.fa-whmcs:before {
  content: "\f40d";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-wifi-1:before {
  content: "\f6aa";
}
.fa-wifi-2:before {
  content: "\f6ab";
}
.fa-wifi-slash:before {
  content: "\f6ac";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-wind:before {
  content: "\f72e";
}
.fa-wind-turbine:before {
  content: "\f89b";
}
.fa-wind-warning:before {
  content: "\f776";
}
.fa-window:before {
  content: "\f40e";
}
.fa-window-alt:before {
  content: "\f40f";
}
.fa-window-close:before {
  content: "\f410";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-windsock:before {
  content: "\f777";
}
.fa-wine-bottle:before {
  content: "\f72f";
}
.fa-wine-glass:before {
  content: "\f4e3";
}
.fa-wine-glass-alt:before {
  content: "\f5ce";
}
.fa-wix:before {
  content: "\f5cf";
}
.fa-wizards-of-the-coast:before {
  content: "\f730";
}
.fa-wolf-pack-battalion:before {
  content: "\f514";
}
.fa-won-sign:before {
  content: "\f159";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-wordpress-simple:before {
  content: "\f411";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-wpressr:before {
  content: "\f3e4";
}
.fa-wreath:before {
  content: "\f7e2";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-x-ray:before {
  content: "\f497";
}
.fa-xbox:before {
  content: "\f412";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-yammer:before {
  content: "\f840";
}
.fa-yandex:before {
  content: "\f413";
}
.fa-yandex-international:before {
  content: "\f414";
}
.fa-yarn:before {
  content: "\f7e3";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-yen-sign:before {
  content: "\f157";
}
.fa-yin-yang:before {
  content: "\f6ad";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-youtube-square:before {
  content: "\f431";
}
.fa-zhihu:before {
  content: "\f63f";
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*!
 * Font Awesome Pro 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url('../../style/vendor/webfonts//fa-solid-900.eot');
  src: url('../../style/vendor/webfonts//fa-solid-900.eot?#iefix') format('embedded-opentype'), url('../../style/vendor/webfonts//fa-solid-900.woff2') format('woff2'), url('../../style/vendor/webfonts//fa-solid-900.woff') format('woff'), url('../../style/vendor/webfonts//fa-solid-900.ttf') format('truetype'), url('../../style/vendor/webfonts//fa-solid-900.svg#fontawesome') format('svg');
}
.fa,
.fas {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
}
/*!
 * Font Awesome Pro 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url('../../style/vendor/webfonts//fa-light-300.eot');
  src: url('../../style/vendor/webfonts//fa-light-300.eot?#iefix') format('embedded-opentype'), url('../../style/vendor/webfonts//fa-light-300.woff2') format('woff2'), url('../../style/vendor/webfonts//fa-light-300.woff') format('woff'), url('../../style/vendor/webfonts//fa-light-300.ttf') format('truetype'), url('../../style/vendor/webfonts//fa-light-300.svg#fontawesome') format('svg');
}
.fal {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
}
/*!
 * Font Awesome Pro 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url('../../style/vendor/webfonts//fa-regular-400.eot');
  src: url('../../style/vendor/webfonts//fa-regular-400.eot?#iefix') format('embedded-opentype'), url('../../style/vendor/webfonts//fa-regular-400.woff2') format('woff2'), url('../../style/vendor/webfonts//fa-regular-400.woff') format('woff'), url('../../style/vendor/webfonts//fa-regular-400.ttf') format('truetype'), url('../../style/vendor/webfonts//fa-regular-400.svg#fontawesome') format('svg');
}
.far {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}

/*# sourceMappingURL=styles.css.map */
