<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
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: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/*** Fonts ***/
/* New 2023 regular font to replace Lato
  font-family: 'Libre Franklin', sans-serif;
 */
/* new 2023 header font to replace Weizmann 
  font-family: "Weizmann";
 */
@font-face {
  font-family: "Weizmann";
  src: url("/static/fonts/wei-web/Weizmann-Regular.woff2") format("woff2"), url("/static/fonts/wei-web/Weizmann-Regular.woff") format("woff"), url("/static/fonts/wei-web/Weizmann-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/*** Colors ****/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  position: relative;
  height: 100%;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Libre Franklin', sans-serif;
}

.text-arts,
.tagarts {
  color: #EE4266;
}

.text-tech,
.tagtech {
  color: #f38354;
}

.text-education,
.tageducation {
  color: #ffd800;
}

.text-earth,
.tagearth {
  color: #0EAD69;
}

.text-health,
.taghealth {
  color: #0080F7;
}

.text-space,
.tagspace {
  color: #8e4398;
}

.text-brain,
.tagbrain {
  color: #540D6E;
}

.text-curiosity,
.tagcuriosity {
  color: #727475;
}

.text-white {
  color: #ffffff;
}

.text-white *:not(a) {
  color: #ffffff;
}

.text-blue {
  color: #0080F7;
}

.text-blue *:not(a) {
  color: #161616;
}

.text-lightblue {
  color: #17aefa !important;
}

.text-greenish {
  color: #12496D;
}

.text-greenish *:not(a) {
  color: #12496D;
}

.text-redish {
  color: #B15200;
}

.text-redish *:not(a) {
  color: #B15200;
}

.text-black {
  color: #000000 !important;
}

a {
  color: #161616;
  text-decoration: underline;
  font-weight: 600;
}

a:hover {
  color: #121212;
  text-decoration: underline;
}

a:focus {
  color: #121212;
  text-decoration: underline;
}

.background-blue {
  background-color: #0080F7;
}

.background-white {
  background-color: #ffffff;
}

.background-black {
  background-color: #000000;
}

.background-darkgrey {
  background-color: #272727;
}

.background-grey {
  background-color: #f9f9f9;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/*** Typography ***/
.img-v-align-center .img-fit,
.img-v-align- .img-fit {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;';
}

.img-v-align-top .img-fit {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  font-family: 'object-fit: cover; object-position: top;';
}

.img-v-align-bottom .img-fit {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  font-family: 'object-fit: cover; object-position: bottom;';
}

/**    Blog Article    **/
.mtop-80 {
  margin-top: 80px;
}

.mtop-50 {
  margin-top: 50px;
}

.mtop-40 {
  margin-top: 40px;
}

.mtop-10 {
  margin-top: 10px;
}

.mtop-0 {
  margin-top: 0;
}

.mbottom-80 {
  margin-bottom: 80px;
}

.mbottom-50 {
  margin-bottom: 50px !important;
}

.mbottom-40 {
  margin-bottom: 40px !important;
}

.mbottom-34 {
  margin-bottom: 34px !important;
}

.mbottom-28 {
  margin-bottom: 28px !important;
}

.mbottom-24 {
  margin-bottom: 24px !important;
}

.mbottom-20 {
  margin-bottom: 20px !important;
}

.mbottom-10 {
  margin-bottom: 10px;
}

.mbottom-18 {
  margin-bottom: 18px;
}

.mbottom-12 {
  margin-bottom: 12px;
}

.mbottom-0 {
  margin-bottom: 0;
}

.ptop-80 {
  padding-top: 80px;
}

.ptop-40 {
  padding-top: 40px;
}

.ptop-30 {
  padding-top: 30px;
}

.pbottom-80 {
  padding-bottom: 80px;
}

.pbottom-40 {
  padding-bottom: 40px;
}

.pbottom-30 {
  padding-bottom: 30px;
}

.pbottom-20 {
  padding-bottom: 20px;
}

.pbottom-0 {
  padding-bottom: 0;
}

.pleft-10 {
  padding-left: 10px;
}

.pright-10 {
  padding-right: 10px;
}

.pRandL-10 {
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 1130px) {
  .pRandL-10-m {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 1130px) {
  .pRandL-20-m {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cpTop {
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  .cpTop {
    padding-top: 40px;
  }
}

.cpBottom {
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .cpBottom {
    padding-bottom: 30px;
  }
}

.skrollr body {
  height: 100% !important;
}

.width970 {
  max-width: 970px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.d-flex.no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex.justify-col {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.d-flex .col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex .col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 12px;
  padding-right: 12px;
}

@media screen and (max-width: 767px) {
  .d-flex .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.d-flex .col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33332%;
  flex: 0 0 33.33332%;
  max-width: 33.33332%;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.d-flex .col-4 .col-content {
  background: white;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex .col-4 .text-field {
  padding: 40px;
}

.d-flex .col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.d-flex .col-3 .col-content {
  background: white;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex .col-3 .text-field {
  padding: 20px;
}

.d-flex .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
}

.d-flex .col-auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.article-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

.article-wrapper:not(.full-width-cc) {
  max-width: 970px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .article-wrapper:not(.full-width-cc) {
    width: 100%;
  }
}

.main-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: white;
  display: block;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .main-header img {
    max-width: 100%;
    height: auto;
  }
}

.main-header .nav-bar {
  padding: 0 0 20px 0;
}

.bottom-border-arts {
  border-bottom: 5px solid #EE4266;
}

.bottom-border-tech {
  border-bottom: 5px solid #f38354;
}

.bottom-border-education {
  border-bottom: 5px solid #ffd800;
}

.bottom-border-earth {
  border-bottom: 5px solid #0EAD69;
}

.bottom-border-health {
  border-bottom: 5px solid #0080F7;
}

.bottom-border-space {
  border-bottom: 5px solid #8e4398;
}

.bottom-border-brain {
  border-bottom: 5px solid #540D6E;
}

.bottom-border-curiosity {
  border-bottom: 5px solid #727475;
}

.section {
  display: block;
  position: relative;
  padding: 0 !important;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
}

.section.z-index-2 {
  position: relative;
  z-index: 2;
}

.section.z-index-3 {
  position: relative;
  z-index: 3;
}

.section.z-index-4 {
  position: relative;
  z-index: 4;
}

.section.z-index-5 {
  position: relative;
  z-index: 5;
}

.section.z-index-6 {
  position: relative;
  z-index: 6;
}

.section.z-index-7 {
  position: relative;
  z-index: 7;
}

.section.z-index-8 {
  position: relative;
  z-index: 8;
}

.section .width660 {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section img {
  max-width: 100%;
  height: auto;
}

.section .img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;';
}

.section h1 {
  font-family: "Weizmann", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 82px;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 769px) {
  .section h1 {
    font-size: 48px;
    line-height: 52px;
  }
}

.section h2 {
  font-family: "Weizmann", serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 38px;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .section h2 {
    font-size: 46px;
    line-height: 48px;
  }
}

.section h2 a {
  text-decoration: none;
}

.section h2.size-h3 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

@media screen and (min-width: 769px) {
  .section h2.size-h3 {
    font-size: 28px;
    line-height: 47px;
  }
}

.section h3 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  font-style: normal;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .section h3 {
    font-size: 28px;
    line-height: 47px;
  }
}

.section h3 a {
  text-decoration: none;
}

.section h3.size-h2 {
  font-family: "Weizmann", serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 38px;
}

@media screen and (min-width: 769px) {
  .section h3.size-h2 {
    font-size: 46px;
    line-height: 48px;
  }
}

.section h4 {
  font-family: "Weizmann", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  padding: 0;
}

.section h4 a {
  text-decoration: none;
}

.section p {
  font-family: "Libre Franklin", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  color: #161616;
  margin: 0;
  padding: 0;
}

.section ul,
.section ol {
  font-family: "Libre Franklin", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  color: #161616;
}

.section ul li {
  list-style: disc;
}

.section ol li {
  list-style: decimal;
}

.section .bold,
.section strong {
  font-weight: 700 !important;
}

.section .semi-bold {
  font-weight: 600 !important;
}

.section .fontMerri,
.section .fontWei {
  font-family: "Weizmann", serif;
}

.section .fontLato,
.section .fontLibre {
  font-family: 'Libre Franklin', sans-serif;
}

.section .quotes {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.section .quotes.just-1 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.section .quotes.more-than-1 .quote {
  margin-top: 100px;
  margin-bottom: 100px;
}

.section .quotes .quote {
  margin-bottom: 0;
}

@media screen and (max-width: 1040px) {
  .section .quotes .quote {
    -webkit-transform: translateY(5%) !important;
    -ms-transform: translateY(5%) !important;
    transform: translateY(5%) !important;
    opacity: 1 !important;
  }
}

.section .quotes .quote h3 {
  margin: 0;
  padding: 0;
}

.section .quotes .quote .quote-by {
  margin-top: 28px;
}

@media screen and (max-width: 768px) {
  .section .quotes .quote .quote-by {
    margin-top: 22px;
  }
}

.section .quotes .quote .quote-by p {
  margin: 0;
  padding: 0;
}

.section .quotes .quote .quote-by .name {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 768px) {
  .section .quotes .quote .quote-by .name {
    font-size: 18px;
    line-height: 24px;
  }
}

.section .quotes .quote .quote-by .label {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .section .quotes .quote .quote-by .label {
    font-size: 16px;
    line-height: 24px;
  }
}

.section .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.section .embed-responsive:before {
  content: "";
  display: block;
}

.section .embed-responsive-1by1:before {
  padding-top: 100%;
}

.section .embed-responsive-16by9:before {
  padding-top: 56.25%;
}

.section .embed-responsive .embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (min-width: 1025px) {
  .main-blog-wrapper {
    overflow-x: hidden;
  }
}

.section.section-article {
  background-color: #ffffff;
  position: relative;
}

.section.section-article img {
  width: 100%;
  height: auto;
}

.section.section-article .lt {
  float: left;
}

.section.section-article .rt {
  float: right;
}

.section.section-article hr {
  border: 0;
  height: 1px;
  background-color: #9E9E9E;
  margin: 24px 0;
}

.section.section-article .pictureCaptionWrap.rt {
  margin: 10px 0 10px 10px;
  max-width: 100%;
}

.section.section-article .pictureCaptionWrap.lt {
  margin: 10px 10px 10px 0px;
  max-width: 100%;
}

.section.section-article .pictureCaptionWrap.rt img,
.section.section-article .pictureCaptionWrap.lt img {
  margin: 0;
}

@media screen and (max-width: 680px) {
  .section.section-article .pictureCaptionWrap {
    float: none;
  }
}

@media screen and (max-width: 680px) {
  .section.section-article .pictureCaptionWrap img {
    width: 100%;
    max-width: 100%;
  }
}

.section.section-article .pictureCaptionWrap .pictureCaption,
.section.section-article .article-wrapper .article-content .pictureCaption,
.section.section-article .article-wrapper .article-content .pictureCaption p,
.section.section-article .article-wrapper .article-content figcaption {
  color: #727475;
  font-family: "Libre Franklin", sans-serif;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0;
  line-height: 26px;
  margin-top: 6px;
  margin-bottom: 0;
  padding: 0;
}

.section.section-article .article-wrapper {
  font-family: "Libre Franklin", sans-serif;
  margin-top: 60px;
  padding-bottom: 64px;
}

.section.section-article .article-wrapper em {
  font-style: italic;
}

.section.section-article .article-wrapper .article-header {
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.section.section-article .article-wrapper .article-header .tag {
  font-family: "Libre Franklin", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  text-decoration: none;
}

.section.section-article .article-wrapper .article-header h1 {
  font-family: "Weizmann", serif;
  color: #161616;
  font-size: 66px;
  letter-spacing: 0;
  line-height: 72px;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .section.section-article .article-wrapper .article-header h1 {
    font-size: 36px;
    line-height: 50px;
  }
}

.section.section-article .article-wrapper .article-header .article-meta .article-info {
  margin-top: 12px;
  font-family: "Libre Franklin", sans-serif;
  color: #727475;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
}

.section.section-article .article-wrapper .article-header .article-meta .article-info span {
  display: inline-block;
  line-height: 1;
}

.section.section-article .article-wrapper .article-header .article-meta .article-info span+span {
  border-left: 1px solid #727475;
  margin-left: 8px;
  padding-left: 9px;
}

.section.section-article .article-wrapper .article-content {
    overflow: hidden;
    width: 100%;
}

.section.section-article .article-wrapper .article-content h1,
.section.section-article .article-wrapper .article-content h2,
.section.section-article .article-wrapper .article-content h3,
.section.section-article .article-wrapper .article-content h4,
.section.section-article .article-wrapper .article-content h5,
.section.section-article .article-wrapper .article-content h6,
.section.section-article .article-wrapper .article-content h5.smallHeader {
  font-family: "Libre Franklin", sans-serif;
  padding: 0;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
  color: #161616;
}

.section.section-article .article-wrapper .article-content h2,
.section.section-article .article-wrapper .article-content h5.smallHeader {
  font-family: "Libre Franklin", sans-serif;
  font-size: 28px;
  line-height: 36px;
}

@media screen and (max-width: 768px) {
  .section.section-article .article-wrapper .article-content h2,
  .section.section-article .article-wrapper .article-content h5.smallHeader {
    font-size: 24px;
    line-height: 28px;
  }
}

.section.section-article .article-wrapper .article-content p {
  padding: 0;
  margin-top: 0;
  margin-bottom: 16px;
  color: #161616;
}

.section.section-article .article-wrapper .article-content ul,
.section.section-article .article-wrapper .article-content ol {
  margin-left: 18px;
  margin-bottom: 18px;
}

.section.section-article .article-wrapper .article-content ul li,
.section.section-article .article-wrapper .article-content ol li {
  margin-bottom: 12px;
}

.section.section-article .article-wrapper .article-content ul li:last-child,
.section.section-article .article-wrapper .article-content ol li:last-child {
  margin-bottom: 0;
}

.section.section-article .article-wrapper .article-content figure,
.section.section-article .article-wrapper .article-content .pictureLarge {
    margin-bottom: 20px;
}

.section.section-article .article-wrapper .article-content a {
  color: #0080F7;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: inherit;
}

.section.section-article .article-wrapper .article-content a:hover {
  color: #0058aa;
  text-decoration: underline;
}

.section.section-article .article-wrapper .article-author {
  border-top: 1px solid #727475;
  padding-top: 28px;
  margin-top: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.section-article .article-wrapper .article-author .author-image {
  max-width: 84px;
  margin-top: 2px;
}

.section.section-article .article-wrapper .article-author .author-image+.author-info {
  padding-left: 14px;
  max-width: 510px;
}

.section.section-article .article-wrapper .article-author .author-info h3 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  margin: 0 0 5px 0;
  padding: 0;
  color: black;
}

.section.section-article .article-wrapper .article-author .author-info p {
  font-family: "Libre Franklin", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
  margin: 0;
  padding: 0;
  color: black;
}

.section.section-article .article-wrapper .article-author .author-info a {
  color: #0080F7;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: inherit;
}

.section.section-article .article-wrapper .article-author .author-info a:hover {
  color: #0058aa;
  text-decoration: underline;
}

.section.section-article .article-wrapper .article-from {
  margin-top: 14px;
  max-width: 600px;
  width: 100%;
}

.section.section-article .article-wrapper .article-from p {
  color: #161616;
}

.section.section-article .article-wrapper .article-from a {
  color: #0080F7;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: inherit;
}

.section.section-article .article-wrapper .article-from a:hover {
  color: #0058aa;
  text-decoration: underline;
}

.section.section-article .article-wrapper .article-tags {
  max-width: 930px;
  width: 100%;
}

.section.section-article .article-wrapper .article-tags p {
  color: #161616;
  font-style: italic;
}

.section.section-article .article-wrapper .article-tags a {
  color: #0080F7;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: inherit;
}

.section.section-article .article-wrapper .article-tags a:hover {
  color: #0058aa;
  text-decoration: underline;
}

.section.section-article .pagenavsection.blog_pager {
  position: relative;
  width: 100%;
  padding: 50px 0px;
  background-color: #F9F5EA;
  border-top: 1px solid #161616;
}

@media screen and (max-width: 768px) {
  .section.section-article .pagenavsection.blog_pager {
    padding: 30px 0px;
  }
}

.section.section-article .pagenavsection.blog_pager .content-container {
  width: 100%;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section.section-article .pagenavsection.blog_pager .content-container .pagenav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.section-article .pagenavsection.blog_pager .content-container .pagenav .col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.section.section-article .pagenavsection.blog_pager .content-container .pagenav .prev-link {
  padding-left: 0;
  padding-right: 6px;
}

.section.section-article .pagenavsection.blog_pager .content-container .pagenav .next-link {
  padding-right: 0;
  padding-left: 6px;
}

.section.section-article .pagenavsection.blog_pager .content-container .pagenav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section.section-article .pagenavsection.blog_pager .content-container svg {
  fill: #161616;
  height: 25px;
}

@media screen and (max-width: 768px) {
  .section.section-article .pagenavsection.blog_pager .content-container svg {
    height: 14px;
  }
}

.section.section-article .pagenavsection.blog_pager .content-container .arrow-link {
  display: inline-block;
}

.section.section-article .pagenavsection.blog_pager .content-container .direction {
  display: block;
}

.section.section-article .pagenavsection.blog_pager .content-container .direction.left {
  margin-left: 16px;
}

@media screen and (min-width: 769px) {
  .section.section-article .pagenavsection.blog_pager .content-container .direction.left {
    padding-left: 16px;
    border-left: 1px solid #161616;
  }
}

@media screen and (max-width: 400px) {
  .section.section-article .pagenavsection.blog_pager .content-container .direction.left {
    margin-left: 12px;
  }
}

.section.section-article .pagenavsection.blog_pager .content-container .direction.right {
  text-align: right;
  margin-right: 16px;
}

@media screen and (min-width: 769px) {
  .section.section-article .pagenavsection.blog_pager .content-container .direction.right {
    padding-right: 16px;
    border-right: 1px solid #161616;
  }
}

@media screen and (max-width: 400px) {
  .section.section-article .pagenavsection.blog_pager .content-container .direction.right {
    margin-right: 12px;
  }
}

.section.section-article .pagenavsection.blog_pager .content-container .direction .post_title {
  display: block;
  font-family: "Libre Franklin", sans-serif;
  color: #161616;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .section.section-article .pagenavsection.blog_pager .content-container .direction .post_title {
    display: none;
    margin: 0;
  }
}

.section.section-article .pagenavsection.blog_pager .content-container a {
  font-family: "Libre Franklin", sans-serif;
  color: #161616;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
}

@media screen and (max-width: 768px) {
  .section.section-article .pagenavsection.blog_pager .content-container a {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 400px) {
  .section.section-article .pagenavsection.blog_pager .content-container a {
    font-size: 14px;
    line-height: 18px;
  }
}</pre></body></html>