/*******************************************************************************
 * grid.layout.scss
 *
 * Styling of the "simple" layout demonstrating the Compass grid extension Susy
 * and building mobile first layouts.
 ******************************************************************************/
button, [type='button'], [type='reset'], [type='submit'],
.btn,
.menu-mlid-754 a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ce7e2b;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Oxygen", sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1;
  padding: 0.8em 1.6em;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover, button:focus, [type='button']:hover, [type='button']:focus, [type='reset']:hover, [type='reset']:focus, [type='submit']:hover, [type='submit']:focus,
  .btn:hover,
  .btn:focus,
  .menu-mlid-754 a:hover,
  .menu-mlid-754 a:focus {
    background-color: #a56522;
    color: #fff; }
  button:disabled, [type='button']:disabled, [type='reset']:disabled, [type='submit']:disabled,
  .btn:disabled,
  .menu-mlid-754 a:disabled {
    cursor: not-allowed;
    opacity: 0.5; }
    button:disabled:hover, [type='button']:disabled:hover, [type='reset']:disabled:hover, [type='submit']:disabled:hover,
    .btn:disabled:hover,
    .menu-mlid-754 a:disabled:hover {
      background-color: #72120b; }

.btn.btn-secondary {
  background-color: #72120b; }

.btn.btn-blue {
  background-color: #014868; }

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  font-weight: 600;
  margin-bottom: 0.4em;
  padding: 0; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em; }

input,
select,
textarea {
  display: block;
  font-family: "Karma", serif;
  font-size: 1.1em; }

[type='color'], [type='date'], [type='datetime'], [type='datetime-local'], [type='email'], [type='month'], [type='number'], [type='password'], [type='search'], [type='tel'], [type='text'], [type='time'], [type='url'], [type='week'], input:not([type]), textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  margin-bottom: 0.8em;
  padding: 0.4em;
  transition: border-color 150ms ease;
  width: 100%; }
  [type='color']:hover, [type='date']:hover, [type='datetime']:hover, [type='datetime-local']:hover, [type='email']:hover, [type='month']:hover, [type='number']:hover, [type='password']:hover, [type='search']:hover, [type='tel']:hover, [type='text']:hover, [type='time']:hover, [type='url']:hover, [type='week']:hover, input:not([type]):hover, textarea:hover {
    border-color: #b1b1b1; }
  [type='color']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='email']:focus, [type='month']:focus, [type='number']:focus, [type='password']:focus, [type='search']:focus, [type='tel']:focus, [type='text']:focus, [type='time']:focus, [type='url']:focus, [type='week']:focus, input:not([type]):focus, textarea:focus {
    border-color: #72120b;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(91, 14, 9, 0.7);
    outline: none; }
  [type='color']:disabled, [type='date']:disabled, [type='datetime']:disabled, [type='datetime-local']:disabled, [type='email']:disabled, [type='month']:disabled, [type='number']:disabled, [type='password']:disabled, [type='search']:disabled, [type='tel']:disabled, [type='text']:disabled, [type='time']:disabled, [type='url']:disabled, [type='week']:disabled, input:not([type]):disabled, textarea:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed; }
    [type='color']:disabled:hover, [type='date']:disabled:hover, [type='datetime']:disabled:hover, [type='datetime-local']:disabled:hover, [type='email']:disabled:hover, [type='month']:disabled:hover, [type='number']:disabled:hover, [type='password']:disabled:hover, [type='search']:disabled:hover, [type='tel']:disabled:hover, [type='text']:disabled:hover, [type='time']:disabled:hover, [type='url']:disabled:hover, [type='week']:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover {
      border: 2px solid #ddd; }
  [type='color']:-ms-input-placeholder, [type='date']:-ms-input-placeholder, [type='datetime']:-ms-input-placeholder, [type='datetime-local']:-ms-input-placeholder, [type='email']:-ms-input-placeholder, [type='month']:-ms-input-placeholder, [type='number']:-ms-input-placeholder, [type='password']:-ms-input-placeholder, [type='search']:-ms-input-placeholder, [type='tel']:-ms-input-placeholder, [type='text']:-ms-input-placeholder, [type='time']:-ms-input-placeholder, [type='url']:-ms-input-placeholder, [type='week']:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #2e7887;
    font-size: 13px; }
  [type='color']::placeholder, [type='date']::placeholder, [type='datetime']::placeholder, [type='datetime-local']::placeholder, [type='email']::placeholder, [type='month']::placeholder, [type='number']::placeholder, [type='password']::placeholder, [type='search']::placeholder, [type='tel']::placeholder, [type='text']::placeholder, [type='time']::placeholder, [type='url']::placeholder, [type='week']::placeholder, input:not([type])::placeholder, textarea::placeholder {
    color: #2e7887;
    font-size: 13px; }

textarea {
  resize: vertical; }

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.4em; }

[type="file"] {
  margin-bottom: 0.8em;
  width: 100%; }

select {
  margin-bottom: 0.8em;
  width: 100%; }

html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html,
body {
  height: 100%; }

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .field--type-text-with-summary ul, .field--type-text-with-summary
  ol {
    list-style-type: disc;
    margin: 1em 0;
    padding-left: 40px; }

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

figure {
  margin: 0; }

img,
picture {
  margin: 0;
  max-width: 100%;
  height: auto; }

table {
  border-collapse: collapse;
  margin: 0.8em 0;
  table-layout: fixed;
  width: 100%; }

th {
  border-bottom: 1px solid #a6a6a6;
  font-weight: 600;
  padding: 0.8em 0;
  text-align: left; }

td {
  border-bottom: 2px solid #ddd;
  padding: 0.8em 0; }

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

body {
  color: #333;
  font-family: "Karma", serif;
  font-size: 1.1em;
  line-height: 1.6;
  letter-spacing: 0.01em; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oxygen", sans-serif;
  font-size: 1.25em;
  line-height: 1.2;
  margin: 0 0 0.8em;
  font-weight: 400; }

p {
  margin: 0 0 1.6em; }

a {
  color: #72120b;
  text-decoration: none;
  transition: color 150ms ease; }
  a:active, a:focus, a:hover {
    opacity: 0.6; }

hr {
  border-bottom: 2px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.6em 0; }

h1 {
  font-size: 1.71875em; }

h2 {
  font-size: 1.375em; }

h3 {
  font-size: 1.1em; }

h4 {
  font-size: 0.88em; }

h5 {
  font-size: 0.704em; }

h6 {
  font-size: 0.5632em; }

/* Containers */
.page-node-4385 .l-region--post-content,
.block--block-3,
.block .block-container,
.l-header,
.l-main,
.l-footer,
.section-profile .l-region--pre-footer,
.section-profile .l-region--post-content,
.section-issues.page-taxonomy-term .block--views-pubs-chrono-block .block__content,
.term-listing-heading .vocabulary-issue,
.view-cpes-featured-expert,
.container,
.section-press-room .l-region--pre-footer,
#block-menu-menu-anniversary-menu ul.menu,
#block-block-30,
#block-views-anniversary-tweets-block {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px; }
  .page-node-4385 .l-region--post-content:after,
  .block--block-3:after,
  .block .block-container:after,
  .l-header:after,
  .l-main:after,
  .l-footer:after,
  .section-profile .l-region--pre-footer:after,
  .section-profile .l-region--post-content:after,
  .section-issues.page-taxonomy-term .block--views-pubs-chrono-block .block__content:after,
  .term-listing-heading .vocabulary-issue:after,
  .view-cpes-featured-expert:after,
  .container:after,
  .section-press-room .l-region--pre-footer:after,
  #block-menu-menu-anniversary-menu ul.menu:after,
  #block-block-30:after,
  #block-views-anniversary-tweets-block:after {
    content: " ";
    display: block;
    clear: both; }

.l-header,
.l-main {
  margin-bottom: 20px; }

.l-main {
  padding-top: 30px; }

.l-region--highlighted,
.l-region--help,
.l-region--sidebar-first,
.l-region--sidebar-second {
  margin-bottom: 20px; }

.page-search .l-region--sidebar-first {
  display: none; }

.hero.container {
  margin-bottom: 0; }

.block--views-exp-search-page--2,
.block--views-exp-search-page--3,
.block--views-exp-search-page {
  display: none;
  margin-bottom: 26px; }
  .block--views-exp-search-page--2::after,
  .block--views-exp-search-page--3::after,
  .block--views-exp-search-page::after {
    clear: both;
    content: "";
    display: block; }
  .block--views-exp-search-page--2 .views-exposed-widgets,
  .block--views-exp-search-page--3 .views-exposed-widgets,
  .block--views-exp-search-page .views-exposed-widgets {
    border: 1px solid #ccc; }
    .block--views-exp-search-page--2 .views-exposed-widgets::after,
    .block--views-exp-search-page--3 .views-exposed-widgets::after,
    .block--views-exp-search-page .views-exposed-widgets::after {
      clear: both;
      content: "";
      display: block; }
  .block--views-exp-search-page--2 label,
  .block--views-exp-search-page--3 label,
  .block--views-exp-search-page label {
    display: none; }
  .block--views-exp-search-page--2 .views-widget-filter-search_api_views_fulltext,
  .block--views-exp-search-page--2 .views-submit-button,
  .block--views-exp-search-page--3 .views-widget-filter-search_api_views_fulltext,
  .block--views-exp-search-page--3 .views-submit-button,
  .block--views-exp-search-page .views-widget-filter-search_api_views_fulltext,
  .block--views-exp-search-page .views-submit-button {
    display: inline;
    padding: 0; }
  .block--views-exp-search-page--2 input,
  .block--views-exp-search-page--3 input,
  .block--views-exp-search-page input {
    display: inline;
    float: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 32px;
    padding: 0 0 0 10px; }
    .block--views-exp-search-page--2 input:hover, .block--views-exp-search-page--2 input:focus,
    .block--views-exp-search-page--3 input:hover,
    .block--views-exp-search-page--3 input:focus,
    .block--views-exp-search-page input:hover,
    .block--views-exp-search-page input:focus {
      border: none;
      box-shadow: none; }
  .block--views-exp-search-page--2 .views-exposed-form .views-exposed-widget .form-submit,
  .block--views-exp-search-page--3 .views-exposed-form .views-exposed-widget .form-submit,
  .block--views-exp-search-page .views-exposed-form .views-exposed-widget .form-submit {
    display: inline;
    float: none;
    font-family: FontAwesome;
    font-size: 12px;
    background-color: #fff;
    color: #333;
    padding: 0 3px;
    margin-bottom: 0;
    line-height: 32px;
    width: 100%;
    text-align: center;
    margin-top: 0; }
  .block--views-exp-search-page--2 .views-exposed-widget,
  .block--views-exp-search-page--3 .views-exposed-widget,
  .block--views-exp-search-page .views-exposed-widget {
    width: 82.97872%;
    float: left;
    margin-right: 2.12766%;
    margin-bottom: 0; }
  .block--views-exp-search-page--2 .views-submit-button,
  .block--views-exp-search-page--3 .views-submit-button,
  .block--views-exp-search-page .views-submit-button {
    width: 14.89362%;
    float: right;
    margin-right: 0; }

.page-search .l-content .block--views-exp-search-page,
.page-search .l-content .block--views-exp-search-page--2 {
  display: block; }

.l-header .block--views-exp-search-page .block__content {
  width: 48.93617%;
  float: right;
  margin-right: 0; }

.block--views-pubs-front-block .block__title {
  font-size: 33px;
  font-weight: 300;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px; }

.block--views-front-arts-block {
  margin-bottom: 40px; }

.view-pubs-front {
  font-family: "Oxygen", sans-serif; }
  .view-pubs-front span.views-field {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900; }
  .view-pubs-front div.views-field {
    font-size: 19px; }

.footer-wrapper {
  display: none; }

.view-pubs-chrono .views-field-title a {
  color: #000; }

.menu-mlid-754 a {
  background-color: transparent;
  display: inline;
  text-align: left;
  padding: 0;
  font-family: "Oxygen", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.6;
  letter-spacing: 0.01em; }

.block--block-28 {
  padding: 20px 0; }

@media (min-width: 768px) {
  .l-colophon {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px; }
    .l-colophon:after {
      content: " ";
      display: block;
      clear: both; }
  /* Containers*/
  .l-header,
  .l-main,
  .l-footer,
  .l-colophon,
  .block .block-container,
  .block--block-3,
  .section-profile .l-region--pre-footer,
  .section-profile .l-region--post-content,
  .section-issues.page-taxonomy-term .block--views-pubs-chrono-block .block__content,
  .term-listing-heading .vocabulary-issue,
  .view-cpes-featured-expert,
  .container,
  .section-press-room .l-region--pre-footer {
    max-width: 960px; }
  .footer-wrapper {
    display: block; }
  .page-search .l-content .block--views-exp-search-page--2,
  .page-search .l-content .block--views-exp-search-page {
    display: none; }
  .block--views-front-arts-block {
    padding: 60px 0;
    background-color: #f1f1f1; }
  .section-profile .l-region--pre-footer {
    display: -ms-flexbox;
    display: flex; }
    .section-profile .l-region--pre-footer .block {
      position: relative;
      width: 32%;
      margin-right: 2%;
      display: -ms-flexbox;
      display: flex;
      padding-bottom: 40px; }
      .section-profile .l-region--pre-footer .block:last-child {
        margin-right: 0; }
      .section-profile .l-region--pre-footer .block .view-footer {
        position: absolute;
        width: 100%;
        bottom: 0;
        padding-top: 10px;
        border-top: 1px solid #ddd; }
  .block--views-exp-search-page,
  .block--views-exp-search-page--3 {
    display: block;
    margin-bottom: 14px; }
  .view-pubs-front .views-row {
    width: 48.93617%;
    float: left;
    margin-bottom: 20px; }
    .view-pubs-front .views-row:nth-child(2n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both;
      margin-left: 0; }
    .view-pubs-front .views-row:nth-child(2n + 2) {
      margin-left: 51.06383%;
      margin-right: -100%;
      clear: none; }
  .l-branding {
    width: 31.91489%;
    float: left;
    margin-right: 2.12766%;
    padding-top: 26px; }
  .l-region--header {
    width: 65.95745%;
    float: right;
    margin-right: 0;
    padding-top: 27px; }
  .l-region--navigation {
    clear: both; }
  .has-sidebar-first .l-content {
    width: 65.95745%;
    float: right;
    margin-right: 0; }
  .has-sidebar-first .l-region--sidebar-first {
    width: 31.91489%;
    float: left;
    margin-right: 2.12766%; }
    .page-search .has-sidebar-first .l-region--sidebar-first {
      display: block; }
  .node-type-event .l-region--sidebar-first .block,
  .node-type-publication .l-region--sidebar-first .block,
  .node-type-article .l-region--sidebar-first .block,
  .node-type-page .l-region--sidebar-first .block {
    width: 63.63636%;
    float: right;
    margin-right: 0; }
    .node-type-event .l-region--sidebar-first .block:last-child,
    .node-type-publication .l-region--sidebar-first .block:last-child,
    .node-type-article .l-region--sidebar-first .block:last-child,
    .node-type-page .l-region--sidebar-first .block:last-child {
      border: none; }
  .has-sidebar-second .l-content {
    width: 65.95745%;
    float: left;
    margin-right: 2.12766%; }
  .has-sidebar-second .l-region--sidebar-second {
    width: 31.91489%;
    float: right;
    margin-right: 0;
    padding-top: 40px; }
  .has-two-sidebars .l-content {
    width: 31.91489%;
    float: left;
    margin-right: 2.12766%; }
  .has-two-sidebars .l-region--sidebar-first,
  .has-two-sidebars .l-region--sidebar-second {
    width: 31.91489%;
    float: right;
    margin-right: 0; }
  .has-two-sidebars .l-region--sidebar-second {
    clear: right; } }

@media (min-width: 960px) {
  /* Containers */
  .l-header,
  .l-main,
  .l-footer,
  .l-colophon,
  .block .block-container,
  .block--block-3,
  .section-profile .l-region--pre-footer,
  .section-profile .l-region--post-content,
  .section-issues.page-taxonomy-term .block--views-pubs-chrono-block .block__content,
  .term-listing-heading .vocabulary-issue,
  .view-cpes-featured-expert,
  .container,
  .section-press-room .l-region--pre-footer {
    max-width: 960px; }
  .l-branding {
    width: 31.91489%;
    float: left;
    margin-right: 2.12766%; }
  .l-region--header {
    width: 65.95745%;
    float: right;
    margin-right: 0; }
  .has-sidebar-first .l-content {
    width: 65.95745%;
    float: right;
    margin-right: 0; }
  .has-sidebar-first .l-region--sidebar-first {
    width: 31.91489%;
    float: left;
    margin-right: 2.12766%; }
  .has-sidebar-second .l-content {
    width: 65.95745%;
    float: left;
    margin-right: 2.12766%; }
  .has-sidebar-second .l-region--sidebar-second {
    width: 31.91489%;
    float: right;
    margin-right: 0;
    clear: none; }
  .has-two-sidebars .l-content {
    width: 65.95745%;
    float: left;
    margin-right: 2.12766%;
    margin-left: 17.02128%; }
  .has-two-sidebars .l-region--sidebar-first,
  .has-two-sidebars .l-region--sidebar-second {
    width: 14.89362%;
    float: left;
    margin-right: 2.12766%; }
  .has-two-sidebars .l-region--sidebar-first {
    margin-left: -85.10638%; }
  .has-two-sidebars .l-region--sidebar-second {
    float: right;
    margin-right: 0;
    clear: none; } }

/*# sourceMappingURL=grid.layout.css.map */
