/*
Theme Name: LCSD Theme
Theme URI: https://lakecountyschools.net/
Description: Base Genesis child theme for Lake County School District multisite.
Author: Lake County School District
Author URI: https://lakecountyschools.net/

Version: 1.0.0

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-width-template, one-column, two-columns, right-sidebar, translation-ready, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: lcsd
Requires at least: 6.0
Requires PHP: 7.4
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/

/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;1,9..144,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
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}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: "Roboto Condensed", Arial, sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-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}[hidden],template{display:none}
/* stylelint-enable */

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

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

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #fff;
	color: #343A40;
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
}

@supports (overflow: clip) {
	body {
		overflow-x: clip;
	}
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: #0073e5;
	text-decoration: underline;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
	color: #333;
	text-decoration: none;
}

p {
	margin: 0 0 18px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 30px;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 24px;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

h5 {
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 18px;
	text-transform: uppercase;
}

h6 {
	font-size: 16px;
}

/* Custom Fonts */
.inter, .inter h1, .inter h2, .inter h3, .inter h4, .inter h5, .inter h6, .inter p, .inter a {
	font-family: "Roboto Condensed", Arial, sans-serif;
}

.fraunces, .fraunces p, .fraunces a {
	font-family: "Roboto Condensed", Arial, sans-serif;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-weight: 400;
	padding: 15px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button, input[type="button"], input[type="reset"], input[type="submit"], .site-container div.wpforms-container-full .wpforms-form input[type="submit"], .site-container div.wpforms-container-full .wpforms-form button[type="submit"], .button {
	background: #745890;
	color: #fff;
	padding: 10px;
	font-weight: 600;
	display: inline-block;
	border: none;
	cursor: pointer;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
	transition: .3s;
}

.search-form-input {		
	background: #fff;
	border: 2px solid #ddd !important;
	color: #777;
	display: block;
	max-width: 100%;
	padding: 7px 8px !important;
	margin-right: 10px;
}

button:focus, body button:hover, input[type="button"]:focus, input[type="button"]:hover, input[type="reset"]:focus, input[type="reset"]:hover, input[type="submit"]:focus, input[type="submit"]:hover, .site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus, .site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover, .site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus, .site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover, .button:focus, .button:hover, .footer-widgets button:hover {
	background-color: transparent;
	color: #EEB902;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
	overflow: visible;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
}

/* Home Page / Internal Pages Layout
--------------------------------------------- */
.home .site-inner .wrap .custom-site-inner-row,
.site-inner .wrap .custom-site-inner-row {
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	background-color: #eaeaea !important;
}

.site-inner .wrap .custom-site-inner-row {
	max-width: 1220px;
}

/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	position: relative;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.search-form .lcsd-search-placeholder-icon {
	color: #777;
	font-size: 14px;
	left: 12px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.search-form .lcsd-search-placeholder-icon + .search-form-input {
	padding-left: 36px !important;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 20px;
}

.home.genesis-title-hidden .site-inner {
	padding-top: 0;
}

.srr-title a {
	color: #4F4F4F !important;
	text-decoration: none !important;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

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

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

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #0073e5;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header > .wrap {
	max-width: 1350px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header > .wrap::before, .site-header > .wrap::after {
	display: none;
}

.overlay-header header.site-header {
	position: absolute;
	top: 0;
	background: transparent;
	width: 100%;
	z-index: 2;
}

.overlay-header.logged-in header.site-header {
	top: 32px;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding-bottom: 25px;
	padding-top: 25px;
}

.wp-custom-logo .title-area {
	max-width: 220px;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 100%;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.nav-primary .genesis-nav-menu a:hover {
	color: #EEB902;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover, body .genesis-nav-menu .current-menu-item > a {
	color: #EEB902;
	text-decoration: none;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	transform-origin: top center;
	z-index: 99;
}

@keyframes lcsd-genesis-submenu-open {
	0% {
		opacity: 0;
		transform: translateY(-8px) scaleY(0.98);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
	color: #343A40;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	animation: lcsd-genesis-submenu-open 0.18s ease-out both;
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	animation: lcsd-genesis-submenu-open 0.18s ease-out both;
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #fff;
	display: block;
	margin: 0;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

body .menu-toggle:focus,
body .menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #EEB902;
}

.menu-toggle {
	float: right;
	line-height: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 15px 0;
	position: relative;
	z-index: 1000;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	margin-right: 5px;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding-bottom: 15px;
	padding-top: 15px;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 35px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* Custom Styling */
.full-width {
	margin-left: calc(-100vw/2 + 100%/2);
	margin-right: calc(-100vw/2 + 100%/2);
	max-width: 100vw;
	width: 100vw;
}

.full-width.no-max > .wp-block-group__inner-container {
	max-width: none;
	padding: 0;
}

.full-width > .wp-block-group__inner-container, .wp-block-cover.full-width > .wp-block-cover__inner-container {
	max-width: 1350px;
	padding: 0 30px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.no-hero-image .site-inner {
	padding-top: 120px;
}

.home .entry, h5.staff-name, .after-hero p, h5.accordion-title, .accordion-content p, .wp-block-columns .wp-block-column .wp-block-image, .steps-section .wp-block-columns, .steps-section .small-column p, .header-right .widget {
	margin-bottom: 0;
}

a.post-edit-link, .archive-description.taxonomy-archive-description.taxonomy-description {
	display: none;
}

.max-width, .large-max, .small-max {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.large-max {
	max-width: 1000px;
}

.small-max {
	max-width: 720px;
}

.radius, .radius img, .radius > .gb-block-layout-column-inner {
	border-radius: 16px;
}

.uppercase {
	text-transform: uppercase;
}

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

.box-shadow > .gb-block-layout-column-inner {
	box-shadow: 1px 1px 20px #0000002b;
}

.overlay-header .site-inner {
	padding-top: 0;
}

.wp-singular.post-template-default article.type-post {
	margin-bottom: 60px;
}

.dark-bg-graphic {
	position: relative;
	background-image: url(/wp-content/uploads/2026/02/bg-shapes.svg);
	background-size: cover;
	background-position: center center;
}

.entry-content ul.checklist > li {
	list-style-type: none;
	position: relative;
	line-height: 2;
}

.entry-content ul.checklist > li:before {
	content: '';
	background-image: url(/wp-content/uploads/2026/02/checkmark.svg);
	width: 20px;
	height: 20px;
	left: -35px;
	position: absolute;
	top: 8px;
}

.video-button > .wp-block-button__link {
	position: relative;
}

.video-button > .wp-block-button__link:after {
	content: '';
	width: 22px;
	height: 22px;
	right: 0;
	top: 1.5px;
	background-image: url(/wp-content/uploads/2026/02/play-icon.svg);
	position: relative;
	background-repeat: no-repeat;
	display: block;
	float: right;
	margin-left: 10px;
}

.video-button > .wp-block-button__link:hover:after {
	filter: invert(88%) sepia(96%) saturate(2600%) hue-rotate(210deg) brightness(85%) contrast(105%);
}

.full-width.full-height .wp-block-image img {
    width: 100%;
}

.full-height .wp-block-genesis-blocks-gb-column:last-child {
	padding: 40px 20px;
}

.wp-block-genesis-blocks-gb-columns figure, .wp-block-genesis-blocks-gb-columns p:last-child {
    margin-bottom: 0;
}

body .box-padding {
	padding: 10px 32px 35px;
}

.number-column {
	background: #00297a;
	border-radius: 100%;
	width: 45px;
	height: 45px;
	text-align: center;
	color: #fff;
	padding-top: 2px;
}

.numbers-columns .wp-block-columns {
	margin-bottom: 20px;
}

.numbers-columns .wp-block-columns h6 {
	margin-bottom: 5px;
}

.equal-height .gb-block-layout-column-inner {
	height: 100%;
}

body .site-inner .quote-less-padding {
	padding: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

/* Homepage */
.hero-overlay > .wp-block-group__inner-container {
	position: relative;
	margin-top: -150px;
}

.heromax {
	max-width: 850px;
}

.offset-number .offset-number {
	position: relative;
	top: -48px;
	font-size: 48px;
}

body .offset-number {
	overflow: visible;
	margin-bottom: 0;
}

/* Testimonial Slider */
.slider-section {
	position: relative;
}

.slider-wrap {
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	padding: 0;
}

.slider-wrap .inner-wrap {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.testimonial-inner-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	background: #fff;
	padding: 40px 60px;
	color: #20232B;
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 16px;
}

.slider-wrap .wrap {
	margin: 0;
	padding: 10px 20px 0 20px;
	width: 383px;
	float: left;
	position: relative;
	border-radius: 0;
	height: auto;
	text-align: center;
}

.testimonial-title p {
	font-size: 18px;
	font-weight: 700;
	margin: 20px 0 0;
	text-transform: uppercase;
	color: #B89E61;
}

.testimony-content {
	font-size: 18px;
	margin-bottom: 10px;
	text-align: left;
	line-height: 28px;
}

.testimonial-title {
	width: 100%;
	text-align: left;
}

.testimonial-inner-wrap .subtitle {
	font-size: 18px;
}

.slider-wrap .wp-block-image img {
	max-height: 50px;
}

.arrow {
	cursor: pointer;
}

.left-arrow:after, .right-arrow:after {
	content: '';
	position: relative;
	display: block;
	background-image: url(/wp-content/uploads/2026/03/testimonial-right-arrow.svg);
	font-size: 2.5rem;
	cursor: pointer;
	width: 40px;
	height: 39px;
	background-size: contain;
	background-repeat: no-repeat;
}

.left-arrow:after {
	transform: rotate(180deg);
}

.arrow-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	width: 100%;
	top: -200px;
	left: 0;
	max-width: 950px;
	margin: 0 auto;
}

.slider-wrap .wrap .content {
	padding: 0 20px;
}

.right-arrow.arrow {
	position: relative;
	right: -13px;
}

.left-arrow.arrow {
	position: relative;
	left: -5px;
}

/* Header Right Buttons */
.header-right .widget_text p {
	display: flex;
	gap: 10px;
}

.white-outline button {
	background: transparent;
	border: 2px solid;
	color: #fff;
}

.white-outline button:hover, .header-right .white-outline button:hover {
	border-color: #00297a;
	background: #00297a;
	color: #fff;
}

.header-right button:hover {
    background: transparent;
    color: #EEB902;
}

.donate-button button {
	position: relative;
}

.donate-button button:after {
	content: '';
	width: 17px;
	height: 15px;
	left: 0;
	top: 1.5px;
	position: relative;
	display: block;
	float: left;
	background-image: url(/wp-content/uploads/2026/02/heart-icon.svg);
	background-repeat: no-repeat;
	margin-right: 10px;
}

/* Blog Archive */
.featured-image-wrap {
	min-height: 600px;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

section.blog-archive {
	margin-bottom: 100px;
}

.blog-archive-wrap {
	display: block;
}

.blog-archive-wrap article {
	align-items: flex-start;
	border-bottom: 1px solid #e8e8e8;
	display: flex;
	gap: 24px;
	padding: 0 0 32px;
	margin-bottom: 32px;
	width: 100%;
}

.blog-archive-wrap article:last-child {
	margin-bottom: 0;
}

.blog-archive-thumbnail {
	flex: 0 0 180px;
	margin: 0;
}

.blog-archive-thumbnail a,
.blog-archive-thumbnail img {
	display: block;
}

.blog-archive-thumbnail img {
	height: auto;
	width: 100%;
}

.blog-archive-entry__content {
	flex: 1 1 auto;
	min-width: 0;
}

.blog-archive-entry__meta,
.blog-archive-entry__date {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 8px;
}

.blog-archive-entry__meta a {
	color: #00297a;
	text-decoration: none;
}

.blog-archive-entry__meta a:focus,
.blog-archive-entry__meta a:hover {
	color: #0056b3;
}

.blog-archive-entry__title {
	font-size: 28px;
	line-height: 1.25;
	margin: 0;
}

.lcsd-blog-news-archive .internal-post-header {
	margin-bottom: 30px;
}

.lcsd-blog-news-archive .internal-post-title {
	font-size: 30px;
	line-height: 1.25;
}

.blog-button {
	margin-top: 20px;
}

/* Front Page News Layout
---------------------------------------------------------------------------- */

.home {
	background: #e9e9e9;
}

.home .site-inner {
	background: #e9e9e9;
	max-width: none;
}

.home .site-inner > .wrap {
	background: #fff;
	box-shadow: 0 1px 2px #00000014;
	padding: 0;
	margin-bottom: 60px;
}

.home .site-inner .wrap .custom-site-inner-row {
	align-items: stretch;
	background: #fff;
	justify-content: flex-start;
}

.home .custom-site-inner-row > .home-sidebar-primary-column {
	background: transparent;
	float: none;
	max-width: 340px;
	order: 1;
	width: 100%;
}

.home .custom-site-inner-row > .sidebar {
	background: #f4f4f4;
	float: none;
	padding: 30px 30px 20px;
	width: 100%;
	max-width: 260px;
}

.home .home-sidebar-primary-column .sidebar-primary {
	max-width: none;
	padding: 30px 30px 20px;
	width: 100%;
}

.home .custom-site-inner-row > .custom-site-inner-content {
	background: #fff;
	order: 2;
	width: 100%;
	max-width: 600px;
	padding-bottom: 15px;
}

.home .custom-site-inner-row > .sidebar-secondary {
	order: 3;
	padding-top: 46px;
}

.home .sidebar .widget {
	color: #696969;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 36px;
}

.home .sidebar .widget-title,
.home .sidebar h2,
.home .sidebar h3,
.home .sidebar h4 {
	color: #333;
	font-size: .9375em;
font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 6px;

	letter-spacing: 0;

}

.home section.blog-archive {
	margin-bottom: 28px;
}

.home .page-title {
	border-bottom: 1px solid #e5e5e5;
	color: #666;
	display: block;
	margin: 0 0 28px;
	padding: 18px 0 17px;
	background: #fff;

}

.home .page-title h2 {
	color: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	text-transform: uppercase;
	color: #666;
	padding: 0;
}

.home .hu-blog-subheading {
	text-transform: uppercase;
}

.home .blog-archive-wrap {
	gap: 0;
}

.home .blog-archive-wrap article {
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
	border-radius: 0;
	box-shadow: none;
	padding: 34px 15px;
	width: calc(50% - 24px);
}

.home .blog-archive-wrap article:first-child {
	padding-top: 0;
	width: 100%;
}

.home .blog-archive-wrap article:nth-child(2n + 2) {
	margin-right: 48px;
}

.home .blog-title {
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 15px;
}

.home .blog-title a {
	color: #3f3f3f;
	text-decoration: none;
}

.home .blog-description {
	color: #777;
	font-size: 16px;
	line-height: 1.75;
}

.home .blog-button .button {
	background: transparent;
	color: #7c5a9b;
	font-size: 14px;
	font-weight: 700;
	padding: 0;
	text-transform: none;
}

.home .pagination {
	clear: both;
	font-weight: 700;
	margin: 8px 0 0;
	text-align: right;
}

.home .hu-pad {
	padding-left: 30px;
	padding-right: 30px;
}

.home .featured {
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 34px;
	padding-bottom: 30px;
	position: relative;
}

.home .featured .flex-viewport {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.home .featured .slides {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home .featured .slides > li {
	display: none;
	margin: 0;
	width: 100%;
}

.home .featured .slides > li.flex-active-slide,
.no-js .home .featured .slides > li:first-child {
	display: block;
}

.home .featured article {
	border-bottom: 0;
	padding: 0;
}

.home .post-inner {
	color: #777;
}

.home .post-thumbnail {
	background: #f4f4f4;
	line-height: 0;
	margin-bottom: 18px;
	min-height: 0;
    max-height: 360px;
    overflow: hidden;
}

.home .post-thumbnail a {
	display: block;
}

.home .post-thumbnail img {
	display: block;
	height: auto;
	width: 100%;
}

.home .post-meta {
	align-items: center;
	color: #6d6d6d;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 400;
	gap: 8px 12px;
	letter-spacing: 0;
	line-height: 1.4;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.home .post-meta p {
	margin: 0;
}

.home .post-meta a {
	color: #5a3a76;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500
}

.home .post-title {
	font-size: 34px;
	line-height: 1.25;
	color: #444;
	margin: 0 0 16px;
	font-weight: 400;
}

.home .post-title a {
	color: #3f3f3f;
	text-decoration: none;
}

.home .post-title a:hover,
.home .post-meta a:hover {
	color: #5a3a76;
}

.home .entry.excerpt {
	color: #777;
	font-size: 16px;
	line-height: 1.7;
}

.home .featured .entry.excerpt {
	font-size: 15px;
	line-height: 1.6;
}

.home .featured .entry.excerpt > * {
	margin: 0 0 14px;
}

.home .entry.excerpt p {
	margin: 0;
	color: #767676;
	font-size: 16px;
	font-family: "Roboto Condensed", Arial, sans-serif;
}

.home .featured .entry.excerpt p,
.home .featured .entry.excerpt li {
	font-size: 15px;
}

.home .featured .entry.excerpt h1,
.home .featured .entry.excerpt h2,
.home .featured .entry.excerpt h3,
.home .featured .entry.excerpt h4,
.home .featured .entry.excerpt h5,
.home .featured .entry.excerpt h6 {
	color: #3f3f3f;
	line-height: 1.3;
	margin: 18px 0 10px;
}

.home .featured .entry.excerpt ul,
.home .featured .entry.excerpt ol {
	margin: 0 0 14px 22px;
	padding: 0;
}

.home .featured .entry.excerpt ul > li {
	list-style-type: disc;
}

.home .featured .entry.excerpt ol > li {
	list-style-type: decimal;
}

.home .featured .entry.excerpt ul ul > li,
.home .featured .entry.excerpt ol ul > li {
	list-style-type: circle;
}

.home .featured .entry.excerpt li + li {
	margin-top: 6px;
}

.home .entry.excerpt p:last-child,
.home .entry.excerpt figure:last-child {
	margin-bottom: 0;
}

.home .entry.excerpt figure {
	margin: 0 0 18px;
}

.home .entry.excerpt img {
	height: auto;
	max-width: 100%;
}

.home .featured .entry.excerpt .wp-block-image,
.home .featured .entry.excerpt .wp-caption,
.home .featured .entry.excerpt .wp-block-gallery {
	margin: 0 0 14px;
}

.home .flex-control-nav {
	display: flex;
	gap: 8px;
	justify-content: start;
	list-style: none;
	margin: 12px 0;
	padding: 0;
}

.home .flex-control-nav li {
	margin: 0;
}

.home .flex-control-nav a {
	background: #d9d9d9;
	border-radius: 50%;
	display: block;
	width: 20px;
    height: 2px;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	border-radius: 10px;
}

.home .flex-control-nav a.flex-active {
	background: var(--lcsd-link-color, #765994);
}

.home .flex-direction-nav {
	display: flex;
	justify-content: space-between;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: -32px;
	background: #FFF;
	width: 75px;
	left: 86%;
	z-index: 2;
}

.home .flex-direction-nav li {
	margin: 0;
}

.home .flex-direction-nav a {
	align-items: center;
	color: #757575 !important;
	background: #fff;
	display: inline-flex;
	font-size: 0;
	height: 42px;
	justify-content: center;
	pointer-events: auto;
	position: relative;
	text-decoration: none;
	width: 38px;
}

#flexslider-featured .flex-direction-nav .flex-prev::before {
	content: "\f053";
}

#flexslider-featured .flex-direction-nav a::before {
	font-size: 24px;
	text-rendering: auto;
	line-height: 23px;
	position: absolute;
	text-align: center;
	left: 0;
	right: 0;
	top: 8px;
	text-indent: 0;
}

#flexslider-featured .flex-direction-nav a::before,
.nav li > a::after,
.nav > li > a::after {
	font-weight: 900;
	font-style: normal;
	font-family: 'Font Awesome 5 Free';
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-variant: normal;
}

.flex-direction-nav .flex-prev::before {
	content: "\f053";
}

.flex-direction-nav a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	font-size: 24px;
	text-rendering: auto;
	line-height: 23px;
	position: absolute;
	text-align: center;
	left: 0;
	right: 0;
	top: 8px;
	text-indent: 0;
}

.flex-direction-nav .flex-next::before {
	content: "\f054";
}

.home .post-list {
	margin-bottom: 26px;
}

.home .post-row {
	display: flex;
	gap: 48px;
}

.home .post-row + .post-row {
	border-top: 1px solid #e8e8e8;
}

.home .grid-item {
	background: #fff;
	border-bottom: 0;
	padding: 34px 0;
	width: calc(50% - 24px);
}

.home .grid-item .post-thumbnail {
	margin-bottom: 16px;
}

.home .grid-item .post-title {
	font-size: 22px;
}

.home .grid-item .entry.excerpt {
	font-size: 15px;
}

.home .pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home .pagination li {
	margin: 0;
}

.home .pagination .prev {
	float: left;
}

.home .pagination .next {
	float: right;
}

.home .pagination a {
	color: #7c5a9b;
	text-decoration: none;
	font-size: 1.125em;
  	font-weight: 600;
	font-family: "Roboto Condensed", Arial, sans-serif;
}

/* Regular Page Layout
---------------------------------------------------------------------------- */

body:not(.home) {
	background: #e9e9e9;
}

body:not(.home) .site-inner {
	background: #e9e9e9;
	width: 100%;
}

body:not(.home) .site-inner > .wrap {
	background: #fff;
	box-shadow: 0 1px 2px #00000014;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	max-width: 1350px;
	padding: 0;
}

body:not(.home) .site-inner .wrap .custom-site-inner-row {
	align-items: stretch;
	background: #fff;
	justify-content: flex-start;
	padding-bottom: 60px;
}

body:not(.home) .custom-site-inner-row > .sidebar {
	background: #f4f4f4;
	float: none;
	padding: 30px 30px 20px;
	width: 23%;
}

body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column {
	background: transparent;
	float: none;
	width: 340px;
}

body:not(.home) .home-sidebar-primary-column .sidebar-primary {
	max-width: none;
	padding: 30px 30px 20px;
	width: 340px;
}

body:not(.home) .custom-site-inner-row > .custom-site-inner-content {
	background: #fff;
	width: 54%;
}

body:not(.home) .custom-site-inner-row > .custom-site-inner-content .internal-post-content {
	padding: 30px 30px 20px;
}

.single .internal-post-content {
	padding: 30px 30px 20px;
}

body:not(.home) .custom-site-inner-row > .sidebar-secondary {
	padding-top: 46px;
}

@media only screen and (minß-width: 1400px) {
	.site-inner .wrap .custom-site-inner-row {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}

@media only screen and (min-width: 960px) {
	.site-inner .wrap .custom-site-inner-row {
		box-sizing: border-box;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.lcsd-primary-sidebar-toggle,
.lcsd-secondary-sidebar-toggle {
	align-items: center;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: none;
	font-size: 22px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
	padding: 24px 36px;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
}

.lcsd-primary-sidebar-toggle {
	background: var(--lcsd-link-color, #765994);
}

.lcsd-secondary-sidebar-toggle {
	background: var(--lcsd-accent-color, #d29600);
}

.lcsd-primary-sidebar-toggle:focus,
.lcsd-primary-sidebar-toggle:hover {
	background: var(--lcsd-link-color, #765994);
	color: #fff;
}

.lcsd-secondary-sidebar-toggle:focus,
.lcsd-secondary-sidebar-toggle:hover {
	background: var(--lcsd-accent-color, #d29600);
	color: #fff;
}

.lcsd-primary-sidebar-toggle i,
.lcsd-secondary-sidebar-toggle i {
	font-size: 28px;
	transition: transform .25s ease, opacity .2s ease, filter .25s ease;
}

@keyframes lcsd-sidebar-toggle-hover {
	0% {
		transform: translateX(0) scale(1.1);
	}

	50% {
		transform: translateX(4px) scale(1.14);
	}

	100% {
		transform: translateX(-2px) scale(1.1);
	}
}

@keyframes lcsd-sidebar-toggle-hover-open {
	0% {
		transform: rotate(180deg) translateX(0) scale(1.1);
	}

	50% {
		transform: rotate(180deg) translateX(4px) scale(1.14);
	}

	100% {
		transform: rotate(180deg) translateX(-2px) scale(1.1);
	}
}

.lcsd-primary-sidebar-toggle:focus i,
.lcsd-primary-sidebar-toggle:hover i,
.lcsd-secondary-sidebar-toggle:focus i,
.lcsd-secondary-sidebar-toggle:hover i {
	animation: lcsd-sidebar-toggle-hover .7s ease-in-out infinite;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
	transform: translateX(3px) scale(1.14);
}

.lcsd-primary-sidebar-toggle:active i,
.lcsd-secondary-sidebar-toggle:active i {
	animation: none;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.16));
	transform: translateX(1px) scale(0.94);
}

@media (prefers-reduced-motion: reduce) {
	.lcsd-primary-sidebar-toggle i,
	.lcsd-secondary-sidebar-toggle i {
		animation: none !important;
	}

	.genesis-nav-menu .sub-menu {
		animation: none !important;
	}
}

.lcsd-primary-sidebar-panel,
.lcsd-secondary-sidebar-panel {
	box-sizing: border-box;
	overflow: visible;
}

.lcsd-primary-sidebar-panel {
	background: #e9e9e9;
	width: 100%;
}

@media only screen and (min-width: 960px) {
	.site-inner .custom-site-inner-row > .home-sidebar-primary-column {
		align-self: stretch;
		position: relative;
	}

	.site-inner .custom-site-inner-row > .home-sidebar-primary-column > .lcsd-primary-sidebar-panel {
		position: sticky;
		top: var(--lcsd-sidebar-sticky-top, 0px);
		z-index: 4;
	}

	body.has-lcsd-header-primary-sidebar-bar .site-inner .custom-site-inner-row > .home-sidebar-primary-column > .lcsd-primary-sidebar-panel {
		top: var(--lcsd-sidebar-header-height, 60px);
	}
}

@media only screen and (max-width: 960px) {
	body:not(.home) .custom-site-inner-row > .custom-site-inner-content .internal-post-content {
		padding: 0px;
	}
}

@media only screen and (max-width: 1220px) and (min-width: 1200px) {
	.home .lcsd-header-sidebar-more {
		max-width: 246px !important;
	}
}

@media only screen and (min-width: 1201px) {
	.site-inner .custom-site-inner-row > .sidebar-secondary {
		align-self: stretch;

	}

	.site-inner .custom-site-inner-row > .sidebar-secondary > .lcsd-secondary-sidebar-panel {
		position: sticky;
		top: var(--lcsd-sidebar-sticky-top, 0px);
		z-index: 4;
	}

	body.has-lcsd-header-secondary-sidebar-bar .site-inner .custom-site-inner-row > .sidebar-secondary > .lcsd-secondary-sidebar-panel {
		top: calc(var(--lcsd-sidebar-sticky-top, 0px) + var(--lcsd-sidebar-header-height, 60px));
	}
}

.home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top {
	display: none;
}

body:not(.home) .sidebar .widget {
	color: #696969;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 36px;
}

body.single-post .home-sidebar-primary-column .post-nav {
	background: #f0f0f0;
	border-bottom: 1px solid #dcdcde;
	list-style: none;
	margin: 0;
}

body.single-post .home-sidebar-primary-column .post-nav li {
	width: 100%;
	padding: 22px 42px;
}

body.single-post .home-sidebar-primary-column .post-nav li:first-child {
	border-bottom: 1px solid #dcdcde;
}

body.single-post .home-sidebar-primary-column .post-nav li:last-child {
	margin-bottom: 0;
}

body.single-post .home-sidebar-primary-column .post-nav strong {
	color: #333;
	display: block;
	font-size: 13px;
	line-height: 1.2;
	margin-bottom: 6px;
	text-transform: uppercase;
}

body.single-post .home-sidebar-primary-column .post-nav a {
	align-items: flex-start;
	color: rgb(102, 102, 102);
	display: flex;
	font-size: 15px;
	font-weight: 700;
	gap: 8px;
	line-height: 1.35;
	text-decoration: none;
}

body.single-post .home-sidebar-primary-column .post-nav a:hover {
	color: #333;
}

body.single-post .home-sidebar-primary-column .post-nav i {
	font-size: 12px;
	line-height: 1.8;
}

.sidebar-top .fab,
.sidebar-top .far,
.sidebar-top .fas {
	font-size: 24px;
}

.fas.fa-folder-open {
	margin-right: 8px;
}

body:not(.home) .sidebar .widget-title,
body:not(.home) .sidebar h2,
body:not(.home) .sidebar h3,
body:not(.home) .sidebar h4 {
	color: #333;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.sidebar .menu-quicklinks-container {
	position: relative;
	padding-top: 28px;
}

.sidebar .menu-quicklinks-container::before {
	content: 'Quick Links';
	color: #333;
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	left: 0;
	letter-spacing: 0;
	line-height: 1.35;
	position: absolute;
	top: 0;
	text-transform: uppercase;
}

.sidebar .widget_nav_menu .menu,
.sidebar .menu-quicklinks-container .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar .widget_nav_menu .menu > li,
.sidebar .menu-quicklinks-container .menu > li {
	margin: 0 0 20px;
}

.sidebar .widget_nav_menu .menu > li > a::before,
.sidebar .menu-quicklinks-container .menu > li > a::before {
	content: '\f068';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	font-size: 12px;
	margin-right: 6px;
	color: #ccc;
	display: inline-block !important;
	width: 1em;
	text-align: center;
}

.sidebar .widget_nav_menu .menu > li > a,
.sidebar .menu-quicklinks-container .menu > li > a {
	color: #4F4F4F !important;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	font-family: "Roboto Condensed", Arial, sans-serif;

	padding: 10px 0;
  border-bottom: 1px solid #e4e4e4;
}

.sidebar .widget_rss ul,
.sidebar .widget-wrap nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar .widget_rss ul li,
.sidebar .widget-wrap nav ul li {
	margin: 0;
}

.sidebar .widget_rss .widget-title,
.sidebar .widget-wrap > .widget-title {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.sidebar .widget_rss .rss-widget-feed,
.sidebar .widget-wrap > .widget-title .rss-widget-feed {
	display: inline-flex;
	flex: 0 0 auto;
	line-height: 1;
}

.sidebar .widget_rss .rss-widget-feed img,
.sidebar .widget-wrap > .widget-title .rss-widget-feed img {
	display: block;
}

.sidebar .widget_rss .rss-widget-title,
.sidebar .widget-wrap > .widget-title .rss-widget-title {
	color: #333;
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	text-decoration: none;
	text-transform: uppercase;
}

.sidebar .widget_rss li .rsswidget,
.sidebar .widget-wrap nav li .rsswidget {
	border-bottom: 1px solid #e4e4e4;
	color: #4F4F4F;
	display: block;
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	padding: 10px 0;
	text-decoration: none;
}

.sidebar .widget_rss li .rsswidget:hover,
.sidebar .widget_rss li .rsswidget:focus,
.sidebar .widget-wrap nav li .rsswidget:hover,
.sidebar .widget-wrap nav li .rsswidget:focus {
	color: #333;
}

body:not(.home) .internal-page {
	margin-bottom: 0;
}

body:not(.home) .internal-post-header {
	background: #fff;
  	position: relative;
  	padding: 18px 30px;
  	border-bottom: 1px solid #eee;
  	color: #666;
  	font-size: 1em;
  	font-weight: 600;
  	text-transform: uppercase;
  	line-height: 1.5rem;
	font-size: 16px;
}

body.single-post .internal-post-header {
	text-transform: none;
}

body.single-post .lcsd-post-category-links {
	list-style: none;
	margin: 0;
}

body.single-post .lcsd-post-category-links li {
	color: #595959;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	list-style: none;
	margin: 0;
}

body.single-post .lcsd-post-category-links a {
	color: #595959;
	text-decoration: none;
}

body.single-post .lcsd-post-category-links a:focus,
body.single-post .lcsd-post-category-links a:hover {
	color: #333;
	text-decoration: underline;
}

body.single-post .lcsd-post-category-links span {
	color: #575757;
	display: inline-block;
	margin: 0 7px;
}

body.single-post .lcsd-single-post-title-section {
	background: #fff;
	border-bottom: none;
	padding: 30px 30px 0px;
}

body.single-post .lcsd-single-post-title-section .internal-post-title {
	color: #3f3f3f;
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 0;
	padding: 0 18px;
	text-transform: none;
}

body.single-post .lcsd-post-byline {
	color: #595959;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-transform: none;
}

body.single-post .lcsd-post-byline a {
	color: #745890;
	font-weight: 700;
	text-decoration: none;
}

body.single-post .lcsd-post-byline a:focus,
body.single-post .lcsd-post-byline a:hover {
	color: #333;
	text-decoration: underline;
}

@media only screen and (max-width: 480px) {
	body:not(.home) .home-sidebar-primary-column .sidebar-primary {
		width: 100%;
	}

	body:not(.home) .internal-post-header {
		margin: 0 !important;
	}

	.lcsd-header-sidebar-row.has-primary-sidebar-bar .lcsd-header-sidebar-content:not(.lcsd-header-sidebar-content--empty) {
		padding-left: 0px !important;
		text-align: center;
	}

	.home .flex-direction-nav {
  	  left: 84% !important;
  	}

}

body:not(.home) .internal-post-header h1 {
	font-size: 16px;
	color: #666666;
}

body:not(.home) .internal-post-title {
	color: #3f3f3f;
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 0;
}

body:not(.home) .internal-post-subheading {
	color: #666;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 10px 0 0;
	text-transform: none;
}

.inner-post-bottom-title {
	color: #666;
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 18px;
	font-weight: 300;
	margin: 0;
	padding: 0;
}

body:not(.home) .internal-post-content {
	color: #666;
	font-size: 18px;
	line-height: 1.75;
}

body:not(.home) .internal-post-content a {
	color: #7c5a9b;
	font-weight: 600;
}

body.single-post .internal-post-body {
	align-items: flex-start;
	display: flex;
}

body.single-post .internal-post-body .internal-post-content {
	flex: 1 1 auto;
	min-width: 0;
}

body.single-post .lcsd-post-share {
	align-items: center;
	display: flex;
	flex: 0 0 74px;
	flex-direction: column;
	gap: 10px;
	padding: 30px 18px 20px 0;
}

body.single-post .lcsd-post-share span {
	color: #595959;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

body.single-post .lcsd-post-share__button {
	align-items: center;
	background: none;
	border-radius: 2px;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	text-decoration: none;
	width: 38px;
}

.share__button--twitter {
	color: #00acee;
}

body.single-post .lcsd-post-share__button:focus,
body.single-post .lcsd-post-share__button:hover {
	background: #745890;
	color: #fff;
}

body.single-post .lcsd-post-share__button i {
	font-size: 18px;
	line-height: 1;
}

body.single-post .lcsd-related-posts {
	border-top: 1px solid #eee;
	padding: 28px 30px 20px;
}

body.single-post .lcsd-related-posts .heading {
	align-items: center;
	color: #333;
	display: flex;
	font-size: 18px;
	gap: 8px;
	line-height: 1.3;
	margin: 0 0 18px;
}

body.single-post .lcsd-related-posts .heading i {
	color: #745890;
	font-size: 18px;
}

body.single-post .related-posts {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

body.single-post .related-posts li {
	list-style: none;
	margin: 0;
}

body.single-post .related-posts article {
	height: 100%;
}

body.single-post .related-posts .post-thumbnail {
	background: #f4f4f4;
	margin-bottom: 12px;
	min-height: 72px;
}

body.single-post .related-posts .post-thumbnail a {
	display: block;
}

body.single-post .related-posts .post-thumbnail img {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

body.single-post .related-posts .post-title {
	font-size: 17px;
	line-height: 1.25;
	margin: 0 0 8px;
}

body.single-post .related-posts .post-title a {
	color: #3f3f3f;
	text-decoration: none;
}

body.single-post .related-posts .post-title a:focus,
body.single-post .related-posts .post-title a:hover {
	color: #745890;
	text-decoration: underline;
}

.lcsd-single-post-title-section {
	padding: 20px 30px 0px 30px;
}

body.single-post .related-posts .post-date {
	color: #575757;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

body.search .internal-search-results {
	margin-bottom: 0;
}

body.search .lcsd-search-form-wrap {
	margin-bottom: 24px;
	padding: 20px;
	background: #f5f5f5;
}

body.search .lcsd-search-summary,
body.search .lcsd-search-count,
body.search .lcsd-search-empty {
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

body.search .lcsd-search-results-list {
	margin-top: 24px;
}

.lcsd-search-for-term {
	margin-bottom: 2px !important;
	color: #888;
}

body.search .lcsd-search-result {
	padding: 24px 0;
}

body.search .lcsd-search-result-type {
	color: #666;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

body.search .lcsd-search-result-title {
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 12px;
}

body.search .lcsd-search-result-title a {
	color: #3f3f3f;
	text-decoration: none;
}

body.search .lcsd-search-result-title a:hover,
body.search .lcsd-search-result-title a:focus {
	color: #7c5a9b;
}

body.search .lcsd-search-result-excerpt p:last-child {
	margin-bottom: 0;
}

body.search .lcsd-search-result-link {
	margin-top: 16px;
}

body.search .lcsd-search-result-link a {
	font-size: 15px;
	font-weight: 700;
}

body.search .archive-pagination {
	margin-top: 30px;
}

body:not(.home) .internal-post-content img,
body:not(.home) .internal-post-image img {
	display: block;
	height: auto;
	max-width: 100%;
}

body:not(.home).full-width-content .custom-site-inner-row > .custom-site-inner-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 880px;
	width: 100%;
}

body:not(.home).content-sidebar .custom-site-inner-row > .custom-site-inner-content,
body:not(.home).sidebar-content .custom-site-inner-row > .custom-site-inner-content {
	width: 77%;
}

/* Single Blog */

.lcsd-links-page-item {
	text-align: center;
}

/* Animations */
.slide-in {
	opacity: 0;
	transition: .7s;
	left: -100px;
	position: relative;
}

.slide-in.delay.visible {
	transition-delay: .3s;
}

.slide-in.delay2.visible {
	transition-delay: .7s;
}

.slide-in.delay3.visible {
	transition-delay: 1s;
}

.slide-in.less {
	left: -50px;
}

.slide-in.left {
	left: 100px;
}

.slide-in.left.less {
	left: 50px;
}

.slide-in.up {
	left: 0;
	bottom: -50px;
}

.slide-in.visible, .slide-in.left.visible, .slide-in.less.visible, .slide-in.left.less.visible {
	opacity: 1;
	left: 0;
}


/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: #fff;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

/* Links CPT
---------------------------------------------------------------------------- */
.blogroll a {
	color: #4F4F4F !important;
	font-size: 15px;
	font-family: "Roboto Condensed", Arial, sans-serif;
}
.blogroll li {
  padding: 10px 0;
  border-bottom: 1px solid #e4e4e4;	
}

.blogroll li a::before {
  content: "\f35d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;

  font-style: normal;
  font-variant: normal;

  text-rendering: auto;
  font-size: 12px;
  margin-right: 6px;
  color: #ccc;
  display: inline-block !important;
  width: 1em;
  text-align: center;
}


/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	line-height: 1.5;
	background-color: #f0f0f0;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 20px;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #fff;
	clear: both;
	padding: 20px 0;
	color: #000;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}

.lcsd-footer-widgets__columns .widget-title {
	font-weight: 400 !important;
  	text-transform: uppercase;
  	margin-bottom: 6px;
  	font-size: .9375em !important;
  	color: #444 !important;
}

.footer-widgets-1 img {
	max-width: 210px;
	width: 210px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets button {
	width: 100%;
	margin-bottom: 10px;
}

.footer-widgets a, .footer-widgets p {
	color: #000;
	text-decoration: none;
	font-size: 16px;
}

.footer-widgets a:hover, .site-footer .right-side a:hover {
	color: #EEB902;
}

.footer-widgets-3 .textwidget p {
	margin-bottom: 10px;
	font-weight: 600;
}

.footer-widgets .white-outline button:hover {
	background: #fff;
	color: #00297a;
}

.lcsd-footer-widgets .wrap {
	max-width: 1350px;
	padding: 0 30px;
}

.lcsd-footer-full-width {
	margin-bottom: 36px;
	width: 100%;
}

.lcsd-footer-widgets__columns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1220px;
	width: 100%;
	justify-content: space-between;
}

.lcsd-footer-widgets--columns-1 .lcsd-footer-widget-area {
	flex-basis: 100%;
}

.lcsd-footer-widgets--columns-2 .lcsd-footer-widget-area {
	flex-basis: calc((100% - 10px) / 2);
}

.lcsd-footer-widgets--columns-3 .lcsd-footer-widget-area {
	flex-basis: calc((100% - 20px) / 3);
}

.lcsd-footer-widgets--columns-4 .lcsd-footer-widget-area {
	flex-basis: calc((100% - 30px) / 4);
}

.lcsd-footer-widget-area {
	flex: 1 1 0;
	float: none;
	margin-bottom: 0;
	min-width: 220px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.lcsd-footer-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lcsd-footer-menu__list li {
	margin-bottom: 10px;
}

.lcsd-footer-menu__list li:last-child {
	margin-bottom: 0;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: #33363b;
	font-size: 15px;
	line-height: 1.5;
	padding: 54px 0 30px;
	position: relative;
	text-align: center;
	color: #fff;
}

.site-footer > .wrap {
	max-width: 1350px;
	text-align: left;
	margin: 0 auto;
	padding: 0 30px;
}

.lcsd-site-footer__layout {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	width: 100%;
}

.lcsd-site-footer__layout--no-left,
.lcsd-site-footer__layout--no-right,
.lcsd-site-footer__layout--social-only {
	justify-content: center;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer img {
	max-width: 140px;
	position: relative;
	top: -3px;
	left: 5px;
}

.site-footer .right-side a {
	color: #fff;
	text-decoration: none;
	margin-left: 15px;
}

.site-footer .left-side,
.site-footer .right-side {
	align-items: center;
	display: flex;
	gap: 15px;
}

.site-footer .left-side {
	flex: 1 1 auto;
	flex-wrap: wrap;
	min-width: 0;
}

.site-footer .right-side {
	flex: 0 1 auto;
	justify-content: flex-end;
	margin-left: auto;
}

.site-footer .lcsd-site-footer__left--center,
.site-footer .lcsd-site-footer__right--center {
	flex: 0 1 auto;
	justify-content: center;
	margin-left: 0;
}

.site-footer .lcsd-site-footer__layout--social-only .lcsd-site-footer__right {
	width: 100%;
}

.lcsd-site-footer__logo-link {
	display: inline-flex;
}

.site-footer .lcsd-site-footer__logo-image {
	display: block;
	height: auto;
	max-height: 46px;
	max-width: 140px;
	position: static;
	width: auto;
}

.lcsd-site-footer__copyright,
.lcsd-site-footer__credit {
	color: #fff;
}

.lcsd-site-footer__social {
	display: inline-flex;
}

.lcsd-footer-social-menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .lcsd-footer-social-menu a {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	margin-left: 0;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	width: 34px;
}

.site-footer .lcsd-footer-social-menu a:focus,
.site-footer .lcsd-footer-social-menu a:hover {
	background-color: #fff;
	border-color: #fff;
	color: #00297A;
}

.site-footer .lcsd-footer-social-menu i {
	font-size: 18px;
	line-height: 1;
}

.lcsd-social-icon-x {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
}

.lcsd-social-icon-x svg {
	display: block;
	fill: currentColor;
	height: 19px;
	width: 20px;
}

.site-footer #back-to-top {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #777777;
	background-color: #eaeaea;
	display: inline-flex;
	font-size: 24px;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	width: 60px;
	height: 30px;
	position: absolute;
	left: 50%;
	right: auto;
	top: 0px;
	bottom: auto;
	transform: translateX(-50%);
	border-radius: 0 0 3px 3px;
	z-index: 2;
}

.site-footer #back-to-top:focus,
.site-footer #back-to-top:hover {
	background-color: #fff;
	border-color: #fff;
	color: #00297A;
}

.site-footer > .wrap:before, .site-footer > .wrap:after, .site-footer:before, .site-footer:after, .site-footer > .wrap p:first-child, .site-footer > .wrap p:last-child {
	display: none;
}


/* Media Queries
---------------------------------------------------------------------------- */
@media only screen and (max-width: 959px) {
	nav#genesis-nav-primary {
		position: absolute;
		top: 105px;
		background: #fff;
		z-index: 9;
		left: 10%;
		width: 80%;
		outline: 2px solid #EEB902;
		outline-offset: -10px;
		text-align: center;
		padding: 40px;
	}

	.admin-bar nav#genesis-nav-primary {
		top: 150px;
	}

	.home .nav-primary .genesis-nav-menu a {
		color: #343A40;
	}

	.header-right .widget_text p {
		display: block;
	}

	.header-right .white-outline button {
		border-color: #00297a;
		background: #00297a;
		color: #fff;
	}

	.genesis-nav-menu a {
		color: #343A40;
	}

	.blog-archive-wrap article {
		gap: 18px;
	}

	.home .site-inner {
		padding-left: 10px;
		padding-right: 10px;
	}

	.home .site-inner .wrap .custom-site-inner-row {
		flex-wrap: wrap;
	}

	.home .custom-site-inner-row > .custom-site-inner-content {
		padding-left: 36px;
		padding-right: 36px;
		padding-bottom: 20px;
		width: 100%;
	}

	.home .hu-pad {
		padding-left: 0;
		padding-right: 0;
	}

	.home .custom-site-inner-row > .sidebar {
		padding: 42px 36px;
		width: 50%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column {
		max-width: none;
		order: 2;
		width: 50%;
	}

	.home .home-sidebar-primary-column .sidebar-primary {
		padding: 42px 36px;
	}

	.home .custom-site-inner-row > .custom-site-inner-content {
		order: 1;
	}

	.home .custom-site-inner-row > .sidebar-secondary {
		order: 3;
	}

	body:not(.home) .site-inner {
		padding-left: 10px;
		padding-right: 10px;
	}

	body:not(.home) .site-inner .wrap .custom-site-inner-row {
		flex-wrap: wrap;
	}

	body:not(.home) .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).sidebar-content .custom-site-inner-row > .custom-site-inner-content {
		padding-left: 36px;
		padding-right: 36px;
		width: 100%;
	}

	body:not(.home) .custom-site-inner-row > .sidebar {
		padding: 42px 36px;
		width: 50%;
	}

	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column {
		width: 50%;
	}

	body:not(.home) .home-sidebar-primary-column .sidebar-primary {
		padding: 42px 36px;
	}
}

@media only screen and (max-width: 782px) {
	.testimonial-inner-wrap {
		padding: 60px;
	}

	.mobile-reverse {
		flex-direction: column-reverse;
	}

	.wp-block-columns .wp-block-buttons.is-content-justification-right {
		justify-content: start;
	}

	.arrow-wrap {
		width: 150px;
		top: 0;
		margin-top: 30px;
	}

	body .slide-in.left .has-text-align-right {
		text-align: left;
	}

	.site-footer > .wrap {
		text-align: center;
	}

	.lcsd-site-footer__layout {
		display: block;
	}

	.site-footer .left-side,
	.site-footer .right-side,
	.lcsd-footer-social-menu {
		justify-content: center;
	}

	.site-footer .left-side {
		display: grid;
		justify-items: center;
		margin-bottom: 10px;
	}

	.site-footer #back-to-top {
		margin: 0;
	}
}

@media only screen and (max-width: 600px) {
	h1 {
		font-size: 2.6rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.6rem;
	}

	.hero-overlay > .wp-block-group__inner-container {
		position: relative;
		margin-top: -70px;
	}

	.wp-block-cover.hero {
		padding: 100px 0;
	}

	.box-mobile > img {
		display: none;
	}

	.box-mobile > span.wp-block-cover__background {
		background: #fff !important;
	}

	.gb-layout-column-wrap {
		gap: 20px;
	}

	body .box-mobile {
		min-height: auto !important;
		align-items: center !important;
		padding: 45px 50px 50px;
	}

	.box-mobile h4 {
		color: #00297A;
	}

	.box-mobile p {
		color: #20232B;
	}

	.full-height .wp-block-genesis-blocks-gb-column:last-child {
		padding: 40px 20px 70px;
	}

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

	.slide-in.delay.visible, .slide-in.delay2.visible, .slide-in.delay3.visible {
		transition-delay: 0s;
	}

	.footer-widgets-2 {
		margin-bottom: 30px;
	}

	.footer-widget-area > .widget_text {
		padding-bottom: 30px;
		border-bottom: 1px solid #ffffff47;
	}

	.lcsd-footer-widgets__columns {
		display: block;
	}

	.footer-widget-area:last-child > .widget_text {
		border: none;
	}

	.footer-widgets {
		padding: 60px 0 20px;
	}

	.blog-archive-wrap article {
		display: block;
	}

	.blog-archive-thumbnail {
		margin-bottom: 16px;
		max-width: 220px;
	}

	.home .site-inner {
		padding-left: 0;
		padding-right: 0;
	}

	.home .custom-site-inner-row > .custom-site-inner-content,
	.home .custom-site-inner-row > .sidebar {
		padding-left: 24px;
		padding-right: 24px;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column {
		width: 100%;
	}

	.home .home-sidebar-primary-column .sidebar-primary {
		padding-left: 24px;
		padding-right: 24px;
	}

	.home .blog-archive-wrap article,
	.home .blog-archive-wrap article:first-child {
		margin-right: 0;
		width: 100%;
	}

	.home .hu-pad {
		padding-left: 0;
		padding-right: 0;
	}

	.home .post-row {
		display: block;
	}

	.home .grid-item {
		width: 100%;
	}

	.home .flex-direction-nav {
		top: -34px;
		left: 72%;
	}

	body:not(.home) .site-inner {
		padding-left: 0;
		padding-right: 0;
	}

	body:not(.home) .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).sidebar-content .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home) .custom-site-inner-row > .sidebar {
		padding-left: 24px;
		padding-right: 24px;
		width: 100%;
	}

	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column {
		width: 100%;
	}

	body:not(.home) .home-sidebar-primary-column .sidebar-primary {
		padding-left: 24px;
		padding-right: 24px;
	}

	body:not(.home) .internal-post-title {
		font-size: 30px;
	}

	body.single-post .internal-post-body {
		display: block;
	}

	body.single-post .lcsd-post-share {
		flex-direction: row;
		justify-content: flex-start;
		padding: 20px 0 24px;
	}

	body.single-post .lcsd-related-posts {
		padding-left: 0;
		padding-right: 0;
	}

	body.single-post .related-posts {
		grid-template-columns: 1fr;
	}

	.number-column {
		width: 40px;
		height: 40px;
		padding-top: 4px;
	}
}

@media only screen and (max-width: 500px) {
	.testimonial-inner-wrap {
		padding: 30px;
	}

	.full-width > .wp-block-group__inner-container, .wp-block-cover.full-width > .wp-block-cover__inner-container {
		padding: 0 20px;
	}

	.wp-custom-logo .title-area {
		max-width: 160px;
	}

	.home .site-inner .wrap .custom-site-inner-row, body:not(.home) .site-inner .wrap .custom-site-inner-row {
		justify-content: flex-start !important;
	}
}

@media only screen and (max-width: 450px) {
	.wp-block-buttons > .wp-block-button, .wp-block-buttons > .wp-block-button > .wp-block-button__link {
		width: 100% !important;
	}
}

@media only screen and (max-width: 1200px) {
	.home .site-inner .wrap .custom-site-inner-row,
	body:not(.home) .site-inner .wrap .custom-site-inner-row {
		--lcsd-collapsible-sidebar-offset: var(--lcsd-sidebar-header-height, 60px);
		align-items: stretch;
		flex-wrap: nowrap;
	}

	.home .custom-site-inner-row > .sidebar-secondary,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary {
		flex: 0 0 58px;
		max-width: 58px;
		margin-bottom: calc(-1 * var(--lcsd-collapsible-sidebar-offset));
		order: 3;
		overflow: hidden;
		padding: 0;
		position: relative;
		top: calc(-1 * var(--lcsd-collapsible-sidebar-offset));
		transition: flex-basis .55s ease, max-width .55s ease, width .55s ease;
		width: 58px;
		z-index: 3;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open {
		flex-basis: 260px;
		max-width: 260px;
		width: 260px;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column {
		flex: 0 0 340px;
		max-width: 340px;
		min-width: 340px;
		width: 340px;
		order: 1;
	}

	.home .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home) .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).sidebar-content .custom-site-inner-row > .custom-site-inner-content {
		flex: 1 1 100%;
		max-width: none;
		min-width: 0;
		order: 2;
		width: 100%;
	}

	.home .custom-site-inner-row > .sidebar-secondary::before,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary::before {
		display: none;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle {
		display: flex;
		height: 60px;
		justify-content: center;
		padding: 0;
		width: 58px;
		border-radius: 0;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle span,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle span {
		display: none;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle {
		height: var(--lcsd-collapsible-sidebar-offset);
		justify-content: space-between;
		min-height: var(--lcsd-collapsible-sidebar-offset);
		padding: 0 36px;
		width: 100%;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle span,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle span {
		display: inline;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		padding-left: 36px;
		padding-right: 36px;
		transform: translateX(12px);
		transition: max-height .55s ease, opacity .35s ease, padding-bottom .55s ease, padding-top .55s ease, transform .45s ease;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel {
		opacity: 1;
		padding-bottom: 42px;
		padding-top: 42px;
		transform: translateX(0);
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle i,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle i {
		transform: rotate(180deg);
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle:hover i,
	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle:focus i,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle:hover i,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle:focus i {
		animation: lcsd-sidebar-toggle-hover-open .7s ease-in-out infinite;
		transform: rotate(180deg) translateX(3px) scale(1.14);
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle:active i,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle:active i {
		animation: none;
		transform: rotate(180deg) translateX(1px) scale(0.94);
	}

	.home .custom-site-inner-row > .sidebar-secondary .super-rss-reader-widget .srr-vticker,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .super-rss-reader-widget .srr-vticker {
		height: auto !important;
		overflow: visible !important;
	}

	.home .custom-site-inner-row > .sidebar-secondary .super-rss-reader-widget .srr-vticker .srr-inner,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .super-rss-reader-widget .srr-vticker .srr-inner {
		height: auto !important;
		left: auto !important;
		position: static !important;
		right: auto !important;
		top: auto !important;
	}
}

@media only screen and (max-width: 600px) {
	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle {
		padding-left: 24px;
		padding-right: 24px;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media only screen and (min-width: 600px) and (max-width: 719px) {
	.home .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home) .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).sidebar-content .custom-site-inner-row > .custom-site-inner-content {
		flex-basis: 0;
		width: auto;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open {
		flex-basis: min(240px, calc(100vw - 118px));
		max-width: min(240px, calc(100vw - 118px));
		width: min(240px, calc(100vw - 118px));
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle {
		padding-left: 24px;
		padding-right: 24px;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media only screen and (max-width: 959px) {
	body:not(.home):not(.has-lcsd-header-secondary-sidebar-bar) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top {
		margin-left: 10px;
		margin-right: 10px;
		width: calc(100% - 20px);
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column {
		--lcsd-primary-collapsible-sidebar-offset: 68px;
		flex: 0 0 58px;
		margin-bottom: calc(-1 * var(--lcsd-primary-collapsible-sidebar-offset));
		max-width: 58px;
		order: 1;
		overflow: hidden;
		padding: 0;
		position: relative;
		top: calc(-1 * var(--lcsd-primary-collapsible-sidebar-offset));
		transition: flex-basis .55s ease, max-width .55s ease, width .55s ease;
		width: 58px;
		z-index: 3;
		min-width: auto !important;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open {
		flex-basis: min(340px, calc(100vw - 116px));
		max-width: min(340px, calc(100vw - 116px));
		width: min(340px, calc(100vw - 116px));
	}

	body.search .custom-site-inner-row > .home-sidebar-primary-column,
	body.error404 .custom-site-inner-row > .home-sidebar-primary-column {
		margin-bottom: 0;
		top: 0;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle {
		display: flex;
		height: 68px;
		justify-content: center;
		padding: 0;
		width: 58px;
		border-radius: 0;
	}

	.home .page-title h2 {
		padding-left: 15px;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle span,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle span {
		display: none;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle {
		height: var(--lcsd-primary-collapsible-sidebar-offset);
		justify-content: space-between;
		min-height: var(--lcsd-primary-collapsible-sidebar-offset);
		padding: 0 36px;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle span,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle span {
		display: inline;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		transform: translateX(-12px);
		transition: max-height .55s ease, opacity .35s ease, transform .45s ease;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top {
		align-items: stretch;
		background: var(--lcsd-link-color, #765994);
		display: flex;
		flex-direction: row;
		min-height: 60px;
		padding-left: 0;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top p,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top p {
		color: #fff;
		display: block;
		font-size: 19px;
		font-weight: 700;
		line-height: 1;
		margin: 0;
		padding: 20px 18px;
		text-transform: uppercase;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links {
		align-items: center;
		display: flex;
		gap: 12px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links li,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links li {
		line-height: 1;
		margin: 0;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links a,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		line-height: 1;
		text-decoration: none;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-panel {
		opacity: 1;
		transform: translateX(0);
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle i,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle i {
		transform: rotate(180deg);
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle:hover i,
	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle:focus i,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle:hover i,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle:focus i {
		animation: lcsd-sidebar-toggle-hover-open .7s ease-in-out infinite;
		transform: rotate(180deg) translateX(3px) scale(1.14);
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle:active i,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle:active i {
		animation: none;
		transform: rotate(180deg) translateX(1px) scale(0.94);
	}
}

@media only screen and (max-width: 600px) {
	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle {
		padding-left: 24px;
		padding-right: 24px;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top {
		flex-wrap: wrap;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top p,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top p {
		flex: 0 0 100%;
		padding: 16px 24px 8px;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top .social-links {
		flex-wrap: wrap;
		gap: 10px;
		padding: 0 24px 16px;
	}
}

@media only screen and (max-width: 479px) {
	.home .site-inner .wrap .custom-site-inner-row,
	body:not(.home) .site-inner .wrap .custom-site-inner-row {
		align-items: stretch;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 0;
	}

	.home .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home) .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body:not(.home).sidebar-content .custom-site-inner-row > .custom-site-inner-content {
		flex: 0 0 auto;
		max-width: none;
		order: 1;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column {
		flex: 0 0 auto;
		margin-bottom: 0;
		margin-top: 28px;
		max-width: none;
		order: 2;
		overflow: visible;
		position: static;
		top: 0;
		width: 100%;
		z-index: auto;
		min-height: 2050px !important;
	}

	.home .custom-site-inner-row > .sidebar-secondary {
		min-height: 1450px;
	}

	.home .custom-site-inner-row > .sidebar-secondary,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary {
		flex: 0 0 auto;
		margin-bottom: 0;
		margin-top: 24px;
		max-width: none;
		order: 3;
		overflow: visible;
		position: static;
		top: 0;
		width: 100%;
		z-index: auto;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle {
		display: none;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel,
	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		max-height: none;
		opacity: 1;
		overflow: visible;
		padding-bottom: 0;
		padding-top: 0;
		position: static;
		transform: none;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .sidebar-primary,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .sidebar-primary,
	.home .custom-site-inner-row > .sidebar-secondary,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary {
		max-width: none;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .sidebar-primary,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .sidebar-primary,
	.home .custom-site-inner-row > .sidebar-secondary .sidebar,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .sidebar {
		box-sizing: border-box;
		max-width: none;
		padding: 28px 24px 0;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top,
	body:not(.home) .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel > .sidebar-top {
		margin-bottom: 20px;
		width: 100%;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body:not(.home) .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 719px) {
	.home .site-inner,
	body.has-lcsd-header-primary-sidebar-bar .site-inner,
	body.has-lcsd-header-secondary-sidebar-bar .site-inner {
		padding-left: 0;
		padding-right: 0;
	}

	.home .site-inner {
		position: relative;
		z-index: 2;
	}

	.home .site-inner .wrap .custom-site-inner-row,
	body.has-lcsd-header-primary-sidebar-bar .site-inner .wrap .custom-site-inner-row,
	body.has-lcsd-header-secondary-sidebar-bar .site-inner .wrap .custom-site-inner-row {
		--lcsd-sidebar-toggle-width: 58px;
		--lcsd-primary-collapsible-sidebar-offset: 68px;
		--lcsd-primary-sidebar-open-width: min(340px, calc(100% - var(--lcsd-sidebar-toggle-width)));
		--lcsd-secondary-sidebar-open-width: min(260px, calc(100% - var(--lcsd-sidebar-toggle-width)));
		align-items: stretch;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0;
		max-width: 100%;
		overflow-x: hidden;
		width: 100%;
	}

	@supports (overflow: clip) {
		.home .site-inner .wrap .custom-site-inner-row,
		body.has-lcsd-header-primary-sidebar-bar .site-inner .wrap .custom-site-inner-row,
		body.has-lcsd-header-secondary-sidebar-bar .site-inner .wrap .custom-site-inner-row {
			overflow-x: clip;
		}
	}

	.home .custom-site-inner-row > .custom-site-inner-content,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .custom-site-inner-content,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .custom-site-inner-content,
	body.has-lcsd-header-primary-sidebar-bar.content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body.has-lcsd-header-primary-sidebar-bar.sidebar-content .custom-site-inner-row > .custom-site-inner-content,
	body.has-lcsd-header-secondary-sidebar-bar.content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body.has-lcsd-header-secondary-sidebar-bar.sidebar-content .custom-site-inner-row > .custom-site-inner-content {
		flex: 1 1 0;
		max-width: none;
		min-width: 0;
		order: 2;
		overflow-x: hidden;
		position: relative;
		width: auto;
		z-index: 1;
	}

	.home .site-inner .wrap > .custom-site-inner-row,
	body.home .custom-site-inner-row > .custom-site-inner-content,
	body.home.content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body.home.sidebar-content .custom-site-inner-row > .custom-site-inner-content,
	body.home.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .custom-site-inner-content,
	body.home.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .custom-site-inner-content {
		overflow: visible;
	}

	.home .page-title {
		z-index: 1;
	}

	.home .flex-direction-nav {
		z-index: 2;
	}

	.home.lcsd-primary-sidebar-open .custom-site-inner-row > .custom-site-inner-content,
	body.lcsd-primary-sidebar-open.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .custom-site-inner-content,
	body.lcsd-primary-sidebar-open.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .custom-site-inner-content,
	body.lcsd-primary-sidebar-open.has-lcsd-header-primary-sidebar-bar.content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body.lcsd-primary-sidebar-open.has-lcsd-header-primary-sidebar-bar.sidebar-content .custom-site-inner-row > .custom-site-inner-content,
	body.lcsd-primary-sidebar-open.has-lcsd-header-secondary-sidebar-bar.content-sidebar .custom-site-inner-row > .custom-site-inner-content,
	body.lcsd-primary-sidebar-open.has-lcsd-header-secondary-sidebar-bar.sidebar-content .custom-site-inner-row > .custom-site-inner-content {
		padding-left: 8px;
		padding-right: 8px;
	}

	.home.lcsd-primary-sidebar-open .page-title h2 {
		padding-left: 0;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column {
		flex: 0 0 var(--lcsd-sidebar-toggle-width);
		margin-bottom: calc(-1 * var(--lcsd-primary-collapsible-sidebar-offset));
		margin-top: 0;
		max-width: var(--lcsd-sidebar-toggle-width);
		min-height: 0 !important;
		order: 1;
		overflow: hidden;
		padding: 0;
		position: relative;
		top: calc(-1 * var(--lcsd-primary-collapsible-sidebar-offset));
		width: var(--lcsd-sidebar-toggle-width);
		z-index: 30;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open {
		flex-basis: var(--lcsd-primary-sidebar-open-width);
		max-width: var(--lcsd-primary-sidebar-open-width);
		width: var(--lcsd-primary-sidebar-open-width);
	}

	.home .custom-site-inner-row > .sidebar-secondary,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary {
		flex: 0 0 var(--lcsd-sidebar-toggle-width);
		margin-bottom: calc(-1 * var(--lcsd-collapsible-sidebar-offset));
		margin-top: 0;
		max-width: var(--lcsd-sidebar-toggle-width);
		min-height: 0 !important;
		order: 3;
		overflow: hidden;
		padding: 0;
		position: relative;
		top: calc(-1 * var(--lcsd-collapsible-sidebar-offset));
		width: var(--lcsd-sidebar-toggle-width);
		z-index: 30;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open {
		flex-basis: var(--lcsd-secondary-sidebar-open-width);
		max-width: var(--lcsd-secondary-sidebar-open-width);
		width: var(--lcsd-secondary-sidebar-open-width);
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle {
		box-sizing: border-box;
		display: flex;
		flex: 0 0 var(--lcsd-sidebar-toggle-width);
		justify-content: center;
		margin: 0;
		max-width: var(--lcsd-sidebar-toggle-width);
		min-width: var(--lcsd-sidebar-toggle-width);
		padding: 0;
		position: relative;
		width: var(--lcsd-sidebar-toggle-width);
		z-index: 40;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle {
		height: var(--lcsd-primary-collapsible-sidebar-offset);
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle {
		height: var(--lcsd-collapsible-sidebar-offset);
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle,
	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle {
		justify-content: space-between;
		flex-basis: auto;
		max-width: 100%;
		min-width: 0;
		padding-left: 16px;
		padding-right: 16px;
		width: 100%;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle span,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle span,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-toggle span,
	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle span,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle span,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-toggle span {
		display: none;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle span,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle span,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-toggle span,
	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle span,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle span,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-toggle span {
		display: inline;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column .lcsd-primary-sidebar-panel,
	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		position: static;
		transform: none;
	}

	.home .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary .lcsd-secondary-sidebar-panel {
		padding-bottom: 0;
		padding-top: 0;
	}

	.home .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-panel,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-panel,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .home-sidebar-primary-column.is-open .lcsd-primary-sidebar-panel,
	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel {
		opacity: 1;
	}

	.home .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-primary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel,
	body.has-lcsd-header-secondary-sidebar-bar .custom-site-inner-row > .sidebar-secondary.is-open .lcsd-secondary-sidebar-panel {
		padding-bottom: 42px;
		padding-top: 42px;
	}
}

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

	table {
		table-layout: auto;
		word-break: normal;
	}

}

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

	/* Site Header
	--------------------------------------------- */

	.site-header {
		position: relative;
		top: 0;
		z-index: 99;
		width: 100%;
		background: #00297A;
		padding: 0 10px;
	}

	/* Genesis Menu
	--------------------------------------------- */

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu > .menu-bold > a {
		font-weight: 700;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #333;
		border-radius: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		background-color: #0073e5;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 180px;
	}

	.genesis-nav-menu .sub-menu {
		border-top: 1px solid #eee;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.genesis-nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
		padding-top: 15px;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */

	.nav-primary {
		clear: none;
		float: right;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* Site-Inner
	--------------------------------------------- */

	.site-inner {
		max-width: 1220px;
	}

	/* Content
	--------------------------------------------- */

	.content {
		float: left;
		width: 100%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 0;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		max-width: 1350px;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
	}

}

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}
