@charset "UTF-8";
/* Another Content Framework */
/* Copyright 2014-2022 Logan Jaeren */
/* Last Updated: 04-24-2022 */

/* ==========================================================================
   global
   ========================================================================== */

html, body {
	height: 100%;
}


/* ==========================================================================
   typography
   ========================================================================== */

body {
	/* Global font family */
	font: 16px/1.5 "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; /* 16px/20px */
	font-weight: 400;
	color: #444;
	background-color: inherit;
    overflow: hidden;
}

code,
kbd,
pre,
samp {
	font-family: "Roboto Mono", monospace;
	font-weight: 400;
	font-size: 15px;
}

small {
	display: inline-block;
	font-size: 75%;
	line-height: 125%;
}

main.acf h1,
main.acf h2,
main.acf h3,
main.acf h4,
main.acf h5,
main.acf h6 {
    position: relative;
	font-weight: 400;
	margin: 16px 0 8px;
	line-height: normal;
}

main.acf h1 {
	font-size: 26px;
}

main.acf h2 {
	font-size: 22px;
}

main.acf h3 {
	font-size: 20px;
}

main.acf h4 {
	font-size: 18px;
}

main.acf h5 {
	font-size: 16px;
}

main.acf h6 {
	font-size: 15px;
}

main.acf > header:first-child,
main.acf header.sectionTitle {
	font-size: 40px;
	font-weight: 300;
	line-height: 1.2;
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 10px;
}

/* Prism code highlighting */
pre[class*="language-"] {
	clear: both;
	overflow: auto !important;
 }

/* jump to page */
main.acf *[data-href] {
    cursor: pointer;
}


/* ==========================================================================
   page content containers
   ========================================================================== */

#acf-pages {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch; /* enable iOS momentum scolling */
	-ms-touch-action: pan-y; /* fix IE11, WP8.1 and WP10 swipe issues */
	touch-action: pan-y; /* fix IE11, WP8.1 and WP10 swipe issues */
}

#acf-pages.pin {
	left: 300px;
	right: 0;
	width: auto;
}

#acf-pages div[data-index] {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
}

#acf-pages div[data-index].active {
	display: block;
}

div.main-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #fff;
	-webkit-transition:All 1s;
	-moz-transition:All 1s;
	-ms-transition:All 1s;
	-o-transition:All 1s;
	transition:All 1s;
	-webkit-overflow-scrolling: touch; /* enable iOS momentum scolling */
	-ms-touch-action: pan-y; /* fix IE11, WP8.1 and WP10 swipe issues */
	touch-action: pan-y; /* fix IE11, WP8.1 and WP10 swipe issues */
}

div.scrolling {
	position: absolute;
	left: 0;
	width: 100%;
    outline: none;
}


/* ==========================================================================
   main content and section rules
   ========================================================================== */

main.acf {
	width: 100%;
	padding: 70px 15px 15px 15px;
	background-color: inherit;
    /*overflow-x: hidden;*/
}

main.acf section {
	margin: 40px 0;
}

/* remove the top margin from the first content element */
main.acf section > *:first-child,
main.acf section > nav.topics-list,
main.acf section > nav.topics-list + h2 {
	margin-top: 0;
}

/*
 * apply clearfix to main, wrapper and sections
 */

main.acf::before,
main.acf::after,
main.acf section::before,
main.acf section::after {
	content:" ";
	display: table;
} 

main.acf::after,
main.acf section::after {
	clear:both;
}


/* ==========================================================================
   page topics list
   ========================================================================== */

div.main-container nav.topics-list {
	position: fixed;
    bottom: 40px;
    right: 40px;
    max-width: calc(100vw - 60px);
    max-height: calc(100vh - 60px);
	padding: 16px;
	background-color: #f8f8f8;
    border-radius: 10px;
    color: #aaa;
    text-shadow: none;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.4s;
    overflow-x: hidden;
    overflow-y: auto;
	z-index: 0;
}

.no-touch div.main-container nav.topics-list.scrollbar {
    right: 60px;
}


div.main-container nav.topics-list.active {
	z-index: 208;
    opacity: 1;
}


div.main-container nav.topics-list header {
    color: #666;
}

div.main-container nav.topics-list ul {
    list-style: disc;
    padding-left: 18px;
}

div.main-container nav.topics-list li a {
	display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #0077c9;
	font-size: 16px;
	line-height: 38px;
	text-decoration: none;
	outline: none;
}

.no-touch div.main-container nav.topics-list li a:hover {
	text-decoration: underline;
}

div.main-container nav.topics-list li:last-child a {
	line-height: normal;
	margin-top: 8px;
}

div.main-container nav.topics-list + section {
	margin-top: 0;
}

div.main-container nav.topics-list.pos2 {
    max-height: calc(100vh - 115px);
    bottom: 101px;
}

div.main-container nav.topics-list.pos3 {
    max-height: calc(100vh - 200px);
    bottom: 180px;
}

div.main-container nav.topics-list li.acf-topic-group {
    list-style: none;
    color: #666;
    font-weight: 500;
    border-bottom: 1px solid #bbb;
    margin-left: -18px;
    padding-top: 8px;
}



/* ==========================================================================
   footer nav elements
   ========================================================================== */

footer.acf {
	height: 50px;
	margin: 0;
	overflow: hidden;
	border-top: 1px solid #ddd;
}

footer.acf.hide {
	display: none;
}

footer.acf div.prev-page,
footer.acf div.next-page {
	float: left;
	height: inherit;
	width: 50%;
	color: #aaa;
	cursor: pointer;
}

footer.acf div.prev-page div.container.dark-color,
footer.acf div.next-page div.container.dark-color {
	color: #444;
}

footer.acf div.prev-page div.container,
footer.acf div.next-page div.container {
	height: inherit;
	background-color: transparent !important;
    transition: all 0.5s;
}

footer.acf div.prev-page div.container {
	margin-right: 1px;
	margin-left: 0;
	padding: 2px 15px 0 44px;
	text-align: left;
    background-image: url(../img/chevron-prev-aaaaaa.svg);
    background-position: left 18px center;
    background-repeat: no-repeat;
    background-size: auto 24px;
}

footer.acf div.prev-page div.container.dark-color {
    background-image: url(../img/chevron-prev-444444.svg);
}

footer.acf div.next-page div.container {
	margin-left: 1px;
	margin-right: 0;
	padding: 2px 44px 0 15px;
	text-align: right;
    background-image: url(../img/chevron-next-aaaaaa.svg);
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: auto 24px;
}

footer.acf div.next-page div.container.dark-color {
    background-image: url(../img/chevron-next-444444.svg);
}

footer.acf div.container div.section {
    position: relative;
    top: 5px;
	color: rgba(68, 68, 68, 0.6);
	font-size: 11px;
	font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer.acf div.prev-page div.container.dark-color div.section,
footer.acf div.next-page div.container.dark-color div.section {
	color: rgba(68, 68, 68, 0.6);
}

footer.acf div.container div.page {
	position: relative;
    top: 6px;
	display: inline-block;
	font-size: 18px;
    line-height: normal;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
}

footer.acf div.container div.page.no-section {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.no-touch footer.acf div.prev-page div.container div.section,
.no-touch footer.acf div.next-page div.container div.section,
.no-touch footer.acf div.prev-page div.container div.page,
.no-touch footer.acf div.next-page div.container div.page {
    transition: all 0.5s;
}

.no-touch footer.acf div.prev-page div.container:hover div.section,
.no-touch footer.acf div.next-page div.container:hover div.section,
.no-touch footer.acf div.prev-page div.container:hover div.page,
.no-touch footer.acf div.next-page div.container:hover div.page {
	color: #0077c9;
}

.touch footer.acf div.prev-page div.container div.section,
.touch footer.acf div.next-page div.container div.section,
.touch footer.acf div.prev-page div.container div.page,
.touch footer.acf div.next-page div.container div.page {
	color: #aaa;
}


/* conditional classes */

footer.acf.last-page div.prev-page,
footer.acf.first-page div.next-page {
	width: 100%;
}

footer.acf.first-page div.prev-page,
footer.acf.last-page div.next-page {
	display: none;
}


/* ==========================================================================
   Flyout Menu
   ========================================================================== */

#acf-flyout {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	background: #e8e8e8;
	color: #444;
	max-width: -moz-calc(100% - 75px);
	max-width: -webkit-calc(100% - 75px);
	max-width: -o-calc(100% - 75px);
	max-width: calc(100% - 75px);
	-webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
	-ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
	-o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
	-webkit-transition:All 0.3s;
	-moz-transition:All 0.3s;
	-ms-transition:All 0.3s;
	-o-transition:All 0.3s;
	transition:All 0.3s;
	-webkit-transform: translateX(-105%);
	-moz-transform: translateX(-105%);
	-ms-transform: translateX(-105%);
	-o-transform: translateX(-105%);
	transform: translateX(-105%);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch; /* enable iOS momentum scolling */
	-ms-touch-action: pan-y; /* fix IE11, WP8.1 and WP10 swipe issues */
	touch-action: pan-y; /* fix IE11, WP8.1 and WP10 swipe issues */
	z-index: 210;
}

#acf-flyout.active {
	-webkit-transform: translateX(75px);
	-moz-transform: translateX(75px);
	-ms-transform: translateX(75px);
	-o-transform: translateX(75px);
	transform: translateX(75px);
}

#acf-flyout.pin {
	width: 300px;
	border-right: 2px solid #c3c3c3;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

/*
 * flyout header
 */
 
#acf-flyout > header {
	padding: 15px;
	overflow: hidden;
	border-bottom: 1px solid #c3c3c3;
	line-height: 0;
	background-color: #fff;
}

#acf-flyout > header img {
	height: 60px;
}

/*
 * rules applied to multiple flyout nav elements
 */
 
#acf-flyout nav header,
#acf-flyout nav section,
#acf-flyout nav li {
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#acf-flyout nav header,
#acf-flyout nav section {
	padding-right: 40px;
}

#acf-flyout nav section,
#acf-flyout nav li {
	line-height: 36px;
}

/*
 * flyout group header
 */

#acf-flyout nav header {
	padding-top: 8px;
	padding-left: 16px;
	background-color: #e8e8e8;
	line-height: 1.5;
    font-weight: 400;
}

#acf-flyout nav header:first-child {
	margin-top: 0;
}

/*
 * flyout section
 */

#acf-flyout nav section {
    position: sticky;
    top: 0px;
	padding-left: 16px;
	font-weight: 400;
    background-color: #ddd;
    transition: all 0.3s;
    z-index: 220;
}

#acf-flyout nav section.active {
    background-color: #e8e8e8;
}

.no-touch #acf-flyout nav section:hover {
	color: #0077c9;
	cursor: pointer;
    background-color: #c8c8c8;
}

/* faux border between sections */
#acf-flyout nav ul + section.active {
	/* background-image: linear-gradient(to right, transparent, #e8e8e8 0); */
	background-position-x: 30px;
	background-repeat: no-repeat;
	background-size: 100% 1px;
}

#acf-flyout nav section.active + ul.active {
	/* background-image: linear-gradient(to right, transparent, #e8e8e8 0); */
	background-position-x: 30px;
	background-position-y: 100%;
	background-repeat: no-repeat;
	background-size: 100% 1px;
}


#acf-flyout nav ul.active + section,
#acf-flyout nav ul.active:last-child {
	background-image: none !important;
}

/* expand/collapse section graphic */

#acf-flyout nav section::before {
	content: '';
	display: block;
	position: absolute;
	height: 36px;
	width: 36px;
	top: 50%;
	right: 0;
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: center;
	background-image: url(../img/close-444444.svg);
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.2s;
}

.no-touch #acf-flyout nav section:hover::before {
	background-image: url(../img/close-0077c9.svg);
}

#acf-flyout nav section.active::before {
	-webkit-transform: translateY(-50%) rotate(0deg);
	-moz-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	-o-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
}

/*
 * flyout nav list items
 */
 
#acf-flyout nav section + ul {
	display: none;
    margin: 4px 8px 16px;
    background-color: #fbfbfb;
    border-radius: 10px;
}

#acf-flyout nav section.hidden + ul {
	display: block;
}

#acf-flyout nav ul.active {
	display: block;
}

#acf-flyout nav li {
    position: relative;
	margin: 5px 8px;
	padding: 0 32px;
	font-weight: 400;
	border-radius: 998px;
	border: 1px solid transparent;
	transition: border-color 0.2s;
}

#acf-flyout nav li:first-child:not(.heading) {
	margin-top: 5px;
}

.no-touch #acf-flyout nav li:not(.active):not(.tbd)[data-id][data-href]:hover {
	background-image: url(../img/chevron-right-0077c9.svg);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: auto 40%;
	color: #0077c9;
	cursor: pointer;
}

.touch #acf-flyout nav li:not(.tbd)[data-id][data-href] {
    background-repeat: no-repeat;
    background-position: right 10px top 8px, left 30px bottom;
    background-size: auto 40%, 100% 1px;
    background-image: url(../img/chevron-right-0077c9.svg), linear-gradient(to right, #ddd, transparent);
    cursor: pointer;
}

.touch #acf-flyout nav li:not(.tbd)[data-id][data-href]:last-child {
    background-image: url(../img/chevron-right-0077c9.svg)
}

.no-touch #acf-flyout nav li:not(.active):not(.tbd)[data-id][data-href]:hover {
    background-color: #f6f6f6;
	border-color: #bbb;
}

#acf-flyout nav li.active {
    font-weight: 700;
/*
	background-color: rgba(243,251,245,1);
	border-color: #1eb848;
*/
}

.no-touch #acf-flyout nav li.active:hover {
	cursor: default;
	color: inherit;
}

#acf-flyout nav li:not([data-id]):not([data-href]):not(.heading),
#acf-flyout nav li.tbd {
	color: #aaa;
	text-decoration: line-through;
	cursor: not-allowed;
	border-style: dashed;
}

#acf-flyout nav li.heading {
    margin: 0;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 12px;
	background-color: #ddd; /*#edeff0;*/
	line-height: 1.5;
	font-size: 14px;
	font-weight: 400;
    border-radius: 8px 8px 0 0;
}


/* list item badges */

#acf-flyout nav li::before {
	content: '';
	position: absolute;
    left: 4px;
	width: 16px;
	height: 36px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
}
/*
#acf-flyout nav li.new::before,
#acf-flyout nav li.mod::before {
	left: 4px;
}
*/

#acf-flyout nav li.heading::before {
    display: none;
}

#acf-flyout footer div.legend p.new,
#acf-flyout nav li.new::before {
	background-image: url(../img/icon-new.svg);
}

#acf-flyout footer div.legend p.mod,
#acf-flyout nav li.mod::before {
	background-image: url(../img/icon-modified.svg);
}

#acf-flyout footer div.legend p.active,
#acf-flyout nav li.active::before {
	background-image: url(../img/icon-active.svg);
}

#acf-flyout nav li.active::before {
/*	left: 4px; */
/*    background-color: #f8f8f8;*/
}

#acf-flyout nav li.no-badge:not(.active)::before {
	display: none;
}

/*
 * flyout footer
 */
 
#acf-flyout footer {
	border-top: 1px solid #c3c3c3;
}

#acf-flyout footer p {
	font-size: 14px;
}

#acf-flyout footer div.legend {
    padding: 0px 16px 0 13px;
	border-bottom: 1px solid #c3c3c3;
}

#acf-flyout footer div.legend p.symbol {
	padding-left: 28px;
	background-repeat: no-repeat;
    background-position: left top 2px;
    background-size: 16px;
}

#acf-flyout footer div.copyright {
    padding: 8px 16px 10px;
}

#acf-flyout footer div.copyright p {
    margin: 0;
    font-size: 12px;
    text-shadow: none;
    color: #444;
}

#acf-flyout footer div.copyright a {
    color: #0077c9;
}


/* ==========================================================================
   Nav Buttons (flyout, prev, next, top)
   ========================================================================== */

div.acf-nav-button,
span.acf-nav-button {
    display: inline-block;
	position: fixed;
	width: 44px;
	height: 44px;
	border-radius: 998px;
	background-color: rgba(128, 128, 128, 0.8);
	background-size: auto 22px;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	-webkit-transition:All 0.5s;
	-moz-transition:All 0.5s;
	-ms-transition:All 0.5s;
	-o-transition:All 0.5s;
	transition:All 0.5s;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.no-touch div.acf-nav-button:hover,
.no-touch span.acf-nav-button:hover{
	-webkit-transform: scale(1.10);
	-moz-transform: scale(1.10);
	-ms-transform: scale(1.10);
	-o-transform: scale(1.10);
	transform: scale(1.10);
}

.no-touch #acf-topics-button:hover,
.no-touch #acf-flyout-button:hover,
.no-touch #acf-scrolltop-button:hover,
.no-touch #acf-pin-button:hover {
	background-color: rgba(100, 100, 100, 0.8);
}


/* ==========================================================================
   Flyout Button
   ========================================================================== */

#acf-flyout-button {
	left: 15px;
	background-image: url(../img/icon-flyout-ffffff.svg);
	z-index: 201;
}

#acf-flyout-button.active {
	z-index: 209;
}


/* ==========================================================================
   Previous/next page button/callout elements + 
   ========================================================================== */

#acf-prev-button,
#acf-next-button {
	background-color: rgba(102, 170, 221, 0.8);
}

div.acf-nav-button,
div.acf-nav-callout {
	top: 15px;
}

#acf-prev-button,
#acf-prev-callout {
	right: 74px;
}

#acf-next-button,
#acf-next-callout,
#acf-prev-button.last-page,
#acf-prev-callout.last-page {
	right: 15px;
}

#acf-prev-button.first-page,
#acf-prev-callout.first-page,
#acf-next-button.last-page,
#acf-next-callout.last-page {
	opacity: 0;
	visibility: hidden;
}

.no-touch #acf-prev-button.scrollbar,
.no-touch #acf-prev-callout.scrollbar {
	right: 94px;
}

.no-touch #acf-topics-button.scrollbar,
.no-touch #acf-scrolltop-button.scrollbar,
.no-touch #acf-next-button.scrollbar,
.no-touch #acf-next-callout.scrollbar,
.no-touch #acf-prev-button.last-page.scrollbar,
.no-touch #acf-prev-callout.last-page.scrollbar {
	right: 35px;
}

div.acf-nav-callout span.page-title {
    display: inline-block;
    position: relative;
    bottom: 1px;
}

div.acf-nav-callout span.section-title {
    display: inline-block;
    position: relative;
    bottom: 1px;
    font-size: 16px;
    line-height: 20px;
    margin-left: 12px;
    border-left: 1px solid #ccc;
    padding-left: 12px;
}


/* ==========================================================================
   Previous/next page button elements
   ========================================================================== */

#acf-prev-button {
	z-index: 203;
	background-image: url(../img/chevron-prev-ffffff.svg)
}

#acf-prev-button.dark-color {
	background-image: url(../img/chevron-prev-444444.svg);
}

#acf-next-button {
	z-index: 205;
	background-image: url(../img/chevron-next-ffffff.svg);
}

#acf-next-button.dark-color {
	background-image: url(../img/chevron-next-444444.svg);
}

div.acf-nav-callout {
	visibility: hidden;
	position: fixed;
	width: 44px;
	min-width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 18px;
	border-radius: 998px;
/*	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: rgba(102, 170, 221, 0.8);
	background-color: rgba(255, 255, 255, 1);*/
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition:All 0.5s;
	-moz-transition:All 0.5s;
	-ms-transition:All 0.5s;
	-o-transition:All 0.5s;
	transition:All 0.5s;
	opacity: 0;
}

#acf-prev-callout {
	z-index: 202;
}

#acf-next-callout {
	z-index: 204;
}

#acf-prev-callout.first-page,
#acf-next-callout.last-page {
	display: none;
}

div.acf-nav-callout.active {
	padding-right: 55px;
	padding-left: 10px;
	visibility: visible;
	width: auto;
	opacity: 1;
}



/* ==========================================================================
   Topics button
   ========================================================================== */

#acf-topics-button {
    visibility: hidden;
    top: auto;
    bottom: 15px;
    right: 15px;
	background-image: url("../img/list-ul-ffffff.svg");
    opacity: 0;
    transition: all 0.4s;
	z-index: 209;
}

#acf-topics-button.pos2 {
    bottom: 76px;
}

#acf-topics-button.pos3 {
    bottom: 155px;
}

#acf-topics-button.close {
	background-image: url("../img/close-ffffff.svg");
}

#acf-topics-button.active {
	visibility: visible;
	opacity: 1;
}



/* ==========================================================================
   Jump to top button
   ========================================================================== */

#acf-scrolltop-button {
	visibility: hidden;
	top: auto;
	right: 15px;
	bottom: 15px;
    background-image: url(../img/icon-jumptop-ffffff.svg);
	opacity: 0;
    transition: all 0.4s;
	z-index: 201;
}

#acf-scrolltop-button.active {
	visibility: visible;
	opacity: 1;
}

#acf-scrolltop-button.pos2 {
	bottom: 90px;
}


/* ==========================================================================
   Floating callout
   ========================================================================== */

#acf-floating-callout {
    position: fixed;
    top: 15px;
    left: 70px;
    height: 44px;
    width: calc(100vw - 200px);
    max-width: 300px;
    padding: 4px 16px;
    border-radius: 10px;
    background-color: rgba(56, 56, 56, 1);
    text-align: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 5s, width 0.5s;
    z-index: 200;
}

.no-touch #acf-floating-callout.scrollbar {
    width: calc(100vw - 220px);
}

#acf-floating-callout.first-page,
#acf-floating-callout.last-page {
    width: calc(100vw - 140px);
    left: 50%;
    transform: translateX(-50%);
}

.no-touch #acf-floating-callout.first-page.scrollbar,
.no-touch #acf-floating-callout.last-page.scrollbar {
    width: calc(100vw - 160px);
    left: calc(50% - 10px);
}

#acf-floating-callout.active {
    opacity: 1;
    transition: all 0.5s;
}

#acf-floating-callout span {
    display: block;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

#acf-floating-callout span.section-title {
    font-size: 11px;
    font-weight: 300;
}

#acf-floating-callout span.page-title {
    font-size: 18px;
    font-weight: 400;
}



/* ==========================================================================
   Pin button
   ========================================================================== */

#acf-pin-button {
	visibility: hidden;
	top: 75px;
	left: 15px;
	background-image: url(../img/icon-pin-ffffff.svg);
	background-size: auto 25px;
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	-o-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	z-index: 209;
}

.no-touch #acf-pin-button:hover {
	-webkit-transform: scale(1.10) rotate(20deg);
	-moz-transform: scale(1.10) rotate(20deg);
	-ms-transform: scale(1.10) rotate(20deg);
	-o-transform: scale(1.10) rotate(20deg);
	transform: scale(1.10) rotate(20deg);
}

#acf-pin-button.active {
	visibility: visible;
}

#acf-pin-button.pin {
	top: auto;
    bottom: 15px;
	z-index: 211;
	-webkit-transform: scale(1) rotate(20deg);
	-moz-transform: scale(1) rotate(20deg);
	-ms-transform: scale(1) rotate(20deg);
	-o-transform: scale(1) rotate(20deg);
	transform: scale(1) rotate(20deg);
}

.no-touch #acf-pin-button.pin:hover {
	-webkit-transform: scale(1.10) rotate(0deg);
	-moz-transform: scale(1.10) rotate(0deg);
	-ms-transform: scale(1.10) rotate(0deg);
	-o-transform: scale(1.10) rotate(0deg);
	transform: scale(1.10) rotate(0deg);
}


/* ==========================================================================
   Hidden Text
   ========================================================================== */

.more {
	display: inline-block;
	position: relative;
	color: #0077c9;
	cursor: pointer;
}

.no-touch .more:hover {
	text-decoration: underline;
}

.more::after {
	content: attr(data-more);
    padding-left: 0.5em;
}

.more.active::after {
	content: attr(data-less);
}

.more.small {
	font-size: 0.875em;
}

.more.xsmall {
	font-size: 0.75em;
}

.more.no-glyph {
	padding-left: 0;
}

.more.no-glyph::before {
	display: none;
}

.more.button {
	background-color: #0077c9;
	border-radius: 998px;
	color: white;
	padding: 0 10px 0 6px;
}

.more-content {
	display: none;
}

	
/* ==========================================================================
   Image Styles
   ========================================================================== */

img.floatLeft {
	margin-right: 16px;
	margin-bottom: 8px;
}

img.floatRight {
	margin-left: 16px;
	margin-bottom: 8px;
}


/* ==========================================================================
   System button styles
   ========================================================================== */

/* primary system button style */

li.system-button,
div.system-button {
	display: inline-block;
	box-sizing: border-box;
	background-color: #0077c9;
	border: 1px solid #0077c9;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
	-webkit-border-radius: 998px;
	-moz-border-radius: 998px;
	-ms-border-radius: 998px;
	-o-border-radius: 998px;
	border-radius: 998px;
	-webkit-transition:All 0.5s;
	-moz-transition:All 0.5s;
	-ms-transition:All 0.5s;
	-o-transition:All 0.5s;
	transition:All 0.5s;
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
}

li.system-button a,
li.system-button a:link,
li.system-button a:active,
li.system-button a:visited,
div.system-button a,
div.system-button a:link,
div.system-button a:active,
div.system-button a:visited {
	display: block;
	color: #fff;
	font-weight: normal;
	padding: 0 10px;
	line-height: 36px;
	text-decoration: none;
}

/* secondary button styles */

li.system-button.secondary,
div.system-button.secondary {
	background-color: transparent;
}

li.system-button.secondary a,
div.system-button.secondary a {
	color: #0077c9;
}

/* primary system button hover styles */

.no-touch li.system-button:hover,
.no-touch div.system-button:hover {
	cursor: pointer;
}

.no-touch li.system-button:hover a,
.no-touch div.system-button:hover a,
.no-touch li.system-button a:hover,
.no-touch div.system-button a:hover {
	color: #fff;
}

/* secondary system button hover styles */

.no-touch li.system-button.secondary:hover,
.no-touch div.system-button.secondary:hover {
	background-color: #0077c9;
}

.no-touch li.system-button.secondary a:hover,
.no-touch div.system-button.secondary a:hover {
	color: #fff;
}

/* disabled system button styles */

li.system-button.disabled,
div.system-button.disabled {
	background-color: transparent;
	border-color: #ddd;
}

li.system-button.disabled a,
div.system-button.disabled a {
	color: #ddd;
}

/* disabled system button hover styles */

.no-touch li.system-button.disabled:hover,
.no-touch div.system-button.disabled:hover {
	background-color: transparent;
	cursor: not-allowed;
}

.no-touch li.system-button.disabled:hover a,
.no-touch div.system-button.disabled:hover a,
.no-touch li.system-button.disabled a:hover,
.no-touch div.system-button.disabled a:hover {
	color: #ddd;
	cursor: not-allowed;
}

/* full width system button */

li.system-button.fullwidth,
div.system-button.fullwidth {
	width: 100%;
}

/* small height system button */

div.system-button.small a {
	padding: 2px 10px;
	line-height: normal;
}

/* inline system button spacing */

div.system-button + div.system-button {
	margin-left: 0.5em;
}

/* block level system button */

div.system-button.clear {
	clear: both;
}


/* ==========================================================================
   UI Mask (overlay shim)
   ========================================================================== */

#acf-ui-mask {
	visibility: hidden;
	display: block;
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-image: linear-gradient(to right, rgba(204, 204, 204, 1) 100px, rgba(204, 204, 204, .7) 101px);
	z-index: 209;
}

#acf-ui-mask.active {
	visibility: visible;
}

.no-touch #acf-ui-mask.active:hover {
	cursor: default;
}

#acf-ui-mask.pin {
	visibility: hidden;
}



/* ==========================================================================
   Page Transitions
   ========================================================================== */

/*
 * slide transition (pageTransition=1)
 */
 
#acf-pages div[data-index].ct1 {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

#acf-pages div[data-index].slide {
	z-index: 50;
}

#acf-pages div[data-index].left div.main-container {
	left: -100%;
	overflow: hidden;
	border-right: 3px solid #444;
}

#acf-pages div[data-index].right div.main-container {
	left: 100%;
	overflow: hidden;
	border-left: 3px solid #444;
}

/*
 * BookBlock pageflip transition (pageTransition=2)
 */

div.bb-custom-wrapper,
div.bb-bookblock {
	width: 100%;
	height: 100%;
	-webkit-perspective: 2000px;
	perspective: 2000px;
}

div.bb-item {
	overflow: hidden;
}



/*
    show element
*/

.fade-in {
    display: none;
    opacity: 0;
}

.fade-in.active {
    display: block;
    animation: fade-in 0.5s forwards;
}


/* ANIMATIONS */

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* ==========================================================================
   Spinner
   ========================================================================== */

#spinner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: #66aadd;
	z-index: 1000;
}

#spinner > div {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 20px;
	font-weight: 300;
	color: #fff;
}


/* ==========================================================================
   2, 3, 4, 5 and 6 column grid layouts
   ========================================================================== */

div.row::before,
div.row::after {
	content: " ";
	display: table;
} 

div.row::after {
	clear: both;
}

div.row + div.row {
	margin-top: 20px;
}

.flexbox div.row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	clear: both;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-content: space-between;
	-ms-flex-line-pack: justify;
	align-content: space-between;
	-webkit-box-align: start;
	-moz-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

div.row div.col {
	overflow: hidden;
}

.flexbox div.row div.col {
	position: relative;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
	width: 1px;
}

.flexbox div.row.twoColumnCol1Wide2x > div.col:first-child {
	-webkit-box-flex: 2;
	-moz-box-flex: 2;
	-webkit-flex: 2 0 auto;
	-ms-flex: 2 0 auto;
	flex: 2 0 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
}

.flexbox div.row.twoColumnCol1Wide3x > div.col:first-child {
	-webkit-box-flex: 3;
	-moz-box-flex: 3;
	-webkit-flex: 3 0 auto;
	-ms-flex: 3 0 auto;
	flex: 3 0 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
}

.no-flexbox div.row {
	box-sizing: border-box;
}

.no-flexbox div.row > div.col {
	float: left;
	box-sizing: border-box;
}

.no-flexbox div.row.twoColumn > div.col {
	width: 50%;
}

.no-flexbox div.row.twoColumnCol1Wide2x > div.col {
	width: 35%;
}

.no-flexbox div.row.twoColumnCol1Wide2x > div.col:first-child {
	width: 65%;
}

.no-flexbox div.row.twoColumnCol1Wide3x > div.col {
	width: 25%;
}

.no-flexbox div.row.twoColumnCol1Wide3x > div.col:first-child {
	width: 75%;
}

.no-flexbox div.row.threeColumn > div.col {
	width: 33.333333%;
}

.no-flexbox div.row.fourColumn > div.col {
	width: 25%;
}

.no-flexbox div.row.fiveColumn > div.col {
	width: 20%;
}

.no-flexbox div.row.sixColumn > div.col {
	width: 16.66666666666667%;
}


/* ==========================================================================
   Column spacing helper classes
   ========================================================================== */

div.row.colSpacing20 {
	margin-left: -20px;
}

div.row.colSpacing20 > div.col {
	padding-left: 20px;
}

div.row.colSpacing40 {
	margin-left: -40px;
}

div.row.colSpacing40 > div.col {
	padding-left: 40px;
}



/* ==========================================================================
   Media Queries
   ========================================================================== */

@media screen and (min-width: 520px) {

	/* floating callout */
    #acf-floating-callout:not(.first-page):not(.last-page) {
        left: calc(50%);
        transform: translateX(calc(-50% - 30px));
    }
    
    .no-touch #acf-floating-callout.scrollbar:not(.first-page):not(.last-page) {
        left: calc(50%);
        transform: translateX(calc(-50% - 40px));
    }
}

@media screen and (min-width: 680px) {

	/* Prismjs code style */
	pre[class*="language-"] {
		clear: none;
	}

	/*
	 * footer
	 */
    
    footer.acf {
        height: 60px;
    }

	footer.acf div.prev-page div.container,
	footer.acf div.next-page div.container {
		padding-top: 0;
		-moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-o-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}
    
	footer.acf div.prev-page div.container {
		padding-left: 55px;
	}

	footer.acf div.next-page div.container {
		padding-right: 55px;
	}

	footer.acf div.container div.section {
        top: 8px;
		font-size: 14px;
	}
	footer.acf div.container div.page {
        top: 10px;
		font-size: 22px;
	}
}

@media screen and (min-width: 768px) {

	#acf-next-button.first-page.pin,
	#acf-next-callout.first-page.pin,
	#acf-next-button.first-page,
	#acf-next-callout.first-page {
		top: 15px;
	}

	#acf-prev-button,
	#acf-prev-callout {
		top: 80px;
		right: 15px;
	}

	#acf-prev-button.last-page,
	#acf-prev-callout.last-page {
		top: 15px;
	}

	.no-touch #acf-prev-button.scrollbar,
	.no-touch #acf-prev-callout.scrollbar {
		right: 35px;
	}
    
    #acf-floating-callout.scrollbar:not(.first-page):not(.last-page),
    .no-touch #acf-floating-callout.scrollbar:not(.first-page):not(.last-page) {
        left: calc(50%);
        transform: translateX(-50%);
    }
}

@media screen and (min-width: 1024px) {
	main.acf, footer.acf {
		margin-left: auto;
		margin-right: auto;
		max-width: 1024px;
		width: auto;
	}
}

@media screen and (min-width: 1180px) {
    #acf-scrolltop-button.pos2 {
        bottom: 15px;
    }

    #acf-topics-button.pos3 {
        bottom: 76px;
    }

    div.main-container nav.topics-list.pos2 {
    bottom: 40px;
    }

    div.main-container nav.topics-list.pos3 {
        bottom: 101px;
    }
}