@charset "UTF-8";
@charset "UTF-8";
/*
Theme Name: Maywood
Theme URI: https://github.com/Automattic/themes/tree/master/maywood
Author: Automattic
Author URI: https://automattic.com/
Description: Maywood is a refined theme designed for restaurants and food-related businesses seeking a modern look.
Requires at least: WordPress 4.9.6
Version: 1.4.3
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: maywood
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, jetpack-global-styles

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Varia is based on Underscores https://underscores.me/, (C) 2012-2019 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/**
 * Abstracts
 * - Mixins, variables and functions
 */
/**
 * Abstracts
 * - Mixins, variables and functions
 */
/* Sass Functions go here */
/**
 * Map deep get
 * @author Hugo Giraudel
 * @access public
 * @param {Map} $map - Map
 * @param {Arglist} $keys - Key chain
 * @return {*} - Desired value
 *
 * Example:
 * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
 */
/**
 * Deep set function to set a value in nested maps
 * @author Hugo Giraudel
 * @access public
 * @param {Map} $map - Map
 * @param {List} $keys -  Key chaine
 * @param {*} $value - Value to assign
 * @return {Map}
 *
 * Example:
 * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
 */
/**
 * jQuery-style extend function
 * - Child themes can use this function to `reset` the values in
 *   config maps without editing the `master` Sass files.
 * - src: https://www.sitepoint.com/extra-map-functions-sass/
 * - About `map-merge()`:
 * - - only takes 2 arguments
 * - - is not recursive
 * @param {Map} $map - first map
 * @param {ArgList} $maps - other maps
 * @param {Bool} $deep - recursive mode
 * @return {Map}
 *
 * Examples:

$grid-configuration-default: (
	'columns': 12,
	'layouts': (
		'small': 800px,
		'medium': 1000px,
		'large': 1200px,
	),
);

$grid-configuration-custom: (
	'layouts': (
		'large': 1300px,
		'huge': 1500px
	),
);

$grid-configuration-user: (
	'direction': 'ltr',
	'columns': 16,
	'layouts': (
		'large': 1300px,
		'huge': 1500px
	),
);

// $deep: false
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
// --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")

// $deep: true
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
// --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")

 */
/**
 * Button
 */
/**
 * Cover
 */
/**
 * Heading
 */
/**
 * List
 */
/**
 * Pullquote
 */
/**
 * Quote
 */
/**
 * Separator
 */
/**
 * Responsive breakpoints
 * - breakpoints values are defined in _config-global.scss
 */
/**
 * Align wide widths
 * - Sets .alignwide widths
 */
/**
 * Crop Text Boundry
 * - Sets a fixed-width on content within alignwide and alignfull blocks
 */
/**
 * Add font-family using CSS variables.
 * It also adds the proper fallback for browsers without support.
 */
/**
 * Child Theme Deep
 */
/**
 * Redefine Sass map values for child theme output.
 * - See: style-child-theme.scss
 */
/**
 * Global
 */
/**
 * Elements
 */
/**
 * Button
 */
/**
 * Cover
 */
/**
 * Heading
 */
/**
 * List
 */
/**
 * Pullquote
 */
/**
 * Quote
 */
/**
 * Separator
 */
/**
 * Header
 */
/**
 * Footer
 */
/**
 * Base
 * - Reset the browser
 */
/**
 * Base
 * - Reset the browser
 */
/**
 * Button Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
button[data-load-more-btn], button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
	line-height: 1;
	color: white;
	cursor: pointer;
	font-weight: 700;
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
	background-color: #897248;
	border-radius: 5px;
	border-width: 0;
	padding: 16px 16px;
}

button[data-load-more-btn]:before, button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}

button[data-load-more-btn]:before, button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
	margin-bottom: -0.12em;
}

button[data-load-more-btn]:after, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	margin-top: -0.11em;
}

button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
	color: white;
	background-color: #685636;
}

/**
 * Onsale Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
	overflow: scroll;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
/**
 * Apply border-box across the entire page.
 */
html {
	box-sizing: border-box;
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*, *::before, *::after {
	box-sizing: inherit;
}

/**
 * HTML resets
 */
html {
	font-size: 16.66667px;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	line-height: 1.6;
}

@media only screen and (min-width: 560px) {
	html {
		font-size: 20px;
	}
}

body {
	font-size: 1rem;
	font-weight: normal;
	color: #181818;
	text-align: left;
	background-color: #FFFFFF;
}

/**
 * Links styles
 */
a {
	color: #897248;
}

a:hover {
	color: #685636;
}

button,
a {
	cursor: pointer;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #FFFFFF;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #181818;
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/**
 * Measure
 * - The width of a line of text, in characters, is known as its measure.
 */
header *,
main *,
footer * {
	max-width: unset;
}

html,
body,
div,
header,
nav,
article,
figure,
hr,
main,
section,
footer {
	max-width: none;
}

::selection {
	background-color: lightblue;
}

::-moz-selection {
	background-color: lightblue;
}

/**
 * Layout
 * - Structral and responsive styles
 */
/**
 * Layout
 * - Structral and responsive styles
 */
/**
 * Site Structure
 *
 * - Set vertical margins and responsive widths on
 *   top-level wrappers and content wrappers
 * - `--global--width-content` is a responsive veriable
 * - See: globals/_global-width-responsive.scss
 */
/**
 * Top Level Wrappers (header, main, footer)
 * - Set vertical padding and horizontal margins
 */
.site-header,
.site-main,
.site-footer {
	padding: 16px 16px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 560px) {
	.site-header,
	.site-main,
	.site-footer {
		padding-top: 32px;
		padding-right: 0;
		padding-bottom: 32px;
		padding-left: 0;
	}
}

/**
 * Site-main children wrappers
 * - Add double vertical margins here for clearer heirarchy
 */
.site-main > * {
	margin-top: calc(3 * 32px);
	margin-bottom: calc(3 * 32px);
}

.site-main > *:first-child {
	margin-top: 0;
}

.site-main > *:last-child {
	margin-bottom: 0;
}

/**
 * Major content sections (article, author-bio, pagination, comments, etc.)
 * - Set a maximum responsive content-width
 *
 * .responsive-max-width is a group selector replacing the following:
 * .site-header,
 * .site-main,
 * .site-footer
 * .entry-header,
 * .post-thumbnail,
 * .entry-content,
 * .entry-footer,
 * .author-bio,
 * .widget-area
 */
/*
 * Block & non-gutenberg content wrappers
 * - Set margins
 */
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer,
.author-bio,
.widget-area {
	margin-top: 32px;
	margin-right: auto;
	margin-bottom: 32px;
	margin-left: auto;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-vertical margin logic
 */
.site-footer > *,
.site-main > article > *,
.site-main > .not-found > *,
.entry-content > *,
[class*="inner-container"] > *,
.widget-area > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.site-footer > *,
	.site-main > article > *,
	.site-main > .not-found > *,
	.entry-content > *,
	[class*="inner-container"] > *,
	.widget-area > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.site-footer > *:first-child,
.site-main > article > *:first-child,
.site-main > .not-found > *:first-child,
.entry-content > *:first-child,
[class*="inner-container"] > *:first-child,
.widget-area > *:first-child {
	margin-top: 0;
}

.site-footer > *:last-child,
.site-main > article > *:last-child,
.site-main > .not-found > *:last-child,
.entry-content > *:last-child,
[class*="inner-container"] > *:last-child,
.widget-area > *:last-child {
	margin-bottom: 0;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-unit margins
 */
.site-header > *,
.entry-header > *,
.post-thumbnail > *,
.page-content > *,
.comment-content > *,
.author-bio > *,
.widget-area > .widget > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

.site-header > *:first-child,
.entry-header > *:first-child,
.post-thumbnail > *:first-child,
.page-content > *:first-child,
.comment-content > *:first-child,
.author-bio > *:first-child,
.widget-area > .widget > *:first-child {
	margin-top: 0;
}

.site-header > *:last-child,
.entry-header > *:last-child,
.post-thumbnail > *:last-child,
.page-content > *:last-child,
.comment-content > *:last-child,
.author-bio > *:last-child,
.widget-area > .widget > *:last-child {
	margin-bottom: 0;
}

/*
 * .entry-content children specific controls
 * - Adds special margin overrides for alignment utility classes
 */
.entry-content > * {
	/* Reset alignleft and alignright margins after alignfull */
}

.entry-content > *.alignleft, .entry-content > *.alignright,
.entry-content > *.alignleft:first-child + *,
.entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
	margin-top: 0;
}

.entry-content > *:last-child, .entry-content > *.alignfull {
	margin-bottom: 0;
}

.entry-content > *.alignfull + .alignleft,
.entry-content > *.alignfull + .alignright {
	margin-top: 32px;
}

/**
 * Elements
 * - Styles for basic HTML elemants
 */
/**
 * Elements
 * - Styles for basic HTML elemants
 */
blockquote {
	padding-left: 16px;
}

blockquote p {
	font-size: 1.2rem;
	letter-spacing: normal;
	line-height: 1.125;
}

blockquote cite,
blockquote footer {
	font-size: 0.83333rem;
	letter-spacing: normal;
}

blockquote > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

blockquote > *:first-child {
	margin-top: 0;
}

blockquote > *:last-child {
	margin-bottom: 0;
}

blockquote.alignleft, blockquote.alignright {
	padding-left: inherit;
}

blockquote.alignleft p, blockquote.alignright p {
	font-size: 1rem;
	max-width: inherit;
	width: inherit;
}

blockquote.alignleft cite,
blockquote.alignleft footer, blockquote.alignright cite,
blockquote.alignright footer {
	font-size: 0.69444rem;
	letter-spacing: normal;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #181818;
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	padding: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #181818;
	border-color: #685636;
}

select {
	border: 1px solid #CCCCCC;
}

textarea {
	width: 100%;
}

input[type=checkbox] + label {
	display: inline;
	margin-left: 0.5em;
	margin-right: 2em;
	line-height: 1em;
}

figcaption {
	color: #686868;
	font-size: 0.69444rem;
	margin-top: calc(0.5 * 16px);
	margin-bottom: 16px;
	text-align: center;
}

.alignleft figcaption,
.alignright figcaption {
	margin-bottom: 0;
}

/* WP Smiley */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/**
 * Blocks
 * - These styles replace key Gutenberg Block styles for fonts, colors, and
 *   spacing with CSS-variables overrides
 * - In the future the Block styles may get compiled to individual .css
 *   files and conditionally loaded
 */
/**
 * Blocks
 * - These styles replace key Gutenberg Block styles with font, color, and
 *   spacing with CSS-variables overrides
 * - In the future the Block styles may get compiled to individual .css
 *   files and conditionally loaded
 */
.wp-block-audio {
	min-width: inherit;
}

.wp-block-audio.alignleft, .wp-block-audio.alignright {
	min-width: 300px;
}

.wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
	margin-bottom: 16px;
}

.wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
	margin-right: 32px;
}

.wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
	margin-left: 32px;
}

.wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
	padding: 32px;
}

.wp-block-newspack-blocks-homepage-articles.is-grid article {
	margin-top: 0;
	margin-bottom: 64px;
}

@media only screen and (min-width: 560px) {
	.wp-block-newspack-blocks-homepage-articles.is-grid article {
		margin-bottom: 96px;
	}
}

.wp-block-newspack-blocks-homepage-articles .article-section-title {
	font-size: 1rem;
	margin-bottom: 16px;
}

.wp-block-newspack-blocks-homepage-articles .article-section-title + article {
	margin-top: 0;
}

.wp-block-newspack-blocks-homepage-articles article {
	display: block;
	/* Vertical margins logic between posts */
	margin-top: 64px;
	margin-bottom: 64px;
}

@media only screen and (min-width: 560px) {
	.wp-block-newspack-blocks-homepage-articles article {
		margin-top: 96px;
		margin-bottom: 96px;
	}
}

.wp-block-newspack-blocks-homepage-articles article:first-child {
	margin-top: 0;
}

.wp-block-newspack-blocks-homepage-articles article:last-child {
	margin-bottom: 96px;
}

.wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
	width: auto;
}

.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
	/* Vertical margins logic between post details */
	margin-top: 16px;
	margin-bottom: 16px;
}

.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
	margin-top: 0;
}

.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
	margin-bottom: 0;
}

.wp-block-newspack-blocks-homepage-articles article .entry-title a {
	color: #897248;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
	color: currentColor;
}

.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	color: #685636;
	text-decoration: underline;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	color: currentColor;
}

@media only screen and (min-width: 560px) {
	.wp-block-newspack-blocks-homepage-articles article .more-link {
		margin-top: 16px;
	}
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta,
.wp-block-newspack-blocks-homepage-articles article .cat-links {
	color: #686868;
	font-size: 0.83333rem;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links,
[style*="background-color"]
.wp-block-newspack-blocks-homepage-articles article .cat-links {
	color: currentColor;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
.wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
	vertical-align: top;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
.wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
	margin-right: 16px;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
.wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
	display: none;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta a,
.wp-block-newspack-blocks-homepage-articles article .cat-links a {
	color: currentColor;
	text-decoration: underline;
}

.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
	color: #685636;
	text-decoration: none;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
[style*="background-color"]
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
[style*="background-color"]
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
	color: currentColor;
}

/**
 * Button Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
button[data-load-more-btn], button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
	line-height: 1;
	color: white;
	cursor: pointer;
	font-weight: 700;
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
	background-color: #897248;
	border-radius: 5px;
	border-width: 0;
	padding: 16px 16px;
}

button[data-load-more-btn]:before, button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}

button[data-load-more-btn]:before, button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
	margin-bottom: -0.12em;
}

button[data-load-more-btn]:after, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
	margin-top: -0.11em;
}

button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
	color: white;
	background-color: #685636;
}

/**
 * Onsale Placeholder style
 * - Since buttons appear in various blocks,
 *   let’s use a placeholder to keep them all
 *   in-sync
 */
button[data-load-more-btn] {
	display: inline-block;
}

.has-background:not(.has-background-background-color) button[data-load-more-btn],
[class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
[style*="background-color"] button[data-load-more-btn] {
	background-color: transparent;
	border: 2px solid currentColor;
	color: currentColor;
}

/**
 * Button
 */
/**
 * Block Options
 */
.wp-block-button.is-style-outline .wp-block-button__link {
	color: #897248;
	background: transparent;
	border: 2px solid currentcolor;
	padding: 14px 16px;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
	color: #685636;
}

.wp-block-button.is-style-squared .wp-block-button__link {
	border-radius: 0;
}

.wp-block-code {
	color: #181818;
	font-size: 0.83333rem;
	padding: 16px;
	border-color: #CCCCCC;
}

.wp-block-code pre {
	color: #181818;
}

.wp-block-columns {
	/**
	 * Block Options
	 */
}

.wp-block-columns .wp-block-column > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-columns .wp-block-column > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-columns .wp-block-column > *:first-child {
	margin-top: 0;
}

.wp-block-columns .wp-block-column > *:last-child {
	margin-bottom: 0;
}

.wp-block-columns .wp-block-column:last-child {
	margin-bottom: 0;
}

.wp-block-columns .wp-block-column:not(:last-child) {
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-columns .wp-block-column:not(:last-child) {
		margin-bottom: 32px;
	}
}

@media only screen and (min-width: 782px) {
	.wp-block-columns .wp-block-column:not(:last-child) {
		/* Resetting margins to match _block-container.scss */
		margin-bottom: 0;
	}
}

.wp-block-columns.alignfull {
	padding-left: 16px;
	padding-right: 16px;
}

.wp-block-columns.alignfull:not(:first-child) {
	margin-top: 32px;
}

.wp-block-columns.alignfull:not(:last-child) {
	margin-bottom: 32px;
}

.wp-block-cover,
.wp-block-cover-image {
	background-color: black;
	min-height: 480px;
	margin-top: inherit;
	margin-bottom: inherit;
	/* default & custom background-color */
	/* Treating H2 separately to account for legacy /core styles */
	/**
	 * Block Options
	 */
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text {
	color: currentColor;
	margin-top: 32px;
	margin-bottom: 32px;
}

.wp-block-cover .wp-block-cover__inner-container a,
.wp-block-cover .wp-block-cover-image-text a,
.wp-block-cover .wp-block-cover-text a,
.wp-block-cover-image .wp-block-cover__inner-container a,
.wp-block-cover-image .wp-block-cover-image-text a,
.wp-block-cover-image .wp-block-cover-text a {
	color: currentColor;
}

.wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
.wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
.wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
.wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
.wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
.wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text {
	color: white;
}

.wp-block-cover h2,
.wp-block-cover-image h2 {
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
	max-width: inherit;
	text-align: inherit;
	padding: 0;
}

.wp-block-cover h2.has-text-align-left,
.wp-block-cover-image h2.has-text-align-left {
	text-align: left;
}

.wp-block-cover h2.has-text-align-center,
.wp-block-cover-image h2.has-text-align-center {
	text-align: center;
}

.wp-block-cover h2.has-text-align-right,
.wp-block-cover-image h2.has-text-align-right {
	text-align: right;
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
	width: calc(100% - 64px);
}

.wp-block-cover .wp-block-cover__inner-container > *,
.wp-block-cover-image .wp-block-cover__inner-container > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-cover .wp-block-cover__inner-container > *,
	.wp-block-cover-image .wp-block-cover__inner-container > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-cover .wp-block-cover__inner-container > *:first-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
	margin-top: 0;
}

.wp-block-cover .wp-block-cover__inner-container > *:last-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
	margin-bottom: 0;
}

.wp-block-cover.alignleft, .wp-block-cover.alignright,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright {
	margin-top: 0;
}

.wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
.wp-block-cover-image.alignleft > *,
.wp-block-cover-image.alignright > * {
	margin-top: calc(2 * 32px);
	margin-bottom: calc(2 * 32px);
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
.wp-block-cover-image.has-left-content,
.wp-block-cover-image.has-right-content {
	justify-content: center;
}

.wp-block-file .wp-block-file__button {
	background-color: #897248;
	color: white;
	font-size: 0.83333rem;
	margin-left: 16px;
	margin-right: 16px;
}

.wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
	display: inherit;
}

.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:visited {
	color: white;
	opacity: .85;
}

.wp-block-gallery {
	margin: 0;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
	margin: 0;
	color: white;
	font-size: 0.69444rem;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
	width: calc( (100% - 16px) / 2);
}

.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
	max-width: 50%;
}

.wp-block-group .wp-block-group__inner-container {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-group .wp-block-group__inner-container > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-group .wp-block-group__inner-container > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-group .wp-block-group__inner-container > *:first-child {
	margin-top: 0;
}

.wp-block-group .wp-block-group__inner-container > *:last-child {
	margin-bottom: 0;
}

.wp-block-group.has-background {
	padding: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-group.has-background {
		padding: 32px;
	}
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: 700;
	clear: both;
}

h1, .h1 {
	font-size: 2.0736rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h2, .h2 {
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h3, .h3 {
	font-size: 1.44rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h4, .h4 {
	font-size: 1.2rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h5, .h5 {
	font-size: 1rem;
	letter-spacing: normal;
	line-height: 1.125;
}

h6, .h6 {
	font-size: 0.83333rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-image {
	text-align: center;
}

.wp-block-image figcaption {
	color: #686868;
	font-size: 0.69444rem;
	margin-top: calc(0.5 * 16px);
	margin-bottom: 16px;
	text-align: center;
}

.entry-content > *[class="wp-block-image"],
.entry-content [class*="inner-container"] > *[class="wp-block-image"] {
	margin-top: 0;
	margin-bottom: 0;
}

.entry-content > *[class="wp-block-image"] + *,
.entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
	margin-top: 0;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

.wp-block-latest-comments {
	padding-left: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment {
	font-size: 0.83333rem;
	line-height: 1.6;
	/* Vertical margins logic */
	margin-top: 32px;
	margin-bottom: 32px;
}

.wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
	margin-top: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
	margin-bottom: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
}

.wp-block-latest-comments .wp-block-latest-comments__comment-date {
	color: #686868;
	font-size: 0.83333rem;
}

.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
	font-size: 0.83333rem;
	line-height: 1.6;
	margin: 0;
}

.wp-block-latest-posts {
	padding-left: 0;
}

.wp-block-latest-posts > li {
	/* Vertical margins logic */
	margin-top: 32px;
	margin-bottom: 32px;
}

.wp-block-latest-posts > li:first-child {
	margin-top: 0;
}

.wp-block-latest-posts > li:last-child {
	margin-bottom: 0;
}

.wp-block-latest-posts > li > a {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.125;
}

.wp-block-latest-posts .wp-block-latest-posts__post-date {
	color: #686868;
	font-size: 0.69444rem;
	line-height: 1.6;
}

.entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
.entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
	color: currentColor;
}

.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-latest-posts__post-full-content {
	font-size: 0.83333rem;
	line-height: 1.6;
	margin: 0;
}

.wp-block-latest-posts.alignfull {
	padding-left: 16px;
	padding-right: 16px;
}

.entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
.entry-content .has-background .wp-block-latest-posts.alignfull {
	padding-left: 0;
	padding-right: 0;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-item a {
	display: block;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

ul,
ol {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	margin: 0;
	padding-left: 32px;
}

ul.aligncenter,
ol.aligncenter {
	list-style-position: inside;
	padding: 0;
}

ul.alignright,
ol.alignright {
	list-style-position: inside;
	text-align: right;
	padding: 0;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

dt {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: bold;
}

dd {
	margin: 0;
	padding-left: 32px;
}

.wp-block-media-text {
	/**
	 * Block Options
	 */
}

.wp-block-media-text .wp-block-media-text__content {
	padding: 16px;
}

@media only screen and (min-width: 640px) {
	.wp-block-media-text .wp-block-media-text__content {
		padding: 32px;
	}
}

.wp-block-media-text .wp-block-media-text__content > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-media-text .wp-block-media-text__content > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-media-text .wp-block-media-text__content > *:first-child {
	margin-top: 0;
}

.wp-block-media-text .wp-block-media-text__content > *:last-child {
	margin-bottom: 0;
}

.wp-block-media-text[class*="background-color"]:not(.has-background-background-color) .wp-block-media-text__content a, .wp-block-media-text[style*="background-color"] .wp-block-media-text__content a {
	color: currentColor;
}

@media only screen and (min-width: 560px) {
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
		padding-top: 32px;
		padding-bottom: 32px;
	}
}

p.has-background {
	padding: 16px 16px;
}

.a8c-posts-list__listing {
	list-style: none;
	margin: 0;
	padding: 0;
}

.a8c-posts-list__listing:not(:last-child) {
	margin-bottom: calc(3 * 32px);
}

.a8c-posts-list-item__featured span {
	color: #FFFFFF;
	background-color: #897248;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: bold;
	font-size: 0.83333rem;
	line-height: 1;
	padding: calc(0.5 * 16px) calc(0.66 * 16px);
}

.a8c-posts-list__item {
	display: block;
	/* Vertical margins logic between posts */
	margin-top: calc(3 * 32px);
	margin-bottom: calc(3 * 32px);
}

.a8c-posts-list__item:first-child {
	margin-top: 0;
}

.a8c-posts-list__item:last-child {
	margin-bottom: 0;
}

.a8c-posts-list__item .entry > * {
	/* Vertical margins logic between post details */
	margin-top: 16px;
	margin-bottom: 16px;
}

.a8c-posts-list__item .entry > *:first-child {
	margin-top: 0;
}

.a8c-posts-list__item .entry > *:last-child {
	margin-bottom: 0;
}

.a8c-posts-list__item .a8c-posts-list-item__meta {
	color: #686868;
	font-size: 0.83333rem;
}

.a8c-posts-list__item .a8c-posts-list-item__meta a {
	color: currentColor;
}

.a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
	color: #685636;
}

.a8c-posts-list__item .a8c-posts-list-item__edit-link {
	margin-left: 16px;
}

.a8c-posts-list__view-all {
	display: inline-block;
}

.wp-block-pullquote {
	padding: calc( 3 * 16px) 0;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	border-top-color: #CCCCCC;
	border-top-width: 4px;
	border-bottom-color: #CCCCCC;
	border-bottom-width: 4px;
	color: #181818;
	/**
	 * Block Options
	 */
}

.wp-block-pullquote p {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 1.2rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-pullquote a {
	color: currentColor;
}

.wp-block-pullquote .wp-block-pullquote__citation,
.wp-block-pullquote cite,
.wp-block-pullquote footer {
	color: #686868;
	font-size: 0.83333rem;
	letter-spacing: normal;
	display: block;
}

.wp-block-pullquote:not(.is-style-solid-color) {
	background: none;
}

.wp-block-pullquote:not(.is-style-solid-color) blockquote {
	padding-left: 0;
}

.wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
	text-align: center;
}

.wp-block-pullquote.is-style-solid-color {
	background-color: #897248;
	color: #FFFFFF;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	padding-left: 16px;
	padding-right: 16px;
	max-width: inherit;
}

.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
.wp-block-pullquote.is-style-solid-color cite,
.wp-block-pullquote.is-style-solid-color footer {
	color: currentColor;
}

.wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-quote {
	border-left-color: #897248;
	margin: 32px 0;
	padding-left: 16px;
	/**
	 * Block Options
	 */
}

.wp-block-quote > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

.wp-block-quote > *:first-child {
	margin-top: 0;
}

.wp-block-quote > *:last-child {
	margin-bottom: 0;
}

.wp-block-quote p {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 1.2rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
	color: #686868;
	font-size: 0.83333rem;
	letter-spacing: normal;
}

.has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
[style*="background-color"] .wp-block-quote .wp-block-quote__citation,
.wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
.wp-block-quote cite,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-quote cite,
[style*="background-color"]
.wp-block-quote cite,
.wp-block-cover[style*="background-image"]
.wp-block-quote cite, .has-background:not(.has-background-background-color)
.wp-block-quote footer,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-quote footer,
[style*="background-color"]
.wp-block-quote footer,
.wp-block-cover[style*="background-image"]
.wp-block-quote footer {
	color: currentColor;
}

.wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
	border-right-color: #897248;
}

.wp-block-quote.is-style-large, .wp-block-quote.is-large {
	/* Resetting margins to match _block-container.scss */
	margin-top: 32px;
	margin-bottom: 32px;
	padding: 0;
}

.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
	font-size: 1.44rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer {
	color: #686868;
	font-size: 0.83333rem;
	letter-spacing: normal;
}

.has-background:not(.has-background-background-color) .wp-block-quote,
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
[style*="background-color"] .wp-block-quote,
.wp-block-cover[style*="background-image"] .wp-block-quote {
	border-color: currentColor;
}

hr {
	border-bottom: 2px solid #CCCCCC;
	clear: both;
	margin-left: auto;
	margin-right: auto;
}

hr.wp-block-separator {
	border-bottom: 2px solid #CCCCCC;
	/**
		 * Block Options
		 */
}

hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
	max-width: 96px;
}

hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
	background-color: transparent !important;
}

hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
	color: currentColor !important;
}

hr.wp-block-separator.is-style-dots:before {
	color: #CCCCCC;
	font-size: 1.728rem;
	letter-spacing: 0.83333rem;
	padding-left: 0.83333rem;
}

.has-background:not(.has-background-background-color) hr.wp-block-separator,
[class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
[style*="background-color"] hr.wp-block-separator,
.wp-block-cover[style*="background-image"] hr.wp-block-separator {
	border-color: currentColor;
}

.wp-block-jetpack-slideshow ul {
	margin-left: 0;
	margin-right: 0;
}

.wp-block-spacer {
	display: block;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

@media only screen and (max-width: 559px) {
	.wp-block-spacer[style] {
		height: 16px !important;
	}
}

.jetpack_subscription_widget input[type="text"] {
	padding: 16px !important;
	width: 100% !important;
}

table,
.wp-block-table {
	width: 100%;
	min-width: 240px;
	border-collapse: collapse;
}

table th,
.wp-block-table th {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
}

table td,
table th,
.wp-block-table td,
.wp-block-table th {
	padding: calc( 0.5 * 16px);
	border: 1px solid;
	word-break: break-all;
}

.wp-block-video figcaption {
	color: #686868;
	font-size: 0.69444rem;
	margin-top: calc(0.5 * 16px);
	margin-bottom: 16px;
	text-align: center;
}

* > figure > video {
	max-width: unset;
	width: 100%;
	vertical-align: middle;
}

/* Block Alignments */
/**
 * .alignleft
 */
.alignleft {
	/*rtl:ignore*/
	text-align: left;
	/*rtl:ignore*/
	float: left;
	margin-top: 0;
	/*rtl:ignore*/
	margin-right: 16px;
	margin-bottom: 32px;
}

/**
 * .aligncenter
 */
.aligncenter {
	clear: both;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

/**
 * .alignright
 */
.alignright {
	/*rtl:ignore*/
	float: right;
	margin-top: 0;
	margin-bottom: 32px;
	/*rtl:ignore*/
	margin-left: 16px;
}

.entry-content * > .alignleft + *,
.entry-content * > .alignright + * {
	margin-top: 0;
}

/**
 * .aligndefault
 */
/**
 * .alignwide
 */
.alignwide {
	clear: both;
}

/**
 * .alignfull
 */
.alignfull {
	clear: both;
}

.has-left-content {
	justify-content: flex-start;
}

.has-right-content {
	justify-content: flex-end;
}

.has-parallax {
	background-attachment: fixed;
}

.has-primary-color[class] {
	color: #897248 !important;
}

.has-secondary-color[class] {
	color: #c4493f !important;
}

.has-foreground-color[class] {
	color: #181818 !important;
}

.has-foreground-light-color[class] {
	color: #686868 !important;
}

.has-foreground-dark-color[class] {
	color: #020202 !important;
}

.has-background-light-color[class] {
	color: #F7F7F7 !important;
}

.has-background-dark-color[class] {
	color: #CCCCCC !important;
}

.has-background-color[class] {
	color: #FFFFFF !important;
}

.has-background:not(.has-background-background-color) a,
.has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
	color: currentColor;
}

.has-primary-background-color[class] {
	background-color: #897248 !important;
	color: #FFFFFF;
}

.has-secondary-background-color[class] {
	background-color: #c4493f !important;
	color: #FFFFFF;
}

.has-foreground-background-color[class] {
	background-color: #181818 !important;
	color: #FFFFFF;
}

.has-foreground-light-background-color[class] {
	background-color: #686868 !important;
	color: #FFFFFF;
}

.has-foreground-dark-background-color[class] {
	background-color: #020202 !important;
	color: #FFFFFF;
}

.has-background-light-background-color[class] {
	background-color: #F7F7F7 !important;
	color: #181818;
}

.has-background-dark-background-color[class] {
	background-color: #CCCCCC !important;
	color: #181818;
}

.has-background-background-color[class] {
	background-color: #FFFFFF !important;
	color: #181818;
}

.is-small-text,
.has-small-font-size {
	font-size: 0.83333rem;
}

.is-regular-text,
.has-regular-font-size,
.has-normal-font-size,
.has-medium-font-size {
	font-size: 1rem;
}

.is-large-text,
.has-large-font-size {
	font-size: 1.44rem;
	line-height: 1.125;
}

.is-larger-text,
.has-larger-font-size,
.has-huge-font-size {
	font-size: 1.728rem;
	line-height: 1.125;
}

.has-drop-cap:not(:focus)::first-letter {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: calc(2 * 2.0736rem);
	font-weight: 700;
	line-height: 0.66;
	text-transform: uppercase;
	font-style: normal;
	float: left;
	margin: 0.1em 0.1em 0 0;
}

.has-drop-cap:not(:focus)::after {
	content: "";
	display: table;
	clear: both;
	padding-top: 14px;
}

.desktop-only {
	display: none;
}

@media only screen and (min-width: 560px) {
	.desktop-only {
		display: block;
	}
}

/**
 * Spacing Overrides
 */
/*
 * Margins
 */
.margin-top-none {
	margin-top: 0 !important;
}

.margin-top-half {
	margin-top: 16px !important;
}

.margin-top-default {
	margin-top: 32px !important;
}

.margin-right-none {
	/*rtl:ignore*/
	margin-right: 0 !important;
}

.margin-right-half {
	/*rtl:ignore*/
	margin-right: 16px !important;
}

.margin-right-default {
	/*rtl:ignore*/
	margin-right: 32px !important;
}

.margin-bottom-none {
	margin-bottom: 0 !important;
}

.margin-bottom-half {
	margin-bottom: 16px !important;
}

.margin-bottom-default {
	margin-bottom: 32px !important;
}

.margin-left-none {
	/*rtl:ignore*/
	margin-left: 0 !important;
}

.margin-left-half {
	/*rtl:ignore*/
	margin-left: 16px !important;
}

.margin-left-default {
	/*rtl:ignore*/
	margin-left: 32px !important;
}

/*
 * Padding
 */
.padding-top-none {
	padding-top: 0 !important;
}

.padding-top-half {
	padding-top: 16px !important;
}

.padding-top-default {
	padding-top: 32px !important;
}

.padding-right-none {
	/*rtl:ignore*/
	padding-right: 0 !important;
}

.padding-right-half {
	/*rtl:ignore*/
	padding-right: 16px !important;
}

.padding-right-default {
	/*rtl:ignore*/
	padding-right: 32px !important;
}

.padding-bottom-none {
	padding-bottom: 0 !important;
}

.padding-bottom-half {
	padding-bottom: 16px !important;
}

.padding-bottom-default {
	padding-bottom: 32px !important;
}

.padding-left-none {
	/*rtl:ignore*/
	padding-left: 0 !important;
}

.padding-left-half {
	/*rtl:ignore*/
	padding-left: 16px !important;
}

.padding-left-default {
	/*rtl:ignore*/
	padding-left: 32px !important;
}

/**
 * Components
 * - Similar to Blocks but exist outside of the "current" editor context
 */
/*
 * Components
 * - Similar to Blocks but exist outside of the "current" editor context
 */
.site-branding {
	color: #686868;
}

.site-title {
	color: #181818;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	letter-spacing: normal;
	line-height: 1;
}

.site-title a {
	color: currentColor;
	font-weight: 700;
}

.site-title a:link, .site-title a:visited {
	color: currentColor;
}

.site-title a:hover {
	color: #897248;
}

.site-description {
	color: currentColor;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
}

body:not(.fse-enabled) .site-title {
	font-size: 1.2rem;
}

body:not(.fse-enabled) .site-description {
	font-size: 0.83333rem;
}

.main-navigation {
	color: #181818;
}

.main-navigation > div {
	display: none;
}

.main-navigation #toggle-menu {
	display: inline-block;
	margin: 0;
}

.main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
	display: block;
}

.main-navigation #toggle:focus + #toggle-menu {
	background-color: #897248;
	outline: inherit;
	text-decoration: underline;
}

.main-navigation .dropdown-icon.close {
	display: none;
}

.main-navigation #toggle:checked + #toggle-menu .open {
	display: none;
}

.main-navigation #toggle:checked + #toggle-menu .close {
	display: inline;
}

@media only screen and (min-width: 560px) {
	.main-navigation > div {
		display: inline-block;
	}
	.main-navigation #toggle-menu {
		display: none;
	}
	.main-navigation > div > ul > li > ul {
		display: none;
	}
}

.main-navigation > div > ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	max-width: none;
	padding-left: 0;
	position: relative;
	/* Sub-menus Flyout */
}

.main-navigation > div > ul ul {
	padding-left: 0;
}

.main-navigation > div > ul li {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

.main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
	cursor: pointer;
	z-index: 99999;
}

.main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
	cursor: pointer;
	z-index: 99999;
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul li {
		display: inherit;
		width: inherit;
		/* Submenu display */
	}
	.main-navigation > div > ul li:hover > ul,
	.main-navigation > div > ul li[focus-within] > ul,
	.main-navigation > div > ul li ul:hover,
	.main-navigation > div > ul li ul:focus {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	.main-navigation > div > ul li:hover > ul,
	.main-navigation > div > ul li:focus-within > ul,
	.main-navigation > div > ul li ul:hover,
	.main-navigation > div > ul li ul:focus {
		visibility: visible;
		opacity: 1;
		display: block;
	}
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul > li > a {
		line-height: 1;
	}
	.main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
		content: '';
		display: block;
		height: 0;
		width: 0;
	}
	.main-navigation > div > ul > li > a:before {
		margin-bottom: -0.12em;
	}
	.main-navigation > div > ul > li > a:after {
		margin-top: -0.11em;
	}
	.main-navigation > div > ul > li:first-of-type > a {
		padding-left: 0;
	}
	.main-navigation > div > ul > li:last-of-type > a {
		padding-right: 0;
	}
}

.main-navigation > div > ul > li > .sub-menu {
	margin: 0;
	position: relative;
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul > li > .sub-menu {
		background: #FFFFFF;
		box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
		left: 0;
		top: 100%;
		min-width: max-content;
		opacity: 0;
		position: absolute;
		transition: all 0.5s ease;
		visibility: hidden;
	}
}

.main-navigation > div > ul > li > .sub-menu .sub-menu {
	width: 100%;
}

.main-navigation a {
	color: #181818;
	display: block;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: 700;
	padding: 4px 0;
}

@media only screen and (min-width: 560px) {
	.main-navigation a {
		padding: 8px;
	}
}

.main-navigation a:link, .main-navigation a:visited {
	color: #181818;
}

.main-navigation a:hover {
	color: #897248;
}

.main-navigation .sub-menu {
	list-style: none;
	margin-left: 0;
	/* Reset the counter for each UL */
	counter-reset: nested-list;
}

.main-navigation .sub-menu .menu-item a {
	padding-top: 4px;
	padding-bottom: 4px;
}

.main-navigation .sub-menu .menu-item a::before {
	/* Increment the dashes */
	counter-increment: nested-list;
	/* Insert dashes with spaces in between */
	content: "– " counters(nested-list, "– ", none);
}

@media only screen and (min-width: 560px) {
	.main-navigation > div > ul > .menu-item-has-children > a::after {
		content: "\00a0\25BC";
		display: inline-block;
		font-size: 0.69444rem;
		height: inherit;
		width: inherit;
	}
}

.main-navigation .hide-visually {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

body:not(.fse-enabled) .main-navigation a {
	font-size: 1rem;
}

.social-navigation > div > ul {
	align-content: center;
	display: flex;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.social-navigation > div > ul > li:first-of-type > a {
	padding-left: 0;
}

.social-navigation > div > ul > li:last-of-type > a {
	padding-right: 0;
}

.social-navigation a {
	color: #181818;
	display: inline-block;
	padding: 0 calc( 0.5 * calc(0.66 * 16px ));
}

.social-navigation a:hover {
	color: #897248;
}

.social-navigation svg {
	fill: currentColor;
	vertical-align: middle;
}

.site-footer {
	overflow: hidden;
}

@media only screen and (min-width: 640px) {
	.site-footer {
		align-items: flex-end;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.site-info {
	color: #686868;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 0.83333rem;
}

@media only screen and (min-width: 640px) {
	.site-info {
		order: 1;
		flex: 1 0 50%;
		margin-top: 0;
		margin-bottom: 0;
	}
}

.site-info .site-name {
	font-weight: bold;
}

.site-info a {
	color: currentColor;
}

.site-info a:link, .site-info a:visited {
	color: currentColor;
}

.site-info a:hover {
	color: #685636;
}

.footer-navigation {
	display: inline;
}

@media only screen and (min-width: 640px) {
	.footer-navigation {
		flex: 1 0 50%;
		order: 2;
		margin-top: 0;
		margin-bottom: 0;
		text-align: right;
	}
}

.footer-navigation > div {
	display: inline;
}

.footer-navigation .footer-menu {
	color: #686868;
	margin: 0;
	padding-left: 0;
}

@media only screen and (min-width: 640px) {
	.footer-navigation .footer-menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}

.footer-navigation .footer-menu > li {
	display: inline;
}

.footer-navigation .footer-menu > li:first-of-type > a {
	padding-left: 0;
}

.footer-navigation .footer-menu > li:last-of-type {
	padding-right: 0;
}

.footer-navigation .footer-menu a {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: 700;
	padding: 8px;
	color: currentColor;
}

.footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
	color: currentColor;
}

.footer-navigation .footer-menu a:hover {
	color: #685636;
}

body:not(.fse-enabled) .footer-menu a {
	font-size: 0.83333rem;
}

.entry-title {
	font-size: 1.728rem;
	letter-spacing: normal;
	line-height: 1.125;
}

.entry-meta,
.entry-footer {
	color: #686868;
	clear: both;
	float: none;
	font-size: 0.83333rem;
	display: block;
}

.entry-meta > span,
.entry-footer > span {
	display: inline-block;
	margin-right: 16px;
}

.entry-meta > span > *,
.entry-footer > span > * {
	display: inline-block;
	vertical-align: middle;
}

.entry-meta > span:last-child,
.entry-footer > span:last-child {
	margin-right: 0;
}

.entry-meta > span .published + .updated,
.entry-footer > span .published + .updated {
	display: none;
}

.entry-meta a,
.entry-footer a {
	color: currentColor;
}

.entry-meta a:hover, .entry-meta a:active,
.entry-footer a:hover,
.entry-footer a:active {
	color: #685636;
}

.entry-meta .svg-icon,
.entry-footer .svg-icon {
	fill: currentColor;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-right: calc(0.25 * 16px);
}

/**
 * Entry Content
 */
.entry-content p {
	word-wrap: break-word;
}

.entry-content .more-link {
	display: block;
	color: inherit;
	margin-top: 16px;
}

@media only screen and (min-width: 560px) {
	.entry-content .more-link {
		margin-top: 32px;
	}
}

.entry-content .more-link:after {
	content: "\02192";
	display: inline-block;
	margin-left: 0.5em;
}

.entry-content .more-link:hover {
	text-decoration: none;
}

.entry-content > iframe[style] {
	margin: 32px 0 !important;
	max-width: 100% !important;
}

@media only screen and (min-width: 560px) {
	.entry-content > iframe[style] {
		max-width: 32px !important;
	}
}

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

/**
 * Post Thumbnails
 */
.post-thumbnail {
	text-align: center;
}

.post-thumbnail .post-thumbnail-inner {
	display: block;
}

/**
 * Author
 */
/* Author description */
.site-main > article > .author-bio {
	margin-top: calc(2 * 32px);
}

.author-bio .author-title {
	font-size: 1.44rem;
}

/* Next/Previous navigation */
.post-navigation .meta-nav {
	font-size: 0.83333rem;
}

.post-navigation .post-title {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 1.44rem;
	font-weight: 600;
}

.post-navigation .nav-next,
.post-navigation .nav-previous {
	margin-top: 32px;
	margin-bottom: 32px;
}

.post-navigation .nav-next:first-child,
.post-navigation .nav-previous:first-child {
	margin-top: 0;
}

.post-navigation .nav-next:last-child,
.post-navigation .nav-previous:last-child {
	margin-bottom: 0;
}

.pagination .nav-links {
	justify-content: start;
	margin: 0 calc(-0.66 * 16px);
}

.pagination .nav-links > * {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 1.2rem;
	font-weight: 600;
	padding-left: calc(0.66 * 16px);
	padding-right: calc(0.66 * 16px);
}

.pagination .nav-links .svg-icon {
	display: inline-block;
	vertical-align: middle;
}

@media only screen and (min-width: 560px) {
	.nav-links {
		display: flex;
		justify-content: space-between;
	}
	.nav-links .nav-next,
	.nav-links .nav-previous {
		flex: 0 1 auto;
		margin-bottom: inherit;
		margin-top: inherit;
		max-width: calc(50% - (0.5 * 16px));
	}
	.nav-links .nav-next {
		text-align: right;
	}
}

/**
 * Comments Wrapper
 */
.comments-area > * {
	margin-top: 32px;
	margin-bottom: 32px;
}

.comments-area > *:first-child {
	margin-top: 0;
}

.comments-area > *:last-child {
	margin-bottom: 0;
}

/**
 * Comment Title
 */
.comments-title {
	font-size: 1.44rem;
	letter-spacing: normal;
}

.comment-reply-title {
	font-size: 1.728rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.comment-reply-title small {
	font-size: 1rem;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-base, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	letter-spacing: normal;
	line-height: 1.125;
}

/**
 * Comment Lists
 */
.comment-list {
	border-bottom: 1px solid #CCCCCC;
	padding-left: 0;
	list-style: none;
}

.comment-list > li {
	border-top: 1px solid #CCCCCC;
	margin-top: 32px;
	margin-bottom: 32px;
}

.comment-list .children {
	list-style: none;
	padding-left: 16px;
}

.comment-list .children > li {
	border-top: 1px solid #CCCCCC;
	margin-top: 32px;
	margin-bottom: 32px;
}

@media only screen and (min-width: 560px) {
	.comment-list .children {
		padding-left: 32px;
	}
}

/**
 * Comment Meta
 */
.comment-meta {
	margin-right: calc( $avatar-size + (0.5 * 16px));
}

.comment-meta .comment-author {
	line-height: 1.125;
	margin-bottom: 4px;
	padding-right: 40px;
	max-width: calc(100% - 48px);
}

@media only screen and (min-width: 560px) {
	.comment-meta .comment-author {
		display: flex;
		align-items: center;
		margin-bottom: 0;
		padding-right: 0;
	}
}

.comment-meta .comment-author .fn {
	word-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

.comment-meta .comment-author .avatar {
	display: block;
	position: absolute;
	right: 0;
}

.comment-meta .comment-metadata {
	color: #181818;
	padding-right: 40px;
}

@media only screen and (min-width: 560px) {
	.comment-meta .comment-metadata {
		padding-right: 0;
	}
}

.comment-meta .comment-metadata a {
	color: currentColor;
}

.comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
	color: #685636;
}

@media only screen and (min-width: 560px) {
	.comment-meta {
		margin-right: inherit;
		align-items: center;
		display: flex;
		justify-content: space-between;
	}
	.comment-meta .comment-author {
		display: flex;
		align-items: center;
		max-width: inherit;
		flex: 0 1 auto;
	}
	.comment-meta .comment-author .fn {
		padding-right: 16px;
	}
	.comment-meta .comment-author .avatar {
		margin-right: 16px;
		display: inherit;
		position: inherit;
		right: inherit;
	}
	.comment-meta .comment-metadata {
		flex: 0 1 auto;
	}
}

.comment-metadata,
.reply {
	font-size: 0.69444rem;
	line-height: 1.125;
}

.reply {
	text-align: right;
}

@media only screen and (min-width: 560px) {
	.reply {
		text-align: left;
	}
}

.bypostauthor {
	display: block;
}

.says {
	display: none;
}

.comment-author .fn,
.pingback .url,
.trackback .url {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
}

/**
 * Comment body
 */
.comment-body {
	position: relative;
}

.comment-body > * {
	margin-top: 32px;
	margin-bottom: 32px;
}

.comment-content a {
	word-wrap: break-word;
}

/**
 * Pingbacks & Trackbacks
 */
.pingback .comment-body,
.trackback .comment-body {
	margin-top: 32px;
	margin-bottom: 32px;
}

/**
 * Comment Form
 */
.comment-respond {
	margin-top: calc(2 * 32px);
}

.comment-respond > * {
	margin-top: 16px;
	margin-bottom: 16px;
}

.comment-respond > *:first-child {
	margin-top: 0;
}

.comment-respond > *:last-child {
	margin-bottom: 0;
}

.comment-form > p {
	margin-top: 16px;
	margin-bottom: 16px;
}

.comment-form > p:first-of-type {
	margin-top: 0;
}

.comment-form > p:last-of-type {
	margin-bottom: 0;
}

.comment-form > p label,
.comment-form > p input[type="email"],
.comment-form > p input[type="text"],
.comment-form > p input[type="url"],
.comment-form > p textarea {
	width: 100%;
}

.comment-form > p.comment-form-cookies-consent > label {
	width: auto;
}

@media only screen and (min-width: 560px) {
	.comment-form > p {
		display: flex;
	}
	.comment-form > p label {
		width: 25%;
	}
	.comment-form > p.comment-form-cookies-consent {
		margin-left: 25%;
	}
	.comment-form > p.comment-form-cookies-consent > label {
		width: auto;
		display: inline-block;
	}
	.comment-form > p input[type="email"],
	.comment-form > p input[type="text"],
	.comment-form > p input[type="url"],
	.comment-form > p textarea {
		width: 75%;
	}
	.comment-form > p.comment-notes, .comment-form > p.logged-in-as {
		display: block;
	}
}

/**
 * Comment Nav
 */
.comment-navigation a {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-size: 1.2rem;
	font-weight: 600;
}

.widget-area {
	flex: 0 0 100%;
}

/* Utilities */
img#wpstats {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	padding: 0 !important;
	border: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden;
}

/**
 * Site Pages
 * - Page specific styles
 */
/**
 * Site Pages
 * - Page specific styles
 */
.sticky-post {
	color: #FFFFFF;
	background-color: #897248;
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-family: var(--font-headings, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
	font-weight: bold;
	font-size: 0.83333rem;
	line-height: 1;
	padding: calc(0.5 * 16px) calc(0.66 * 16px);
}

.page-title {
	font-size: 1.2rem;
}

/**
 * Responsive Logic
 * - Loading this last to respect cascaing rules
 */
/**
 * Page Layout Styles & Repsonsive Styles
 */
/* Responsive width-content overrides */
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 560px) {
	.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
	.wp-block-pullquote.alignfull > p,
	.wp-block-pullquote.alignwide blockquote,
	.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 560px - 32px);
	}
}

@media only screen and (min-width: 640px) {
	.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
	.wp-block-pullquote.alignfull > p,
	.wp-block-pullquote.alignwide blockquote,
	.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 640px - 32px);
	}
}

@media only screen and (min-width: 782px) {
	.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
	.wp-block-pullquote.alignfull > p,
	.wp-block-pullquote.alignwide blockquote,
	.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 782px - 32px);
	}
}

@media only screen and (min-width: 1024px) {
	.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
	.wp-block-pullquote.alignfull > p,
	.wp-block-pullquote.alignwide blockquote,
	.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 782px - 32px);
	}
}

@media only screen and (min-width: 1280px) {
	.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
	.wp-block-pullquote.alignfull > p,
	.wp-block-pullquote.alignwide blockquote,
	.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
	.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
		max-width: calc( 782px - 32px);
	}
}

.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, .site-header, #colophon {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	/* Matches normal width until desktop breakpoint */
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, .site-header, #colophon {
		max-width: calc( 560px - 32px);
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, .site-header, #colophon {
		max-width: calc( 640px - 32px);
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, .site-header, #colophon {
		max-width: calc( 782px - 32px);
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, .site-header, #colophon {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: calc(100% - 32px);
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, .site-header, #colophon {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: calc(100% - 32px);
	}
}

.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
	width: calc(100% + 256px);
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 560px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 640px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: 100%;
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
		width: calc(calc( 782px - 32px) + 256px);
		max-width: 100%;
	}
}

.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
	max-width: calc(100% + 32px);
	/* Letting the box-model do most of the work here. */
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
		margin-left: inherit;
		margin-right: inherit;
		width: inherit;
		max-width: inherit;
	}
}

.entry-content > .alignright {
	/*rtl:ignore*/
	margin-right: 16px;
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
	}
}

.entry-content > .alignleft {
	/*rtl:ignore*/
	margin-left: 16px;
}

@media only screen and (min-width: 560px) {
	.entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
	}
}

@media only screen and (min-width: 640px) {
	.entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
	}
}

@media only screen and (min-width: 782px) {
	.entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
	}
}

@media only screen and (min-width: 1024px) {
	.entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
	}
}

@media only screen and (min-width: 1280px) {
	.entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
	}
}

/**
 * Vendors
 * - Styles for 3rd party plugins and WP extensions
 */
/**
 * Vendors
 * - 3rd-party compatibility styles
 */
/**
 * Subscription Form
 */
.wp-block-jetpack-subscriptions form > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-jetpack-subscriptions form > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-jetpack-subscriptions form > *:first-child {
	margin-top: 0;
}

.wp-block-jetpack-subscriptions form > *:last-child {
	margin-bottom: 0;
}

/**
 * Cookies & Consents Banner
 */
body .widget_eu_cookie_law_widget {
	background: transparent;
	bottom: 0;
	left: 0;
	padding: 8px;
	right: 0;
}

body .widget_eu_cookie_law_widget.widget.top {
	bottom: auto;
	top: 0;
}

body .widget_eu_cookie_law_widget #eu-cookie-law {
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	color: #181818;
	font-size: 0.83333rem;
	line-height: inherit;
	padding: 16px;
}

@media (max-width: 600px) {
	body .widget_eu_cookie_law_widget #eu-cookie-law {
		padding-bottom: 80px;
	}
}

body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
	background: #181818;
	border-color: #020202;
	color: #FFFFFF;
}

body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
	background: #FFFFFF;
	color: #181818;
}

body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus {
	background: #CCCCCC;
}

body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
	margin: 0;
	margin-left: 32px;
}

@media (max-width: 600px) {
	body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
		bottom: 16px;
		left: 16px;
		margin: 0;
	}
}

body.admin-bar .widget_eu_cookie_law_widget.widget.top {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .widget_eu_cookie_law_widget.widget.top {
		top: 46px;
	}
}

/**
 * Mailchimp Subscription Form
 */
.wp-block-jetpack-mailchimp p {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-jetpack-mailchimp p {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-jetpack-mailchimp p:first-child {
	margin-top: 0;
}

.wp-block-jetpack-mailchimp p:last-child {
	margin-bottom: 0;
}

.wp-block-jetpack-mailchimp input[type=email] {
	width: 100%;
}

#wp-block-jetpack-mailchimp_consent-text {
	font-size: 0.83333rem;
}

/**
 * Business Hours
 */
.jetpack-business-hours dd {
	padding-left: 0;
}

/**
 * Layout Grid
 */
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
}

@media only screen and (min-width: 560px) {
	.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
	margin-top: 0;
}

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
	margin-bottom: 0;
}

/**
 * Child Theme Extra Styles
 */
/**
 * Extra Child Theme Styles
 */
html,
body {
	font-weight: 300;
}

a {
	text-decoration: none;
}

.wp-block-cover a,
.wp-block-cover-image a,
.wp-block-media-text a,
p:not(.site-title) a {
	text-decoration: underline;
}

.wp-block-cover a.wp-block-button__link, .wp-block-cover a:hover,
.wp-block-cover-image a.wp-block-button__link,
.wp-block-cover-image a:hover,
.wp-block-media-text a.wp-block-button__link,
.wp-block-media-text a:hover,
p:not(.site-title) a.wp-block-button__link,
p:not(.site-title) a:hover {
	text-decoration: none;
}

b,
strong {
	font-weight: 500;
}

.site-branding,
.main-navigation,
.entry-header,
.entry-footer,
.page-title,
.author-title,
.comments-title,
.comment-reply-title,
.logged-in-as,
.comment-notes {
	text-align: center;
}

.comment-reply-title {
	display: inherit;
}

.comment .comment-reply-title {
	display: flex;
}

.main-navigation > div {
	text-align: left;
}

.main-navigation > div > ul,
.social-navigation > div > ul,
.pagination .nav-links {
	justify-content: center;
}

/**
 * Header
 */
.site-header {
	margin-right: auto;
	margin-left: auto;
	padding-top: 32px;
	padding-bottom: 32px;
}

@media only screen and (min-width: 560px) {
	.site-header {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

.site-logo + .site-title {
	margin-top: 8px;
}

.site-title + .site-description {
	margin-top: 8px;
}

/**
 * Navigation
 */
@media only screen and (min-width: 560px) {
	.site-header > *.main-navigation {
		margin-bottom: 0;
	}
	.site-header > *.main-navigation > div > ul > li > .sub-menu {
		border: 1px solid #CCCCCC;
		box-shadow: none;
		border-radius: 5px;
	}
}

@media only screen and (min-width: 560px) {
	.site-header > *.social-navigation {
		margin-top: 0;
	}
}

/**
 * Main
 */
.site-main {
	padding-top: 0;
}

.site-main > article > .entry-header {
	margin-top: 21.312px;
}

@media only screen and (min-width: 560px) {
	.site-main > article > .entry-header {
		margin-top: 32px;
	}
}

.entry-title {
	font-weight: 300;
}

.entry-title {
	font-size: 2.0736rem;
}

@media only screen and (min-width: 782px) {
	.entry-title {
		font-size: 2.98598rem;
	}
}

.entry-title a,
.page-title a,
.a8c-posts-list .a8c-posts-list-item__title a,
.wp-block-newspack-blocks-homepage-articles article .entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:active, .entry-title a:focus, .entry-title a:hover,
.page-title a:active,
.page-title a:focus,
.page-title a:hover,
.a8c-posts-list .a8c-posts-list-item__title a:active,
.a8c-posts-list .a8c-posts-list-item__title a:focus,
.a8c-posts-list .a8c-posts-list-item__title a:hover,
.wp-block-newspack-blocks-homepage-articles article .entry-title a:active,
.wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,
.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	color: #897248;
}

.sticky-post,
.a8c-posts-list .a8c-posts-list-item__featured span {
	padding: 4px 10.56px;
}

/**
 * Next/Previous navigation
 */
.post-navigation .meta-nav {
	color: #686868;
}

.post-navigation .post-title {
	font-size: 1.2rem;
	line-height: 1.125;
}

/**
 * Comments
 */
.logged-in-as,
.comment-notes,
.comment-form-cookies-consent {
	font-size: 0.83333rem;
}

.comment-form-cookies-consent input[type=checkbox] + label {
	line-height: 1.6;
}

.comment-notes {
	color: #686868;
}

.comment-form > p:not(.comment-form-cookies-consent) label {
	font-weight: 700;
}

.comment-respond .form-submit {
	display: flex;
	justify-content: flex-end;
}

/**
 * Blocks
 */
.a8c-posts-list {
	text-align: center;
}

.a8c-posts-list-item__title {
	font-weight: 300;
	font-size: 2.0736rem;
}

.a8c-posts-list-item__excerpt {
	text-align: left;
}

.wp-block-cover p,
.wp-block-cover-image p {
	text-shadow: 0 0 6px black;
}

.wp-block-cover h1, .wp-block-cover h2, .wp-block-cover h3, .wp-block-cover h4, .wp-block-cover h5, .wp-block-cover h6,
.wp-block-cover-image h1,
.wp-block-cover-image h2,
.wp-block-cover-image h3,
.wp-block-cover-image h4,
.wp-block-cover-image h5,
.wp-block-cover-image h6 {
	font-weight: 300;
	text-shadow: 0 0 10px black;
}

@media only screen and (min-width: 1024px) {
	.wp-block-cover,
	.wp-block-cover-image {
		min-height: 640px;
	}
	.wp-block-cover h1:not(.site-title),
	.wp-block-cover-image h1:not(.site-title) {
		font-size: 2.98598rem;
	}
	.wp-block-cover h2,
	.wp-block-cover-image h2 {
		font-size: 2.48832rem;
	}
	.wp-block-cover h3,
	.wp-block-cover-image h3 {
		font-size: 2.0736rem;
	}
	.wp-block-cover h4,
	.wp-block-cover-image h4 {
		font-size: 1.728rem;
	}
	.wp-block-cover h5,
	.wp-block-cover-image h5 {
		font-size: 1.44rem;
	}
	.wp-block-cover h6,
	.wp-block-cover-image h6 {
		font-size: 1.2rem;
	}
}

.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	text-decoration: none;
}

.wp-block-newspack-blocks-homepage-articles article .cat-links a,
.wp-block-newspack-blocks-homepage-articles article .more-link,
.wp-block-newspack-blocks-homepage-articles article .entry-meta a {
	text-decoration: none;
}

.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
.wp-block-newspack-blocks-homepage-articles article .more-link:hover,
.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover {
	text-decoration: underline;
}

.wp-block-newspack-blocks-homepage-articles article .more-link:hover {
	color: #685636;
}

.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-title a:hover {
	text-decoration: underline;
}

.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .more-link:hover {
	color: inherit;
}

.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
	text-decoration: underline;
}

/**
 * Widgets
 */
.widget select {
	max-width: 100%;
}

.widget-title {
	font-size: 1.44rem;
	margin-bottom: 16px;
}

.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul {
	margin-left: 0;
	margin-right: 0;
	list-style: none;
}

.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_recent_entries ul li,
.widget_rss ul li {
	color: #686868;
	font-weight: 700;
}

.widget_archive ul ul,
.widget_categories ul ul,
.widget_meta ul ul,
.widget_nav_menu ul ul,
.widget_pages ul ul,
.widget_recent_comments ul ul,
.widget_recent_entries ul ul,
.widget_rss ul ul {
	counter-reset: submenu;
}

.widget_archive ul ul > li > a::before,
.widget_categories ul ul > li > a::before,
.widget_meta ul ul > li > a::before,
.widget_nav_menu ul ul > li > a::before,
.widget_pages ul ul > li > a::before,
.widget_recent_comments ul ul > li > a::before,
.widget_recent_entries ul ul > li > a::before,
.widget_rss ul ul > li > a::before {
	font-weight: normal;
	content: "– " counters(submenu, "– ", none);
	counter-increment: submenu;
}

.widget_tag_cloud .tagcloud {
	font-weight: 700;
}

.widget_search .search-field {
	width: 100%;
}

@media only screen and (min-width: 560px) {
	.widget_search .search-field {
		width: auto;
	}
}

.widget_search .search-submit {
	display: block;
	margin-top: 1rem;
}

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

.widget_calendar .calendar_wrap table td,
.widget_calendar .calendar_wrap table th {
	border: none;
}

.widget_calendar .calendar_wrap a {
	text-decoration: underline;
}

.widget_links li,
.widget_jp_blogs_i_follow li,
.widget_rss_links li {
	font-family: inherit;
	font-family: var(--font-base, inherit);
}

/**
 * Footer
 */
/**
 * Footer Navigation
 */
.footer-navigation .footer-menu a {
	padding: 0 8px;
}

.footer-navigation .footer-menu > li:last-of-type {
	margin-right: -8px;
}

/**
 * Full Site Editing
 * - Full Site Editing overrides
 */
.fse-template-part {
	margin-bottom: 0;
	margin-top: 0;
}

.fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
	width: 100%;
}

.fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
	color: inherit;
}

.fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
	justify-content: flex-start;
}

.fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
	justify-content: center;
}

.fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
	justify-content: flex-end;
}

.fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
	padding: 16px 0;
}

@media only screen and (min-width: 560px) {
	.fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
		padding: 16px;
	}
}

.fse-template-part .main-navigation > div > .main-menu.footer-menu > .menu-item-has-children > a::after {
	font-size: 0.6em;
	vertical-align: middle;
}

.fse-template-part .wp-block-columns .wp-block-column > * {
	margin: 0 0 5px 0;
}

.fse-header > *:first-child:not(.alignfull) {
	margin-top: 21.312px;
}

@media only screen and (min-width: 560px) {
	.fse-header > *:first-child:not(.alignfull) {
		margin-top: 32px;
	}
}

.fse-footer {
	display: block;
}

.fse-footer .site-info {
	margin-top: 21.312px;
	margin-bottom: 21.312px;
	text-align: center;
}

@media only screen and (min-width: 560px) {
	.fse-footer .site-info {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
	padding-bottom: 32px;
}

@media only screen and (min-width: 560px) {
	.fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
		padding-bottom: 48px;
	}
}

.fse-template-part .main-navigation a {
	text-decoration: none;
}

@media only screen and (max-width: 559px) {
	.fse-template-part {
		max-width: calc( 100% - 32px);
	}
	.fse-template-part .main-navigation > div {
		padding: 0 32px;
	}
}

.fse-template-part .wp-block-cover .site-title a,
.fse-template-part .wp-block-cover-image .site-title a {
	text-decoration: none;
}

.fse-template-part .wp-block-cover .has-background,
.fse-template-part .wp-block-cover-image .has-background {
	text-shadow: none;
}
div#actionbar * {
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );
	user-select: none;
	-webkit-user-select: none;
}
div#actionbar {
	background: #fff;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border: solid 1px #c8d7e1;
	border-radius: 3px;
	opacity: .98;
	height: 35px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1;
	z-index: 50000;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;

	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);

	transition: all 0.2s ease-in-out;

	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );

	user-select: none;
	-webkit-user-select: none;
}

div#actionbar.actnbr-hidden {
	-webkit-transform: translate3d(0,150px,0);
	-moz-transform: translate3d(0,150px,0);
	-o-transform: translate3d(0,150px,0);
	-ms-transform: translate3d(0,150px,0);
	transform: translate3d(0,150px,0);
}
div#actionbar.actnbr-folded {
	opacity: .7;
}
div#actionbar.actnbr-folded:hover {
	opacity: 1;
}

div#actionbar ul {
	margin: 0;
	padding: 0;
	line-height: 1;
	text-align: left;
}
div#actionbar li {
	list-style-type: none;
	display: inline-block;
	min-width: 30px;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	line-height: 1;
}
div#actionbar li:before {
	display: none;
}
div#actionbar li.actnbr-btn {
	margin: 0 2px 0 6px;
}
div#actionbar.actnbr-has-customize.actnbr-has-edit li.actnbr-edit {
	margin-right: 5px;
	margin-left: -5px;
}

div#actionbar.actnbr-folded li.actnbr-btn {
	margin-right: -5px;
}
div#actionbar.actnbr-folded.actnbr-has-customize.actnbr-has-edit li.actnbr-edit {
	margin-right: -3px;
	margin-left: 0;
}

div#actionbar li.actnbr-btn > a {
	display: block;
	color: #2e4453;
	font-size: 13px;
	font-weight: normal;
	text-decoration: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
	line-height: 1;
	vertical-align: middle;
	transition: none;
	position: relative;
	padding: 10px 8px 10px 32px;
	border: none;
	box-shadow: none;
}
div#actionbar li.actnbr-btn > a:hover {
	color: #00aadc;
	background: none;
}
div#actionbar li.actnbr-btn > a .gridicon {
	fill: #87a6bc;
	position: absolute;
		top: 6px;
		left: 5px;
}
div#actionbar li.actnbr-btn a:hover .gridicon {
	fill: #00aadc;
}
div#actionbar li.actnbr-btn a.actnbr-actn-following,
div#actionbar li.actnbr-btn a.actnbr-actn-following:hover {
	color: #4ab866;
}
div#actionbar li.actnbr-btn a.actnbr-actn-following .gridicon,
div#actionbar li.actnbr-btn a.actnbr-actn-following:hover .gridicon {
	fill: #4ab866;
}

div#actionbar.actnbr-folded li.actnbr-btn a.actnbr-action .gridicon {
	top: 2px;
}

div#actionbar.actnbr-folded .actnbr-btn span {
	display: none;
}

div#actionbar.actnbr-has-customize.actnbr-has-edit.actnbr-folded .actnbr-customize {
	display: none;
}

div#actionbar.actnbr-has-customize.actnbr-has-edit.actnbr-folded .actnbr-stats {
  display: none;
}

div#actionbar.actnbr-has-customize.actnbr-has-edit.actnbr-folded .actnbr-edit a .gridicon,
div#actionbar.actnbr-has-customize.actnbr-folded .actnbr-customize a .gridicon {
	top: 2px;
}

div#actionbar.actnbr-has-customize.actnbr-has-edit.actnbr-folded .actnbr-edit a .gridicon {
	left: 10px;
}

div#actionbar li.actnbr-ellipsis {
	position: relative;
		top: 1px;
		right: 2px;
	cursor: pointer;
	padding: 3px 5px 0 8px;
}
div#actionbar.actnbr-folded li.actnbr-ellipsis {
	top: 2px;
}
div#actionbar .actnbr-ellipsis > .gridicon {
	fill: #4f748e;
	transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
div#actionbar .actnbr-ellipsis.actnbr-hidden > .gridicon {
	fill: #87a6bc;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}
div#actionbar .actnbr-ellipsis.actnbr-hidden > .gridicon:hover {
	fill: #4f748e;
}

div#actionbar .actnbr-ellipsis .tip-inner .gridicon {
    margin: 0 5px 0 0;
    vertical-align: middle;
    position: relative;
}

div#actionbar .actnbr-popover {
	font-size: 14px;
	padding: 10px;
	z-index: 1000;
	margin-left: 15px;
	position: absolute;
	bottom: 40px;
	right: -13px;
	max-width: 320px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
}
div#actionbar li.actnbr-btn .actnbr-popover {
	bottom: 47px;
	right: 26px;
}
div#actionbar.actnbr-folded li.actnbr-btn .actnbr-popover {
	right: 21px;
}
div#actionbar .actnbr-hidden .actnbr-popover {
	display: none;
}
div#actionbar .actnbr-popover.tip-top-left .tip-arrow {
	bottom: 0;
	right: 21px;
	margin-left: -7px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}
div#actionbar li.actnbr-btn .actnbr-popover.tip-top-left .tip-arrow {
	left: 74%;
}
div#actionbar.actnbr-folded li.actnbr-btn .actnbr-popover.tip-top-left .tip-arrow {
	left: 85%;
}
div#actionbar .actnbr-popover .tip-arrow {
	border: 10px dashed #c8d7e1;
	height: 0;
	line-height: 0;
	position: absolute;
	width: 0;
}
div#actionbar .actnbr-popover.tip-top-left .tip-arrow::before {
	bottom: 2px;
	border: 10px solid white;
	content: " ";
	position: absolute;
	left: 50%;
	margin-left: -10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}
div#actionbar .actnbr-popover .tip-inner {
	background-color: white;
	border: 1px solid #c8d7e1;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 56px rgba(0, 0, 0, 0.075);
	text-align: center;
}
div#actionbar li.actnbr-btn .actnbr-popover .tip-inner .actnbr-reader a {
	display: block;
	margin: 0 0 4px 0;
	font-weight: 400;
	text-decoration: none;
	color: #00aadc;
	border: none;
}

div#actionbar li.actnbr-btn .actnbr-popover .tip-inner .actnbr-reader a:before {
	content: '\f8a3';
	font-family: 'Noticons';
	font-size: 25px;
	margin-right: 3px;
	line-height: 1;
	top: 7px;
	position: relative;
}

div#actionbar .tip ul {
	margin-bottom: 10px;
}

div#actionbar .tip li {
	display: block;
	border: none;
}
div#actionbar .tip li > a {
	position: relative;
	background: inherit;
	border: none;
	box-shadow: none;
	border-radius: 0;
	color: #2e4453;
	cursor: pointer;
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	padding: 10px 16px;
	text-align: left;
	transition: all 0.05s ease-in-out;
	min-width: 250px;
	outline: none;
	text-decoration: none;
}

div#actionbar li.actnbr-sitename {
	border-bottom: 1px solid #f0f0f0;
	margin-bottom: 10px;
}

div#actionbar .actnbr-ellipsis .actnbr-fold,
div#actionbar .actnbr-notice .actnbr-login-nudge {
	border-top: 1px solid #f0f0f0;
	margin-top: 10px;
}
div#actionbar .actnbr-ellipsis .actnbr-folded-following,
div#actionbar .actnbr-ellipsis .actnbr-folded-follow {
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

div#actionbar .actnbr-notice .actnbr-follow-count {
	margin-bottom: 10px;
}

div#actionbar .actnbr-ellipsis li a:hover .gridicon {
	fill: #fff;
}

div#actionbar .actnbr-notice form,
div#actionbar .actnbr-notice .actnbr-login-nudge {
	font-size: 12px;
	color: #2e4453;
	line-height: 17px;
}

div#actionbar .actnbr-notice form {
	padding: 2px 16px 6px;
}
div#actionbar .actnbr-notice .actnbr-login-nudge {
	padding: 10px 16px 5px;
}

div#actionbar .actnbr-notice form input {
	background: #ffffff;
	border: 1px solid #a8bece;
	font-family: inherit;
	font-size: 14px;
	text-indent: 10px;
	height: 40px;
	width: 100%;
	margin-bottom: 12px;
	padding: 0;
	user-select: text;
	-webkit-user-select: text;
}

div#actionbar .actnbr-notice form button {
	background: #00aadc;
	border-color: #008ab3;
	color: white;
	border-style: solid;
	border-width: 1px 1px 2px;
	cursor: pointer;
	display: inline-block;
	margin: 0;
	outline: 0;
	overflow: hidden;
	font-weight: 500;
	text-overflow: ellipsis;
	text-decoration: none;
	vertical-align: top;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 21px;
	border-radius: 4px;
	padding: 7px 14px 9px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: inherit;
	text-transform: none;
	-webkit-font-smoothing: auto;
	height: auto;
	width: 100%;
}

div#actionbar .actnbr-notice form button[disabled] {
    background: #bceefd;
    border-color: #8cc9e2;
    color: white;
}

div#actionbar .actnbr-notice .actnbr-button-wrap {
	text-align: right;
}

div#actionbar .actnbr-notice form button:hover {
	border-color: #005082;
	color: white;
}

div#actionbar .actnbr-notice form button:focus {
	border-color: #005082;
  box-shadow: 0 0 0 2px #78dcfa;
}

div#actionbar .actnbr-notice .actnbr-login-nudge a {
	color: inherit;
	text-decoration: underline;
}

div#actionbar .actnbr-notice .actnbr-login-nudge a:hover {
	color: #00aadc;
}

div#actionbar li.actnbr-sitename a {
	font-size: 14px;
	font-weight: bold;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
	color: #2e4453;
	text-decoration: none;
	text-align: left;
	border: none;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.7;
}

div#actionbar li.actnbr-sitename img {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	margin: -1px 5px 0 0;
	display: inline;
	border-radius: 0;
	padding: 0;
}
div#actionbar .actnbr-ellipsis li a:hover {
	background: #00aadc;
	color: #fff;
	text-decoration: none;
	border: 0;
	box-shadow: none;
}
div#actionbar li.actnbr-sitename a:hover {
	background: transparent;
	color: #2e4453;
	margin: 0;
}

div#actionbar .actnbr-fold {
	padding-top: 10px;
}

div#actionbar .actnbr-ellipsis li.actnbr-folded-customize {
	display: none;
}

div#actionbar.actnbr-folded.actnbr-has-customize.actnbr-has-edit .actnbr-ellipsis li.actnbr-folded-customize {
	display: block;
}

div#actionbar.actnbr-has-follow .actnbr-ellipsis li.actnbr-folded-follow {
	display: none;
}

div#actionbar .actnbr-notice .tip-inner {
	padding: 0;
}

div#actionbar .actnbr-notice .actnbr-message {
	padding: 15px 20px 20px;
	width: 250px;
	text-align: center;
	line-height: 20px;
  color: #2e4453;
}

div#actionbar .actnbr-notice .actnbr-message h3 {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 400;
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	text-decoration: none;
  color: #2e4453;
	padding: 0;
	line-height: 1em;
}

div#actionbar .actnbr-notice .actnbr-message a {
	color: inherit;
	text-decoration: underline;
}

div#actionbar .actnbr-notice .actnbr-message a:hover {
	color: #00aadc;
}

div#actionbar .actnbr-theme a {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/* Responsive Styles */
@media ( max-width: 660px ) {
	div#actionbar {
		bottom: 0;
		right: 0;
		padding: 5px 13px;
		border-radius: 0;
		width: 100%;
		height: 44px;
	}

	div#actionbar.actnbr-folded {
		opacity: .9;
		width: auto;
		padding: 5px 10px;
	}

	div#actionbar > ul {
		text-align: right;
	}

	div#actionbar .actnbr-popover {
		right: -10px;
	}

	div#actionbar .actnbr-popover.tip-top-left .tip-arrow {
		right: 17px;
	}

	div#actionbar li.actnbr-btn .actnbr-popover {
		right: -3px;
	}

	div#actionbar li.actnbr-btn .actnbr-popover.tip-top-left .tip-arrow {
		left: 53%;
	}

	div#actionbar.actnbr-folded li.actnbr-btn {
		margin-right: 3px !important;
	}
}

/***** Position adjustments for specific themes that conflict with action bar */

div#actionbar.actnbr-premium-espresso { /* Espresso */
	right: 70px;
}

div#actionbar.actnbr-premium-shelf { /* Shelf */
	left: 10px;
	right: auto;
}
	div#actionbar.actnbr-premium-shelf .actnbr-popover {
		right: auto;
		left: -35px;
	}
	div#actionbar.actnbr-premium-shelf .actnbr-popover.tip-top-left .tip-arrow {
		right: auto;
		left: 29px;
	}
	div#actionbar.actnbr-premium-shelf li.actnbr-btn .actnbr-popover.tip-top-left .tip-arrow,
	div#actionbar.actnbr-premium-shelf.actnbr-folded li.actnbr-btn .actnbr-popover.tip-top-left .tip-arrow {
		left: 26px;
	}
	div#actionbar.actnbr-premium-shelf li.actnbr-btn .actnbr-popover,
	div#actionbar.actnbr-premium-shelf.actnbr-folded li.actnbr-btn .actnbr-popover {
		right: 102px;
		left: -26px;
	}

body.has-playbar div#actionbar.actnbr-premium-obsidian { /* Obsidian */
	bottom: 50px;
}

div#actionbar.actnbr-pub-boardwalk { /* Nowhere to go in boardwalk */
	display: none;
}

body #habla_window_div.habla_window_div_base { /* Move the live chat box when needed */
	margin-right: 160px !important;
}

div#translator-launcher { /* Move community translator tool when needed */
	bottom: 67px;
	right: 10px;
	left: auto;
}

@media ( min-width: 876px ) { /* Move o2 dock count on desktop. */
	div#o2-dock {
		right: 230px;
	}
}

@media ( max-width: 876px ) { /* Prioritize the o2 dock count in small screens, on top of Actionbar. */
	div#o2-dock {
		z-index: 50001;
	}
}

#scrollUp, .to-top, #back-to-top { /* Up arrow on some themes */
	bottom: 55px;
	right: 18px;
}

#colophon #searchform input.search-field { /* Onigiri search box */
	bottom: 65px;
}

#container #masthead #site-branding { /* Suidobashi site title */
	z-index: 49999;
	bottom: 65px;
}

/***** End theme adjustments */


/* Hide Admin bar items */
li#wp-admin-bar-follow, li#wp-admin-bar-admin-bar-likes-widget, li#wp-admin-bar-wpr-reblog, ul#wp-admin-bar-blog-secondary {
	display: none !important;
}

/* Hide when printing */
@media print {
	#actionbar {
		display: none !important;
	}
}
/**
 * DO NOT DELETE.
 *
 * Placeholder file so we can use wp_add_inline_styles
 * to dynamically add fonts, custom properties, etc.
 */
/**
 * Sharedaddy Base Styles
 *
 * Contains styles for modules, containers, buttons
 */


/* Master container */
#jp-post-flair {
	padding-top: .5em;
}


/* Overall Sharedaddy block title */
div.sharedaddy,
#content div.sharedaddy,
#main div.sharedaddy {
	clear: both;
}

div.sharedaddy h3.sd-title {
	margin: 0 0 1em 0;
	display: inline-block;
	line-height: 1.2;
	font-size: 9pt;
	font-weight: bold;
}

div.sharedaddy h3.sd-title:before {
	content: "";
	display: block;
	width: 100%;
	min-width: 30px;
	border-top: 1px solid #ddd;
	margin-bottom: 1em;
}

body.highlander-light h3.sd-title:before {
	border-top: 1px solid rgba(0,0,0,.2);
}

body.highlander-dark h3.sd-title:before {
	border-top: 1px solid rgba(255,255,255,.4);
}


/* Sharing services list */
.sd-content ul {
	padding: 0 !important;
	margin: 0 0 .7em 0 !important;
	list-style: none !important;
}

.sd-content ul li {
	display: inline-block;
}

.sd-content ul li.share-deprecated {
	opacity: 0.5;
}

.sd-content ul li.share-deprecated a span {
	text-decoration: line-through;
}

.sd-block.sd-gplus {
	margin: 0 0 .5em 0;
}

.sd-gplus .sd-content {
	font-size: 12px;
}


/* Buttons */
.sd-social-icon .sd-content ul li a.sd-button,
.sd-social-text .sd-content ul li a.sd-button,
.sd-content ul li a.sd-button,
.sd-content ul li .option a.share-ustom,	/* Ugh. */
.sd-content ul li.preview-item div.option.option-smart-off a,
.sd-content ul li.advanced a.share-more,
.sd-social-icon-text .sd-content ul li a.sd-button,
.sd-social-official .sd-content>ul>li>a.sd-button,
#sharing_email .sharing_send,
.sd-social-official .sd-content>ul>li .digg_button >a {		/* official Digg button no longer works, needs cleaning */
	text-decoration: none !important;
	display: inline-block;
	font-size: 12px;
	font-family: "Open Sans", sans-serif;
	font-weight: normal;
	border-radius: 3px;
	color: #656565 !important;
	background: #f8f8f8;
	border: 1px solid #cccccc;
	box-shadow: 0 1px 0 rgba(0,0,0,.08);
	text-shadow: none;
	line-height: 23px;
	padding: 1px 8px 0px 5px;
}

.sd-social-text .sd-content ul li a.sd-button span,
.sd-content ul li a.sd-button>span,
.sd-content ul li .option a.share-ustom span,	/* Ugh. */
.sd-content ul li.preview-item div.option.option-smart-off a span,
.sd-content ul li.advanced a.share-more span,
.sd-social-icon-text .sd-content ul li a.sd-button>span,
.sd-social-official .sd-content>ul>li>a.sd-button span,
.sd-social-official .sd-content>ul>li .digg_button >a span {		/* official Digg button no longer works, needs cleaning */
	line-height: 23px;
}



/* Our gray buttons should be smaller when seen with the official ones */
.sd-social-official .sd-content>ul>li>a.sd-button,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,
.sd-social-official .sd-content>ul>li .digg_button>a,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a {
	line-height: 17px;
	box-shadow: none; /* No shadow on gray buttons between the official ones */
	vertical-align: top;
}

.sd-social-official .sd-content ul li a.sd-button>span {
	line-height: 17px;
}
.sd-social-official .sd-content>ul>li>a.sd-button:before,
.sd-social-official .sd-content>ul>li .digg_button>a:before,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before {
	margin-bottom: -1px;
}

.sd-social-icon .sd-content ul li a.sd-button:hover,
.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:hover,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:hover,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content>ul>li>a.sd-button:hover,
.sd-social-official .sd-content>ul>li>a.sd-button:active,
.sd-social-official .sd-content>ul>li .digg_button>a:hover,
.sd-social-official .sd-content>ul>li .digg_button>a:active {
	color: #555;
	background: #fafafa;
	border: 1px solid #999999;
}

.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content>ul>li>a.sd-button:active,
.sd-social-official .sd-content>ul>li .digg_button>a:active {
	box-shadow: inset 0 1px 0 rgba(0,0,0,.16);
}

/* All icons */
.sd-content ul li a.sd-button:before {
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font: normal 18px/1 'social-logos';
	vertical-align: top;
	text-align: center;
}
/* text + icon styles should have relative and top position */
.sd-social-icon-text ul li a.sd-button:before {
	position: relative;
	top: 2px;
}

/* Make it look great in Chrome and Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.sd-content ul li a.sd-button:before {
		position: relative;
		top: 2px;
	}
}

.sd-social-official ul li a.sd-button:before {
	position: relative;
	top: -2px;
}
/* Make it look great in Chrome and Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.sd-social-official ul li a.sd-button:before {
		top: 0px;
	}
}

.sd-content ul li {
	margin: 0 5px 5px 0;
	padding: 0;
}
/* Add more pading on touch devices */
.jp-sharing-input-touch .sd-content ul li { padding-left: 10px; }

/* Text + icon & Official */
.sd-social-icon-text .sd-content ul li a span,
.sd-social-official .sd-content ul li a.sd-button span,
.sd-content ul li.preview-item a.sd-button span {
	margin-left: 3px;
}
.sd-content ul li.preview-item.no-icon a.sd-button span {
	margin-left: 0;
}

/* Text only */
.sd-social-text .sd-content ul li a:before,
.sd-content ul li.no-icon a:before {
	display: none;
}
body .sd-social-text .sd-content ul li.share-custom a span,
body .sd-content ul li.share-custom.no-icon a span {
	background-image: none;
	background-position: -500px -500px !important;	/* hack to work around !important inline style */
	background-repeat: no-repeat !important;
	padding-left: 0;
	height: 0;
	line-height: inherit;
}

.sd-social-icon .sd-content ul li a.share-more {
	position: relative;
	top: -4px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.sd-social-icon .sd-content ul li a.share-more {
		top: 2px;
	}
}
/* Firefox specific hack to make the share more button look better on Firefox. */
@-moz-document url-prefix() {
	.sd-social-icon .sd-content ul li a.share-more {
		top: 2px;
	}
}

.sd-social-icon .sd-content ul li a.share-more span {
	margin-left: 3px;
}


/* Individual icons */
.sd-social-icon .sd-content ul li.share-print a:before,
.sd-social-text .sd-content ul li.share-print a:before,
.sd-content ul li.share-print div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-print a:before,
.sd-social-official .sd-content li.share-print a:before {
	content: '\f469';
}

.sd-social-icon .sd-content ul li.share-email a:before,
.sd-social-text .sd-content ul li.share-email a:before,
.sd-content ul li.share-email div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-email a:before,
.sd-social-official .sd-content li.share-email a:before {
	content: '\f410';
}
.sd-social-icon .sd-content ul li.share-linkedin a:before,
.sd-social-text .sd-content ul li.share-linkedin a:before,
.sd-content ul li.share-linkedin div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-linkedin a:before {
	content: '\f207';
}
.sd-social-icon .sd-content ul li.share-twitter a:before,
.sd-social-text .sd-content ul li.share-twitter a:before,
.sd-content ul li.share-twitter div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-twitter a:before {
	content: '\f202';
}
.sd-social-icon .sd-content ul li.share-reddit a:before,
.sd-social-text .sd-content ul li.share-reddit a:before,
.sd-content ul li.share-reddit div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-reddit a:before {
	content: '\f222';
}
.sd-social-icon .sd-content ul li.share-tumblr a:before,
.sd-social-text .sd-content ul li.share-tumblr a:before,
.sd-content ul li.share-tumblr div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-tumblr a:before {
	content: '\f607';
}

.sd-social-icon .sd-content ul li.share-pocket a:before,
.sd-social-text .sd-content ul li.share-pocket a:before,
.sd-content ul li.share-pocket div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-pocket a:before {
	content: '\f224';
}
.sd-social-icon .sd-content ul li.share-pinterest a:before,
.sd-social-text .sd-content ul li.share-pinterest a:before,
.sd-content ul li.share-pinterest div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-pinterest a:before {
	content: '\f210';
}
.sd-social-icon .sd-content ul li.share-facebook a:before,
.sd-social-text .sd-content ul li.share-facebook a:before,
.sd-content ul li.share-facebook div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-facebook a:before {
	content: '\f203';
}
.sd-social-icon .sd-content ul li.share-press-this a:before,
.sd-social-text .sd-content ul li.share-press-this a:before,
.sd-content ul li.share-press-this div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-press-this a:before,
.sd-social-official .sd-content li.share-press-this a:before {
	content: '\f205';
}
.sd-social-official .sd-content li.share-press-this a:before {
	color: #2ba1cb;
}
.sd-social-icon .sd-content ul li.share-telegram a:before,
.sd-social-text .sd-content ul li.share-telegram a:before,
.sd-content ul li.share-telegram div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-telegram a:before,
.sd-social-official .sd-content li.share-telegram a:before {
	content: '\f606';
}
.sd-social-official .sd-content li.share-telegram a:before {
	color: #0088cc;
}
.sd-social-icon .sd-content ul li.share-skype a:before,
.sd-social-text .sd-content ul li.share-skype a:before,
.sd-content ul li.share-skype div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-skype a:before {
	content: '\f220';
}
.sd-social-icon .sd-content ul a.share-more:before,
.sd-social-text .sd-content ul a.share-more:before,
.sd-content ul li.advanced a.share-more:before,
.sd-social-icon-text .sd-content a.share-more:before,
.sd-social-official .sd-content a.share-more:before {
	content: '\f415';
}
.sd-social-official .sd-content a.share-more:before {
	color: #2ba1cb;
}

.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a:before,
.sd-social-text .sd-content ul li.share-jetpack-whatsapp a:before,
.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a:before,
.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a:before,
.sd-social-official .sd-content li.share-jetpack-whatsapp a:before {
	content: '\f608';
}
.sd-social-official .sd-content li.share-jetpack-whatsapp a:before {
	color: #43d854;
}
.sd-social-icon .sd-content ul li[class*='share-'].share-jetpack-whatsapp a.sd-button {
	background: #43d854;
	color: #fff !important;
}


.sd-social-icon .sd-content ul li.share-deprecated a:before,
.sd-social-icon-text .sd-content li.share-deprecated a:before,
.sd-social-official .sd-content li.share-deprecated a:before,
.sd-content ul li.share-deprecated div.option.option-smart-off a:before {
	width: 1em;
	height: 1em;
	content: "\1F6AB";
}

/* Share count */
.sd-social .sd-button .share-count {
	background: #2ea2cc;
	color: #fff;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display: inline-block;
	text-align: center;
	font-size: 10px;
	padding: 1px 3px;
	line-height: 1;
}


/* Official buttons */
.sd-social-official .sd-content ul, .sd-social-official .sd-content ul li {
	line-height: 25px !important;
}

.sd-social-official .sd-content>ul>li>a.sd-button span {
	line-height: 1;
}

.sd-social-official .sd-content ul:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.sd-social-official .sd-content li.share-press-this a {
	margin: 0 0 5px 0;
}

.sd-social-official .sd-content ul>li {
	display: block;
	float: left;
	margin: 0 10px 5px 0 !important;
	height: 25px;
}

.sd-social-official .fb-share-button > span {
	vertical-align: top !important;
}

.sd-social-official .sd-content .pocket_button iframe {
	width: 98px;
}


/* Individual official buttons */
.reddit_button iframe {
	margin-top: 1px;
}

.pocket_button iframe, .pinterest_button, .twitter_button, .linkedin_button>span {
	margin: 0 !important;
}

.linkedin_button>span, .pinterest_button a {
	display: block !important;
}

.sd-social-official .sd-content .share-skype {
	width: 55px;
}

body .sd-social-official li.share-print ,
body .sd-social-official li.share-email a,
body .sd-social-official li.share-custom a,
body .sd-social-official li a.share-more,
body .sd-social-official li.share-digg a,
body .sd-social-official li.share-press-this a
{
	position: relative;
	top: 0;
}


/* Custom icons */
body .sd-social-icon .sd-content li.share-custom>a {
	padding: 2px 3px 0 3px;
	position: relative;
	top: 4px;
}

body .sd-social-icon .sd-content li.share-custom a span,
body .sd-social-icon-text .sd-content li.share-custom a span,
body .sd-social-text .sd-content li.share-custom a span,
body .sd-social-official .sd-content li.share-custom a span,
body .sd-content ul li.share-custom a.share-icon span
{
	background-size: 16px 16px;
	background-repeat: no-repeat;
	margin-left: 0;
	padding: 0 0 0 19px;
	display: inline-block;
	height: 21px;
	line-height: 16px;
}

body .sd-social-icon .sd-content li.share-custom a span {
	width: 0;
}

body .sd-social-icon .sd-content li.share-custom a span {
	padding-left: 16px !important;
}


/* Overflow Sharing dialog */
.sharing-hidden .inner {
	position: absolute;
	z-index: 2;
	border: 1px solid #ccc;
	padding: 10px;
	background: #fff;
	box-shadow: 0px 5px 20px rgba(0,0,0,.2);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	margin-top: 5px;
	max-width: 400px;
}

.sharing-hidden .inner ul{
	margin: 0 !important;
}

.sd-social-official .sd-content .sharing-hidden ul>li.share-end {
	clear: both;
	margin: 0 !important;
	height: 0 !important;
}

.sharing-hidden .inner:before, .sharing-hidden .inner:after {
	position: absolute;
	z-index: 1;
	top: -8px;
	left: 20px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #ccc;
	content: "";
	display: block;
}

.sharing-hidden .inner:after {
	z-index: 2;
	top: -7px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #fff;
}

.sharing-hidden ul {
	margin: 0;
}


/**
 * Special colorful look for "Icon Only" option
 */

.sd-social-icon .sd-content ul li[class*='share-'] a,
.sd-social-icon .sd-content ul li[class*='share-'] a:hover,
.sd-social-icon .sd-content ul li[class*='share-'] div.option a {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 0;
	box-shadow: none;
	padding: 7px;
	position: relative;
	top: -2px;
	line-height: 1;
	width: auto;
	height: auto;
	margin-bottom: 0;
}

.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button>span,
.sd-social-icon .sd-content ul li[class*='share-'] div.option a span {
	line-height: 1;
}

.sd-social-icon .sd-content ul li[class*='share-'] a:hover,
.sd-social-icon .sd-content ul li[class*='share-'] div.option a:hover {
	border: none;
	opacity: .6;
}



.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button:before {
	top: 1px;
	top: 0px\9; /* IE8 and below */
}

.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button.share-custom {
	padding: 8px 8px 6px 8px;
	top: 5px;
}

.sd-social-icon .sd-content ul li a.sd-button.share-more {
	margin-left: 10px;
}

.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more {
	margin-left: 0;
}


.sd-social-icon .sd-button span.share-count {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 0;
	background: #555;
	font-size: 9px;
}

/* Special look colors */
.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button {
	background: #e9e9e9;
	margin-top: 2px;
	text-indent: 0;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-tumblr a.sd-button {
	background: #2c4762;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-facebook a.sd-button {
	background: #1877F2;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-twitter a.sd-button {
	background: #00acee;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-pinterest a.sd-button {
	background: #ca1f27;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-digg a.sd-button {
	color: #555555 !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-press-this a.sd-button {
	background: #1e8cbe;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-telegram a.sd-button {
	background: #0088cc;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-linkedin a.sd-button {
	background: #0077b5;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-pocket a.sd-button {
	background: #ee4056;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-reddit a.sd-button {
	background: #cee3f8;
	color: #555555 !important;
}

.sd-social-icon .sd-content ul li[class*='share-'].share-skype a.sd-button {
	background: #00AFF0;
	color: #fff !important;
}

/**
 * Screen Reader Text for "Icon Only" option
 */

.sharing-screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.sharing-screen-reader-text:hover,
.sharing-screen-reader-text:active,
.sharing-screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}


/**
 * Sharing Email Dialog
 */

#sharing_email {
	width: 342px;
	position: absolute;
	z-index: 1001;
	border: 1px solid #ccc;
	padding: 15px;
	background: #fff;
	box-shadow: 0px 5px 20px rgba(0,0,0,.2);
	text-align: left;
}

div.sharedaddy.sharedaddy-dark #sharing_email {
	border-color: #fff;
}

#sharing_email .errors {
	color: #fff;
	background-color: #771a09;
	font-size: 12px;
	padding: 5px 8px;
	line-height: 1;
	margin: 10px 0 0 0;
}

#sharing_email label {
	font-size: 12px;
	color: #333;
	font-weight: bold;
	display: block;
	padding: 0 0 4px 0;
	text-align: left;
	text-shadow: none;
}

#sharing_email form {
	margin: 0;
}

#sharing_email input[type="text"], #sharing_email input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	border: 1px solid #ccc;
	margin-bottom: 1em;
	background: #fff;
	font-size: 12px;
	color: #333;
	max-width: none;
	padding: 1px 3px;
}
#jetpack-source_f_name {
	display: none!important;
	position: absolute !important;
	left: -9000px;
}

#sharing_email .sharing_cancel {
	padding: 0 0 0 1em;
	font-size: 12px;
	text-shadow: none;
}

#sharing_email .recaptcha {
	width: 312px;
	height: 123px;
	margin: 0 0 1em 0;
}
/* Generated by grunt-webfont */



@font-face {
	font-family:"social-logos";
	src:url(/wp-content/mu-plugins/social-logos/social-logos.eot?51b607ee5b5cb2a0e4517176475a424c);
	font-weight:normal;
	font-style:normal;
}
@font-face {
	font-family:"social-logos";
	src:url(/wp-content/mu-plugins/social-logos/social-logos.eot?51b607ee5b5cb2a0e4517176475a424c);
	src:url(/wp-content/mu-plugins/social-logos/social-logos.eot?#iefix) format("embedded-opentype"),
		url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
		url(/wp-content/mu-plugins/social-logos/social-logos.ttf?51b607ee5b5cb2a0e4517176475a424c) format("truetype");
	font-weight:normal;
	font-style:normal;
}

.social-logo {
	font-family:"social-logos";
	display:inline-block;
	vertical-align:middle;
	line-height:1;
	font-weight:normal;
	font-style:normal;
	speak:none;
	text-decoration:inherit;
	text-transform:none;
	text-rendering:auto;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}


/* Icons */


.social-logo__amazon:before {
	content:"\f600";
}


.social-logo__behance:before {
	content:"\f101";
}


.social-logo__blogger-alt:before {
	content:"\f601";
}


.social-logo__blogger:before {
	content:"\f602";
}


.social-logo__codepen:before {
	content:"\f216";
}


.social-logo__dribbble:before {
	content:"\f201";
}


.social-logo__dropbox:before {
	content:"\f225";
}


.social-logo__eventbrite:before {
	content:"\f603";
}


.social-logo__facebook:before {
	content:"\f203";
}


.social-logo__feed:before {
	content:"\f413";
}


.social-logo__flickr:before {
	content:"\f211";
}


.social-logo__foursquare:before {
	content:"\f226";
}


.social-logo__ghost:before {
	content:"\f61c";
}


.social-logo__github:before {
	content:"\f200";
}


.social-logo__google-plus-alt:before {
	content:"\f218";
}


.social-logo__google-plus:before {
	content:"\f206";
}


.social-logo__instagram:before {
	content:"\f215";
}


.social-logo__linkedin:before {
	content:"\f207";
}


.social-logo__mail:before {
	content:"\f410";
}


.social-logo__medium:before {
	content:"\f623";
}


.social-logo__path-alt:before {
	content:"\f604";
}


.social-logo__path:before {
	content:"\f219";
}


.social-logo__pinterest-alt:before {
	content:"\f210";
}


.social-logo__pinterest:before {
	content:"\f209";
}


.social-logo__pocket:before {
	content:"\f224";
}


.social-logo__polldaddy:before {
	content:"\f217";
}


.social-logo__print:before {
	content:"\f469";
}


.social-logo__reddit:before {
	content:"\f222";
}


.social-logo__share:before {
	content:"\f415";
}


.social-logo__skype:before {
	content:"\f220";
}


.social-logo__spotify:before {
	content:"\f515";
}


.social-logo__squarespace:before {
	content:"\f605";
}


.social-logo__stumbleupon:before {
	content:"\f223";
}


.social-logo__telegram:before {
	content:"\f606";
}


.social-logo__tumblr-alt:before {
	content:"\f607";
}


.social-logo__tumblr:before {
	content:"\f214";
}


.social-logo__twitch:before {
	content:"\f516";
}


.social-logo__twitter-alt:before {
	content:"\f202";
}


.social-logo__twitter:before {
	content:"\f610";
}


.social-logo__vimeo:before {
	content:"\f212";
}


.social-logo__whatsapp:before {
	content:"\f608";
}


.social-logo__wordpress:before {
	content:"\f205";
}


.social-logo__xanga:before {
	content:"\f609";
}


.social-logo__youtube:before {
	content:"\f213";
}
/*
	Global styles for WordPress.com
*/
img.latex {
	border: none;
	vertical-align: middle;
}
.video-player {
	border: 0;
	margin: auto;
	padding: 5px;
	text-align: center;
	max-width: 100%;
}
.hidden {
	display: none;
}
.screen-reader-text {
	position: absolute;
	left: -1000em;
}
.comment object,
.comment embed,
.embed-vimeo iframe,
.embed-youtube iframe {
	max-width: 100%; /* avoid videos being too wide */
}


/**
 * Layout
 */

.simple-homepage {
	display: none;
}


@charset "UTF-8";
@charset "UTF-8";button[data-load-more-btn],button,.button,input[type=submit],.wp-block-button__link,.wp-block-file__button,.a8c-posts-list__view-all,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept{line-height:1;color:#fff;cursor:pointer;font-weight:700;font-family:"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-base,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:.83333rem;background-color:#897248;border-radius:5px;border-width:0;padding:16px}button[data-load-more-btn]:before,button:before,.button:before,input[type=submit]:before,.wp-block-button__link:before,.wp-block-file__button:before,.a8c-posts-list__view-all:before,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before,button[data-load-more-btn]:after,button:after,.button:after,input[type=submit]:after,.wp-block-button__link:after,.wp-block-file__button:after,.a8c-posts-list__view-all:after,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after{content:'';display:block;height:0;width:0}button[data-load-more-btn]:before,button:before,.button:before,input[type=submit]:before,.wp-block-button__link:before,.wp-block-file__button:before,.a8c-posts-list__view-all:before,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before{margin-bottom:-.12em}button[data-load-more-btn]:after,button:after,.button:after,input[type=submit]:after,.wp-block-button__link:after,.wp-block-file__button:after,.a8c-posts-list__view-all:after,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after{margin-top:-.11em}button:hover,.button:hover,input:hover[type=submit],.wp-block-button__link:hover,.wp-block-file__button:hover,.a8c-posts-list__view-all:hover,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover,button:focus,.button:focus,input:focus[type=submit],.wp-block-button__link:focus,.wp-block-file__button:focus,.a8c-posts-list__view-all:focus,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus,button.has-focus,.has-focus.button,input.has-focus[type=submit],.has-focus.wp-block-button__link,.has-focus.wp-block-file__button,.has-focus.a8c-posts-list__view-all,body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept{color:#fff;background-color:#685636}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em;overflow:scroll}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,form,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{padding:0;margin:0;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}html{font-size:16.66667px;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-base,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);line-height:1.6}@media only screen and (min-width:560px){html{font-size:20px}}body{font-size:1rem;font-weight:400;color:#181818;text-align:left;background-color:#fff}a{color:#897248}a:hover{color:#685636}button,a{cursor:pointer}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute !important;width:1px;word-wrap:normal !important}.screen-reader-text:focus{background-color:#fff;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto !important;clip-path:none;color:#181818;display:block;font-size:1.2rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#content[tabindex="-1"]:focus{outline:0}.clear:before,.clear:after,.entry-content:before,.entry-content:after,.comment-content:before,.comment-content:after,.site-header:before,.site-header:after,.site-content:before,.site-content:after,.site-footer:before,.site-footer:after{content:"";display:table;table-layout:fixed}.clear:after,.entry-content:after,.comment-content:after,.site-header:after,.site-content:after,.site-footer:after{clear:both}header *,main *,footer *{max-width:unset}html,body,div,header,nav,article,figure,hr,main,section,footer{max-width:none}::selection{background-color:#add8e6}::-moz-selection{background-color:#add8e6}.site-header,.site-main,.site-footer{padding:16px;margin-left:auto;margin-right:auto}@media only screen and (min-width:560px){.site-header,.site-main,.site-footer{padding-top:32px;padding-right:0;padding-bottom:32px;padding-left:0}}.site-main>*{margin-top:calc(3*32px);margin-bottom:calc(3*32px)}.site-main>*:first-child{margin-top:0}.site-main>*:last-child{margin-bottom:0}.entry-header,.post-thumbnail,.entry-content,.entry-footer,.author-bio,.widget-area{margin-top:32px;margin-right:auto;margin-bottom:32px;margin-left:auto}.site-footer>*,.site-main>article>*,.site-main>.not-found>*,.entry-content>*,[class*=inner-container]>*,.widget-area>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.site-footer>*,.site-main>article>*,.site-main>.not-found>*,.entry-content>*,[class*=inner-container]>*,.widget-area>*{margin-top:32px;margin-bottom:32px}}.site-footer>*:first-child,.site-main>article>*:first-child,.site-main>.not-found>*:first-child,.entry-content>*:first-child,[class*=inner-container]>*:first-child,.widget-area>*:first-child{margin-top:0}.site-footer>*:last-child,.site-main>article>*:last-child,.site-main>.not-found>*:last-child,.entry-content>*:last-child,[class*=inner-container]>*:last-child,.widget-area>*:last-child{margin-bottom:0}.site-header>*,.entry-header>*,.post-thumbnail>*,.page-content>*,.comment-content>*,.author-bio>*,.widget-area>.widget>*{margin-top:16px;margin-bottom:16px}.site-header>*:first-child,.entry-header>*:first-child,.post-thumbnail>*:first-child,.page-content>*:first-child,.comment-content>*:first-child,.author-bio>*:first-child,.widget-area>.widget>*:first-child{margin-top:0}.site-header>*:last-child,.entry-header>*:last-child,.post-thumbnail>*:last-child,.page-content>*:last-child,.comment-content>*:last-child,.author-bio>*:last-child,.widget-area>.widget>*:last-child{margin-bottom:0}.entry-content>*.alignleft,.entry-content>*.alignright,.entry-content>*.alignleft:first-child+*,.entry-content>*.alignright:first-child+*,.entry-content>*.alignfull{margin-top:0}.entry-content>*:last-child,.entry-content>*.alignfull{margin-bottom:0}.entry-content>*.alignfull+.alignleft,.entry-content>*.alignfull+.alignright{margin-top:32px}blockquote{padding-left:16px}blockquote p{font-size:1.2rem;letter-spacing:normal;line-height:1.125}blockquote cite,blockquote footer{font-size:.83333rem;letter-spacing:normal}blockquote>*{margin-top:16px;margin-bottom:16px}blockquote>*:first-child{margin-top:0}blockquote>*:last-child{margin-bottom:0}blockquote.alignleft,blockquote.alignright{padding-left:inherit}blockquote.alignleft p,blockquote.alignright p{font-size:1rem;max-width:inherit;width:inherit}blockquote.alignleft cite,blockquote.alignleft footer,blockquote.alignright cite,blockquote.alignright footer{font-size:.69444rem;letter-spacing:normal}input[type=text],input[type=email],input[type=url],input[type=password],input[type=search],input[type=number],input[type=tel],input[type=range],input[type=date],input[type=month],input[type=week],input[type=time],input[type=datetime],input[type=datetime-local],input[type=color],textarea{color:#181818;border:1px solid #ccc;border-radius:3px;padding:16px}input[type=text]:focus,input[type=email]:focus,input[type=url]:focus,input[type=password]:focus,input[type=search]:focus,input[type=number]:focus,input[type=tel]:focus,input[type=range]:focus,input[type=date]:focus,input[type=month]:focus,input[type=week]:focus,input[type=time]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=color]:focus,textarea:focus{color:#181818;border-color:#685636}select{border:1px solid #ccc}textarea{width:100%}input[type=checkbox]+label{display:inline;margin-left:.5em;margin-right:2em;line-height:1em}figcaption{color:#686868;font-size:.69444rem;margin-top:calc(.5*16px);margin-bottom:16px;text-align:center}.alignleft figcaption,.alignright figcaption{margin-bottom:0}.page-content .wp-smiley,.entry-content .wp-smiley,.comment-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-block-audio{min-width:inherit}.wp-block-audio.alignleft,.wp-block-audio.alignright{min-width:300px}.wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail{margin-bottom:16px}.wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail{margin-right:32px}.wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail{margin-left:32px}.wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper{padding:32px}.wp-block-newspack-blocks-homepage-articles.is-grid article{margin-top:0;margin-bottom:64px}@media only screen and (min-width:560px){.wp-block-newspack-blocks-homepage-articles.is-grid article{margin-bottom:96px}}.wp-block-newspack-blocks-homepage-articles .article-section-title{font-size:1rem;margin-bottom:16px}.wp-block-newspack-blocks-homepage-articles .article-section-title+article{margin-top:0}.wp-block-newspack-blocks-homepage-articles article{display:block;margin-top:64px;margin-bottom:64px}@media only screen and (min-width:560px){.wp-block-newspack-blocks-homepage-articles article{margin-top:96px;margin-bottom:96px}}.wp-block-newspack-blocks-homepage-articles article:first-child{margin-top:0}.wp-block-newspack-blocks-homepage-articles article:last-child{margin-bottom:96px}.wp-block-newspack-blocks-homepage-articles article .post-thumbnail img{width:auto}.wp-block-newspack-blocks-homepage-articles article .entry-wrapper>*{margin-top:16px;margin-bottom:16px}.wp-block-newspack-blocks-homepage-articles article .entry-wrapper>*:first-child{margin-top:0}.wp-block-newspack-blocks-homepage-articles article .entry-wrapper>*:last-child{margin-bottom:0}.wp-block-newspack-blocks-homepage-articles article .entry-title a{color:#897248}.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .entry-title a{color:currentColor}.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover{color:#685636;text-decoration:underline}.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover{color:currentColor}@media only screen and (min-width:560px){.wp-block-newspack-blocks-homepage-articles article .more-link{margin-top:16px}}.wp-block-newspack-blocks-homepage-articles article .entry-meta,.wp-block-newspack-blocks-homepage-articles article .cat-links{color:#686868;font-size:.83333rem}.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .entry-meta,.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .cat-links{color:currentColor}.wp-block-newspack-blocks-homepage-articles article .entry-meta>span>*,.wp-block-newspack-blocks-homepage-articles article .cat-links>span>*{vertical-align:top}.wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),.wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child){margin-right:16px}.wp-block-newspack-blocks-homepage-articles article .entry-meta .published+.updated,.wp-block-newspack-blocks-homepage-articles article .cat-links .published+.updated{display:none}.wp-block-newspack-blocks-homepage-articles article .entry-meta a,.wp-block-newspack-blocks-homepage-articles article .cat-links a{color:currentColor;text-decoration:underline}.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,.wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,.wp-block-newspack-blocks-homepage-articles article .cat-links a:active{color:#685636;text-decoration:none}.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .cat-links a:active{color:currentColor}button[data-load-more-btn],button,.button,input[type=submit],.wp-block-button__link,.wp-block-file__button,.a8c-posts-list__view-all,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept{line-height:1;color:#fff;cursor:pointer;font-weight:700;font-family:"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-base,"Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:.83333rem;background-color:#897248;border-radius:5px;border-width:0;padding:16px}button[data-load-more-btn]:before,button:before,.button:before,input[type=submit]:before,.wp-block-button__link:before,.wp-block-file__button:before,.a8c-posts-list__view-all:before,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before,button[data-load-more-btn]:after,button:after,.button:after,input[type=submit]:after,.wp-block-button__link:after,.wp-block-file__button:after,.a8c-posts-list__view-all:after,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after{content:'';display:block;height:0;width:0}button[data-load-more-btn]:before,button:before,.button:before,input[type=submit]:before,.wp-block-button__link:before,.wp-block-file__button:before,.a8c-posts-list__view-all:before,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before{margin-bottom:-.12em}button[data-load-more-btn]:after,button:after,.button:after,input[type=submit]:after,.wp-block-button__link:after,.wp-block-file__button:after,.a8c-posts-list__view-all:after,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after{margin-top:-.11em}button:hover,.button:hover,input:hover[type=submit],.wp-block-button__link:hover,.wp-block-file__button:hover,.a8c-posts-list__view-all:hover,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover,button:focus,.button:focus,input:focus[type=submit],.wp-block-button__link:focus,.wp-block-file__button:focus,.a8c-posts-list__view-all:focus,body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus,button.has-focus,.has-focus.button,input.has-focus[type=submit],.has-focus.wp-block-button__link,.has-focus.wp-block-file__button,.has-focus.a8c-posts-list__view-all,body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept{color:#fff;background-color:#685636}button[data-load-more-btn]{display:inline-block}.has-background:not(.has-background-background-color) button[data-load-more-btn],[class*=background-color]:not(.has-background-background-color) button[data-load-more-btn],[style*=background-color] button[data-load-more-btn]{background-color:transparent;border:2px solid currentColor;color:currentColor}.wp-block-button.is-style-outline .wp-block-button__link{color:#897248;background:0 0;border:2px solid currentcolor;padding:14px 16px}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-button.is-style-outline .wp-block-button__link:focus,.wp-block-button.is-style-outline .wp-block-button__link.has-focus{color:#685636}.wp-block-button.is-style-squared .wp-block-button__link{border-radius:0}.wp-block-code{color:#181818;font-size:.83333rem;padding:16px;border-color:#ccc}.wp-block-code pre{color:#181818}.wp-block-columns .wp-block-column>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-columns .wp-block-column>*{margin-top:32px;margin-bottom:32px}}.wp-block-columns .wp-block-column>*:first-child{margin-top:0}.wp-block-columns .wp-block-column>*:last-child{margin-bottom:0}.wp-block-columns .wp-block-column:last-child{margin-bottom:0}.wp-block-columns .wp-block-column:not(:last-child){margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-columns .wp-block-column:not(:last-child){margin-bottom:32px}}@media only screen and (min-width:782px){.wp-block-columns .wp-block-column:not(:last-child){margin-bottom:0}}.wp-block-columns.alignfull{padding-left:16px;padding-right:16px}.wp-block-columns.alignfull:not(:first-child){margin-top:32px}.wp-block-columns.alignfull:not(:last-child){margin-bottom:32px}.wp-block-cover,.wp-block-cover-image{background-color:#000;min-height:480px;margin-top:inherit;margin-bottom:inherit}.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover-image .wp-block-cover-text{color:currentColor;margin-top:32px;margin-bottom:32px}.wp-block-cover .wp-block-cover__inner-container a,.wp-block-cover .wp-block-cover-image-text a,.wp-block-cover .wp-block-cover-text a,.wp-block-cover-image .wp-block-cover__inner-container a,.wp-block-cover-image .wp-block-cover-image-text a,.wp-block-cover-image .wp-block-cover-text a{color:currentColor}.wp-block-cover:not([class*=background-color]) .wp-block-cover__inner-container,.wp-block-cover:not([class*=background-color]) .wp-block-cover-image-text,.wp-block-cover:not([class*=background-color]) .wp-block-cover-text,.wp-block-cover-image:not([class*=background-color]) .wp-block-cover__inner-container,.wp-block-cover-image:not([class*=background-color]) .wp-block-cover-image-text,.wp-block-cover-image:not([class*=background-color]) .wp-block-cover-text{color:#fff}.wp-block-cover h2,.wp-block-cover-image h2{font-size:1.728rem;letter-spacing:normal;line-height:1.125;max-width:inherit;text-align:inherit;padding:0}.wp-block-cover h2.has-text-align-left,.wp-block-cover-image h2.has-text-align-left{text-align:left}.wp-block-cover h2.has-text-align-center,.wp-block-cover-image h2.has-text-align-center{text-align:center}.wp-block-cover h2.has-text-align-right,.wp-block-cover-image h2.has-text-align-right{text-align:right}.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{width:calc(100% - 64px)}.wp-block-cover .wp-block-cover__inner-container>*,.wp-block-cover-image .wp-block-cover__inner-container>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-cover .wp-block-cover__inner-container>*,.wp-block-cover-image .wp-block-cover__inner-container>*{margin-top:32px;margin-bottom:32px}}.wp-block-cover .wp-block-cover__inner-container>*:first-child,.wp-block-cover-image .wp-block-cover__inner-container>*:first-child{margin-top:0}.wp-block-cover .wp-block-cover__inner-container>*:last-child,.wp-block-cover-image .wp-block-cover__inner-container>*:last-child{margin-bottom:0}.wp-block-cover.alignleft,.wp-block-cover.alignright,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright{margin-top:0}.wp-block-cover.alignleft>*,.wp-block-cover.alignright>*,.wp-block-cover-image.alignleft>*,.wp-block-cover-image.alignright>*{margin-top:calc(2*32px);margin-bottom:calc(2*32px);padding-left:16px;padding-right:16px;width:100%}.wp-block-cover.has-left-content,.wp-block-cover.has-right-content,.wp-block-cover-image.has-left-content,.wp-block-cover-image.has-right-content{justify-content:center}.wp-block-file .wp-block-file__button{background-color:#897248;color:#fff;font-size:.83333rem;margin-left:16px;margin-right:16px}.wp-block-file .wp-block-file__button:before,.wp-block-file .wp-block-file__button:after{display:inherit}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{color:#fff;opacity:.85}.wp-block-gallery{margin:0}.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{margin:0;color:#fff;font-size:.69444rem}.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc((100% - 16px)/2)}.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:50%}.wp-block-group .wp-block-group__inner-container{margin-left:auto;margin-right:auto}.wp-block-group .wp-block-group__inner-container>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-group .wp-block-group__inner-container>*{margin-top:32px;margin-bottom:32px}}.wp-block-group .wp-block-group__inner-container>*:first-child{margin-top:0}.wp-block-group .wp-block-group__inner-container>*:last-child{margin-bottom:0}.wp-block-group.has-background{padding:21.312px}@media only screen and (min-width:560px){.wp-block-group.has-background{padding:32px}}h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-weight:700;clear:both}h1,.h1{font-size:2.0736rem;letter-spacing:normal;line-height:1.125}h2,.h2{font-size:1.728rem;letter-spacing:normal;line-height:1.125}h3,.h3{font-size:1.44rem;letter-spacing:normal;line-height:1.125}h4,.h4{font-size:1.2rem;letter-spacing:normal;line-height:1.125}h5,.h5{font-size:1rem;letter-spacing:normal;line-height:1.125}h6,.h6{font-size:.83333rem;letter-spacing:normal;line-height:1.125}.wp-block-image{text-align:center}.wp-block-image figcaption{color:#686868;font-size:.69444rem;margin-top:calc(.5*16px);margin-bottom:16px;text-align:center}.entry-content>*[class=wp-block-image],.entry-content [class*=inner-container]>*[class=wp-block-image]{margin-top:0;margin-bottom:0}.entry-content>*[class=wp-block-image]+*,.entry-content [class*=inner-container]>*[class=wp-block-image]+*{margin-top:0}img{height:auto;max-width:100%;vertical-align:middle}.wp-block-latest-comments{padding-left:0}.wp-block-latest-comments .wp-block-latest-comments__comment{font-size:.83333rem;line-height:1.6;margin-top:32px;margin-bottom:32px}.wp-block-latest-comments .wp-block-latest-comments__comment:first-child{margin-top:0}.wp-block-latest-comments .wp-block-latest-comments__comment:last-child{margin-bottom:0}.wp-block-latest-comments .wp-block-latest-comments__comment-meta{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif)}.wp-block-latest-comments .wp-block-latest-comments__comment-date{color:#686868;font-size:.83333rem}.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p{font-size:.83333rem;line-height:1.6;margin:0}.wp-block-latest-posts{padding-left:0}.wp-block-latest-posts>li{margin-top:32px;margin-bottom:32px}.wp-block-latest-posts>li:first-child{margin-top:0}.wp-block-latest-posts>li:last-child{margin-bottom:0}.wp-block-latest-posts>li>a{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:1.2rem;font-weight:700;line-height:1.125}.wp-block-latest-posts .wp-block-latest-posts__post-date{color:#686868;font-size:.69444rem;line-height:1.6}.entry-content [class*=inner-container] .wp-block-latest-posts .wp-block-latest-posts__post-date,.entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date{color:currentColor}.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,.wp-block-latest-posts .wp-block-latest-posts__post-full-content{font-size:.83333rem;line-height:1.6;margin:0}.wp-block-latest-posts.alignfull{padding-left:16px;padding-right:16px}.entry-content [class*=inner-container] .wp-block-latest-posts.alignfull,.entry-content .has-background .wp-block-latest-posts.alignfull{padding-left:0;padding-right:0}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-item a{display:block}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}ul,ol{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-base,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);margin:0;padding-left:32px}ul.aligncenter,ol.aligncenter{list-style-position:inside;padding:0}ul.alignright,ol.alignright{list-style-position:inside;text-align:right;padding:0}ul{list-style-type:disc}ol{list-style-type:decimal}dt{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-weight:700}dd{margin:0;padding-left:32px}.wp-block-media-text .wp-block-media-text__content{padding:16px}@media only screen and (min-width:640px){.wp-block-media-text .wp-block-media-text__content{padding:32px}}.wp-block-media-text .wp-block-media-text__content>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-media-text .wp-block-media-text__content>*{margin-top:32px;margin-bottom:32px}}.wp-block-media-text .wp-block-media-text__content>*:first-child{margin-top:0}.wp-block-media-text .wp-block-media-text__content>*:last-child{margin-bottom:0}.wp-block-media-text[class*=background-color]:not(.has-background-background-color) .wp-block-media-text__content a,.wp-block-media-text[style*=background-color] .wp-block-media-text__content a{color:currentColor}@media only screen and (min-width:560px){.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{padding-top:32px;padding-bottom:32px}}p.has-background{padding:16px}.a8c-posts-list__listing{list-style:none;margin:0;padding:0}.a8c-posts-list__listing:not(:last-child){margin-bottom:calc(3*32px)}.a8c-posts-list-item__featured span{color:#fff;background-color:#897248;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-weight:700;font-size:.83333rem;line-height:1;padding:calc(.5*16px) calc(.66*16px)}.a8c-posts-list__item{display:block;margin-top:calc(3*32px);margin-bottom:calc(3*32px)}.a8c-posts-list__item:first-child{margin-top:0}.a8c-posts-list__item:last-child{margin-bottom:0}.a8c-posts-list__item .entry>*{margin-top:16px;margin-bottom:16px}.a8c-posts-list__item .entry>*:first-child{margin-top:0}.a8c-posts-list__item .entry>*:last-child{margin-bottom:0}.a8c-posts-list__item .a8c-posts-list-item__meta{color:#686868;font-size:.83333rem}.a8c-posts-list__item .a8c-posts-list-item__meta a{color:currentColor}.a8c-posts-list__item .a8c-posts-list-item__meta a:hover,.a8c-posts-list__item .a8c-posts-list-item__meta a:active{color:#685636}.a8c-posts-list__item .a8c-posts-list-item__edit-link{margin-left:16px}.a8c-posts-list__view-all{display:inline-block}.wp-block-pullquote{padding:calc(3*16px) 0;margin-left:0;margin-right:0;text-align:center;border-top-color:#ccc;border-top-width:4px;border-bottom-color:#ccc;border-bottom-width:4px;color:#181818}.wp-block-pullquote p{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:1.2rem;letter-spacing:normal;line-height:1.125}.wp-block-pullquote a{color:currentColor}.wp-block-pullquote .wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:#686868;font-size:.83333rem;letter-spacing:normal;display:block}.wp-block-pullquote:not(.is-style-solid-color){background:0 0}.wp-block-pullquote:not(.is-style-solid-color) blockquote{padding-left:0}.wp-block-pullquote.is-style-default.alignleft blockquote>*,.wp-block-pullquote.is-style-default.aligncenter blockquote>*,.wp-block-pullquote.is-style-default.alignright blockquote>*{text-align:center}.wp-block-pullquote.is-style-solid-color{background-color:#897248;color:#fff}.wp-block-pullquote.is-style-solid-color blockquote{padding-left:16px;padding-right:16px;max-width:inherit}.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,.wp-block-pullquote.is-style-solid-color cite,.wp-block-pullquote.is-style-solid-color footer{color:currentColor}.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote{margin-left:auto;margin-right:auto}.wp-block-quote{border-left-color:#897248;margin:32px 0;padding-left:16px}.wp-block-quote>*{margin-top:16px;margin-bottom:16px}.wp-block-quote>*:first-child{margin-top:0}.wp-block-quote>*:last-child{margin-bottom:0}.wp-block-quote p{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:1.2rem;letter-spacing:normal;line-height:1.125}.wp-block-quote .wp-block-quote__citation,.wp-block-quote cite,.wp-block-quote footer{color:#686868;font-size:.83333rem;letter-spacing:normal}.has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,[class*=background-color]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,[style*=background-color] .wp-block-quote .wp-block-quote__citation,.wp-block-cover[style*=background-image] .wp-block-quote .wp-block-quote__citation,.has-background:not(.has-background-background-color) .wp-block-quote cite,[class*=background-color]:not(.has-background-background-color) .wp-block-quote cite,[style*=background-color] .wp-block-quote cite,.wp-block-cover[style*=background-image] .wp-block-quote cite,.has-background:not(.has-background-background-color) .wp-block-quote footer,[class*=background-color]:not(.has-background-background-color) .wp-block-quote footer,[style*=background-color] .wp-block-quote footer,.wp-block-cover[style*=background-image] .wp-block-quote footer{color:currentColor}.wp-block-quote[style*="text-align:right"],.wp-block-quote[style*="text-align: right"]{border-right-color:#897248}.wp-block-quote.is-style-large,.wp-block-quote.is-large{margin-top:32px;margin-bottom:32px;padding:0}.wp-block-quote.is-style-large p,.wp-block-quote.is-large p{font-size:1.44rem;letter-spacing:normal;line-height:1.125}.wp-block-quote.is-style-large .wp-block-quote__citation,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer,.wp-block-quote.is-large .wp-block-quote__citation,.wp-block-quote.is-large cite,.wp-block-quote.is-large footer{color:#686868;font-size:.83333rem;letter-spacing:normal}.has-background:not(.has-background-background-color) .wp-block-quote,[class*=background-color]:not(.has-background-background-color) .wp-block-quote,[style*=background-color] .wp-block-quote,.wp-block-cover[style*=background-image] .wp-block-quote{border-color:currentColor}hr{border-bottom:2px solid #ccc;clear:both;margin-left:auto;margin-right:auto}hr.wp-block-separator{border-bottom:2px solid #ccc}hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots){max-width:96px}hr.wp-block-separator.is-style-dots.has-background,hr.wp-block-separator.is-style-dots.has-text-color{background-color:transparent !important}hr.wp-block-separator.is-style-dots.has-background:before,hr.wp-block-separator.is-style-dots.has-text-color:before{color:currentColor !important}hr.wp-block-separator.is-style-dots:before{color:#ccc;font-size:1.728rem;letter-spacing:.83333rem;padding-left:.83333rem}.has-background:not(.has-background-background-color) hr.wp-block-separator,[class*=background-color]:not(.has-background-background-color) hr.wp-block-separator,[style*=background-color] hr.wp-block-separator,.wp-block-cover[style*=background-image] hr.wp-block-separator{border-color:currentColor}.wp-block-jetpack-slideshow ul{margin-left:0;margin-right:0}.wp-block-spacer{display:block;margin-bottom:0 !important;margin-top:0 !important}@media only screen and (max-width:559px){.wp-block-spacer[style]{height:16px !important}}.jetpack_subscription_widget input[type=text]{padding:16px !important;width:100% !important}table,.wp-block-table{width:100%;min-width:240px;border-collapse:collapse}table th,.wp-block-table th{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif)}table td,table th,.wp-block-table td,.wp-block-table th{padding:calc(.5*16px);border:1px solid;word-break:break-all}.wp-block-video figcaption{color:#686868;font-size:.69444rem;margin-top:calc(.5*16px);margin-bottom:16px;text-align:center}*>figure>video{max-width:unset;width:100%;vertical-align:middle}.alignleft{text-align:left;float:left;margin-top:0;margin-right:16px;margin-bottom:32px}.aligncenter{clear:both;display:block;float:none;margin-right:auto;margin-left:auto;text-align:center}.alignright{float:right;margin-top:0;margin-bottom:32px;margin-left:16px}.entry-content *>.alignleft+*,.entry-content *>.alignright+*{margin-top:0}.alignwide{clear:both}.alignfull{clear:both}.has-left-content{justify-content:flex-start}.has-right-content{justify-content:flex-end}.has-parallax{background-attachment:fixed}.has-primary-color[class]{color:#897248 !important}.has-secondary-color[class]{color:#c4493f !important}.has-foreground-color[class]{color:#181818 !important}.has-foreground-light-color[class]{color:#686868 !important}.has-foreground-dark-color[class]{color:#020202 !important}.has-background-light-color[class]{color:#f7f7f7 !important}.has-background-dark-color[class]{color:#ccc !important}.has-background-color[class]{color:#fff !important}.has-background:not(.has-background-background-color) a,.has-background p,.has-background h1,.has-background h2,.has-background h3,.has-background h4,.has-background h5,.has-background h6{color:currentColor}.has-primary-background-color[class]{background-color:#897248 !important;color:#fff}.has-secondary-background-color[class]{background-color:#c4493f !important;color:#fff}.has-foreground-background-color[class]{background-color:#181818 !important;color:#fff}.has-foreground-light-background-color[class]{background-color:#686868 !important;color:#fff}.has-foreground-dark-background-color[class]{background-color:#020202 !important;color:#fff}.has-background-light-background-color[class]{background-color:#f7f7f7 !important;color:#181818}.has-background-dark-background-color[class]{background-color:#ccc !important;color:#181818}.has-background-background-color[class]{background-color:#fff !important;color:#181818}.is-small-text,.has-small-font-size{font-size:.83333rem}.is-regular-text,.has-regular-font-size,.has-normal-font-size,.has-medium-font-size{font-size:1rem}.is-large-text,.has-large-font-size{font-size:1.44rem;line-height:1.125}.is-larger-text,.has-larger-font-size,.has-huge-font-size{font-size:1.728rem;line-height:1.125}.has-drop-cap:not(:focus):first-letter {font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:calc(2*2.0736rem);font-weight:700;line-height:.66;text-transform:uppercase;font-style:normal;float:left;margin:.1em .1em 0 0}.has-drop-cap:not(:focus):after{content:"";display:table;clear:both;padding-top:14px}.desktop-only{display:none}@media only screen and (min-width:560px){.desktop-only{display:block}}.margin-top-none{margin-top:0 !important}.margin-top-half{margin-top:16px !important}.margin-top-default{margin-top:32px !important}.margin-right-none{margin-right:0 !important}.margin-right-half{margin-right:16px !important}.margin-right-default{margin-right:32px !important}.margin-bottom-none{margin-bottom:0 !important}.margin-bottom-half{margin-bottom:16px !important}.margin-bottom-default{margin-bottom:32px !important}.margin-left-none{margin-left:0 !important}.margin-left-half{margin-left:16px !important}.margin-left-default{margin-left:32px !important}.padding-top-none{padding-top:0 !important}.padding-top-half{padding-top:16px !important}.padding-top-default{padding-top:32px !important}.padding-right-none{padding-right:0 !important}.padding-right-half{padding-right:16px !important}.padding-right-default{padding-right:32px !important}.padding-bottom-none{padding-bottom:0 !important}.padding-bottom-half{padding-bottom:16px !important}.padding-bottom-default{padding-bottom:32px !important}.padding-left-none{padding-left:0 !important}.padding-left-half{padding-left:16px !important}.padding-left-default{padding-left:32px !important}.site-branding{color:#686868}.site-title{color:#181818;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);letter-spacing:normal;line-height:1}.site-title a{color:currentColor;font-weight:700}.site-title a:link,.site-title a:visited{color:currentColor}.site-title a:hover{color:#897248}.site-description{color:currentColor;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-base,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif)}body:not(.fse-enabled) .site-title{font-size:1.2rem}body:not(.fse-enabled) .site-description{font-size:.83333rem}.main-navigation{color:#181818}.main-navigation>div{display:none}.main-navigation #toggle-menu{display:inline-block;margin:0}.main-navigation #toggle:checked~div:not(.woocommerce-menu-container){display:block}.main-navigation #toggle:focus+#toggle-menu{background-color:#897248;outline:inherit;text-decoration:underline}.main-navigation .dropdown-icon.close{display:none}.main-navigation #toggle:checked+#toggle-menu .open{display:none}.main-navigation #toggle:checked+#toggle-menu .close{display:inline}@media only screen and (min-width:560px){.main-navigation>div{display:inline-block}.main-navigation #toggle-menu{display:none}.main-navigation>div>ul>li>ul{display:none}}.main-navigation>div>ul{display:flex;flex-wrap:wrap;list-style:none;margin:0;max-width:none;padding-left:0;position:relative}.main-navigation>div>ul ul{padding-left:0}.main-navigation>div>ul li{display:block;position:relative;width:100%;z-index:1}.main-navigation>div>ul li:hover,.main-navigation>div>ul li[focus-within]{cursor:pointer;z-index:99999}.main-navigation>div>ul li:hover,.main-navigation>div>ul li:focus-within{cursor:pointer;z-index:99999}@media only screen and (min-width:560px){.main-navigation>div>ul li{display:inherit;width:inherit}.main-navigation>div>ul li:hover>ul,.main-navigation>div>ul li[focus-within]>ul,.main-navigation>div>ul li ul:hover,.main-navigation>div>ul li ul:focus{visibility:visible;opacity:1;display:block}.main-navigation>div>ul li:hover>ul,.main-navigation>div>ul li:focus-within>ul,.main-navigation>div>ul li ul:hover,.main-navigation>div>ul li ul:focus{visibility:visible;opacity:1;display:block}}@media only screen and (min-width:560px){.main-navigation>div>ul>li>a{line-height:1}.main-navigation>div>ul>li>a:before,.main-navigation>div>ul>li>a:after{content:'';display:block;height:0;width:0}.main-navigation>div>ul>li>a:before{margin-bottom:-.12em}.main-navigation>div>ul>li>a:after{margin-top:-.11em}.main-navigation>div>ul>li:first-of-type>a{padding-left:0}.main-navigation>div>ul>li:last-of-type>a{padding-right:0}}.main-navigation>div>ul>li>.sub-menu{margin:0;position:relative}@media only screen and (min-width:560px){.main-navigation>div>ul>li>.sub-menu{background:#fff;box-shadow:0px 0px 8px 2px rgba(0,0,0,.1);left:0;top:100%;min-width:max-content;opacity:0;position:absolute;transition:all .5s ease;visibility:hidden}}.main-navigation>div>ul>li>.sub-menu .sub-menu{width:100%}.main-navigation a{color:#181818;display:block;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-weight:700;padding:4px 0}@media only screen and (min-width:560px){.main-navigation a{padding:8px}}.main-navigation a:link,.main-navigation a:visited{color:#181818}.main-navigation a:hover{color:#897248}.main-navigation .sub-menu{list-style:none;margin-left:0;counter-reset:nested-list}.main-navigation .sub-menu .menu-item a{padding-top:4px;padding-bottom:4px}.main-navigation .sub-menu .menu-item a:before{counter-increment:nested-list;content:"– " counters(nested-list,"– ",none)}@media only screen and (min-width:560px){.main-navigation>div>ul>.menu-item-has-children>a:after{content:"\00a0\25BC";display:inline-block;font-size:.69444rem;height:inherit;width:inherit}}.main-navigation .hide-visually{position:absolute !important;clip:rect(1px,1px,1px,1px);padding:0 !important;border:0 !important;height:1px !important;width:1px !important;overflow:hidden}body:not(.fse-enabled) .main-navigation a{font-size:1rem}.social-navigation>div>ul{align-content:center;display:flex;list-style:none;margin:0;padding-left:0}.social-navigation>div>ul>li:first-of-type>a{padding-left:0}.social-navigation>div>ul>li:last-of-type>a{padding-right:0}.social-navigation a{color:#181818;display:inline-block;padding:0 calc(.5*calc(.66*16px))}.social-navigation a:hover{color:#897248}.social-navigation svg{fill:currentColor;vertical-align:middle}.site-footer{overflow:hidden}@media only screen and (min-width:640px){.site-footer{align-items:flex-end;display:flex;flex-wrap:wrap;justify-content:space-between}}.site-info{color:#686868;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:.83333rem}@media only screen and (min-width:640px){.site-info{order:1;flex:1 0 50%;margin-top:0;margin-bottom:0}}.site-info .site-name{font-weight:700}.site-info a{color:currentColor}.site-info a:link,.site-info a:visited{color:currentColor}.site-info a:hover{color:#685636}.footer-navigation{display:inline}@media only screen and (min-width:640px){.footer-navigation{flex:1 0 50%;order:2;margin-top:0;margin-bottom:0;text-align:right}}.footer-navigation>div{display:inline}.footer-navigation .footer-menu{color:#686868;margin:0;padding-left:0}@media only screen and (min-width:640px){.footer-navigation .footer-menu{display:flex;flex-wrap:wrap;justify-content:flex-end}}.footer-navigation .footer-menu>li{display:inline}.footer-navigation .footer-menu>li:first-of-type>a{padding-left:0}.footer-navigation .footer-menu>li:last-of-type{padding-right:0}.footer-navigation .footer-menu a{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-weight:700;padding:8px;color:currentColor}.footer-navigation .footer-menu a:link,.footer-navigation .footer-menu a:visited{color:currentColor}.footer-navigation .footer-menu a:hover{color:#685636}body:not(.fse-enabled) .footer-menu a{font-size:.83333rem}.entry-title{font-size:1.728rem;letter-spacing:normal;line-height:1.125}.entry-meta,.entry-footer{color:#686868;clear:both;float:none;font-size:.83333rem;display:block}.entry-meta>span,.entry-footer>span{display:inline-block;margin-right:16px}.entry-meta>span>*,.entry-footer>span>*{display:inline-block;vertical-align:middle}.entry-meta>span:last-child,.entry-footer>span:last-child{margin-right:0}.entry-meta>span .published+.updated,.entry-footer>span .published+.updated{display:none}.entry-meta a,.entry-footer a{color:currentColor}.entry-meta a:hover,.entry-meta a:active,.entry-footer a:hover,.entry-footer a:active{color:#685636}.entry-meta .svg-icon,.entry-footer .svg-icon{fill:currentColor;position:relative;display:inline-block;vertical-align:middle;margin-right:calc(.25*16px)}.entry-content p{word-wrap:break-word}.entry-content .more-link{display:block;color:inherit;margin-top:16px}@media only screen and (min-width:560px){.entry-content .more-link{margin-top:32px}}.entry-content .more-link:after{content:"\02192";display:inline-block;margin-left:.5em}.entry-content .more-link:hover{text-decoration:none}.entry-content>iframe[style]{margin:32px 0 !important;max-width:100% !important}@media only screen and (min-width:560px){.entry-content>iframe[style]{max-width:32px !important}}.entry-attachment{text-align:center}.post-thumbnail{text-align:center}.post-thumbnail .post-thumbnail-inner{display:block}.site-main>article>.author-bio{margin-top:calc(2*32px)}.author-bio .author-title{font-size:1.44rem}.post-navigation .meta-nav{font-size:.83333rem}.post-navigation .post-title{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:1.44rem;font-weight:600}.post-navigation .nav-next,.post-navigation .nav-previous{margin-top:32px;margin-bottom:32px}.post-navigation .nav-next:first-child,.post-navigation .nav-previous:first-child{margin-top:0}.post-navigation .nav-next:last-child,.post-navigation .nav-previous:last-child{margin-bottom:0}.pagination .nav-links{justify-content:start;margin:0 calc(-.66*16px)}.pagination .nav-links>*{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:1.2rem;font-weight:600;padding-left:calc(.66*16px);padding-right:calc(.66*16px)}.pagination .nav-links .svg-icon{display:inline-block;vertical-align:middle}@media only screen and (min-width:560px){.nav-links{display:flex;justify-content:space-between}.nav-links .nav-next,.nav-links .nav-previous{flex:0 1 auto;margin-bottom:inherit;margin-top:inherit;max-width:calc(50% - (.5*16px))}.nav-links .nav-next{text-align:right}}.comments-area>*{margin-top:32px;margin-bottom:32px}.comments-area>*:first-child{margin-top:0}.comments-area>*:last-child{margin-bottom:0}.comments-title{font-size:1.44rem;letter-spacing:normal}.comment-reply-title{font-size:1.728rem;display:flex;justify-content:space-between;align-items:center}.comment-reply-title small{font-size:1rem;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-base,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);letter-spacing:normal;line-height:1.125}.comment-list{border-bottom:1px solid #ccc;padding-left:0;list-style:none}.comment-list>li{border-top:1px solid #ccc;margin-top:32px;margin-bottom:32px}.comment-list .children{list-style:none;padding-left:16px}.comment-list .children>li{border-top:1px solid #ccc;margin-top:32px;margin-bottom:32px}@media only screen and (min-width:560px){.comment-list .children{padding-left:32px}}.comment-meta{margin-right:calc($avatar-size + (.5*16px))}.comment-meta .comment-author{line-height:1.125;margin-bottom:4px;padding-right:40px;max-width:calc(100% - 48px)}@media only screen and (min-width:560px){.comment-meta .comment-author{display:flex;align-items:center;margin-bottom:0;padding-right:0}}.comment-meta .comment-author .fn{word-wrap:break-word;word-break:break-word;hyphens:auto}.comment-meta .comment-author .avatar{display:block;position:absolute;right:0}.comment-meta .comment-metadata{color:#181818;padding-right:40px}@media only screen and (min-width:560px){.comment-meta .comment-metadata{padding-right:0}}.comment-meta .comment-metadata a{color:currentColor}.comment-meta .comment-metadata a:hover,.comment-meta .comment-metadata a:active{color:#685636}@media only screen and (min-width:560px){.comment-meta{margin-right:inherit;align-items:center;display:flex;justify-content:space-between}.comment-meta .comment-author{display:flex;align-items:center;max-width:inherit;flex:0 1 auto}.comment-meta .comment-author .fn{padding-right:16px}.comment-meta .comment-author .avatar{margin-right:16px;display:inherit;position:inherit;right:inherit}.comment-meta .comment-metadata{flex:0 1 auto}}.comment-metadata,.reply{font-size:.69444rem;line-height:1.125}.reply{text-align:right}@media only screen and (min-width:560px){.reply{text-align:left}}.bypostauthor{display:block}.says{display:none}.comment-author .fn,.pingback .url,.trackback .url{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif)}.comment-body{position:relative}.comment-body>*{margin-top:32px;margin-bottom:32px}.comment-content a{word-wrap:break-word}.pingback .comment-body,.trackback .comment-body{margin-top:32px;margin-bottom:32px}.comment-respond{margin-top:calc(2*32px)}.comment-respond>*{margin-top:16px;margin-bottom:16px}.comment-respond>*:first-child{margin-top:0}.comment-respond>*:last-child{margin-bottom:0}.comment-form>p{margin-top:16px;margin-bottom:16px}.comment-form>p:first-of-type{margin-top:0}.comment-form>p:last-of-type{margin-bottom:0}.comment-form>p label,.comment-form>p input[type=email],.comment-form>p input[type=text],.comment-form>p input[type=url],.comment-form>p textarea{width:100%}.comment-form>p.comment-form-cookies-consent>label{width:auto}@media only screen and (min-width:560px){.comment-form>p{display:flex}.comment-form>p label{width:25%}.comment-form>p.comment-form-cookies-consent{margin-left:25%}.comment-form>p.comment-form-cookies-consent>label{width:auto;display:inline-block}.comment-form>p input[type=email],.comment-form>p input[type=text],.comment-form>p input[type=url],.comment-form>p textarea{width:75%}.comment-form>p.comment-notes,.comment-form>p.logged-in-as{display:block}}.comment-navigation a{font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-size:1.2rem;font-weight:600}.widget-area{flex:0 0 100%}img#wpstats{position:absolute !important;clip:rect(0,0,0,0);padding:0 !important;border:0 !important;height:0 !important;width:0 !important;overflow:hidden}.sticky-post{color:#fff;background-color:#897248;font-family:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;font-family:var(--font-headings,"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif);font-weight:700;font-size:.83333rem;line-height:1;padding:calc(.5*16px) calc(.66*16px)}.page-title{font-size:1.2rem}.responsive-max-width,.wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote,.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote,hr.wp-block-separator.is-style-wide,.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),.entry-content [class*=inner-container]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),.entry-content .wp-audio-shortcode,.post-navigation,.pagination{max-width:100%;margin-left:auto;margin-right:auto}@media only screen and (min-width:560px){.responsive-max-width,.wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote,.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote,hr.wp-block-separator.is-style-wide,.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),.entry-content [class*=inner-container]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),.entry-content .wp-audio-shortcode,.post-navigation,.pagination{max-width:calc(560px - 32px)}}@media only screen and (min-width:640px){.responsive-max-width,.wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote,.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote,hr.wp-block-separator.is-style-wide,.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),.entry-content [class*=inner-container]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),.entry-content .wp-audio-shortcode,.post-navigation,.pagination{max-width:calc(640px - 32px)}}@media only screen and (min-width:782px){.responsive-max-width,.wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote,.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote,hr.wp-block-separator.is-style-wide,.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),.entry-content [class*=inner-container]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),.entry-content .wp-audio-shortcode,.post-navigation,.pagination{max-width:calc(782px - 32px)}}@media only screen and (min-width:1024px){.responsive-max-width,.wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote,.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote,hr.wp-block-separator.is-style-wide,.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),.entry-content [class*=inner-container]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),.entry-content .wp-audio-shortcode,.post-navigation,.pagination{max-width:calc(782px - 32px)}}@media only screen and (min-width:1280px){.responsive-max-width,.wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote,.wp-block-pullquote.alignwide>p,.wp-block-pullquote.alignfull>p,.wp-block-pullquote.alignwide blockquote,.wp-block-pullquote.alignfull blockquote,hr.wp-block-separator.is-style-wide,.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),.entry-content [class*=inner-container]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),.entry-content .wp-audio-shortcode,.post-navigation,.pagination{max-width:calc(782px - 32px)}}.entry-content>.alignwide,.entry-content>.alignwide.wp-block-jetpack-gif,.entry-content>.alignwide.wp-block-jetpack-tiled-gallery,.site-header,#colophon{margin-left:auto;margin-right:auto;max-width:100%}@media only screen and (min-width:560px){.entry-content>.alignwide,.entry-content>.alignwide.wp-block-jetpack-gif,.entry-content>.alignwide.wp-block-jetpack-tiled-gallery,.site-header,#colophon{max-width:calc(560px - 32px)}}@media only screen and (min-width:640px){.entry-content>.alignwide,.entry-content>.alignwide.wp-block-jetpack-gif,.entry-content>.alignwide.wp-block-jetpack-tiled-gallery,.site-header,#colophon{max-width:calc(640px - 32px)}}@media only screen and (min-width:782px){.entry-content>.alignwide,.entry-content>.alignwide.wp-block-jetpack-gif,.entry-content>.alignwide.wp-block-jetpack-tiled-gallery,.site-header,#colophon{max-width:calc(782px - 32px)}}@media only screen and (min-width:1024px){.entry-content>.alignwide,.entry-content>.alignwide.wp-block-jetpack-gif,.entry-content>.alignwide.wp-block-jetpack-tiled-gallery,.site-header,#colophon{width:calc(calc(782px - 32px) + 256px);max-width:calc(100% - 32px)}}@media only screen and (min-width:1280px){.entry-content>.alignwide,.entry-content>.alignwide.wp-block-jetpack-gif,.entry-content>.alignwide.wp-block-jetpack-tiled-gallery,.site-header,#colophon{width:calc(calc(782px - 32px) + 256px);max-width:calc(100% - 32px)}}.entry-content>.alignwide [class*=inner-container]>.alignwide,.entry-content>.alignfull [class*=inner-container]>.alignwide{width:calc(100% + 256px);max-width:100%;margin-left:auto;margin-right:auto}@media only screen and (min-width:560px){.entry-content>.alignwide [class*=inner-container]>.alignwide,.entry-content>.alignfull [class*=inner-container]>.alignwide{width:calc(calc(560px - 32px) + 256px);max-width:100%}}@media only screen and (min-width:640px){.entry-content>.alignwide [class*=inner-container]>.alignwide,.entry-content>.alignfull [class*=inner-container]>.alignwide{width:calc(calc(640px - 32px) + 256px);max-width:100%}}@media only screen and (min-width:782px){.entry-content>.alignwide [class*=inner-container]>.alignwide,.entry-content>.alignfull [class*=inner-container]>.alignwide{width:calc(calc(782px - 32px) + 256px);max-width:100%}}@media only screen and (min-width:1024px){.entry-content>.alignwide [class*=inner-container]>.alignwide,.entry-content>.alignfull [class*=inner-container]>.alignwide{width:calc(calc(782px - 32px) + 256px);max-width:100%}}@media only screen and (min-width:1280px){.entry-content>.alignwide [class*=inner-container]>.alignwide,.entry-content>.alignfull [class*=inner-container]>.alignwide{width:calc(calc(782px - 32px) + 256px);max-width:100%}}.entry-content>.alignfull,.entry-content>.alignfull.wp-block-jetpack-gif,.entry-content>.alignfull.wp-block-jetpack-tiled-gallery{margin-left:-16px;margin-right:-16px;width:calc(100% + 32px);max-width:calc(100% + 32px)}@media only screen and (min-width:560px){.entry-content>.alignfull,.entry-content>.alignfull.wp-block-jetpack-gif,.entry-content>.alignfull.wp-block-jetpack-tiled-gallery{margin-left:inherit;margin-right:inherit;width:inherit;max-width:inherit}}.entry-content>.alignright{margin-right:16px}@media only screen and (min-width:560px){.entry-content>.alignright{margin-right:calc(.5*(100vw - calc(560px - 32px)))}}@media only screen and (min-width:640px){.entry-content>.alignright{margin-right:calc(.5*(100vw - calc(640px - 32px)))}}@media only screen and (min-width:782px){.entry-content>.alignright{margin-right:calc(.5*(100vw - calc(782px - 32px)))}}@media only screen and (min-width:1024px){.entry-content>.alignright{margin-right:calc(.5*(100vw - calc(782px - 32px)))}}@media only screen and (min-width:1280px){.entry-content>.alignright{margin-right:calc(.5*(100vw - calc(782px - 32px)))}}.entry-content>.alignleft{margin-left:16px}@media only screen and (min-width:560px){.entry-content>.alignleft{margin-left:calc(.5*(100vw - calc(560px - 32px)))}}@media only screen and (min-width:640px){.entry-content>.alignleft{margin-left:calc(.5*(100vw - calc(640px - 32px)))}}@media only screen and (min-width:782px){.entry-content>.alignleft{margin-left:calc(.5*(100vw - calc(782px - 32px)))}}@media only screen and (min-width:1024px){.entry-content>.alignleft{margin-left:calc(.5*(100vw - calc(782px - 32px)))}}@media only screen and (min-width:1280px){.entry-content>.alignleft{margin-left:calc(.5*(100vw - calc(782px - 32px)))}}.wp-block-jetpack-subscriptions form>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-jetpack-subscriptions form>*{margin-top:32px;margin-bottom:32px}}.wp-block-jetpack-subscriptions form>*:first-child{margin-top:0}.wp-block-jetpack-subscriptions form>*:last-child{margin-bottom:0}body .widget_eu_cookie_law_widget{background:0 0;bottom:0;left:0;padding:8px;right:0}body .widget_eu_cookie_law_widget.widget.top{bottom:auto;top:0}body .widget_eu_cookie_law_widget #eu-cookie-law{background:#fff;border:1px solid #ccc;color:#181818;font-size:.83333rem;line-height:inherit;padding:16px}@media (max-width:600px){body .widget_eu_cookie_law_widget #eu-cookie-law{padding-bottom:80px}}body .widget_eu_cookie_law_widget #eu-cookie-law.negative{background:#181818;border-color:#020202;color:#fff}body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept{background:#fff;color:#181818}body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover,body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus,body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus{background:#ccc}body .widget_eu_cookie_law_widget #eu-cookie-law input.accept{margin:0;margin-left:32px}@media (max-width:600px){body .widget_eu_cookie_law_widget #eu-cookie-law input.accept{bottom:16px;left:16px;margin:0}}body.admin-bar .widget_eu_cookie_law_widget.widget.top{top:32px}@media (max-width:782px){body.admin-bar .widget_eu_cookie_law_widget.widget.top{top:46px}}.wp-block-jetpack-mailchimp p{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-jetpack-mailchimp p{margin-top:32px;margin-bottom:32px}}.wp-block-jetpack-mailchimp p:first-child{margin-top:0}.wp-block-jetpack-mailchimp p:last-child{margin-bottom:0}.wp-block-jetpack-mailchimp input[type=email]{width:100%}#wp-block-jetpack-mailchimp_consent-text{font-size:.83333rem}.jetpack-business-hours dd{padding-left:0}.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column>*{margin-top:21.312px;margin-bottom:21.312px}@media only screen and (min-width:560px){.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column>*{margin-top:32px;margin-bottom:32px}}.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column>*:first-child{margin-top:0}.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column>*:last-child{margin-bottom:0}html,body{font-weight:300}a{text-decoration:none}.wp-block-cover a,.wp-block-cover-image a,.wp-block-media-text a,p:not(.site-title) a{text-decoration:underline}.wp-block-cover a.wp-block-button__link,.wp-block-cover a:hover,.wp-block-cover-image a.wp-block-button__link,.wp-block-cover-image a:hover,.wp-block-media-text a.wp-block-button__link,.wp-block-media-text a:hover,p:not(.site-title) a.wp-block-button__link,p:not(.site-title) a:hover{text-decoration:none}b,strong{font-weight:500}.site-branding,.main-navigation,.entry-header,.entry-footer,.page-title,.author-title,.comments-title,.comment-reply-title,.logged-in-as,.comment-notes{text-align:center}.comment-reply-title{display:inherit}.comment .comment-reply-title{display:flex}.main-navigation>div{text-align:left}.main-navigation>div>ul,.social-navigation>div>ul,.pagination .nav-links{justify-content:center}.site-header{margin-right:auto;margin-left:auto;padding-top:0px;padding-bottom:32px}@media only screen and (min-width:560px){.site-header{padding-top:0px;padding-bottom:48px}}.site-logo+.site-title{margin-top:8px}.site-title+.site-description{margin-top:8px}@media only screen and (min-width:560px){.site-header>*.main-navigation{margin-bottom:0}.site-header>*.main-navigation>div>ul>li>.sub-menu{border:1px solid #ccc;box-shadow:none;border-radius:5px}}@media only screen and (min-width:560px){.site-header>*.social-navigation{margin-top:0}}.site-main{padding-top:0}.site-main>article>.entry-header{margin-top:21.312px}@media only screen and (min-width:560px){.site-main>article>.entry-header{margin-top:32px}}.entry-title{font-weight:300}.entry-title{font-size:2.0736rem}@media only screen and (min-width:782px){.entry-title{font-size:2.98598rem}}.entry-title a,.page-title a,.a8c-posts-list .a8c-posts-list-item__title a,.wp-block-newspack-blocks-homepage-articles article .entry-title a{color:inherit;text-decoration:none}.entry-title a:active,.entry-title a:focus,.entry-title a:hover,.page-title a:active,.page-title a:focus,.page-title a:hover,.a8c-posts-list .a8c-posts-list-item__title a:active,.a8c-posts-list .a8c-posts-list-item__title a:focus,.a8c-posts-list .a8c-posts-list-item__title a:hover,.wp-block-newspack-blocks-homepage-articles article .entry-title a:active,.wp-block-newspack-blocks-homepage-articles article .entry-title a:focus,.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover{color:#897248}.sticky-post,.a8c-posts-list .a8c-posts-list-item__featured span{padding:4px 10.56px}.post-navigation .meta-nav{color:#686868}.post-navigation .post-title{font-size:1.2rem;line-height:1.125}.logged-in-as,.comment-notes,.comment-form-cookies-consent{font-size:.83333rem}.comment-form-cookies-consent input[type=checkbox]+label{line-height:1.6}.comment-notes{color:#686868}.comment-form>p:not(.comment-form-cookies-consent) label{font-weight:700}.comment-respond .form-submit{display:flex;justify-content:flex-end}.a8c-posts-list{text-align:center}.a8c-posts-list-item__title{font-weight:300;font-size:2.0736rem}.a8c-posts-list-item__excerpt{text-align:left}.wp-block-cover p,.wp-block-cover-image p{text-shadow:0 0 6px #000}.wp-block-cover h1,.wp-block-cover h2,.wp-block-cover h3,.wp-block-cover h4,.wp-block-cover h5,.wp-block-cover h6,.wp-block-cover-image h1,.wp-block-cover-image h2,.wp-block-cover-image h3,.wp-block-cover-image h4,.wp-block-cover-image h5,.wp-block-cover-image h6{font-weight:300;text-shadow:0 0 10px #000}@media only screen and (min-width:1024px){.wp-block-cover,.wp-block-cover-image{min-height:640px}.wp-block-cover h1:not(.site-title),.wp-block-cover-image h1:not(.site-title){font-size:2.98598rem}.wp-block-cover h2,.wp-block-cover-image h2{font-size:2.48832rem}.wp-block-cover h3,.wp-block-cover-image h3{font-size:2.0736rem}.wp-block-cover h4,.wp-block-cover-image h4{font-size:1.728rem}.wp-block-cover h5,.wp-block-cover-image h5{font-size:1.44rem}.wp-block-cover h6,.wp-block-cover-image h6{font-size:1.2rem}}.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover{text-decoration:none}.wp-block-newspack-blocks-homepage-articles article .cat-links a,.wp-block-newspack-blocks-homepage-articles article .more-link,.wp-block-newspack-blocks-homepage-articles article .entry-meta a{text-decoration:none}.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,.wp-block-newspack-blocks-homepage-articles article .more-link:hover,.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover{text-decoration:underline}.wp-block-newspack-blocks-homepage-articles article .more-link:hover{color:#685636}.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-title a:hover{text-decoration:underline}.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .more-link:hover{color:inherit}.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,[class*=background-color]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,[style*=background-color] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover{text-decoration:underline}.widget select{max-width:100%}.widget-title{font-size:1.44rem;margin-bottom:16px}.widget_archive ul,.widget_categories ul,.widget_meta ul,.widget_nav_menu ul,.widget_pages ul,.widget_recent_comments ul,.widget_recent_entries ul,.widget_rss ul{margin-left:0;margin-right:0;list-style:none}.widget_archive ul li,.widget_categories ul li,.widget_meta ul li,.widget_nav_menu ul li,.widget_pages ul li,.widget_recent_comments ul li,.widget_recent_entries ul li,.widget_rss ul li{color:#686868;font-weight:700}.widget_archive ul ul,.widget_categories ul ul,.widget_meta ul ul,.widget_nav_menu ul ul,.widget_pages ul ul,.widget_recent_comments ul ul,.widget_recent_entries ul ul,.widget_rss ul ul{counter-reset:submenu}.widget_archive ul ul>li>a:before,.widget_categories ul ul>li>a:before,.widget_meta ul ul>li>a:before,.widget_nav_menu ul ul>li>a:before,.widget_pages ul ul>li>a:before,.widget_recent_comments ul ul>li>a:before,.widget_recent_entries ul ul>li>a:before,.widget_rss ul ul>li>a:before{font-weight:400;content:"– " counters(submenu,"– ",none);counter-increment:submenu}.widget_tag_cloud .tagcloud{font-weight:700}.widget_search .search-field{width:100%}@media only screen and (min-width:560px){.widget_search .search-field{width:auto}}.widget_search .search-submit{display:block;margin-top:1rem}.widget_calendar .calendar_wrap{text-align:center}.widget_calendar .calendar_wrap table td,.widget_calendar .calendar_wrap table th{border:none}.widget_calendar .calendar_wrap a{text-decoration:underline}.widget_links li,.widget_jp_blogs_i_follow li,.widget_rss_links li{font-family:inherit;font-family:var(--font-base,inherit)}.footer-navigation .footer-menu a{padding:0 8px}.footer-navigation .footer-menu>li:last-of-type{margin-right:-8px}.fse-template-part{margin-bottom:0;margin-top:0}.fse-template-part .main-navigation .alignwide,.fse-template-part .main-navigation .alignfull{width:100%}.fse-template-part .main-navigation .has-text-color>.main-menu.footer-menu>li>a{color:inherit}.fse-template-part .main-navigation .has-text-align-left>.main-menu.footer-menu{justify-content:flex-start}.fse-template-part .main-navigation .has-text-align-center>.main-menu.footer-menu{justify-content:center}.fse-template-part .main-navigation .has-text-align-right>.main-menu.footer-menu{justify-content:flex-end}.fse-template-part .main-navigation .has-background>.main-menu.footer-menu{padding:16px 0}@media only screen and (min-width:560px){.fse-template-part .main-navigation .has-background>.main-menu.footer-menu{padding:16px}}.fse-template-part .main-navigation>div>.main-menu.footer-menu>.menu-item-has-children>a:after{font-size:.6em;vertical-align:middle}.fse-template-part .wp-block-columns .wp-block-column>*{margin:0 0 5px}.fse-header>*:first-child:not(.alignfull){margin-top:21.312px}@media only screen and (min-width:560px){.fse-header>*:first-child:not(.alignfull){margin-top:32px}}.fse-footer{display:block}.fse-footer .site-info{margin-top:21.312px;margin-bottom:21.312px;text-align:center}@media only screen and (min-width:560px){.fse-footer .site-info{margin-top:32px;margin-bottom:32px}}.fse-enabled.home.page.hide-homepage-title .fse-header.entry-content{padding-bottom:32px}@media only screen and (min-width:560px){.fse-enabled.home.page.hide-homepage-title .fse-header.entry-content{padding-bottom:48px}}.fse-template-part .main-navigation a{text-decoration:none}@media only screen and (max-width:559px){.fse-template-part{max-width:calc(100% - 32px)}.fse-template-part .main-navigation>div{padding:0 32px}}.fse-template-part .wp-block-cover .site-title a,.fse-template-part .wp-block-cover-image .site-title a{text-decoration:none}.fse-template-part .wp-block-cover .has-background,.fse-template-part .wp-block-cover-image .has-background{text-shadow:none}.home.page.hide-homepage-title .entry-header{display:none}.home.page.hide-homepage-title .site-main>article>.entry-content{margin-top:0}.cdm-icon svg{fill:#fff}.comment-list #respond #commentform{clear:both}.comment-reply-title #cancel-comment-reply-link{font-size:15.65px;margin-bottom:1em}.hide-footer-credit .comma{display:none}.widget_eu_cookie_law_widget{border:none;bottom:1em;display:none;left:1em;margin:0;padding:0;position:fixed;right:1em;width:auto;z-index:50001}#eu-cookie-law{background-color:#fff;border:1px solid #dedede;color:#2e4467;font-size:12px;line-height:1.5;overflow:hidden;padding:6px 6px 6px 15px;position:relative}#eu-cookie-law a,#eu-cookie-law a:active,#eu-cookie-law a:visited{color:inherit;cursor:inherit;text-decoration:underline}#eu-cookie-law a:hover{cursor:pointer;text-decoration:none}#eu-cookie-law.negative{background-color:#000;border:none;color:#fff}#eu-cookie-law input,#eu-cookie-law input:hover,#eu-cookie-law input:focus{background:#f3f3f3;border:1px solid #dedede;border-radius:4px;-moz-border-radius:3px;-webkit-border-radius:3px;color:#2e4453;cursor:pointer;display:inline;float:right;font-family:inherit;font-size:14px;font-weight:inherit;line-height:inherit;margin:0 0 0 5%;padding:8px 12px;position:static;text-transform:none}#eu-cookie-law.negative input,#eu-cookie-law.negative input:hover,#eu-cookie-law.negative input:focus{background:#282828;border-color:#535353;color:#fff}@media (max-width:600px){#eu-cookie-law{padding-bottom:55px}#eu-cookie-law input.accept{bottom:8px;position:absolute;right:8px}}.geolocation-chip .noticon{display:inline-block;vertical-align:middle}.geolocation-chip{margin-bottom:1em}.reblogger-note img.avatar{float:left;padding:0;border:0}.reblogger-note-content{margin:0 0 20px}.wpcom-reblog-snapshot .reblog-from img{margin:0 .75em 0 0;padding:0;border:0}.wpcom-reblog-snapshot .reblogger-note img.avatar{float:left;padding:0;border:0;margin:0 .5em 0 0}.wpcom-reblog-snapshot{margin-bottom:1em}.wpcom-reblog-snapshot p.reblog-from{margin:0 0 1em}.wpcom-reblog-snapshot p.reblogger-headline{line-height:32px;margin:0 0 1em}.wpcom-reblog-snapshot .reblogged-content{margin:0 0 1em}.reblog-post .wpcom-enhanced-excerpt-content{border-left:3px solid #eee;padding-left:15px}.reblog-post ul.thumb-list{display:block;list-style:none;margin:2px 0;padding:0;clear:both}.reblog-post ul.thumb-list li{display:inline;margin:0;padding:0 1px;border:0}.reblog-post ul.thumb-list li a{margin:0;padding:0;border:0}.reblog-post ul.thumb-list li img{margin:0;padding:0;border:0}.reblog-post .wpcom-enhanced-excerpt{clear:both}.reblog-post .wpcom-enhanced-excerpt address,.reblog-post .wpcom-enhanced-excerpt li,.reblog-post .wpcom-enhanced-excerpt h1,.reblog-post .wpcom-enhanced-excerpt h2,.reblog-post .wpcom-enhanced-excerpt h3,.reblog-post .wpcom-enhanced-excerpt h4,.reblog-post .wpcom-enhanced-excerpt h5,.reblog-post .wpcom-enhanced-excerpt h6,.reblog-post .wpcom-enhanced-excerpt p{font-size:100% !important}.reblog-post .wpcom-enhanced-excerpt blockquote,.reblog-post .wpcom-enhanced-excerpt pre,.reblog-post .wpcom-enhanced-excerpt code,.reblog-post .wpcom-enhanced-excerpt q{font-size:98% !important}.reblog-from img{margin:0 10px 0 0;vertical-align:middle;padding:0;border:0}.reblog-source{margin-bottom:0;font-size:.8em;line-height:1}.reblog-source .more-words{color:#668eaa}.wpcom-reblog-snapshot .reblog-post{box-shadow:0 0 0 1px rgba(46,68,83,.1) inset,0 1px 1px rgba(46,68,83,.05);border-radius:4px;padding:24px}.wpcom-reblog-snapshot .reblogger-note{margin:0 0 1em;overflow:hidden}.wpcom-reblog-snapshot p.reblogger-headline{line-height:32px;margin:0 0 1em}.wpcom-reblog-snapshot .reblogger-note-content{margin:0;padding:0}body .wpcom-reblog-snapshot .reblogger-note-content blockquote{font-style:normal;font-weight:400;font-size:1em;margin:0;padding:0;position:relative;border:none}.wpcom-reblog-snapshot .reblogger-note-content blockquote p:last-child{margin-bottom:0}


.social-icons {
	position: absolute;
	top: 20px;
	right: 20px;
}

.social-icons li {
	padding: 0 5px 0 2px!important;
	display:inline-block;
}

.social-icons li a {
	text-indent:-10000px;
	width:32px;
	height:32px;
	display:block;
}

.flag-cro {
	background: url(../img/flags.png) no-repeat 0px 0px transparent;
}
.flag-en {
	background: url(../img/flags.png) no-repeat -32px 0px transparent;
}
.flag-de {
	background: url(../img/flags.png) no-repeat -64px 0px transparent;
}
.flag-it {
	background: url(../img/flags.png) no-repeat -96px 0px transparent;
}
.flag-fr {
	background: url(../img/flags.png) no-repeat -128px 0px transparent;
}
