From 26e75468200a819aa5c6cc0c41593c5b27b374fe Mon Sep 17 00:00:00 2001 From: Gayathri Gandaboyina Date: Mon, 11 Sep 2023 11:09:22 +0530 Subject: [PATCH 1/5] Update style.css - right-nav changes Modified the right-nav styling on article pages --- suse2022-ns/static/css/style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/suse2022-ns/static/css/style.css b/suse2022-ns/static/css/style.css index ff65e533..bb409138 100644 --- a/suse2022-ns/static/css/style.css +++ b/suse2022-ns/static/css/style.css @@ -3432,3 +3432,33 @@ article a:hover code { content: " (" attr(href) ") ↗"; color: unset; background-image: none; } } + + +main #_side-toc-page { + background-color: #efefef; + padding-left: 1.5rem; +} + +.side-toc .side-title { + margin-block:0.5rem; + font-size: 14px; + font-weight: 600; + margin-top:1rem; +} + .side-toc a { + /*color: #26915e;*/ + color: #30BA78; + padding:0; + padding-block:0.4rem; + font-weight: 500; +} + .side-toc .toc a:focus, .side-toc .toc a:hover, .side-toc .toc a:active { + background-color:transparent; +} + main article{ + padding-inline:3rem; +} + .article h1.title{ + font-size: 42px; + margin-bottom: 0.5rem; +} From 3d69fc2705a704843513ec3f10ccba4bca846624 Mon Sep 17 00:00:00 2001 From: Gayathri Gandaboyina Date: Fri, 15 Sep 2023 19:19:43 +0530 Subject: [PATCH 2/5] Updates major-elements.sass --- .../styles2022/sass/custom/major-elements.sass | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source-assets/styles2022/sass/custom/major-elements.sass b/source-assets/styles2022/sass/custom/major-elements.sass index d92dae28..3c99c070 100644 --- a/source-assets/styles2022/sass/custom/major-elements.sass +++ b/source-assets/styles2022/sass/custom/major-elements.sass @@ -131,9 +131,13 @@ main padding-right: 0 #_side-toc-page - background-color: $c_white - margin-right: 0 - padding-left: 0 + background-color: $c_fog + margin-right:0 + padding-left: 1.5rem + + // background-color: $c_white + // margin-right: 0 + // padding-left: 0 &.sticky article From 7a6c2fd70a9d950ade36a7a6358f84f20a9a3188 Mon Sep 17 00:00:00 2001 From: Gayathri Gandaboyina Date: Fri, 15 Sep 2023 19:42:39 +0530 Subject: [PATCH 3/5] Updated side-toc.sass --- .../styles2022/sass/custom/side-toc.sass | 25 ++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/source-assets/styles2022/sass/custom/side-toc.sass b/source-assets/styles2022/sass/custom/side-toc.sass index f2ba7e13..93a9fe11 100644 --- a/source-assets/styles2022/sass/custom/side-toc.sass +++ b/source-assets/styles2022/sass/custom/side-toc.sass @@ -42,9 +42,15 @@ $you_are_here_weight: 600 .side-title color: $c_pine - font-size: $i_font_menu - font-weight: 800 - + margin-top: 1rem + margin-bottom: 0.5rem + font-size: 0.875rem + font-weight: 600 + + // font-size: $i_font_menu + // font-weight: 800 + + // fix the display of the em.citetitle that is somehow included in every // other guide name... em @@ -53,6 +59,19 @@ $you_are_here_weight: 600 // "On this page" #_side-toc-page + + a + color: $c_jungle + padding-inline:0 + padding-block:0.4rem + + &:focus, + &:hover, + &:active + background-color: transparent + text-decoration: underline + + @include m_tablet background-color: $c_white border: .2rem solid $c_pine From fdcd28fca931fca31a06d686f39f8bad5a9ec2fb Mon Sep 17 00:00:00 2001 From: Gayathri Gandaboyina Date: Fri, 15 Sep 2023 20:00:31 +0530 Subject: [PATCH 4/5] correction in side-toc.sass for 'a' element --- source-assets/styles2022/sass/custom/side-toc.sass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source-assets/styles2022/sass/custom/side-toc.sass b/source-assets/styles2022/sass/custom/side-toc.sass index 93a9fe11..116f5135 100644 --- a/source-assets/styles2022/sass/custom/side-toc.sass +++ b/source-assets/styles2022/sass/custom/side-toc.sass @@ -62,8 +62,7 @@ $you_are_here_weight: 600 a color: $c_jungle - padding-inline:0 - padding-block:0.4rem + padding: 0.4rem 0 &:focus, &:hover, From 144cae23e62018d4d3d02dce29e742e6729f00ac Mon Sep 17 00:00:00 2001 From: Tom Schraitle Date: Fri, 15 Sep 2023 16:32:43 +0200 Subject: [PATCH 5/5] Compile style.sass -> style.css --- .../sass/custom/major-elements.sass | 2 +- suse2022-ns/static/css/style.css | 732 +++++++++--------- 2 files changed, 350 insertions(+), 384 deletions(-) diff --git a/source-assets/styles2022/sass/custom/major-elements.sass b/source-assets/styles2022/sass/custom/major-elements.sass index 3c99c070..391f5f0e 100644 --- a/source-assets/styles2022/sass/custom/major-elements.sass +++ b/source-assets/styles2022/sass/custom/major-elements.sass @@ -132,7 +132,7 @@ main #_side-toc-page background-color: $c_fog - margin-right:0 + margin-right: 0 padding-left: 1.5rem // background-color: $c_white diff --git a/suse2022-ns/static/css/style.css b/suse2022-ns/static/css/style.css index bb409138..3a8e7030 100644 --- a/suse2022-ns/static/css/style.css +++ b/suse2022-ns/static/css/style.css @@ -69,858 +69,856 @@ th { th:not([align]) { text-align: inherit; } -.container, main article, main .side-toc, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, #_footer .footer-topper .footer-links, #_footer .footer-topper .social { +.container, #_footer .footer-topper .social, #_footer .footer-topper .footer-links, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, main .side-toc, main article { flex-grow: 1; margin: 0 auto; position: relative; width: auto; } - .container.is-fluid, main article.is-fluid, main .is-fluid.side-toc, main.is-fluid.sticky.scroll-with-footer::before, main.is-fluid.sticky.scroll-with-footer::after, #_footer .footer-topper .is-fluid.footer-links, #_footer .footer-topper .is-fluid.social { + .container.is-fluid, #_footer .footer-topper .is-fluid.social, #_footer .footer-topper .is-fluid.footer-links, main.is-fluid.sticky.scroll-with-footer::before, main.is-fluid.sticky.scroll-with-footer::after, main .is-fluid.side-toc, main article.is-fluid { max-width: none !important; padding-left: 32px; padding-right: 32px; width: 100%; } @media screen and (min-width: 1024px) { - .container, main article, main .side-toc, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, #_footer .footer-topper .footer-links, #_footer .footer-topper .social { + .container, #_footer .footer-topper .social, #_footer .footer-topper .footer-links, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, main .side-toc, main article { max-width: 960px; } } @media screen and (max-width: 1215px) { - .container.is-widescreen:not(.is-max-desktop), main article.is-widescreen:not(.is-max-desktop), main .is-widescreen.side-toc:not(.is-max-desktop), main.is-widescreen.sticky.scroll-with-footer:not(.is-max-desktop)::before, main.is-widescreen.sticky.scroll-with-footer:not(.is-max-desktop)::after, #_footer .footer-topper .is-widescreen.footer-links:not(.is-max-desktop), #_footer .footer-topper .is-widescreen.social:not(.is-max-desktop) { + .container.is-widescreen:not(.is-max-desktop), #_footer .footer-topper .is-widescreen.social:not(.is-max-desktop), #_footer .footer-topper .is-widescreen.footer-links:not(.is-max-desktop), main.is-widescreen.sticky.scroll-with-footer:not(.is-max-desktop)::before, main.is-widescreen.sticky.scroll-with-footer:not(.is-max-desktop)::after, main .is-widescreen.side-toc:not(.is-max-desktop), main article.is-widescreen:not(.is-max-desktop) { max-width: 1152px; } } @media screen and (max-width: 1407px) { - .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen), main article.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen), main .is-fullhd.side-toc:not(.is-max-desktop):not(.is-max-widescreen), main.is-fullhd.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::before, main.is-fullhd.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::after, #_footer .footer-topper .is-fullhd.footer-links:not(.is-max-desktop):not(.is-max-widescreen), #_footer .footer-topper .is-fullhd.social:not(.is-max-desktop):not(.is-max-widescreen) { + .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen), #_footer .footer-topper .is-fullhd.social:not(.is-max-desktop):not(.is-max-widescreen), #_footer .footer-topper .is-fullhd.footer-links:not(.is-max-desktop):not(.is-max-widescreen), main.is-fullhd.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::before, main.is-fullhd.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::after, main .is-fullhd.side-toc:not(.is-max-desktop):not(.is-max-widescreen), main article.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) { max-width: 1344px; } } @media screen and (min-width: 1216px) { - .container:not(.is-max-desktop), main article:not(.is-max-desktop), main .side-toc:not(.is-max-desktop), main.sticky.scroll-with-footer:not(.is-max-desktop)::before, main.sticky.scroll-with-footer:not(.is-max-desktop)::after, #_footer .footer-topper .footer-links:not(.is-max-desktop), #_footer .footer-topper .social:not(.is-max-desktop) { + .container:not(.is-max-desktop), #_footer .footer-topper .social:not(.is-max-desktop), #_footer .footer-topper .footer-links:not(.is-max-desktop), main.sticky.scroll-with-footer:not(.is-max-desktop)::before, main.sticky.scroll-with-footer:not(.is-max-desktop)::after, main .side-toc:not(.is-max-desktop), main article:not(.is-max-desktop) { max-width: 1152px; } } @media screen and (min-width: 1408px) { - .container:not(.is-max-desktop):not(.is-max-widescreen), main article:not(.is-max-desktop):not(.is-max-widescreen), main .side-toc:not(.is-max-desktop):not(.is-max-widescreen), main.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::before, main.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::after, #_footer .footer-topper .footer-links:not(.is-max-desktop):not(.is-max-widescreen), #_footer .footer-topper .social:not(.is-max-desktop):not(.is-max-widescreen) { + .container:not(.is-max-desktop):not(.is-max-widescreen), #_footer .footer-topper .social:not(.is-max-desktop):not(.is-max-widescreen), #_footer .footer-topper .footer-links:not(.is-max-desktop):not(.is-max-widescreen), main.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::before, main.sticky.scroll-with-footer:not(.is-max-desktop):not(.is-max-widescreen)::after, main .side-toc:not(.is-max-desktop):not(.is-max-widescreen), main article:not(.is-max-desktop):not(.is-max-widescreen) { max-width: 1344px; } } - /* Bulma Grid */ -.column, main article, main .side-toc, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, #_footer .footer-topper .footer-links, #_footer .footer-topper .social { +.column, #_footer .footer-topper .social, #_footer .footer-topper .footer-links, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, main .side-toc, main article { display: block; flex-basis: 0; flex-grow: 1; flex-shrink: 1; padding: 0.75rem; } - .columns.is-mobile > .column.is-narrow, main .columns.is-mobile > article.is-narrow, main .columns.is-mobile > .is-narrow.side-toc, .columns.is-mobile > main.is-narrow.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-narrow.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-narrow.footer-links, #_footer .footer-topper .columns.is-mobile > .is-narrow.social { + .columns.is-mobile > .column.is-narrow, #_footer .footer-topper .columns.is-mobile > .is-narrow.social, #_footer .footer-topper .columns.is-mobile > .is-narrow.footer-links, .columns.is-mobile > main.is-narrow.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-narrow.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-narrow.side-toc, main .columns.is-mobile > article.is-narrow { flex: none; width: unset; } - .columns.is-mobile > .column.is-full, main .columns.is-mobile > article.is-full, main .columns.is-mobile > .is-full.side-toc, .columns.is-mobile > main.is-full.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-full.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-full.footer-links, #_footer .footer-topper .columns.is-mobile > .is-full.social { + .columns.is-mobile > .column.is-full, #_footer .footer-topper .columns.is-mobile > .is-full.social, #_footer .footer-topper .columns.is-mobile > .is-full.footer-links, .columns.is-mobile > main.is-full.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-full.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-full.side-toc, main .columns.is-mobile > article.is-full { flex: none; width: 100%; } - .columns.is-mobile > .column.is-three-quarters, main .columns.is-mobile > article.is-three-quarters, main .columns.is-mobile > .is-three-quarters.side-toc, .columns.is-mobile > main.is-three-quarters.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-three-quarters.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-three-quarters.footer-links, #_footer .footer-topper .columns.is-mobile > .is-three-quarters.social { + .columns.is-mobile > .column.is-three-quarters, #_footer .footer-topper .columns.is-mobile > .is-three-quarters.social, #_footer .footer-topper .columns.is-mobile > .is-three-quarters.footer-links, .columns.is-mobile > main.is-three-quarters.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-three-quarters.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-three-quarters.side-toc, main .columns.is-mobile > article.is-three-quarters { flex: none; width: 75%; } - .columns.is-mobile > .column.is-two-thirds, main .columns.is-mobile > article.is-two-thirds, main .columns.is-mobile > .is-two-thirds.side-toc, .columns.is-mobile > main.is-two-thirds.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-two-thirds.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-two-thirds.footer-links, #_footer .footer-topper .columns.is-mobile > .is-two-thirds.social { + .columns.is-mobile > .column.is-two-thirds, #_footer .footer-topper .columns.is-mobile > .is-two-thirds.social, #_footer .footer-topper .columns.is-mobile > .is-two-thirds.footer-links, .columns.is-mobile > main.is-two-thirds.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-two-thirds.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-two-thirds.side-toc, main .columns.is-mobile > article.is-two-thirds { flex: none; width: 66.6666%; } - .columns.is-mobile > .column.is-half, main .columns.is-mobile > article.is-half, main .columns.is-mobile > .is-half.side-toc, .columns.is-mobile > main.is-half.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-half.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-half.footer-links, #_footer .footer-topper .columns.is-mobile > .is-half.social { + .columns.is-mobile > .column.is-half, #_footer .footer-topper .columns.is-mobile > .is-half.social, #_footer .footer-topper .columns.is-mobile > .is-half.footer-links, .columns.is-mobile > main.is-half.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-half.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-half.side-toc, main .columns.is-mobile > article.is-half { flex: none; width: 50%; } - .columns.is-mobile > .column.is-one-third, main .columns.is-mobile > article.is-one-third, main .columns.is-mobile > .is-one-third.side-toc, .columns.is-mobile > main.is-one-third.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-one-third.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-one-third.footer-links, #_footer .footer-topper .columns.is-mobile > .is-one-third.social { + .columns.is-mobile > .column.is-one-third, #_footer .footer-topper .columns.is-mobile > .is-one-third.social, #_footer .footer-topper .columns.is-mobile > .is-one-third.footer-links, .columns.is-mobile > main.is-one-third.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-one-third.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-one-third.side-toc, main .columns.is-mobile > article.is-one-third { flex: none; width: 33.3333%; } - .columns.is-mobile > .column.is-one-quarter, main .columns.is-mobile > article.is-one-quarter, main .columns.is-mobile > .is-one-quarter.side-toc, .columns.is-mobile > main.is-one-quarter.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-one-quarter.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-one-quarter.footer-links, #_footer .footer-topper .columns.is-mobile > .is-one-quarter.social { + .columns.is-mobile > .column.is-one-quarter, #_footer .footer-topper .columns.is-mobile > .is-one-quarter.social, #_footer .footer-topper .columns.is-mobile > .is-one-quarter.footer-links, .columns.is-mobile > main.is-one-quarter.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-one-quarter.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-one-quarter.side-toc, main .columns.is-mobile > article.is-one-quarter { flex: none; width: 25%; } - .columns.is-mobile > .column.is-one-fifth, main .columns.is-mobile > article.is-one-fifth, main .columns.is-mobile > .is-one-fifth.side-toc, .columns.is-mobile > main.is-one-fifth.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-one-fifth.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-one-fifth.footer-links, #_footer .footer-topper .columns.is-mobile > .is-one-fifth.social { + .columns.is-mobile > .column.is-one-fifth, #_footer .footer-topper .columns.is-mobile > .is-one-fifth.social, #_footer .footer-topper .columns.is-mobile > .is-one-fifth.footer-links, .columns.is-mobile > main.is-one-fifth.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-one-fifth.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-one-fifth.side-toc, main .columns.is-mobile > article.is-one-fifth { flex: none; width: 20%; } - .columns.is-mobile > .column.is-two-fifths, main .columns.is-mobile > article.is-two-fifths, main .columns.is-mobile > .is-two-fifths.side-toc, .columns.is-mobile > main.is-two-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-two-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-two-fifths.footer-links, #_footer .footer-topper .columns.is-mobile > .is-two-fifths.social { + .columns.is-mobile > .column.is-two-fifths, #_footer .footer-topper .columns.is-mobile > .is-two-fifths.social, #_footer .footer-topper .columns.is-mobile > .is-two-fifths.footer-links, .columns.is-mobile > main.is-two-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-two-fifths.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-two-fifths.side-toc, main .columns.is-mobile > article.is-two-fifths { flex: none; width: 40%; } - .columns.is-mobile > .column.is-three-fifths, main .columns.is-mobile > article.is-three-fifths, main .columns.is-mobile > .is-three-fifths.side-toc, .columns.is-mobile > main.is-three-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-three-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-three-fifths.footer-links, #_footer .footer-topper .columns.is-mobile > .is-three-fifths.social { + .columns.is-mobile > .column.is-three-fifths, #_footer .footer-topper .columns.is-mobile > .is-three-fifths.social, #_footer .footer-topper .columns.is-mobile > .is-three-fifths.footer-links, .columns.is-mobile > main.is-three-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-three-fifths.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-three-fifths.side-toc, main .columns.is-mobile > article.is-three-fifths { flex: none; width: 60%; } - .columns.is-mobile > .column.is-four-fifths, main .columns.is-mobile > article.is-four-fifths, main .columns.is-mobile > .is-four-fifths.side-toc, .columns.is-mobile > main.is-four-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-four-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-four-fifths.footer-links, #_footer .footer-topper .columns.is-mobile > .is-four-fifths.social { + .columns.is-mobile > .column.is-four-fifths, #_footer .footer-topper .columns.is-mobile > .is-four-fifths.social, #_footer .footer-topper .columns.is-mobile > .is-four-fifths.footer-links, .columns.is-mobile > main.is-four-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-four-fifths.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-four-fifths.side-toc, main .columns.is-mobile > article.is-four-fifths { flex: none; width: 80%; } - .columns.is-mobile > .column.is-offset-three-quarters, main .columns.is-mobile > article.is-offset-three-quarters, main .columns.is-mobile > .is-offset-three-quarters.side-toc, .columns.is-mobile > main.is-offset-three-quarters.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-three-quarters.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-three-quarters.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-three-quarters.social { + .columns.is-mobile > .column.is-offset-three-quarters, #_footer .footer-topper .columns.is-mobile > .is-offset-three-quarters.social, #_footer .footer-topper .columns.is-mobile > .is-offset-three-quarters.footer-links, .columns.is-mobile > main.is-offset-three-quarters.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-three-quarters.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-three-quarters.side-toc, main .columns.is-mobile > article.is-offset-three-quarters { margin-left: 75%; } - .columns.is-mobile > .column.is-offset-two-thirds, main .columns.is-mobile > article.is-offset-two-thirds, main .columns.is-mobile > .is-offset-two-thirds.side-toc, .columns.is-mobile > main.is-offset-two-thirds.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-two-thirds.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-two-thirds.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-two-thirds.social { + .columns.is-mobile > .column.is-offset-two-thirds, #_footer .footer-topper .columns.is-mobile > .is-offset-two-thirds.social, #_footer .footer-topper .columns.is-mobile > .is-offset-two-thirds.footer-links, .columns.is-mobile > main.is-offset-two-thirds.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-two-thirds.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-two-thirds.side-toc, main .columns.is-mobile > article.is-offset-two-thirds { margin-left: 66.6666%; } - .columns.is-mobile > .column.is-offset-half, main .columns.is-mobile > article.is-offset-half, main .columns.is-mobile > .is-offset-half.side-toc, .columns.is-mobile > main.is-offset-half.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-half.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-half.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-half.social { + .columns.is-mobile > .column.is-offset-half, #_footer .footer-topper .columns.is-mobile > .is-offset-half.social, #_footer .footer-topper .columns.is-mobile > .is-offset-half.footer-links, .columns.is-mobile > main.is-offset-half.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-half.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-half.side-toc, main .columns.is-mobile > article.is-offset-half { margin-left: 50%; } - .columns.is-mobile > .column.is-offset-one-third, main .columns.is-mobile > article.is-offset-one-third, main .columns.is-mobile > .is-offset-one-third.side-toc, .columns.is-mobile > main.is-offset-one-third.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-one-third.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-one-third.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-one-third.social { + .columns.is-mobile > .column.is-offset-one-third, #_footer .footer-topper .columns.is-mobile > .is-offset-one-third.social, #_footer .footer-topper .columns.is-mobile > .is-offset-one-third.footer-links, .columns.is-mobile > main.is-offset-one-third.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-one-third.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-one-third.side-toc, main .columns.is-mobile > article.is-offset-one-third { margin-left: 33.3333%; } - .columns.is-mobile > .column.is-offset-one-quarter, main .columns.is-mobile > article.is-offset-one-quarter, main .columns.is-mobile > .is-offset-one-quarter.side-toc, .columns.is-mobile > main.is-offset-one-quarter.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-one-quarter.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-one-quarter.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-one-quarter.social { + .columns.is-mobile > .column.is-offset-one-quarter, #_footer .footer-topper .columns.is-mobile > .is-offset-one-quarter.social, #_footer .footer-topper .columns.is-mobile > .is-offset-one-quarter.footer-links, .columns.is-mobile > main.is-offset-one-quarter.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-one-quarter.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-one-quarter.side-toc, main .columns.is-mobile > article.is-offset-one-quarter { margin-left: 25%; } - .columns.is-mobile > .column.is-offset-one-fifth, main .columns.is-mobile > article.is-offset-one-fifth, main .columns.is-mobile > .is-offset-one-fifth.side-toc, .columns.is-mobile > main.is-offset-one-fifth.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-one-fifth.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-one-fifth.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-one-fifth.social { + .columns.is-mobile > .column.is-offset-one-fifth, #_footer .footer-topper .columns.is-mobile > .is-offset-one-fifth.social, #_footer .footer-topper .columns.is-mobile > .is-offset-one-fifth.footer-links, .columns.is-mobile > main.is-offset-one-fifth.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-one-fifth.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-one-fifth.side-toc, main .columns.is-mobile > article.is-offset-one-fifth { margin-left: 20%; } - .columns.is-mobile > .column.is-offset-two-fifths, main .columns.is-mobile > article.is-offset-two-fifths, main .columns.is-mobile > .is-offset-two-fifths.side-toc, .columns.is-mobile > main.is-offset-two-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-two-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-two-fifths.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-two-fifths.social { + .columns.is-mobile > .column.is-offset-two-fifths, #_footer .footer-topper .columns.is-mobile > .is-offset-two-fifths.social, #_footer .footer-topper .columns.is-mobile > .is-offset-two-fifths.footer-links, .columns.is-mobile > main.is-offset-two-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-two-fifths.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-two-fifths.side-toc, main .columns.is-mobile > article.is-offset-two-fifths { margin-left: 40%; } - .columns.is-mobile > .column.is-offset-three-fifths, main .columns.is-mobile > article.is-offset-three-fifths, main .columns.is-mobile > .is-offset-three-fifths.side-toc, .columns.is-mobile > main.is-offset-three-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-three-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-three-fifths.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-three-fifths.social { + .columns.is-mobile > .column.is-offset-three-fifths, #_footer .footer-topper .columns.is-mobile > .is-offset-three-fifths.social, #_footer .footer-topper .columns.is-mobile > .is-offset-three-fifths.footer-links, .columns.is-mobile > main.is-offset-three-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-three-fifths.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-three-fifths.side-toc, main .columns.is-mobile > article.is-offset-three-fifths { margin-left: 60%; } - .columns.is-mobile > .column.is-offset-four-fifths, main .columns.is-mobile > article.is-offset-four-fifths, main .columns.is-mobile > .is-offset-four-fifths.side-toc, .columns.is-mobile > main.is-offset-four-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-four-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-four-fifths.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-four-fifths.social { + .columns.is-mobile > .column.is-offset-four-fifths, #_footer .footer-topper .columns.is-mobile > .is-offset-four-fifths.social, #_footer .footer-topper .columns.is-mobile > .is-offset-four-fifths.footer-links, .columns.is-mobile > main.is-offset-four-fifths.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-four-fifths.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-four-fifths.side-toc, main .columns.is-mobile > article.is-offset-four-fifths { margin-left: 80%; } - .columns.is-mobile > .column.is-0, main .columns.is-mobile > article.is-0, main .columns.is-mobile > .is-0.side-toc, .columns.is-mobile > main.is-0.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-0.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-0.footer-links, #_footer .footer-topper .columns.is-mobile > .is-0.social { + .columns.is-mobile > .column.is-0, #_footer .footer-topper .columns.is-mobile > .is-0.social, #_footer .footer-topper .columns.is-mobile > .is-0.footer-links, .columns.is-mobile > main.is-0.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-0.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-0.side-toc, main .columns.is-mobile > article.is-0 { flex: none; width: 0%; } - .columns.is-mobile > .column.is-offset-0, main .columns.is-mobile > article.is-offset-0, main .columns.is-mobile > .is-offset-0.side-toc, .columns.is-mobile > main.is-offset-0.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-0.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-0.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-0.social { + .columns.is-mobile > .column.is-offset-0, #_footer .footer-topper .columns.is-mobile > .is-offset-0.social, #_footer .footer-topper .columns.is-mobile > .is-offset-0.footer-links, .columns.is-mobile > main.is-offset-0.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-0.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-0.side-toc, main .columns.is-mobile > article.is-offset-0 { margin-left: 0%; } - .columns.is-mobile > .column.is-1, main .columns.is-mobile > article.is-1, main .columns.is-mobile > .is-1.side-toc, .columns.is-mobile > main.is-1.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-1.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-1.footer-links, #_footer .footer-topper .columns.is-mobile > .is-1.social { + .columns.is-mobile > .column.is-1, #_footer .footer-topper .columns.is-mobile > .is-1.social, #_footer .footer-topper .columns.is-mobile > .is-1.footer-links, .columns.is-mobile > main.is-1.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-1.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-1.side-toc, main .columns.is-mobile > article.is-1 { flex: none; width: 8.33333%; } - .columns.is-mobile > .column.is-offset-1, main .columns.is-mobile > article.is-offset-1, main .columns.is-mobile > .is-offset-1.side-toc, .columns.is-mobile > main.is-offset-1.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-1.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-1.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-1.social { + .columns.is-mobile > .column.is-offset-1, #_footer .footer-topper .columns.is-mobile > .is-offset-1.social, #_footer .footer-topper .columns.is-mobile > .is-offset-1.footer-links, .columns.is-mobile > main.is-offset-1.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-1.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-1.side-toc, main .columns.is-mobile > article.is-offset-1 { margin-left: 8.33333%; } - .columns.is-mobile > .column.is-2, main .columns.is-mobile > article.is-2, main .columns.is-mobile > article.side-toc, #_footer .footer-topper main .columns.is-mobile > article.social, main .columns.is-mobile > .side-toc, .columns.is-mobile > main.sticky.scroll-with-footer::before, .columns.is-mobile > main.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-2.footer-links, #_footer .footer-topper main .columns.is-mobile > .footer-links.side-toc, main #_footer .footer-topper .columns.is-mobile > .footer-links.side-toc, #_footer .footer-topper .columns.is-mobile > main.footer-links.sticky.scroll-with-footer::before, #_footer .footer-topper .columns.is-mobile > main.footer-links.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .social { + .columns.is-mobile > .column.is-2, #_footer .footer-topper .columns.is-mobile > .social, #_footer .footer-topper .columns.is-mobile > .is-2.footer-links, .columns.is-mobile > main.column.sticky.scroll-with-footer::before, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.social::before, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.footer-links::before, .columns.is-mobile > main.column.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.social::after, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.footer-links::after, .columns.is-mobile > main.is-2.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-2.sticky.scroll-with-footer::after, main .columns.is-mobile > .side-toc, main .columns.is-mobile > article.is-2, #_footer .footer-topper main .columns.is-mobile > article.social { flex: none; width: 16.66667%; } - .columns.is-mobile > .column.is-offset-2, main .columns.is-mobile > article.is-offset-2, main .columns.is-mobile > .is-offset-2.side-toc, .columns.is-mobile > main.is-offset-2.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-2.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-2.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-2.social { + .columns.is-mobile > .column.is-offset-2, #_footer .footer-topper .columns.is-mobile > .is-offset-2.social, #_footer .footer-topper .columns.is-mobile > .is-offset-2.footer-links, .columns.is-mobile > main.is-offset-2.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-2.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-2.side-toc, main .columns.is-mobile > article.is-offset-2 { margin-left: 16.66667%; } - .columns.is-mobile > .column.is-3, main .columns.is-mobile > article.is-3, main .columns.is-mobile > .is-3.side-toc, .columns.is-mobile > main.is-3.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-3.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-3.footer-links, #_footer .footer-topper .columns.is-mobile > .is-3.social { + .columns.is-mobile > .column.is-3, #_footer .footer-topper .columns.is-mobile > .is-3.social, #_footer .footer-topper .columns.is-mobile > .is-3.footer-links, .columns.is-mobile > main.is-3.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-3.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-3.side-toc, main .columns.is-mobile > article.is-3 { flex: none; width: 25%; } - .columns.is-mobile > .column.is-offset-3, main .columns.is-mobile > article.is-offset-3, main .columns.is-mobile > .is-offset-3.side-toc, .columns.is-mobile > main.is-offset-3.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-3.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-3.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-3.social { + .columns.is-mobile > .column.is-offset-3, #_footer .footer-topper .columns.is-mobile > .is-offset-3.social, #_footer .footer-topper .columns.is-mobile > .is-offset-3.footer-links, .columns.is-mobile > main.is-offset-3.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-3.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-3.side-toc, main .columns.is-mobile > article.is-offset-3 { margin-left: 25%; } - .columns.is-mobile > .column.is-4, main .columns.is-mobile > article.is-4, main .columns.is-mobile > .is-4.side-toc, .columns.is-mobile > main.is-4.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-4.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-4.footer-links, #_footer .footer-topper .columns.is-mobile > .is-4.social { + .columns.is-mobile > .column.is-4, #_footer .footer-topper .columns.is-mobile > .is-4.social, #_footer .footer-topper .columns.is-mobile > .is-4.footer-links, .columns.is-mobile > main.is-4.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-4.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-4.side-toc, main .columns.is-mobile > article.is-4 { flex: none; width: 33.33333%; } - .columns.is-mobile > .column.is-offset-4, main .columns.is-mobile > article.is-offset-4, main .columns.is-mobile > .is-offset-4.side-toc, .columns.is-mobile > main.is-offset-4.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-4.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-4.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-4.social { + .columns.is-mobile > .column.is-offset-4, #_footer .footer-topper .columns.is-mobile > .is-offset-4.social, #_footer .footer-topper .columns.is-mobile > .is-offset-4.footer-links, .columns.is-mobile > main.is-offset-4.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-4.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-4.side-toc, main .columns.is-mobile > article.is-offset-4 { margin-left: 33.33333%; } - .columns.is-mobile > .column.is-5, main .columns.is-mobile > article.is-5, main .columns.is-mobile > .is-5.side-toc, .columns.is-mobile > main.is-5.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-5.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-5.footer-links, #_footer .footer-topper .columns.is-mobile > .is-5.social { + .columns.is-mobile > .column.is-5, #_footer .footer-topper .columns.is-mobile > .is-5.social, #_footer .footer-topper .columns.is-mobile > .is-5.footer-links, .columns.is-mobile > main.is-5.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-5.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-5.side-toc, main .columns.is-mobile > article.is-5 { flex: none; width: 41.66667%; } - .columns.is-mobile > .column.is-offset-5, main .columns.is-mobile > article.is-offset-5, main .columns.is-mobile > .is-offset-5.side-toc, .columns.is-mobile > main.is-offset-5.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-5.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-5.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-5.social { + .columns.is-mobile > .column.is-offset-5, #_footer .footer-topper .columns.is-mobile > .is-offset-5.social, #_footer .footer-topper .columns.is-mobile > .is-offset-5.footer-links, .columns.is-mobile > main.is-offset-5.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-5.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-5.side-toc, main .columns.is-mobile > article.is-offset-5 { margin-left: 41.66667%; } - .columns.is-mobile > .column.is-6, main .columns.is-mobile > article.is-6, main .columns.is-mobile > .is-6.side-toc, .columns.is-mobile > main.is-6.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-6.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-6.footer-links, #_footer .footer-topper .columns.is-mobile > .is-6.social { + .columns.is-mobile > .column.is-6, #_footer .footer-topper .columns.is-mobile > .is-6.social, #_footer .footer-topper .columns.is-mobile > .is-6.footer-links, .columns.is-mobile > main.is-6.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-6.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-6.side-toc, main .columns.is-mobile > article.is-6 { flex: none; width: 50%; } - .columns.is-mobile > .column.is-offset-6, main .columns.is-mobile > article.is-offset-6, main .columns.is-mobile > .is-offset-6.side-toc, .columns.is-mobile > main.is-offset-6.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-6.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-6.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-6.social { + .columns.is-mobile > .column.is-offset-6, #_footer .footer-topper .columns.is-mobile > .is-offset-6.social, #_footer .footer-topper .columns.is-mobile > .is-offset-6.footer-links, .columns.is-mobile > main.is-offset-6.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-6.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-6.side-toc, main .columns.is-mobile > article.is-offset-6 { margin-left: 50%; } - .columns.is-mobile > .column.is-7, main .columns.is-mobile > article.is-7, main .columns.is-mobile > .is-7.side-toc, .columns.is-mobile > main.is-7.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-7.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-7.footer-links, #_footer .footer-topper .columns.is-mobile > .is-7.social { + .columns.is-mobile > .column.is-7, #_footer .footer-topper .columns.is-mobile > .is-7.social, #_footer .footer-topper .columns.is-mobile > .is-7.footer-links, .columns.is-mobile > main.is-7.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-7.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-7.side-toc, main .columns.is-mobile > article.is-7 { flex: none; width: 58.33333%; } - .columns.is-mobile > .column.is-offset-7, main .columns.is-mobile > article.is-offset-7, main .columns.is-mobile > .is-offset-7.side-toc, .columns.is-mobile > main.is-offset-7.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-7.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-7.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-7.social { + .columns.is-mobile > .column.is-offset-7, #_footer .footer-topper .columns.is-mobile > .is-offset-7.social, #_footer .footer-topper .columns.is-mobile > .is-offset-7.footer-links, .columns.is-mobile > main.is-offset-7.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-7.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-7.side-toc, main .columns.is-mobile > article.is-offset-7 { margin-left: 58.33333%; } - .columns.is-mobile > .column.is-8, main .columns.is-mobile > article, main .columns.is-mobile > .is-8.side-toc, main .columns.is-mobile > article.side-toc, .columns.is-mobile > main.is-8.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-8.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-8.footer-links, #_footer .footer-topper main .columns.is-mobile > article.footer-links, main #_footer .footer-topper .columns.is-mobile > article.footer-links, #_footer .footer-topper .columns.is-mobile > .is-8.social, #_footer .footer-topper main .columns.is-mobile > article.social, main #_footer .footer-topper .columns.is-mobile > article.social { + .columns.is-mobile > .column.is-8, #_footer .footer-topper .columns.is-mobile > .is-8.social, #_footer .footer-topper .columns.is-mobile > .is-8.footer-links, .columns.is-mobile > main.is-8.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-8.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-8.side-toc, main .columns.is-mobile > article { flex: none; width: 66.66667%; } - .columns.is-mobile > .column.is-offset-8, main .columns.is-mobile > article.is-offset-8, main .columns.is-mobile > .is-offset-8.side-toc, .columns.is-mobile > main.is-offset-8.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-8.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-8.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-8.social { + .columns.is-mobile > .column.is-offset-8, #_footer .footer-topper .columns.is-mobile > .is-offset-8.social, #_footer .footer-topper .columns.is-mobile > .is-offset-8.footer-links, .columns.is-mobile > main.is-offset-8.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-8.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-8.side-toc, main .columns.is-mobile > article.is-offset-8 { margin-left: 66.66667%; } - .columns.is-mobile > .column.is-9, main .columns.is-mobile > article.is-9, main .columns.is-mobile > .is-9.side-toc, .columns.is-mobile > main.is-9.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-9.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-9.footer-links, #_footer .footer-topper .columns.is-mobile > .is-9.social { + .columns.is-mobile > .column.is-9, #_footer .footer-topper .columns.is-mobile > .is-9.social, #_footer .footer-topper .columns.is-mobile > .is-9.footer-links, .columns.is-mobile > main.is-9.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-9.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-9.side-toc, main .columns.is-mobile > article.is-9 { flex: none; width: 75%; } - .columns.is-mobile > .column.is-offset-9, main .columns.is-mobile > article.is-offset-9, main .columns.is-mobile > .is-offset-9.side-toc, .columns.is-mobile > main.is-offset-9.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-9.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-9.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-9.social { + .columns.is-mobile > .column.is-offset-9, #_footer .footer-topper .columns.is-mobile > .is-offset-9.social, #_footer .footer-topper .columns.is-mobile > .is-offset-9.footer-links, .columns.is-mobile > main.is-offset-9.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-9.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-9.side-toc, main .columns.is-mobile > article.is-offset-9 { margin-left: 75%; } - .columns.is-mobile > .column.is-10, body.normal .columns.is-mobile > article.column, body.normal main .columns.is-mobile > article, main body.normal .columns.is-mobile > article, #_footer .footer-topper body.normal .columns.is-mobile > article.footer-links, body.normal #_footer .footer-topper .columns.is-mobile > article.social, #_footer .footer-topper body.normal .columns.is-mobile > article.social, main .columns.is-mobile > article.is-10, #_footer .footer-topper main .columns.is-mobile > article.footer-links, main .columns.is-mobile > .is-10.side-toc, main body.normal .columns.is-mobile > article.side-toc, body.normal main .columns.is-mobile > article.side-toc, #_footer .footer-topper main .columns.is-mobile > .side-toc.footer-links, .columns.is-mobile > main.is-10.sticky.scroll-with-footer::before, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.footer-links::before, .columns.is-mobile > main.is-10.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.footer-links::after, #_footer .footer-topper .columns.is-mobile > .footer-links, #_footer .footer-topper .columns.is-mobile > .is-10.social { + .columns.is-mobile > .column.is-10, #_footer .footer-topper .columns.is-mobile > .is-10.social, #_footer .footer-topper .columns.is-mobile > .footer-links, .columns.is-mobile > main.is-10.sticky.scroll-with-footer::before, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.footer-links::before, .columns.is-mobile > main.is-10.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > main.sticky.scroll-with-footer.footer-links::after, main .columns.is-mobile > .is-10.side-toc, #_footer .footer-topper main .columns.is-mobile > .side-toc.footer-links, main .columns.is-mobile > article.is-10, #_footer .footer-topper main .columns.is-mobile > article.footer-links, body.normal .columns.is-mobile > article.column, body.normal #_footer .footer-topper .columns.is-mobile > article.social, #_footer .footer-topper body.normal .columns.is-mobile > article.social, #_footer .footer-topper body.normal .columns.is-mobile > article.footer-links, body.normal main .columns.is-mobile > article, main body.normal .columns.is-mobile > article { flex: none; width: 83.33333%; } - .columns.is-mobile > .column.is-offset-10, main .columns.is-mobile > article.is-offset-10, main .columns.is-mobile > .is-offset-10.side-toc, .columns.is-mobile > main.is-offset-10.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-10.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-10.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-10.social { + .columns.is-mobile > .column.is-offset-10, #_footer .footer-topper .columns.is-mobile > .is-offset-10.social, #_footer .footer-topper .columns.is-mobile > .is-offset-10.footer-links, .columns.is-mobile > main.is-offset-10.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-10.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-10.side-toc, main .columns.is-mobile > article.is-offset-10 { margin-left: 83.33333%; } - .columns.is-mobile > .column.is-11, main .columns.is-mobile > article.is-11, main .columns.is-mobile > .is-11.side-toc, .columns.is-mobile > main.is-11.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-11.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-11.footer-links, #_footer .footer-topper .columns.is-mobile > .is-11.social { + .columns.is-mobile > .column.is-11, #_footer .footer-topper .columns.is-mobile > .is-11.social, #_footer .footer-topper .columns.is-mobile > .is-11.footer-links, .columns.is-mobile > main.is-11.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-11.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-11.side-toc, main .columns.is-mobile > article.is-11 { flex: none; width: 91.66667%; } - .columns.is-mobile > .column.is-offset-11, main .columns.is-mobile > article.is-offset-11, main .columns.is-mobile > .is-offset-11.side-toc, .columns.is-mobile > main.is-offset-11.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-11.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-11.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-11.social { + .columns.is-mobile > .column.is-offset-11, #_footer .footer-topper .columns.is-mobile > .is-offset-11.social, #_footer .footer-topper .columns.is-mobile > .is-offset-11.footer-links, .columns.is-mobile > main.is-offset-11.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-11.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-11.side-toc, main .columns.is-mobile > article.is-offset-11 { margin-left: 91.66667%; } - .columns.is-mobile > .column.is-12, main .columns.is-mobile > article.is-12, main .columns.is-mobile > .is-12.side-toc, .columns.is-mobile > main.is-12.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-12.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-12.footer-links, #_footer .footer-topper .columns.is-mobile > .is-12.social { + .columns.is-mobile > .column.is-12, #_footer .footer-topper .columns.is-mobile > .is-12.social, #_footer .footer-topper .columns.is-mobile > .is-12.footer-links, .columns.is-mobile > main.is-12.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-12.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-12.side-toc, main .columns.is-mobile > article.is-12 { flex: none; width: 100%; } - .columns.is-mobile > .column.is-offset-12, main .columns.is-mobile > article.is-offset-12, main .columns.is-mobile > .is-offset-12.side-toc, .columns.is-mobile > main.is-offset-12.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-12.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-mobile > .is-offset-12.footer-links, #_footer .footer-topper .columns.is-mobile > .is-offset-12.social { + .columns.is-mobile > .column.is-offset-12, #_footer .footer-topper .columns.is-mobile > .is-offset-12.social, #_footer .footer-topper .columns.is-mobile > .is-offset-12.footer-links, .columns.is-mobile > main.is-offset-12.sticky.scroll-with-footer::before, .columns.is-mobile > main.is-offset-12.sticky.scroll-with-footer::after, main .columns.is-mobile > .is-offset-12.side-toc, main .columns.is-mobile > article.is-offset-12 { margin-left: 100%; } @media screen and (max-width: 768px) { - .column.is-narrow-mobile, main article.is-narrow-mobile, main .is-narrow-mobile.side-toc, main.is-narrow-mobile.sticky.scroll-with-footer::before, main.is-narrow-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow-mobile.footer-links, #_footer .footer-topper .is-narrow-mobile.social { + .column.is-narrow-mobile, #_footer .footer-topper .is-narrow-mobile.social, #_footer .footer-topper .is-narrow-mobile.footer-links, main.is-narrow-mobile.sticky.scroll-with-footer::before, main.is-narrow-mobile.sticky.scroll-with-footer::after, main .is-narrow-mobile.side-toc, main article.is-narrow-mobile { flex: none; width: unset; } - .column.is-full-mobile, main article.is-full-mobile, main .is-full-mobile.side-toc, main.is-full-mobile.sticky.scroll-with-footer::before, main.is-full-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full-mobile.footer-links, #_footer .footer-topper .is-full-mobile.social { + .column.is-full-mobile, #_footer .footer-topper .is-full-mobile.social, #_footer .footer-topper .is-full-mobile.footer-links, main.is-full-mobile.sticky.scroll-with-footer::before, main.is-full-mobile.sticky.scroll-with-footer::after, main .is-full-mobile.side-toc, main article.is-full-mobile { flex: none; width: 100%; } - .column.is-three-quarters-mobile, main article.is-three-quarters-mobile, main .is-three-quarters-mobile.side-toc, main.is-three-quarters-mobile.sticky.scroll-with-footer::before, main.is-three-quarters-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters-mobile.footer-links, #_footer .footer-topper .is-three-quarters-mobile.social { + .column.is-three-quarters-mobile, #_footer .footer-topper .is-three-quarters-mobile.social, #_footer .footer-topper .is-three-quarters-mobile.footer-links, main.is-three-quarters-mobile.sticky.scroll-with-footer::before, main.is-three-quarters-mobile.sticky.scroll-with-footer::after, main .is-three-quarters-mobile.side-toc, main article.is-three-quarters-mobile { flex: none; width: 75%; } - .column.is-two-thirds-mobile, main article.is-two-thirds-mobile, main .is-two-thirds-mobile.side-toc, main.is-two-thirds-mobile.sticky.scroll-with-footer::before, main.is-two-thirds-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds-mobile.footer-links, #_footer .footer-topper .is-two-thirds-mobile.social { + .column.is-two-thirds-mobile, #_footer .footer-topper .is-two-thirds-mobile.social, #_footer .footer-topper .is-two-thirds-mobile.footer-links, main.is-two-thirds-mobile.sticky.scroll-with-footer::before, main.is-two-thirds-mobile.sticky.scroll-with-footer::after, main .is-two-thirds-mobile.side-toc, main article.is-two-thirds-mobile { flex: none; width: 66.6666%; } - .column.is-half-mobile, main article.is-half-mobile, main .is-half-mobile.side-toc, main.is-half-mobile.sticky.scroll-with-footer::before, main.is-half-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half-mobile.footer-links, #_footer .footer-topper .is-half-mobile.social { + .column.is-half-mobile, #_footer .footer-topper .is-half-mobile.social, #_footer .footer-topper .is-half-mobile.footer-links, main.is-half-mobile.sticky.scroll-with-footer::before, main.is-half-mobile.sticky.scroll-with-footer::after, main .is-half-mobile.side-toc, main article.is-half-mobile { flex: none; width: 50%; } - .column.is-one-third-mobile, main article.is-one-third-mobile, main .is-one-third-mobile.side-toc, main.is-one-third-mobile.sticky.scroll-with-footer::before, main.is-one-third-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third-mobile.footer-links, #_footer .footer-topper .is-one-third-mobile.social { + .column.is-one-third-mobile, #_footer .footer-topper .is-one-third-mobile.social, #_footer .footer-topper .is-one-third-mobile.footer-links, main.is-one-third-mobile.sticky.scroll-with-footer::before, main.is-one-third-mobile.sticky.scroll-with-footer::after, main .is-one-third-mobile.side-toc, main article.is-one-third-mobile { flex: none; width: 33.3333%; } - .column.is-one-quarter-mobile, main article.is-one-quarter-mobile, main .is-one-quarter-mobile.side-toc, main.is-one-quarter-mobile.sticky.scroll-with-footer::before, main.is-one-quarter-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter-mobile.footer-links, #_footer .footer-topper .is-one-quarter-mobile.social { + .column.is-one-quarter-mobile, #_footer .footer-topper .is-one-quarter-mobile.social, #_footer .footer-topper .is-one-quarter-mobile.footer-links, main.is-one-quarter-mobile.sticky.scroll-with-footer::before, main.is-one-quarter-mobile.sticky.scroll-with-footer::after, main .is-one-quarter-mobile.side-toc, main article.is-one-quarter-mobile { flex: none; width: 25%; } - .column.is-one-fifth-mobile, main article.is-one-fifth-mobile, main .is-one-fifth-mobile.side-toc, main.is-one-fifth-mobile.sticky.scroll-with-footer::before, main.is-one-fifth-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth-mobile.footer-links, #_footer .footer-topper .is-one-fifth-mobile.social { + .column.is-one-fifth-mobile, #_footer .footer-topper .is-one-fifth-mobile.social, #_footer .footer-topper .is-one-fifth-mobile.footer-links, main.is-one-fifth-mobile.sticky.scroll-with-footer::before, main.is-one-fifth-mobile.sticky.scroll-with-footer::after, main .is-one-fifth-mobile.side-toc, main article.is-one-fifth-mobile { flex: none; width: 20%; } - .column.is-two-fifths-mobile, main article.is-two-fifths-mobile, main .is-two-fifths-mobile.side-toc, main.is-two-fifths-mobile.sticky.scroll-with-footer::before, main.is-two-fifths-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths-mobile.footer-links, #_footer .footer-topper .is-two-fifths-mobile.social { + .column.is-two-fifths-mobile, #_footer .footer-topper .is-two-fifths-mobile.social, #_footer .footer-topper .is-two-fifths-mobile.footer-links, main.is-two-fifths-mobile.sticky.scroll-with-footer::before, main.is-two-fifths-mobile.sticky.scroll-with-footer::after, main .is-two-fifths-mobile.side-toc, main article.is-two-fifths-mobile { flex: none; width: 40%; } - .column.is-three-fifths-mobile, main article.is-three-fifths-mobile, main .is-three-fifths-mobile.side-toc, main.is-three-fifths-mobile.sticky.scroll-with-footer::before, main.is-three-fifths-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths-mobile.footer-links, #_footer .footer-topper .is-three-fifths-mobile.social { + .column.is-three-fifths-mobile, #_footer .footer-topper .is-three-fifths-mobile.social, #_footer .footer-topper .is-three-fifths-mobile.footer-links, main.is-three-fifths-mobile.sticky.scroll-with-footer::before, main.is-three-fifths-mobile.sticky.scroll-with-footer::after, main .is-three-fifths-mobile.side-toc, main article.is-three-fifths-mobile { flex: none; width: 60%; } - .column.is-four-fifths-mobile, main article.is-four-fifths-mobile, main .is-four-fifths-mobile.side-toc, main.is-four-fifths-mobile.sticky.scroll-with-footer::before, main.is-four-fifths-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths-mobile.footer-links, #_footer .footer-topper .is-four-fifths-mobile.social { + .column.is-four-fifths-mobile, #_footer .footer-topper .is-four-fifths-mobile.social, #_footer .footer-topper .is-four-fifths-mobile.footer-links, main.is-four-fifths-mobile.sticky.scroll-with-footer::before, main.is-four-fifths-mobile.sticky.scroll-with-footer::after, main .is-four-fifths-mobile.side-toc, main article.is-four-fifths-mobile { flex: none; width: 80%; } - .column.is-offset-three-quarters-mobile, main article.is-offset-three-quarters-mobile, main .is-offset-three-quarters-mobile.side-toc, main.is-offset-three-quarters-mobile.sticky.scroll-with-footer::before, main.is-offset-three-quarters-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters-mobile.footer-links, #_footer .footer-topper .is-offset-three-quarters-mobile.social { + .column.is-offset-three-quarters-mobile, #_footer .footer-topper .is-offset-three-quarters-mobile.social, #_footer .footer-topper .is-offset-three-quarters-mobile.footer-links, main.is-offset-three-quarters-mobile.sticky.scroll-with-footer::before, main.is-offset-three-quarters-mobile.sticky.scroll-with-footer::after, main .is-offset-three-quarters-mobile.side-toc, main article.is-offset-three-quarters-mobile { margin-left: 75%; } - .column.is-offset-two-thirds-mobile, main article.is-offset-two-thirds-mobile, main .is-offset-two-thirds-mobile.side-toc, main.is-offset-two-thirds-mobile.sticky.scroll-with-footer::before, main.is-offset-two-thirds-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds-mobile.footer-links, #_footer .footer-topper .is-offset-two-thirds-mobile.social { + .column.is-offset-two-thirds-mobile, #_footer .footer-topper .is-offset-two-thirds-mobile.social, #_footer .footer-topper .is-offset-two-thirds-mobile.footer-links, main.is-offset-two-thirds-mobile.sticky.scroll-with-footer::before, main.is-offset-two-thirds-mobile.sticky.scroll-with-footer::after, main .is-offset-two-thirds-mobile.side-toc, main article.is-offset-two-thirds-mobile { margin-left: 66.6666%; } - .column.is-offset-half-mobile, main article.is-offset-half-mobile, main .is-offset-half-mobile.side-toc, main.is-offset-half-mobile.sticky.scroll-with-footer::before, main.is-offset-half-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half-mobile.footer-links, #_footer .footer-topper .is-offset-half-mobile.social { + .column.is-offset-half-mobile, #_footer .footer-topper .is-offset-half-mobile.social, #_footer .footer-topper .is-offset-half-mobile.footer-links, main.is-offset-half-mobile.sticky.scroll-with-footer::before, main.is-offset-half-mobile.sticky.scroll-with-footer::after, main .is-offset-half-mobile.side-toc, main article.is-offset-half-mobile { margin-left: 50%; } - .column.is-offset-one-third-mobile, main article.is-offset-one-third-mobile, main .is-offset-one-third-mobile.side-toc, main.is-offset-one-third-mobile.sticky.scroll-with-footer::before, main.is-offset-one-third-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third-mobile.footer-links, #_footer .footer-topper .is-offset-one-third-mobile.social { + .column.is-offset-one-third-mobile, #_footer .footer-topper .is-offset-one-third-mobile.social, #_footer .footer-topper .is-offset-one-third-mobile.footer-links, main.is-offset-one-third-mobile.sticky.scroll-with-footer::before, main.is-offset-one-third-mobile.sticky.scroll-with-footer::after, main .is-offset-one-third-mobile.side-toc, main article.is-offset-one-third-mobile { margin-left: 33.3333%; } - .column.is-offset-one-quarter-mobile, main article.is-offset-one-quarter-mobile, main .is-offset-one-quarter-mobile.side-toc, main.is-offset-one-quarter-mobile.sticky.scroll-with-footer::before, main.is-offset-one-quarter-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter-mobile.footer-links, #_footer .footer-topper .is-offset-one-quarter-mobile.social { + .column.is-offset-one-quarter-mobile, #_footer .footer-topper .is-offset-one-quarter-mobile.social, #_footer .footer-topper .is-offset-one-quarter-mobile.footer-links, main.is-offset-one-quarter-mobile.sticky.scroll-with-footer::before, main.is-offset-one-quarter-mobile.sticky.scroll-with-footer::after, main .is-offset-one-quarter-mobile.side-toc, main article.is-offset-one-quarter-mobile { margin-left: 25%; } - .column.is-offset-one-fifth-mobile, main article.is-offset-one-fifth-mobile, main .is-offset-one-fifth-mobile.side-toc, main.is-offset-one-fifth-mobile.sticky.scroll-with-footer::before, main.is-offset-one-fifth-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth-mobile.footer-links, #_footer .footer-topper .is-offset-one-fifth-mobile.social { + .column.is-offset-one-fifth-mobile, #_footer .footer-topper .is-offset-one-fifth-mobile.social, #_footer .footer-topper .is-offset-one-fifth-mobile.footer-links, main.is-offset-one-fifth-mobile.sticky.scroll-with-footer::before, main.is-offset-one-fifth-mobile.sticky.scroll-with-footer::after, main .is-offset-one-fifth-mobile.side-toc, main article.is-offset-one-fifth-mobile { margin-left: 20%; } - .column.is-offset-two-fifths-mobile, main article.is-offset-two-fifths-mobile, main .is-offset-two-fifths-mobile.side-toc, main.is-offset-two-fifths-mobile.sticky.scroll-with-footer::before, main.is-offset-two-fifths-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths-mobile.footer-links, #_footer .footer-topper .is-offset-two-fifths-mobile.social { + .column.is-offset-two-fifths-mobile, #_footer .footer-topper .is-offset-two-fifths-mobile.social, #_footer .footer-topper .is-offset-two-fifths-mobile.footer-links, main.is-offset-two-fifths-mobile.sticky.scroll-with-footer::before, main.is-offset-two-fifths-mobile.sticky.scroll-with-footer::after, main .is-offset-two-fifths-mobile.side-toc, main article.is-offset-two-fifths-mobile { margin-left: 40%; } - .column.is-offset-three-fifths-mobile, main article.is-offset-three-fifths-mobile, main .is-offset-three-fifths-mobile.side-toc, main.is-offset-three-fifths-mobile.sticky.scroll-with-footer::before, main.is-offset-three-fifths-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths-mobile.footer-links, #_footer .footer-topper .is-offset-three-fifths-mobile.social { + .column.is-offset-three-fifths-mobile, #_footer .footer-topper .is-offset-three-fifths-mobile.social, #_footer .footer-topper .is-offset-three-fifths-mobile.footer-links, main.is-offset-three-fifths-mobile.sticky.scroll-with-footer::before, main.is-offset-three-fifths-mobile.sticky.scroll-with-footer::after, main .is-offset-three-fifths-mobile.side-toc, main article.is-offset-three-fifths-mobile { margin-left: 60%; } - .column.is-offset-four-fifths-mobile, main article.is-offset-four-fifths-mobile, main .is-offset-four-fifths-mobile.side-toc, main.is-offset-four-fifths-mobile.sticky.scroll-with-footer::before, main.is-offset-four-fifths-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths-mobile.footer-links, #_footer .footer-topper .is-offset-four-fifths-mobile.social { + .column.is-offset-four-fifths-mobile, #_footer .footer-topper .is-offset-four-fifths-mobile.social, #_footer .footer-topper .is-offset-four-fifths-mobile.footer-links, main.is-offset-four-fifths-mobile.sticky.scroll-with-footer::before, main.is-offset-four-fifths-mobile.sticky.scroll-with-footer::after, main .is-offset-four-fifths-mobile.side-toc, main article.is-offset-four-fifths-mobile { margin-left: 80%; } - .column.is-0-mobile, main article.is-0-mobile, main .is-0-mobile.side-toc, main.is-0-mobile.sticky.scroll-with-footer::before, main.is-0-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0-mobile.footer-links, #_footer .footer-topper .is-0-mobile.social { + .column.is-0-mobile, #_footer .footer-topper .is-0-mobile.social, #_footer .footer-topper .is-0-mobile.footer-links, main.is-0-mobile.sticky.scroll-with-footer::before, main.is-0-mobile.sticky.scroll-with-footer::after, main .is-0-mobile.side-toc, main article.is-0-mobile { flex: none; width: 0%; } - .column.is-offset-0-mobile, main article.is-offset-0-mobile, main .is-offset-0-mobile.side-toc, main.is-offset-0-mobile.sticky.scroll-with-footer::before, main.is-offset-0-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0-mobile.footer-links, #_footer .footer-topper .is-offset-0-mobile.social { + .column.is-offset-0-mobile, #_footer .footer-topper .is-offset-0-mobile.social, #_footer .footer-topper .is-offset-0-mobile.footer-links, main.is-offset-0-mobile.sticky.scroll-with-footer::before, main.is-offset-0-mobile.sticky.scroll-with-footer::after, main .is-offset-0-mobile.side-toc, main article.is-offset-0-mobile { margin-left: 0%; } - .column.is-1-mobile, main article.is-1-mobile, main .is-1-mobile.side-toc, main.is-1-mobile.sticky.scroll-with-footer::before, main.is-1-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1-mobile.footer-links, #_footer .footer-topper .is-1-mobile.social { + .column.is-1-mobile, #_footer .footer-topper .is-1-mobile.social, #_footer .footer-topper .is-1-mobile.footer-links, main.is-1-mobile.sticky.scroll-with-footer::before, main.is-1-mobile.sticky.scroll-with-footer::after, main .is-1-mobile.side-toc, main article.is-1-mobile { flex: none; width: 8.33333%; } - .column.is-offset-1-mobile, main article.is-offset-1-mobile, main .is-offset-1-mobile.side-toc, main.is-offset-1-mobile.sticky.scroll-with-footer::before, main.is-offset-1-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1-mobile.footer-links, #_footer .footer-topper .is-offset-1-mobile.social { + .column.is-offset-1-mobile, #_footer .footer-topper .is-offset-1-mobile.social, #_footer .footer-topper .is-offset-1-mobile.footer-links, main.is-offset-1-mobile.sticky.scroll-with-footer::before, main.is-offset-1-mobile.sticky.scroll-with-footer::after, main .is-offset-1-mobile.side-toc, main article.is-offset-1-mobile { margin-left: 8.33333%; } - .column.is-2-mobile, main article.is-2-mobile, main .is-2-mobile.side-toc, main.is-2-mobile.sticky.scroll-with-footer::before, main.is-2-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2-mobile.footer-links, #_footer .footer-topper .is-2-mobile.social { + .column.is-2-mobile, #_footer .footer-topper .is-2-mobile.social, #_footer .footer-topper .is-2-mobile.footer-links, main.is-2-mobile.sticky.scroll-with-footer::before, main.is-2-mobile.sticky.scroll-with-footer::after, main .is-2-mobile.side-toc, main article.is-2-mobile { flex: none; width: 16.66667%; } - .column.is-offset-2-mobile, main article.is-offset-2-mobile, main .is-offset-2-mobile.side-toc, main.is-offset-2-mobile.sticky.scroll-with-footer::before, main.is-offset-2-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2-mobile.footer-links, #_footer .footer-topper .is-offset-2-mobile.social { + .column.is-offset-2-mobile, #_footer .footer-topper .is-offset-2-mobile.social, #_footer .footer-topper .is-offset-2-mobile.footer-links, main.is-offset-2-mobile.sticky.scroll-with-footer::before, main.is-offset-2-mobile.sticky.scroll-with-footer::after, main .is-offset-2-mobile.side-toc, main article.is-offset-2-mobile { margin-left: 16.66667%; } - .column.is-3-mobile, main article.is-3-mobile, main .is-3-mobile.side-toc, main.is-3-mobile.sticky.scroll-with-footer::before, main.is-3-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3-mobile.footer-links, #_footer .footer-topper .is-3-mobile.social { + .column.is-3-mobile, #_footer .footer-topper .is-3-mobile.social, #_footer .footer-topper .is-3-mobile.footer-links, main.is-3-mobile.sticky.scroll-with-footer::before, main.is-3-mobile.sticky.scroll-with-footer::after, main .is-3-mobile.side-toc, main article.is-3-mobile { flex: none; width: 25%; } - .column.is-offset-3-mobile, main article.is-offset-3-mobile, main .is-offset-3-mobile.side-toc, main.is-offset-3-mobile.sticky.scroll-with-footer::before, main.is-offset-3-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3-mobile.footer-links, #_footer .footer-topper .is-offset-3-mobile.social { + .column.is-offset-3-mobile, #_footer .footer-topper .is-offset-3-mobile.social, #_footer .footer-topper .is-offset-3-mobile.footer-links, main.is-offset-3-mobile.sticky.scroll-with-footer::before, main.is-offset-3-mobile.sticky.scroll-with-footer::after, main .is-offset-3-mobile.side-toc, main article.is-offset-3-mobile { margin-left: 25%; } - .column.is-4-mobile, main article.is-4-mobile, main .is-4-mobile.side-toc, main.is-4-mobile.sticky.scroll-with-footer::before, main.is-4-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4-mobile.footer-links, #_footer .footer-topper .is-4-mobile.social { + .column.is-4-mobile, #_footer .footer-topper .is-4-mobile.social, #_footer .footer-topper .is-4-mobile.footer-links, main.is-4-mobile.sticky.scroll-with-footer::before, main.is-4-mobile.sticky.scroll-with-footer::after, main .is-4-mobile.side-toc, main article.is-4-mobile { flex: none; width: 33.33333%; } - .column.is-offset-4-mobile, main article.is-offset-4-mobile, main .is-offset-4-mobile.side-toc, main.is-offset-4-mobile.sticky.scroll-with-footer::before, main.is-offset-4-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4-mobile.footer-links, #_footer .footer-topper .is-offset-4-mobile.social { + .column.is-offset-4-mobile, #_footer .footer-topper .is-offset-4-mobile.social, #_footer .footer-topper .is-offset-4-mobile.footer-links, main.is-offset-4-mobile.sticky.scroll-with-footer::before, main.is-offset-4-mobile.sticky.scroll-with-footer::after, main .is-offset-4-mobile.side-toc, main article.is-offset-4-mobile { margin-left: 33.33333%; } - .column.is-5-mobile, main article.is-5-mobile, main .is-5-mobile.side-toc, main.is-5-mobile.sticky.scroll-with-footer::before, main.is-5-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5-mobile.footer-links, #_footer .footer-topper .is-5-mobile.social { + .column.is-5-mobile, #_footer .footer-topper .is-5-mobile.social, #_footer .footer-topper .is-5-mobile.footer-links, main.is-5-mobile.sticky.scroll-with-footer::before, main.is-5-mobile.sticky.scroll-with-footer::after, main .is-5-mobile.side-toc, main article.is-5-mobile { flex: none; width: 41.66667%; } - .column.is-offset-5-mobile, main article.is-offset-5-mobile, main .is-offset-5-mobile.side-toc, main.is-offset-5-mobile.sticky.scroll-with-footer::before, main.is-offset-5-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5-mobile.footer-links, #_footer .footer-topper .is-offset-5-mobile.social { + .column.is-offset-5-mobile, #_footer .footer-topper .is-offset-5-mobile.social, #_footer .footer-topper .is-offset-5-mobile.footer-links, main.is-offset-5-mobile.sticky.scroll-with-footer::before, main.is-offset-5-mobile.sticky.scroll-with-footer::after, main .is-offset-5-mobile.side-toc, main article.is-offset-5-mobile { margin-left: 41.66667%; } - .column.is-6-mobile, main article.is-6-mobile, main .is-6-mobile.side-toc, main.is-6-mobile.sticky.scroll-with-footer::before, main.is-6-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6-mobile.footer-links, #_footer .footer-topper .is-6-mobile.social { + .column.is-6-mobile, #_footer .footer-topper .is-6-mobile.social, #_footer .footer-topper .is-6-mobile.footer-links, main.is-6-mobile.sticky.scroll-with-footer::before, main.is-6-mobile.sticky.scroll-with-footer::after, main .is-6-mobile.side-toc, main article.is-6-mobile { flex: none; width: 50%; } - .column.is-offset-6-mobile, main article.is-offset-6-mobile, main .is-offset-6-mobile.side-toc, main.is-offset-6-mobile.sticky.scroll-with-footer::before, main.is-offset-6-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6-mobile.footer-links, #_footer .footer-topper .is-offset-6-mobile.social { + .column.is-offset-6-mobile, #_footer .footer-topper .is-offset-6-mobile.social, #_footer .footer-topper .is-offset-6-mobile.footer-links, main.is-offset-6-mobile.sticky.scroll-with-footer::before, main.is-offset-6-mobile.sticky.scroll-with-footer::after, main .is-offset-6-mobile.side-toc, main article.is-offset-6-mobile { margin-left: 50%; } - .column.is-7-mobile, main article.is-7-mobile, main .is-7-mobile.side-toc, main.is-7-mobile.sticky.scroll-with-footer::before, main.is-7-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7-mobile.footer-links, #_footer .footer-topper .is-7-mobile.social { + .column.is-7-mobile, #_footer .footer-topper .is-7-mobile.social, #_footer .footer-topper .is-7-mobile.footer-links, main.is-7-mobile.sticky.scroll-with-footer::before, main.is-7-mobile.sticky.scroll-with-footer::after, main .is-7-mobile.side-toc, main article.is-7-mobile { flex: none; width: 58.33333%; } - .column.is-offset-7-mobile, main article.is-offset-7-mobile, main .is-offset-7-mobile.side-toc, main.is-offset-7-mobile.sticky.scroll-with-footer::before, main.is-offset-7-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7-mobile.footer-links, #_footer .footer-topper .is-offset-7-mobile.social { + .column.is-offset-7-mobile, #_footer .footer-topper .is-offset-7-mobile.social, #_footer .footer-topper .is-offset-7-mobile.footer-links, main.is-offset-7-mobile.sticky.scroll-with-footer::before, main.is-offset-7-mobile.sticky.scroll-with-footer::after, main .is-offset-7-mobile.side-toc, main article.is-offset-7-mobile { margin-left: 58.33333%; } - .column.is-8-mobile, main article.is-8-mobile, main .is-8-mobile.side-toc, main.is-8-mobile.sticky.scroll-with-footer::before, main.is-8-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8-mobile.footer-links, #_footer .footer-topper .is-8-mobile.social { + .column.is-8-mobile, #_footer .footer-topper .is-8-mobile.social, #_footer .footer-topper .is-8-mobile.footer-links, main.is-8-mobile.sticky.scroll-with-footer::before, main.is-8-mobile.sticky.scroll-with-footer::after, main .is-8-mobile.side-toc, main article.is-8-mobile { flex: none; width: 66.66667%; } - .column.is-offset-8-mobile, main article.is-offset-8-mobile, main .is-offset-8-mobile.side-toc, main.is-offset-8-mobile.sticky.scroll-with-footer::before, main.is-offset-8-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8-mobile.footer-links, #_footer .footer-topper .is-offset-8-mobile.social { + .column.is-offset-8-mobile, #_footer .footer-topper .is-offset-8-mobile.social, #_footer .footer-topper .is-offset-8-mobile.footer-links, main.is-offset-8-mobile.sticky.scroll-with-footer::before, main.is-offset-8-mobile.sticky.scroll-with-footer::after, main .is-offset-8-mobile.side-toc, main article.is-offset-8-mobile { margin-left: 66.66667%; } - .column.is-9-mobile, main article.is-9-mobile, main .is-9-mobile.side-toc, main.is-9-mobile.sticky.scroll-with-footer::before, main.is-9-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9-mobile.footer-links, #_footer .footer-topper .is-9-mobile.social { + .column.is-9-mobile, #_footer .footer-topper .is-9-mobile.social, #_footer .footer-topper .is-9-mobile.footer-links, main.is-9-mobile.sticky.scroll-with-footer::before, main.is-9-mobile.sticky.scroll-with-footer::after, main .is-9-mobile.side-toc, main article.is-9-mobile { flex: none; width: 75%; } - .column.is-offset-9-mobile, main article.is-offset-9-mobile, main .is-offset-9-mobile.side-toc, main.is-offset-9-mobile.sticky.scroll-with-footer::before, main.is-offset-9-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9-mobile.footer-links, #_footer .footer-topper .is-offset-9-mobile.social { + .column.is-offset-9-mobile, #_footer .footer-topper .is-offset-9-mobile.social, #_footer .footer-topper .is-offset-9-mobile.footer-links, main.is-offset-9-mobile.sticky.scroll-with-footer::before, main.is-offset-9-mobile.sticky.scroll-with-footer::after, main .is-offset-9-mobile.side-toc, main article.is-offset-9-mobile { margin-left: 75%; } - .column.is-10-mobile, main article.is-10-mobile, main .is-10-mobile.side-toc, main.is-10-mobile.sticky.scroll-with-footer::before, main.is-10-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-10-mobile.footer-links, #_footer .footer-topper .is-10-mobile.social { + .column.is-10-mobile, #_footer .footer-topper .is-10-mobile.social, #_footer .footer-topper .is-10-mobile.footer-links, main.is-10-mobile.sticky.scroll-with-footer::before, main.is-10-mobile.sticky.scroll-with-footer::after, main .is-10-mobile.side-toc, main article.is-10-mobile { flex: none; width: 83.33333%; } - .column.is-offset-10-mobile, main article.is-offset-10-mobile, main .is-offset-10-mobile.side-toc, main.is-offset-10-mobile.sticky.scroll-with-footer::before, main.is-offset-10-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10-mobile.footer-links, #_footer .footer-topper .is-offset-10-mobile.social { + .column.is-offset-10-mobile, #_footer .footer-topper .is-offset-10-mobile.social, #_footer .footer-topper .is-offset-10-mobile.footer-links, main.is-offset-10-mobile.sticky.scroll-with-footer::before, main.is-offset-10-mobile.sticky.scroll-with-footer::after, main .is-offset-10-mobile.side-toc, main article.is-offset-10-mobile { margin-left: 83.33333%; } - .column.is-11-mobile, main article.is-11-mobile, main .is-11-mobile.side-toc, main.is-11-mobile.sticky.scroll-with-footer::before, main.is-11-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11-mobile.footer-links, #_footer .footer-topper .is-11-mobile.social { + .column.is-11-mobile, #_footer .footer-topper .is-11-mobile.social, #_footer .footer-topper .is-11-mobile.footer-links, main.is-11-mobile.sticky.scroll-with-footer::before, main.is-11-mobile.sticky.scroll-with-footer::after, main .is-11-mobile.side-toc, main article.is-11-mobile { flex: none; width: 91.66667%; } - .column.is-offset-11-mobile, main article.is-offset-11-mobile, main .is-offset-11-mobile.side-toc, main.is-offset-11-mobile.sticky.scroll-with-footer::before, main.is-offset-11-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11-mobile.footer-links, #_footer .footer-topper .is-offset-11-mobile.social { + .column.is-offset-11-mobile, #_footer .footer-topper .is-offset-11-mobile.social, #_footer .footer-topper .is-offset-11-mobile.footer-links, main.is-offset-11-mobile.sticky.scroll-with-footer::before, main.is-offset-11-mobile.sticky.scroll-with-footer::after, main .is-offset-11-mobile.side-toc, main article.is-offset-11-mobile { margin-left: 91.66667%; } - .column.is-12-mobile, main article.is-12-mobile, main .is-12-mobile.side-toc, main.is-12-mobile.sticky.scroll-with-footer::before, main.is-12-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12-mobile.footer-links, #_footer .footer-topper .is-12-mobile.social { + .column.is-12-mobile, #_footer .footer-topper .is-12-mobile.social, #_footer .footer-topper .is-12-mobile.footer-links, main.is-12-mobile.sticky.scroll-with-footer::before, main.is-12-mobile.sticky.scroll-with-footer::after, main .is-12-mobile.side-toc, main article.is-12-mobile { flex: none; width: 100%; } - .column.is-offset-12-mobile, main article.is-offset-12-mobile, main .is-offset-12-mobile.side-toc, main.is-offset-12-mobile.sticky.scroll-with-footer::before, main.is-offset-12-mobile.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12-mobile.footer-links, #_footer .footer-topper .is-offset-12-mobile.social { + .column.is-offset-12-mobile, #_footer .footer-topper .is-offset-12-mobile.social, #_footer .footer-topper .is-offset-12-mobile.footer-links, main.is-offset-12-mobile.sticky.scroll-with-footer::before, main.is-offset-12-mobile.sticky.scroll-with-footer::after, main .is-offset-12-mobile.side-toc, main article.is-offset-12-mobile { margin-left: 100%; } } @media screen and (min-width: 769px), print { - .column.is-narrow, main article.is-narrow, main .is-narrow.side-toc, main.is-narrow.sticky.scroll-with-footer::before, main.is-narrow.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow.footer-links, #_footer .footer-topper .is-narrow.social, .column.is-narrow-tablet, main article.is-narrow-tablet, main .is-narrow-tablet.side-toc, main.is-narrow-tablet.sticky.scroll-with-footer::before, main.is-narrow-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow-tablet.footer-links, #_footer .footer-topper .is-narrow-tablet.social { + .column.is-narrow, #_footer .footer-topper .is-narrow.social, #_footer .footer-topper .is-narrow.footer-links, main.is-narrow.sticky.scroll-with-footer::before, main.is-narrow.sticky.scroll-with-footer::after, main .is-narrow.side-toc, main article.is-narrow, .column.is-narrow-tablet, #_footer .footer-topper .is-narrow-tablet.social, #_footer .footer-topper .is-narrow-tablet.footer-links, main.is-narrow-tablet.sticky.scroll-with-footer::before, main.is-narrow-tablet.sticky.scroll-with-footer::after, main .is-narrow-tablet.side-toc, main article.is-narrow-tablet { flex: none; width: unset; } - .column.is-full, main article.is-full, main .is-full.side-toc, main.is-full.sticky.scroll-with-footer::before, main.is-full.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full.footer-links, #_footer .footer-topper .is-full.social, .column.is-full-tablet, main article.is-full-tablet, main .is-full-tablet.side-toc, main.is-full-tablet.sticky.scroll-with-footer::before, main.is-full-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full-tablet.footer-links, #_footer .footer-topper .is-full-tablet.social { + .column.is-full, #_footer .footer-topper .is-full.social, #_footer .footer-topper .is-full.footer-links, main.is-full.sticky.scroll-with-footer::before, main.is-full.sticky.scroll-with-footer::after, main .is-full.side-toc, main article.is-full, .column.is-full-tablet, #_footer .footer-topper .is-full-tablet.social, #_footer .footer-topper .is-full-tablet.footer-links, main.is-full-tablet.sticky.scroll-with-footer::before, main.is-full-tablet.sticky.scroll-with-footer::after, main .is-full-tablet.side-toc, main article.is-full-tablet { flex: none; width: 100%; } - .column.is-three-quarters, main article.is-three-quarters, main .is-three-quarters.side-toc, main.is-three-quarters.sticky.scroll-with-footer::before, main.is-three-quarters.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters.footer-links, #_footer .footer-topper .is-three-quarters.social, .column.is-three-quarters-tablet, main article.is-three-quarters-tablet, main .is-three-quarters-tablet.side-toc, main.is-three-quarters-tablet.sticky.scroll-with-footer::before, main.is-three-quarters-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters-tablet.footer-links, #_footer .footer-topper .is-three-quarters-tablet.social { + .column.is-three-quarters, #_footer .footer-topper .is-three-quarters.social, #_footer .footer-topper .is-three-quarters.footer-links, main.is-three-quarters.sticky.scroll-with-footer::before, main.is-three-quarters.sticky.scroll-with-footer::after, main .is-three-quarters.side-toc, main article.is-three-quarters, .column.is-three-quarters-tablet, #_footer .footer-topper .is-three-quarters-tablet.social, #_footer .footer-topper .is-three-quarters-tablet.footer-links, main.is-three-quarters-tablet.sticky.scroll-with-footer::before, main.is-three-quarters-tablet.sticky.scroll-with-footer::after, main .is-three-quarters-tablet.side-toc, main article.is-three-quarters-tablet { flex: none; width: 75%; } - .column.is-two-thirds, main article.is-two-thirds, main .is-two-thirds.side-toc, main.is-two-thirds.sticky.scroll-with-footer::before, main.is-two-thirds.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds.footer-links, #_footer .footer-topper .is-two-thirds.social, .column.is-two-thirds-tablet, main article.is-two-thirds-tablet, main .is-two-thirds-tablet.side-toc, main.is-two-thirds-tablet.sticky.scroll-with-footer::before, main.is-two-thirds-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds-tablet.footer-links, #_footer .footer-topper .is-two-thirds-tablet.social { + .column.is-two-thirds, #_footer .footer-topper .is-two-thirds.social, #_footer .footer-topper .is-two-thirds.footer-links, main.is-two-thirds.sticky.scroll-with-footer::before, main.is-two-thirds.sticky.scroll-with-footer::after, main .is-two-thirds.side-toc, main article.is-two-thirds, .column.is-two-thirds-tablet, #_footer .footer-topper .is-two-thirds-tablet.social, #_footer .footer-topper .is-two-thirds-tablet.footer-links, main.is-two-thirds-tablet.sticky.scroll-with-footer::before, main.is-two-thirds-tablet.sticky.scroll-with-footer::after, main .is-two-thirds-tablet.side-toc, main article.is-two-thirds-tablet { flex: none; width: 66.6666%; } - .column.is-half, main article.is-half, main .is-half.side-toc, main.is-half.sticky.scroll-with-footer::before, main.is-half.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half.footer-links, #_footer .footer-topper .is-half.social, .column.is-half-tablet, main article.is-half-tablet, main .is-half-tablet.side-toc, main.is-half-tablet.sticky.scroll-with-footer::before, main.is-half-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half-tablet.footer-links, #_footer .footer-topper .is-half-tablet.social { + .column.is-half, #_footer .footer-topper .is-half.social, #_footer .footer-topper .is-half.footer-links, main.is-half.sticky.scroll-with-footer::before, main.is-half.sticky.scroll-with-footer::after, main .is-half.side-toc, main article.is-half, .column.is-half-tablet, #_footer .footer-topper .is-half-tablet.social, #_footer .footer-topper .is-half-tablet.footer-links, main.is-half-tablet.sticky.scroll-with-footer::before, main.is-half-tablet.sticky.scroll-with-footer::after, main .is-half-tablet.side-toc, main article.is-half-tablet { flex: none; width: 50%; } - .column.is-one-third, main article.is-one-third, main .is-one-third.side-toc, main.is-one-third.sticky.scroll-with-footer::before, main.is-one-third.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third.footer-links, #_footer .footer-topper .is-one-third.social, .column.is-one-third-tablet, main article.is-one-third-tablet, main .is-one-third-tablet.side-toc, main.is-one-third-tablet.sticky.scroll-with-footer::before, main.is-one-third-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third-tablet.footer-links, #_footer .footer-topper .is-one-third-tablet.social { + .column.is-one-third, #_footer .footer-topper .is-one-third.social, #_footer .footer-topper .is-one-third.footer-links, main.is-one-third.sticky.scroll-with-footer::before, main.is-one-third.sticky.scroll-with-footer::after, main .is-one-third.side-toc, main article.is-one-third, .column.is-one-third-tablet, #_footer .footer-topper .is-one-third-tablet.social, #_footer .footer-topper .is-one-third-tablet.footer-links, main.is-one-third-tablet.sticky.scroll-with-footer::before, main.is-one-third-tablet.sticky.scroll-with-footer::after, main .is-one-third-tablet.side-toc, main article.is-one-third-tablet { flex: none; width: 33.3333%; } - .column.is-one-quarter, main article.is-one-quarter, main .is-one-quarter.side-toc, main.is-one-quarter.sticky.scroll-with-footer::before, main.is-one-quarter.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter.footer-links, #_footer .footer-topper .is-one-quarter.social, .column.is-one-quarter-tablet, main article.is-one-quarter-tablet, main .is-one-quarter-tablet.side-toc, main.is-one-quarter-tablet.sticky.scroll-with-footer::before, main.is-one-quarter-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter-tablet.footer-links, #_footer .footer-topper .is-one-quarter-tablet.social { + .column.is-one-quarter, #_footer .footer-topper .is-one-quarter.social, #_footer .footer-topper .is-one-quarter.footer-links, main.is-one-quarter.sticky.scroll-with-footer::before, main.is-one-quarter.sticky.scroll-with-footer::after, main .is-one-quarter.side-toc, main article.is-one-quarter, .column.is-one-quarter-tablet, #_footer .footer-topper .is-one-quarter-tablet.social, #_footer .footer-topper .is-one-quarter-tablet.footer-links, main.is-one-quarter-tablet.sticky.scroll-with-footer::before, main.is-one-quarter-tablet.sticky.scroll-with-footer::after, main .is-one-quarter-tablet.side-toc, main article.is-one-quarter-tablet { flex: none; width: 25%; } - .column.is-one-fifth, main article.is-one-fifth, main .is-one-fifth.side-toc, main.is-one-fifth.sticky.scroll-with-footer::before, main.is-one-fifth.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth.footer-links, #_footer .footer-topper .is-one-fifth.social, .column.is-one-fifth-tablet, main article.is-one-fifth-tablet, main .is-one-fifth-tablet.side-toc, main.is-one-fifth-tablet.sticky.scroll-with-footer::before, main.is-one-fifth-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth-tablet.footer-links, #_footer .footer-topper .is-one-fifth-tablet.social { + .column.is-one-fifth, #_footer .footer-topper .is-one-fifth.social, #_footer .footer-topper .is-one-fifth.footer-links, main.is-one-fifth.sticky.scroll-with-footer::before, main.is-one-fifth.sticky.scroll-with-footer::after, main .is-one-fifth.side-toc, main article.is-one-fifth, .column.is-one-fifth-tablet, #_footer .footer-topper .is-one-fifth-tablet.social, #_footer .footer-topper .is-one-fifth-tablet.footer-links, main.is-one-fifth-tablet.sticky.scroll-with-footer::before, main.is-one-fifth-tablet.sticky.scroll-with-footer::after, main .is-one-fifth-tablet.side-toc, main article.is-one-fifth-tablet { flex: none; width: 20%; } - .column.is-two-fifths, main article.is-two-fifths, main .is-two-fifths.side-toc, main.is-two-fifths.sticky.scroll-with-footer::before, main.is-two-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths.footer-links, #_footer .footer-topper .is-two-fifths.social, .column.is-two-fifths-tablet, main article.is-two-fifths-tablet, main .is-two-fifths-tablet.side-toc, main.is-two-fifths-tablet.sticky.scroll-with-footer::before, main.is-two-fifths-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths-tablet.footer-links, #_footer .footer-topper .is-two-fifths-tablet.social { + .column.is-two-fifths, #_footer .footer-topper .is-two-fifths.social, #_footer .footer-topper .is-two-fifths.footer-links, main.is-two-fifths.sticky.scroll-with-footer::before, main.is-two-fifths.sticky.scroll-with-footer::after, main .is-two-fifths.side-toc, main article.is-two-fifths, .column.is-two-fifths-tablet, #_footer .footer-topper .is-two-fifths-tablet.social, #_footer .footer-topper .is-two-fifths-tablet.footer-links, main.is-two-fifths-tablet.sticky.scroll-with-footer::before, main.is-two-fifths-tablet.sticky.scroll-with-footer::after, main .is-two-fifths-tablet.side-toc, main article.is-two-fifths-tablet { flex: none; width: 40%; } - .column.is-three-fifths, main article.is-three-fifths, main .is-three-fifths.side-toc, main.is-three-fifths.sticky.scroll-with-footer::before, main.is-three-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths.footer-links, #_footer .footer-topper .is-three-fifths.social, .column.is-three-fifths-tablet, main article.is-three-fifths-tablet, main .is-three-fifths-tablet.side-toc, main.is-three-fifths-tablet.sticky.scroll-with-footer::before, main.is-three-fifths-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths-tablet.footer-links, #_footer .footer-topper .is-three-fifths-tablet.social { + .column.is-three-fifths, #_footer .footer-topper .is-three-fifths.social, #_footer .footer-topper .is-three-fifths.footer-links, main.is-three-fifths.sticky.scroll-with-footer::before, main.is-three-fifths.sticky.scroll-with-footer::after, main .is-three-fifths.side-toc, main article.is-three-fifths, .column.is-three-fifths-tablet, #_footer .footer-topper .is-three-fifths-tablet.social, #_footer .footer-topper .is-three-fifths-tablet.footer-links, main.is-three-fifths-tablet.sticky.scroll-with-footer::before, main.is-three-fifths-tablet.sticky.scroll-with-footer::after, main .is-three-fifths-tablet.side-toc, main article.is-three-fifths-tablet { flex: none; width: 60%; } - .column.is-four-fifths, main article.is-four-fifths, main .is-four-fifths.side-toc, main.is-four-fifths.sticky.scroll-with-footer::before, main.is-four-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths.footer-links, #_footer .footer-topper .is-four-fifths.social, .column.is-four-fifths-tablet, main article.is-four-fifths-tablet, main .is-four-fifths-tablet.side-toc, main.is-four-fifths-tablet.sticky.scroll-with-footer::before, main.is-four-fifths-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths-tablet.footer-links, #_footer .footer-topper .is-four-fifths-tablet.social { + .column.is-four-fifths, #_footer .footer-topper .is-four-fifths.social, #_footer .footer-topper .is-four-fifths.footer-links, main.is-four-fifths.sticky.scroll-with-footer::before, main.is-four-fifths.sticky.scroll-with-footer::after, main .is-four-fifths.side-toc, main article.is-four-fifths, .column.is-four-fifths-tablet, #_footer .footer-topper .is-four-fifths-tablet.social, #_footer .footer-topper .is-four-fifths-tablet.footer-links, main.is-four-fifths-tablet.sticky.scroll-with-footer::before, main.is-four-fifths-tablet.sticky.scroll-with-footer::after, main .is-four-fifths-tablet.side-toc, main article.is-four-fifths-tablet { flex: none; width: 80%; } - .column.is-offset-three-quarters, main article.is-offset-three-quarters, main .is-offset-three-quarters.side-toc, main.is-offset-three-quarters.sticky.scroll-with-footer::before, main.is-offset-three-quarters.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters.footer-links, #_footer .footer-topper .is-offset-three-quarters.social, .column.is-offset-three-quarters-tablet, main article.is-offset-three-quarters-tablet, main .is-offset-three-quarters-tablet.side-toc, main.is-offset-three-quarters-tablet.sticky.scroll-with-footer::before, main.is-offset-three-quarters-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters-tablet.footer-links, #_footer .footer-topper .is-offset-three-quarters-tablet.social { + .column.is-offset-three-quarters, #_footer .footer-topper .is-offset-three-quarters.social, #_footer .footer-topper .is-offset-three-quarters.footer-links, main.is-offset-three-quarters.sticky.scroll-with-footer::before, main.is-offset-three-quarters.sticky.scroll-with-footer::after, main .is-offset-three-quarters.side-toc, main article.is-offset-three-quarters, .column.is-offset-three-quarters-tablet, #_footer .footer-topper .is-offset-three-quarters-tablet.social, #_footer .footer-topper .is-offset-three-quarters-tablet.footer-links, main.is-offset-three-quarters-tablet.sticky.scroll-with-footer::before, main.is-offset-three-quarters-tablet.sticky.scroll-with-footer::after, main .is-offset-three-quarters-tablet.side-toc, main article.is-offset-three-quarters-tablet { margin-left: 75%; } - .column.is-offset-two-thirds, main article.is-offset-two-thirds, main .is-offset-two-thirds.side-toc, main.is-offset-two-thirds.sticky.scroll-with-footer::before, main.is-offset-two-thirds.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds.footer-links, #_footer .footer-topper .is-offset-two-thirds.social, .column.is-offset-two-thirds-tablet, main article.is-offset-two-thirds-tablet, main .is-offset-two-thirds-tablet.side-toc, main.is-offset-two-thirds-tablet.sticky.scroll-with-footer::before, main.is-offset-two-thirds-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds-tablet.footer-links, #_footer .footer-topper .is-offset-two-thirds-tablet.social { + .column.is-offset-two-thirds, #_footer .footer-topper .is-offset-two-thirds.social, #_footer .footer-topper .is-offset-two-thirds.footer-links, main.is-offset-two-thirds.sticky.scroll-with-footer::before, main.is-offset-two-thirds.sticky.scroll-with-footer::after, main .is-offset-two-thirds.side-toc, main article.is-offset-two-thirds, .column.is-offset-two-thirds-tablet, #_footer .footer-topper .is-offset-two-thirds-tablet.social, #_footer .footer-topper .is-offset-two-thirds-tablet.footer-links, main.is-offset-two-thirds-tablet.sticky.scroll-with-footer::before, main.is-offset-two-thirds-tablet.sticky.scroll-with-footer::after, main .is-offset-two-thirds-tablet.side-toc, main article.is-offset-two-thirds-tablet { margin-left: 66.6666%; } - .column.is-offset-half, main article.is-offset-half, main .is-offset-half.side-toc, main.is-offset-half.sticky.scroll-with-footer::before, main.is-offset-half.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half.footer-links, #_footer .footer-topper .is-offset-half.social, .column.is-offset-half-tablet, main article.is-offset-half-tablet, main .is-offset-half-tablet.side-toc, main.is-offset-half-tablet.sticky.scroll-with-footer::before, main.is-offset-half-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half-tablet.footer-links, #_footer .footer-topper .is-offset-half-tablet.social { + .column.is-offset-half, #_footer .footer-topper .is-offset-half.social, #_footer .footer-topper .is-offset-half.footer-links, main.is-offset-half.sticky.scroll-with-footer::before, main.is-offset-half.sticky.scroll-with-footer::after, main .is-offset-half.side-toc, main article.is-offset-half, .column.is-offset-half-tablet, #_footer .footer-topper .is-offset-half-tablet.social, #_footer .footer-topper .is-offset-half-tablet.footer-links, main.is-offset-half-tablet.sticky.scroll-with-footer::before, main.is-offset-half-tablet.sticky.scroll-with-footer::after, main .is-offset-half-tablet.side-toc, main article.is-offset-half-tablet { margin-left: 50%; } - .column.is-offset-one-third, main article.is-offset-one-third, main .is-offset-one-third.side-toc, main.is-offset-one-third.sticky.scroll-with-footer::before, main.is-offset-one-third.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third.footer-links, #_footer .footer-topper .is-offset-one-third.social, .column.is-offset-one-third-tablet, main article.is-offset-one-third-tablet, main .is-offset-one-third-tablet.side-toc, main.is-offset-one-third-tablet.sticky.scroll-with-footer::before, main.is-offset-one-third-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third-tablet.footer-links, #_footer .footer-topper .is-offset-one-third-tablet.social { + .column.is-offset-one-third, #_footer .footer-topper .is-offset-one-third.social, #_footer .footer-topper .is-offset-one-third.footer-links, main.is-offset-one-third.sticky.scroll-with-footer::before, main.is-offset-one-third.sticky.scroll-with-footer::after, main .is-offset-one-third.side-toc, main article.is-offset-one-third, .column.is-offset-one-third-tablet, #_footer .footer-topper .is-offset-one-third-tablet.social, #_footer .footer-topper .is-offset-one-third-tablet.footer-links, main.is-offset-one-third-tablet.sticky.scroll-with-footer::before, main.is-offset-one-third-tablet.sticky.scroll-with-footer::after, main .is-offset-one-third-tablet.side-toc, main article.is-offset-one-third-tablet { margin-left: 33.3333%; } - .column.is-offset-one-quarter, main article.is-offset-one-quarter, main .is-offset-one-quarter.side-toc, main.is-offset-one-quarter.sticky.scroll-with-footer::before, main.is-offset-one-quarter.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter.footer-links, #_footer .footer-topper .is-offset-one-quarter.social, .column.is-offset-one-quarter-tablet, main article.is-offset-one-quarter-tablet, main .is-offset-one-quarter-tablet.side-toc, main.is-offset-one-quarter-tablet.sticky.scroll-with-footer::before, main.is-offset-one-quarter-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter-tablet.footer-links, #_footer .footer-topper .is-offset-one-quarter-tablet.social { + .column.is-offset-one-quarter, #_footer .footer-topper .is-offset-one-quarter.social, #_footer .footer-topper .is-offset-one-quarter.footer-links, main.is-offset-one-quarter.sticky.scroll-with-footer::before, main.is-offset-one-quarter.sticky.scroll-with-footer::after, main .is-offset-one-quarter.side-toc, main article.is-offset-one-quarter, .column.is-offset-one-quarter-tablet, #_footer .footer-topper .is-offset-one-quarter-tablet.social, #_footer .footer-topper .is-offset-one-quarter-tablet.footer-links, main.is-offset-one-quarter-tablet.sticky.scroll-with-footer::before, main.is-offset-one-quarter-tablet.sticky.scroll-with-footer::after, main .is-offset-one-quarter-tablet.side-toc, main article.is-offset-one-quarter-tablet { margin-left: 25%; } - .column.is-offset-one-fifth, main article.is-offset-one-fifth, main .is-offset-one-fifth.side-toc, main.is-offset-one-fifth.sticky.scroll-with-footer::before, main.is-offset-one-fifth.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth.footer-links, #_footer .footer-topper .is-offset-one-fifth.social, .column.is-offset-one-fifth-tablet, main article.is-offset-one-fifth-tablet, main .is-offset-one-fifth-tablet.side-toc, main.is-offset-one-fifth-tablet.sticky.scroll-with-footer::before, main.is-offset-one-fifth-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth-tablet.footer-links, #_footer .footer-topper .is-offset-one-fifth-tablet.social { + .column.is-offset-one-fifth, #_footer .footer-topper .is-offset-one-fifth.social, #_footer .footer-topper .is-offset-one-fifth.footer-links, main.is-offset-one-fifth.sticky.scroll-with-footer::before, main.is-offset-one-fifth.sticky.scroll-with-footer::after, main .is-offset-one-fifth.side-toc, main article.is-offset-one-fifth, .column.is-offset-one-fifth-tablet, #_footer .footer-topper .is-offset-one-fifth-tablet.social, #_footer .footer-topper .is-offset-one-fifth-tablet.footer-links, main.is-offset-one-fifth-tablet.sticky.scroll-with-footer::before, main.is-offset-one-fifth-tablet.sticky.scroll-with-footer::after, main .is-offset-one-fifth-tablet.side-toc, main article.is-offset-one-fifth-tablet { margin-left: 20%; } - .column.is-offset-two-fifths, main article.is-offset-two-fifths, main .is-offset-two-fifths.side-toc, main.is-offset-two-fifths.sticky.scroll-with-footer::before, main.is-offset-two-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths.footer-links, #_footer .footer-topper .is-offset-two-fifths.social, .column.is-offset-two-fifths-tablet, main article.is-offset-two-fifths-tablet, main .is-offset-two-fifths-tablet.side-toc, main.is-offset-two-fifths-tablet.sticky.scroll-with-footer::before, main.is-offset-two-fifths-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths-tablet.footer-links, #_footer .footer-topper .is-offset-two-fifths-tablet.social { + .column.is-offset-two-fifths, #_footer .footer-topper .is-offset-two-fifths.social, #_footer .footer-topper .is-offset-two-fifths.footer-links, main.is-offset-two-fifths.sticky.scroll-with-footer::before, main.is-offset-two-fifths.sticky.scroll-with-footer::after, main .is-offset-two-fifths.side-toc, main article.is-offset-two-fifths, .column.is-offset-two-fifths-tablet, #_footer .footer-topper .is-offset-two-fifths-tablet.social, #_footer .footer-topper .is-offset-two-fifths-tablet.footer-links, main.is-offset-two-fifths-tablet.sticky.scroll-with-footer::before, main.is-offset-two-fifths-tablet.sticky.scroll-with-footer::after, main .is-offset-two-fifths-tablet.side-toc, main article.is-offset-two-fifths-tablet { margin-left: 40%; } - .column.is-offset-three-fifths, main article.is-offset-three-fifths, main .is-offset-three-fifths.side-toc, main.is-offset-three-fifths.sticky.scroll-with-footer::before, main.is-offset-three-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths.footer-links, #_footer .footer-topper .is-offset-three-fifths.social, .column.is-offset-three-fifths-tablet, main article.is-offset-three-fifths-tablet, main .is-offset-three-fifths-tablet.side-toc, main.is-offset-three-fifths-tablet.sticky.scroll-with-footer::before, main.is-offset-three-fifths-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths-tablet.footer-links, #_footer .footer-topper .is-offset-three-fifths-tablet.social { + .column.is-offset-three-fifths, #_footer .footer-topper .is-offset-three-fifths.social, #_footer .footer-topper .is-offset-three-fifths.footer-links, main.is-offset-three-fifths.sticky.scroll-with-footer::before, main.is-offset-three-fifths.sticky.scroll-with-footer::after, main .is-offset-three-fifths.side-toc, main article.is-offset-three-fifths, .column.is-offset-three-fifths-tablet, #_footer .footer-topper .is-offset-three-fifths-tablet.social, #_footer .footer-topper .is-offset-three-fifths-tablet.footer-links, main.is-offset-three-fifths-tablet.sticky.scroll-with-footer::before, main.is-offset-three-fifths-tablet.sticky.scroll-with-footer::after, main .is-offset-three-fifths-tablet.side-toc, main article.is-offset-three-fifths-tablet { margin-left: 60%; } - .column.is-offset-four-fifths, main article.is-offset-four-fifths, main .is-offset-four-fifths.side-toc, main.is-offset-four-fifths.sticky.scroll-with-footer::before, main.is-offset-four-fifths.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths.footer-links, #_footer .footer-topper .is-offset-four-fifths.social, .column.is-offset-four-fifths-tablet, main article.is-offset-four-fifths-tablet, main .is-offset-four-fifths-tablet.side-toc, main.is-offset-four-fifths-tablet.sticky.scroll-with-footer::before, main.is-offset-four-fifths-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths-tablet.footer-links, #_footer .footer-topper .is-offset-four-fifths-tablet.social { + .column.is-offset-four-fifths, #_footer .footer-topper .is-offset-four-fifths.social, #_footer .footer-topper .is-offset-four-fifths.footer-links, main.is-offset-four-fifths.sticky.scroll-with-footer::before, main.is-offset-four-fifths.sticky.scroll-with-footer::after, main .is-offset-four-fifths.side-toc, main article.is-offset-four-fifths, .column.is-offset-four-fifths-tablet, #_footer .footer-topper .is-offset-four-fifths-tablet.social, #_footer .footer-topper .is-offset-four-fifths-tablet.footer-links, main.is-offset-four-fifths-tablet.sticky.scroll-with-footer::before, main.is-offset-four-fifths-tablet.sticky.scroll-with-footer::after, main .is-offset-four-fifths-tablet.side-toc, main article.is-offset-four-fifths-tablet { margin-left: 80%; } - .column.is-0, main article.is-0, main .is-0.side-toc, main.is-0.sticky.scroll-with-footer::before, main.is-0.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0.footer-links, #_footer .footer-topper .is-0.social, .column.is-0-tablet, main article.is-0-tablet, main .is-0-tablet.side-toc, main.is-0-tablet.sticky.scroll-with-footer::before, main.is-0-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0-tablet.footer-links, #_footer .footer-topper .is-0-tablet.social { + .column.is-0, #_footer .footer-topper .is-0.social, #_footer .footer-topper .is-0.footer-links, main.is-0.sticky.scroll-with-footer::before, main.is-0.sticky.scroll-with-footer::after, main .is-0.side-toc, main article.is-0, .column.is-0-tablet, #_footer .footer-topper .is-0-tablet.social, #_footer .footer-topper .is-0-tablet.footer-links, main.is-0-tablet.sticky.scroll-with-footer::before, main.is-0-tablet.sticky.scroll-with-footer::after, main .is-0-tablet.side-toc, main article.is-0-tablet { flex: none; width: 0%; } - .column.is-offset-0, main article.is-offset-0, main .is-offset-0.side-toc, main.is-offset-0.sticky.scroll-with-footer::before, main.is-offset-0.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0.footer-links, #_footer .footer-topper .is-offset-0.social, .column.is-offset-0-tablet, main article.is-offset-0-tablet, main .is-offset-0-tablet.side-toc, main.is-offset-0-tablet.sticky.scroll-with-footer::before, main.is-offset-0-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0-tablet.footer-links, #_footer .footer-topper .is-offset-0-tablet.social { + .column.is-offset-0, #_footer .footer-topper .is-offset-0.social, #_footer .footer-topper .is-offset-0.footer-links, main.is-offset-0.sticky.scroll-with-footer::before, main.is-offset-0.sticky.scroll-with-footer::after, main .is-offset-0.side-toc, main article.is-offset-0, .column.is-offset-0-tablet, #_footer .footer-topper .is-offset-0-tablet.social, #_footer .footer-topper .is-offset-0-tablet.footer-links, main.is-offset-0-tablet.sticky.scroll-with-footer::before, main.is-offset-0-tablet.sticky.scroll-with-footer::after, main .is-offset-0-tablet.side-toc, main article.is-offset-0-tablet { margin-left: 0%; } - .column.is-1, main article.is-1, main .is-1.side-toc, main.is-1.sticky.scroll-with-footer::before, main.is-1.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1.footer-links, #_footer .footer-topper .is-1.social, .column.is-1-tablet, main article.is-1-tablet, main .is-1-tablet.side-toc, main.is-1-tablet.sticky.scroll-with-footer::before, main.is-1-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1-tablet.footer-links, #_footer .footer-topper .is-1-tablet.social { + .column.is-1, #_footer .footer-topper .is-1.social, #_footer .footer-topper .is-1.footer-links, main.is-1.sticky.scroll-with-footer::before, main.is-1.sticky.scroll-with-footer::after, main .is-1.side-toc, main article.is-1, .column.is-1-tablet, #_footer .footer-topper .is-1-tablet.social, #_footer .footer-topper .is-1-tablet.footer-links, main.is-1-tablet.sticky.scroll-with-footer::before, main.is-1-tablet.sticky.scroll-with-footer::after, main .is-1-tablet.side-toc, main article.is-1-tablet { flex: none; width: 8.33333%; } - .column.is-offset-1, main article.is-offset-1, main .is-offset-1.side-toc, main.is-offset-1.sticky.scroll-with-footer::before, main.is-offset-1.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1.footer-links, #_footer .footer-topper .is-offset-1.social, .column.is-offset-1-tablet, main article.is-offset-1-tablet, main .is-offset-1-tablet.side-toc, main.is-offset-1-tablet.sticky.scroll-with-footer::before, main.is-offset-1-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1-tablet.footer-links, #_footer .footer-topper .is-offset-1-tablet.social { + .column.is-offset-1, #_footer .footer-topper .is-offset-1.social, #_footer .footer-topper .is-offset-1.footer-links, main.is-offset-1.sticky.scroll-with-footer::before, main.is-offset-1.sticky.scroll-with-footer::after, main .is-offset-1.side-toc, main article.is-offset-1, .column.is-offset-1-tablet, #_footer .footer-topper .is-offset-1-tablet.social, #_footer .footer-topper .is-offset-1-tablet.footer-links, main.is-offset-1-tablet.sticky.scroll-with-footer::before, main.is-offset-1-tablet.sticky.scroll-with-footer::after, main .is-offset-1-tablet.side-toc, main article.is-offset-1-tablet { margin-left: 8.33333%; } - .column.is-2, main article.is-2, main .side-toc, main.sticky.scroll-with-footer::before, main.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2.footer-links, #_footer .footer-topper main .footer-links.side-toc, main #_footer .footer-topper .footer-links.side-toc, #_footer .footer-topper main.footer-links.sticky.scroll-with-footer::before, #_footer .footer-topper main.footer-links.sticky.scroll-with-footer::after, #_footer .footer-topper .social, .column.is-2-tablet, main article.is-2-tablet, main .is-2-tablet.side-toc, main.is-2-tablet.sticky.scroll-with-footer::before, main.is-2-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2-tablet.footer-links, #_footer .footer-topper .is-2-tablet.social { + .column.is-2, #_footer .footer-topper .social, #_footer .footer-topper .is-2.footer-links, main.column.sticky.scroll-with-footer::before, #_footer .footer-topper main.sticky.scroll-with-footer.social::before, #_footer .footer-topper main.sticky.scroll-with-footer.footer-links::before, main.column.sticky.scroll-with-footer::after, #_footer .footer-topper main.sticky.scroll-with-footer.social::after, #_footer .footer-topper main.sticky.scroll-with-footer.footer-links::after, main.is-2.sticky.scroll-with-footer::before, main.is-2.sticky.scroll-with-footer::after, main .side-toc, main article.is-2, .column.is-2-tablet, #_footer .footer-topper .is-2-tablet.footer-links, main.is-2-tablet.sticky.scroll-with-footer::before, main.is-2-tablet.sticky.scroll-with-footer::after, main article.is-2-tablet { flex: none; width: 16.66667%; } - .column.is-offset-2, main article.is-offset-2, main .is-offset-2.side-toc, main.is-offset-2.sticky.scroll-with-footer::before, main.is-offset-2.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2.footer-links, #_footer .footer-topper .is-offset-2.social, .column.is-offset-2-tablet, main article.is-offset-2-tablet, main .is-offset-2-tablet.side-toc, main.is-offset-2-tablet.sticky.scroll-with-footer::before, main.is-offset-2-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2-tablet.footer-links, #_footer .footer-topper .is-offset-2-tablet.social { + .column.is-offset-2, #_footer .footer-topper .is-offset-2.social, #_footer .footer-topper .is-offset-2.footer-links, main.is-offset-2.sticky.scroll-with-footer::before, main.is-offset-2.sticky.scroll-with-footer::after, main .is-offset-2.side-toc, main article.is-offset-2, .column.is-offset-2-tablet, #_footer .footer-topper .is-offset-2-tablet.social, #_footer .footer-topper .is-offset-2-tablet.footer-links, main.is-offset-2-tablet.sticky.scroll-with-footer::before, main.is-offset-2-tablet.sticky.scroll-with-footer::after, main .is-offset-2-tablet.side-toc, main article.is-offset-2-tablet { margin-left: 16.66667%; } - .column.is-3, main article.is-3, main .is-3.side-toc, main.is-3.sticky.scroll-with-footer::before, main.is-3.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3.footer-links, #_footer .footer-topper .is-3.social, .column.is-3-tablet, main article.is-3-tablet, main .is-3-tablet.side-toc, main.is-3-tablet.sticky.scroll-with-footer::before, main.is-3-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3-tablet.footer-links, #_footer .footer-topper .is-3-tablet.social { + .column.is-3, #_footer .footer-topper .is-3.social, #_footer .footer-topper .is-3.footer-links, main.is-3.sticky.scroll-with-footer::before, main.is-3.sticky.scroll-with-footer::after, main .is-3.side-toc, main article.is-3, .column.is-3-tablet, #_footer .footer-topper .is-3-tablet.social, #_footer .footer-topper .is-3-tablet.footer-links, main.is-3-tablet.sticky.scroll-with-footer::before, main.is-3-tablet.sticky.scroll-with-footer::after, main .is-3-tablet.side-toc, main article.is-3-tablet { flex: none; width: 25%; } - .column.is-offset-3, main article.is-offset-3, main .is-offset-3.side-toc, main.is-offset-3.sticky.scroll-with-footer::before, main.is-offset-3.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3.footer-links, #_footer .footer-topper .is-offset-3.social, .column.is-offset-3-tablet, main article.is-offset-3-tablet, main .is-offset-3-tablet.side-toc, main.is-offset-3-tablet.sticky.scroll-with-footer::before, main.is-offset-3-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3-tablet.footer-links, #_footer .footer-topper .is-offset-3-tablet.social { + .column.is-offset-3, #_footer .footer-topper .is-offset-3.social, #_footer .footer-topper .is-offset-3.footer-links, main.is-offset-3.sticky.scroll-with-footer::before, main.is-offset-3.sticky.scroll-with-footer::after, main .is-offset-3.side-toc, main article.is-offset-3, .column.is-offset-3-tablet, #_footer .footer-topper .is-offset-3-tablet.social, #_footer .footer-topper .is-offset-3-tablet.footer-links, main.is-offset-3-tablet.sticky.scroll-with-footer::before, main.is-offset-3-tablet.sticky.scroll-with-footer::after, main .is-offset-3-tablet.side-toc, main article.is-offset-3-tablet { margin-left: 25%; } - .column.is-4, main article.is-4, main .is-4.side-toc, main.is-4.sticky.scroll-with-footer::before, main.is-4.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4.footer-links, #_footer .footer-topper .is-4.social, .column.is-4-tablet, main article.is-4-tablet, main .is-4-tablet.side-toc, main.is-4-tablet.sticky.scroll-with-footer::before, main.is-4-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4-tablet.footer-links, #_footer .footer-topper .is-4-tablet.social { + .column.is-4, #_footer .footer-topper .is-4.social, #_footer .footer-topper .is-4.footer-links, main.is-4.sticky.scroll-with-footer::before, main.is-4.sticky.scroll-with-footer::after, main .is-4.side-toc, main article.is-4, .column.is-4-tablet, #_footer .footer-topper .is-4-tablet.social, #_footer .footer-topper .is-4-tablet.footer-links, main.is-4-tablet.sticky.scroll-with-footer::before, main.is-4-tablet.sticky.scroll-with-footer::after, main .is-4-tablet.side-toc, main article.is-4-tablet { flex: none; width: 33.33333%; } - .column.is-offset-4, main article.is-offset-4, main .is-offset-4.side-toc, main.is-offset-4.sticky.scroll-with-footer::before, main.is-offset-4.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4.footer-links, #_footer .footer-topper .is-offset-4.social, .column.is-offset-4-tablet, main article.is-offset-4-tablet, main .is-offset-4-tablet.side-toc, main.is-offset-4-tablet.sticky.scroll-with-footer::before, main.is-offset-4-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4-tablet.footer-links, #_footer .footer-topper .is-offset-4-tablet.social { + .column.is-offset-4, #_footer .footer-topper .is-offset-4.social, #_footer .footer-topper .is-offset-4.footer-links, main.is-offset-4.sticky.scroll-with-footer::before, main.is-offset-4.sticky.scroll-with-footer::after, main .is-offset-4.side-toc, main article.is-offset-4, .column.is-offset-4-tablet, #_footer .footer-topper .is-offset-4-tablet.social, #_footer .footer-topper .is-offset-4-tablet.footer-links, main.is-offset-4-tablet.sticky.scroll-with-footer::before, main.is-offset-4-tablet.sticky.scroll-with-footer::after, main .is-offset-4-tablet.side-toc, main article.is-offset-4-tablet { margin-left: 33.33333%; } - .column.is-5, main article.is-5, main .is-5.side-toc, main.is-5.sticky.scroll-with-footer::before, main.is-5.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5.footer-links, #_footer .footer-topper .is-5.social, .column.is-5-tablet, main article.is-5-tablet, main .is-5-tablet.side-toc, main.is-5-tablet.sticky.scroll-with-footer::before, main.is-5-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5-tablet.footer-links, #_footer .footer-topper .is-5-tablet.social { + .column.is-5, #_footer .footer-topper .is-5.social, #_footer .footer-topper .is-5.footer-links, main.is-5.sticky.scroll-with-footer::before, main.is-5.sticky.scroll-with-footer::after, main .is-5.side-toc, main article.is-5, .column.is-5-tablet, #_footer .footer-topper .is-5-tablet.social, #_footer .footer-topper .is-5-tablet.footer-links, main.is-5-tablet.sticky.scroll-with-footer::before, main.is-5-tablet.sticky.scroll-with-footer::after, main .is-5-tablet.side-toc, main article.is-5-tablet { flex: none; width: 41.66667%; } - .column.is-offset-5, main article.is-offset-5, main .is-offset-5.side-toc, main.is-offset-5.sticky.scroll-with-footer::before, main.is-offset-5.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5.footer-links, #_footer .footer-topper .is-offset-5.social, .column.is-offset-5-tablet, main article.is-offset-5-tablet, main .is-offset-5-tablet.side-toc, main.is-offset-5-tablet.sticky.scroll-with-footer::before, main.is-offset-5-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5-tablet.footer-links, #_footer .footer-topper .is-offset-5-tablet.social { + .column.is-offset-5, #_footer .footer-topper .is-offset-5.social, #_footer .footer-topper .is-offset-5.footer-links, main.is-offset-5.sticky.scroll-with-footer::before, main.is-offset-5.sticky.scroll-with-footer::after, main .is-offset-5.side-toc, main article.is-offset-5, .column.is-offset-5-tablet, #_footer .footer-topper .is-offset-5-tablet.social, #_footer .footer-topper .is-offset-5-tablet.footer-links, main.is-offset-5-tablet.sticky.scroll-with-footer::before, main.is-offset-5-tablet.sticky.scroll-with-footer::after, main .is-offset-5-tablet.side-toc, main article.is-offset-5-tablet { margin-left: 41.66667%; } - .column.is-6, main article.is-6, main .is-6.side-toc, main.is-6.sticky.scroll-with-footer::before, main.is-6.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6.footer-links, #_footer .footer-topper .is-6.social, .column.is-6-tablet, main article.is-6-tablet, main .is-6-tablet.side-toc, main.is-6-tablet.sticky.scroll-with-footer::before, main.is-6-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6-tablet.footer-links, #_footer .footer-topper .is-6-tablet.social { + .column.is-6, #_footer .footer-topper .is-6.social, #_footer .footer-topper .is-6.footer-links, main.is-6.sticky.scroll-with-footer::before, main.is-6.sticky.scroll-with-footer::after, main .is-6.side-toc, main article.is-6, .column.is-6-tablet, #_footer .footer-topper .is-6-tablet.social, #_footer .footer-topper .is-6-tablet.footer-links, main.is-6-tablet.sticky.scroll-with-footer::before, main.is-6-tablet.sticky.scroll-with-footer::after, main .is-6-tablet.side-toc, main article.is-6-tablet { flex: none; width: 50%; } - .column.is-offset-6, main article.is-offset-6, main .is-offset-6.side-toc, main.is-offset-6.sticky.scroll-with-footer::before, main.is-offset-6.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6.footer-links, #_footer .footer-topper .is-offset-6.social, .column.is-offset-6-tablet, main article.is-offset-6-tablet, main .is-offset-6-tablet.side-toc, main.is-offset-6-tablet.sticky.scroll-with-footer::before, main.is-offset-6-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6-tablet.footer-links, #_footer .footer-topper .is-offset-6-tablet.social { + .column.is-offset-6, #_footer .footer-topper .is-offset-6.social, #_footer .footer-topper .is-offset-6.footer-links, main.is-offset-6.sticky.scroll-with-footer::before, main.is-offset-6.sticky.scroll-with-footer::after, main .is-offset-6.side-toc, main article.is-offset-6, .column.is-offset-6-tablet, #_footer .footer-topper .is-offset-6-tablet.social, #_footer .footer-topper .is-offset-6-tablet.footer-links, main.is-offset-6-tablet.sticky.scroll-with-footer::before, main.is-offset-6-tablet.sticky.scroll-with-footer::after, main .is-offset-6-tablet.side-toc, main article.is-offset-6-tablet { margin-left: 50%; } - .column.is-7, main article.is-7, main .is-7.side-toc, main.is-7.sticky.scroll-with-footer::before, main.is-7.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7.footer-links, #_footer .footer-topper .is-7.social, .column.is-7-tablet, main article.is-7-tablet, main .is-7-tablet.side-toc, main.is-7-tablet.sticky.scroll-with-footer::before, main.is-7-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7-tablet.footer-links, #_footer .footer-topper .is-7-tablet.social { + .column.is-7, #_footer .footer-topper .is-7.social, #_footer .footer-topper .is-7.footer-links, main.is-7.sticky.scroll-with-footer::before, main.is-7.sticky.scroll-with-footer::after, main .is-7.side-toc, main article.is-7, .column.is-7-tablet, #_footer .footer-topper .is-7-tablet.social, #_footer .footer-topper .is-7-tablet.footer-links, main.is-7-tablet.sticky.scroll-with-footer::before, main.is-7-tablet.sticky.scroll-with-footer::after, main .is-7-tablet.side-toc, main article.is-7-tablet { flex: none; width: 58.33333%; } - .column.is-offset-7, main article.is-offset-7, main .is-offset-7.side-toc, main.is-offset-7.sticky.scroll-with-footer::before, main.is-offset-7.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7.footer-links, #_footer .footer-topper .is-offset-7.social, .column.is-offset-7-tablet, main article.is-offset-7-tablet, main .is-offset-7-tablet.side-toc, main.is-offset-7-tablet.sticky.scroll-with-footer::before, main.is-offset-7-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7-tablet.footer-links, #_footer .footer-topper .is-offset-7-tablet.social { + .column.is-offset-7, #_footer .footer-topper .is-offset-7.social, #_footer .footer-topper .is-offset-7.footer-links, main.is-offset-7.sticky.scroll-with-footer::before, main.is-offset-7.sticky.scroll-with-footer::after, main .is-offset-7.side-toc, main article.is-offset-7, .column.is-offset-7-tablet, #_footer .footer-topper .is-offset-7-tablet.social, #_footer .footer-topper .is-offset-7-tablet.footer-links, main.is-offset-7-tablet.sticky.scroll-with-footer::before, main.is-offset-7-tablet.sticky.scroll-with-footer::after, main .is-offset-7-tablet.side-toc, main article.is-offset-7-tablet { margin-left: 58.33333%; } - .column.is-8, main article, main .is-8.side-toc, main article.side-toc, main.is-8.sticky.scroll-with-footer::before, main.is-8.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8.footer-links, #_footer .footer-topper main article.footer-links, main #_footer .footer-topper article.footer-links, #_footer .footer-topper .is-8.social, #_footer .footer-topper main article.social, main #_footer .footer-topper article.social, .column.is-8-tablet, main article.is-8-tablet, main .is-8-tablet.side-toc, main.is-8-tablet.sticky.scroll-with-footer::before, main.is-8-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8-tablet.footer-links, #_footer .footer-topper .is-8-tablet.social { + .column.is-8, #_footer .footer-topper .is-8.social, #_footer .footer-topper .is-8.footer-links, main.is-8.sticky.scroll-with-footer::before, main.is-8.sticky.scroll-with-footer::after, main .is-8.side-toc, main article, .column.is-8-tablet, #_footer .footer-topper .is-8-tablet.social, #_footer .footer-topper .is-8-tablet.footer-links, main.is-8-tablet.sticky.scroll-with-footer::before, main.is-8-tablet.sticky.scroll-with-footer::after, main .is-8-tablet.side-toc { flex: none; width: 66.66667%; } - .column.is-offset-8, main article.is-offset-8, main .is-offset-8.side-toc, main.is-offset-8.sticky.scroll-with-footer::before, main.is-offset-8.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8.footer-links, #_footer .footer-topper .is-offset-8.social, .column.is-offset-8-tablet, main article.is-offset-8-tablet, main .is-offset-8-tablet.side-toc, main.is-offset-8-tablet.sticky.scroll-with-footer::before, main.is-offset-8-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8-tablet.footer-links, #_footer .footer-topper .is-offset-8-tablet.social { + .column.is-offset-8, #_footer .footer-topper .is-offset-8.social, #_footer .footer-topper .is-offset-8.footer-links, main.is-offset-8.sticky.scroll-with-footer::before, main.is-offset-8.sticky.scroll-with-footer::after, main .is-offset-8.side-toc, main article.is-offset-8, .column.is-offset-8-tablet, #_footer .footer-topper .is-offset-8-tablet.social, #_footer .footer-topper .is-offset-8-tablet.footer-links, main.is-offset-8-tablet.sticky.scroll-with-footer::before, main.is-offset-8-tablet.sticky.scroll-with-footer::after, main .is-offset-8-tablet.side-toc, main article.is-offset-8-tablet { margin-left: 66.66667%; } - .column.is-9, main article.is-9, main .is-9.side-toc, main.is-9.sticky.scroll-with-footer::before, main.is-9.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9.footer-links, #_footer .footer-topper .is-9.social, .column.is-9-tablet, main article.is-9-tablet, main .is-9-tablet.side-toc, main.is-9-tablet.sticky.scroll-with-footer::before, main.is-9-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9-tablet.footer-links, #_footer .footer-topper .is-9-tablet.social { + .column.is-9, #_footer .footer-topper .is-9.social, #_footer .footer-topper .is-9.footer-links, main.is-9.sticky.scroll-with-footer::before, main.is-9.sticky.scroll-with-footer::after, main .is-9.side-toc, main article.is-9, .column.is-9-tablet, #_footer .footer-topper .is-9-tablet.social, #_footer .footer-topper .is-9-tablet.footer-links, main.is-9-tablet.sticky.scroll-with-footer::before, main.is-9-tablet.sticky.scroll-with-footer::after, main .is-9-tablet.side-toc, main article.is-9-tablet { flex: none; width: 75%; } - .column.is-offset-9, main article.is-offset-9, main .is-offset-9.side-toc, main.is-offset-9.sticky.scroll-with-footer::before, main.is-offset-9.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9.footer-links, #_footer .footer-topper .is-offset-9.social, .column.is-offset-9-tablet, main article.is-offset-9-tablet, main .is-offset-9-tablet.side-toc, main.is-offset-9-tablet.sticky.scroll-with-footer::before, main.is-offset-9-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9-tablet.footer-links, #_footer .footer-topper .is-offset-9-tablet.social { + .column.is-offset-9, #_footer .footer-topper .is-offset-9.social, #_footer .footer-topper .is-offset-9.footer-links, main.is-offset-9.sticky.scroll-with-footer::before, main.is-offset-9.sticky.scroll-with-footer::after, main .is-offset-9.side-toc, main article.is-offset-9, .column.is-offset-9-tablet, #_footer .footer-topper .is-offset-9-tablet.social, #_footer .footer-topper .is-offset-9-tablet.footer-links, main.is-offset-9-tablet.sticky.scroll-with-footer::before, main.is-offset-9-tablet.sticky.scroll-with-footer::after, main .is-offset-9-tablet.side-toc, main article.is-offset-9-tablet { margin-left: 75%; } - .column.is-10, body.normal article.column, body.normal main article, main body.normal article, body.normal #_footer .footer-topper article.social, #_footer .footer-topper body.normal article.social, main article.is-10, main .is-10.side-toc, main.is-10.sticky.scroll-with-footer::before, #_footer .footer-topper main.sticky.scroll-with-footer.footer-links::before, main.is-10.sticky.scroll-with-footer::after, #_footer .footer-topper main.sticky.scroll-with-footer.footer-links::after, #_footer .footer-topper .footer-links, #_footer .footer-topper .is-10.social, .column.is-10-tablet, main article.is-10-tablet, main .is-10-tablet.side-toc, main.is-10-tablet.sticky.scroll-with-footer::before, main.is-10-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-10-tablet.footer-links, #_footer .footer-topper .is-10-tablet.social { + .column.is-10, #_footer .footer-topper .is-10.social, #_footer .footer-topper .footer-links, main.is-10.sticky.scroll-with-footer::before, #_footer .footer-topper main.sticky.scroll-with-footer.footer-links::before, main.is-10.sticky.scroll-with-footer::after, #_footer .footer-topper main.sticky.scroll-with-footer.footer-links::after, main .is-10.side-toc, main article.is-10, body.normal article.column, body.normal #_footer .footer-topper article.social, #_footer .footer-topper body.normal article.social, body.normal main article, main body.normal article, .column.is-10-tablet, #_footer .footer-topper .is-10-tablet.social, main.is-10-tablet.sticky.scroll-with-footer::before, main.is-10-tablet.sticky.scroll-with-footer::after, main .is-10-tablet.side-toc, main article.is-10-tablet { flex: none; width: 83.33333%; } - .column.is-offset-10, main article.is-offset-10, main .is-offset-10.side-toc, main.is-offset-10.sticky.scroll-with-footer::before, main.is-offset-10.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10.footer-links, #_footer .footer-topper .is-offset-10.social, .column.is-offset-10-tablet, main article.is-offset-10-tablet, main .is-offset-10-tablet.side-toc, main.is-offset-10-tablet.sticky.scroll-with-footer::before, main.is-offset-10-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10-tablet.footer-links, #_footer .footer-topper .is-offset-10-tablet.social { + .column.is-offset-10, #_footer .footer-topper .is-offset-10.social, #_footer .footer-topper .is-offset-10.footer-links, main.is-offset-10.sticky.scroll-with-footer::before, main.is-offset-10.sticky.scroll-with-footer::after, main .is-offset-10.side-toc, main article.is-offset-10, .column.is-offset-10-tablet, #_footer .footer-topper .is-offset-10-tablet.social, #_footer .footer-topper .is-offset-10-tablet.footer-links, main.is-offset-10-tablet.sticky.scroll-with-footer::before, main.is-offset-10-tablet.sticky.scroll-with-footer::after, main .is-offset-10-tablet.side-toc, main article.is-offset-10-tablet { margin-left: 83.33333%; } - .column.is-11, main article.is-11, main .is-11.side-toc, main.is-11.sticky.scroll-with-footer::before, main.is-11.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11.footer-links, #_footer .footer-topper .is-11.social, .column.is-11-tablet, main article.is-11-tablet, main .is-11-tablet.side-toc, main.is-11-tablet.sticky.scroll-with-footer::before, main.is-11-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11-tablet.footer-links, #_footer .footer-topper .is-11-tablet.social { + .column.is-11, #_footer .footer-topper .is-11.social, #_footer .footer-topper .is-11.footer-links, main.is-11.sticky.scroll-with-footer::before, main.is-11.sticky.scroll-with-footer::after, main .is-11.side-toc, main article.is-11, .column.is-11-tablet, #_footer .footer-topper .is-11-tablet.social, #_footer .footer-topper .is-11-tablet.footer-links, main.is-11-tablet.sticky.scroll-with-footer::before, main.is-11-tablet.sticky.scroll-with-footer::after, main .is-11-tablet.side-toc, main article.is-11-tablet { flex: none; width: 91.66667%; } - .column.is-offset-11, main article.is-offset-11, main .is-offset-11.side-toc, main.is-offset-11.sticky.scroll-with-footer::before, main.is-offset-11.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11.footer-links, #_footer .footer-topper .is-offset-11.social, .column.is-offset-11-tablet, main article.is-offset-11-tablet, main .is-offset-11-tablet.side-toc, main.is-offset-11-tablet.sticky.scroll-with-footer::before, main.is-offset-11-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11-tablet.footer-links, #_footer .footer-topper .is-offset-11-tablet.social { + .column.is-offset-11, #_footer .footer-topper .is-offset-11.social, #_footer .footer-topper .is-offset-11.footer-links, main.is-offset-11.sticky.scroll-with-footer::before, main.is-offset-11.sticky.scroll-with-footer::after, main .is-offset-11.side-toc, main article.is-offset-11, .column.is-offset-11-tablet, #_footer .footer-topper .is-offset-11-tablet.social, #_footer .footer-topper .is-offset-11-tablet.footer-links, main.is-offset-11-tablet.sticky.scroll-with-footer::before, main.is-offset-11-tablet.sticky.scroll-with-footer::after, main .is-offset-11-tablet.side-toc, main article.is-offset-11-tablet { margin-left: 91.66667%; } - .column.is-12, main article.is-12, main .is-12.side-toc, main.is-12.sticky.scroll-with-footer::before, main.is-12.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12.footer-links, #_footer .footer-topper .is-12.social, .column.is-12-tablet, main article.is-12-tablet, main .is-12-tablet.side-toc, main.is-12-tablet.sticky.scroll-with-footer::before, main.is-12-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12-tablet.footer-links, #_footer .footer-topper .is-12-tablet.social { + .column.is-12, #_footer .footer-topper .is-12.social, #_footer .footer-topper .is-12.footer-links, main.is-12.sticky.scroll-with-footer::before, main.is-12.sticky.scroll-with-footer::after, main .is-12.side-toc, main article.is-12, .column.is-12-tablet, #_footer .footer-topper .is-12-tablet.social, #_footer .footer-topper .is-12-tablet.footer-links, main.is-12-tablet.sticky.scroll-with-footer::before, main.is-12-tablet.sticky.scroll-with-footer::after, main .is-12-tablet.side-toc, main article.is-12-tablet { flex: none; width: 100%; } - .column.is-offset-12, main article.is-offset-12, main .is-offset-12.side-toc, main.is-offset-12.sticky.scroll-with-footer::before, main.is-offset-12.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12.footer-links, #_footer .footer-topper .is-offset-12.social, .column.is-offset-12-tablet, main article.is-offset-12-tablet, main .is-offset-12-tablet.side-toc, main.is-offset-12-tablet.sticky.scroll-with-footer::before, main.is-offset-12-tablet.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12-tablet.footer-links, #_footer .footer-topper .is-offset-12-tablet.social { + .column.is-offset-12, #_footer .footer-topper .is-offset-12.social, #_footer .footer-topper .is-offset-12.footer-links, main.is-offset-12.sticky.scroll-with-footer::before, main.is-offset-12.sticky.scroll-with-footer::after, main .is-offset-12.side-toc, main article.is-offset-12, .column.is-offset-12-tablet, #_footer .footer-topper .is-offset-12-tablet.social, #_footer .footer-topper .is-offset-12-tablet.footer-links, main.is-offset-12-tablet.sticky.scroll-with-footer::before, main.is-offset-12-tablet.sticky.scroll-with-footer::after, main .is-offset-12-tablet.side-toc, main article.is-offset-12-tablet { margin-left: 100%; } } @media screen and (max-width: 1023px) { - .column.is-narrow-touch, main article.is-narrow-touch, main .is-narrow-touch.side-toc, main.is-narrow-touch.sticky.scroll-with-footer::before, main.is-narrow-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow-touch.footer-links, #_footer .footer-topper .is-narrow-touch.social { + .column.is-narrow-touch, #_footer .footer-topper .is-narrow-touch.social, #_footer .footer-topper .is-narrow-touch.footer-links, main.is-narrow-touch.sticky.scroll-with-footer::before, main.is-narrow-touch.sticky.scroll-with-footer::after, main .is-narrow-touch.side-toc, main article.is-narrow-touch { flex: none; width: unset; } - .column.is-full-touch, main article.is-full-touch, main .is-full-touch.side-toc, main.is-full-touch.sticky.scroll-with-footer::before, main.is-full-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full-touch.footer-links, #_footer .footer-topper .is-full-touch.social { + .column.is-full-touch, #_footer .footer-topper .is-full-touch.social, #_footer .footer-topper .is-full-touch.footer-links, main.is-full-touch.sticky.scroll-with-footer::before, main.is-full-touch.sticky.scroll-with-footer::after, main .is-full-touch.side-toc, main article.is-full-touch { flex: none; width: 100%; } - .column.is-three-quarters-touch, main article.is-three-quarters-touch, main .is-three-quarters-touch.side-toc, main.is-three-quarters-touch.sticky.scroll-with-footer::before, main.is-three-quarters-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters-touch.footer-links, #_footer .footer-topper .is-three-quarters-touch.social { + .column.is-three-quarters-touch, #_footer .footer-topper .is-three-quarters-touch.social, #_footer .footer-topper .is-three-quarters-touch.footer-links, main.is-three-quarters-touch.sticky.scroll-with-footer::before, main.is-three-quarters-touch.sticky.scroll-with-footer::after, main .is-three-quarters-touch.side-toc, main article.is-three-quarters-touch { flex: none; width: 75%; } - .column.is-two-thirds-touch, main article.is-two-thirds-touch, main .is-two-thirds-touch.side-toc, main.is-two-thirds-touch.sticky.scroll-with-footer::before, main.is-two-thirds-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds-touch.footer-links, #_footer .footer-topper .is-two-thirds-touch.social { + .column.is-two-thirds-touch, #_footer .footer-topper .is-two-thirds-touch.social, #_footer .footer-topper .is-two-thirds-touch.footer-links, main.is-two-thirds-touch.sticky.scroll-with-footer::before, main.is-two-thirds-touch.sticky.scroll-with-footer::after, main .is-two-thirds-touch.side-toc, main article.is-two-thirds-touch { flex: none; width: 66.6666%; } - .column.is-half-touch, main article.is-half-touch, main .is-half-touch.side-toc, main.is-half-touch.sticky.scroll-with-footer::before, main.is-half-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half-touch.footer-links, #_footer .footer-topper .is-half-touch.social { + .column.is-half-touch, #_footer .footer-topper .is-half-touch.social, #_footer .footer-topper .is-half-touch.footer-links, main.is-half-touch.sticky.scroll-with-footer::before, main.is-half-touch.sticky.scroll-with-footer::after, main .is-half-touch.side-toc, main article.is-half-touch { flex: none; width: 50%; } - .column.is-one-third-touch, main article.is-one-third-touch, main .is-one-third-touch.side-toc, main.is-one-third-touch.sticky.scroll-with-footer::before, main.is-one-third-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third-touch.footer-links, #_footer .footer-topper .is-one-third-touch.social { + .column.is-one-third-touch, #_footer .footer-topper .is-one-third-touch.social, #_footer .footer-topper .is-one-third-touch.footer-links, main.is-one-third-touch.sticky.scroll-with-footer::before, main.is-one-third-touch.sticky.scroll-with-footer::after, main .is-one-third-touch.side-toc, main article.is-one-third-touch { flex: none; width: 33.3333%; } - .column.is-one-quarter-touch, main article.is-one-quarter-touch, main .is-one-quarter-touch.side-toc, main.is-one-quarter-touch.sticky.scroll-with-footer::before, main.is-one-quarter-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter-touch.footer-links, #_footer .footer-topper .is-one-quarter-touch.social { + .column.is-one-quarter-touch, #_footer .footer-topper .is-one-quarter-touch.social, #_footer .footer-topper .is-one-quarter-touch.footer-links, main.is-one-quarter-touch.sticky.scroll-with-footer::before, main.is-one-quarter-touch.sticky.scroll-with-footer::after, main .is-one-quarter-touch.side-toc, main article.is-one-quarter-touch { flex: none; width: 25%; } - .column.is-one-fifth-touch, main article.is-one-fifth-touch, main .is-one-fifth-touch.side-toc, main.is-one-fifth-touch.sticky.scroll-with-footer::before, main.is-one-fifth-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth-touch.footer-links, #_footer .footer-topper .is-one-fifth-touch.social { + .column.is-one-fifth-touch, #_footer .footer-topper .is-one-fifth-touch.social, #_footer .footer-topper .is-one-fifth-touch.footer-links, main.is-one-fifth-touch.sticky.scroll-with-footer::before, main.is-one-fifth-touch.sticky.scroll-with-footer::after, main .is-one-fifth-touch.side-toc, main article.is-one-fifth-touch { flex: none; width: 20%; } - .column.is-two-fifths-touch, main article.is-two-fifths-touch, main .is-two-fifths-touch.side-toc, main.is-two-fifths-touch.sticky.scroll-with-footer::before, main.is-two-fifths-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths-touch.footer-links, #_footer .footer-topper .is-two-fifths-touch.social { + .column.is-two-fifths-touch, #_footer .footer-topper .is-two-fifths-touch.social, #_footer .footer-topper .is-two-fifths-touch.footer-links, main.is-two-fifths-touch.sticky.scroll-with-footer::before, main.is-two-fifths-touch.sticky.scroll-with-footer::after, main .is-two-fifths-touch.side-toc, main article.is-two-fifths-touch { flex: none; width: 40%; } - .column.is-three-fifths-touch, main article.is-three-fifths-touch, main .is-three-fifths-touch.side-toc, main.is-three-fifths-touch.sticky.scroll-with-footer::before, main.is-three-fifths-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths-touch.footer-links, #_footer .footer-topper .is-three-fifths-touch.social { + .column.is-three-fifths-touch, #_footer .footer-topper .is-three-fifths-touch.social, #_footer .footer-topper .is-three-fifths-touch.footer-links, main.is-three-fifths-touch.sticky.scroll-with-footer::before, main.is-three-fifths-touch.sticky.scroll-with-footer::after, main .is-three-fifths-touch.side-toc, main article.is-three-fifths-touch { flex: none; width: 60%; } - .column.is-four-fifths-touch, main article.is-four-fifths-touch, main .is-four-fifths-touch.side-toc, main.is-four-fifths-touch.sticky.scroll-with-footer::before, main.is-four-fifths-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths-touch.footer-links, #_footer .footer-topper .is-four-fifths-touch.social { + .column.is-four-fifths-touch, #_footer .footer-topper .is-four-fifths-touch.social, #_footer .footer-topper .is-four-fifths-touch.footer-links, main.is-four-fifths-touch.sticky.scroll-with-footer::before, main.is-four-fifths-touch.sticky.scroll-with-footer::after, main .is-four-fifths-touch.side-toc, main article.is-four-fifths-touch { flex: none; width: 80%; } - .column.is-offset-three-quarters-touch, main article.is-offset-three-quarters-touch, main .is-offset-three-quarters-touch.side-toc, main.is-offset-three-quarters-touch.sticky.scroll-with-footer::before, main.is-offset-three-quarters-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters-touch.footer-links, #_footer .footer-topper .is-offset-three-quarters-touch.social { + .column.is-offset-three-quarters-touch, #_footer .footer-topper .is-offset-three-quarters-touch.social, #_footer .footer-topper .is-offset-three-quarters-touch.footer-links, main.is-offset-three-quarters-touch.sticky.scroll-with-footer::before, main.is-offset-three-quarters-touch.sticky.scroll-with-footer::after, main .is-offset-three-quarters-touch.side-toc, main article.is-offset-three-quarters-touch { margin-left: 75%; } - .column.is-offset-two-thirds-touch, main article.is-offset-two-thirds-touch, main .is-offset-two-thirds-touch.side-toc, main.is-offset-two-thirds-touch.sticky.scroll-with-footer::before, main.is-offset-two-thirds-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds-touch.footer-links, #_footer .footer-topper .is-offset-two-thirds-touch.social { + .column.is-offset-two-thirds-touch, #_footer .footer-topper .is-offset-two-thirds-touch.social, #_footer .footer-topper .is-offset-two-thirds-touch.footer-links, main.is-offset-two-thirds-touch.sticky.scroll-with-footer::before, main.is-offset-two-thirds-touch.sticky.scroll-with-footer::after, main .is-offset-two-thirds-touch.side-toc, main article.is-offset-two-thirds-touch { margin-left: 66.6666%; } - .column.is-offset-half-touch, main article.is-offset-half-touch, main .is-offset-half-touch.side-toc, main.is-offset-half-touch.sticky.scroll-with-footer::before, main.is-offset-half-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half-touch.footer-links, #_footer .footer-topper .is-offset-half-touch.social { + .column.is-offset-half-touch, #_footer .footer-topper .is-offset-half-touch.social, #_footer .footer-topper .is-offset-half-touch.footer-links, main.is-offset-half-touch.sticky.scroll-with-footer::before, main.is-offset-half-touch.sticky.scroll-with-footer::after, main .is-offset-half-touch.side-toc, main article.is-offset-half-touch { margin-left: 50%; } - .column.is-offset-one-third-touch, main article.is-offset-one-third-touch, main .is-offset-one-third-touch.side-toc, main.is-offset-one-third-touch.sticky.scroll-with-footer::before, main.is-offset-one-third-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third-touch.footer-links, #_footer .footer-topper .is-offset-one-third-touch.social { + .column.is-offset-one-third-touch, #_footer .footer-topper .is-offset-one-third-touch.social, #_footer .footer-topper .is-offset-one-third-touch.footer-links, main.is-offset-one-third-touch.sticky.scroll-with-footer::before, main.is-offset-one-third-touch.sticky.scroll-with-footer::after, main .is-offset-one-third-touch.side-toc, main article.is-offset-one-third-touch { margin-left: 33.3333%; } - .column.is-offset-one-quarter-touch, main article.is-offset-one-quarter-touch, main .is-offset-one-quarter-touch.side-toc, main.is-offset-one-quarter-touch.sticky.scroll-with-footer::before, main.is-offset-one-quarter-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter-touch.footer-links, #_footer .footer-topper .is-offset-one-quarter-touch.social { + .column.is-offset-one-quarter-touch, #_footer .footer-topper .is-offset-one-quarter-touch.social, #_footer .footer-topper .is-offset-one-quarter-touch.footer-links, main.is-offset-one-quarter-touch.sticky.scroll-with-footer::before, main.is-offset-one-quarter-touch.sticky.scroll-with-footer::after, main .is-offset-one-quarter-touch.side-toc, main article.is-offset-one-quarter-touch { margin-left: 25%; } - .column.is-offset-one-fifth-touch, main article.is-offset-one-fifth-touch, main .is-offset-one-fifth-touch.side-toc, main.is-offset-one-fifth-touch.sticky.scroll-with-footer::before, main.is-offset-one-fifth-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth-touch.footer-links, #_footer .footer-topper .is-offset-one-fifth-touch.social { + .column.is-offset-one-fifth-touch, #_footer .footer-topper .is-offset-one-fifth-touch.social, #_footer .footer-topper .is-offset-one-fifth-touch.footer-links, main.is-offset-one-fifth-touch.sticky.scroll-with-footer::before, main.is-offset-one-fifth-touch.sticky.scroll-with-footer::after, main .is-offset-one-fifth-touch.side-toc, main article.is-offset-one-fifth-touch { margin-left: 20%; } - .column.is-offset-two-fifths-touch, main article.is-offset-two-fifths-touch, main .is-offset-two-fifths-touch.side-toc, main.is-offset-two-fifths-touch.sticky.scroll-with-footer::before, main.is-offset-two-fifths-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths-touch.footer-links, #_footer .footer-topper .is-offset-two-fifths-touch.social { + .column.is-offset-two-fifths-touch, #_footer .footer-topper .is-offset-two-fifths-touch.social, #_footer .footer-topper .is-offset-two-fifths-touch.footer-links, main.is-offset-two-fifths-touch.sticky.scroll-with-footer::before, main.is-offset-two-fifths-touch.sticky.scroll-with-footer::after, main .is-offset-two-fifths-touch.side-toc, main article.is-offset-two-fifths-touch { margin-left: 40%; } - .column.is-offset-three-fifths-touch, main article.is-offset-three-fifths-touch, main .is-offset-three-fifths-touch.side-toc, main.is-offset-three-fifths-touch.sticky.scroll-with-footer::before, main.is-offset-three-fifths-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths-touch.footer-links, #_footer .footer-topper .is-offset-three-fifths-touch.social { + .column.is-offset-three-fifths-touch, #_footer .footer-topper .is-offset-three-fifths-touch.social, #_footer .footer-topper .is-offset-three-fifths-touch.footer-links, main.is-offset-three-fifths-touch.sticky.scroll-with-footer::before, main.is-offset-three-fifths-touch.sticky.scroll-with-footer::after, main .is-offset-three-fifths-touch.side-toc, main article.is-offset-three-fifths-touch { margin-left: 60%; } - .column.is-offset-four-fifths-touch, main article.is-offset-four-fifths-touch, main .is-offset-four-fifths-touch.side-toc, main.is-offset-four-fifths-touch.sticky.scroll-with-footer::before, main.is-offset-four-fifths-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths-touch.footer-links, #_footer .footer-topper .is-offset-four-fifths-touch.social { + .column.is-offset-four-fifths-touch, #_footer .footer-topper .is-offset-four-fifths-touch.social, #_footer .footer-topper .is-offset-four-fifths-touch.footer-links, main.is-offset-four-fifths-touch.sticky.scroll-with-footer::before, main.is-offset-four-fifths-touch.sticky.scroll-with-footer::after, main .is-offset-four-fifths-touch.side-toc, main article.is-offset-four-fifths-touch { margin-left: 80%; } - .column.is-0-touch, main article.is-0-touch, main .is-0-touch.side-toc, main.is-0-touch.sticky.scroll-with-footer::before, main.is-0-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0-touch.footer-links, #_footer .footer-topper .is-0-touch.social { + .column.is-0-touch, #_footer .footer-topper .is-0-touch.social, #_footer .footer-topper .is-0-touch.footer-links, main.is-0-touch.sticky.scroll-with-footer::before, main.is-0-touch.sticky.scroll-with-footer::after, main .is-0-touch.side-toc, main article.is-0-touch { flex: none; width: 0%; } - .column.is-offset-0-touch, main article.is-offset-0-touch, main .is-offset-0-touch.side-toc, main.is-offset-0-touch.sticky.scroll-with-footer::before, main.is-offset-0-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0-touch.footer-links, #_footer .footer-topper .is-offset-0-touch.social { + .column.is-offset-0-touch, #_footer .footer-topper .is-offset-0-touch.social, #_footer .footer-topper .is-offset-0-touch.footer-links, main.is-offset-0-touch.sticky.scroll-with-footer::before, main.is-offset-0-touch.sticky.scroll-with-footer::after, main .is-offset-0-touch.side-toc, main article.is-offset-0-touch { margin-left: 0%; } - .column.is-1-touch, main article.is-1-touch, main .is-1-touch.side-toc, main.is-1-touch.sticky.scroll-with-footer::before, main.is-1-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1-touch.footer-links, #_footer .footer-topper .is-1-touch.social { + .column.is-1-touch, #_footer .footer-topper .is-1-touch.social, #_footer .footer-topper .is-1-touch.footer-links, main.is-1-touch.sticky.scroll-with-footer::before, main.is-1-touch.sticky.scroll-with-footer::after, main .is-1-touch.side-toc, main article.is-1-touch { flex: none; width: 8.33333%; } - .column.is-offset-1-touch, main article.is-offset-1-touch, main .is-offset-1-touch.side-toc, main.is-offset-1-touch.sticky.scroll-with-footer::before, main.is-offset-1-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1-touch.footer-links, #_footer .footer-topper .is-offset-1-touch.social { + .column.is-offset-1-touch, #_footer .footer-topper .is-offset-1-touch.social, #_footer .footer-topper .is-offset-1-touch.footer-links, main.is-offset-1-touch.sticky.scroll-with-footer::before, main.is-offset-1-touch.sticky.scroll-with-footer::after, main .is-offset-1-touch.side-toc, main article.is-offset-1-touch { margin-left: 8.33333%; } - .column.is-2-touch, main article.is-2-touch, main .is-2-touch.side-toc, main.is-2-touch.sticky.scroll-with-footer::before, main.is-2-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2-touch.footer-links, #_footer .footer-topper .is-2-touch.social { + .column.is-2-touch, #_footer .footer-topper .is-2-touch.social, #_footer .footer-topper .is-2-touch.footer-links, main.is-2-touch.sticky.scroll-with-footer::before, main.is-2-touch.sticky.scroll-with-footer::after, main .is-2-touch.side-toc, main article.is-2-touch { flex: none; width: 16.66667%; } - .column.is-offset-2-touch, main article.is-offset-2-touch, main .is-offset-2-touch.side-toc, main.is-offset-2-touch.sticky.scroll-with-footer::before, main.is-offset-2-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2-touch.footer-links, #_footer .footer-topper .is-offset-2-touch.social { + .column.is-offset-2-touch, #_footer .footer-topper .is-offset-2-touch.social, #_footer .footer-topper .is-offset-2-touch.footer-links, main.is-offset-2-touch.sticky.scroll-with-footer::before, main.is-offset-2-touch.sticky.scroll-with-footer::after, main .is-offset-2-touch.side-toc, main article.is-offset-2-touch { margin-left: 16.66667%; } - .column.is-3-touch, main article.is-3-touch, main .is-3-touch.side-toc, main.is-3-touch.sticky.scroll-with-footer::before, main.is-3-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3-touch.footer-links, #_footer .footer-topper .is-3-touch.social { + .column.is-3-touch, #_footer .footer-topper .is-3-touch.social, #_footer .footer-topper .is-3-touch.footer-links, main.is-3-touch.sticky.scroll-with-footer::before, main.is-3-touch.sticky.scroll-with-footer::after, main .is-3-touch.side-toc, main article.is-3-touch { flex: none; width: 25%; } - .column.is-offset-3-touch, main article.is-offset-3-touch, main .is-offset-3-touch.side-toc, main.is-offset-3-touch.sticky.scroll-with-footer::before, main.is-offset-3-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3-touch.footer-links, #_footer .footer-topper .is-offset-3-touch.social { + .column.is-offset-3-touch, #_footer .footer-topper .is-offset-3-touch.social, #_footer .footer-topper .is-offset-3-touch.footer-links, main.is-offset-3-touch.sticky.scroll-with-footer::before, main.is-offset-3-touch.sticky.scroll-with-footer::after, main .is-offset-3-touch.side-toc, main article.is-offset-3-touch { margin-left: 25%; } - .column.is-4-touch, main article.is-4-touch, main .is-4-touch.side-toc, main.is-4-touch.sticky.scroll-with-footer::before, main.is-4-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4-touch.footer-links, #_footer .footer-topper .is-4-touch.social { + .column.is-4-touch, #_footer .footer-topper .is-4-touch.social, #_footer .footer-topper .is-4-touch.footer-links, main.is-4-touch.sticky.scroll-with-footer::before, main.is-4-touch.sticky.scroll-with-footer::after, main .is-4-touch.side-toc, main article.is-4-touch { flex: none; width: 33.33333%; } - .column.is-offset-4-touch, main article.is-offset-4-touch, main .is-offset-4-touch.side-toc, main.is-offset-4-touch.sticky.scroll-with-footer::before, main.is-offset-4-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4-touch.footer-links, #_footer .footer-topper .is-offset-4-touch.social { + .column.is-offset-4-touch, #_footer .footer-topper .is-offset-4-touch.social, #_footer .footer-topper .is-offset-4-touch.footer-links, main.is-offset-4-touch.sticky.scroll-with-footer::before, main.is-offset-4-touch.sticky.scroll-with-footer::after, main .is-offset-4-touch.side-toc, main article.is-offset-4-touch { margin-left: 33.33333%; } - .column.is-5-touch, main article.is-5-touch, main .is-5-touch.side-toc, main.is-5-touch.sticky.scroll-with-footer::before, main.is-5-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5-touch.footer-links, #_footer .footer-topper .is-5-touch.social { + .column.is-5-touch, #_footer .footer-topper .is-5-touch.social, #_footer .footer-topper .is-5-touch.footer-links, main.is-5-touch.sticky.scroll-with-footer::before, main.is-5-touch.sticky.scroll-with-footer::after, main .is-5-touch.side-toc, main article.is-5-touch { flex: none; width: 41.66667%; } - .column.is-offset-5-touch, main article.is-offset-5-touch, main .is-offset-5-touch.side-toc, main.is-offset-5-touch.sticky.scroll-with-footer::before, main.is-offset-5-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5-touch.footer-links, #_footer .footer-topper .is-offset-5-touch.social { + .column.is-offset-5-touch, #_footer .footer-topper .is-offset-5-touch.social, #_footer .footer-topper .is-offset-5-touch.footer-links, main.is-offset-5-touch.sticky.scroll-with-footer::before, main.is-offset-5-touch.sticky.scroll-with-footer::after, main .is-offset-5-touch.side-toc, main article.is-offset-5-touch { margin-left: 41.66667%; } - .column.is-6-touch, main article.is-6-touch, main .is-6-touch.side-toc, main.is-6-touch.sticky.scroll-with-footer::before, main.is-6-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6-touch.footer-links, #_footer .footer-topper .is-6-touch.social { + .column.is-6-touch, #_footer .footer-topper .is-6-touch.social, #_footer .footer-topper .is-6-touch.footer-links, main.is-6-touch.sticky.scroll-with-footer::before, main.is-6-touch.sticky.scroll-with-footer::after, main .is-6-touch.side-toc, main article.is-6-touch { flex: none; width: 50%; } - .column.is-offset-6-touch, main article.is-offset-6-touch, main .is-offset-6-touch.side-toc, main.is-offset-6-touch.sticky.scroll-with-footer::before, main.is-offset-6-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6-touch.footer-links, #_footer .footer-topper .is-offset-6-touch.social { + .column.is-offset-6-touch, #_footer .footer-topper .is-offset-6-touch.social, #_footer .footer-topper .is-offset-6-touch.footer-links, main.is-offset-6-touch.sticky.scroll-with-footer::before, main.is-offset-6-touch.sticky.scroll-with-footer::after, main .is-offset-6-touch.side-toc, main article.is-offset-6-touch { margin-left: 50%; } - .column.is-7-touch, main article.is-7-touch, main .is-7-touch.side-toc, main.is-7-touch.sticky.scroll-with-footer::before, main.is-7-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7-touch.footer-links, #_footer .footer-topper .is-7-touch.social { + .column.is-7-touch, #_footer .footer-topper .is-7-touch.social, #_footer .footer-topper .is-7-touch.footer-links, main.is-7-touch.sticky.scroll-with-footer::before, main.is-7-touch.sticky.scroll-with-footer::after, main .is-7-touch.side-toc, main article.is-7-touch { flex: none; width: 58.33333%; } - .column.is-offset-7-touch, main article.is-offset-7-touch, main .is-offset-7-touch.side-toc, main.is-offset-7-touch.sticky.scroll-with-footer::before, main.is-offset-7-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7-touch.footer-links, #_footer .footer-topper .is-offset-7-touch.social { + .column.is-offset-7-touch, #_footer .footer-topper .is-offset-7-touch.social, #_footer .footer-topper .is-offset-7-touch.footer-links, main.is-offset-7-touch.sticky.scroll-with-footer::before, main.is-offset-7-touch.sticky.scroll-with-footer::after, main .is-offset-7-touch.side-toc, main article.is-offset-7-touch { margin-left: 58.33333%; } - .column.is-8-touch, main article.is-8-touch, main .is-8-touch.side-toc, main.is-8-touch.sticky.scroll-with-footer::before, main.is-8-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8-touch.footer-links, #_footer .footer-topper .is-8-touch.social { + .column.is-8-touch, #_footer .footer-topper .is-8-touch.social, #_footer .footer-topper .is-8-touch.footer-links, main.is-8-touch.sticky.scroll-with-footer::before, main.is-8-touch.sticky.scroll-with-footer::after, main .is-8-touch.side-toc, main article.is-8-touch { flex: none; width: 66.66667%; } - .column.is-offset-8-touch, main article.is-offset-8-touch, main .is-offset-8-touch.side-toc, main.is-offset-8-touch.sticky.scroll-with-footer::before, main.is-offset-8-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8-touch.footer-links, #_footer .footer-topper .is-offset-8-touch.social { + .column.is-offset-8-touch, #_footer .footer-topper .is-offset-8-touch.social, #_footer .footer-topper .is-offset-8-touch.footer-links, main.is-offset-8-touch.sticky.scroll-with-footer::before, main.is-offset-8-touch.sticky.scroll-with-footer::after, main .is-offset-8-touch.side-toc, main article.is-offset-8-touch { margin-left: 66.66667%; } - .column.is-9-touch, main article.is-9-touch, main .is-9-touch.side-toc, main.is-9-touch.sticky.scroll-with-footer::before, main.is-9-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9-touch.footer-links, #_footer .footer-topper .is-9-touch.social { + .column.is-9-touch, #_footer .footer-topper .is-9-touch.social, #_footer .footer-topper .is-9-touch.footer-links, main.is-9-touch.sticky.scroll-with-footer::before, main.is-9-touch.sticky.scroll-with-footer::after, main .is-9-touch.side-toc, main article.is-9-touch { flex: none; width: 75%; } - .column.is-offset-9-touch, main article.is-offset-9-touch, main .is-offset-9-touch.side-toc, main.is-offset-9-touch.sticky.scroll-with-footer::before, main.is-offset-9-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9-touch.footer-links, #_footer .footer-topper .is-offset-9-touch.social { + .column.is-offset-9-touch, #_footer .footer-topper .is-offset-9-touch.social, #_footer .footer-topper .is-offset-9-touch.footer-links, main.is-offset-9-touch.sticky.scroll-with-footer::before, main.is-offset-9-touch.sticky.scroll-with-footer::after, main .is-offset-9-touch.side-toc, main article.is-offset-9-touch { margin-left: 75%; } - .column.is-10-touch, main article.is-10-touch, main .is-10-touch.side-toc, main.is-10-touch.sticky.scroll-with-footer::before, main.is-10-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-10-touch.footer-links, #_footer .footer-topper .is-10-touch.social { + .column.is-10-touch, #_footer .footer-topper .is-10-touch.social, #_footer .footer-topper .is-10-touch.footer-links, main.is-10-touch.sticky.scroll-with-footer::before, main.is-10-touch.sticky.scroll-with-footer::after, main .is-10-touch.side-toc, main article.is-10-touch { flex: none; width: 83.33333%; } - .column.is-offset-10-touch, main article.is-offset-10-touch, main .is-offset-10-touch.side-toc, main.is-offset-10-touch.sticky.scroll-with-footer::before, main.is-offset-10-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10-touch.footer-links, #_footer .footer-topper .is-offset-10-touch.social { + .column.is-offset-10-touch, #_footer .footer-topper .is-offset-10-touch.social, #_footer .footer-topper .is-offset-10-touch.footer-links, main.is-offset-10-touch.sticky.scroll-with-footer::before, main.is-offset-10-touch.sticky.scroll-with-footer::after, main .is-offset-10-touch.side-toc, main article.is-offset-10-touch { margin-left: 83.33333%; } - .column.is-11-touch, main article.is-11-touch, main .is-11-touch.side-toc, main.is-11-touch.sticky.scroll-with-footer::before, main.is-11-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11-touch.footer-links, #_footer .footer-topper .is-11-touch.social { + .column.is-11-touch, #_footer .footer-topper .is-11-touch.social, #_footer .footer-topper .is-11-touch.footer-links, main.is-11-touch.sticky.scroll-with-footer::before, main.is-11-touch.sticky.scroll-with-footer::after, main .is-11-touch.side-toc, main article.is-11-touch { flex: none; width: 91.66667%; } - .column.is-offset-11-touch, main article.is-offset-11-touch, main .is-offset-11-touch.side-toc, main.is-offset-11-touch.sticky.scroll-with-footer::before, main.is-offset-11-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11-touch.footer-links, #_footer .footer-topper .is-offset-11-touch.social { + .column.is-offset-11-touch, #_footer .footer-topper .is-offset-11-touch.social, #_footer .footer-topper .is-offset-11-touch.footer-links, main.is-offset-11-touch.sticky.scroll-with-footer::before, main.is-offset-11-touch.sticky.scroll-with-footer::after, main .is-offset-11-touch.side-toc, main article.is-offset-11-touch { margin-left: 91.66667%; } - .column.is-12-touch, main article.is-12-touch, main .is-12-touch.side-toc, main.is-12-touch.sticky.scroll-with-footer::before, main.is-12-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12-touch.footer-links, #_footer .footer-topper .is-12-touch.social { + .column.is-12-touch, #_footer .footer-topper .is-12-touch.social, #_footer .footer-topper .is-12-touch.footer-links, main.is-12-touch.sticky.scroll-with-footer::before, main.is-12-touch.sticky.scroll-with-footer::after, main .is-12-touch.side-toc, main article.is-12-touch { flex: none; width: 100%; } - .column.is-offset-12-touch, main article.is-offset-12-touch, main .is-offset-12-touch.side-toc, main.is-offset-12-touch.sticky.scroll-with-footer::before, main.is-offset-12-touch.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12-touch.footer-links, #_footer .footer-topper .is-offset-12-touch.social { + .column.is-offset-12-touch, #_footer .footer-topper .is-offset-12-touch.social, #_footer .footer-topper .is-offset-12-touch.footer-links, main.is-offset-12-touch.sticky.scroll-with-footer::before, main.is-offset-12-touch.sticky.scroll-with-footer::after, main .is-offset-12-touch.side-toc, main article.is-offset-12-touch { margin-left: 100%; } } @media screen and (min-width: 1024px) { - .column.is-narrow-desktop, main article.is-narrow-desktop, main .is-narrow-desktop.side-toc, main.is-narrow-desktop.sticky.scroll-with-footer::before, main.is-narrow-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow-desktop.footer-links, #_footer .footer-topper .is-narrow-desktop.social { + .column.is-narrow-desktop, #_footer .footer-topper .is-narrow-desktop.social, #_footer .footer-topper .is-narrow-desktop.footer-links, main.is-narrow-desktop.sticky.scroll-with-footer::before, main.is-narrow-desktop.sticky.scroll-with-footer::after, main .is-narrow-desktop.side-toc, main article.is-narrow-desktop { flex: none; width: unset; } - .column.is-full-desktop, main article.is-full-desktop, main .is-full-desktop.side-toc, main.is-full-desktop.sticky.scroll-with-footer::before, main.is-full-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full-desktop.footer-links, #_footer .footer-topper .is-full-desktop.social { + .column.is-full-desktop, #_footer .footer-topper .is-full-desktop.social, #_footer .footer-topper .is-full-desktop.footer-links, main.is-full-desktop.sticky.scroll-with-footer::before, main.is-full-desktop.sticky.scroll-with-footer::after, main .is-full-desktop.side-toc, main article.is-full-desktop { flex: none; width: 100%; } - .column.is-three-quarters-desktop, main article.is-three-quarters-desktop, main .is-three-quarters-desktop.side-toc, main.is-three-quarters-desktop.sticky.scroll-with-footer::before, main.is-three-quarters-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters-desktop.footer-links, #_footer .footer-topper .is-three-quarters-desktop.social { + .column.is-three-quarters-desktop, #_footer .footer-topper .is-three-quarters-desktop.social, #_footer .footer-topper .is-three-quarters-desktop.footer-links, main.is-three-quarters-desktop.sticky.scroll-with-footer::before, main.is-three-quarters-desktop.sticky.scroll-with-footer::after, main .is-three-quarters-desktop.side-toc, main article.is-three-quarters-desktop { flex: none; width: 75%; } - .column.is-two-thirds-desktop, main article.is-two-thirds-desktop, main .is-two-thirds-desktop.side-toc, main.is-two-thirds-desktop.sticky.scroll-with-footer::before, main.is-two-thirds-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds-desktop.footer-links, #_footer .footer-topper .is-two-thirds-desktop.social { + .column.is-two-thirds-desktop, #_footer .footer-topper .is-two-thirds-desktop.social, #_footer .footer-topper .is-two-thirds-desktop.footer-links, main.is-two-thirds-desktop.sticky.scroll-with-footer::before, main.is-two-thirds-desktop.sticky.scroll-with-footer::after, main .is-two-thirds-desktop.side-toc, main article.is-two-thirds-desktop { flex: none; width: 66.6666%; } - .column.is-half-desktop, main article.is-half-desktop, main .is-half-desktop.side-toc, main.is-half-desktop.sticky.scroll-with-footer::before, main.is-half-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half-desktop.footer-links, #_footer .footer-topper .is-half-desktop.social { + .column.is-half-desktop, #_footer .footer-topper .is-half-desktop.social, #_footer .footer-topper .is-half-desktop.footer-links, main.is-half-desktop.sticky.scroll-with-footer::before, main.is-half-desktop.sticky.scroll-with-footer::after, main .is-half-desktop.side-toc, main article.is-half-desktop { flex: none; width: 50%; } - .column.is-one-third-desktop, main article.is-one-third-desktop, main .is-one-third-desktop.side-toc, main.is-one-third-desktop.sticky.scroll-with-footer::before, main.is-one-third-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third-desktop.footer-links, #_footer .footer-topper .is-one-third-desktop.social { + .column.is-one-third-desktop, #_footer .footer-topper .is-one-third-desktop.social, #_footer .footer-topper .is-one-third-desktop.footer-links, main.is-one-third-desktop.sticky.scroll-with-footer::before, main.is-one-third-desktop.sticky.scroll-with-footer::after, main .is-one-third-desktop.side-toc, main article.is-one-third-desktop { flex: none; width: 33.3333%; } - .column.is-one-quarter-desktop, main article.is-one-quarter-desktop, main .is-one-quarter-desktop.side-toc, main.is-one-quarter-desktop.sticky.scroll-with-footer::before, main.is-one-quarter-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter-desktop.footer-links, #_footer .footer-topper .is-one-quarter-desktop.social { + .column.is-one-quarter-desktop, #_footer .footer-topper .is-one-quarter-desktop.social, #_footer .footer-topper .is-one-quarter-desktop.footer-links, main.is-one-quarter-desktop.sticky.scroll-with-footer::before, main.is-one-quarter-desktop.sticky.scroll-with-footer::after, main .is-one-quarter-desktop.side-toc, main article.is-one-quarter-desktop { flex: none; width: 25%; } - .column.is-one-fifth-desktop, main article.is-one-fifth-desktop, main .is-one-fifth-desktop.side-toc, main.is-one-fifth-desktop.sticky.scroll-with-footer::before, main.is-one-fifth-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth-desktop.footer-links, #_footer .footer-topper .is-one-fifth-desktop.social { + .column.is-one-fifth-desktop, #_footer .footer-topper .is-one-fifth-desktop.social, #_footer .footer-topper .is-one-fifth-desktop.footer-links, main.is-one-fifth-desktop.sticky.scroll-with-footer::before, main.is-one-fifth-desktop.sticky.scroll-with-footer::after, main .is-one-fifth-desktop.side-toc, main article.is-one-fifth-desktop { flex: none; width: 20%; } - .column.is-two-fifths-desktop, main article.is-two-fifths-desktop, main .is-two-fifths-desktop.side-toc, main.is-two-fifths-desktop.sticky.scroll-with-footer::before, main.is-two-fifths-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths-desktop.footer-links, #_footer .footer-topper .is-two-fifths-desktop.social { + .column.is-two-fifths-desktop, #_footer .footer-topper .is-two-fifths-desktop.social, #_footer .footer-topper .is-two-fifths-desktop.footer-links, main.is-two-fifths-desktop.sticky.scroll-with-footer::before, main.is-two-fifths-desktop.sticky.scroll-with-footer::after, main .is-two-fifths-desktop.side-toc, main article.is-two-fifths-desktop { flex: none; width: 40%; } - .column.is-three-fifths-desktop, main article.is-three-fifths-desktop, main .is-three-fifths-desktop.side-toc, main.is-three-fifths-desktop.sticky.scroll-with-footer::before, main.is-three-fifths-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths-desktop.footer-links, #_footer .footer-topper .is-three-fifths-desktop.social { + .column.is-three-fifths-desktop, #_footer .footer-topper .is-three-fifths-desktop.social, #_footer .footer-topper .is-three-fifths-desktop.footer-links, main.is-three-fifths-desktop.sticky.scroll-with-footer::before, main.is-three-fifths-desktop.sticky.scroll-with-footer::after, main .is-three-fifths-desktop.side-toc, main article.is-three-fifths-desktop { flex: none; width: 60%; } - .column.is-four-fifths-desktop, main article.is-four-fifths-desktop, main .is-four-fifths-desktop.side-toc, main.is-four-fifths-desktop.sticky.scroll-with-footer::before, main.is-four-fifths-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths-desktop.footer-links, #_footer .footer-topper .is-four-fifths-desktop.social { + .column.is-four-fifths-desktop, #_footer .footer-topper .is-four-fifths-desktop.social, #_footer .footer-topper .is-four-fifths-desktop.footer-links, main.is-four-fifths-desktop.sticky.scroll-with-footer::before, main.is-four-fifths-desktop.sticky.scroll-with-footer::after, main .is-four-fifths-desktop.side-toc, main article.is-four-fifths-desktop { flex: none; width: 80%; } - .column.is-offset-three-quarters-desktop, main article.is-offset-three-quarters-desktop, main .is-offset-three-quarters-desktop.side-toc, main.is-offset-three-quarters-desktop.sticky.scroll-with-footer::before, main.is-offset-three-quarters-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters-desktop.footer-links, #_footer .footer-topper .is-offset-three-quarters-desktop.social { + .column.is-offset-three-quarters-desktop, #_footer .footer-topper .is-offset-three-quarters-desktop.social, #_footer .footer-topper .is-offset-three-quarters-desktop.footer-links, main.is-offset-three-quarters-desktop.sticky.scroll-with-footer::before, main.is-offset-three-quarters-desktop.sticky.scroll-with-footer::after, main .is-offset-three-quarters-desktop.side-toc, main article.is-offset-three-quarters-desktop { margin-left: 75%; } - .column.is-offset-two-thirds-desktop, main article.is-offset-two-thirds-desktop, main .is-offset-two-thirds-desktop.side-toc, main.is-offset-two-thirds-desktop.sticky.scroll-with-footer::before, main.is-offset-two-thirds-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds-desktop.footer-links, #_footer .footer-topper .is-offset-two-thirds-desktop.social { + .column.is-offset-two-thirds-desktop, #_footer .footer-topper .is-offset-two-thirds-desktop.social, #_footer .footer-topper .is-offset-two-thirds-desktop.footer-links, main.is-offset-two-thirds-desktop.sticky.scroll-with-footer::before, main.is-offset-two-thirds-desktop.sticky.scroll-with-footer::after, main .is-offset-two-thirds-desktop.side-toc, main article.is-offset-two-thirds-desktop { margin-left: 66.6666%; } - .column.is-offset-half-desktop, main article.is-offset-half-desktop, main .is-offset-half-desktop.side-toc, main.is-offset-half-desktop.sticky.scroll-with-footer::before, main.is-offset-half-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half-desktop.footer-links, #_footer .footer-topper .is-offset-half-desktop.social { + .column.is-offset-half-desktop, #_footer .footer-topper .is-offset-half-desktop.social, #_footer .footer-topper .is-offset-half-desktop.footer-links, main.is-offset-half-desktop.sticky.scroll-with-footer::before, main.is-offset-half-desktop.sticky.scroll-with-footer::after, main .is-offset-half-desktop.side-toc, main article.is-offset-half-desktop { margin-left: 50%; } - .column.is-offset-one-third-desktop, main article.is-offset-one-third-desktop, main .is-offset-one-third-desktop.side-toc, main.is-offset-one-third-desktop.sticky.scroll-with-footer::before, main.is-offset-one-third-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third-desktop.footer-links, #_footer .footer-topper .is-offset-one-third-desktop.social { + .column.is-offset-one-third-desktop, #_footer .footer-topper .is-offset-one-third-desktop.social, #_footer .footer-topper .is-offset-one-third-desktop.footer-links, main.is-offset-one-third-desktop.sticky.scroll-with-footer::before, main.is-offset-one-third-desktop.sticky.scroll-with-footer::after, main .is-offset-one-third-desktop.side-toc, main article.is-offset-one-third-desktop { margin-left: 33.3333%; } - .column.is-offset-one-quarter-desktop, main article.is-offset-one-quarter-desktop, main .is-offset-one-quarter-desktop.side-toc, main.is-offset-one-quarter-desktop.sticky.scroll-with-footer::before, main.is-offset-one-quarter-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter-desktop.footer-links, #_footer .footer-topper .is-offset-one-quarter-desktop.social { + .column.is-offset-one-quarter-desktop, #_footer .footer-topper .is-offset-one-quarter-desktop.social, #_footer .footer-topper .is-offset-one-quarter-desktop.footer-links, main.is-offset-one-quarter-desktop.sticky.scroll-with-footer::before, main.is-offset-one-quarter-desktop.sticky.scroll-with-footer::after, main .is-offset-one-quarter-desktop.side-toc, main article.is-offset-one-quarter-desktop { margin-left: 25%; } - .column.is-offset-one-fifth-desktop, main article.is-offset-one-fifth-desktop, main .is-offset-one-fifth-desktop.side-toc, main.is-offset-one-fifth-desktop.sticky.scroll-with-footer::before, main.is-offset-one-fifth-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth-desktop.footer-links, #_footer .footer-topper .is-offset-one-fifth-desktop.social { + .column.is-offset-one-fifth-desktop, #_footer .footer-topper .is-offset-one-fifth-desktop.social, #_footer .footer-topper .is-offset-one-fifth-desktop.footer-links, main.is-offset-one-fifth-desktop.sticky.scroll-with-footer::before, main.is-offset-one-fifth-desktop.sticky.scroll-with-footer::after, main .is-offset-one-fifth-desktop.side-toc, main article.is-offset-one-fifth-desktop { margin-left: 20%; } - .column.is-offset-two-fifths-desktop, main article.is-offset-two-fifths-desktop, main .is-offset-two-fifths-desktop.side-toc, main.is-offset-two-fifths-desktop.sticky.scroll-with-footer::before, main.is-offset-two-fifths-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths-desktop.footer-links, #_footer .footer-topper .is-offset-two-fifths-desktop.social { + .column.is-offset-two-fifths-desktop, #_footer .footer-topper .is-offset-two-fifths-desktop.social, #_footer .footer-topper .is-offset-two-fifths-desktop.footer-links, main.is-offset-two-fifths-desktop.sticky.scroll-with-footer::before, main.is-offset-two-fifths-desktop.sticky.scroll-with-footer::after, main .is-offset-two-fifths-desktop.side-toc, main article.is-offset-two-fifths-desktop { margin-left: 40%; } - .column.is-offset-three-fifths-desktop, main article.is-offset-three-fifths-desktop, main .is-offset-three-fifths-desktop.side-toc, main.is-offset-three-fifths-desktop.sticky.scroll-with-footer::before, main.is-offset-three-fifths-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths-desktop.footer-links, #_footer .footer-topper .is-offset-three-fifths-desktop.social { + .column.is-offset-three-fifths-desktop, #_footer .footer-topper .is-offset-three-fifths-desktop.social, #_footer .footer-topper .is-offset-three-fifths-desktop.footer-links, main.is-offset-three-fifths-desktop.sticky.scroll-with-footer::before, main.is-offset-three-fifths-desktop.sticky.scroll-with-footer::after, main .is-offset-three-fifths-desktop.side-toc, main article.is-offset-three-fifths-desktop { margin-left: 60%; } - .column.is-offset-four-fifths-desktop, main article.is-offset-four-fifths-desktop, main .is-offset-four-fifths-desktop.side-toc, main.is-offset-four-fifths-desktop.sticky.scroll-with-footer::before, main.is-offset-four-fifths-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths-desktop.footer-links, #_footer .footer-topper .is-offset-four-fifths-desktop.social { + .column.is-offset-four-fifths-desktop, #_footer .footer-topper .is-offset-four-fifths-desktop.social, #_footer .footer-topper .is-offset-four-fifths-desktop.footer-links, main.is-offset-four-fifths-desktop.sticky.scroll-with-footer::before, main.is-offset-four-fifths-desktop.sticky.scroll-with-footer::after, main .is-offset-four-fifths-desktop.side-toc, main article.is-offset-four-fifths-desktop { margin-left: 80%; } - .column.is-0-desktop, main article.is-0-desktop, main .is-0-desktop.side-toc, main.is-0-desktop.sticky.scroll-with-footer::before, main.is-0-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0-desktop.footer-links, #_footer .footer-topper .is-0-desktop.social { + .column.is-0-desktop, #_footer .footer-topper .is-0-desktop.social, #_footer .footer-topper .is-0-desktop.footer-links, main.is-0-desktop.sticky.scroll-with-footer::before, main.is-0-desktop.sticky.scroll-with-footer::after, main .is-0-desktop.side-toc, main article.is-0-desktop { flex: none; width: 0%; } - .column.is-offset-0-desktop, main article.is-offset-0-desktop, main .is-offset-0-desktop.side-toc, main.is-offset-0-desktop.sticky.scroll-with-footer::before, main.is-offset-0-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0-desktop.footer-links, #_footer .footer-topper .is-offset-0-desktop.social { + .column.is-offset-0-desktop, #_footer .footer-topper .is-offset-0-desktop.social, #_footer .footer-topper .is-offset-0-desktop.footer-links, main.is-offset-0-desktop.sticky.scroll-with-footer::before, main.is-offset-0-desktop.sticky.scroll-with-footer::after, main .is-offset-0-desktop.side-toc, main article.is-offset-0-desktop { margin-left: 0%; } - .column.is-1-desktop, main article.is-1-desktop, main .is-1-desktop.side-toc, main.is-1-desktop.sticky.scroll-with-footer::before, main.is-1-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1-desktop.footer-links, #_footer .footer-topper .is-1-desktop.social { + .column.is-1-desktop, #_footer .footer-topper .is-1-desktop.social, #_footer .footer-topper .is-1-desktop.footer-links, main.is-1-desktop.sticky.scroll-with-footer::before, main.is-1-desktop.sticky.scroll-with-footer::after, main .is-1-desktop.side-toc, main article.is-1-desktop { flex: none; width: 8.33333%; } - .column.is-offset-1-desktop, main article.is-offset-1-desktop, main .is-offset-1-desktop.side-toc, main.is-offset-1-desktop.sticky.scroll-with-footer::before, main.is-offset-1-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1-desktop.footer-links, #_footer .footer-topper .is-offset-1-desktop.social { + .column.is-offset-1-desktop, #_footer .footer-topper .is-offset-1-desktop.social, #_footer .footer-topper .is-offset-1-desktop.footer-links, main.is-offset-1-desktop.sticky.scroll-with-footer::before, main.is-offset-1-desktop.sticky.scroll-with-footer::after, main .is-offset-1-desktop.side-toc, main article.is-offset-1-desktop { margin-left: 8.33333%; } - .column.is-2-desktop, main article.is-2-desktop, main .is-2-desktop.side-toc, main.is-2-desktop.sticky.scroll-with-footer::before, main.is-2-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2-desktop.footer-links, #_footer .footer-topper .is-2-desktop.social { + .column.is-2-desktop, #_footer .footer-topper .is-2-desktop.social, #_footer .footer-topper .is-2-desktop.footer-links, main.is-2-desktop.sticky.scroll-with-footer::before, main.is-2-desktop.sticky.scroll-with-footer::after, main .is-2-desktop.side-toc, main article.is-2-desktop { flex: none; width: 16.66667%; } - .column.is-offset-2-desktop, main article.is-offset-2-desktop, main .is-offset-2-desktop.side-toc, main.is-offset-2-desktop.sticky.scroll-with-footer::before, main.is-offset-2-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2-desktop.footer-links, #_footer .footer-topper .is-offset-2-desktop.social { + .column.is-offset-2-desktop, #_footer .footer-topper .is-offset-2-desktop.social, #_footer .footer-topper .is-offset-2-desktop.footer-links, main.is-offset-2-desktop.sticky.scroll-with-footer::before, main.is-offset-2-desktop.sticky.scroll-with-footer::after, main .is-offset-2-desktop.side-toc, main article.is-offset-2-desktop { margin-left: 16.66667%; } - .column.is-3-desktop, main article.is-3-desktop, main .is-3-desktop.side-toc, main.is-3-desktop.sticky.scroll-with-footer::before, main.is-3-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3-desktop.footer-links, #_footer .footer-topper .is-3-desktop.social { + .column.is-3-desktop, #_footer .footer-topper .is-3-desktop.social, #_footer .footer-topper .is-3-desktop.footer-links, main.is-3-desktop.sticky.scroll-with-footer::before, main.is-3-desktop.sticky.scroll-with-footer::after, main .is-3-desktop.side-toc, main article.is-3-desktop { flex: none; width: 25%; } - .column.is-offset-3-desktop, main article.is-offset-3-desktop, main .is-offset-3-desktop.side-toc, main.is-offset-3-desktop.sticky.scroll-with-footer::before, main.is-offset-3-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3-desktop.footer-links, #_footer .footer-topper .is-offset-3-desktop.social { + .column.is-offset-3-desktop, #_footer .footer-topper .is-offset-3-desktop.social, #_footer .footer-topper .is-offset-3-desktop.footer-links, main.is-offset-3-desktop.sticky.scroll-with-footer::before, main.is-offset-3-desktop.sticky.scroll-with-footer::after, main .is-offset-3-desktop.side-toc, main article.is-offset-3-desktop { margin-left: 25%; } - .column.is-4-desktop, main article.is-4-desktop, main .is-4-desktop.side-toc, main.is-4-desktop.sticky.scroll-with-footer::before, main.is-4-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4-desktop.footer-links, #_footer .footer-topper .is-4-desktop.social { + .column.is-4-desktop, #_footer .footer-topper .is-4-desktop.social, #_footer .footer-topper .is-4-desktop.footer-links, main.is-4-desktop.sticky.scroll-with-footer::before, main.is-4-desktop.sticky.scroll-with-footer::after, main .is-4-desktop.side-toc, main article.is-4-desktop { flex: none; width: 33.33333%; } - .column.is-offset-4-desktop, main article.is-offset-4-desktop, main .is-offset-4-desktop.side-toc, main.is-offset-4-desktop.sticky.scroll-with-footer::before, main.is-offset-4-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4-desktop.footer-links, #_footer .footer-topper .is-offset-4-desktop.social { + .column.is-offset-4-desktop, #_footer .footer-topper .is-offset-4-desktop.social, #_footer .footer-topper .is-offset-4-desktop.footer-links, main.is-offset-4-desktop.sticky.scroll-with-footer::before, main.is-offset-4-desktop.sticky.scroll-with-footer::after, main .is-offset-4-desktop.side-toc, main article.is-offset-4-desktop { margin-left: 33.33333%; } - .column.is-5-desktop, main article.is-5-desktop, main .is-5-desktop.side-toc, main.is-5-desktop.sticky.scroll-with-footer::before, main.is-5-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5-desktop.footer-links, #_footer .footer-topper .is-5-desktop.social { + .column.is-5-desktop, #_footer .footer-topper .is-5-desktop.social, #_footer .footer-topper .is-5-desktop.footer-links, main.is-5-desktop.sticky.scroll-with-footer::before, main.is-5-desktop.sticky.scroll-with-footer::after, main .is-5-desktop.side-toc, main article.is-5-desktop { flex: none; width: 41.66667%; } - .column.is-offset-5-desktop, main article.is-offset-5-desktop, main .is-offset-5-desktop.side-toc, main.is-offset-5-desktop.sticky.scroll-with-footer::before, main.is-offset-5-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5-desktop.footer-links, #_footer .footer-topper .is-offset-5-desktop.social { + .column.is-offset-5-desktop, #_footer .footer-topper .is-offset-5-desktop.social, #_footer .footer-topper .is-offset-5-desktop.footer-links, main.is-offset-5-desktop.sticky.scroll-with-footer::before, main.is-offset-5-desktop.sticky.scroll-with-footer::after, main .is-offset-5-desktop.side-toc, main article.is-offset-5-desktop { margin-left: 41.66667%; } - .column.is-6-desktop, main article.is-6-desktop, main .is-6-desktop.side-toc, main.is-6-desktop.sticky.scroll-with-footer::before, main.is-6-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6-desktop.footer-links, #_footer .footer-topper .is-6-desktop.social { + .column.is-6-desktop, #_footer .footer-topper .is-6-desktop.social, #_footer .footer-topper .is-6-desktop.footer-links, main.is-6-desktop.sticky.scroll-with-footer::before, main.is-6-desktop.sticky.scroll-with-footer::after, main .is-6-desktop.side-toc, main article.is-6-desktop { flex: none; width: 50%; } - .column.is-offset-6-desktop, main article.is-offset-6-desktop, main .is-offset-6-desktop.side-toc, main.is-offset-6-desktop.sticky.scroll-with-footer::before, main.is-offset-6-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6-desktop.footer-links, #_footer .footer-topper .is-offset-6-desktop.social { + .column.is-offset-6-desktop, #_footer .footer-topper .is-offset-6-desktop.social, #_footer .footer-topper .is-offset-6-desktop.footer-links, main.is-offset-6-desktop.sticky.scroll-with-footer::before, main.is-offset-6-desktop.sticky.scroll-with-footer::after, main .is-offset-6-desktop.side-toc, main article.is-offset-6-desktop { margin-left: 50%; } - .column.is-7-desktop, main article.is-7-desktop, main .is-7-desktop.side-toc, main.is-7-desktop.sticky.scroll-with-footer::before, main.is-7-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7-desktop.footer-links, #_footer .footer-topper .is-7-desktop.social { + .column.is-7-desktop, #_footer .footer-topper .is-7-desktop.social, #_footer .footer-topper .is-7-desktop.footer-links, main.is-7-desktop.sticky.scroll-with-footer::before, main.is-7-desktop.sticky.scroll-with-footer::after, main .is-7-desktop.side-toc, main article.is-7-desktop { flex: none; width: 58.33333%; } - .column.is-offset-7-desktop, main article.is-offset-7-desktop, main .is-offset-7-desktop.side-toc, main.is-offset-7-desktop.sticky.scroll-with-footer::before, main.is-offset-7-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7-desktop.footer-links, #_footer .footer-topper .is-offset-7-desktop.social { + .column.is-offset-7-desktop, #_footer .footer-topper .is-offset-7-desktop.social, #_footer .footer-topper .is-offset-7-desktop.footer-links, main.is-offset-7-desktop.sticky.scroll-with-footer::before, main.is-offset-7-desktop.sticky.scroll-with-footer::after, main .is-offset-7-desktop.side-toc, main article.is-offset-7-desktop { margin-left: 58.33333%; } - .column.is-8-desktop, main article.is-8-desktop, main .is-8-desktop.side-toc, main.is-8-desktop.sticky.scroll-with-footer::before, main.is-8-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8-desktop.footer-links, #_footer .footer-topper .is-8-desktop.social { + .column.is-8-desktop, #_footer .footer-topper .is-8-desktop.social, #_footer .footer-topper .is-8-desktop.footer-links, main.is-8-desktop.sticky.scroll-with-footer::before, main.is-8-desktop.sticky.scroll-with-footer::after, main .is-8-desktop.side-toc, main article.is-8-desktop { flex: none; width: 66.66667%; } - .column.is-offset-8-desktop, main article.is-offset-8-desktop, main .is-offset-8-desktop.side-toc, main.is-offset-8-desktop.sticky.scroll-with-footer::before, main.is-offset-8-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8-desktop.footer-links, #_footer .footer-topper .is-offset-8-desktop.social { + .column.is-offset-8-desktop, #_footer .footer-topper .is-offset-8-desktop.social, #_footer .footer-topper .is-offset-8-desktop.footer-links, main.is-offset-8-desktop.sticky.scroll-with-footer::before, main.is-offset-8-desktop.sticky.scroll-with-footer::after, main .is-offset-8-desktop.side-toc, main article.is-offset-8-desktop { margin-left: 66.66667%; } - .column.is-9-desktop, main article.is-9-desktop, main .is-9-desktop.side-toc, main.is-9-desktop.sticky.scroll-with-footer::before, main.is-9-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9-desktop.footer-links, #_footer .footer-topper .is-9-desktop.social { + .column.is-9-desktop, #_footer .footer-topper .is-9-desktop.social, #_footer .footer-topper .is-9-desktop.footer-links, main.is-9-desktop.sticky.scroll-with-footer::before, main.is-9-desktop.sticky.scroll-with-footer::after, main .is-9-desktop.side-toc, main article.is-9-desktop { flex: none; width: 75%; } - .column.is-offset-9-desktop, main article.is-offset-9-desktop, main .is-offset-9-desktop.side-toc, main.is-offset-9-desktop.sticky.scroll-with-footer::before, main.is-offset-9-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9-desktop.footer-links, #_footer .footer-topper .is-offset-9-desktop.social { + .column.is-offset-9-desktop, #_footer .footer-topper .is-offset-9-desktop.social, #_footer .footer-topper .is-offset-9-desktop.footer-links, main.is-offset-9-desktop.sticky.scroll-with-footer::before, main.is-offset-9-desktop.sticky.scroll-with-footer::after, main .is-offset-9-desktop.side-toc, main article.is-offset-9-desktop { margin-left: 75%; } - .column.is-10-desktop, main article.is-10-desktop, main .is-10-desktop.side-toc, main.is-10-desktop.sticky.scroll-with-footer::before, main.is-10-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-10-desktop.footer-links, #_footer .footer-topper .is-10-desktop.social { + .column.is-10-desktop, #_footer .footer-topper .is-10-desktop.social, #_footer .footer-topper .is-10-desktop.footer-links, main.is-10-desktop.sticky.scroll-with-footer::before, main.is-10-desktop.sticky.scroll-with-footer::after, main .is-10-desktop.side-toc, main article.is-10-desktop { flex: none; width: 83.33333%; } - .column.is-offset-10-desktop, main article.is-offset-10-desktop, main .is-offset-10-desktop.side-toc, main.is-offset-10-desktop.sticky.scroll-with-footer::before, main.is-offset-10-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10-desktop.footer-links, #_footer .footer-topper .is-offset-10-desktop.social { + .column.is-offset-10-desktop, #_footer .footer-topper .is-offset-10-desktop.social, #_footer .footer-topper .is-offset-10-desktop.footer-links, main.is-offset-10-desktop.sticky.scroll-with-footer::before, main.is-offset-10-desktop.sticky.scroll-with-footer::after, main .is-offset-10-desktop.side-toc, main article.is-offset-10-desktop { margin-left: 83.33333%; } - .column.is-11-desktop, main article.is-11-desktop, main .is-11-desktop.side-toc, main.is-11-desktop.sticky.scroll-with-footer::before, main.is-11-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11-desktop.footer-links, #_footer .footer-topper .is-11-desktop.social { + .column.is-11-desktop, #_footer .footer-topper .is-11-desktop.social, #_footer .footer-topper .is-11-desktop.footer-links, main.is-11-desktop.sticky.scroll-with-footer::before, main.is-11-desktop.sticky.scroll-with-footer::after, main .is-11-desktop.side-toc, main article.is-11-desktop { flex: none; width: 91.66667%; } - .column.is-offset-11-desktop, main article.is-offset-11-desktop, main .is-offset-11-desktop.side-toc, main.is-offset-11-desktop.sticky.scroll-with-footer::before, main.is-offset-11-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11-desktop.footer-links, #_footer .footer-topper .is-offset-11-desktop.social { + .column.is-offset-11-desktop, #_footer .footer-topper .is-offset-11-desktop.social, #_footer .footer-topper .is-offset-11-desktop.footer-links, main.is-offset-11-desktop.sticky.scroll-with-footer::before, main.is-offset-11-desktop.sticky.scroll-with-footer::after, main .is-offset-11-desktop.side-toc, main article.is-offset-11-desktop { margin-left: 91.66667%; } - .column.is-12-desktop, main article.is-12-desktop, main .is-12-desktop.side-toc, main.is-12-desktop.sticky.scroll-with-footer::before, main.is-12-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12-desktop.footer-links, #_footer .footer-topper .is-12-desktop.social { + .column.is-12-desktop, #_footer .footer-topper .is-12-desktop.social, #_footer .footer-topper .is-12-desktop.footer-links, main.is-12-desktop.sticky.scroll-with-footer::before, main.is-12-desktop.sticky.scroll-with-footer::after, main .is-12-desktop.side-toc, main article.is-12-desktop { flex: none; width: 100%; } - .column.is-offset-12-desktop, main article.is-offset-12-desktop, main .is-offset-12-desktop.side-toc, main.is-offset-12-desktop.sticky.scroll-with-footer::before, main.is-offset-12-desktop.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12-desktop.footer-links, #_footer .footer-topper .is-offset-12-desktop.social { + .column.is-offset-12-desktop, #_footer .footer-topper .is-offset-12-desktop.social, #_footer .footer-topper .is-offset-12-desktop.footer-links, main.is-offset-12-desktop.sticky.scroll-with-footer::before, main.is-offset-12-desktop.sticky.scroll-with-footer::after, main .is-offset-12-desktop.side-toc, main article.is-offset-12-desktop { margin-left: 100%; } } @media screen and (min-width: 1216px) { - .column.is-narrow-widescreen, main article.is-narrow-widescreen, main .is-narrow-widescreen.side-toc, main.is-narrow-widescreen.sticky.scroll-with-footer::before, main.is-narrow-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow-widescreen.footer-links, #_footer .footer-topper .is-narrow-widescreen.social { + .column.is-narrow-widescreen, #_footer .footer-topper .is-narrow-widescreen.social, #_footer .footer-topper .is-narrow-widescreen.footer-links, main.is-narrow-widescreen.sticky.scroll-with-footer::before, main.is-narrow-widescreen.sticky.scroll-with-footer::after, main .is-narrow-widescreen.side-toc, main article.is-narrow-widescreen { flex: none; width: unset; } - .column.is-full-widescreen, main article.is-full-widescreen, main .is-full-widescreen.side-toc, main.is-full-widescreen.sticky.scroll-with-footer::before, main.is-full-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full-widescreen.footer-links, #_footer .footer-topper .is-full-widescreen.social { + .column.is-full-widescreen, #_footer .footer-topper .is-full-widescreen.social, #_footer .footer-topper .is-full-widescreen.footer-links, main.is-full-widescreen.sticky.scroll-with-footer::before, main.is-full-widescreen.sticky.scroll-with-footer::after, main .is-full-widescreen.side-toc, main article.is-full-widescreen { flex: none; width: 100%; } - .column.is-three-quarters-widescreen, main article.is-three-quarters-widescreen, main .is-three-quarters-widescreen.side-toc, main.is-three-quarters-widescreen.sticky.scroll-with-footer::before, main.is-three-quarters-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters-widescreen.footer-links, #_footer .footer-topper .is-three-quarters-widescreen.social { + .column.is-three-quarters-widescreen, #_footer .footer-topper .is-three-quarters-widescreen.social, #_footer .footer-topper .is-three-quarters-widescreen.footer-links, main.is-three-quarters-widescreen.sticky.scroll-with-footer::before, main.is-three-quarters-widescreen.sticky.scroll-with-footer::after, main .is-three-quarters-widescreen.side-toc, main article.is-three-quarters-widescreen { flex: none; width: 75%; } - .column.is-two-thirds-widescreen, main article.is-two-thirds-widescreen, main .is-two-thirds-widescreen.side-toc, main.is-two-thirds-widescreen.sticky.scroll-with-footer::before, main.is-two-thirds-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds-widescreen.footer-links, #_footer .footer-topper .is-two-thirds-widescreen.social { + .column.is-two-thirds-widescreen, #_footer .footer-topper .is-two-thirds-widescreen.social, #_footer .footer-topper .is-two-thirds-widescreen.footer-links, main.is-two-thirds-widescreen.sticky.scroll-with-footer::before, main.is-two-thirds-widescreen.sticky.scroll-with-footer::after, main .is-two-thirds-widescreen.side-toc, main article.is-two-thirds-widescreen { flex: none; width: 66.6666%; } - .column.is-half-widescreen, main article.is-half-widescreen, main .is-half-widescreen.side-toc, main.is-half-widescreen.sticky.scroll-with-footer::before, main.is-half-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half-widescreen.footer-links, #_footer .footer-topper .is-half-widescreen.social { + .column.is-half-widescreen, #_footer .footer-topper .is-half-widescreen.social, #_footer .footer-topper .is-half-widescreen.footer-links, main.is-half-widescreen.sticky.scroll-with-footer::before, main.is-half-widescreen.sticky.scroll-with-footer::after, main .is-half-widescreen.side-toc, main article.is-half-widescreen { flex: none; width: 50%; } - .column.is-one-third-widescreen, main article.is-one-third-widescreen, main .is-one-third-widescreen.side-toc, main.is-one-third-widescreen.sticky.scroll-with-footer::before, main.is-one-third-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third-widescreen.footer-links, #_footer .footer-topper .is-one-third-widescreen.social { + .column.is-one-third-widescreen, #_footer .footer-topper .is-one-third-widescreen.social, #_footer .footer-topper .is-one-third-widescreen.footer-links, main.is-one-third-widescreen.sticky.scroll-with-footer::before, main.is-one-third-widescreen.sticky.scroll-with-footer::after, main .is-one-third-widescreen.side-toc, main article.is-one-third-widescreen { flex: none; width: 33.3333%; } - .column.is-one-quarter-widescreen, main article.is-one-quarter-widescreen, main .is-one-quarter-widescreen.side-toc, main.is-one-quarter-widescreen.sticky.scroll-with-footer::before, main.is-one-quarter-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter-widescreen.footer-links, #_footer .footer-topper .is-one-quarter-widescreen.social { + .column.is-one-quarter-widescreen, #_footer .footer-topper .is-one-quarter-widescreen.social, #_footer .footer-topper .is-one-quarter-widescreen.footer-links, main.is-one-quarter-widescreen.sticky.scroll-with-footer::before, main.is-one-quarter-widescreen.sticky.scroll-with-footer::after, main .is-one-quarter-widescreen.side-toc, main article.is-one-quarter-widescreen { flex: none; width: 25%; } - .column.is-one-fifth-widescreen, main article.is-one-fifth-widescreen, main .is-one-fifth-widescreen.side-toc, main.is-one-fifth-widescreen.sticky.scroll-with-footer::before, main.is-one-fifth-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth-widescreen.footer-links, #_footer .footer-topper .is-one-fifth-widescreen.social { + .column.is-one-fifth-widescreen, #_footer .footer-topper .is-one-fifth-widescreen.social, #_footer .footer-topper .is-one-fifth-widescreen.footer-links, main.is-one-fifth-widescreen.sticky.scroll-with-footer::before, main.is-one-fifth-widescreen.sticky.scroll-with-footer::after, main .is-one-fifth-widescreen.side-toc, main article.is-one-fifth-widescreen { flex: none; width: 20%; } - .column.is-two-fifths-widescreen, main article.is-two-fifths-widescreen, main .is-two-fifths-widescreen.side-toc, main.is-two-fifths-widescreen.sticky.scroll-with-footer::before, main.is-two-fifths-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths-widescreen.footer-links, #_footer .footer-topper .is-two-fifths-widescreen.social { + .column.is-two-fifths-widescreen, #_footer .footer-topper .is-two-fifths-widescreen.social, #_footer .footer-topper .is-two-fifths-widescreen.footer-links, main.is-two-fifths-widescreen.sticky.scroll-with-footer::before, main.is-two-fifths-widescreen.sticky.scroll-with-footer::after, main .is-two-fifths-widescreen.side-toc, main article.is-two-fifths-widescreen { flex: none; width: 40%; } - .column.is-three-fifths-widescreen, main article.is-three-fifths-widescreen, main .is-three-fifths-widescreen.side-toc, main.is-three-fifths-widescreen.sticky.scroll-with-footer::before, main.is-three-fifths-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths-widescreen.footer-links, #_footer .footer-topper .is-three-fifths-widescreen.social { + .column.is-three-fifths-widescreen, #_footer .footer-topper .is-three-fifths-widescreen.social, #_footer .footer-topper .is-three-fifths-widescreen.footer-links, main.is-three-fifths-widescreen.sticky.scroll-with-footer::before, main.is-three-fifths-widescreen.sticky.scroll-with-footer::after, main .is-three-fifths-widescreen.side-toc, main article.is-three-fifths-widescreen { flex: none; width: 60%; } - .column.is-four-fifths-widescreen, main article.is-four-fifths-widescreen, main .is-four-fifths-widescreen.side-toc, main.is-four-fifths-widescreen.sticky.scroll-with-footer::before, main.is-four-fifths-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths-widescreen.footer-links, #_footer .footer-topper .is-four-fifths-widescreen.social { + .column.is-four-fifths-widescreen, #_footer .footer-topper .is-four-fifths-widescreen.social, #_footer .footer-topper .is-four-fifths-widescreen.footer-links, main.is-four-fifths-widescreen.sticky.scroll-with-footer::before, main.is-four-fifths-widescreen.sticky.scroll-with-footer::after, main .is-four-fifths-widescreen.side-toc, main article.is-four-fifths-widescreen { flex: none; width: 80%; } - .column.is-offset-three-quarters-widescreen, main article.is-offset-three-quarters-widescreen, main .is-offset-three-quarters-widescreen.side-toc, main.is-offset-three-quarters-widescreen.sticky.scroll-with-footer::before, main.is-offset-three-quarters-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters-widescreen.footer-links, #_footer .footer-topper .is-offset-three-quarters-widescreen.social { + .column.is-offset-three-quarters-widescreen, #_footer .footer-topper .is-offset-three-quarters-widescreen.social, #_footer .footer-topper .is-offset-three-quarters-widescreen.footer-links, main.is-offset-three-quarters-widescreen.sticky.scroll-with-footer::before, main.is-offset-three-quarters-widescreen.sticky.scroll-with-footer::after, main .is-offset-three-quarters-widescreen.side-toc, main article.is-offset-three-quarters-widescreen { margin-left: 75%; } - .column.is-offset-two-thirds-widescreen, main article.is-offset-two-thirds-widescreen, main .is-offset-two-thirds-widescreen.side-toc, main.is-offset-two-thirds-widescreen.sticky.scroll-with-footer::before, main.is-offset-two-thirds-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds-widescreen.footer-links, #_footer .footer-topper .is-offset-two-thirds-widescreen.social { + .column.is-offset-two-thirds-widescreen, #_footer .footer-topper .is-offset-two-thirds-widescreen.social, #_footer .footer-topper .is-offset-two-thirds-widescreen.footer-links, main.is-offset-two-thirds-widescreen.sticky.scroll-with-footer::before, main.is-offset-two-thirds-widescreen.sticky.scroll-with-footer::after, main .is-offset-two-thirds-widescreen.side-toc, main article.is-offset-two-thirds-widescreen { margin-left: 66.6666%; } - .column.is-offset-half-widescreen, main article.is-offset-half-widescreen, main .is-offset-half-widescreen.side-toc, main.is-offset-half-widescreen.sticky.scroll-with-footer::before, main.is-offset-half-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half-widescreen.footer-links, #_footer .footer-topper .is-offset-half-widescreen.social { + .column.is-offset-half-widescreen, #_footer .footer-topper .is-offset-half-widescreen.social, #_footer .footer-topper .is-offset-half-widescreen.footer-links, main.is-offset-half-widescreen.sticky.scroll-with-footer::before, main.is-offset-half-widescreen.sticky.scroll-with-footer::after, main .is-offset-half-widescreen.side-toc, main article.is-offset-half-widescreen { margin-left: 50%; } - .column.is-offset-one-third-widescreen, main article.is-offset-one-third-widescreen, main .is-offset-one-third-widescreen.side-toc, main.is-offset-one-third-widescreen.sticky.scroll-with-footer::before, main.is-offset-one-third-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third-widescreen.footer-links, #_footer .footer-topper .is-offset-one-third-widescreen.social { + .column.is-offset-one-third-widescreen, #_footer .footer-topper .is-offset-one-third-widescreen.social, #_footer .footer-topper .is-offset-one-third-widescreen.footer-links, main.is-offset-one-third-widescreen.sticky.scroll-with-footer::before, main.is-offset-one-third-widescreen.sticky.scroll-with-footer::after, main .is-offset-one-third-widescreen.side-toc, main article.is-offset-one-third-widescreen { margin-left: 33.3333%; } - .column.is-offset-one-quarter-widescreen, main article.is-offset-one-quarter-widescreen, main .is-offset-one-quarter-widescreen.side-toc, main.is-offset-one-quarter-widescreen.sticky.scroll-with-footer::before, main.is-offset-one-quarter-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter-widescreen.footer-links, #_footer .footer-topper .is-offset-one-quarter-widescreen.social { + .column.is-offset-one-quarter-widescreen, #_footer .footer-topper .is-offset-one-quarter-widescreen.social, #_footer .footer-topper .is-offset-one-quarter-widescreen.footer-links, main.is-offset-one-quarter-widescreen.sticky.scroll-with-footer::before, main.is-offset-one-quarter-widescreen.sticky.scroll-with-footer::after, main .is-offset-one-quarter-widescreen.side-toc, main article.is-offset-one-quarter-widescreen { margin-left: 25%; } - .column.is-offset-one-fifth-widescreen, main article.is-offset-one-fifth-widescreen, main .is-offset-one-fifth-widescreen.side-toc, main.is-offset-one-fifth-widescreen.sticky.scroll-with-footer::before, main.is-offset-one-fifth-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth-widescreen.footer-links, #_footer .footer-topper .is-offset-one-fifth-widescreen.social { + .column.is-offset-one-fifth-widescreen, #_footer .footer-topper .is-offset-one-fifth-widescreen.social, #_footer .footer-topper .is-offset-one-fifth-widescreen.footer-links, main.is-offset-one-fifth-widescreen.sticky.scroll-with-footer::before, main.is-offset-one-fifth-widescreen.sticky.scroll-with-footer::after, main .is-offset-one-fifth-widescreen.side-toc, main article.is-offset-one-fifth-widescreen { margin-left: 20%; } - .column.is-offset-two-fifths-widescreen, main article.is-offset-two-fifths-widescreen, main .is-offset-two-fifths-widescreen.side-toc, main.is-offset-two-fifths-widescreen.sticky.scroll-with-footer::before, main.is-offset-two-fifths-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths-widescreen.footer-links, #_footer .footer-topper .is-offset-two-fifths-widescreen.social { + .column.is-offset-two-fifths-widescreen, #_footer .footer-topper .is-offset-two-fifths-widescreen.social, #_footer .footer-topper .is-offset-two-fifths-widescreen.footer-links, main.is-offset-two-fifths-widescreen.sticky.scroll-with-footer::before, main.is-offset-two-fifths-widescreen.sticky.scroll-with-footer::after, main .is-offset-two-fifths-widescreen.side-toc, main article.is-offset-two-fifths-widescreen { margin-left: 40%; } - .column.is-offset-three-fifths-widescreen, main article.is-offset-three-fifths-widescreen, main .is-offset-three-fifths-widescreen.side-toc, main.is-offset-three-fifths-widescreen.sticky.scroll-with-footer::before, main.is-offset-three-fifths-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths-widescreen.footer-links, #_footer .footer-topper .is-offset-three-fifths-widescreen.social { + .column.is-offset-three-fifths-widescreen, #_footer .footer-topper .is-offset-three-fifths-widescreen.social, #_footer .footer-topper .is-offset-three-fifths-widescreen.footer-links, main.is-offset-three-fifths-widescreen.sticky.scroll-with-footer::before, main.is-offset-three-fifths-widescreen.sticky.scroll-with-footer::after, main .is-offset-three-fifths-widescreen.side-toc, main article.is-offset-three-fifths-widescreen { margin-left: 60%; } - .column.is-offset-four-fifths-widescreen, main article.is-offset-four-fifths-widescreen, main .is-offset-four-fifths-widescreen.side-toc, main.is-offset-four-fifths-widescreen.sticky.scroll-with-footer::before, main.is-offset-four-fifths-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths-widescreen.footer-links, #_footer .footer-topper .is-offset-four-fifths-widescreen.social { + .column.is-offset-four-fifths-widescreen, #_footer .footer-topper .is-offset-four-fifths-widescreen.social, #_footer .footer-topper .is-offset-four-fifths-widescreen.footer-links, main.is-offset-four-fifths-widescreen.sticky.scroll-with-footer::before, main.is-offset-four-fifths-widescreen.sticky.scroll-with-footer::after, main .is-offset-four-fifths-widescreen.side-toc, main article.is-offset-four-fifths-widescreen { margin-left: 80%; } - .column.is-0-widescreen, main article.is-0-widescreen, main .is-0-widescreen.side-toc, main.is-0-widescreen.sticky.scroll-with-footer::before, main.is-0-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0-widescreen.footer-links, #_footer .footer-topper .is-0-widescreen.social { + .column.is-0-widescreen, #_footer .footer-topper .is-0-widescreen.social, #_footer .footer-topper .is-0-widescreen.footer-links, main.is-0-widescreen.sticky.scroll-with-footer::before, main.is-0-widescreen.sticky.scroll-with-footer::after, main .is-0-widescreen.side-toc, main article.is-0-widescreen { flex: none; width: 0%; } - .column.is-offset-0-widescreen, main article.is-offset-0-widescreen, main .is-offset-0-widescreen.side-toc, main.is-offset-0-widescreen.sticky.scroll-with-footer::before, main.is-offset-0-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0-widescreen.footer-links, #_footer .footer-topper .is-offset-0-widescreen.social { + .column.is-offset-0-widescreen, #_footer .footer-topper .is-offset-0-widescreen.social, #_footer .footer-topper .is-offset-0-widescreen.footer-links, main.is-offset-0-widescreen.sticky.scroll-with-footer::before, main.is-offset-0-widescreen.sticky.scroll-with-footer::after, main .is-offset-0-widescreen.side-toc, main article.is-offset-0-widescreen { margin-left: 0%; } - .column.is-1-widescreen, main article.is-1-widescreen, main .is-1-widescreen.side-toc, main.is-1-widescreen.sticky.scroll-with-footer::before, main.is-1-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1-widescreen.footer-links, #_footer .footer-topper .is-1-widescreen.social { + .column.is-1-widescreen, #_footer .footer-topper .is-1-widescreen.social, #_footer .footer-topper .is-1-widescreen.footer-links, main.is-1-widescreen.sticky.scroll-with-footer::before, main.is-1-widescreen.sticky.scroll-with-footer::after, main .is-1-widescreen.side-toc, main article.is-1-widescreen { flex: none; width: 8.33333%; } - .column.is-offset-1-widescreen, main article.is-offset-1-widescreen, main .is-offset-1-widescreen.side-toc, main.is-offset-1-widescreen.sticky.scroll-with-footer::before, main.is-offset-1-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1-widescreen.footer-links, #_footer .footer-topper .is-offset-1-widescreen.social { + .column.is-offset-1-widescreen, #_footer .footer-topper .is-offset-1-widescreen.social, #_footer .footer-topper .is-offset-1-widescreen.footer-links, main.is-offset-1-widescreen.sticky.scroll-with-footer::before, main.is-offset-1-widescreen.sticky.scroll-with-footer::after, main .is-offset-1-widescreen.side-toc, main article.is-offset-1-widescreen { margin-left: 8.33333%; } - .column.is-2-widescreen, main article.is-2-widescreen, main .is-2-widescreen.side-toc, main.is-2-widescreen.sticky.scroll-with-footer::before, main.is-2-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2-widescreen.footer-links, #_footer .footer-topper .is-2-widescreen.social { + .column.is-2-widescreen, #_footer .footer-topper .is-2-widescreen.social, #_footer .footer-topper .is-2-widescreen.footer-links, main.is-2-widescreen.sticky.scroll-with-footer::before, main.is-2-widescreen.sticky.scroll-with-footer::after, main .is-2-widescreen.side-toc, main article.is-2-widescreen { flex: none; width: 16.66667%; } - .column.is-offset-2-widescreen, main article.is-offset-2-widescreen, main .is-offset-2-widescreen.side-toc, main.is-offset-2-widescreen.sticky.scroll-with-footer::before, main.is-offset-2-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2-widescreen.footer-links, #_footer .footer-topper .is-offset-2-widescreen.social { + .column.is-offset-2-widescreen, #_footer .footer-topper .is-offset-2-widescreen.social, #_footer .footer-topper .is-offset-2-widescreen.footer-links, main.is-offset-2-widescreen.sticky.scroll-with-footer::before, main.is-offset-2-widescreen.sticky.scroll-with-footer::after, main .is-offset-2-widescreen.side-toc, main article.is-offset-2-widescreen { margin-left: 16.66667%; } - .column.is-3-widescreen, main article.is-3-widescreen, main .is-3-widescreen.side-toc, main.is-3-widescreen.sticky.scroll-with-footer::before, main.is-3-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3-widescreen.footer-links, #_footer .footer-topper .is-3-widescreen.social { + .column.is-3-widescreen, #_footer .footer-topper .is-3-widescreen.social, #_footer .footer-topper .is-3-widescreen.footer-links, main.is-3-widescreen.sticky.scroll-with-footer::before, main.is-3-widescreen.sticky.scroll-with-footer::after, main .is-3-widescreen.side-toc, main article.is-3-widescreen { flex: none; width: 25%; } - .column.is-offset-3-widescreen, main article.is-offset-3-widescreen, main .is-offset-3-widescreen.side-toc, main.is-offset-3-widescreen.sticky.scroll-with-footer::before, main.is-offset-3-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3-widescreen.footer-links, #_footer .footer-topper .is-offset-3-widescreen.social { + .column.is-offset-3-widescreen, #_footer .footer-topper .is-offset-3-widescreen.social, #_footer .footer-topper .is-offset-3-widescreen.footer-links, main.is-offset-3-widescreen.sticky.scroll-with-footer::before, main.is-offset-3-widescreen.sticky.scroll-with-footer::after, main .is-offset-3-widescreen.side-toc, main article.is-offset-3-widescreen { margin-left: 25%; } - .column.is-4-widescreen, main article.is-4-widescreen, main .is-4-widescreen.side-toc, main.is-4-widescreen.sticky.scroll-with-footer::before, main.is-4-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4-widescreen.footer-links, #_footer .footer-topper .is-4-widescreen.social { + .column.is-4-widescreen, #_footer .footer-topper .is-4-widescreen.social, #_footer .footer-topper .is-4-widescreen.footer-links, main.is-4-widescreen.sticky.scroll-with-footer::before, main.is-4-widescreen.sticky.scroll-with-footer::after, main .is-4-widescreen.side-toc, main article.is-4-widescreen { flex: none; width: 33.33333%; } - .column.is-offset-4-widescreen, main article.is-offset-4-widescreen, main .is-offset-4-widescreen.side-toc, main.is-offset-4-widescreen.sticky.scroll-with-footer::before, main.is-offset-4-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4-widescreen.footer-links, #_footer .footer-topper .is-offset-4-widescreen.social { + .column.is-offset-4-widescreen, #_footer .footer-topper .is-offset-4-widescreen.social, #_footer .footer-topper .is-offset-4-widescreen.footer-links, main.is-offset-4-widescreen.sticky.scroll-with-footer::before, main.is-offset-4-widescreen.sticky.scroll-with-footer::after, main .is-offset-4-widescreen.side-toc, main article.is-offset-4-widescreen { margin-left: 33.33333%; } - .column.is-5-widescreen, main article.is-5-widescreen, main .is-5-widescreen.side-toc, main.is-5-widescreen.sticky.scroll-with-footer::before, main.is-5-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5-widescreen.footer-links, #_footer .footer-topper .is-5-widescreen.social { + .column.is-5-widescreen, #_footer .footer-topper .is-5-widescreen.social, #_footer .footer-topper .is-5-widescreen.footer-links, main.is-5-widescreen.sticky.scroll-with-footer::before, main.is-5-widescreen.sticky.scroll-with-footer::after, main .is-5-widescreen.side-toc, main article.is-5-widescreen { flex: none; width: 41.66667%; } - .column.is-offset-5-widescreen, main article.is-offset-5-widescreen, main .is-offset-5-widescreen.side-toc, main.is-offset-5-widescreen.sticky.scroll-with-footer::before, main.is-offset-5-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5-widescreen.footer-links, #_footer .footer-topper .is-offset-5-widescreen.social { + .column.is-offset-5-widescreen, #_footer .footer-topper .is-offset-5-widescreen.social, #_footer .footer-topper .is-offset-5-widescreen.footer-links, main.is-offset-5-widescreen.sticky.scroll-with-footer::before, main.is-offset-5-widescreen.sticky.scroll-with-footer::after, main .is-offset-5-widescreen.side-toc, main article.is-offset-5-widescreen { margin-left: 41.66667%; } - .column.is-6-widescreen, main article.is-6-widescreen, main .is-6-widescreen.side-toc, main.is-6-widescreen.sticky.scroll-with-footer::before, main.is-6-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6-widescreen.footer-links, #_footer .footer-topper .is-6-widescreen.social { + .column.is-6-widescreen, #_footer .footer-topper .is-6-widescreen.social, #_footer .footer-topper .is-6-widescreen.footer-links, main.is-6-widescreen.sticky.scroll-with-footer::before, main.is-6-widescreen.sticky.scroll-with-footer::after, main .is-6-widescreen.side-toc, main article.is-6-widescreen { flex: none; width: 50%; } - .column.is-offset-6-widescreen, main article.is-offset-6-widescreen, main .is-offset-6-widescreen.side-toc, main.is-offset-6-widescreen.sticky.scroll-with-footer::before, main.is-offset-6-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6-widescreen.footer-links, #_footer .footer-topper .is-offset-6-widescreen.social { + .column.is-offset-6-widescreen, #_footer .footer-topper .is-offset-6-widescreen.social, #_footer .footer-topper .is-offset-6-widescreen.footer-links, main.is-offset-6-widescreen.sticky.scroll-with-footer::before, main.is-offset-6-widescreen.sticky.scroll-with-footer::after, main .is-offset-6-widescreen.side-toc, main article.is-offset-6-widescreen { margin-left: 50%; } - .column.is-7-widescreen, main article.is-7-widescreen, main .is-7-widescreen.side-toc, main.is-7-widescreen.sticky.scroll-with-footer::before, main.is-7-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7-widescreen.footer-links, #_footer .footer-topper .is-7-widescreen.social { + .column.is-7-widescreen, #_footer .footer-topper .is-7-widescreen.social, #_footer .footer-topper .is-7-widescreen.footer-links, main.is-7-widescreen.sticky.scroll-with-footer::before, main.is-7-widescreen.sticky.scroll-with-footer::after, main .is-7-widescreen.side-toc, main article.is-7-widescreen { flex: none; width: 58.33333%; } - .column.is-offset-7-widescreen, main article.is-offset-7-widescreen, main .is-offset-7-widescreen.side-toc, main.is-offset-7-widescreen.sticky.scroll-with-footer::before, main.is-offset-7-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7-widescreen.footer-links, #_footer .footer-topper .is-offset-7-widescreen.social { + .column.is-offset-7-widescreen, #_footer .footer-topper .is-offset-7-widescreen.social, #_footer .footer-topper .is-offset-7-widescreen.footer-links, main.is-offset-7-widescreen.sticky.scroll-with-footer::before, main.is-offset-7-widescreen.sticky.scroll-with-footer::after, main .is-offset-7-widescreen.side-toc, main article.is-offset-7-widescreen { margin-left: 58.33333%; } - .column.is-8-widescreen, main article.is-8-widescreen, main .is-8-widescreen.side-toc, main.is-8-widescreen.sticky.scroll-with-footer::before, main.is-8-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8-widescreen.footer-links, #_footer .footer-topper .is-8-widescreen.social { + .column.is-8-widescreen, #_footer .footer-topper .is-8-widescreen.social, #_footer .footer-topper .is-8-widescreen.footer-links, main.is-8-widescreen.sticky.scroll-with-footer::before, main.is-8-widescreen.sticky.scroll-with-footer::after, main .is-8-widescreen.side-toc, main article.is-8-widescreen { flex: none; width: 66.66667%; } - .column.is-offset-8-widescreen, main article.is-offset-8-widescreen, main .is-offset-8-widescreen.side-toc, main.is-offset-8-widescreen.sticky.scroll-with-footer::before, main.is-offset-8-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8-widescreen.footer-links, #_footer .footer-topper .is-offset-8-widescreen.social { + .column.is-offset-8-widescreen, #_footer .footer-topper .is-offset-8-widescreen.social, #_footer .footer-topper .is-offset-8-widescreen.footer-links, main.is-offset-8-widescreen.sticky.scroll-with-footer::before, main.is-offset-8-widescreen.sticky.scroll-with-footer::after, main .is-offset-8-widescreen.side-toc, main article.is-offset-8-widescreen { margin-left: 66.66667%; } - .column.is-9-widescreen, main article.is-9-widescreen, main .is-9-widescreen.side-toc, main.is-9-widescreen.sticky.scroll-with-footer::before, main.is-9-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9-widescreen.footer-links, #_footer .footer-topper .is-9-widescreen.social { + .column.is-9-widescreen, #_footer .footer-topper .is-9-widescreen.social, #_footer .footer-topper .is-9-widescreen.footer-links, main.is-9-widescreen.sticky.scroll-with-footer::before, main.is-9-widescreen.sticky.scroll-with-footer::after, main .is-9-widescreen.side-toc, main article.is-9-widescreen { flex: none; width: 75%; } - .column.is-offset-9-widescreen, main article.is-offset-9-widescreen, main .is-offset-9-widescreen.side-toc, main.is-offset-9-widescreen.sticky.scroll-with-footer::before, main.is-offset-9-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9-widescreen.footer-links, #_footer .footer-topper .is-offset-9-widescreen.social { + .column.is-offset-9-widescreen, #_footer .footer-topper .is-offset-9-widescreen.social, #_footer .footer-topper .is-offset-9-widescreen.footer-links, main.is-offset-9-widescreen.sticky.scroll-with-footer::before, main.is-offset-9-widescreen.sticky.scroll-with-footer::after, main .is-offset-9-widescreen.side-toc, main article.is-offset-9-widescreen { margin-left: 75%; } - .column.is-10-widescreen, main article.is-10-widescreen, main .is-10-widescreen.side-toc, main.is-10-widescreen.sticky.scroll-with-footer::before, main.is-10-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-10-widescreen.footer-links, #_footer .footer-topper .is-10-widescreen.social { + .column.is-10-widescreen, #_footer .footer-topper .is-10-widescreen.social, #_footer .footer-topper .is-10-widescreen.footer-links, main.is-10-widescreen.sticky.scroll-with-footer::before, main.is-10-widescreen.sticky.scroll-with-footer::after, main .is-10-widescreen.side-toc, main article.is-10-widescreen { flex: none; width: 83.33333%; } - .column.is-offset-10-widescreen, main article.is-offset-10-widescreen, main .is-offset-10-widescreen.side-toc, main.is-offset-10-widescreen.sticky.scroll-with-footer::before, main.is-offset-10-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10-widescreen.footer-links, #_footer .footer-topper .is-offset-10-widescreen.social { + .column.is-offset-10-widescreen, #_footer .footer-topper .is-offset-10-widescreen.social, #_footer .footer-topper .is-offset-10-widescreen.footer-links, main.is-offset-10-widescreen.sticky.scroll-with-footer::before, main.is-offset-10-widescreen.sticky.scroll-with-footer::after, main .is-offset-10-widescreen.side-toc, main article.is-offset-10-widescreen { margin-left: 83.33333%; } - .column.is-11-widescreen, main article.is-11-widescreen, main .is-11-widescreen.side-toc, main.is-11-widescreen.sticky.scroll-with-footer::before, main.is-11-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11-widescreen.footer-links, #_footer .footer-topper .is-11-widescreen.social { + .column.is-11-widescreen, #_footer .footer-topper .is-11-widescreen.social, #_footer .footer-topper .is-11-widescreen.footer-links, main.is-11-widescreen.sticky.scroll-with-footer::before, main.is-11-widescreen.sticky.scroll-with-footer::after, main .is-11-widescreen.side-toc, main article.is-11-widescreen { flex: none; width: 91.66667%; } - .column.is-offset-11-widescreen, main article.is-offset-11-widescreen, main .is-offset-11-widescreen.side-toc, main.is-offset-11-widescreen.sticky.scroll-with-footer::before, main.is-offset-11-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11-widescreen.footer-links, #_footer .footer-topper .is-offset-11-widescreen.social { + .column.is-offset-11-widescreen, #_footer .footer-topper .is-offset-11-widescreen.social, #_footer .footer-topper .is-offset-11-widescreen.footer-links, main.is-offset-11-widescreen.sticky.scroll-with-footer::before, main.is-offset-11-widescreen.sticky.scroll-with-footer::after, main .is-offset-11-widescreen.side-toc, main article.is-offset-11-widescreen { margin-left: 91.66667%; } - .column.is-12-widescreen, main article.is-12-widescreen, main .is-12-widescreen.side-toc, main.is-12-widescreen.sticky.scroll-with-footer::before, main.is-12-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12-widescreen.footer-links, #_footer .footer-topper .is-12-widescreen.social { + .column.is-12-widescreen, #_footer .footer-topper .is-12-widescreen.social, #_footer .footer-topper .is-12-widescreen.footer-links, main.is-12-widescreen.sticky.scroll-with-footer::before, main.is-12-widescreen.sticky.scroll-with-footer::after, main .is-12-widescreen.side-toc, main article.is-12-widescreen { flex: none; width: 100%; } - .column.is-offset-12-widescreen, main article.is-offset-12-widescreen, main .is-offset-12-widescreen.side-toc, main.is-offset-12-widescreen.sticky.scroll-with-footer::before, main.is-offset-12-widescreen.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12-widescreen.footer-links, #_footer .footer-topper .is-offset-12-widescreen.social { + .column.is-offset-12-widescreen, #_footer .footer-topper .is-offset-12-widescreen.social, #_footer .footer-topper .is-offset-12-widescreen.footer-links, main.is-offset-12-widescreen.sticky.scroll-with-footer::before, main.is-offset-12-widescreen.sticky.scroll-with-footer::after, main .is-offset-12-widescreen.side-toc, main article.is-offset-12-widescreen { margin-left: 100%; } } @media screen and (min-width: 1408px) { - .column.is-narrow-fullhd, main article.is-narrow-fullhd, main .is-narrow-fullhd.side-toc, main.is-narrow-fullhd.sticky.scroll-with-footer::before, main.is-narrow-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-narrow-fullhd.footer-links, #_footer .footer-topper .is-narrow-fullhd.social { + .column.is-narrow-fullhd, #_footer .footer-topper .is-narrow-fullhd.social, #_footer .footer-topper .is-narrow-fullhd.footer-links, main.is-narrow-fullhd.sticky.scroll-with-footer::before, main.is-narrow-fullhd.sticky.scroll-with-footer::after, main .is-narrow-fullhd.side-toc, main article.is-narrow-fullhd { flex: none; width: unset; } - .column.is-full-fullhd, main article.is-full-fullhd, main .is-full-fullhd.side-toc, main.is-full-fullhd.sticky.scroll-with-footer::before, main.is-full-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-full-fullhd.footer-links, #_footer .footer-topper .is-full-fullhd.social { + .column.is-full-fullhd, #_footer .footer-topper .is-full-fullhd.social, #_footer .footer-topper .is-full-fullhd.footer-links, main.is-full-fullhd.sticky.scroll-with-footer::before, main.is-full-fullhd.sticky.scroll-with-footer::after, main .is-full-fullhd.side-toc, main article.is-full-fullhd { flex: none; width: 100%; } - .column.is-three-quarters-fullhd, main article.is-three-quarters-fullhd, main .is-three-quarters-fullhd.side-toc, main.is-three-quarters-fullhd.sticky.scroll-with-footer::before, main.is-three-quarters-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-quarters-fullhd.footer-links, #_footer .footer-topper .is-three-quarters-fullhd.social { + .column.is-three-quarters-fullhd, #_footer .footer-topper .is-three-quarters-fullhd.social, #_footer .footer-topper .is-three-quarters-fullhd.footer-links, main.is-three-quarters-fullhd.sticky.scroll-with-footer::before, main.is-three-quarters-fullhd.sticky.scroll-with-footer::after, main .is-three-quarters-fullhd.side-toc, main article.is-three-quarters-fullhd { flex: none; width: 75%; } - .column.is-two-thirds-fullhd, main article.is-two-thirds-fullhd, main .is-two-thirds-fullhd.side-toc, main.is-two-thirds-fullhd.sticky.scroll-with-footer::before, main.is-two-thirds-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-thirds-fullhd.footer-links, #_footer .footer-topper .is-two-thirds-fullhd.social { + .column.is-two-thirds-fullhd, #_footer .footer-topper .is-two-thirds-fullhd.social, #_footer .footer-topper .is-two-thirds-fullhd.footer-links, main.is-two-thirds-fullhd.sticky.scroll-with-footer::before, main.is-two-thirds-fullhd.sticky.scroll-with-footer::after, main .is-two-thirds-fullhd.side-toc, main article.is-two-thirds-fullhd { flex: none; width: 66.6666%; } - .column.is-half-fullhd, main article.is-half-fullhd, main .is-half-fullhd.side-toc, main.is-half-fullhd.sticky.scroll-with-footer::before, main.is-half-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-half-fullhd.footer-links, #_footer .footer-topper .is-half-fullhd.social { + .column.is-half-fullhd, #_footer .footer-topper .is-half-fullhd.social, #_footer .footer-topper .is-half-fullhd.footer-links, main.is-half-fullhd.sticky.scroll-with-footer::before, main.is-half-fullhd.sticky.scroll-with-footer::after, main .is-half-fullhd.side-toc, main article.is-half-fullhd { flex: none; width: 50%; } - .column.is-one-third-fullhd, main article.is-one-third-fullhd, main .is-one-third-fullhd.side-toc, main.is-one-third-fullhd.sticky.scroll-with-footer::before, main.is-one-third-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-third-fullhd.footer-links, #_footer .footer-topper .is-one-third-fullhd.social { + .column.is-one-third-fullhd, #_footer .footer-topper .is-one-third-fullhd.social, #_footer .footer-topper .is-one-third-fullhd.footer-links, main.is-one-third-fullhd.sticky.scroll-with-footer::before, main.is-one-third-fullhd.sticky.scroll-with-footer::after, main .is-one-third-fullhd.side-toc, main article.is-one-third-fullhd { flex: none; width: 33.3333%; } - .column.is-one-quarter-fullhd, main article.is-one-quarter-fullhd, main .is-one-quarter-fullhd.side-toc, main.is-one-quarter-fullhd.sticky.scroll-with-footer::before, main.is-one-quarter-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-quarter-fullhd.footer-links, #_footer .footer-topper .is-one-quarter-fullhd.social { + .column.is-one-quarter-fullhd, #_footer .footer-topper .is-one-quarter-fullhd.social, #_footer .footer-topper .is-one-quarter-fullhd.footer-links, main.is-one-quarter-fullhd.sticky.scroll-with-footer::before, main.is-one-quarter-fullhd.sticky.scroll-with-footer::after, main .is-one-quarter-fullhd.side-toc, main article.is-one-quarter-fullhd { flex: none; width: 25%; } - .column.is-one-fifth-fullhd, main article.is-one-fifth-fullhd, main .is-one-fifth-fullhd.side-toc, main.is-one-fifth-fullhd.sticky.scroll-with-footer::before, main.is-one-fifth-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-one-fifth-fullhd.footer-links, #_footer .footer-topper .is-one-fifth-fullhd.social { + .column.is-one-fifth-fullhd, #_footer .footer-topper .is-one-fifth-fullhd.social, #_footer .footer-topper .is-one-fifth-fullhd.footer-links, main.is-one-fifth-fullhd.sticky.scroll-with-footer::before, main.is-one-fifth-fullhd.sticky.scroll-with-footer::after, main .is-one-fifth-fullhd.side-toc, main article.is-one-fifth-fullhd { flex: none; width: 20%; } - .column.is-two-fifths-fullhd, main article.is-two-fifths-fullhd, main .is-two-fifths-fullhd.side-toc, main.is-two-fifths-fullhd.sticky.scroll-with-footer::before, main.is-two-fifths-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-two-fifths-fullhd.footer-links, #_footer .footer-topper .is-two-fifths-fullhd.social { + .column.is-two-fifths-fullhd, #_footer .footer-topper .is-two-fifths-fullhd.social, #_footer .footer-topper .is-two-fifths-fullhd.footer-links, main.is-two-fifths-fullhd.sticky.scroll-with-footer::before, main.is-two-fifths-fullhd.sticky.scroll-with-footer::after, main .is-two-fifths-fullhd.side-toc, main article.is-two-fifths-fullhd { flex: none; width: 40%; } - .column.is-three-fifths-fullhd, main article.is-three-fifths-fullhd, main .is-three-fifths-fullhd.side-toc, main.is-three-fifths-fullhd.sticky.scroll-with-footer::before, main.is-three-fifths-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-three-fifths-fullhd.footer-links, #_footer .footer-topper .is-three-fifths-fullhd.social { + .column.is-three-fifths-fullhd, #_footer .footer-topper .is-three-fifths-fullhd.social, #_footer .footer-topper .is-three-fifths-fullhd.footer-links, main.is-three-fifths-fullhd.sticky.scroll-with-footer::before, main.is-three-fifths-fullhd.sticky.scroll-with-footer::after, main .is-three-fifths-fullhd.side-toc, main article.is-three-fifths-fullhd { flex: none; width: 60%; } - .column.is-four-fifths-fullhd, main article.is-four-fifths-fullhd, main .is-four-fifths-fullhd.side-toc, main.is-four-fifths-fullhd.sticky.scroll-with-footer::before, main.is-four-fifths-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-four-fifths-fullhd.footer-links, #_footer .footer-topper .is-four-fifths-fullhd.social { + .column.is-four-fifths-fullhd, #_footer .footer-topper .is-four-fifths-fullhd.social, #_footer .footer-topper .is-four-fifths-fullhd.footer-links, main.is-four-fifths-fullhd.sticky.scroll-with-footer::before, main.is-four-fifths-fullhd.sticky.scroll-with-footer::after, main .is-four-fifths-fullhd.side-toc, main article.is-four-fifths-fullhd { flex: none; width: 80%; } - .column.is-offset-three-quarters-fullhd, main article.is-offset-three-quarters-fullhd, main .is-offset-three-quarters-fullhd.side-toc, main.is-offset-three-quarters-fullhd.sticky.scroll-with-footer::before, main.is-offset-three-quarters-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-quarters-fullhd.footer-links, #_footer .footer-topper .is-offset-three-quarters-fullhd.social { + .column.is-offset-three-quarters-fullhd, #_footer .footer-topper .is-offset-three-quarters-fullhd.social, #_footer .footer-topper .is-offset-three-quarters-fullhd.footer-links, main.is-offset-three-quarters-fullhd.sticky.scroll-with-footer::before, main.is-offset-three-quarters-fullhd.sticky.scroll-with-footer::after, main .is-offset-three-quarters-fullhd.side-toc, main article.is-offset-three-quarters-fullhd { margin-left: 75%; } - .column.is-offset-two-thirds-fullhd, main article.is-offset-two-thirds-fullhd, main .is-offset-two-thirds-fullhd.side-toc, main.is-offset-two-thirds-fullhd.sticky.scroll-with-footer::before, main.is-offset-two-thirds-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-thirds-fullhd.footer-links, #_footer .footer-topper .is-offset-two-thirds-fullhd.social { + .column.is-offset-two-thirds-fullhd, #_footer .footer-topper .is-offset-two-thirds-fullhd.social, #_footer .footer-topper .is-offset-two-thirds-fullhd.footer-links, main.is-offset-two-thirds-fullhd.sticky.scroll-with-footer::before, main.is-offset-two-thirds-fullhd.sticky.scroll-with-footer::after, main .is-offset-two-thirds-fullhd.side-toc, main article.is-offset-two-thirds-fullhd { margin-left: 66.6666%; } - .column.is-offset-half-fullhd, main article.is-offset-half-fullhd, main .is-offset-half-fullhd.side-toc, main.is-offset-half-fullhd.sticky.scroll-with-footer::before, main.is-offset-half-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-half-fullhd.footer-links, #_footer .footer-topper .is-offset-half-fullhd.social { + .column.is-offset-half-fullhd, #_footer .footer-topper .is-offset-half-fullhd.social, #_footer .footer-topper .is-offset-half-fullhd.footer-links, main.is-offset-half-fullhd.sticky.scroll-with-footer::before, main.is-offset-half-fullhd.sticky.scroll-with-footer::after, main .is-offset-half-fullhd.side-toc, main article.is-offset-half-fullhd { margin-left: 50%; } - .column.is-offset-one-third-fullhd, main article.is-offset-one-third-fullhd, main .is-offset-one-third-fullhd.side-toc, main.is-offset-one-third-fullhd.sticky.scroll-with-footer::before, main.is-offset-one-third-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-third-fullhd.footer-links, #_footer .footer-topper .is-offset-one-third-fullhd.social { + .column.is-offset-one-third-fullhd, #_footer .footer-topper .is-offset-one-third-fullhd.social, #_footer .footer-topper .is-offset-one-third-fullhd.footer-links, main.is-offset-one-third-fullhd.sticky.scroll-with-footer::before, main.is-offset-one-third-fullhd.sticky.scroll-with-footer::after, main .is-offset-one-third-fullhd.side-toc, main article.is-offset-one-third-fullhd { margin-left: 33.3333%; } - .column.is-offset-one-quarter-fullhd, main article.is-offset-one-quarter-fullhd, main .is-offset-one-quarter-fullhd.side-toc, main.is-offset-one-quarter-fullhd.sticky.scroll-with-footer::before, main.is-offset-one-quarter-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-quarter-fullhd.footer-links, #_footer .footer-topper .is-offset-one-quarter-fullhd.social { + .column.is-offset-one-quarter-fullhd, #_footer .footer-topper .is-offset-one-quarter-fullhd.social, #_footer .footer-topper .is-offset-one-quarter-fullhd.footer-links, main.is-offset-one-quarter-fullhd.sticky.scroll-with-footer::before, main.is-offset-one-quarter-fullhd.sticky.scroll-with-footer::after, main .is-offset-one-quarter-fullhd.side-toc, main article.is-offset-one-quarter-fullhd { margin-left: 25%; } - .column.is-offset-one-fifth-fullhd, main article.is-offset-one-fifth-fullhd, main .is-offset-one-fifth-fullhd.side-toc, main.is-offset-one-fifth-fullhd.sticky.scroll-with-footer::before, main.is-offset-one-fifth-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-one-fifth-fullhd.footer-links, #_footer .footer-topper .is-offset-one-fifth-fullhd.social { + .column.is-offset-one-fifth-fullhd, #_footer .footer-topper .is-offset-one-fifth-fullhd.social, #_footer .footer-topper .is-offset-one-fifth-fullhd.footer-links, main.is-offset-one-fifth-fullhd.sticky.scroll-with-footer::before, main.is-offset-one-fifth-fullhd.sticky.scroll-with-footer::after, main .is-offset-one-fifth-fullhd.side-toc, main article.is-offset-one-fifth-fullhd { margin-left: 20%; } - .column.is-offset-two-fifths-fullhd, main article.is-offset-two-fifths-fullhd, main .is-offset-two-fifths-fullhd.side-toc, main.is-offset-two-fifths-fullhd.sticky.scroll-with-footer::before, main.is-offset-two-fifths-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-two-fifths-fullhd.footer-links, #_footer .footer-topper .is-offset-two-fifths-fullhd.social { + .column.is-offset-two-fifths-fullhd, #_footer .footer-topper .is-offset-two-fifths-fullhd.social, #_footer .footer-topper .is-offset-two-fifths-fullhd.footer-links, main.is-offset-two-fifths-fullhd.sticky.scroll-with-footer::before, main.is-offset-two-fifths-fullhd.sticky.scroll-with-footer::after, main .is-offset-two-fifths-fullhd.side-toc, main article.is-offset-two-fifths-fullhd { margin-left: 40%; } - .column.is-offset-three-fifths-fullhd, main article.is-offset-three-fifths-fullhd, main .is-offset-three-fifths-fullhd.side-toc, main.is-offset-three-fifths-fullhd.sticky.scroll-with-footer::before, main.is-offset-three-fifths-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-three-fifths-fullhd.footer-links, #_footer .footer-topper .is-offset-three-fifths-fullhd.social { + .column.is-offset-three-fifths-fullhd, #_footer .footer-topper .is-offset-three-fifths-fullhd.social, #_footer .footer-topper .is-offset-three-fifths-fullhd.footer-links, main.is-offset-three-fifths-fullhd.sticky.scroll-with-footer::before, main.is-offset-three-fifths-fullhd.sticky.scroll-with-footer::after, main .is-offset-three-fifths-fullhd.side-toc, main article.is-offset-three-fifths-fullhd { margin-left: 60%; } - .column.is-offset-four-fifths-fullhd, main article.is-offset-four-fifths-fullhd, main .is-offset-four-fifths-fullhd.side-toc, main.is-offset-four-fifths-fullhd.sticky.scroll-with-footer::before, main.is-offset-four-fifths-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-four-fifths-fullhd.footer-links, #_footer .footer-topper .is-offset-four-fifths-fullhd.social { + .column.is-offset-four-fifths-fullhd, #_footer .footer-topper .is-offset-four-fifths-fullhd.social, #_footer .footer-topper .is-offset-four-fifths-fullhd.footer-links, main.is-offset-four-fifths-fullhd.sticky.scroll-with-footer::before, main.is-offset-four-fifths-fullhd.sticky.scroll-with-footer::after, main .is-offset-four-fifths-fullhd.side-toc, main article.is-offset-four-fifths-fullhd { margin-left: 80%; } - .column.is-0-fullhd, main article.is-0-fullhd, main .is-0-fullhd.side-toc, main.is-0-fullhd.sticky.scroll-with-footer::before, main.is-0-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-0-fullhd.footer-links, #_footer .footer-topper .is-0-fullhd.social { + .column.is-0-fullhd, #_footer .footer-topper .is-0-fullhd.social, #_footer .footer-topper .is-0-fullhd.footer-links, main.is-0-fullhd.sticky.scroll-with-footer::before, main.is-0-fullhd.sticky.scroll-with-footer::after, main .is-0-fullhd.side-toc, main article.is-0-fullhd { flex: none; width: 0%; } - .column.is-offset-0-fullhd, main article.is-offset-0-fullhd, main .is-offset-0-fullhd.side-toc, main.is-offset-0-fullhd.sticky.scroll-with-footer::before, main.is-offset-0-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-0-fullhd.footer-links, #_footer .footer-topper .is-offset-0-fullhd.social { + .column.is-offset-0-fullhd, #_footer .footer-topper .is-offset-0-fullhd.social, #_footer .footer-topper .is-offset-0-fullhd.footer-links, main.is-offset-0-fullhd.sticky.scroll-with-footer::before, main.is-offset-0-fullhd.sticky.scroll-with-footer::after, main .is-offset-0-fullhd.side-toc, main article.is-offset-0-fullhd { margin-left: 0%; } - .column.is-1-fullhd, main article.is-1-fullhd, main .is-1-fullhd.side-toc, main.is-1-fullhd.sticky.scroll-with-footer::before, main.is-1-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-1-fullhd.footer-links, #_footer .footer-topper .is-1-fullhd.social { + .column.is-1-fullhd, #_footer .footer-topper .is-1-fullhd.social, #_footer .footer-topper .is-1-fullhd.footer-links, main.is-1-fullhd.sticky.scroll-with-footer::before, main.is-1-fullhd.sticky.scroll-with-footer::after, main .is-1-fullhd.side-toc, main article.is-1-fullhd { flex: none; width: 8.33333%; } - .column.is-offset-1-fullhd, main article.is-offset-1-fullhd, main .is-offset-1-fullhd.side-toc, main.is-offset-1-fullhd.sticky.scroll-with-footer::before, main.is-offset-1-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-1-fullhd.footer-links, #_footer .footer-topper .is-offset-1-fullhd.social { + .column.is-offset-1-fullhd, #_footer .footer-topper .is-offset-1-fullhd.social, #_footer .footer-topper .is-offset-1-fullhd.footer-links, main.is-offset-1-fullhd.sticky.scroll-with-footer::before, main.is-offset-1-fullhd.sticky.scroll-with-footer::after, main .is-offset-1-fullhd.side-toc, main article.is-offset-1-fullhd { margin-left: 8.33333%; } - .column.is-2-fullhd, main article.is-2-fullhd, main .is-2-fullhd.side-toc, main.is-2-fullhd.sticky.scroll-with-footer::before, main.is-2-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-2-fullhd.footer-links, #_footer .footer-topper .is-2-fullhd.social { + .column.is-2-fullhd, #_footer .footer-topper .is-2-fullhd.social, #_footer .footer-topper .is-2-fullhd.footer-links, main.is-2-fullhd.sticky.scroll-with-footer::before, main.is-2-fullhd.sticky.scroll-with-footer::after, main .is-2-fullhd.side-toc, main article.is-2-fullhd { flex: none; width: 16.66667%; } - .column.is-offset-2-fullhd, main article.is-offset-2-fullhd, main .is-offset-2-fullhd.side-toc, main.is-offset-2-fullhd.sticky.scroll-with-footer::before, main.is-offset-2-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-2-fullhd.footer-links, #_footer .footer-topper .is-offset-2-fullhd.social { + .column.is-offset-2-fullhd, #_footer .footer-topper .is-offset-2-fullhd.social, #_footer .footer-topper .is-offset-2-fullhd.footer-links, main.is-offset-2-fullhd.sticky.scroll-with-footer::before, main.is-offset-2-fullhd.sticky.scroll-with-footer::after, main .is-offset-2-fullhd.side-toc, main article.is-offset-2-fullhd { margin-left: 16.66667%; } - .column.is-3-fullhd, main article.is-3-fullhd, main .is-3-fullhd.side-toc, main.is-3-fullhd.sticky.scroll-with-footer::before, main.is-3-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-3-fullhd.footer-links, #_footer .footer-topper .is-3-fullhd.social { + .column.is-3-fullhd, #_footer .footer-topper .is-3-fullhd.social, #_footer .footer-topper .is-3-fullhd.footer-links, main.is-3-fullhd.sticky.scroll-with-footer::before, main.is-3-fullhd.sticky.scroll-with-footer::after, main .is-3-fullhd.side-toc, main article.is-3-fullhd { flex: none; width: 25%; } - .column.is-offset-3-fullhd, main article.is-offset-3-fullhd, main .is-offset-3-fullhd.side-toc, main.is-offset-3-fullhd.sticky.scroll-with-footer::before, main.is-offset-3-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-3-fullhd.footer-links, #_footer .footer-topper .is-offset-3-fullhd.social { + .column.is-offset-3-fullhd, #_footer .footer-topper .is-offset-3-fullhd.social, #_footer .footer-topper .is-offset-3-fullhd.footer-links, main.is-offset-3-fullhd.sticky.scroll-with-footer::before, main.is-offset-3-fullhd.sticky.scroll-with-footer::after, main .is-offset-3-fullhd.side-toc, main article.is-offset-3-fullhd { margin-left: 25%; } - .column.is-4-fullhd, main article.is-4-fullhd, main .is-4-fullhd.side-toc, main.is-4-fullhd.sticky.scroll-with-footer::before, main.is-4-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-4-fullhd.footer-links, #_footer .footer-topper .is-4-fullhd.social { + .column.is-4-fullhd, #_footer .footer-topper .is-4-fullhd.social, #_footer .footer-topper .is-4-fullhd.footer-links, main.is-4-fullhd.sticky.scroll-with-footer::before, main.is-4-fullhd.sticky.scroll-with-footer::after, main .is-4-fullhd.side-toc, main article.is-4-fullhd { flex: none; width: 33.33333%; } - .column.is-offset-4-fullhd, main article.is-offset-4-fullhd, main .is-offset-4-fullhd.side-toc, main.is-offset-4-fullhd.sticky.scroll-with-footer::before, main.is-offset-4-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-4-fullhd.footer-links, #_footer .footer-topper .is-offset-4-fullhd.social { + .column.is-offset-4-fullhd, #_footer .footer-topper .is-offset-4-fullhd.social, #_footer .footer-topper .is-offset-4-fullhd.footer-links, main.is-offset-4-fullhd.sticky.scroll-with-footer::before, main.is-offset-4-fullhd.sticky.scroll-with-footer::after, main .is-offset-4-fullhd.side-toc, main article.is-offset-4-fullhd { margin-left: 33.33333%; } - .column.is-5-fullhd, main article.is-5-fullhd, main .is-5-fullhd.side-toc, main.is-5-fullhd.sticky.scroll-with-footer::before, main.is-5-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-5-fullhd.footer-links, #_footer .footer-topper .is-5-fullhd.social { + .column.is-5-fullhd, #_footer .footer-topper .is-5-fullhd.social, #_footer .footer-topper .is-5-fullhd.footer-links, main.is-5-fullhd.sticky.scroll-with-footer::before, main.is-5-fullhd.sticky.scroll-with-footer::after, main .is-5-fullhd.side-toc, main article.is-5-fullhd { flex: none; width: 41.66667%; } - .column.is-offset-5-fullhd, main article.is-offset-5-fullhd, main .is-offset-5-fullhd.side-toc, main.is-offset-5-fullhd.sticky.scroll-with-footer::before, main.is-offset-5-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-5-fullhd.footer-links, #_footer .footer-topper .is-offset-5-fullhd.social { + .column.is-offset-5-fullhd, #_footer .footer-topper .is-offset-5-fullhd.social, #_footer .footer-topper .is-offset-5-fullhd.footer-links, main.is-offset-5-fullhd.sticky.scroll-with-footer::before, main.is-offset-5-fullhd.sticky.scroll-with-footer::after, main .is-offset-5-fullhd.side-toc, main article.is-offset-5-fullhd { margin-left: 41.66667%; } - .column.is-6-fullhd, main article.is-6-fullhd, main .is-6-fullhd.side-toc, main.is-6-fullhd.sticky.scroll-with-footer::before, main.is-6-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-6-fullhd.footer-links, #_footer .footer-topper .is-6-fullhd.social { + .column.is-6-fullhd, #_footer .footer-topper .is-6-fullhd.social, #_footer .footer-topper .is-6-fullhd.footer-links, main.is-6-fullhd.sticky.scroll-with-footer::before, main.is-6-fullhd.sticky.scroll-with-footer::after, main .is-6-fullhd.side-toc, main article.is-6-fullhd { flex: none; width: 50%; } - .column.is-offset-6-fullhd, main article.is-offset-6-fullhd, main .is-offset-6-fullhd.side-toc, main.is-offset-6-fullhd.sticky.scroll-with-footer::before, main.is-offset-6-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-6-fullhd.footer-links, #_footer .footer-topper .is-offset-6-fullhd.social { + .column.is-offset-6-fullhd, #_footer .footer-topper .is-offset-6-fullhd.social, #_footer .footer-topper .is-offset-6-fullhd.footer-links, main.is-offset-6-fullhd.sticky.scroll-with-footer::before, main.is-offset-6-fullhd.sticky.scroll-with-footer::after, main .is-offset-6-fullhd.side-toc, main article.is-offset-6-fullhd { margin-left: 50%; } - .column.is-7-fullhd, main article.is-7-fullhd, main .is-7-fullhd.side-toc, main.is-7-fullhd.sticky.scroll-with-footer::before, main.is-7-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-7-fullhd.footer-links, #_footer .footer-topper .is-7-fullhd.social { + .column.is-7-fullhd, #_footer .footer-topper .is-7-fullhd.social, #_footer .footer-topper .is-7-fullhd.footer-links, main.is-7-fullhd.sticky.scroll-with-footer::before, main.is-7-fullhd.sticky.scroll-with-footer::after, main .is-7-fullhd.side-toc, main article.is-7-fullhd { flex: none; width: 58.33333%; } - .column.is-offset-7-fullhd, main article.is-offset-7-fullhd, main .is-offset-7-fullhd.side-toc, main.is-offset-7-fullhd.sticky.scroll-with-footer::before, main.is-offset-7-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-7-fullhd.footer-links, #_footer .footer-topper .is-offset-7-fullhd.social { + .column.is-offset-7-fullhd, #_footer .footer-topper .is-offset-7-fullhd.social, #_footer .footer-topper .is-offset-7-fullhd.footer-links, main.is-offset-7-fullhd.sticky.scroll-with-footer::before, main.is-offset-7-fullhd.sticky.scroll-with-footer::after, main .is-offset-7-fullhd.side-toc, main article.is-offset-7-fullhd { margin-left: 58.33333%; } - .column.is-8-fullhd, main article.is-8-fullhd, main .is-8-fullhd.side-toc, main.is-8-fullhd.sticky.scroll-with-footer::before, main.is-8-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-8-fullhd.footer-links, #_footer .footer-topper .is-8-fullhd.social { + .column.is-8-fullhd, #_footer .footer-topper .is-8-fullhd.social, #_footer .footer-topper .is-8-fullhd.footer-links, main.is-8-fullhd.sticky.scroll-with-footer::before, main.is-8-fullhd.sticky.scroll-with-footer::after, main .is-8-fullhd.side-toc, main article.is-8-fullhd { flex: none; width: 66.66667%; } - .column.is-offset-8-fullhd, main article.is-offset-8-fullhd, main .is-offset-8-fullhd.side-toc, main.is-offset-8-fullhd.sticky.scroll-with-footer::before, main.is-offset-8-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-8-fullhd.footer-links, #_footer .footer-topper .is-offset-8-fullhd.social { + .column.is-offset-8-fullhd, #_footer .footer-topper .is-offset-8-fullhd.social, #_footer .footer-topper .is-offset-8-fullhd.footer-links, main.is-offset-8-fullhd.sticky.scroll-with-footer::before, main.is-offset-8-fullhd.sticky.scroll-with-footer::after, main .is-offset-8-fullhd.side-toc, main article.is-offset-8-fullhd { margin-left: 66.66667%; } - .column.is-9-fullhd, main article.is-9-fullhd, main .is-9-fullhd.side-toc, main.is-9-fullhd.sticky.scroll-with-footer::before, main.is-9-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-9-fullhd.footer-links, #_footer .footer-topper .is-9-fullhd.social { + .column.is-9-fullhd, #_footer .footer-topper .is-9-fullhd.social, #_footer .footer-topper .is-9-fullhd.footer-links, main.is-9-fullhd.sticky.scroll-with-footer::before, main.is-9-fullhd.sticky.scroll-with-footer::after, main .is-9-fullhd.side-toc, main article.is-9-fullhd { flex: none; width: 75%; } - .column.is-offset-9-fullhd, main article.is-offset-9-fullhd, main .is-offset-9-fullhd.side-toc, main.is-offset-9-fullhd.sticky.scroll-with-footer::before, main.is-offset-9-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-9-fullhd.footer-links, #_footer .footer-topper .is-offset-9-fullhd.social { + .column.is-offset-9-fullhd, #_footer .footer-topper .is-offset-9-fullhd.social, #_footer .footer-topper .is-offset-9-fullhd.footer-links, main.is-offset-9-fullhd.sticky.scroll-with-footer::before, main.is-offset-9-fullhd.sticky.scroll-with-footer::after, main .is-offset-9-fullhd.side-toc, main article.is-offset-9-fullhd { margin-left: 75%; } - .column.is-10-fullhd, main article.is-10-fullhd, main .is-10-fullhd.side-toc, main.is-10-fullhd.sticky.scroll-with-footer::before, main.is-10-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-10-fullhd.footer-links, #_footer .footer-topper .is-10-fullhd.social { + .column.is-10-fullhd, #_footer .footer-topper .is-10-fullhd.social, #_footer .footer-topper .is-10-fullhd.footer-links, main.is-10-fullhd.sticky.scroll-with-footer::before, main.is-10-fullhd.sticky.scroll-with-footer::after, main .is-10-fullhd.side-toc, main article.is-10-fullhd { flex: none; width: 83.33333%; } - .column.is-offset-10-fullhd, main article.is-offset-10-fullhd, main .is-offset-10-fullhd.side-toc, main.is-offset-10-fullhd.sticky.scroll-with-footer::before, main.is-offset-10-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-10-fullhd.footer-links, #_footer .footer-topper .is-offset-10-fullhd.social { + .column.is-offset-10-fullhd, #_footer .footer-topper .is-offset-10-fullhd.social, #_footer .footer-topper .is-offset-10-fullhd.footer-links, main.is-offset-10-fullhd.sticky.scroll-with-footer::before, main.is-offset-10-fullhd.sticky.scroll-with-footer::after, main .is-offset-10-fullhd.side-toc, main article.is-offset-10-fullhd { margin-left: 83.33333%; } - .column.is-11-fullhd, main article.is-11-fullhd, main .is-11-fullhd.side-toc, main.is-11-fullhd.sticky.scroll-with-footer::before, main.is-11-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-11-fullhd.footer-links, #_footer .footer-topper .is-11-fullhd.social { + .column.is-11-fullhd, #_footer .footer-topper .is-11-fullhd.social, #_footer .footer-topper .is-11-fullhd.footer-links, main.is-11-fullhd.sticky.scroll-with-footer::before, main.is-11-fullhd.sticky.scroll-with-footer::after, main .is-11-fullhd.side-toc, main article.is-11-fullhd { flex: none; width: 91.66667%; } - .column.is-offset-11-fullhd, main article.is-offset-11-fullhd, main .is-offset-11-fullhd.side-toc, main.is-offset-11-fullhd.sticky.scroll-with-footer::before, main.is-offset-11-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-11-fullhd.footer-links, #_footer .footer-topper .is-offset-11-fullhd.social { + .column.is-offset-11-fullhd, #_footer .footer-topper .is-offset-11-fullhd.social, #_footer .footer-topper .is-offset-11-fullhd.footer-links, main.is-offset-11-fullhd.sticky.scroll-with-footer::before, main.is-offset-11-fullhd.sticky.scroll-with-footer::after, main .is-offset-11-fullhd.side-toc, main article.is-offset-11-fullhd { margin-left: 91.66667%; } - .column.is-12-fullhd, main article.is-12-fullhd, main .is-12-fullhd.side-toc, main.is-12-fullhd.sticky.scroll-with-footer::before, main.is-12-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-12-fullhd.footer-links, #_footer .footer-topper .is-12-fullhd.social { + .column.is-12-fullhd, #_footer .footer-topper .is-12-fullhd.social, #_footer .footer-topper .is-12-fullhd.footer-links, main.is-12-fullhd.sticky.scroll-with-footer::before, main.is-12-fullhd.sticky.scroll-with-footer::after, main .is-12-fullhd.side-toc, main article.is-12-fullhd { flex: none; width: 100%; } - .column.is-offset-12-fullhd, main article.is-offset-12-fullhd, main .is-offset-12-fullhd.side-toc, main.is-offset-12-fullhd.sticky.scroll-with-footer::before, main.is-offset-12-fullhd.sticky.scroll-with-footer::after, #_footer .footer-topper .is-offset-12-fullhd.footer-links, #_footer .footer-topper .is-offset-12-fullhd.social { + .column.is-offset-12-fullhd, #_footer .footer-topper .is-offset-12-fullhd.social, #_footer .footer-topper .is-offset-12-fullhd.footer-links, main.is-offset-12-fullhd.sticky.scroll-with-footer::before, main.is-offset-12-fullhd.sticky.scroll-with-footer::after, main .is-offset-12-fullhd.side-toc, main article.is-offset-12-fullhd { margin-left: 100%; } } - .columns { margin-left: -0.75rem; margin-right: -0.75rem; @@ -935,7 +933,7 @@ th { margin-left: 0; margin-right: 0; margin-top: 0; } - .columns.is-gapless > .column, main .columns.is-gapless > article, main .columns.is-gapless > .side-toc, .columns.is-gapless > main.sticky.scroll-with-footer::before, .columns.is-gapless > main.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-gapless > .footer-links, #_footer .footer-topper .columns.is-gapless > .social { + .columns.is-gapless > .column, #_footer .footer-topper .columns.is-gapless > .social, #_footer .footer-topper .columns.is-gapless > .footer-links, .columns.is-gapless > main.sticky.scroll-with-footer::before, .columns.is-gapless > main.sticky.scroll-with-footer::after, main .columns.is-gapless > .side-toc, main .columns.is-gapless > article { margin: 0; padding: 0 !important; } .columns.is-gapless:not(:last-child) { @@ -954,12 +952,11 @@ th { @media screen and (min-width: 1024px) { .columns.is-desktop { display: flex; } } - .columns.is-variable { --columnGap: 0.75rem; margin-left: calc(-1 * var(--columnGap)); margin-right: calc(-1 * var(--columnGap)); } - .columns.is-variable > .column, main .columns.is-variable > article, main .columns.is-variable > .side-toc, .columns.is-variable > main.sticky.scroll-with-footer::before, .columns.is-variable > main.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-variable > .footer-links, #_footer .footer-topper .columns.is-variable > .social { + .columns.is-variable > .column, #_footer .footer-topper .columns.is-variable > .social, #_footer .footer-topper .columns.is-variable > .footer-links, .columns.is-variable > main.sticky.scroll-with-footer::before, .columns.is-variable > main.sticky.scroll-with-footer::after, main .columns.is-variable > .side-toc, main .columns.is-variable > article { padding-left: var(--columnGap); padding-right: var(--columnGap); } .columns.is-variable.is-0 { @@ -1020,7 +1017,7 @@ th { @media screen and (min-width: 1408px) { .columns.is-variable.is-1-fullhd { --columnGap: 0.25rem; } } - .columns.is-variable.is-2, main .columns.is-variable.side-toc, main.columns.is-variable.sticky.scroll-with-footer::before, main.columns.is-variable.sticky.scroll-with-footer::after, #_footer .footer-topper .columns.is-variable.social { + .columns.is-variable.is-2, #_footer .footer-topper .is-variable.social, main.is-variable.sticky.scroll-with-footer::before, main.is-variable.sticky.scroll-with-footer::after, main .is-variable.side-toc { --columnGap: 0.5rem; } @media screen and (max-width: 768px) { .columns.is-variable.is-2-mobile { @@ -1194,7 +1191,7 @@ th { @media screen and (min-width: 1408px) { .columns.is-variable.is-7-fullhd { --columnGap: 1.75rem; } } - .columns.is-variable.is-8, main article.columns.is-variable { + .columns.is-variable.is-8, main article.is-variable { --columnGap: 2rem; } @media screen and (max-width: 768px) { .columns.is-variable.is-8-mobile { @@ -1223,7 +1220,6 @@ th { @media screen and (min-width: 1408px) { .columns.is-variable.is-8-fullhd { --columnGap: 2rem; } } - .tile { align-items: stretch; display: block; @@ -1253,7 +1249,7 @@ th { .tile.is-1 { flex: none; width: 8.33333%; } - .tile.is-2, main .tile.side-toc, main.tile.sticky.scroll-with-footer::before, main.tile.sticky.scroll-with-footer::after, #_footer .footer-topper .tile.social { + .tile.is-2, #_footer .footer-topper .tile.social, main.tile.sticky.scroll-with-footer::before, main.tile.sticky.scroll-with-footer::after, main .tile.side-toc { flex: none; width: 16.66667%; } .tile.is-3 { @@ -1277,7 +1273,7 @@ th { .tile.is-9 { flex: none; width: 75%; } - .tile.is-10, body.normal article.tile, #_footer .footer-topper .tile.footer-links { + .tile.is-10, #_footer .footer-topper .tile.footer-links, body.normal article.tile { flex: none; width: 83.33333%; } .tile.is-11 { @@ -1286,7 +1282,6 @@ th { .tile.is-12 { flex: none; width: 100%; } } - html, body { font-size: 16px; @@ -1384,9 +1379,9 @@ main { margin-left: 0; padding-right: 0; } main #_side-toc-page { - background-color: white; + background-color: #efefef; margin-right: 0; - padding-left: 0; } + padding-left: 1.5rem; } main.sticky article { position: relative; top: 135px; @@ -1415,7 +1410,6 @@ main { @media screen and (min-width: 1215px) { main.sticky.scroll-with-footer #_side-toc-overall:not(.placebo) { background: linear-gradient(to top, white, #efefef 5rem); } } - footer { background-color: #0c322c; position: relative; } @@ -1484,7 +1478,6 @@ header img.logo { header img.logo { width: 117px; height: 39px; } } - header #_utilitynav { background-color: #0c322c; position: absolute; @@ -1690,7 +1683,6 @@ header.sticky img.logo { top: 10px; width: 117px; height: 39px; } } - header.sticky #_menu { top: 0; } @@ -1748,11 +1740,20 @@ body.disable-language-switcher #_utilitynav #_utilitynav-language { .side-toc .side-title { color: #0c322c; - font-size: 0.8rem; - font-weight: 800; } + margin-top: 1rem; + margin-bottom: 0.5rem; + font-size: 0.875rem; + font-weight: 600; } .side-toc .side-title em { font-style: normal; } +#_side-toc-page a { + color: #30ba78; + padding: 0.4rem 0; } + #_side-toc-page a:focus, #_side-toc-page a:hover, #_side-toc-page a:active { + background-color: transparent; + text-decoration: underline; } + @media screen and (max-width: 1024px) { #_side-toc-page { background-color: white; @@ -1771,7 +1772,6 @@ body.disable-language-switcher #_utilitynav #_utilitynav-language { padding: 0; margin: 0; border: none; } } - @media screen and (max-width: 1024px) { #_side-toc-page .side-title { display: none; } } @@ -2063,7 +2063,6 @@ body.disable-language-switcher #_utilitynav #_utilitynav-language { margin-top: 1.5rem; width: 100%; max-width: unset; } } - main.sticky article .version-info { position: fixed; top: 65px; @@ -2104,7 +2103,6 @@ body.scroll-up main.sticky article .version-info { @media screen and (min-width: 1024px) { #_open-side-toc-overall { display: none; } } - #_side-toc-overall.mobile-visible + #_open-side-toc-overall { position: fixed; top: .75rem; @@ -2116,7 +2114,6 @@ body.scroll-up main.sticky article .version-info { #_side-toc-overall.mobile-visible + #_open-side-toc-overall { right: .75rem; left: unset; } } - main.sticky #_open-side-toc-overall { top: 68px; position: fixed; } @@ -2140,7 +2137,6 @@ body.scroll-up main.sticky #_open-side-toc-overall { @media screen and (min-width: 1024px) { #_unfold-side-toc-page { display: none; } } - body.normal #_unfold-side-toc-page { margin-left: 0; } @@ -3432,33 +3428,3 @@ article a:hover code { content: " (" attr(href) ") ↗"; color: unset; background-image: none; } } - - -main #_side-toc-page { - background-color: #efefef; - padding-left: 1.5rem; -} - -.side-toc .side-title { - margin-block:0.5rem; - font-size: 14px; - font-weight: 600; - margin-top:1rem; -} - .side-toc a { - /*color: #26915e;*/ - color: #30BA78; - padding:0; - padding-block:0.4rem; - font-weight: 500; -} - .side-toc .toc a:focus, .side-toc .toc a:hover, .side-toc .toc a:active { - background-color:transparent; -} - main article{ - padding-inline:3rem; -} - .article h1.title{ - font-size: 42px; - margin-bottom: 0.5rem; -}