/* Minify_CSS_UriRewriter::$debugText

*/

/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ }
/* 13  */
/* 14  */ .wpcf7 form .wpcf7-response-output {
/* 15  */ 	margin: 2em 0.5em 1em;
/* 16  */ 	padding: 0.2em 1em;
/* 17  */ 	border: 2px solid #00a0d2; /* Blue */
/* 18  */ }
/* 19  */
/* 20  */ .wpcf7 form.init .wpcf7-response-output,
/* 21  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 22  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 23  */ 	display: none;
/* 24  */ }
/* 25  */
/* 26  */ .wpcf7 form.sent .wpcf7-response-output {
/* 27  */ 	border-color: #46b450; /* Green */
/* 28  */ }
/* 29  */
/* 30  */ .wpcf7 form.failed .wpcf7-response-output,
/* 31  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 32  */ 	border-color: #dc3232; /* Red */
/* 33  */ }
/* 34  */
/* 35  */ .wpcf7 form.spam .wpcf7-response-output {
/* 36  */ 	border-color: #f56e28; /* Orange */
/* 37  */ }
/* 38  */
/* 39  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 40  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 41  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 42  */ 	border-color: #ffb900; /* Yellow */
/* 43  */ }
/* 44  */
/* 45  */ .wpcf7-form-control-wrap {
/* 46  */ 	position: relative;
/* 47  */ }
/* 48  */
/* 49  */ .wpcf7-not-valid-tip {
/* 50  */ 	color: #dc3232; /* Red */

/* styles.css */

/* 51  */ 	font-size: 1em;
/* 52  */ 	font-weight: normal;
/* 53  */ 	display: block;
/* 54  */ }
/* 55  */
/* 56  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 57  */ 	position: relative;
/* 58  */ 	top: -2ex;
/* 59  */ 	left: 1em;
/* 60  */ 	z-index: 100;
/* 61  */ 	border: 1px solid #dc3232;
/* 62  */ 	background: #fff;
/* 63  */ 	padding: .2em .8em;
/* 64  */ 	width: 24em;
/* 65  */ }
/* 66  */
/* 67  */ .wpcf7-list-item {
/* 68  */ 	display: inline-block;
/* 69  */ 	margin: 0 0 0 1em;
/* 70  */ }
/* 71  */
/* 72  */ .wpcf7-list-item-label::before,
/* 73  */ .wpcf7-list-item-label::after {
/* 74  */ 	content: " ";
/* 75  */ }
/* 76  */
/* 77  */ .wpcf7-spinner {
/* 78  */ 	visibility: hidden;
/* 79  */ 	display: inline-block;
/* 80  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 81  */ 	opacity: 0.75;
/* 82  */ 	width: 24px;
/* 83  */ 	height: 24px;
/* 84  */ 	border: none;
/* 85  */ 	border-radius: 100%;
/* 86  */ 	padding: 0;
/* 87  */ 	margin: 0 24px;
/* 88  */ 	position: relative;
/* 89  */ }
/* 90  */
/* 91  */ form.submitting .wpcf7-spinner {
/* 92  */ 	visibility: visible;
/* 93  */ }
/* 94  */
/* 95  */ .wpcf7-spinner::before {
/* 96  */ 	content: '';
/* 97  */ 	position: absolute;
/* 98  */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 99  */ 	top: 4px;
/* 100 */ 	left: 4px;

/* styles.css */

/* 101 */ 	width: 6px;
/* 102 */ 	height: 6px;
/* 103 */ 	border: none;
/* 104 */ 	border-radius: 100%;
/* 105 */ 	transform-origin: 8px 8px;
/* 106 */ 	animation-name: spin;
/* 107 */ 	animation-duration: 1000ms;
/* 108 */ 	animation-timing-function: linear;
/* 109 */ 	animation-iteration-count: infinite;
/* 110 */ }
/* 111 */
/* 112 */ @media (prefers-reduced-motion: reduce) {
/* 113 */ 	.wpcf7-spinner::before {
/* 114 */ 		animation-name: blink;
/* 115 */ 		animation-duration: 2000ms;
/* 116 */ 	}
/* 117 */ }
/* 118 */
/* 119 */ @keyframes spin {
/* 120 */ 	from {
/* 121 */ 		transform: rotate(0deg);
/* 122 */ 	}
/* 123 */
/* 124 */ 	to {
/* 125 */ 		transform: rotate(360deg);
/* 126 */ 	}
/* 127 */ }
/* 128 */
/* 129 */ @keyframes blink {
/* 130 */ 	from {
/* 131 */ 		opacity: 0;
/* 132 */ 	}
/* 133 */
/* 134 */ 	50% {
/* 135 */ 		opacity: 1;
/* 136 */ 	}
/* 137 */
/* 138 */ 	to {
/* 139 */ 		opacity: 0;
/* 140 */ 	}
/* 141 */ }
/* 142 */
/* 143 */ .wpcf7 input[type="file"] {
/* 144 */ 	cursor: pointer;
/* 145 */ }
/* 146 */
/* 147 */ .wpcf7 input[type="file"]:disabled {
/* 148 */ 	cursor: default;
/* 149 */ }
/* 150 */

/* styles.css */

/* 151 */ .wpcf7 .wpcf7-submit:disabled {
/* 152 */ 	cursor: not-allowed;
/* 153 */ }
/* 154 */
/* 155 */ .wpcf7 input[type="url"],
/* 156 */ .wpcf7 input[type="email"],
/* 157 */ .wpcf7 input[type="tel"] {
/* 158 */ 	direction: ltr;
/* 159 */ }
/* 160 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.min.css */

/* 1 */ @charset "UTF-8";@media not (prefers-reduced-motion){.components-animate__appear{animation:components-animate__appear-animation .1s cubic-bezier(0,0,.2,1) 0s;animation-fill-mode:forwards}}.components-animate__appear.is-from-top,.components-animate__appear.is-from-top.is-from-left{transform-origin:top left}.components-animate__appear.is-from-top.is-from-right{transform-origin:top right}.components-animate__appear.is-from-bottom,.components-animate__appear.is-from-bottom.is-from-left{transform-origin:bottom left}.components-animate__appear.is-from-bottom.is-from-right{transform-origin:bottom right}@keyframes components-animate__appear-animation{0%{transform:translateY(-2em) scaleY(0) scaleX(0)}to{transform:translateY(0) scaleY(1) scaleX(1)}}@media not (prefers-reduced-motion){.components-animate__slide-in{animation:components-animate__slide-in-animation .1s cubic-bezier(0,0,.2,1);animation-fill-mode:forwards}.components-animate__slide-in.is-from-left{transform:translateX(100%)}.components-animate__slide-in.is-from-right{transform:translateX(-100%)}}@keyframes components-animate__slide-in-animation{to{transform:translateX(0)}}@media not (prefers-reduced-motion){.components-animate__loading{animation:components-animate__loading 1.6s ease-in-out infinite}}@keyframes components-animate__loading{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.components-autocomplete__popover .components-popover__content{min-width:200px;padding:8px}.components-autocomplete__result.components-button{display:flex;height:auto;min-height:36px;text-align:left;width:100%}.components-autocomplete__result.components-button:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid #0000}.components-badge{box-sizing:border-box}.components-badge *,.components-badge :after,.components-badge :before{box-sizing:inherit}.components-badge{background-color:color-mix(in srgb,#fff 90%,var(--base-color));border-radius:2px;color:color-mix(in srgb,#000 50%,var(--base-color));display:inline-block;line-height:0;max-width:100%;min-height:24px;padding:2px 8px}.components-badge:where(.is-default){background-color:#f0f0f0;color:#2f2f2f}.components-badge.has-icon{padding-inline-start:4px}.components-badge.is-info{--base-color:#3858e9}.components-badge.is-warning{--base-color:#f0b849}.components-badge.is-error{--base-color:#cc1818}.components-badge.is-success{--base-color:#4ab866}.components-badge__flex-wrapper{align-items:center;display:inline-flex;font-size:12px;font-weight:400;gap:2px;line-height:20px;max-width:100%}.components-badge__icon{flex-shrink:0}.components-badge__content{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.components-button-group{display:inline-block}.components-button-group .components-button{border-radius:0;box-shadow:inset 0 0 0 1px #1e1e1e;color:#1e1e1e;display:inline-flex}.components-button-group .components-button+.components-button{margin-left:-1px}.components-button-group .components-button:first-child{border-radius:2px 0 0 2px}.components-button-group .components-button:last-child{border-radius:0 2px 2px 0}.components-button-group .components-button.is-primary,.components-button-group .components-button:focus{position:relative;z-index:1}.components-button-group .components-button.is-primary{box-shadow:inset 0 0 0 1px #1e1e1e}.components-button{-webkit-appearance:none;background:none;border:0;cursor:pointer;display:inline-flex;font-family:inherit;font-size:13px;margin:0;text-decoration:none}@media not (prefers-reduced-motion){.components-button{transition:box-shadow .1s linear}}.components-button{align-items:center;border-radius:2px;box-sizing:border-box;color:var(--wp-components-color-foreground,#1e1e1e);height:36px;padding:6px 12px}.components-button.is-next-40px-default-size{height:40px}.components-button:hover:not(:disabled,[aria-disabled=true]),.components-button[aria-expanded=true]{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:3px solid #0000}.components-button.is-primary{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);outline:1px solid #0000;text-decoration:none;text-shadow:none;white-space:nowrap}.components-button.is-primary:hover:not(:disabled){background:var(--wp-components-color-accent-darker-10,var(--wp-admin-theme-color-darker-10,#2145e6));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-primary:active:not(:disabled){background:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));border-color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-primary:focus:not(:disabled){box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-primary:disabled,.components-button.is-primary:disabled:active:enabled,.components-button.is-primary[aria-disabled=true],.components-button.is-primary[aria-disabled=true]:active:enabled,.components-button.is-primary[aria-disabled=true]:enabled{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:#fff6;outline:none}.components-button.is-primary:disabled:active:enabled:focus:enabled,.components-button.is-primary:disabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:focus:enabled{box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-primary.is-busy,.components-button.is-primary.is-busy:disabled,.components-button.is-primary.is-busy[aria-disabled=true]{background-image:linear-gradient(-45deg,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 33%,var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6)) 33%,var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6)) 70%,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 70%);background-size:100px 100%;border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-secondary,.components-button.is-tertiary{outline:1px solid #0000}.components-button.is-secondary:active:not(:disabled),.components-button.is-tertiary:active:not(:disabled){box-shadow:none}.components-button.is-secondary:disabled,.components-button.is-secondary[aria-disabled=true],.components-button.is-secondary[aria-disabled=true]:hover,.components-button.is-tertiary:disabled,.components-button.is-tertiary[aria-disabled=true],.components-button.is-tertiary[aria-disabled=true]:hover{background:#0000;color:#949494;transform:none}.components-button.is-secondary{background:#0000;box-shadow:inset 0 0 0 1px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)),0 0 0 currentColor;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:1px solid #0000;white-space:nowrap}.components-button.is-secondary:hover:not(:disabled,[aria-disabled=true],.is-pressed){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);box-shadow:inset 0 0 0 1px var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6))}.components-button.is-secondary:disabled:not(:focus),.components-button.is-secondary[aria-disabled=true]:hover:not(:focus),.components-button.is-secondary[aria-disabled=true]:not(:focus){box-shadow:inset 0 0 0 1px #ddd}.components-button.is-secondary:focus:not(:disabled){box-shadow:0 0 0 currentColor inset,0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-tertiary{background:#0000;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));white-space:nowrap}.components-button.is-tertiary:hover:not(:disabled,[aria-disabled=true],.is-pressed){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6))}.components-button.is-tertiary:active:not(:disabled,[aria-disabled=true]){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 8%,#0000)}p+.components-button.is-tertiary{margin-left:-6px}.components-button.is-tertiary:disabled:not(:focus),.components-button.is-tertiary[aria-disabled=true]:hover:not(:focus),.components-button.is-tertiary[aria-disabled=true]:not(:focus){box-shadow:none;outline:none}.components-button.is-destructive{--wp-components-color-accent:#cc1818;--wp-components-color-accent-darker-10:#9e1313;--wp-components-color-accent-darker-20:#710d0d}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link){color:#cc1818}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):hover:not(:disabled,[aria-disabled=true]){color:#710d0d}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #cc1818}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):active:not(:disabled,[aria-disabled=true]){background:#ccc}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):disabled,.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link)[aria-disabled=true]{color:#949494}.components-button.is-destructive.is-secondary:hover:not(:disabled,[aria-disabled=true]),.components-button.is-destructive.is-tertiary:hover:not(:disabled,[aria-disabled=true]){background:#cc18180a}.components-button.is-destructive.is-secondary:active:not(:disabled,[aria-disabled=true]),.components-button.is-destructive.is-tertiary:active:not(:disabled,[aria-disabled=true]){background:#cc181814}.components-button.is-link{background:none;border:0;border-radius:0;box-shadow:none;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));margin:0;outline:none;padding:0;text-align:left;text-decoration:underline}@media not (prefers-reduced-motion){.components-button.is-link{transition-duration:.05s;transition-property:border,background,color;transition-timing-function:ease-in-out}}.components-button.is-link{height:auto}.components-button.is-link:focus{border-radius:2px}.components-button.is-link:disabled,.components-button.is-link[aria-disabled=true]{color:#949494}.components-button:not(:disabled,[aria-disabled=true]):active{color:var(--wp-components-color-foreground,#1e1e1e)}.components-button:disabled,.components-button[aria-disabled=true]{color:#949494;cursor:default}@media not (prefers-reduced-motion){.components-button.is-busy,.components-button.is-secondary.is-busy,.components-button.is-secondary.is-busy:disabled,.components-button.is-secondary.is-busy[aria-disabled=true]{animation:components-button__busy-animation 2.5s linear infinite}}.components-button.is-busy,.components-button.is-secondary.is-busy,.components-button.is-secondary.is-busy:disabled,.components-button.is-secondary.is-busy[aria-disabled=true]{background-image:linear-gradient(-45deg,#fafafa 33%,#e0e0e0 0,#e0e0e0 70%,#fafafa 0);background-size:100px 100%}.components-button.is-compact{height:32px}.components-button.is-compact.has-icon:not(.has-text){min-width:32px;padding:0}.components-button.is-small{font-size:11px;height:24px;line-height:22px;padding:0 8px}.components-button.is-small.has-icon:not(.has-text){min-width:24px;padding:0}.components-button.has-icon{justify-content:center;min-width:36px;padding:6px}.components-button.has-icon.is-next-40px-default-size{min-width:40px}.components-button.has-icon .dashicon{align-items:center;box-sizing:initial;display:inline-flex;justify-content:center;padding:2px}.components-button.has-icon.has-text{gap:4px;justify-content:start;padding-left:8px;padding-right:12px}.components-button.has-icon.has-text.has-icon-right{padding-left:12px;padding-right:8px}.components-button.is-pressed,.components-button.is-pressed:hover{color:var(--wp-components-color-foreground-inverted,#fff)}.components-button.is-pressed:hover:not(:disabled,[aria-disabled=true]),.components-button.is-pressed:not(:disabled,[aria-disabled=true]){background:var(--wp-components-color-foreground,#1e1e1e)}.components-button.is-pressed:disabled,.components-button.is-pressed[aria-disabled=true]{color:#949494}.components-button.is-pressed:disabled:not(.is-primary):not(.is-secondary):not(.is-tertiary),.components-button.is-pressed[aria-disabled=true]:not(.is-primary):not(.is-secondary):not(.is-tertiary){background:#949494;color:var(--wp-components-color-foreground-inverted,#fff)}.components-button.is-pressed:focus:not(:disabled){box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-button svg{fill:currentColor;outline:none}@media (forced-colors:active){.components-button svg{fill:CanvasText}}.components-button .components-visually-hidden{height:auto}@keyframes components-button__busy-animation{0%{background-position:200px 0}}.components-calendar{background-color:var(--wp-components-color-background,#fff);color:var(--wp-components-color-foreground,#1e1e1e);display:inline-block;font-size:13px;font-weight:400;position:relative;z-index:0}.components-calendar,.components-calendar *,.components-calendar :after,.components-calendar :before{box-sizing:border-box}.components-calendar__day{padding:0;position:relative}.components-calendar__day:has(.components-calendar__day-button:disabled){color:var(--wp-components-color-gray-600,#949494)}.components-calendar__day:has(.components-calendar__day-button:focus-visible),.components-calendar__day:has(.components-calendar__day-button:hover:not(:disabled)){color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-calendar__day-button{align-items:center;background:none;border:none;border-radius:2px;color:inherit;cursor:pointer;display:flex;font:inherit;font-variant-numeric:tabular-nums;height:32px;justify-content:center;margin:0;padding:0;position:relative;width:32px}.components-calendar__day-button:before{border:none;border-radius:2px;content:"";inset:0;position:absolute;z-index:-1}.components-calendar__day-button:after{content:"";inset:0;pointer-events:none;position:absolute;z-index:1}.components-calendar__day-button:disabled{cursor:revert}@media (forced-colors:active){.components-calendar__day-button:disabled{text-decoration:line-through}}.components-calendar__day-button:focus-visible{outline:var(--wp-admin-border-width-focus) solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline-offset:1px}.components-calendar__caption-label{align-items:center;border:0;display:inline-flex;position:relative;text-transform:capitalize;white-space:nowrap;z-index:1}.components-calendar__button-next,.components-calendar__button-previous{align-items:center;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;border-radius:2px;color:inherit;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin:0;padding:0;position:relative;width:32px}.components-calendar__button-next:disabled,.components-calendar__button-next[aria-disabled=true],.components-calendar__button-previous:disabled,.components-calendar__button-previous[aria-disabled=true]{color:var(--wp-components-color-gray-600,#949494);cursor:revert}.components-calendar__button-next:focus-visible,.components-calendar__button-previous:focus-visible{outline:var(--wp-admin-border-width-focus) solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-calendar__chevron{display:inline-block;fill:currentColor;height:16px;width:16px}.components-calendar[dir=rtl] .components-calendar__nav .components-calendar__chevron{transform:rotate(180deg);transform-origin:50%}.components-calendar__month-caption{align-content:center;display:flex;height:32px;justify-content:center;margin-bottom:12px}.components-calendar__months{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;max-width:fit-content;position:relative}.components-calendar__month-grid{border-collapse:initial;border-spacing:0 4px}.components-calendar__nav{align-items:center;display:flex;height:32px;inset-block-start:0;inset-inline-end:0;inset-inline-start:0;justify-content:space-between;position:absolute}.components-calendar__weekday{color:var(--wp-components-color-gray-700,#757575);height:32px;padding:0;text-align:center;text-transform:uppercase;width:32px}.components-calendar__day--today:after{border:2px solid;border-radius:50%;content:"";height:0;inset-block-start:2px;inset-inline-end:2px;position:absolute;width:0;z-index:1}.components-calendar__day--selected:not(.components-calendar__range-middle):has(.components-calendar__day-button,.components-calendar__day-button:hover:not(:disabled)){color:var(--wp-components-color-foreground-inverted,#fff)}.components-calendar__day--selected:not(.components-calendar__range-middle) .components-calendar__day-button:before{background-color:var(--wp-components-color-foreground,#1e1e1e);border:1px solid #0000}.components-calendar__day--selected:not(.components-calendar__range-middle) .components-calendar__day-button:disabled:before{background-color:var(--wp-components-color-gray-600,#949494)}.components-calendar__day--selected:not(.components-calendar__range-middle) .components-calendar__day-button:hover:not(:disabled):before{background-color:var(--wp-components-color-gray-800,#2f2f2f)}.components-calendar__day--hidden{visibility:hidden}.components-calendar__range-start:not(.components-calendar__range-end) .components-calendar__day-button,.components-calendar__range-start:not(.components-calendar__range-end) .components-calendar__day-button:before{border-end-end-radius:0;border-start-end-radius:0}.components-calendar__range-middle .components-calendar__day-button:before{background-color:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);border-color:#0000;border-radius:0;border-style:solid;border-width:1px 0}.components-calendar__range-end:not(.components-calendar__range-start) .components-calendar__day-button,.components-calendar__range-end:not(.components-calendar__range-start) .components-calendar__day-button:before{border-end-start-radius:0;border-start-start-radius:0}.components-calendar__day--preview svg{color:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 16%,#0000);inset:0;pointer-events:none;position:absolute}@media (forced-colors:active){.components-calendar__day--preview svg{color:inherit}}.components-calendar[dir=rtl] .components-calendar__day--preview svg{transform:scaleX(-1)}.components-calendar__day--preview.components-calendar__range-middle .components-calendar__day-button:before{border:none}@keyframes slide-in-left{0%{transform:translateX(-100%)}to{transform:translateX(0)}}@keyframes slide-in-right{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes slide-out-left{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes slide-out-right{0%{transform:translateX(0)}to{transform:translateX(100%)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.components-calendar__caption-after-enter,.components-calendar__caption-after-exit,.components-calendar__caption-before-enter,.components-calendar__caption-before-exit,.components-calendar__weeks-after-enter,.components-calendar__weeks-after-exit,.components-calendar__weeks-before-enter,.components-calendar__weeks-before-exit{animation-duration:0s;animation-fill-mode:forwards;animation-timing-function:cubic-bezier(.4,0,.2,1)}@media not (prefers-reduced-motion){.components-calendar__caption-after-enter,.components-calendar__caption-after-exit,.components-calendar__caption-before-enter,.components-calendar__caption-before-exit,.components-calendar__weeks-after-enter,.components-calendar__weeks-after-exit,.components-calendar__weeks-before-enter,.components-calendar__weeks-before-exit{animation-duration:.3s}}.components-calendar[dir=rtl] .components-calendar__weeks-after-enter,.components-calendar__weeks-before-enter{animation-name:slide-in-left}.components-calendar[dir=rtl] .components-calendar__weeks-after-exit,.components-calendar__weeks-before-exit{animation-name:slide-out-left}.components-calendar[dir=rtl] .components-calendar__weeks-before-enter,.components-calendar__weeks-after-enter{animation-name:slide-in-right}.components-calendar[dir=rtl] .components-calendar__weeks-before-exit,.components-calendar__weeks-after-exit{animation-name:slide-out-right}.components-calendar__caption-after-enter{animation-name:fade-in}.components-calendar__caption-after-exit{animation-name:fade-out}.components-calendar__caption-before-enter{animation-name:fade-in}.components-calendar__caption-before-exit{animation-name:fade-out}.components-checkbox-control{--checkbox-input-size:24px}@media (min-width:600px){.components-checkbox-control{--checkbox-input-size:16px}}.components-checkbox-control{--checkbox-input-margin:8px}.components-checkbox-control__label{cursor:pointer;line-height:var(--checkbox-input-size)}.components-checkbox-control__input[type=checkbox]{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;margin-right:12px;padding:6px 8px;transition:none}@media not (prefers-reduced-motion){.components-checkbox-control__input[type=checkbox]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{font-size:13px;line-height:normal}}.components-checkbox-control__input[type=checkbox]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]::-moz-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{color:#fff;margin:-3px -5px}@media (min-width:782px){.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-4px 0 0 -5px}}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{content:"\f460";display:inline-block;float:left;font:normal 30px/1 dashicons;vertical-align:middle;width:16px;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:782px){.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{float:none;font-size:21px}}.components-checkbox-control__input[type=checkbox]:disabled,.components-checkbox-control__input[type=checkbox][aria-disabled=true]{background:#f0f0f0;border-color:#ddd;cursor:default;opacity:1}.components-checkbox-control__input[type=checkbox]{appearance:none;background:#fff;clear:none;color:#1e1e1e;cursor:pointer;display:inline-block;height:var(--checkbox-input-size);line-height:0;margin:0 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:top;width:var(--checkbox-input-size)}@media not (prefers-reduced-motion){.components-checkbox-control__input[type=checkbox]{transition:border-color .1s ease-in-out}}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);outline:2px solid #0000;outline-offset:2px}.components-checkbox-control__input[type=checkbox]:checked,.components-checkbox-control__input[type=checkbox]:indeterminate{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-checkbox-control__input[type=checkbox]:checked::-ms-check,.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before{content:none}.components-checkbox-control__input-container{aspect-ratio:1;display:inline-block;flex-shrink:0;line-height:1;margin-right:var(--checkbox-input-margin);position:relative;vertical-align:middle;width:var(--checkbox-input-size)}svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{--checkmark-size:var(--checkbox-input-size);fill:#fff;cursor:pointer;height:var(--checkmark-size);left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);-webkit-user-select:none;user-select:none;width:var(--checkmark-size)}@media (min-width:600px){svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{--checkmark-size:calc(var(--checkbox-input-size) + 4px)}}.components-checkbox-control__help{display:inline-block;margin-inline-start:calc(var(--checkbox-input-size) + var(--checkbox-input-margin))}.components-circular-option-picker{display:inline-block;min-width:188px;width:100%}.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper{display:flex;justify-content:flex-end;margin-top:12px}.components-circular-option-picker .components-circular-option-picker__swatches{display:flex;flex-wrap:wrap;gap:12px;position:relative;z-index:1}.components-circular-option-picker>:not(.components-circular-option-picker__swatches){position:relative;z-index:0}.components-circular-option-picker__option-wrapper{display:inline-block;height:28px;transform:scale(1);vertical-align:top;width:28px}@media not (prefers-reduced-motion){.components-circular-option-picker__option-wrapper{transition:transform .1s ease;will-change:transform}}.components-circular-option-picker__option-wrapper:hover{transform:scale(1.2)}.components-circular-option-picker__option-wrapper>div{height:100%;width:100%}.components-circular-option-picker__option-wrapper:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none'%3E%3Cpath fill='%23555d65' d='M6 8V6H4v2zm2 0V6h2v2zm2 8H8v-2h2zm2 0v-2h2v2zm0 2v-2h-2v2H8v2h2v-2zm2 0v2h-2v-2zm2 0h-2v-2h2z'/%3E%3Cpath fill='%23555d65' fill-rule='evenodd' d='M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2zm-2-4v-2h2v2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555d65' d='M18 18v2h-2v-2z'/%3E%3Cpath fill='%23555d65' fill-rule='evenodd' d='M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2zm0 2v-2H6v2zm2 0v-2h2v2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555d65' fill-rule='evenodd' d='M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4zm0 4V2H2v2zm2 0V2h2v2zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2z' clip-rule='evenodd'/%3E%3C/svg%3E");border-radius:50%;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.components-circular-option-picker__option{aspect-ratio:1;background:#0000;border:none;border-radius:50%;box-shadow:inset 0 0 0 14px;display:inline-block;height:100%!important;vertical-align:top}@media not (prefers-reduced-motion){.components-circular-option-picker__option{transition:box-shadow .1s ease}}.components-circular-option-picker__option{cursor:pointer}.components-circular-option-picker__option:hover{box-shadow:inset 0 0 0 14px!important}.components-circular-option-picker__option[aria-pressed=true],.components-circular-option-picker__option[aria-selected=true]{box-shadow:inset 0 0 0 4px;overflow:visible;position:relative;z-index:1}.components-circular-option-picker__option[aria-pressed=true]+svg,.components-circular-option-picker__option[aria-selected=true]+svg{border-radius:50%;left:2px;pointer-events:none;position:absolute;top:2px;z-index:2}.components-circular-option-picker__option:after{border:1px solid #0000;border-radius:50%;bottom:-1px;box-shadow:inset 0 0 0 1px #0003;box-sizing:inherit;content:"";left:-1px;position:absolute;right:-1px;top:-1px}.components-circular-option-picker__option:focus:after{border:2px solid #757575;border-radius:50%;box-shadow:inset 0 0 0 2px #fff;content:"";height:calc(100% + 4px);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:calc(100% + 4px)}.components-circular-option-picker__option.components-button:focus{background-color:initial;box-shadow:inset 0 0 0 14px;outline:none}.components-circular-option-picker__button-action .components-circular-option-picker__option{background:#fff;color:#fff}.components-circular-option-picker__dropdown-link-action{margin-right:16px}.components-circular-option-picker__dropdown-link-action .components-button{line-height:22px}.components-palette-edit__popover-gradient-picker{padding:8px;width:260px}.components-dropdown-menu__menu .components-palette-edit__menu-button{width:100%}.component-color-indicator{background:#fff linear-gradient(-45deg,#0000 48%,#ddd 0,#ddd 52%,#0000 0);border-radius:50%;box-shadow:inset 0 0 0 1px #0003;display:inline-block;height:20px;padding:0;width:20px}.components-combobox-control{width:100%}input.components-combobox-control__input[type=text]{background:var(--wp-components-color-background,#fff);border:none;box-shadow:none;color:var(--wp-components-color-foreground,#1e1e1e);font-family:inherit;font-size:16px;line-height:inherit;margin:0;min-height:auto;padding:2px;width:100%}@media (min-width:600px){input.components-combobox-control__input[type=text]{font-size:13px}}input.components-combobox-control__input[type=text]:focus{box-shadow:none;outline:none}.components-combobox-control__suggestions-container{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:6px 8px}@media not (prefers-reduced-motion){.components-combobox-control__suggestions-container{transition:box-shadow .1s linear}}@media (min-width:600px){.components-combobox-control__suggestions-container{font-size:13px;line-height:normal}}.components-combobox-control__suggestions-container:focus{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-combobox-control__suggestions-container::-webkit-input-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container::-moz-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container:-ms-input-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container{align-items:flex-start;display:flex;flex-wrap:wrap;padding:0;width:100%}.components-combobox-control__suggestions-container:focus-within{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-combobox-control__suggestions-container .components-spinner{margin:0}.components-color-palette__custom-color-wrapper{position:relative;z-index:0}.components-color-palette__custom-color-button{background:none;border:none;border-radius:4px 4px 0 0;box-shadow:inset 0 0 0 1px #0003;box-sizing:border-box;cursor:pointer;height:64px;outline:1px solid #0000;position:relative;width:100%}.components-color-palette__custom-color-button:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline-width:2px}.components-color-palette__custom-color-button:after{background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,24px 24px;background-size:48px 48px;border-radius:3px 3px 0 0;content:"";inset:1px;position:absolute;z-index:-1}.components-color-palette__custom-color-text-wrapper{border-radius:0 0 4px 4px;box-shadow:inset 0 -1px 0 0 #0003,inset 1px 0 0 0 #0003,inset -1px 0 0 0 #0003;font-size:13px;padding:12px 16px;position:relative}.components-color-palette__custom-color-name{color:var(--wp-components-color-foreground,#1e1e1e);margin:0 1px}.components-color-palette__custom-color-value{color:#757575}.components-color-palette__custom-color-value--is-hex{text-transform:uppercase}.components-color-palette__custom-color-value:empty:after{content:"​";visibility:hidden}.components-custom-gradient-picker__gradient-bar{border-radius:2px;height:48px;position:relative;width:100%;z-index:1}.components-custom-gradient-picker__gradient-bar.has-gradient{background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,12px 12px;background-size:24px 24px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__gradient-bar-background{inset:0;position:absolute}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container{margin-left:auto;margin-right:auto;position:relative;width:calc(100% - 48px)}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-dropdown{display:flex;height:16px;position:absolute;top:16px;width:16px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown{background:#fff;border-radius:50%;color:#1e1e1e;height:inherit;min-width:16px!important;padding:2px;position:relative;width:inherit}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown svg{height:100%;width:100%}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button{border-radius:50%;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 2px 0 #00000040;height:inherit;outline:2px solid #0000;padding:0;width:inherit}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus{box-shadow:inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff,0 0 2px 0 #00000040;outline:1.5px solid #0000}.components-custom-gradient-picker__remove-control-point-wrapper{padding-bottom:8px}.components-custom-gradient-picker__inserter{direction:ltr}.components-custom-gradient-picker__liner-gradient-indicator{display:inline-block;flex:0 auto;height:20px;width:20px}.components-custom-gradient-picker__ui-line{position:relative;z-index:0}body.is-dragging-components-draggable{cursor:move;cursor:grabbing!important}.components-draggable__invisible-drag-image{height:50px;left:-1000px;position:fixed;width:50px}.components-draggable__clone{background:#0000;padding:0;pointer-events:none;position:fixed;z-index:1000000000}.components-drop-zone{border-radius:2px;bottom:0;left:0;opacity:0;position:absolute;right:0;top:0;visibility:hidden;z-index:40}.components-drop-zone.is-active{opacity:1;visibility:visible}.components-drop-zone .components-drop-zone__content{align-items:center;background-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));bottom:0;color:#fff;display:flex;height:100%;justify-content:center;left:0;opacity:0;pointer-events:none;position:absolute;right:0;text-align:center;top:0;width:100%;z-index:50}.components-drop-zone .components-drop-zone__content-inner{opacity:0;transform:scale(.9)}.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content{opacity:1}@media not (prefers-reduced-motion){.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content{transition:opacity .2s ease-in-out}}.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner{opacity:1;transform:scale(1)}@media not (prefers-reduced-motion){.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner{transition:opacity .1s ease-in-out .1s,transform .1s ease-in-out .1s}}.components-drop-zone__content-icon,.components-drop-zone__content-text{display:block}.components-drop-zone__content-icon{line-height:0;margin:0 auto 8px;fill:currentColor;pointer-events:none}.components-drop-zone__content-text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-dropdown{display:inline-block}.components-dropdown__content .components-popover__content{padding:8px}.components-dropdown__content .components-popover__content:has(.components-menu-group){padding:0}.components-dropdown__content .components-popover__content:has(.components-menu-group) .components-dropdown-menu__menu>.components-menu-item__button,.components-dropdown__content .components-popover__content:has(.components-menu-group)>.components-menu-item__button{margin:8px;width:auto}.components-dropdown__content [role=menuitem]{white-space:nowrap}.components-dropdown__content .components-menu-group{padding:8px}.components-dropdown__content .components-menu-group+.components-menu-group{border-top:1px solid #ccc;padding:8px}.components-dropdown__content.is-alternate .components-menu-group+.components-menu-group{border-color:#1e1e1e}.components-dropdown-menu__toggle{vertical-align:top}.components-dropdown-menu__menu{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:100%}.components-dropdown-menu__menu .components-dropdown-menu__menu-item,.components-dropdown-menu__menu .components-menu-item{cursor:pointer;outline:none;padding:6px;white-space:nowrap;width:100%}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,.components-dropdown-menu__menu .components-menu-item.has-separator{margin-top:6px;overflow:visible;position:relative}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,.components-dropdown-menu__menu .components-menu-item.has-separator:before{background-color:#ddd;box-sizing:initial;content:"";display:block;height:1px;left:0;position:absolute;right:0;top:-3px}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active .dashicon,.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,.components-dropdown-menu__menu .components-menu-item.is-active .dashicon,.components-dropdown-menu__menu .components-menu-item.is-active svg{background:#1e1e1e;border-radius:1px;box-shadow:0 0 0 1px #1e1e1e;color:#fff}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,.components-dropdown-menu__menu .components-menu-item.is-icon-only{width:auto}.components-dropdown-menu__menu .components-menu-item__button,.components-dropdown-menu__menu .components-menu-item__button.components-button{height:auto;min-height:40px;padding-left:8px;padding-right:8px;text-align:left}.components-duotone-picker__color-indicator:before{background:#0000}.components-duotone-picker__color-indicator>.components-button,.components-duotone-picker__color-indicator>.components-button.is-pressed:hover:not(:disabled){background:linear-gradient(-45deg,#0000 48%,#ddd 0,#ddd 52%,#0000 0);color:#0000}.components-duotone-picker__color-indicator>.components-button:hover:not(:disabled):not([aria-disabled=true]),.components-duotone-picker__color-indicator>.components-button:not([aria-disabled=true]):active{color:#0000}.components-color-list-picker,.components-color-list-picker__swatch-button{width:100%}.components-color-list-picker__color-picker{margin:8px 0}.components-color-list-picker__swatch-color{margin:2px}.components-external-link{text-decoration:none}.components-external-link__contents{text-decoration:underline}.components-external-link__icon{font-weight:400;margin-left:.5ch}.components-form-toggle{display:inline-block;height:16px;position:relative}.components-form-toggle .components-form-toggle__track{background-color:#fff;border:1px solid #949494;border-radius:8px;box-sizing:border-box;content:"";display:inline-block;height:16px;position:relative;vertical-align:top;width:32px}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__track{transition:background-color .2s ease,border-color .2s ease}}.components-form-toggle .components-form-toggle__track{overflow:hidden}.components-form-toggle .components-form-toggle__track:after{border-top:16px solid #0000;box-sizing:border-box;content:"";inset:0;position:absolute}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__track:after{transition:opacity .2s ease}}.components-form-toggle .components-form-toggle__track:after{opacity:0}.components-form-toggle .components-form-toggle__thumb{border-radius:50%;box-sizing:border-box;display:block;height:12px;left:2px;position:absolute;top:2px;width:12px}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__thumb{transition:transform .2s ease,background-color .2s ease-out}}.components-form-toggle .components-form-toggle__thumb{background-color:#1e1e1e;border:6px solid #0000;box-shadow:0 1px 1px #00000008,0 1px 2px #00000005,0 3px 3px #00000005,0 4px 4px #00000003}.components-form-toggle.is-checked .components-form-toggle__track{background-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-form-toggle.is-checked .components-form-toggle__track:after{opacity:1}.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:2px}.components-form-toggle.is-checked .components-form-toggle__thumb{background-color:#fff;border-width:0;transform:translateX(16px)}.components-disabled .components-form-toggle,.components-form-toggle.is-disabled{opacity:.3}.components-form-toggle input.components-form-toggle__input[type=checkbox]{border:none;height:100%;left:0;margin:0;opacity:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked{background:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:before{content:""}.components-form-toggle input.components-form-toggle__input[type=checkbox]:not(:disabled,[aria-disabled=true]){cursor:pointer}.components-form-token-field__input-container{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:6px 8px}@media not (prefers-reduced-motion){.components-form-token-field__input-container{transition:box-shadow .1s linear}}@media (min-width:600px){.components-form-token-field__input-container{font-size:13px;line-height:normal}}.components-form-token-field__input-container:focus{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-form-token-field__input-container::-webkit-input-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container::-moz-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container:-ms-input-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container{cursor:text;padding:0;width:100%}.components-form-token-field__input-container.is-disabled{background:#ddd;border-color:#ddd}.components-form-token-field__input-container.is-active{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-form-token-field__input-container input[type=text].components-form-token-field__input{background:inherit;border:0;box-shadow:none;color:var(--wp-components-color-foreground,#1e1e1e);display:inline-block;flex:1;font-family:inherit;font-size:16px;margin-left:4px;max-width:100%;min-height:24px;min-width:50px;padding:0;width:100%}@media (min-width:600px){.components-form-token-field__input-container input[type=text].components-form-token-field__input{font-size:13px}}.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus{box-shadow:none;outline:none}.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input{width:auto}.components-form-token-field__token{color:#1e1e1e;display:flex;font-size:13px;max-width:100%}.components-form-token-field__token.is-success .components-form-token-field__remove-token,.components-form-token-field__token.is-success .components-form-token-field__token-text{background:#4ab866}.components-form-token-field__token.is-error .components-form-token-field__remove-token,.components-form-token-field__token.is-error .components-form-token-field__token-text{background:#cc1818}.components-form-token-field__token.is-validating .components-form-token-field__remove-token,.components-form-token-field__token.is-validating .components-form-token-field__token-text{color:#757575}.components-form-token-field__token.is-borderless{padding:0 24px 0 0;position:relative}.components-form-token-field__token.is-borderless .components-form-token-field__token-text{background:#0000}.components-form-token-field__token.is-borderless:not(.is-disabled) .components-form-token-field__token-text{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-form-token-field__token.is-borderless .components-form-token-field__remove-token{background:#0000;color:#757575;position:absolute;right:0;top:1px}.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text{color:#4ab866}.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text{color:#cc1818;padding:0 4px 0 6px}.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text{color:#1e1e1e}.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{background:#ddd;display:inline-block;height:auto;min-width:unset}@media not (prefers-reduced-motion){.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{transition:all .2s cubic-bezier(.4,1,.4,1)}}.components-form-token-field__token-text{border-radius:1px 0 0 1px;line-height:24px;overflow:hidden;padding:0 0 0 8px;text-overflow:ellipsis;white-space:nowrap}.components-form-token-field__remove-token.components-button{border-radius:0 1px 1px 0;color:#1e1e1e;line-height:10px;overflow:initial}.components-form-token-field__remove-token.components-button:hover:not(:disabled){color:#1e1e1e}.components-form-token-field__suggestions-list{flex:1 0 100%;max-height:128px;min-width:100%;overflow-y:auto}@media not (prefers-reduced-motion){.components-form-token-field__suggestions-list{transition:all .15s ease-in-out}}.components-form-token-field__suggestions-list{box-shadow:inset 0 1px 0 0 #949494;list-style:none;margin:0;padding:0}.components-form-token-field__suggestion{box-sizing:border-box;color:var(--wp-components-color-foreground,#1e1e1e);display:block;font-size:13px;margin:0;min-height:32px;padding:8px 12px}.components-form-token-field__suggestion.is-selected{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-foreground-inverted,#fff)}.components-form-token-field__suggestion[aria-disabled=true]{color:#949494;pointer-events:none}.components-form-token-field__suggestion[aria-disabled=true].is-selected{background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000)}.components-form-token-field__suggestion:not(.is-empty){cursor:pointer}@media (min-width:600px){.components-guide{width:600px}}.components-guide .components-modal__content{margin-top:0;padding:0}.components-guide .components-modal__content:before{content:none}.components-guide .components-modal__header{border-bottom:none;height:64px;padding:0;position:sticky}.components-guide .components-modal__header .components-button{align-self:flex-start;margin:8px 8px 0 0;position:static}.components-guide .components-modal__header .components-button:hover svg{fill:#fff}.components-guide .components-guide__container{display:flex;flex-direction:column;justify-content:space-between;margin-top:-64px;min-height:100%}.components-guide .components-guide__page{display:flex;flex-direction:column;justify-content:center;position:relative}@media (min-width:600px){.components-guide .components-guide__page{min-height:300px}}.components-guide .components-guide__footer{align-content:center;display:flex;height:36px;justify-content:center;margin:0 0 24px;padding:0 32px;position:relative;width:100%}.components-guide .components-guide__page-control{margin:0;text-align:center}.components-guide .components-guide__page-control li{display:inline-block;margin:0}.components-guide .components-guide__page-control .components-button{color:#e0e0e0;margin:-6px 0}.components-guide .components-guide__page-control li[aria-current=step] .components-button{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-modal__frame.components-guide{border:none;max-height:575px;min-width:312px}@media (max-width:600px){.components-modal__frame.components-guide{margin:auto;max-width:calc(100vw - 32px)}}.components-button.components-guide__back-button,.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{position:absolute}.components-button.components-guide__back-button{left:32px}.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{right:32px}[role=region]{position:relative}.is-focusing-regions [role=region]:focus:after,[role=region].interface-interface-skeleton__content:focus-visible:after{bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0;z-index:1000000}.is-focusing-regions .editor-post-publish-panel,.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel,.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-publish-panel,.is-focusing-regions .interface-interface-skeleton__sidebar .editor-layout__toggle-sidebar-panel,.is-focusing-regions [role=region]:focus:after,.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header,[role=region].interface-interface-skeleton__content:focus-visible:after{outline-color:var(--wp-admin-theme-color);outline-offset:calc(var(--wp-admin-border-width-focus)*-2/var(--wp-block-editor-iframe-zoom-out-scale, 1));outline-style:solid;outline-width:calc(var(--wp-admin-border-width-focus)*2/var(--wp-block-editor-iframe-zoom-out-scale, 1))}.components-menu-group+.components-menu-group{border-top:1px solid #1e1e1e;padding-top:8px}.components-menu-group+.components-menu-group.has-hidden-separator{border-top:none;margin-top:0;padding-top:0}.components-menu-group:has(>div:empty){display:none}.components-menu-group__label{color:#757575;font-size:11px;font-weight:500;margin-bottom:12px;margin-top:4px;padding:0 8px;text-transform:uppercase;white-space:nowrap}.components-menu-item__button,.components-menu-item__button.components-button{width:100%}.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child{box-sizing:initial;padding-right:48px}.components-menu-item__button .components-menu-items__item-icon,.components-menu-item__button.components-button .components-menu-items__item-icon{display:inline-block;flex:0 0 auto}.components-menu-item__button .components-menu-items__item-icon.has-icon-right,.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right{margin-left:24px;margin-right:-2px}.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right{margin-left:8px}.components-menu-item__button .block-editor-block-icon,.components-menu-item__button.components-button .block-editor-block-icon{margin-left:-2px;margin-right:8px}.components-menu-item__button.components-button.is-primary,.components-menu-item__button.is-primary{justify-content:center}.components-menu-item__button.components-button.is-primary .components-menu-item__item,.components-menu-item__button.is-primary .components-menu-item__item{margin-right:0}.components-menu-item__button.components-button:disabled.is-tertiary,.components-menu-item__button.components-button[aria-disabled=true].is-tertiary,.components-menu-item__button:disabled.is-tertiary,.components-menu-item__button[aria-disabled=true].is-tertiary{background:none;color:var(--wp-components-color-accent-darker-10,var(--wp-admin-theme-color-darker-10,#2145e6));opacity:.3}.components-menu-item__info-wrapper{display:flex;flex-direction:column;margin-right:auto}.components-menu-item__info{color:#757575;font-size:12px;margin-top:4px;white-space:normal}.components-menu-item__item{align-items:center;display:inline-flex;margin-right:auto;min-width:160px;white-space:nowrap}.components-menu-item__shortcut{align-self:center;color:currentColor;display:none;margin-left:auto;margin-right:0;padding-left:24px}@media (min-width:480px){.components-menu-item__shortcut{display:inline}}.components-menu-items-choice,.components-menu-items-choice.components-button{height:auto;min-height:40px}.components-menu-items-choice svg,.components-menu-items-choice.components-button svg{margin-right:12px}.components-menu-items-choice.components-button.has-icon,.components-menu-items-choice.has-icon{padding-left:12px}.components-modal__screen-overlay{background-color:#00000059;bottom:0;display:flex;left:0;position:fixed;right:0;top:0;z-index:100000}@keyframes __wp-base-styles-fade-in{0%{opacity:0}to{opacity:1}}@media not (prefers-reduced-motion){.components-modal__screen-overlay{animation:__wp-base-styles-fade-in .08s linear 0s;animation-fill-mode:forwards}}@keyframes __wp-base-styles-fade-out{0%{opacity:1}to{opacity:0}}@media not (prefers-reduced-motion){.components-modal__screen-overlay.is-animating-out{animation:__wp-base-styles-fade-out .08s linear 80ms;animation-fill-mode:forwards}}.components-modal__frame{box-sizing:border-box}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}.components-modal__frame{animation-fill-mode:forwards;animation-name:components-modal__appear-animation;animation-timing-function:cubic-bezier(.29,0,0,1);background:#fff;border-radius:8px 8px 0 0;box-shadow:0 5px 15px #00000014,0 15px 27px #00000012,0 30px 36px #0000000a,0 50px 43px #00000005;color:#1e1e1e;display:flex;margin:40px 0 0;overflow:hidden;width:100%}.components-modal__frame h1,.components-modal__frame h2,.components-modal__frame h3{color:#1e1e1e}@media not (prefers-reduced-motion){.components-modal__frame{animation-duration:var(--modal-frame-animation-duration)}}.components-modal__screen-overlay.is-animating-out .components-modal__frame{animation-name:components-modal__disappear-animation;animation-timing-function:cubic-bezier(1,0,.2,1)}@media (min-width:600px){.components-modal__frame{border-radius:8px;margin:auto;max-height:calc(100% - 128px);max-width:calc(100% - 32px);min-width:350px;width:auto}}@media (min-width:600px) and (min-width:600px){.components-modal__frame.is-full-screen{height:calc(100% - 32px);max-height:none;width:calc(100% - 32px)}}@media (min-width:600px) and (min-width:782px){.components-modal__frame.is-full-screen{height:calc(100% - 80px);max-width:none;width:calc(100% - 80px)}}@media (min-width:600px){.components-modal__frame.has-size-large,.components-modal__frame.has-size-medium,.components-modal__frame.has-size-small{width:100%}.components-modal__frame.has-size-small{max-width:384px}.components-modal__frame.has-size-medium{max-width:512px}.components-modal__frame.has-size-large{max-width:840px}}@media (min-width:960px){.components-modal__frame{max-height:70%}}@keyframes components-modal__appear-animation{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes components-modal__disappear-animation{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.components-modal__header{align-items:center;border-bottom:1px solid #0000;box-sizing:border-box;display:flex;flex-direction:row;height:72px;justify-content:space-between;left:0;padding:24px 32px 8px;position:absolute;top:0;width:100%;z-index:10}.components-modal__header .components-modal__header-heading{font-size:1.2rem;font-weight:600}.components-modal__header h1{line-height:1;margin:0}.components-modal__content.has-scrolled-content:not(.hide-header) .components-modal__header{border-bottom-color:#ddd}.components-modal__header+p{margin-top:0}.components-modal__header-heading-container{align-items:center;display:flex;flex-direction:row;flex-grow:1;justify-content:flex-start}.components-modal__header-icon-container{display:inline-block}.components-modal__header-icon-container svg{max-height:36px;max-width:36px;padding:8px}.components-modal__content{flex:1;margin-top:72px;overflow:auto;padding:4px 32px 32px}.components-modal__content.hide-header{margin-top:0;padding-top:32px}.components-modal__content.is-scrollable:focus-visible{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:-2px}.components-notice{align-items:center;background-color:#fff;border-left:4px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:#1e1e1e;display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:8px 12px}.components-notice.is-dismissible{position:relative}.components-notice.is-success{background-color:#eff9f1;border-left-color:#4ab866}.components-notice.is-warning{background-color:#fef8ee;border-left-color:#f0b849}.components-notice.is-error{background-color:#f4a2a2;border-left-color:#cc1818}.components-notice__content{flex-grow:1;margin:4px 25px 4px 0}.components-notice__actions{display:flex;flex-wrap:wrap}.components-notice__action.components-button,.components-notice__action.components-button.is-link{margin-left:12px}.components-notice__action.components-button.is-secondary{vertical-align:initial}.components-notice__action.components-button{margin-right:8px}.components-notice__dismiss{align-self:flex-start;color:#757575;flex-shrink:0}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{background-color:initial;color:#1e1e1e}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{box-shadow:none}.components-notice-list{box-sizing:border-box;max-width:100vw}.components-notice-list .components-notice__content{line-height:2;margin-bottom:12px;margin-top:12px}.components-notice-list .components-notice__action.components-button{display:block;margin-left:0;margin-top:8px}.components-panel{background:#fff;border:1px solid #e0e0e0}.components-panel>.components-panel__body:first-child,.components-panel>.components-panel__header:first-child{margin-top:-1px}.components-panel>.components-panel__body:last-child,.components-panel>.components-panel__header:last-child{border-bottom-width:0}.components-panel+.components-panel{margin-top:-1px}.components-panel__body{border-bottom:1px solid #e0e0e0;border-top:1px solid #e0e0e0}.components-panel__body h3{margin:0 0 .5em}.components-panel__body.is-opened{padding:16px}.components-panel__header{align-items:center;border-bottom:1px solid #ddd;box-sizing:initial;display:flex;flex-shrink:0;height:47px;justify-content:space-between;padding:0 16px}.components-panel__header h2{color:inherit;font-size:inherit;margin:0}.components-panel__body+.components-panel__body,.components-panel__body+.components-panel__header,.components-panel__header+.components-panel__body,.components-panel__header+.components-panel__header{margin-top:-1px}.components-panel__body>.components-panel__body-title{display:block;font-size:inherit;margin-bottom:0;margin-top:0;padding:0}@media not (prefers-reduced-motion){.components-panel__body>.components-panel__body-title{transition:background .1s ease-in-out}}.components-panel__body.is-opened>.components-panel__body-title{margin:-16px -16px 5px}.components-panel__body>.components-panel__body-title:hover{background:#f0f0f0;border:none}.components-panel__body-toggle.components-button{border:none;box-shadow:none;color:#1e1e1e;font-weight:500;outline:none;padding:16px 48px 16px 16px;position:relative;text-align:left;width:100%}@media not (prefers-reduced-motion){.components-panel__body-toggle.components-button{transition:background .1s ease-in-out}}.components-panel__body-toggle.components-button{height:auto}.components-panel__body-toggle.components-button:focus{border-radius:0;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-panel__body-toggle.components-button .components-panel__arrow{color:#1e1e1e;position:absolute;right:16px;top:50%;transform:translateY(-50%);fill:currentColor}@media not (prefers-reduced-motion){.components-panel__body-toggle.components-button .components-panel__arrow{transition:color .1s ease-in-out}}body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right{-ms-filter:fliph;filter:FlipH;margin-top:-10px;transform:scaleX(-1)}.components-panel__icon{color:#757575;margin:-2px 0 -2px 6px}.components-panel__body-toggle-icon{margin-right:-5px}.components-panel__color-title{float:left;height:19px}.components-panel__row{align-items:center;display:flex;justify-content:space-between;margin-top:8px;min-height:36px}.components-panel__row select{min-width:0}.components-panel__row label{flex-shrink:0;margin-right:12px;max-width:75%}.components-panel__row:empty,.components-panel__row:first-of-type{margin-top:0}.components-panel .circle-picker{padding-bottom:20px}.components-placeholder.components-placeholder{align-items:flex-start;box-sizing:border-box;color:#1e1e1e;display:flex;flex-direction:column;font-size:13px;gap:16px;margin:0;padding:24px;position:relative;text-align:left;width:100%;-moz-font-smoothing:subpixel-antialiased;-webkit-font-smoothing:subpixel-antialiased;background-color:#fff;border-radius:2px;box-shadow:inset 0 0 0 1px #1e1e1e;outline:1px solid #0000}.components-placeholder__error,.components-placeholder__fieldset,.components-placeholder__instructions,.components-placeholder__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:400;letter-spacing:normal;line-height:normal;text-transform:none}.components-placeholder__label{align-items:center;display:flex;font-weight:600}.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{margin-right:4px;fill:currentColor}@media (forced-colors:active){.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:CanvasText}}.components-placeholder__label:empty{display:none}.components-placeholder__fieldset,.components-placeholder__fieldset form{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:flex-start;width:100%}.components-placeholder__fieldset form p,.components-placeholder__fieldset p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__fieldset.is-column-layout,.components-placeholder__fieldset.is-column-layout form{flex-direction:column}.components-placeholder__input[type=url]{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:6px 8px}@media not (prefers-reduced-motion){.components-placeholder__input[type=url]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-placeholder__input[type=url]{font-size:13px;line-height:normal}}.components-placeholder__input[type=url]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-placeholder__input[type=url]::-webkit-input-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]::-moz-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]:-ms-input-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]{flex:1 1 auto}.components-placeholder__error{gap:8px;width:100%}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link{margin-left:10px;margin-right:10px}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child{margin-right:0}.components-placeholder.is-medium .components-placeholder__instructions,.components-placeholder.is-small .components-placeholder__instructions{display:none}.components-placeholder.is-medium .components-placeholder__fieldset,.components-placeholder.is-medium .components-placeholder__fieldset form,.components-placeholder.is-small .components-placeholder__fieldset,.components-placeholder.is-small .components-placeholder__fieldset form{flex-direction:column}.components-placeholder.is-medium .components-button,.components-placeholder.is-medium .components-placeholder__fieldset>*,.components-placeholder.is-small .components-button,.components-placeholder.is-small .components-placeholder__fieldset>*{justify-content:center;width:100%}.components-placeholder.is-small{padding:16px}.components-placeholder.has-illustration{backdrop-filter:blur(100px);backface-visibility:hidden;background-color:initial;border-radius:0;box-shadow:none;color:inherit;display:flex}.is-dark-theme .components-placeholder.has-illustration{background-color:#0000001a}.components-placeholder.has-illustration .components-placeholder__fieldset{margin-left:0;margin-right:0}.components-placeholder.has-illustration .components-button,.components-placeholder.has-illustration .components-placeholder__instructions,.components-placeholder.has-illustration .components-placeholder__label{opacity:0;pointer-events:none}@media not (prefers-reduced-motion){.components-placeholder.has-illustration .components-button,.components-placeholder.has-illustration .components-placeholder__instructions,.components-placeholder.has-illustration .components-placeholder__label{transition:opacity .1s linear}}.is-selected>.components-placeholder.has-illustration .components-button,.is-selected>.components-placeholder.has-illustration .components-placeholder__instructions,.is-selected>.components-placeholder.has-illustration .components-placeholder__label{opacity:1;pointer-events:auto}.components-placeholder.has-illustration:before{background:currentColor;bottom:0;content:"";left:0;opacity:.1;pointer-events:none;position:absolute;right:0;top:0}.components-placeholder.has-illustration{overflow:hidden}.is-selected .components-placeholder.has-illustration{overflow:auto}.components-placeholder__preview{display:flex;justify-content:center}.components-placeholder__illustration{box-sizing:initial;height:100%;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%;stroke:currentColor;opacity:.25}.components-popover{box-sizing:border-box}.components-popover *,.components-popover :after,.components-popover :before{box-sizing:inherit}.components-popover{will-change:transform;z-index:1000000}.components-popover.is-expanded{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1000000!important}.components-popover__content{background:#fff;border-radius:4px;box-shadow:0 0 0 1px #ccc,0 2px 3px #0000000d,0 4px 5px #0000000a,0 12px 12px #00000008,0 16px 16px #00000005;box-sizing:border-box;width:min-content}.is-alternate .components-popover__content{border-radius:2px;box-shadow:0 0 0 1px #1e1e1e}.is-unstyled .components-popover__content{background:none;border-radius:0;box-shadow:none}.components-popover.is-expanded .components-popover__content{box-shadow:0 -1px 0 0 #ccc;height:calc(100% - 48px);overflow-y:visible;position:static;width:auto}.components-popover.is-expanded.is-alternate .components-popover__content{box-shadow:0 -1px 0 #1e1e1e}.components-popover__header{align-items:center;background:#fff;display:flex;height:48px;justify-content:space-between;padding:0 8px 0 16px}.components-popover__header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.components-popover__close.components-button{z-index:5}.components-popover__arrow{display:flex;height:14px;pointer-events:none;position:absolute;width:14px}.components-popover__arrow:before{background-color:#fff;content:"";height:2px;left:1px;position:absolute;right:1px;top:-1px}.components-popover__arrow.is-top{bottom:-14px!important;transform:rotate(0)}.components-popover__arrow.is-right{left:-14px!important;transform:rotate(90deg)}.components-popover__arrow.is-bottom{top:-14px!important;transform:rotate(180deg)}.components-popover__arrow.is-left{right:-14px!important;transform:rotate(-90deg)}.components-popover__triangle{display:block;flex:1}.components-popover__triangle-bg{fill:#fff}.components-popover__triangle-border{fill:#0000;stroke-width:1px;stroke:#ccc}.is-alternate .components-popover__triangle-border{stroke:#1e1e1e}.components-radio-control{border:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0;padding:0}.components-radio-control__group-wrapper.has-help{margin-block-end:12px}.components-radio-control__option{align-items:center;column-gap:8px;display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto minmax(0,max-content)}.components-radio-control__input[type=radio]{border:1px solid #1e1e1e;border-radius:50%;grid-column:1;grid-row:1;height:24px;margin-right:12px;max-width:24px;min-width:24px;position:relative;transition:none;width:24px}@media not (prefers-reduced-motion){.components-radio-control__input[type=radio]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-radio-control__input[type=radio]{height:16px;max-width:16px;min-width:16px;width:16px}}.components-radio-control__input[type=radio]:checked:before{background-color:#fff;border:4px solid #fff;box-sizing:inherit;height:12px;left:50%;margin:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:12px}@media (min-width:600px){.components-radio-control__input[type=radio]:checked:before{height:8px;width:8px}}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color)}.components-radio-control__input[type=radio]:checked{background:var(--wp-admin-theme-color);border:none}.components-radio-control__input[type=radio]{appearance:none;cursor:pointer;display:inline-flex;margin:0;padding:0}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);outline:2px solid #0000;outline-offset:2px}.components-radio-control__input[type=radio]:checked{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-radio-control__input[type=radio]:checked:before{border-radius:50%;content:""}.components-radio-control__label{cursor:pointer;grid-column:2;grid-row:1;line-height:24px}@media (min-width:600px){.components-radio-control__label{line-height:16px}}.components-radio-control__option-description{grid-column:2;grid-row:2;padding-block-start:4px}.components-radio-control__option-description.components-radio-control__option-description{margin-top:0}.components-resizable-box__handle{display:none;height:23px;width:23px;z-index:2}.components-resizable-box__container.has-show-handle .components-resizable-box__handle{display:block}.components-resizable-box__handle>div{height:100%;outline:none;position:relative;width:100%;z-index:2}.components-resizable-box__container>img{width:inherit}.components-resizable-box__handle:after{background:#fff;border-radius:50%;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)),0 1px 1px #00000008,0 1px 2px #00000005,0 3px 3px #00000005,0 4px 4px #00000003;content:"";cursor:inherit;display:block;height:15px;outline:2px solid #0000;position:absolute;right:calc(50% - 8px);top:calc(50% - 8px);width:15px}.components-resizable-box__side-handle:before{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-radius:9999px;content:"";cursor:inherit;display:block;height:3px;position:absolute;right:calc(50% - 1px);top:calc(50% - 1px);width:3px}@media not (prefers-reduced-motion){.components-resizable-box__side-handle:before{transition:transform .1s ease-in;will-change:transform}}.components-resizable-box__side-handle:before{opacity:0}.components-resizable-box__corner-handle,.components-resizable-box__side-handle{z-index:2}.components-resizable-box__side-handle.components-resizable-box__handle-bottom,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,.components-resizable-box__side-handle.components-resizable-box__handle-top,.components-resizable-box__side-handle.components-resizable-box__handle-top:before{border-left:0;border-right:0;left:0;width:100%}.components-resizable-box__side-handle.components-resizable-box__handle-left,.components-resizable-box__side-handle.components-resizable-box__handle-left:before,.components-resizable-box__side-handle.components-resizable-box__handle-right,.components-resizable-box__side-handle.components-resizable-box__handle-right:before{border-bottom:0;border-top:0;height:100%;top:0}@media not (prefers-reduced-motion){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:components-resizable-box__top-bottom-animation .1s ease-out 0s;animation-fill-mode:forwards}.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation:components-resizable-box__left-right-animation .1s ease-out 0s;animation-fill-mode:forwards}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:none}}}@keyframes components-resizable-box__top-bottom-animation{0%{opacity:0;transform:scaleX(0)}to{opacity:1;transform:scaleX(1)}}@keyframes components-resizable-box__left-right-animation{0%{opacity:0;transform:scaleY(0)}to{opacity:1;transform:scaleY(1)}}
/* 2 */ /*!rtl:begin:ignore*/.components-resizable-box__handle-right{right:-11.5px}.components-resizable-box__handle-left{left:-11.5px}.components-resizable-box__handle-top{top:-11.5px}.components-resizable-box__handle-bottom{bottom:-11.5px}
/* 3 */
/* 4 */ /*!rtl:end:ignore*/.components-responsive-wrapper{align-items:center;display:flex;justify-content:center;max-width:100%;position:relative}.components-responsive-wrapper__content{display:block;max-width:100%;width:100%}.components-sandbox{overflow:hidden}iframe.components-sandbox{width:100%}body.lockscroll,html.lockscroll{overflow:hidden}.components-select-control__input{outline:0;-webkit-tap-highlight-color:rgba(0,0,0,0)!important}.components-snackbar{backdrop-filter:blur(16px) saturate(180%);background:#000000d9;border-radius:4px;box-shadow:0 1px 2px #0000000d,0 2px 3px #0000000a,0 6px 6px #00000008,0 8px 8px #00000005;box-sizing:border-box;color:#fff;cursor:pointer;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;max-width:600px;padding:12px 20px;pointer-events:auto;width:100%}@media (min-width:600px){.components-snackbar{width:fit-content}}.components-snackbar:focus{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-snackbar.components-snackbar-explicit-dismiss{cursor:default}.components-snackbar .components-snackbar__content-with-icon{padding-left:24px;position:relative}.components-snackbar .components-snackbar__icon{left:-8px;position:absolute;top:-2.9px}.components-snackbar .components-snackbar__dismiss-button{cursor:pointer;margin-left:24px}.components-snackbar__action.components-button,.components-snackbar__action.components-external-link{color:#fff;flex-shrink:0;margin-left:32px}.components-snackbar__action.components-button:focus,.components-snackbar__action.components-external-link:focus{box-shadow:none;outline:1px dotted #fff}.components-snackbar__action.components-button:hover,.components-snackbar__action.components-external-link:hover{color:currentColor;text-decoration:none}.components-snackbar__content{align-items:baseline;display:flex;justify-content:space-between;line-height:1.4}.components-snackbar-list{box-sizing:border-box;pointer-events:none;position:absolute;width:100%;z-index:100000}.components-snackbar-list__notice-container{padding-top:8px;position:relative}.components-tab-panel__tabs{align-items:stretch;display:flex;flex-direction:row}.components-tab-panel__tabs[aria-orientation=vertical]{flex-direction:column}.components-tab-panel__tabs-item{background:#0000;border:none;border-radius:0;box-shadow:none;cursor:pointer;font-weight:500;height:48px!important;margin-left:0;padding:3px 16px;position:relative}.components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:none;outline:none;position:relative}.components-tab-panel__tabs-item:after{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-radius:0;bottom:0;content:"";height:calc(var(--wp-admin-border-width-focus)*0);left:0;pointer-events:none;position:absolute;right:0}@media not (prefers-reduced-motion){.components-tab-panel__tabs-item:after{transition:all .1s linear}}.components-tab-panel__tabs-item.is-active:after{height:calc(var(--wp-admin-border-width-focus)*1);outline:2px solid #0000;outline-offset:-1px}.components-tab-panel__tabs-item:before{border-radius:2px;bottom:12px;box-shadow:0 0 0 0 #0000;content:"";left:12px;pointer-events:none;position:absolute;right:12px;top:12px}@media not (prefers-reduced-motion){.components-tab-panel__tabs-item:before{transition:all .1s linear}}.components-tab-panel__tabs-item:focus-visible:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-tab-panel__tab-content:focus{box-shadow:none;outline:none}.components-tab-panel__tab-content:focus-visible{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:0}.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{background:var(--wp-components-color-background,#fff);border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;color:var(--wp-components-color-foreground,#1e1e1e);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;height:32px;line-height:normal;margin:0;padding:6px 8px;width:100%}@media not (prefers-reduced-motion){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{font-size:13px;line-height:normal}}.components-text-control__input:focus,.components-text-control__input[type=color]:focus,.components-text-control__input[type=date]:focus,.components-text-control__input[type=datetime-local]:focus,.components-text-control__input[type=datetime]:focus,.components-text-control__input[type=email]:focus,.components-text-control__input[type=month]:focus,.components-text-control__input[type=number]:focus,.components-text-control__input[type=password]:focus,.components-text-control__input[type=tel]:focus,.components-text-control__input[type=text]:focus,.components-text-control__input[type=time]:focus,.components-text-control__input[type=url]:focus,.components-text-control__input[type=week]:focus{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-text-control__input::-webkit-input-placeholder,.components-text-control__input[type=color]::-webkit-input-placeholder,.components-text-control__input[type=date]::-webkit-input-placeholder,.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,.components-text-control__input[type=datetime]::-webkit-input-placeholder,.components-text-control__input[type=email]::-webkit-input-placeholder,.components-text-control__input[type=month]::-webkit-input-placeholder,.components-text-control__input[type=number]::-webkit-input-placeholder,.components-text-control__input[type=password]::-webkit-input-placeholder,.components-text-control__input[type=tel]::-webkit-input-placeholder,.components-text-control__input[type=text]::-webkit-input-placeholder,.components-text-control__input[type=time]::-webkit-input-placeholder,.components-text-control__input[type=url]::-webkit-input-placeholder,.components-text-control__input[type=week]::-webkit-input-placeholder{color:#1e1e1e9e}.components-text-control__input::-moz-placeholder,.components-text-control__input[type=color]::-moz-placeholder,.components-text-control__input[type=date]::-moz-placeholder,.components-text-control__input[type=datetime-local]::-moz-placeholder,.components-text-control__input[type=datetime]::-moz-placeholder,.components-text-control__input[type=email]::-moz-placeholder,.components-text-control__input[type=month]::-moz-placeholder,.components-text-control__input[type=number]::-moz-placeholder,.components-text-control__input[type=password]::-moz-placeholder,.components-text-control__input[type=tel]::-moz-placeholder,.components-text-control__input[type=text]::-moz-placeholder,.components-text-control__input[type=time]::-moz-placeholder,.components-text-control__input[type=url]::-moz-placeholder,.components-text-control__input[type=week]::-moz-placeholder{color:#1e1e1e9e}.components-text-control__input:-ms-input-placeholder,.components-text-control__input[type=color]:-ms-input-placeholder,.components-text-control__input[type=date]:-ms-input-placeholder,.components-text-control__input[type=datetime-local]:-ms-input-placeholder,.components-text-control__input[type=datetime]:-ms-input-placeholder,.components-text-control__input[type=email]:-ms-input-placeholder,.components-text-control__input[type=month]:-ms-input-placeholder,.components-text-control__input[type=number]:-ms-input-placeholder,.components-text-control__input[type=password]:-ms-input-placeholder,.components-text-control__input[type=tel]:-ms-input-placeholder,.components-text-control__input[type=text]:-ms-input-placeholder,.components-text-control__input[type=time]:-ms-input-placeholder,.components-text-control__input[type=url]:-ms-input-placeholder,.components-text-control__input[type=week]:-ms-input-placeholder{color:#1e1e1e9e}.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{border-color:var(--wp-components-color-gray-600,#949494)}.components-text-control__input::placeholder,.components-text-control__input[type=color]::placeholder,.components-text-control__input[type=date]::placeholder,.components-text-control__input[type=datetime-local]::placeholder,.components-text-control__input[type=datetime]::placeholder,.components-text-control__input[type=email]::placeholder,.components-text-control__input[type=month]::placeholder,.components-text-control__input[type=number]::placeholder,.components-text-control__input[type=password]::placeholder,.components-text-control__input[type=tel]::placeholder,.components-text-control__input[type=text]::placeholder,.components-text-control__input[type=time]::placeholder,.components-text-control__input[type=url]::placeholder,.components-text-control__input[type=week]::placeholder{color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e),#0000 38%)}.components-text-control__input.is-next-40px-default-size,.components-text-control__input[type=color].is-next-40px-default-size,.components-text-control__input[type=date].is-next-40px-default-size,.components-text-control__input[type=datetime-local].is-next-40px-default-size,.components-text-control__input[type=datetime].is-next-40px-default-size,.components-text-control__input[type=email].is-next-40px-default-size,.components-text-control__input[type=month].is-next-40px-default-size,.components-text-control__input[type=number].is-next-40px-default-size,.components-text-control__input[type=password].is-next-40px-default-size,.components-text-control__input[type=tel].is-next-40px-default-size,.components-text-control__input[type=text].is-next-40px-default-size,.components-text-control__input[type=time].is-next-40px-default-size,.components-text-control__input[type=url].is-next-40px-default-size,.components-text-control__input[type=week].is-next-40px-default-size{height:40px;padding-left:12px;padding-right:12px}.components-text-control__input[type=email],.components-text-control__input[type=url]{direction:ltr}.components-tip{color:#757575;display:flex}.components-tip svg{align-self:center;fill:#f0b849;flex-shrink:0;margin-right:16px}.components-tip p{margin:0}.components-toggle-control__label{line-height:16px}.components-toggle-control__label:not(.is-disabled){cursor:pointer}.components-toggle-control__help{display:inline-block;margin-inline-start:40px}.components-accessible-toolbar{border:1px solid var(--wp-components-color-foreground,#1e1e1e);border-radius:2px;display:inline-flex;flex-shrink:0}.components-accessible-toolbar>.components-toolbar-group:last-child{border-right:none}.components-accessible-toolbar.is-unstyled{border:none}.components-accessible-toolbar.is-unstyled>.components-toolbar-group{border-right:none}.components-accessible-toolbar[aria-orientation=vertical],.components-toolbar[aria-orientation=vertical]{align-items:center;display:flex;flex-direction:column}.components-accessible-toolbar .components-button,.components-toolbar .components-button{height:48px;padding-left:16px;padding-right:16px;position:relative;z-index:1}.components-accessible-toolbar .components-button:focus:not(:disabled),.components-toolbar .components-button:focus:not(:disabled){box-shadow:none;outline:none}.components-accessible-toolbar .components-button:before,.components-toolbar .components-button:before{border-radius:2px;content:"";display:block;height:32px;left:8px;position:absolute;right:8px;z-index:-1}@media not (prefers-reduced-motion){.components-accessible-toolbar .components-button:before,.components-toolbar .components-button:before{animation:components-button__appear-animation .1s ease;animation-fill-mode:forwards}}.components-accessible-toolbar .components-button svg,.components-toolbar .components-button svg{margin-left:auto;margin-right:auto;position:relative}.components-accessible-toolbar .components-button.is-pressed,.components-accessible-toolbar .components-button.is-pressed:hover,.components-toolbar .components-button.is-pressed,.components-toolbar .components-button.is-pressed:hover{background:#0000}.components-accessible-toolbar .components-button.is-pressed:before,.components-toolbar .components-button.is-pressed:before{background:var(--wp-components-color-foreground,#1e1e1e)}.components-accessible-toolbar .components-button:focus:before,.components-toolbar .components-button:focus:before{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid #0000}.components-accessible-toolbar .components-button.has-icon.has-icon,.components-toolbar .components-button.has-icon.has-icon{min-width:48px;padding-left:8px;padding-right:8px}@keyframes components-button__appear-animation{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.components-toolbar__control.components-button{position:relative}.components-toolbar__control.components-button[data-subscript] svg{padding:5px 10px 5px 0}.components-toolbar__control.components-button[data-subscript]:after{bottom:10px;content:attr(data-subscript);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;line-height:12px;position:absolute;right:8px}.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after{color:#fff}.components-toolbar-group{background-color:var(--wp-components-color-background,#fff);border-right:1px solid var(--wp-components-color-foreground,#1e1e1e);display:inline-flex;flex-shrink:0;flex-wrap:wrap;min-height:48px;padding-left:6px;padding-right:6px}.components-toolbar-group .components-toolbar-group.components-toolbar-group{border-width:0;margin:0}.components-toolbar-group{line-height:0}.components-toolbar-group .components-button.components-button,.components-toolbar-group .components-button.has-icon.has-icon{justify-content:center;min-width:36px;padding-left:6px;padding-right:6px}.components-toolbar-group .components-button.components-button svg,.components-toolbar-group .components-button.has-icon.has-icon svg{min-width:24px}.components-toolbar-group .components-button.components-button:before,.components-toolbar-group .components-button.has-icon.has-icon:before{left:2px;right:2px}.components-toolbar{background-color:var(--wp-components-color-background,#fff);border:1px solid var(--wp-components-color-foreground,#1e1e1e);display:inline-flex;flex-shrink:0;flex-wrap:wrap;margin:0;min-height:48px}.components-toolbar .components-toolbar.components-toolbar{border-width:0;margin:0}div.components-toolbar>div{display:flex;margin:0}div.components-toolbar>div+div.has-left-divider{margin-left:6px;overflow:visible;position:relative}div.components-toolbar>div+div.has-left-divider:before{background-color:#ddd;box-sizing:initial;content:"";display:inline-block;height:20px;left:-3px;position:absolute;top:8px;width:1px}.components-tooltip{background:#000;border-radius:2px;box-shadow:0 1px 2px #0000000d,0 2px 3px #0000000a,0 6px 6px #00000008,0 8px 8px #00000005;color:#f0f0f0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:12px;line-height:1.4;padding:4px 8px;text-align:center;z-index:1000002}.components-tooltip__shortcut{margin-left:8px}.components-validated-control:has(:is(input,select):user-invalid) .components-input-control__backdrop{--wp-components-color-accent:#cc1818;border-color:#cc1818}.components-validated-control :is(textarea,input[type=text]):user-invalid{--wp-admin-theme-color:#cc1818;--wp-components-color-accent:#cc1818;border-color:#cc1818}.components-validated-control .components-combobox-control__suggestions-container:has(input:user-invalid):not(:has([aria-expanded=true])){border-color:#cc1818}.components-validated-control__wrapper-with-error-delegate{position:relative}.components-validated-control__wrapper-with-error-delegate:has(select:user-invalid) .components-input-control__backdrop{--wp-components-color-accent:#cc1818;border-color:#cc1818}.components-validated-control__wrapper-with-error-delegate:has(input[type=radio]:invalid){--wp-components-color-accent:#cc1818}.components-validated-control__wrapper-with-error-delegate:has(input:user-invalid) .components-form-token-field__input-container:not(:has([aria-expanded=true])){--wp-components-color-accent:#cc1818;border-color:#cc1818}.components-validated-control__error-delegate{height:100%;opacity:0;pointer-events:none;position:absolute;top:0;width:100%}.components-validated-control__indicator{align-items:flex-start;animation:components-validated-control__indicator-jump .2s cubic-bezier(.68,-.55,.27,1.55);color:var(--wp-components-color-gray-700,#757575);display:flex;font-family:-apple-system,"system-ui",Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.75rem;gap:4px;line-height:16px;margin:8px 0 0}.components-validated-control__indicator.is-invalid{color:#cc1818}.components-validated-control__indicator.is-valid{color:color-mix(in srgb,#000 30%,#4ab866)}.components-validated-control__indicator-icon{flex-shrink:0}.components-validated-control__indicator-spinner{height:12px;margin:2px;width:12px}@keyframes components-validated-control__indicator-jump{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}:root{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33.0384615385,68.7307692308,230.4615384615;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:23.6923076923,58.1538461538,214.3076923077;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}
/* Minify_CSS_UriRewriter::$debugText

*/

/* latest.css */

/* 1 */ #wpadminbar>.godaddy-styles *,.godaddy-styles *{font-family:GD Sherpa,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;line-height:1.4}#wpadminbar>.godaddy-styles .is-bigger,.godaddy-styles .is-bigger{font-size:1.1em!important;font-weight:500!important}#wpadminbar>.godaddy-styles .components-button,#wpadminbar>.godaddy-styles.components-button,.godaddy-styles .components-button,.godaddy-styles.components-button{border:0;border-radius:6px;box-shadow:none;font-size:1em;height:auto;line-height:1;padding:1.25em;transition:background-color,color,.2s ease-in-out}#wpadminbar>.godaddy-styles .components-button:disabled,#wpadminbar>.godaddy-styles.components-button:disabled,.godaddy-styles .components-button:disabled,.godaddy-styles.components-button:disabled{opacity:.5}#wpadminbar>.godaddy-styles .components-button>svg,#wpadminbar>.godaddy-styles.components-button>svg,.godaddy-styles .components-button>svg,.godaddy-styles.components-button>svg{height:24px;margin-left:.2em;position:relative;right:-5px;top:-1px;transform:scale(.75);width:24px}#wpadminbar>.godaddy-styles .components-button.no-padding,#wpadminbar>.godaddy-styles.components-button.no-padding,.godaddy-styles .components-button.no-padding,.godaddy-styles.components-button.no-padding{padding:0}#wpadminbar>.godaddy-styles .components-button.is-big,#wpadminbar>.godaddy-styles.components-button.is-big,.godaddy-styles .components-button.is-big,.godaddy-styles.components-button.is-big{font-size:1.1em;font-weight:600;padding:1.5em}#wpadminbar>.godaddy-styles .components-button.is-primary,#wpadminbar>.godaddy-styles.components-button.is-primary,.godaddy-styles .components-button.is-primary,.godaddy-styles.components-button.is-primary{background-color:#000;box-shadow:none;color:#fff}#wpadminbar>.godaddy-styles .components-button.is-primary:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-primary:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-primary:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-primary:hover:not([disabled]),.godaddy-styles .components-button.is-primary:active:not([disabled]),.godaddy-styles .components-button.is-primary:hover:not([disabled]),.godaddy-styles.components-button.is-primary:active:not([disabled]),.godaddy-styles.components-button.is-primary:hover:not([disabled]){background-color:#00a4a6}#wpadminbar>.godaddy-styles .components-button.is-secondary,#wpadminbar>.godaddy-styles.components-button.is-secondary,.godaddy-styles .components-button.is-secondary,.godaddy-styles.components-button.is-secondary{box-shadow:none;color:#111}#wpadminbar>.godaddy-styles .components-button.is-secondary:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-secondary:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-secondary:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-secondary:hover:not([disabled]),.godaddy-styles .components-button.is-secondary:active:not([disabled]),.godaddy-styles .components-button.is-secondary:hover:not([disabled]),.godaddy-styles.components-button.is-secondary:active:not([disabled]),.godaddy-styles.components-button.is-secondary:hover:not([disabled]){border:0;box-shadow:none;color:#000}#wpadminbar>.godaddy-styles .components-button.is-tertiary,#wpadminbar>.godaddy-styles.components-button.is-tertiary,.godaddy-styles .components-button.is-tertiary,.godaddy-styles.components-button.is-tertiary{border:1px solid #111;color:#111}#wpadminbar>.godaddy-styles .components-button.is-tertiary:hover,#wpadminbar>.godaddy-styles.components-button.is-tertiary:hover,.godaddy-styles .components-button.is-tertiary:hover,.godaddy-styles.components-button.is-tertiary:hover{background-color:#111;box-shadow:none;color:#fff}#wpadminbar>.godaddy-styles .components-button.is-link,#wpadminbar>.godaddy-styles.components-button.is-link,.godaddy-styles .components-button.is-link,.godaddy-styles.components-button.is-link{box-shadow:none;color:#00a4a6;padding:0;text-decoration:none}#wpadminbar>.godaddy-styles .components-button.is-link:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-link:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-link:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-link:hover:not([disabled]),.godaddy-styles .components-button.is-link:active:not([disabled]),.godaddy-styles .components-button.is-link:hover:not([disabled]),.godaddy-styles.components-button.is-link:active:not([disabled]),.godaddy-styles.components-button.is-link:hover:not([disabled]){color:#111;outline:none}#wpadminbar>.godaddy-styles .components-button.has-icon:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.has-icon:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.has-icon:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.has-icon:hover:not([disabled]),.godaddy-styles .components-button.has-icon:active:not([disabled]),.godaddy-styles .components-button.has-icon:hover:not([disabled]),.godaddy-styles.components-button.has-icon:active:not([disabled]),.godaddy-styles.components-button.has-icon:hover:not([disabled]){background-color:transparent;color:#00a4a6}#wpadminbar>.godaddy-styles .components-modal__frame,#wpadminbar>.godaddy-styles.components-modal__frame,.godaddy-styles .components-modal__frame,.godaddy-styles.components-modal__frame{border-radius:1rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content,.godaddy-styles .components-modal__frame .components-modal__content,.godaddy-styles.components-modal__frame .components-modal__content{margin-top:0;padding:4.5rem 4.5rem 4.25rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content:before,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content:before,.godaddy-styles .components-modal__frame .components-modal__content:before,.godaddy-styles.components-modal__frame .components-modal__content:before{margin:0}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content p:last-child,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content p:last-child,.godaddy-styles .components-modal__frame .components-modal__content p:last-child,.godaddy-styles.components-modal__frame .components-modal__content p:last-child{margin-bottom:0}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header{border-bottom:0;font-size:2rem;height:unset;margin-bottom:.75em;padding:0;position:relative}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container{margin-right:8px}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading{font-size:2rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon{font-size:1rem;left:auto;padding:.25em;position:absolute;right:-3.5rem;top:-3.25rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg{margin-left:0;right:0;top:0;transform:scale(1)}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input,.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input{margin-bottom:.5em}#wpadminbar>.godaddy-styles .ux-tag,.godaddy-styles .ux-tag{border-radius:4px;color:#000;font-size:.9em;font-weight:700;letter-spacing:.05625rem;line-height:1.5;padding-block:8px;padding-inline:8px;text-transform:uppercase;white-space:nowrap}#wpadminbar>.godaddy-styles .ux-tag-critical,.godaddy-styles .ux-tag-critical{background-color:#fbb}#wpadminbar>.godaddy-styles .ux-tag-highlight,.godaddy-styles .ux-tag-highlight{background-color:#a6fff8}#wpadminbar>.godaddy-styles .ux-tag-info,.godaddy-styles .ux-tag-info{background-color:#d3c1f7}#wpadminbar>.godaddy-styles .ux-tag-internal,.godaddy-styles .ux-tag-internal{background-color:#fbd9ed}#wpadminbar>.godaddy-styles .ux-tag-neutral,.godaddy-styles .ux-tag-neutral{background-color:#ddeaf8}#wpadminbar>.godaddy-styles .ux-tag-passive,.godaddy-styles .ux-tag-passive{background-color:#f4f8fc}#wpadminbar>.godaddy-styles .ux-tag-success,.godaddy-styles .ux-tag-success{background-color:#9fffb8}#wpadminbar>.godaddy-styles .ux-tag-warning,.godaddy-styles .ux-tag-warning{background-color:#ffeea9}#wpadminbar>.godaddy-styles .components-toggle-control,#wpadminbar>.godaddy-styles.components-toggle-control,.godaddy-styles .components-toggle-control,.godaddy-styles.components-toggle-control{align-items:flex-end;display:flex}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field,#wpadminbar>.godaddy-styles .components-toggle-control__field,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field,#wpadminbar>.godaddy-styles.components-toggle-control__field,.godaddy-styles .components-toggle-control .components-base-control__field,.godaddy-styles .components-toggle-control__field,.godaddy-styles.components-toggle-control .components-base-control__field,.godaddy-styles.components-toggle-control__field{margin:0}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track,.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track{background-color:#f3f6f8}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track{background-color:#00a4a6}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__help,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__help,.godaddy-styles .components-toggle-control .components-base-control__help,.godaddy-styles.components-toggle-control .components-base-control__help{margin:0}
/* 2 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* font-libre-franklin.css */

/* 1   */ /*
/* 2   *| Libre Franklin
/* 3   *| Copyright 2020 The LibreFranklin Project Authors (https://github.com/impallari/Libre-Franklin)
/* 4   *| SIL Open Font License, Version 1.1 (https://opensource.org/licenses/OFL-1.1)
/* 5   *| */
/* 6   */
/* 7   */ /* libre-franklin-vietnamese-300-normal */
/* 8   */ @font-face {
/* 9   */ 	font-family: 'Libre Franklin';
/* 10  */ 	font-style: normal;
/* 11  */ 	font-display: fallback;
/* 12  */ 	font-weight: 300;
/* 13  */ 	src:
/* 14  */ 		url('./libre-franklin/libre-franklin-vietnamese-300-normal.woff2?ver=13') format('woff2'),
/* 15  */ 		url('./libre-franklin/libre-franklin-all-300-normal.woff?ver=13') format('woff');
/* 16  */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 17  */ }
/* 18  */
/* 19  */ /* libre-franklin-latin-ext-300-normal */
/* 20  */ @font-face {
/* 21  */ 	font-family: 'Libre Franklin';
/* 22  */ 	font-style: normal;
/* 23  */ 	font-display: fallback;
/* 24  */ 	font-weight: 300;
/* 25  */ 	src:
/* 26  */ 		url('./libre-franklin/libre-franklin-latin-ext-300-normal.woff2?ver=13') format('woff2'),
/* 27  */ 		url('./libre-franklin/libre-franklin-all-300-normal.woff?ver=13') format('woff');
/* 28  */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 29  */ }
/* 30  */
/* 31  */ /* libre-franklin-latin-300-normal */
/* 32  */ @font-face {
/* 33  */ 	font-family: 'Libre Franklin';
/* 34  */ 	font-style: normal;
/* 35  */ 	font-display: fallback;
/* 36  */ 	font-weight: 300;
/* 37  */ 	src:
/* 38  */ 		url('./libre-franklin/libre-franklin-latin-300-normal.woff2?ver=13') format('woff2'),
/* 39  */ 		url('./libre-franklin/libre-franklin-all-300-normal.woff?ver=13') format('woff');
/* 40  */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 41  */ }
/* 42  */
/* 43  */ /* libre-franklin-vietnamese-300-italic */
/* 44  */ @font-face {
/* 45  */ 	font-family: 'Libre Franklin';
/* 46  */ 	font-style: italic;
/* 47  */ 	font-display: fallback;
/* 48  */ 	font-weight: 300;
/* 49  */ 	src:
/* 50  */ 		url('./libre-franklin/libre-franklin-vietnamese-300-italic.woff2?ver=13') format('woff2'),

/* font-libre-franklin.css */

/* 51  */ 		url('./libre-franklin/libre-franklin-all-300-italic.woff?ver=13') format('woff');
/* 52  */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 53  */ }
/* 54  */
/* 55  */ /* libre-franklin-latin-ext-300-italic */
/* 56  */ @font-face {
/* 57  */ 	font-family: 'Libre Franklin';
/* 58  */ 	font-style: italic;
/* 59  */ 	font-display: fallback;
/* 60  */ 	font-weight: 300;
/* 61  */ 	src:
/* 62  */ 		url('./libre-franklin/libre-franklin-latin-ext-300-italic.woff2?ver=13') format('woff2'),
/* 63  */ 		url('./libre-franklin/libre-franklin-all-300-italic.woff?ver=13') format('woff');
/* 64  */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 65  */ }
/* 66  */
/* 67  */ /* libre-franklin-latin-300-italic */
/* 68  */ @font-face {
/* 69  */ 	font-family: 'Libre Franklin';
/* 70  */ 	font-style: italic;
/* 71  */ 	font-display: fallback;
/* 72  */ 	font-weight: 300;
/* 73  */ 	src:
/* 74  */ 		url('./libre-franklin/libre-franklin-latin-300-italic.woff2?ver=13') format('woff2'),
/* 75  */ 		url('./libre-franklin/libre-franklin-all-300-italic.woff?ver=13') format('woff');
/* 76  */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 77  */ }
/* 78  */
/* 79  */ /* libre-franklin-vietnamese-400-normal */
/* 80  */ @font-face {
/* 81  */ 	font-family: 'Libre Franklin';
/* 82  */ 	font-style: normal;
/* 83  */ 	font-display: fallback;
/* 84  */ 	font-weight: 400;
/* 85  */ 	src:
/* 86  */ 		url('./libre-franklin/libre-franklin-vietnamese-400-normal.woff2?ver=13') format('woff2'),
/* 87  */ 		url('./libre-franklin/libre-franklin-all-400-normal.woff?ver=13') format('woff');
/* 88  */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 89  */ }
/* 90  */
/* 91  */ /* libre-franklin-latin-ext-400-normal */
/* 92  */ @font-face {
/* 93  */ 	font-family: 'Libre Franklin';
/* 94  */ 	font-style: normal;
/* 95  */ 	font-display: fallback;
/* 96  */ 	font-weight: 400;
/* 97  */ 	src:
/* 98  */ 		url('./libre-franklin/libre-franklin-latin-ext-400-normal.woff2?ver=13') format('woff2'),
/* 99  */ 		url('./libre-franklin/libre-franklin-all-400-normal.woff?ver=13') format('woff');
/* 100 */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;

/* font-libre-franklin.css */

/* 101 */ }
/* 102 */
/* 103 */ /* libre-franklin-latin-400-normal */
/* 104 */ @font-face {
/* 105 */ 	font-family: 'Libre Franklin';
/* 106 */ 	font-style: normal;
/* 107 */ 	font-display: fallback;
/* 108 */ 	font-weight: 400;
/* 109 */ 	src:
/* 110 */ 		url('./libre-franklin/libre-franklin-latin-400-normal.woff2?ver=13') format('woff2'),
/* 111 */ 		url('./libre-franklin/libre-franklin-all-400-normal.woff?ver=13') format('woff');
/* 112 */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 113 */ }
/* 114 */
/* 115 */ /* libre-franklin-vietnamese-400-italic */
/* 116 */ @font-face {
/* 117 */ 	font-family: 'Libre Franklin';
/* 118 */ 	font-style: italic;
/* 119 */ 	font-display: fallback;
/* 120 */ 	font-weight: 400;
/* 121 */ 	src:
/* 122 */ 		url('./libre-franklin/libre-franklin-vietnamese-400-italic.woff2?ver=13') format('woff2'),
/* 123 */ 		url('./libre-franklin/libre-franklin-all-400-italic.woff?ver=13') format('woff');
/* 124 */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 125 */ }
/* 126 */
/* 127 */ /* libre-franklin-latin-ext-400-italic */
/* 128 */ @font-face {
/* 129 */ 	font-family: 'Libre Franklin';
/* 130 */ 	font-style: italic;
/* 131 */ 	font-display: fallback;
/* 132 */ 	font-weight: 400;
/* 133 */ 	src:
/* 134 */ 		url('./libre-franklin/libre-franklin-latin-ext-400-italic.woff2?ver=13') format('woff2'),
/* 135 */ 		url('./libre-franklin/libre-franklin-all-400-italic.woff?ver=13') format('woff');
/* 136 */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 137 */ }
/* 138 */
/* 139 */ /* libre-franklin-latin-400-italic */
/* 140 */ @font-face {
/* 141 */ 	font-family: 'Libre Franklin';
/* 142 */ 	font-style: italic;
/* 143 */ 	font-display: fallback;
/* 144 */ 	font-weight: 400;
/* 145 */ 	src:
/* 146 */ 		url('./libre-franklin/libre-franklin-latin-400-italic.woff2?ver=13') format('woff2'),
/* 147 */ 		url('./libre-franklin/libre-franklin-all-400-italic.woff?ver=13') format('woff');
/* 148 */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 149 */ }
/* 150 */

/* font-libre-franklin.css */

/* 151 */ /* libre-franklin-vietnamese-600-normal */
/* 152 */ @font-face {
/* 153 */ 	font-family: 'Libre Franklin';
/* 154 */ 	font-style: normal;
/* 155 */ 	font-display: fallback;
/* 156 */ 	font-weight: 600;
/* 157 */ 	src:
/* 158 */ 		url('./libre-franklin/libre-franklin-vietnamese-600-normal.woff2?ver=13') format('woff2'),
/* 159 */ 		url('./libre-franklin/libre-franklin-all-600-normal.woff?ver=13') format('woff');
/* 160 */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 161 */ }
/* 162 */
/* 163 */ /* libre-franklin-latin-ext-600-normal */
/* 164 */ @font-face {
/* 165 */ 	font-family: 'Libre Franklin';
/* 166 */ 	font-style: normal;
/* 167 */ 	font-display: fallback;
/* 168 */ 	font-weight: 600;
/* 169 */ 	src:
/* 170 */ 		url('./libre-franklin/libre-franklin-latin-ext-600-normal.woff2?ver=13') format('woff2'),
/* 171 */ 		url('./libre-franklin/libre-franklin-all-600-normal.woff?ver=13') format('woff');
/* 172 */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 173 */ }
/* 174 */
/* 175 */ /* libre-franklin-latin-600-normal */
/* 176 */ @font-face {
/* 177 */ 	font-family: 'Libre Franklin';
/* 178 */ 	font-style: normal;
/* 179 */ 	font-display: fallback;
/* 180 */ 	font-weight: 600;
/* 181 */ 	src:
/* 182 */ 		url('./libre-franklin/libre-franklin-latin-600-normal.woff2?ver=13') format('woff2'),
/* 183 */ 		url('./libre-franklin/libre-franklin-all-600-normal.woff?ver=13') format('woff');
/* 184 */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 185 */ }
/* 186 */
/* 187 */ /* libre-franklin-vietnamese-600-italic */
/* 188 */ @font-face {
/* 189 */ 	font-family: 'Libre Franklin';
/* 190 */ 	font-style: italic;
/* 191 */ 	font-display: fallback;
/* 192 */ 	font-weight: 600;
/* 193 */ 	src:
/* 194 */ 		url('./libre-franklin/libre-franklin-vietnamese-600-italic.woff2?ver=13') format('woff2'),
/* 195 */ 		url('./libre-franklin/libre-franklin-all-600-italic.woff?ver=13') format('woff');
/* 196 */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 197 */ }
/* 198 */
/* 199 */ /* libre-franklin-latin-ext-600-italic */
/* 200 */ @font-face {

/* font-libre-franklin.css */

/* 201 */ 	font-family: 'Libre Franklin';
/* 202 */ 	font-style: italic;
/* 203 */ 	font-display: fallback;
/* 204 */ 	font-weight: 600;
/* 205 */ 	src:
/* 206 */ 		url('./libre-franklin/libre-franklin-latin-ext-600-italic.woff2?ver=13') format('woff2'),
/* 207 */ 		url('./libre-franklin/libre-franklin-all-600-italic.woff?ver=13') format('woff');
/* 208 */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 209 */ }
/* 210 */
/* 211 */ /* libre-franklin-latin-600-italic */
/* 212 */ @font-face {
/* 213 */ 	font-family: 'Libre Franklin';
/* 214 */ 	font-style: italic;
/* 215 */ 	font-display: fallback;
/* 216 */ 	font-weight: 600;
/* 217 */ 	src:
/* 218 */ 		url('./libre-franklin/libre-franklin-latin-600-italic.woff2?ver=13') format('woff2'),
/* 219 */ 		url('./libre-franklin/libre-franklin-all-600-italic.woff?ver=13') format('woff');
/* 220 */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 221 */ }
/* 222 */
/* 223 */ /* libre-franklin-vietnamese-800-normal */
/* 224 */ @font-face {
/* 225 */ 	font-family: 'Libre Franklin';
/* 226 */ 	font-style: normal;
/* 227 */ 	font-display: fallback;
/* 228 */ 	font-weight: 800;
/* 229 */ 	src:
/* 230 */ 		url('./libre-franklin/libre-franklin-vietnamese-800-normal.woff2?ver=13') format('woff2'),
/* 231 */ 		url('./libre-franklin/libre-franklin-all-800-normal.woff?ver=13') format('woff');
/* 232 */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 233 */ }
/* 234 */
/* 235 */ /* libre-franklin-latin-ext-800-normal */
/* 236 */ @font-face {
/* 237 */ 	font-family: 'Libre Franklin';
/* 238 */ 	font-style: normal;
/* 239 */ 	font-display: fallback;
/* 240 */ 	font-weight: 800;
/* 241 */ 	src:
/* 242 */ 		url('./libre-franklin/libre-franklin-latin-ext-800-normal.woff2?ver=13') format('woff2'),
/* 243 */ 		url('./libre-franklin/libre-franklin-all-800-normal.woff?ver=13') format('woff');
/* 244 */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 245 */ }
/* 246 */
/* 247 */ /* libre-franklin-latin-800-normal */
/* 248 */ @font-face {
/* 249 */ 	font-family: 'Libre Franklin';
/* 250 */ 	font-style: normal;

/* font-libre-franklin.css */

/* 251 */ 	font-display: fallback;
/* 252 */ 	font-weight: 800;
/* 253 */ 	src:
/* 254 */ 		url('./libre-franklin/libre-franklin-latin-800-normal.woff2?ver=13') format('woff2'),
/* 255 */ 		url('./libre-franklin/libre-franklin-all-800-normal.woff?ver=13') format('woff');
/* 256 */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 257 */ }
/* 258 */
/* 259 */ /* libre-franklin-vietnamese-800-italic */
/* 260 */ @font-face {
/* 261 */ 	font-family: 'Libre Franklin';
/* 262 */ 	font-style: italic;
/* 263 */ 	font-display: fallback;
/* 264 */ 	font-weight: 800;
/* 265 */ 	src:
/* 266 */ 		url('./libre-franklin/libre-franklin-vietnamese-800-italic.woff2?ver=13') format('woff2'),
/* 267 */ 		url('./libre-franklin/libre-franklin-all-800-italic.woff?ver=13') format('woff');
/* 268 */ 	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
/* 269 */ }
/* 270 */
/* 271 */ /* libre-franklin-latin-ext-800-italic */
/* 272 */ @font-face {
/* 273 */ 	font-family: 'Libre Franklin';
/* 274 */ 	font-style: italic;
/* 275 */ 	font-display: fallback;
/* 276 */ 	font-weight: 800;
/* 277 */ 	src:
/* 278 */ 		url('./libre-franklin/libre-franklin-latin-ext-800-italic.woff2?ver=13') format('woff2'),
/* 279 */ 		url('./libre-franklin/libre-franklin-all-800-italic.woff?ver=13') format('woff');
/* 280 */ 	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
/* 281 */ }
/* 282 */
/* 283 */ /* libre-franklin-latin-800-italic */
/* 284 */ @font-face {
/* 285 */ 	font-family: 'Libre Franklin';
/* 286 */ 	font-style: italic;
/* 287 */ 	font-display: fallback;
/* 288 */ 	font-weight: 800;
/* 289 */ 	src:
/* 290 */ 		url('./libre-franklin/libre-franklin-latin-800-italic.woff2?ver=13') format('woff2'),
/* 291 */ 		url('./libre-franklin/libre-franklin-all-800-italic.woff?ver=13') format('woff');
/* 292 */ 	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
/* 293 */ }
/* 294 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1    */ /*
/* 2    *| Theme Name: Twenty Seventeen
/* 3    *| Theme URI: https://wordpress.org/themes/twentyseventeen/
/* 4    *| Author: the WordPress team
/* 5    *| Author URI: https://wordpress.org/
/* 6    *| Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
/* 7    *| Version: 4.0
/* 8    *| Tested up to: 6.9
/* 9    *| Requires at least: 4.7
/* 10   *| Requires PHP: 5.2.4
/* 11   *| License: GNU General Public License v2 or later
/* 12   *| License URI: http://www.gnu.org/licenses/gpl-2.0.html
/* 13   *| Text Domain: twentyseventeen
/* 14   *| Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns
/* 15   *|
/* 16   *| This theme, like WordPress, is licensed under the GPL.
/* 17   *| Use it to make something cool, have fun, and share what you've learned with others.
/* 18   *| */
/* 19   */
/* 20   */ /*--------------------------------------------------------------
/* 21   *| >>> TABLE OF CONTENTS:
/* 22   *| ----------------------------------------------------------------
/* 23   *| 1.0 Normalize
/* 24   *| 2.0 Accessibility
/* 25   *| 3.0 Alignments
/* 26   *| 4.0 Clearings
/* 27   *| 5.0 Typography
/* 28   *| 6.0 Forms
/* 29   *| 7.0 Formatting
/* 30   *| 8.0 Lists
/* 31   *| 9.0 Tables
/* 32   *| 10.0 Links
/* 33   *| 11.0 Featured Image Hover
/* 34   *| 12.0 Navigation
/* 35   *| 13.0 Layout
/* 36   *|    13.1 Header
/* 37   *|    13.2 Front Page
/* 38   *|    13.3 Regular Content
/* 39   *|    13.4 Posts
/* 40   *|    13.5 Pages
/* 41   *|    13.6 Footer
/* 42   *| 14.0 Comments
/* 43   *| 15.0 Widgets
/* 44   *| 16.0 Media
/* 45   *|    16.1 Galleries
/* 46   *| 17.0 Customizer
/* 47   *| 18.0 SVGs Fallbacks
/* 48   *| 19.0 Media Queries
/* 49   *| 20.0 Print
/* 50   *| --------------------------------------------------------------*/

/* style.css */

/* 51   */
/* 52   */ /*--------------------------------------------------------------
/* 53   *| 1.0 Normalize
/* 54   *| Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
/* 55   *| --------------------------------------------------------------*/
/* 56   */
/* 57   */ html {
/* 58   */ 	font-family: sans-serif;
/* 59   */ 	line-height: 1.15;
/* 60   */ 	-ms-text-size-adjust: 100%;
/* 61   */ 	-webkit-text-size-adjust: 100%;
/* 62   */ }
/* 63   */
/* 64   */ body {
/* 65   */ 	margin: 0;
/* 66   */ }
/* 67   */
/* 68   */ article,
/* 69   */ aside,
/* 70   */ footer,
/* 71   */ header,
/* 72   */ nav,
/* 73   */ section {
/* 74   */ 	display: block;
/* 75   */ }
/* 76   */
/* 77   */ h1 {
/* 78   */ 	font-size: 2em;
/* 79   */ 	margin: 0.67em 0;
/* 80   */ }
/* 81   */
/* 82   */ figcaption,
/* 83   */ figure,
/* 84   */ main {
/* 85   */ 	display: block;
/* 86   */ }
/* 87   */
/* 88   */ figure {
/* 89   */ 	margin: 1em 0;
/* 90   */ }
/* 91   */
/* 92   */ hr {
/* 93   */ 	-webkit-box-sizing: content-box;
/* 94   */ 	-moz-box-sizing: content-box;
/* 95   */ 	box-sizing: content-box;
/* 96   */ 	height: 0;
/* 97   */ 	overflow: visible;
/* 98   */ }
/* 99   */
/* 100  */ pre {

/* style.css */

/* 101  */ 	font-family: monospace, monospace;
/* 102  */ 	font-size: 1em;
/* 103  */ }
/* 104  */
/* 105  */ a {
/* 106  */ 	background-color: transparent;
/* 107  */ 	-webkit-text-decoration-skip: objects;
/* 108  */ }
/* 109  */
/* 110  */ a:active,
/* 111  */ a:hover {
/* 112  */ 	outline-width: 0;
/* 113  */ }
/* 114  */
/* 115  */ abbr[title] {
/* 116  */ 	border-bottom: 1px #767676 dotted;
/* 117  */ 	text-decoration: none;
/* 118  */ }
/* 119  */
/* 120  */ b,
/* 121  */ strong {
/* 122  */ 	font-weight: inherit;
/* 123  */ }
/* 124  */
/* 125  */ b,
/* 126  */ strong {
/* 127  */ 	font-weight: 700;
/* 128  */ }
/* 129  */
/* 130  */ code,
/* 131  */ kbd,
/* 132  */ samp {
/* 133  */ 	font-family: monospace, monospace;
/* 134  */ 	font-size: 1em;
/* 135  */ }
/* 136  */
/* 137  */ dfn {
/* 138  */ 	font-style: italic;
/* 139  */ }
/* 140  */
/* 141  */ mark {
/* 142  */ 	background-color: #eee;
/* 143  */ 	color: #222;
/* 144  */ }
/* 145  */
/* 146  */ small {
/* 147  */ 	font-size: 80%;
/* 148  */ }
/* 149  */
/* 150  */ sub,

/* style.css */

/* 151  */ sup {
/* 152  */ 	font-size: 75%;
/* 153  */ 	line-height: 0;
/* 154  */ 	position: relative;
/* 155  */ 	vertical-align: baseline;
/* 156  */ }
/* 157  */
/* 158  */ sub {
/* 159  */ 	bottom: -0.25em;
/* 160  */ }
/* 161  */
/* 162  */ sup {
/* 163  */ 	top: -0.5em;
/* 164  */ }
/* 165  */
/* 166  */ audio,
/* 167  */ video {
/* 168  */ 	display: inline-block;
/* 169  */ }
/* 170  */
/* 171  */ audio:not([controls]) {
/* 172  */ 	display: none;
/* 173  */ 	height: 0;
/* 174  */ }
/* 175  */
/* 176  */ img {
/* 177  */ 	border-style: none;
/* 178  */ }
/* 179  */
/* 180  */ svg:not(:root) {
/* 181  */ 	overflow: hidden;
/* 182  */ }
/* 183  */
/* 184  */ button,
/* 185  */ input,
/* 186  */ optgroup,
/* 187  */ select,
/* 188  */ textarea {
/* 189  */ 	font-family: sans-serif;
/* 190  */ 	font-size: 100%;
/* 191  */ 	line-height: 1.15;
/* 192  */ 	margin: 0;
/* 193  */ }
/* 194  */
/* 195  */ button,
/* 196  */ input {
/* 197  */ 	overflow: visible;
/* 198  */ }
/* 199  */
/* 200  */ button,

/* style.css */

/* 201  */ select {
/* 202  */ 	text-transform: none;
/* 203  */ }
/* 204  */
/* 205  */ button,
/* 206  */ html [type="button"],
/* 207  */ [type="reset"],
/* 208  */ [type="submit"] {
/* 209  */ 	-webkit-appearance: button;
/* 210  */ }
/* 211  */
/* 212  */ button::-moz-focus-inner,
/* 213  */ [type="button"]::-moz-focus-inner,
/* 214  */ [type="reset"]::-moz-focus-inner,
/* 215  */ [type="submit"]::-moz-focus-inner {
/* 216  */ 	border-style: none;
/* 217  */ 	padding: 0;
/* 218  */ }
/* 219  */
/* 220  */ button:-moz-focusring,
/* 221  */ [type="button"]:-moz-focusring,
/* 222  */ [type="reset"]:-moz-focusring,
/* 223  */ [type="submit"]:-moz-focusring {
/* 224  */ 	outline: 1px dotted ButtonText;
/* 225  */ }
/* 226  */
/* 227  */ fieldset {
/* 228  */ 	border: 1px solid #bbb;
/* 229  */ 	margin: 0 2px;
/* 230  */ 	padding: 0.35em 0.625em 0.75em;
/* 231  */ }
/* 232  */
/* 233  */ legend {
/* 234  */ 	-webkit-box-sizing: border-box;
/* 235  */ 	-moz-box-sizing: border-box;
/* 236  */ 	box-sizing: border-box;
/* 237  */ 	color: inherit;
/* 238  */ 	display: table;
/* 239  */ 	max-width: 100%;
/* 240  */ 	padding: 0;
/* 241  */ 	white-space: normal;
/* 242  */ }
/* 243  */
/* 244  */ progress {
/* 245  */ 	display: inline-block;
/* 246  */ 	vertical-align: baseline;
/* 247  */ }
/* 248  */
/* 249  */ textarea {
/* 250  */ 	overflow: auto;

/* style.css */

/* 251  */ }
/* 252  */
/* 253  */ [type="checkbox"],
/* 254  */ [type="radio"] {
/* 255  */ 	-webkit-box-sizing: border-box;
/* 256  */ 	-moz-box-sizing: border-box;
/* 257  */ 	box-sizing: border-box;
/* 258  */ 	padding: 0;
/* 259  */ }
/* 260  */
/* 261  */ [type="number"]::-webkit-inner-spin-button,
/* 262  */ [type="number"]::-webkit-outer-spin-button {
/* 263  */ 	height: auto;
/* 264  */ }
/* 265  */
/* 266  */ [type="search"] {
/* 267  */ 	-webkit-appearance: textfield;
/* 268  */ 	outline-offset: -2px;
/* 269  */ }
/* 270  */
/* 271  */ [type="search"]::-webkit-search-cancel-button,
/* 272  */ [type="search"]::-webkit-search-decoration {
/* 273  */ 	-webkit-appearance: none;
/* 274  */ }
/* 275  */
/* 276  */ ::-webkit-file-upload-button {
/* 277  */ 	-webkit-appearance: button;
/* 278  */ 	font: inherit;
/* 279  */ }
/* 280  */
/* 281  */ details,
/* 282  */ menu {
/* 283  */ 	display: block;
/* 284  */ }
/* 285  */
/* 286  */ summary {
/* 287  */ 	display: list-item;
/* 288  */ }
/* 289  */
/* 290  */ canvas {
/* 291  */ 	display: inline-block;
/* 292  */ }
/* 293  */
/* 294  */ template {
/* 295  */ 	display: none;
/* 296  */ }
/* 297  */
/* 298  */ [hidden] {
/* 299  */ 	display: none;
/* 300  */ }

/* style.css */

/* 301  */
/* 302  */ /*--------------------------------------------------------------
/* 303  *| 2.0 Accessibility
/* 304  *| --------------------------------------------------------------*/
/* 305  */
/* 306  */ /* Text meant only for screen readers. */
/* 307  */
/* 308  */ .screen-reader-text {
/* 309  */ 	clip-path: inset(50%);
/* 310  */ 	height: 1px;
/* 311  */ 	overflow: hidden;
/* 312  */ 	position: absolute !important;
/* 313  */ 	width: 1px;
/* 314  */ 	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
/* 315  */ }
/* 316  */
/* 317  */ .screen-reader-text:focus {
/* 318  */ 	background-color: #f1f1f1;
/* 319  */ 	-webkit-border-radius: 3px;
/* 320  */ 	border-radius: 3px;
/* 321  */ 	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 322  */ 	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 323  */ 	clip-path: none;
/* 324  */ 	color: #21759b;
/* 325  */ 	display: block;
/* 326  */ 	font-size: 14px;
/* 327  */ 	font-size: 0.875rem;
/* 328  */ 	font-weight: 700;
/* 329  */ 	height: auto;
/* 330  */ 	left: 5px;
/* 331  */ 	line-height: normal;
/* 332  */ 	padding: 15px 23px 14px;
/* 333  */ 	text-decoration: none;
/* 334  */ 	top: 5px;
/* 335  */ 	width: auto;
/* 336  */ 	z-index: 100000; /* Above WP toolbar. */
/* 337  */ }
/* 338  */
/* 339  */ /*--------------------------------------------------------------
/* 340  *| 3.0 Alignments
/* 341  *| --------------------------------------------------------------*/
/* 342  */
/* 343  */ .alignleft {
/* 344  */ 	display: inline;
/* 345  */ 	float: left;
/* 346  */ 	margin-right: 1.5em;
/* 347  */ }
/* 348  */
/* 349  */ .alignright {
/* 350  */ 	display: inline;

/* style.css */

/* 351  */ 	float: right;
/* 352  */ 	margin-left: 1.5em;
/* 353  */ }
/* 354  */
/* 355  */ .aligncenter {
/* 356  */ 	clear: both;
/* 357  */ 	display: block;
/* 358  */ 	margin-left: auto;
/* 359  */ 	margin-right: auto;
/* 360  */ }
/* 361  */
/* 362  */ /*--------------------------------------------------------------
/* 363  *| 4.0 Clearings
/* 364  *| --------------------------------------------------------------*/
/* 365  */
/* 366  */ .clear:before,
/* 367  */ .clear:after,
/* 368  */ .entry-content:before,
/* 369  */ .entry-content:after,
/* 370  */ .entry-footer:before,
/* 371  */ .entry-footer:after,
/* 372  */ .comment-content:before,
/* 373  */ .comment-content:after,
/* 374  */ .site-header:before,
/* 375  */ .site-header:after,
/* 376  */ .site-content:before,
/* 377  */ .site-content:after,
/* 378  */ .site-footer:before,
/* 379  */ .site-footer:after,
/* 380  */ .nav-links:before,
/* 381  */ .nav-links:after,
/* 382  */ .pagination:before,
/* 383  */ .pagination:after,
/* 384  */ .comment-author:before,
/* 385  */ .comment-author:after,
/* 386  */ .widget-area:before,
/* 387  */ .widget-area:after,
/* 388  */ .widget:before,
/* 389  */ .widget:after,
/* 390  */ .comment-meta:before,
/* 391  */ .comment-meta:after {
/* 392  */ 	content: "";
/* 393  */ 	display: table;
/* 394  */ 	table-layout: fixed;
/* 395  */ }
/* 396  */
/* 397  */ .clear:after,
/* 398  */ .entry-content:after,
/* 399  */ .entry-footer:after,
/* 400  */ .comment-content:after,

/* style.css */

/* 401  */ .site-header:after,
/* 402  */ .site-content:after,
/* 403  */ .site-footer:after,
/* 404  */ .nav-links:after,
/* 405  */ .pagination:after,
/* 406  */ .comment-author:after,
/* 407  */ .widget-area:after,
/* 408  */ .widget:after,
/* 409  */ .comment-meta:after {
/* 410  */ 	clear: both;
/* 411  */ }
/* 412  */
/* 413  */ /*--------------------------------------------------------------
/* 414  *| 5.0 Typography
/* 415  *| --------------------------------------------------------------*/
/* 416  */
/* 417  */ body,
/* 418  */ button,
/* 419  */ input,
/* 420  */ select,
/* 421  */ textarea {
/* 422  */ 	color: #333;
/* 423  */ 	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
/* 424  */ 	font-size: 15px;
/* 425  */ 	font-size: 0.9375rem;
/* 426  */ 	font-weight: 400;
/* 427  */ 	line-height: 1.66;
/* 428  */ }
/* 429  */
/* 430  */ h1,
/* 431  */ h2,
/* 432  */ h3,
/* 433  */ h4,
/* 434  */ h5,
/* 435  */ h6 {
/* 436  */ 	clear: both;
/* 437  */ 	line-height: 1.4;
/* 438  */ 	margin: 0 0 0.75em;
/* 439  */ 	padding: 1.5em 0 0;
/* 440  */ }
/* 441  */
/* 442  */ h1:first-child,
/* 443  */ h2:first-child,
/* 444  */ h3:first-child,
/* 445  */ h4:first-child,
/* 446  */ h5:first-child,
/* 447  */ h6:first-child {
/* 448  */ 	padding-top: 0;
/* 449  */ }
/* 450  */

/* style.css */

/* 451  */ h1 {
/* 452  */ 	font-size: 24px;
/* 453  */ 	font-size: 1.5rem;
/* 454  */ 	font-weight: 300;
/* 455  */ }
/* 456  */
/* 457  */ h2,
/* 458  */ .home.blog .entry-title {
/* 459  */ 	color: #666;
/* 460  */ 	font-size: 20px;
/* 461  */ 	font-size: 1.25rem;
/* 462  */ 	font-weight: 300;
/* 463  */ }
/* 464  */
/* 465  */ h3 {
/* 466  */ 	color: #333;
/* 467  */ 	font-size: 18px;
/* 468  */ 	font-size: 1.125rem;
/* 469  */ 	font-weight: 300;
/* 470  */ }
/* 471  */
/* 472  */ h4 {
/* 473  */ 	color: #333;
/* 474  */ 	font-size: 16px;
/* 475  */ 	font-size: 1rem;
/* 476  */ 	font-weight: 800;
/* 477  */ }
/* 478  */
/* 479  */ h5 {
/* 480  */ 	color: #767676;
/* 481  */ 	font-size: 13px;
/* 482  */ 	font-size: 0.8125rem;
/* 483  */ 	font-weight: 800;
/* 484  */ 	letter-spacing: 0.15em;
/* 485  */ 	text-transform: uppercase;
/* 486  */ }
/* 487  */
/* 488  */ h6 {
/* 489  */ 	color: #333;
/* 490  */ 	font-size: 15px;
/* 491  */ 	font-size: 0.9375rem;
/* 492  */ 	font-weight: 800;
/* 493  */ }
/* 494  */
/* 495  */ p {
/* 496  */ 	margin: 0 0 1.5em;
/* 497  */ 	padding: 0;
/* 498  */ }
/* 499  */
/* 500  */ dfn,

/* style.css */

/* 501  */ cite,
/* 502  */ em,
/* 503  */ i {
/* 504  */ 	font-style: italic;
/* 505  */ }
/* 506  */
/* 507  */ blockquote {
/* 508  */ 	color: #666;
/* 509  */ 	font-size: 18px;
/* 510  */ 	font-size: 1.125rem;
/* 511  */ 	font-style: italic;
/* 512  */ 	line-height: 1.7;
/* 513  */ 	margin: 0;
/* 514  */ 	overflow: hidden;
/* 515  */ 	padding: 0;
/* 516  */ }
/* 517  */
/* 518  */ blockquote cite {
/* 519  */ 	display: block;
/* 520  */ 	font-style: normal;
/* 521  */ 	font-weight: 600;
/* 522  */ 	margin-top: 0.5em;
/* 523  */ }
/* 524  */
/* 525  */ address {
/* 526  */ 	margin: 0 0 1.5em;
/* 527  */ }
/* 528  */
/* 529  */ pre {
/* 530  */ 	background: #eee;
/* 531  */ 	font-family: "Courier 10 Pitch", Courier, monospace;
/* 532  */ 	font-size: 15px;
/* 533  */ 	font-size: 0.9375rem;
/* 534  */ 	line-height: 1.6;
/* 535  */ 	margin-bottom: 1.6em;
/* 536  */ 	max-width: 100%;
/* 537  */ 	overflow: auto;
/* 538  */ 	padding: 1.6em;
/* 539  */ }
/* 540  */
/* 541  */ code,
/* 542  */ kbd,
/* 543  */ tt,
/* 544  */ var {
/* 545  */ 	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
/* 546  */ 	font-size: 15px;
/* 547  */ 	font-size: 0.9375rem;
/* 548  */ }
/* 549  */
/* 550  */ abbr,

/* style.css */

/* 551  */ acronym {
/* 552  */ 	border-bottom: 1px dotted #666;
/* 553  */ 	cursor: help;
/* 554  */ }
/* 555  */
/* 556  */ mark,
/* 557  */ ins {
/* 558  */ 	background: #eee;
/* 559  */ 	text-decoration: none;
/* 560  */ }
/* 561  */
/* 562  */ big {
/* 563  */ 	font-size: 125%;
/* 564  */ }
/* 565  */
/* 566  */ blockquote {
/* 567  */ 	quotes: "" "";
/* 568  */ }
/* 569  */
/* 570  */ q {
/* 571  */ 	quotes: "“" "”" "‘" "’";
/* 572  */ }
/* 573  */
/* 574  */ blockquote:before,
/* 575  */ blockquote:after {
/* 576  */ 	content: "";
/* 577  */ }
/* 578  */
/* 579  */ :focus {
/* 580  */ 	outline: none;
/* 581  */ }
/* 582  */
/* 583  */ /* Typography for Arabic Font */
/* 584  */
/* 585  */ html[lang="ar"] body,
/* 586  */ html[lang="ar"] button,
/* 587  */ html[lang="ar"] input,
/* 588  */ html[lang="ar"] select,
/* 589  */ html[lang="ar"] textarea,
/* 590  */ html[lang="ary"] body,
/* 591  */ html[lang="ary"] button,
/* 592  */ html[lang="ary"] input,
/* 593  */ html[lang="ary"] select,
/* 594  */ html[lang="ary"] textarea,
/* 595  */ html[lang="azb"] body,
/* 596  */ html[lang="azb"] button,
/* 597  */ html[lang="azb"] input,
/* 598  */ html[lang="azb"] select,
/* 599  */ html[lang="azb"] textarea,
/* 600  */ html[lang^="fa-"] body,

/* style.css */

/* 601  */ html[lang^="fa-"] button,
/* 602  */ html[lang^="fa-"] input,
/* 603  */ html[lang^="fa-"] select,
/* 604  */ html[lang^="fa-"] textarea,
/* 605  */ html[lang="haz"] body,
/* 606  */ html[lang="haz"] button,
/* 607  */ html[lang="haz"] input,
/* 608  */ html[lang="haz"] select,
/* 609  */ html[lang="haz"] textarea,
/* 610  */ html[lang="ps"] body,
/* 611  */ html[lang="ps"] button,
/* 612  */ html[lang="ps"] input,
/* 613  */ html[lang="ps"] select,
/* 614  */ html[lang="ps"] textarea,
/* 615  */ html[lang="ur"] body,
/* 616  */ html[lang="ur"] button,
/* 617  */ html[lang="ur"] input,
/* 618  */ html[lang="ur"] select,
/* 619  */ html[lang="ur"] textarea {
/* 620  */ 	font-family: Tahoma, Arial, sans-serif;
/* 621  */ }
/* 622  */
/* 623  */ html[lang="ar"] h1,
/* 624  */ html[lang="ar"] h2,
/* 625  */ html[lang="ar"] h3,
/* 626  */ html[lang="ar"] h4,
/* 627  */ html[lang="ar"] h5,
/* 628  */ html[lang="ar"] h6,
/* 629  */ html[lang="ary"] h1,
/* 630  */ html[lang="ary"] h2,
/* 631  */ html[lang="ary"] h3,
/* 632  */ html[lang="ary"] h4,
/* 633  */ html[lang="ary"] h5,
/* 634  */ html[lang="ary"] h6,
/* 635  */ html[lang="azb"] h1,
/* 636  */ html[lang="azb"] h2,
/* 637  */ html[lang="azb"] h3,
/* 638  */ html[lang="azb"] h4,
/* 639  */ html[lang="azb"] h5,
/* 640  */ html[lang="azb"] h6,
/* 641  */ html[lang^="fa-"] h1,
/* 642  */ html[lang^="fa-"] h2,
/* 643  */ html[lang^="fa-"] h3,
/* 644  */ html[lang^="fa-"] h4,
/* 645  */ html[lang^="fa-"] h5,
/* 646  */ html[lang^="fa-"] h6,
/* 647  */ html[lang="haz"] h1,
/* 648  */ html[lang="haz"] h2,
/* 649  */ html[lang="haz"] h3,
/* 650  */ html[lang="haz"] h4,

/* style.css */

/* 651  */ html[lang="haz"] h5,
/* 652  */ html[lang="haz"] h6,
/* 653  */ html[lang="ps"] h1,
/* 654  */ html[lang="ps"] h2,
/* 655  */ html[lang="ps"] h3,
/* 656  */ html[lang="ps"] h4,
/* 657  */ html[lang="ps"] h5,
/* 658  */ html[lang="ps"] h6,
/* 659  */ html[lang="ur"] h1,
/* 660  */ html[lang="ur"] h2,
/* 661  */ html[lang="ur"] h3,
/* 662  */ html[lang="ur"] h4,
/* 663  */ html[lang="ur"] h5,
/* 664  */ html[lang="ur"] h6 {
/* 665  */ 	font-weight: 700;
/* 666  */ }
/* 667  */
/* 668  */ /* Typography for Chinese Font */
/* 669  */
/* 670  */ html[lang^="zh-"] body,
/* 671  */ html[lang^="zh-"] button,
/* 672  */ html[lang^="zh-"] input,
/* 673  */ html[lang^="zh-"] select,
/* 674  */ html[lang^="zh-"] textarea {
/* 675  */ 	font-family: "PingFang TC", "Helvetica Neue", Helvetica, STHeitiTC-Light, Arial, sans-serif;
/* 676  */ }
/* 677  */
/* 678  */ html[lang="zh-CN"] body,
/* 679  */ html[lang="zh-CN"] button,
/* 680  */ html[lang="zh-CN"] input,
/* 681  */ html[lang="zh-CN"] select,
/* 682  */ html[lang="zh-CN"] textarea {
/* 683  */ 	font-family: "PingFang SC", "Helvetica Neue", Helvetica, STHeitiSC-Light, Arial, sans-serif;
/* 684  */ }
/* 685  */
/* 686  */ html[lang^="zh-"] h1,
/* 687  */ html[lang^="zh-"] h2,
/* 688  */ html[lang^="zh-"] h3,
/* 689  */ html[lang^="zh-"] h4,
/* 690  */ html[lang^="zh-"] h5,
/* 691  */ html[lang^="zh-"] h6 {
/* 692  */ 	font-weight: 700;
/* 693  */ }
/* 694  */
/* 695  */ /* Typography for Cyrillic Font */
/* 696  */
/* 697  */ html[lang="bg-BG"] body,
/* 698  */ html[lang="bg-BG"] button,
/* 699  */ html[lang="bg-BG"] input,
/* 700  */ html[lang="bg-BG"] select,

/* style.css */

/* 701  */ html[lang="bg-BG"] textarea,
/* 702  */ html[lang="ru-RU"] body,
/* 703  */ html[lang="ru-RU"] button,
/* 704  */ html[lang="ru-RU"] input,
/* 705  */ html[lang="ru-RU"] select,
/* 706  */ html[lang="ru-RU"] textarea,
/* 707  */ html[lang="uk"] body,
/* 708  */ html[lang="uk"] button,
/* 709  */ html[lang="uk"] input,
/* 710  */ html[lang="uk"] select,
/* 711  */ html[lang="uk"] textarea {
/* 712  */ 	font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
/* 713  */ }
/* 714  */
/* 715  */ html[lang="bg-BG"] h1,
/* 716  */ html[lang="bg-BG"] h2,
/* 717  */ html[lang="bg-BG"] h3,
/* 718  */ html[lang="bg-BG"] h4,
/* 719  */ html[lang="bg-BG"] h5,
/* 720  */ html[lang="bg-BG"] h6,
/* 721  */ html[lang="ru-RU"] h1,
/* 722  */ html[lang="ru-RU"] h2,
/* 723  */ html[lang="ru-RU"] h3,
/* 724  */ html[lang="ru-RU"] h4,
/* 725  */ html[lang="ru-RU"] h5,
/* 726  */ html[lang="ru-RU"] h6,
/* 727  */ html[lang="uk"] h1,
/* 728  */ html[lang="uk"] h2,
/* 729  */ html[lang="uk"] h3,
/* 730  */ html[lang="uk"] h4,
/* 731  */ html[lang="uk"] h5,
/* 732  */ html[lang="uk"] h6 {
/* 733  */ 	font-weight: 700;
/* 734  */ 	line-height: 1.2;
/* 735  */ }
/* 736  */
/* 737  */ /* Typography for Devanagari Font */
/* 738  */
/* 739  */ html[lang="bn-BD"] body,
/* 740  */ html[lang="bn-BD"] button,
/* 741  */ html[lang="bn-BD"] input,
/* 742  */ html[lang="bn-BD"] select,
/* 743  */ html[lang="bn-BD"] textarea,
/* 744  */ html[lang="hi-IN"] body,
/* 745  */ html[lang="hi-IN"] button,
/* 746  */ html[lang="hi-IN"] input,
/* 747  */ html[lang="hi-IN"] select,
/* 748  */ html[lang="hi-IN"] textarea,
/* 749  */ html[lang="mr-IN"] body,
/* 750  */ html[lang="mr-IN"] button,

/* style.css */

/* 751  */ html[lang="mr-IN"] input,
/* 752  */ html[lang="mr-IN"] select,
/* 753  */ html[lang="mr-IN"] textarea {
/* 754  */ 	font-family: Arial, sans-serif;
/* 755  */ }
/* 756  */
/* 757  */ html[lang="bn-BD"] h1,
/* 758  */ html[lang="bn-BD"] h2,
/* 759  */ html[lang="bn-BD"] h3,
/* 760  */ html[lang="bn-BD"] h4,
/* 761  */ html[lang="bn-BD"] h5,
/* 762  */ html[lang="bn-BD"] h6,
/* 763  */ html[lang="hi-IN"] h1,
/* 764  */ html[lang="hi-IN"] h2,
/* 765  */ html[lang="hi-IN"] h3,
/* 766  */ html[lang="hi-IN"] h4,
/* 767  */ html[lang="hi-IN"] h5,
/* 768  */ html[lang="hi-IN"] h6,
/* 769  */ html[lang="mr-IN"] h1,
/* 770  */ html[lang="mr-IN"] h2,
/* 771  */ html[lang="mr-IN"] h3,
/* 772  */ html[lang="mr-IN"] h4,
/* 773  */ html[lang="mr-IN"] h5,
/* 774  */ html[lang="mr-IN"] h6 {
/* 775  */ 	font-weight: 700;
/* 776  */ }
/* 777  */
/* 778  */ /* Typography for Greek Font */
/* 779  */
/* 780  */ html[lang="el"] body,
/* 781  */ html[lang="el"] button,
/* 782  */ html[lang="el"] input,
/* 783  */ html[lang="el"] select,
/* 784  */ html[lang="el"] textarea {
/* 785  */ 	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
/* 786  */ }
/* 787  */
/* 788  */ html[lang="el"] h1,
/* 789  */ html[lang="el"] h2,
/* 790  */ html[lang="el"] h3,
/* 791  */ html[lang="el"] h4,
/* 792  */ html[lang="el"] h5,
/* 793  */ html[lang="el"] h6 {
/* 794  */ 	font-weight: 700;
/* 795  */ 	line-height: 1.3;
/* 796  */ }
/* 797  */
/* 798  */ /* Typography for Gujarati Font */
/* 799  */
/* 800  */ html[lang="gu-IN"] body,

/* style.css */

/* 801  */ html[lang="gu-IN"] button,
/* 802  */ html[lang="gu-IN"] input,
/* 803  */ html[lang="gu-IN"] select,
/* 804  */ html[lang="gu-IN"] textarea {
/* 805  */ 	font-family: Arial, sans-serif;
/* 806  */ }
/* 807  */
/* 808  */ html[lang="gu-IN"] h1,
/* 809  */ html[lang="gu-IN"] h2,
/* 810  */ html[lang="gu-IN"] h3,
/* 811  */ html[lang="gu-IN"] h4,
/* 812  */ html[lang="gu-IN"] h5,
/* 813  */ html[lang="gu-IN"] h6 {
/* 814  */ 	font-weight: 700;
/* 815  */ }
/* 816  */
/* 817  */ /* Typography for Hebrew Font */
/* 818  */
/* 819  */ html[lang="he-IL"] body,
/* 820  */ html[lang="he-IL"] button,
/* 821  */ html[lang="he-IL"] input,
/* 822  */ html[lang="he-IL"] select,
/* 823  */ html[lang="he-IL"] textarea {
/* 824  */ 	font-family: "Arial Hebrew", Arial, sans-serif;
/* 825  */ }
/* 826  */
/* 827  */ html[lang="he-IL"] h1,
/* 828  */ html[lang="he-IL"] h2,
/* 829  */ html[lang="he-IL"] h3,
/* 830  */ html[lang="he-IL"] h4,
/* 831  */ html[lang="he-IL"] h5,
/* 832  */ html[lang="he-IL"] h6 {
/* 833  */ 	font-weight: 700;
/* 834  */ }
/* 835  */
/* 836  */ /* Typography for Japanese Font */
/* 837  */
/* 838  */ html[lang="ja"] body,
/* 839  */ html[lang="ja"] button,
/* 840  */ html[lang="ja"] input,
/* 841  */ html[lang="ja"] select,
/* 842  */ html[lang="ja"] textarea {
/* 843  */ 	font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
/* 844  */ }
/* 845  */
/* 846  */ html[lang="ja"] h1,
/* 847  */ html[lang="ja"] h2,
/* 848  */ html[lang="ja"] h3,
/* 849  */ html[lang="ja"] h4,
/* 850  */ html[lang="ja"] h5,

/* style.css */

/* 851  */ html[lang="ja"] h6 {
/* 852  */ 	font-weight: 700;
/* 853  */ }
/* 854  */
/* 855  */ /* Typography for Korean font */
/* 856  */
/* 857  */ html[lang="ko-KR"] body,
/* 858  */ html[lang="ko-KR"] button,
/* 859  */ html[lang="ko-KR"] input,
/* 860  */ html[lang="ko-KR"] select,
/* 861  */ html[lang="ko-KR"] textarea {
/* 862  */ 	font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Nanum Gothic", Dotum, sans-serif;
/* 863  */ }
/* 864  */
/* 865  */ html[lang="ko-KR"] h1,
/* 866  */ html[lang="ko-KR"] h2,
/* 867  */ html[lang="ko-KR"] h3,
/* 868  */ html[lang="ko-KR"] h4,
/* 869  */ html[lang="ko-KR"] h5,
/* 870  */ html[lang="ko-KR"] h6 {
/* 871  */ 	font-weight: 600;
/* 872  */ }
/* 873  */
/* 874  */ /* Typography for Thai Font */
/* 875  */
/* 876  */ html[lang="th"] h1,
/* 877  */ html[lang="th"] h2,
/* 878  */ html[lang="th"] h3,
/* 879  */ html[lang="th"] h4,
/* 880  */ html[lang="th"] h5,
/* 881  */ html[lang="th"] h6 {
/* 882  */ 	line-height: 1.65;
/* 883  */ 	font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif;
/* 884  */ }
/* 885  */
/* 886  */ html[lang="th"] body,
/* 887  */ html[lang="th"] button,
/* 888  */ html[lang="th"] input,
/* 889  */ html[lang="th"] select,
/* 890  */ html[lang="th"] textarea {
/* 891  */ 	line-height: 1.8;
/* 892  */ 	font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif;
/* 893  */ }
/* 894  */
/* 895  */ /* Remove letter-spacing for all non-latin alphabets */
/* 896  */
/* 897  */ html[lang="ar"] *,
/* 898  */ html[lang="ary"] *,
/* 899  */ html[lang="azb"] *,
/* 900  */ html[lang^="fa-"] *,

/* style.css */

/* 901  */ html[lang="haz"] *,
/* 902  */ html[lang="ps"] *,
/* 903  */ html[lang="ur"] *,
/* 904  */ html[lang^="zh-"] *,
/* 905  */ html[lang="bg-BG"] *,
/* 906  */ html[lang="ru-RU"] *,
/* 907  */ html[lang="uk"] *,
/* 908  */ html[lang="bn-BD"] *,
/* 909  */ html[lang="hi-IN"] *,
/* 910  */ html[lang="mr-IN"] *,
/* 911  */ html[lang="el"] *,
/* 912  */ html[lang="gu-IN"] *,
/* 913  */ html[lang="he-IL"] *,
/* 914  */ html[lang="ja"] *,
/* 915  */ html[lang="ko-KR"] *,
/* 916  */ html[lang="th"] * {
/* 917  */ 	letter-spacing: 0 !important;
/* 918  */ }
/* 919  */
/* 920  */ /*--------------------------------------------------------------
/* 921  *| 6.0 Forms
/* 922  *| --------------------------------------------------------------*/
/* 923  */
/* 924  */ label {
/* 925  */ 	color: #333;
/* 926  */ 	display: block;
/* 927  */ 	font-weight: 800;
/* 928  */ 	margin-bottom: 0.5em;
/* 929  */ }
/* 930  */
/* 931  */ fieldset {
/* 932  */ 	margin-bottom: 1em;
/* 933  */ }
/* 934  */
/* 935  */ input[type="text"],
/* 936  */ input[type="email"],
/* 937  */ input[type="url"],
/* 938  */ input[type="password"],
/* 939  */ input[type="search"],
/* 940  */ input[type="number"],
/* 941  */ input[type="tel"],
/* 942  */ input[type="range"],
/* 943  */ input[type="date"],
/* 944  */ input[type="month"],
/* 945  */ input[type="week"],
/* 946  */ input[type="time"],
/* 947  */ input[type="datetime"],
/* 948  */ input[type="datetime-local"],
/* 949  */ input[type="color"],
/* 950  */ textarea {

/* style.css */

/* 951  */ 	color: #666;
/* 952  */ 	background: #fff;
/* 953  */ 	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
/* 954  */ 	border: 1px solid #bbb;
/* 955  */ 	-webkit-border-radius: 3px;
/* 956  */ 	border-radius: 3px;
/* 957  */ 	display: block;
/* 958  */ 	padding: 0.7em;
/* 959  */ 	width: 100%;
/* 960  */ }
/* 961  */
/* 962  */ input[type="text"]:focus,
/* 963  */ input[type="email"]:focus,
/* 964  */ input[type="url"]:focus,
/* 965  */ input[type="password"]:focus,
/* 966  */ input[type="search"]:focus,
/* 967  */ input[type="number"]:focus,
/* 968  */ input[type="tel"]:focus,
/* 969  */ input[type="range"]:focus,
/* 970  */ input[type="date"]:focus,
/* 971  */ input[type="month"]:focus,
/* 972  */ input[type="week"]:focus,
/* 973  */ input[type="time"]:focus,
/* 974  */ input[type="datetime"]:focus,
/* 975  */ input[type="datetime-local"]:focus,
/* 976  */ input[type="color"]:focus,
/* 977  */ textarea:focus {
/* 978  */ 	color: #222;
/* 979  */ 	border-color: #333;
/* 980  */ }
/* 981  */
/* 982  */ select {
/* 983  */ 	border: 1px solid #bbb;
/* 984  */ 	-webkit-border-radius: 3px;
/* 985  */ 	border-radius: 3px;
/* 986  */ 	height: 3em;
/* 987  */ 	max-width: 100%;
/* 988  */ }
/* 989  */
/* 990  */ input[type="radio"]:focus,
/* 991  */ input[type="checkbox"]:focus {
/* 992  */ 	outline: thin dotted #333;
/* 993  */ }
/* 994  */
/* 995  */ input[type="radio"],
/* 996  */ input[type="checkbox"] {
/* 997  */ 	margin-right: 0.5em;
/* 998  */ }
/* 999  */
/* 1000 */ input[type="radio"] + label,

/* style.css */

/* 1001 */ input[type="checkbox"] + label {
/* 1002 */ 	font-weight: 400;
/* 1003 */ }
/* 1004 */
/* 1005 */ button,
/* 1006 */ input[type="button"],
/* 1007 */ input[type="submit"] {
/* 1008 */ 	background-color: #222;
/* 1009 */ 	border: 0;
/* 1010 */ 	-webkit-border-radius: 2px;
/* 1011 */ 	border-radius: 2px;
/* 1012 */ 	-webkit-box-shadow: none;
/* 1013 */ 	box-shadow: none;
/* 1014 */ 	color: #fff;
/* 1015 */ 	cursor: pointer;
/* 1016 */ 	display: inline-block;
/* 1017 */ 	font-size: 14px;
/* 1018 */ 	font-size: 0.875rem;
/* 1019 */ 	font-weight: 800;
/* 1020 */ 	line-height: 1;
/* 1021 */ 	padding: 1em 2em;
/* 1022 */ 	text-shadow: none;
/* 1023 */ 	-webkit-transition: background 0.2s;
/* 1024 */ 	transition: background 0.2s;
/* 1025 */ }
/* 1026 */
/* 1027 */ input + button,
/* 1028 */ input + input[type="button"],
/* 1029 */ input + input[type="submit"] {
/* 1030 */ 	padding: 0.75em 2em;
/* 1031 */ }
/* 1032 */
/* 1033 */ button.secondary,
/* 1034 */ input[type="reset"],
/* 1035 */ input[type="button"].secondary,
/* 1036 */ input[type="reset"].secondary,
/* 1037 */ input[type="submit"].secondary {
/* 1038 */ 	background-color: #ddd;
/* 1039 */ 	color: #222;
/* 1040 */ }
/* 1041 */
/* 1042 */ :not( .mejs-button ) > button:hover,
/* 1043 */ :not( .mejs-button ) > button:focus,
/* 1044 */ input[type="button"]:hover,
/* 1045 */ input[type="button"]:focus,
/* 1046 */ input[type="submit"]:hover,
/* 1047 */ input[type="submit"]:focus {
/* 1048 */ 	background: #767676;
/* 1049 */ }
/* 1050 */

/* style.css */

/* 1051 */ button.secondary:hover,
/* 1052 */ button.secondary:focus,
/* 1053 */ input[type="reset"]:hover,
/* 1054 */ input[type="reset"]:focus,
/* 1055 */ input[type="button"].secondary:hover,
/* 1056 */ input[type="button"].secondary:focus,
/* 1057 */ input[type="reset"].secondary:hover,
/* 1058 */ input[type="reset"].secondary:focus,
/* 1059 */ input[type="submit"].secondary:hover,
/* 1060 */ input[type="submit"].secondary:focus {
/* 1061 */ 	background: #bbb;
/* 1062 */ }
/* 1063 */
/* 1064 */ /* Placeholder text color -- selectors need to be separate to work. */
/* 1065 */ ::-webkit-input-placeholder {
/* 1066 */ 	color: #333;
/* 1067 */ 	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
/* 1068 */ }
/* 1069 */
/* 1070 */ :-moz-placeholder {
/* 1071 */ 	color: #333;
/* 1072 */ 	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
/* 1073 */ }
/* 1074 */
/* 1075 */ ::-moz-placeholder {
/* 1076 */ 	color: #333;
/* 1077 */ 	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
/* 1078 */ 	opacity: 1;
/* 1079 */ 	/* Since FF19 lowers the opacity of the placeholder by default */
/* 1080 */ }
/* 1081 */
/* 1082 */ :-ms-input-placeholder {
/* 1083 */ 	color: #333;
/* 1084 */ 	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
/* 1085 */ }
/* 1086 */
/* 1087 */ /*--------------------------------------------------------------
/* 1088 *| 7.0 Formatting
/* 1089 *| --------------------------------------------------------------*/
/* 1090 */
/* 1091 */ hr {
/* 1092 */ 	background-color: #bbb;
/* 1093 */ 	border: 0;
/* 1094 */ 	height: 1px;
/* 1095 */ 	margin-bottom: 1.5em;
/* 1096 */ }
/* 1097 */
/* 1098 */ /*--------------------------------------------------------------
/* 1099 *| 8.0 Lists
/* 1100 *| --------------------------------------------------------------*/

/* style.css */

/* 1101 */
/* 1102 */ ul,
/* 1103 */ ol {
/* 1104 */ 	margin: 0 0 1.5em;
/* 1105 */ 	padding: 0;
/* 1106 */ }
/* 1107 */
/* 1108 */ ul {
/* 1109 */ 	list-style: disc;
/* 1110 */ }
/* 1111 */
/* 1112 */ ol {
/* 1113 */ 	list-style: decimal;
/* 1114 */ }
/* 1115 */
/* 1116 */ li > ul,
/* 1117 */ li > ol {
/* 1118 */ 	margin-bottom: 0;
/* 1119 */ 	margin-left: 1.5em;
/* 1120 */ }
/* 1121 */
/* 1122 */ dt {
/* 1123 */ 	font-weight: 700;
/* 1124 */ }
/* 1125 */
/* 1126 */ dd {
/* 1127 */ 	margin: 0 1.5em 1.5em;
/* 1128 */ }
/* 1129 */
/* 1130 */ /*--------------------------------------------------------------
/* 1131 *| 9.0 Tables
/* 1132 *| --------------------------------------------------------------*/
/* 1133 */
/* 1134 */ table {
/* 1135 */ 	border-collapse: collapse;
/* 1136 */ 	margin: 0 0 1.5em;
/* 1137 */ 	width: 100%;
/* 1138 */ }
/* 1139 */
/* 1140 */ thead th {
/* 1141 */ 	border-bottom: 2px solid #bbb;
/* 1142 */ 	padding-bottom: 0.5em;
/* 1143 */ }
/* 1144 */
/* 1145 */ th {
/* 1146 */ 	padding: 0.4em;
/* 1147 */ 	text-align: left;
/* 1148 */ }
/* 1149 */
/* 1150 */ tr {

/* style.css */

/* 1151 */ 	border-bottom: 1px solid #eee;
/* 1152 */ }
/* 1153 */
/* 1154 */ td {
/* 1155 */ 	padding: 0.4em;
/* 1156 */ }
/* 1157 */
/* 1158 */ th,
/* 1159 */ td,
/* 1160 */ th:first-child,
/* 1161 */ td:first-child {
/* 1162 */ 	padding-left: 0;
/* 1163 */ }
/* 1164 */
/* 1165 */ th:last-child,
/* 1166 */ td:last-child {
/* 1167 */ 	padding-right: 0;
/* 1168 */ }
/* 1169 */
/* 1170 */ /*--------------------------------------------------------------
/* 1171 *| 10.0 Links
/* 1172 *| --------------------------------------------------------------*/
/* 1173 */
/* 1174 */ a {
/* 1175 */ 	color: #222;
/* 1176 */ 	text-decoration: none;
/* 1177 */ }
/* 1178 */
/* 1179 */ a:focus {
/* 1180 */ 	outline: thin dotted;
/* 1181 */ }
/* 1182 */
/* 1183 */ a:hover,
/* 1184 */ a:active {
/* 1185 */ 	color: #000;
/* 1186 */ 	outline: 0;
/* 1187 */ }
/* 1188 */
/* 1189 */ /* Hover effects */
/* 1190 */
/* 1191 */ .entry-content a,
/* 1192 */ .entry-summary a,
/* 1193 */ .comment-content a,
/* 1194 */ .widget a,
/* 1195 */ .site-footer .widget-area a,
/* 1196 */ .posts-navigation a,
/* 1197 */ .widget_authors a strong {
/* 1198 */ 	-webkit-box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
/* 1199 */ 	box-shadow: inset 0 -1px 0 rgba(15, 15, 15, 1);
/* 1200 */ 	-webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;

/* style.css */

/* 1201 */ 	transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
/* 1202 */ 	transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
/* 1203 */ 	transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
/* 1204 */ }
/* 1205 */
/* 1206 */ .entry-title a,
/* 1207 */ .entry-meta a,
/* 1208 */ .page-links a,
/* 1209 */ .page-links a .page-number,
/* 1210 */ .entry-footer a,
/* 1211 */ .entry-footer .cat-links a,
/* 1212 */ .entry-footer .tags-links a,
/* 1213 */ .edit-link a,
/* 1214 */ .post-navigation a,
/* 1215 */ .logged-in-as a,
/* 1216 */ .comment-navigation a,
/* 1217 */ .comment-metadata a,
/* 1218 */ .comment-metadata a.comment-edit-link,
/* 1219 */ .comment-reply-link,
/* 1220 */ a .nav-title,
/* 1221 */ .pagination a,
/* 1222 */ .comments-pagination a,
/* 1223 */ .site-info a,
/* 1224 */ .widget .widget-title a,
/* 1225 */ .widget ul li a,
/* 1226 */ .site-footer .widget-area ul li a,
/* 1227 */ .site-footer .widget-area ul li a {
/* 1228 */ 	-webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
/* 1229 */ 	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
/* 1230 */ 	text-decoration: none;
/* 1231 */ 	-webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
/* 1232 */ 	transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
/* 1233 */ 	transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
/* 1234 */ 	transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
/* 1235 */ }
/* 1236 */
/* 1237 */ .entry-content a:focus,
/* 1238 */ .entry-content a:hover,
/* 1239 */ .entry-summary a:focus,
/* 1240 */ .entry-summary a:hover,
/* 1241 */ .comment-content a:focus,
/* 1242 */ .comment-content a:hover,
/* 1243 */ .widget a:focus,
/* 1244 */ .widget a:hover,
/* 1245 */ .site-footer .widget-area a:focus,
/* 1246 */ .site-footer .widget-area a:hover,
/* 1247 */ .posts-navigation a:focus,
/* 1248 */ .posts-navigation a:hover,
/* 1249 */ .comment-metadata a:focus,
/* 1250 */ .comment-metadata a:hover,

/* style.css */

/* 1251 */ .comment-metadata a.comment-edit-link:focus,
/* 1252 */ .comment-metadata a.comment-edit-link:hover,
/* 1253 */ .comment-reply-link:focus,
/* 1254 */ .comment-reply-link:hover,
/* 1255 */ .widget_authors a:focus strong,
/* 1256 */ .widget_authors a:hover strong,
/* 1257 */ .entry-title a:focus,
/* 1258 */ .entry-title a:hover,
/* 1259 */ .entry-meta a:focus,
/* 1260 */ .entry-meta a:hover,
/* 1261 */ .page-links a:focus .page-number,
/* 1262 */ .page-links a:hover .page-number,
/* 1263 */ .entry-footer a:focus,
/* 1264 */ .entry-footer a:hover,
/* 1265 */ .entry-footer .cat-links a:focus,
/* 1266 */ .entry-footer .cat-links a:hover,
/* 1267 */ .entry-footer .tags-links a:focus,
/* 1268 */ .entry-footer .tags-links a:hover,
/* 1269 */ .post-navigation a:focus,
/* 1270 */ .post-navigation a:hover,
/* 1271 */ .pagination a:not(.prev):not(.next):focus,
/* 1272 */ .pagination a:not(.prev):not(.next):hover,
/* 1273 */ .comments-pagination a:not(.prev):not(.next):focus,
/* 1274 */ .comments-pagination a:not(.prev):not(.next):hover,
/* 1275 */ .logged-in-as a:focus,
/* 1276 */ .logged-in-as a:hover,
/* 1277 */ a:focus .nav-title,
/* 1278 */ a:hover .nav-title,
/* 1279 */ .edit-link a:focus,
/* 1280 */ .edit-link a:hover,
/* 1281 */ .site-info a:focus,
/* 1282 */ .site-info a:hover,
/* 1283 */ .widget .widget-title a:focus,
/* 1284 */ .widget .widget-title a:hover,
/* 1285 */ .widget ul li a:focus,
/* 1286 */ .widget ul li a:hover {
/* 1287 */ 	color: #000;
/* 1288 */ 	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
/* 1289 */ 	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
/* 1290 */ }
/* 1291 */
/* 1292 */ /* Fixes linked images */
/* 1293 */ .entry-content a img,
/* 1294 */ .comment-content a img,
/* 1295 */ .widget a img {
/* 1296 */ 	-webkit-box-shadow: 0 0 0 8px #fff;
/* 1297 */ 	box-shadow: 0 0 0 8px #fff;
/* 1298 */ }
/* 1299 */
/* 1300 */ .post-navigation a:focus .icon,

/* style.css */

/* 1301 */ .post-navigation a:hover .icon {
/* 1302 */ 	color: #222;
/* 1303 */ }
/* 1304 */
/* 1305 */ /*--------------------------------------------------------------
/* 1306 *| 11.0 Featured Image Hover
/* 1307 *| --------------------------------------------------------------*/
/* 1308 */
/* 1309 */ .post-thumbnail {
/* 1310 */ 	margin-bottom: 1em;
/* 1311 */ }
/* 1312 */
/* 1313 */ .post-thumbnail a img {
/* 1314 */ 	-webkit-backface-visibility: hidden;
/* 1315 */ 	-webkit-transition: opacity 0.2s;
/* 1316 */ 	transition: opacity 0.2s;
/* 1317 */ }
/* 1318 */
/* 1319 */ .post-thumbnail a:hover img,
/* 1320 */ .post-thumbnail a:focus img {
/* 1321 */ 	opacity: 0.7;
/* 1322 */ }
/* 1323 */
/* 1324 */ /*--------------------------------------------------------------
/* 1325 *| 12.0 Navigation
/* 1326 *| --------------------------------------------------------------*/
/* 1327 */
/* 1328 */ .navigation-top {
/* 1329 */ 	background: #fff;
/* 1330 */ 	border-bottom: 1px solid #eee;
/* 1331 */ 	border-top: 1px solid #eee;
/* 1332 */ 	font-size: 16px;
/* 1333 */ 	font-size: 1rem;
/* 1334 */ 	position: relative;
/* 1335 */ }
/* 1336 */
/* 1337 */ .navigation-top .wrap {
/* 1338 */ 	max-width: 1000px;
/* 1339 */ 	padding: 0;
/* 1340 */ }
/* 1341 */
/* 1342 */ .navigation-top a {
/* 1343 */ 	color: #222;
/* 1344 */ 	font-weight: 600;
/* 1345 */ 	-webkit-transition: color 0.2s;
/* 1346 */ 	transition: color 0.2s;
/* 1347 */ }
/* 1348 */
/* 1349 */ .navigation-top .current-menu-item > a,
/* 1350 */ .navigation-top .current_page_item > a {

/* style.css */

/* 1351 */ 	color: #767676;
/* 1352 */ }
/* 1353 */
/* 1354 */ .main-navigation {
/* 1355 */ 	clear: both;
/* 1356 */ 	display: block;
/* 1357 */ }
/* 1358 */
/* 1359 */ .main-navigation ul {
/* 1360 */ 	background: #fff;
/* 1361 */ 	list-style: none;
/* 1362 */ 	margin: 0;
/* 1363 */ 	padding: 0 1.5em;
/* 1364 */ 	text-align: left;
/* 1365 */ }
/* 1366 */
/* 1367 */ /* Hide the menu on small screens when JavaScript is available.
/* 1368 *|  * It only works with JavaScript.
/* 1369 *|  */
/* 1370 */
/* 1371 */ .js .main-navigation ul,
/* 1372 */ .main-navigation .menu-item-has-children > a > .icon,
/* 1373 */ .main-navigation .page_item_has_children > a > .icon,
/* 1374 */ .main-navigation ul a > .icon {
/* 1375 */ 	display: none;
/* 1376 */ }
/* 1377 */
/* 1378 */ .main-navigation > div > ul {
/* 1379 */ 	border-top: 1px solid #eee;
/* 1380 */ 	padding: 0.75em 1.695em;
/* 1381 */ }
/* 1382 */
/* 1383 */ .js .main-navigation.toggled-on > div > ul {
/* 1384 */ 	display: block;
/* 1385 */ }
/* 1386 */
/* 1387 */ .main-navigation ul ul {
/* 1388 */ 	padding: 0 0 0 1.5em;
/* 1389 */ }
/* 1390 */
/* 1391 */ .main-navigation ul ul.toggled-on {
/* 1392 */ 	display: block;
/* 1393 */ }
/* 1394 */
/* 1395 */ .main-navigation ul ul a {
/* 1396 */ 	letter-spacing: 0;
/* 1397 */ 	padding: 0.4em 0;
/* 1398 */ 	position: relative;
/* 1399 */ 	text-transform: none;
/* 1400 */ }

/* style.css */

/* 1401 */
/* 1402 */ .main-navigation li {
/* 1403 */ 	border-bottom: 1px solid #eee;
/* 1404 */ 	position: relative;
/* 1405 */ }
/* 1406 */
/* 1407 */ .main-navigation li li,
/* 1408 */ .main-navigation li:last-child {
/* 1409 */ 	border: 0;
/* 1410 */ }
/* 1411 */
/* 1412 */ .main-navigation a {
/* 1413 */ 	display: block;
/* 1414 */ 	padding: 0.5em 0;
/* 1415 */ 	text-decoration: none;
/* 1416 */ }
/* 1417 */
/* 1418 */ .main-navigation a:hover {
/* 1419 */ 	color: #767676;
/* 1420 */ }
/* 1421 */
/* 1422 */ /* Menu toggle */
/* 1423 */
/* 1424 */ .menu-toggle {
/* 1425 */ 	background-color: transparent;
/* 1426 */ 	border: 0;
/* 1427 */ 	-webkit-box-shadow: none;
/* 1428 */ 	box-shadow: none;
/* 1429 */ 	color: #222;
/* 1430 */ 	display: none;
/* 1431 */ 	font-size: 14px;
/* 1432 */ 	font-size: 0.875rem;
/* 1433 */ 	font-weight: 800;
/* 1434 */ 	line-height: 1.5;
/* 1435 */ 	margin: 1px auto 2px;
/* 1436 */ 	padding: 1em;
/* 1437 */ 	text-shadow: none;
/* 1438 */ }
/* 1439 */
/* 1440 */ /* Display the menu toggle when JavaScript is available. */
/* 1441 */
/* 1442 */ .js .menu-toggle {
/* 1443 */ 	display: block;
/* 1444 */ }
/* 1445 */
/* 1446 */ .main-navigation.toggled-on ul.nav-menu {
/* 1447 */ 	display: block;
/* 1448 */ }
/* 1449 */
/* 1450 */ .menu-toggle:hover,

/* style.css */

/* 1451 */ .menu-toggle:focus {
/* 1452 */ 	background-color: transparent;
/* 1453 */ 	-webkit-box-shadow: none;
/* 1454 */ 	box-shadow: none;
/* 1455 */ }
/* 1456 */
/* 1457 */ .menu-toggle:focus {
/* 1458 */ 	outline: thin solid;
/* 1459 */ }
/* 1460 */
/* 1461 */ .menu-toggle .icon {
/* 1462 */ 	margin-right: 0.5em;
/* 1463 */ 	top: -2px;
/* 1464 */ }
/* 1465 */
/* 1466 */ .toggled-on .menu-toggle .icon-bars,
/* 1467 */ .menu-toggle .icon-close {
/* 1468 */ 	display: none;
/* 1469 */ }
/* 1470 */
/* 1471 */ .toggled-on .menu-toggle .icon-close {
/* 1472 */ 	display: inline-block;
/* 1473 */ }
/* 1474 */
/* 1475 */ /* Dropdown Toggle */
/* 1476 */
/* 1477 */ .dropdown-toggle {
/* 1478 */ 	background-color: transparent;
/* 1479 */ 	border: 0;
/* 1480 */ 	-webkit-box-shadow: none;
/* 1481 */ 	box-shadow: none;
/* 1482 */ 	color: #222;
/* 1483 */ 	display: block;
/* 1484 */ 	font-size: 16px;
/* 1485 */ 	right: -0.5em;
/* 1486 */ 	line-height: 1.5;
/* 1487 */ 	margin: 0 auto;
/* 1488 */ 	padding: 0.5em;
/* 1489 */ 	position: absolute;
/* 1490 */ 	text-shadow: none;
/* 1491 */ 	top: 0;
/* 1492 */ }
/* 1493 */
/* 1494 */ .dropdown-toggle:hover,
/* 1495 */ .dropdown-toggle:focus {
/* 1496 */ 	background: transparent;
/* 1497 */ }
/* 1498 */
/* 1499 */ .dropdown-toggle:focus {
/* 1500 */ 	outline: thin dotted;

/* style.css */

/* 1501 */ }
/* 1502 */
/* 1503 */ .dropdown-toggle.toggled-on .icon {
/* 1504 */ 	-ms-transform: rotate(-180deg); /* IE 9 */
/* 1505 */ 	-webkit-transform: rotate(-180deg); /* Chrome, Safari, Opera */
/* 1506 */ 	transform: rotate(-180deg);
/* 1507 */ }
/* 1508 */
/* 1509 */ /* Scroll down arrow */
/* 1510 */
/* 1511 */ .site-header .menu-scroll-down {
/* 1512 */ 	display: none;
/* 1513 */ }
/* 1514 */
/* 1515 */ /*--------------------------------------------------------------
/* 1516 *| 13.0 Layout
/* 1517 *| --------------------------------------------------------------*/
/* 1518 */
/* 1519 */ html {
/* 1520 */ 	-webkit-box-sizing: border-box;
/* 1521 */ 	-moz-box-sizing: border-box;
/* 1522 */ 	box-sizing: border-box;
/* 1523 */ }
/* 1524 */
/* 1525 */ *,
/* 1526 */ *:before,
/* 1527 */ *:after {
/* 1528 */ 	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
/* 1529 */ 	-webkit-box-sizing: inherit;
/* 1530 */ 	-moz-box-sizing: inherit;
/* 1531 */ 	box-sizing: inherit;
/* 1532 */ }
/* 1533 */
/* 1534 */ body {
/* 1535 */ 	background: #fff;
/* 1536 */ 	/* Fallback for when there is no custom background color defined. */
/* 1537 */ }
/* 1538 */
/* 1539 */ #page {
/* 1540 */ 	position: relative;
/* 1541 */ 	word-wrap: break-word;
/* 1542 */ }
/* 1543 */
/* 1544 */ .wrap {
/* 1545 */ 	margin-left: auto;
/* 1546 */ 	margin-right: auto;
/* 1547 */ 	max-width: 700px;
/* 1548 */ 	padding-left: 2em;
/* 1549 */ 	padding-right: 2em;
/* 1550 */ }

/* style.css */

/* 1551 */
/* 1552 */ .wrap:after {
/* 1553 */ 	clear: both;
/* 1554 */ 	content: "";
/* 1555 */ 	display: block;
/* 1556 */ }
/* 1557 */
/* 1558 */ /*--------------------------------------------------------------
/* 1559 *| 13.1 Header
/* 1560 *| --------------------------------------------------------------*/
/* 1561 */
/* 1562 */ #masthead .wrap {
/* 1563 */ 	position: relative;
/* 1564 */ }
/* 1565 */
/* 1566 */ .site-header {
/* 1567 */ 	background-color: #fafafa;
/* 1568 */ 	position: relative;
/* 1569 */ }
/* 1570 */
/* 1571 */ /* Site branding */
/* 1572 */
/* 1573 */ .site-branding {
/* 1574 */ 	padding: 1em 0;
/* 1575 */ 	position: relative;
/* 1576 */ 	-webkit-transition: margin-bottom 0.2s;
/* 1577 */ 	transition: margin-bottom 0.2s;
/* 1578 */ 	z-index: 3;
/* 1579 */ }
/* 1580 */
/* 1581 */ .site-branding a {
/* 1582 */ 	text-decoration: none;
/* 1583 */ 	-webkit-transition: opacity 0.2s;
/* 1584 */ 	transition: opacity 0.2s;
/* 1585 */ }
/* 1586 */
/* 1587 */ .site-branding a:hover,
/* 1588 */ .site-branding a:focus {
/* 1589 */ 	opacity: 0.7;
/* 1590 */ }
/* 1591 */
/* 1592 */ .site-title {
/* 1593 */ 	clear: none;
/* 1594 */ 	font-size: 24px;
/* 1595 */ 	font-size: 1.5rem;
/* 1596 */ 	font-weight: 800;
/* 1597 */ 	line-height: 1.25;
/* 1598 */ 	letter-spacing: 0.08em;
/* 1599 */ 	margin: 0;
/* 1600 */ 	padding: 0;

/* style.css */

/* 1601 */ 	text-transform: uppercase;
/* 1602 */ }
/* 1603 */
/* 1604 */ .site-title,
/* 1605 */ .site-title a {
/* 1606 */ 	color: #222;
/* 1607 */ 	opacity: 1; /* Prevent opacity from changing during selective refreshes in the customize preview */
/* 1608 */ }
/* 1609 */
/* 1610 */ body.has-header-image .site-title,
/* 1611 */ body.has-header-video .site-title,
/* 1612 */ body.has-header-image .site-title a,
/* 1613 */ body.has-header-video .site-title a {
/* 1614 */ 	color: #fff;
/* 1615 */ }
/* 1616 */
/* 1617 */ .site-description {
/* 1618 */ 	color: #666;
/* 1619 */ 	font-size: 13px;
/* 1620 */ 	font-size: 0.8125rem;
/* 1621 */ 	margin-bottom: 0;
/* 1622 */ }
/* 1623 */
/* 1624 */ body.has-header-image .site-description,
/* 1625 */ body.has-header-video .site-description {
/* 1626 */ 	color: #fff;
/* 1627 */ 	opacity: 0.8;
/* 1628 */ }
/* 1629 */
/* 1630 */ .custom-logo-link {
/* 1631 */ 	display: inline-block;
/* 1632 */ 	padding-right: 1em;
/* 1633 */ 	vertical-align: middle;
/* 1634 */ 	width: auto;
/* 1635 */ }
/* 1636 */
/* 1637 */ .custom-logo-link img {
/* 1638 */ 	display: inline-block;
/* 1639 */ 	max-height: 80px;
/* 1640 */ 	width: auto;
/* 1641 */ }
/* 1642 */
/* 1643 */ body.home.title-tagline-hidden.has-header-image .custom-logo-link img,
/* 1644 */ body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
/* 1645 */ 	max-height: 200px;
/* 1646 */ 	max-width: 100%;
/* 1647 */ }
/* 1648 */
/* 1649 */ .custom-logo-link a:hover,
/* 1650 */ .custom-logo-link a:focus {

/* style.css */

/* 1651 */ 	opacity: 0.9;
/* 1652 */ }
/* 1653 */
/* 1654 */ body:not(.title-tagline-hidden) .site-branding-text {
/* 1655 */ 	display: inline-block;
/* 1656 */ 	max-width: 100%;
/* 1657 */ 	vertical-align: middle;
/* 1658 */ }
/* 1659 */
/* 1660 */ .custom-header {
/* 1661 */ 	position: relative;
/* 1662 */ }
/* 1663 */
/* 1664 */ .has-header-image.twentyseventeen-front-page .custom-header,
/* 1665 */ .has-header-video.twentyseventeen-front-page .custom-header,
/* 1666 */ .has-header-image.home.blog .custom-header,
/* 1667 */ .has-header-video.home.blog .custom-header {
/* 1668 */ 	display: table;
/* 1669 */ 	height: 300px;
/* 1670 */ 	height: 75vh;
/* 1671 */ 	width: 100%;
/* 1672 */ }
/* 1673 */
/* 1674 */ .custom-header-media {
/* 1675 */ 	bottom: 0;
/* 1676 */ 	left: 0;
/* 1677 */ 	overflow: hidden;
/* 1678 */ 	position: absolute;
/* 1679 */ 	right: 0;
/* 1680 */ 	top: 0;
/* 1681 */ 	width: 100%;
/* 1682 */ }
/* 1683 */
/* 1684 */ .custom-header-media:before {
/* 1685 */ 	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.3+75 */
/* 1686 */ 	background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* FF3.6-15 */
/* 1687 */ 	background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* Chrome10-25,Safari5.1-6 */
/* 1688 */ 	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* 1689 */ 	bottom: 0;
/* 1690 */ 	content: "";
/* 1691 */ 	display: block;
/* 1692 */ 	height: 100%;
/* 1693 */ 	left: 0;
/* 1694 */ 	position: absolute;
/* 1695 */ 	right: 0;
/* 1696 */ 	z-index: 2;
/* 1697 */ }
/* 1698 */
/* 1699 */ .has-header-image .custom-header-media img,
/* 1700 */ .has-header-video .custom-header-media video,

/* style.css */

/* 1701 */ .has-header-video .custom-header-media iframe {
/* 1702 */ 	position: fixed;
/* 1703 */ 	height: auto;
/* 1704 */ 	left: 50%;
/* 1705 */ 	max-width: 1000%;
/* 1706 */ 	min-height: 100%;
/* 1707 */ 	min-width: 100%;
/* 1708 */ 	min-width: 100vw; /* vw prevents 1px gap on left that 100% has */
/* 1709 */ 	width: auto;
/* 1710 */ 	top: 50%;
/* 1711 */ 	padding-bottom: 1px; /* Prevent header from extending beyond the footer */
/* 1712 */ 	-ms-transform: translateX(-50%) translateY(-50%);
/* 1713 */ 	-moz-transform: translateX(-50%) translateY(-50%);
/* 1714 */ 	-webkit-transform: translateX(-50%) translateY(-50%);
/* 1715 */ 	transform: translateX(-50%) translateY(-50%);
/* 1716 */ }
/* 1717 */
/* 1718 */ .wp-custom-header .wp-custom-header-video-button { /* Specificity prevents .color-dark button overrides */
/* 1719 */ 	background-color: rgba(34, 34, 34, 0.5);
/* 1720 */ 	border: 1px solid rgba(255, 255, 255, 0.6);
/* 1721 */ 	color: rgba(255, 255, 255, 0.6);
/* 1722 */ 	height: 45px;
/* 1723 */ 	overflow: hidden;
/* 1724 */ 	padding: 0;
/* 1725 */ 	position: fixed;
/* 1726 */ 	right: 30px;
/* 1727 */ 	top: 30px;
/* 1728 */ 	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 1729 */ 	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 1730 */ 	width: 45px;
/* 1731 */ }
/* 1732 */
/* 1733 */ .wp-custom-header .wp-custom-header-video-button:hover,
/* 1734 */ .wp-custom-header .wp-custom-header-video-button:focus { /* Specificity prevents .color-dark button overrides */
/* 1735 */ 	border-color: rgba(255, 255, 255, 0.8);
/* 1736 */ 	background-color: rgba(34, 34, 34, 0.8);
/* 1737 */ 	color: #fff;
/* 1738 */ }
/* 1739 */
/* 1740 */ .admin-bar .wp-custom-header-video-button {
/* 1741 */ 	top: 62px;
/* 1742 */ }
/* 1743 */
/* 1744 */ .has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
/* 1745 */ 	bottom: 0;
/* 1746 */ 	position: absolute;
/* 1747 */ 	top: auto;
/* 1748 */ 	-ms-transform: translateX(-50%) translateY(0);
/* 1749 */ 	-moz-transform: translateX(-50%) translateY(0);
/* 1750 */ 	-webkit-transform: translateX(-50%) translateY(0);

/* style.css */

/* 1751 */ 	transform: translateX(-50%) translateY(0);
/* 1752 */ }
/* 1753 */
/* 1754 */ /* For browsers that support 'object-fit' */
/* 1755 */ @supports ( object-fit: cover ) {
/* 1756 */ 	.has-header-image .custom-header-media img,
/* 1757 */ 	.has-header-video .custom-header-media video,
/* 1758 */ 	.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
/* 1759 */ 		height: 100%;
/* 1760 */ 		left: 0;
/* 1761 */ 		-o-object-fit: cover;
/* 1762 */ 		object-fit: cover;
/* 1763 */ 		top: 0;
/* 1764 */ 		-ms-transform: none;
/* 1765 */ 		-moz-transform: none;
/* 1766 */ 		-webkit-transform: none;
/* 1767 */ 		transform: none;
/* 1768 */ 		width: 100%;
/* 1769 */ 	}
/* 1770 */ }
/* 1771 */
/* 1772 */ /* Hides div in Customizer preview when header images or videos change. */
/* 1773 */
/* 1774 */ body:not(.has-header-image):not(.has-header-video) .custom-header-media {
/* 1775 */ 	display: none;
/* 1776 */ }
/* 1777 */
/* 1778 */ .has-header-image.twentyseventeen-front-page .site-branding,
/* 1779 */ .has-header-video.twentyseventeen-front-page .site-branding,
/* 1780 */ .has-header-image.home.blog .site-branding,
/* 1781 */ .has-header-video.home.blog .site-branding {
/* 1782 */ 	display: table-cell;
/* 1783 */ 	height: 100%;
/* 1784 */ 	vertical-align: bottom;
/* 1785 */ }
/* 1786 */
/* 1787 */ /*--------------------------------------------------------------
/* 1788 *| 13.2 Front Page
/* 1789 *| --------------------------------------------------------------*/
/* 1790 */
/* 1791 */ .twentyseventeen-front-page .site-content {
/* 1792 */ 	padding: 0;
/* 1793 */ }
/* 1794 */
/* 1795 */ .twentyseventeen-panel {
/* 1796 */ 	overflow: hidden;
/* 1797 */ 	position: relative;
/* 1798 */ }
/* 1799 */
/* 1800 */ .panel-image {

/* style.css */

/* 1801 */ 	background-position: center center;
/* 1802 */ 	background-repeat: no-repeat;
/* 1803 */ 	-webkit-background-size: cover;
/* 1804 */ 	background-size: cover;
/* 1805 */ 	position: relative;
/* 1806 */ }
/* 1807 */
/* 1808 */ .panel-image:before {
/* 1809 */ 	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.3+100 */ /* FF3.6-15 */
/* 1810 */ 	background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%); /* Chrome10-25,Safari5.1-6 */
/* 1811 */ 	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
/* 1812 */ 	background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
/* 1813 */ 	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* 1814 */ 	bottom: 0;
/* 1815 */ 	content: "";
/* 1816 */ 	left: 0;
/* 1817 */ 	right: 0;
/* 1818 */ 	position: absolute;
/* 1819 */ 	top: 100px;
/* 1820 */ }
/* 1821 */
/* 1822 */ .twentyseventeen-front-page article:not(.has-post-thumbnail):not(:first-child) {
/* 1823 */ 	border-top: 1px solid #ddd;
/* 1824 */ }
/* 1825 */
/* 1826 */ .panel-content {
/* 1827 */ 	position: relative;
/* 1828 */ }
/* 1829 */
/* 1830 */ .panel-content .wrap {
/* 1831 */ 	padding-bottom: 0.5em;
/* 1832 */ 	padding-top: 1.75em;
/* 1833 */ }
/* 1834 */
/* 1835 */ /* Panel edit link */
/* 1836 */
/* 1837 */ .twentyseventeen-panel .edit-link {
/* 1838 */ 	display: block;
/* 1839 */ 	margin: 0.3em 0 0;
/* 1840 */ }
/* 1841 */
/* 1842 */ .twentyseventeen-panel .entry-header .edit-link {
/* 1843 */ 	font-size: 14px;
/* 1844 */ 	font-size: 0.875rem;
/* 1845 */ }
/* 1846 */
/* 1847 */ /* Front Page - Recent Posts */
/* 1848 */
/* 1849 */ .twentyseventeen-front-page .panel-content .recent-posts article {
/* 1850 */ 	border: 0;

/* style.css */

/* 1851 */ 	color: #333;
/* 1852 */ 	margin-bottom: 3em;
/* 1853 */ }
/* 1854 */
/* 1855 */ .recent-posts .entry-header {
/* 1856 */ 	margin-bottom: 1.2em;
/* 1857 */ }
/* 1858 */
/* 1859 */ .page .panel-content .recent-posts .entry-title {
/* 1860 */ 	font-size: 20px;
/* 1861 */ 	font-size: 1.25rem;
/* 1862 */ 	font-weight: 300;
/* 1863 */ 	letter-spacing: 0;
/* 1864 */ 	text-transform: none;
/* 1865 */ }
/* 1866 */
/* 1867 */ .twentyseventeen-panel .recent-posts .entry-header .edit-link {
/* 1868 */ 	color: #222;
/* 1869 */ 	display: inline-block;
/* 1870 */ 	font-size: 11px;
/* 1871 */ 	font-size: 0.6875rem;
/* 1872 */ 	margin-left: 1em;
/* 1873 */ }
/* 1874 */
/* 1875 */ /*--------------------------------------------------------------
/* 1876 *| 13.3 Regular Content
/* 1877 *| --------------------------------------------------------------*/
/* 1878 */
/* 1879 */ .site-content-contain {
/* 1880 */ 	background-color: #fff;
/* 1881 */ 	position: relative;
/* 1882 */ }
/* 1883 */
/* 1884 */ .site-content {
/* 1885 */ 	padding: 2.5em 0 0;
/* 1886 */ }
/* 1887 */
/* 1888 */ /*--------------------------------------------------------------
/* 1889 *| 13.4 Posts
/* 1890 *| --------------------------------------------------------------*/
/* 1891 */
/* 1892 */ /* Post Landing Page */
/* 1893 */
/* 1894 */ .sticky {
/* 1895 */ 	position: relative;
/* 1896 */ }
/* 1897 */
/* 1898 */ .post:not(.sticky) .icon-thumb-tack {
/* 1899 */ 	display: none;
/* 1900 */ }

/* style.css */

/* 1901 */
/* 1902 */ .sticky .icon-thumb-tack {
/* 1903 */ 	display: block;
/* 1904 */ 	height: 18px;
/* 1905 */ 	left: -1.5em;
/* 1906 */ 	position: absolute;
/* 1907 */ 	top: 1.65em;
/* 1908 */ 	width: 20px;
/* 1909 */ }
/* 1910 */
/* 1911 */ .page .panel-content .entry-title,
/* 1912 */ .page-title,
/* 1913 */ body.page:not(.twentyseventeen-front-page) .entry-title {
/* 1914 */ 	color: #222;
/* 1915 */ 	font-size: 14px;
/* 1916 */ 	font-size: 0.875rem;
/* 1917 */ 	font-weight: 800;
/* 1918 */ 	letter-spacing: 0.14em;
/* 1919 */ 	text-transform: uppercase;
/* 1920 */ }
/* 1921 */
/* 1922 */ .entry-header .entry-title {
/* 1923 */ 	margin-bottom: 0.25em;
/* 1924 */ }
/* 1925 */
/* 1926 */ .entry-title a {
/* 1927 */ 	color: #333;
/* 1928 */ 	text-decoration: none;
/* 1929 */ 	margin-left: -2px;
/* 1930 */ }
/* 1931 */
/* 1932 */ .entry-title:not(:first-child) {
/* 1933 */ 	padding-top: 0;
/* 1934 */ }
/* 1935 */
/* 1936 */ .entry-meta {
/* 1937 */ 	color: #767676;
/* 1938 */ 	font-size: 11px;
/* 1939 */ 	font-size: 0.6875rem;
/* 1940 */ 	font-weight: 800;
/* 1941 */ 	letter-spacing: 0.1818em;
/* 1942 */ 	padding-bottom: 0.25em;
/* 1943 */ 	text-transform: uppercase;
/* 1944 */ }
/* 1945 */
/* 1946 */ .entry-meta a {
/* 1947 */ 	color: #767676;
/* 1948 */ }
/* 1949 */
/* 1950 */ .byline,

/* style.css */

/* 1951 */ .updated:not(.published) {
/* 1952 */ 	display: none;
/* 1953 */ }
/* 1954 */
/* 1955 */ .single .byline,
/* 1956 */ .group-blog .byline {
/* 1957 */ 	display: inline;
/* 1958 */ }
/* 1959 */
/* 1960 */ .pagination,
/* 1961 */ .comments-pagination {
/* 1962 */ 	border-top: 1px solid #eee;
/* 1963 */ 	font-size: 14px;
/* 1964 */ 	font-size: 0.875rem;
/* 1965 */ 	font-weight: 800;
/* 1966 */ 	padding: 2em 0 3em;
/* 1967 */ 	text-align: center;
/* 1968 */ }
/* 1969 */
/* 1970 */ .pagination .icon,
/* 1971 */ .comments-pagination .icon {
/* 1972 */ 	width: 0.666666666em;
/* 1973 */ 	height: 0.666666666em;
/* 1974 */ }
/* 1975 */
/* 1976 */ .comments-pagination {
/* 1977 */ 	border: 0;
/* 1978 */ }
/* 1979 */
/* 1980 */ .page-numbers {
/* 1981 */ 	display: none;
/* 1982 */ 	padding: 0.5em 0.75em;
/* 1983 */ }
/* 1984 */
/* 1985 */ .page-numbers.current {
/* 1986 */ 	color: #767676;
/* 1987 */ 	display: inline-block;
/* 1988 */ }
/* 1989 */
/* 1990 */ .page-numbers.current .screen-reader-text {
/* 1991 */ 	clip-path: none;
/* 1992 */ 	height: auto;
/* 1993 */ 	overflow: auto;
/* 1994 */ 	position: relative !important;
/* 1995 */ 	width: auto;
/* 1996 */ }
/* 1997 */
/* 1998 */ .prev.page-numbers,
/* 1999 */ .next.page-numbers {
/* 2000 */ 	background-color: #ddd;

/* style.css */

/* 2001 */ 	-webkit-border-radius: 2px;
/* 2002 */ 	border-radius: 2px;
/* 2003 */ 	display: inline-block;
/* 2004 */ 	font-size: 24px;
/* 2005 */ 	font-size: 1.5rem;
/* 2006 */ 	line-height: 1;
/* 2007 */ 	padding: 0.25em 0.5em 0.4em;
/* 2008 */ }
/* 2009 */
/* 2010 */ .prev.page-numbers,
/* 2011 */ .next.page-numbers {
/* 2012 */ 	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 2013 */ 	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 2014 */ }
/* 2015 */
/* 2016 */ .prev.page-numbers:focus,
/* 2017 */ .prev.page-numbers:hover,
/* 2018 */ .next.page-numbers:focus,
/* 2019 */ .next.page-numbers:hover {
/* 2020 */ 	background-color: #767676;
/* 2021 */ 	color: #fff;
/* 2022 */ }
/* 2023 */
/* 2024 */ .prev.page-numbers {
/* 2025 */ 	float: left;
/* 2026 */ }
/* 2027 */
/* 2028 */ .next.page-numbers {
/* 2029 */ 	float: right;
/* 2030 */ }
/* 2031 */
/* 2032 */ /* Aligned blockquotes */
/* 2033 */
/* 2034 */ .entry-content blockquote.alignleft,
/* 2035 */ .entry-content blockquote.alignright {
/* 2036 */ 	color: #666;
/* 2037 */ 	font-size: 13px;
/* 2038 */ 	font-size: 0.8125rem;
/* 2039 */ 	width: 48%;
/* 2040 */ }
/* 2041 */
/* 2042 */ /* Blog landing, search, archives */
/* 2043 */
/* 2044 */ .blog .site-main > article,
/* 2045 */ .archive .site-main > article,
/* 2046 */ .search .site-main > article {
/* 2047 */ 	padding-bottom: 2em;
/* 2048 */ }
/* 2049 */
/* 2050 */ body:not(.twentyseventeen-front-page) .entry-header {

/* style.css */

/* 2051 */ 	padding: 1em 0;
/* 2052 */ }
/* 2053 */
/* 2054 */ body:not(.twentyseventeen-front-page) .entry-header,
/* 2055 */ body:not(.twentyseventeen-front-page) .entry-content,
/* 2056 */ body:not(.twentyseventeen-front-page) #comments {
/* 2057 */ 	margin-left: auto;
/* 2058 */ 	margin-right: auto;
/* 2059 */ }
/* 2060 */
/* 2061 */ body:not(.twentyseventeen-front-page) .entry-header {
/* 2062 */ 	padding-top: 0;
/* 2063 */ }
/* 2064 */
/* 2065 */ .blog .entry-meta a.post-edit-link,
/* 2066 */ .archive .entry-meta a.post-edit-link,
/* 2067 */ .search .entry-meta a.post-edit-link {
/* 2068 */ 	color: #222;
/* 2069 */ 	display: inline-block;
/* 2070 */ 	margin-left: 1em;
/* 2071 */ 	white-space: nowrap;
/* 2072 */ }
/* 2073 */
/* 2074 */ .search .page .entry-meta a.post-edit-link {
/* 2075 */ 	margin-left: 0;
/* 2076 */ 	white-space: nowrap;
/* 2077 */ }
/* 2078 */
/* 2079 */ .taxonomy-description {
/* 2080 */ 	color: #666;
/* 2081 */ 	font-size: 13px;
/* 2082 */ 	font-size: 0.8125rem;
/* 2083 */ }
/* 2084 */
/* 2085 */ /* More tag */
/* 2086 */
/* 2087 */ .entry-content .more-link:before {
/* 2088 */ 	content: "";
/* 2089 */ 	display: block;
/* 2090 */ 	margin-top: 1.5em;
/* 2091 */ }
/* 2092 */
/* 2093 */ /* Single Post */
/* 2094 */
/* 2095 */ .single-post:not(.has-sidebar) #primary,
/* 2096 */ .page.page-one-column:not(.twentyseventeen-front-page) #primary,
/* 2097 */ .archive.page-one-column:not(.has-sidebar) .page-header,
/* 2098 */ .archive.page-one-column:not(.has-sidebar) #primary {
/* 2099 */ 	margin-left: auto;
/* 2100 */ 	margin-right: auto;

/* style.css */

/* 2101 */ 	max-width: 740px;
/* 2102 */ }
/* 2103 */
/* 2104 */ .single-featured-image-header {
/* 2105 */ 	background-color: #fafafa;
/* 2106 */ 	border-bottom: 1px solid #eee;
/* 2107 */ }
/* 2108 */
/* 2109 */ .single-featured-image-header img {
/* 2110 */ 	display: block;
/* 2111 */ 	margin: auto;
/* 2112 */ }
/* 2113 */
/* 2114 */ .page-links {
/* 2115 */ 	font-size: 14px;
/* 2116 */ 	font-size: 0.875rem;
/* 2117 */ 	font-weight: 800;
/* 2118 */ 	padding: 2em 0 3em;
/* 2119 */ }
/* 2120 */
/* 2121 */ .page-links .page-number {
/* 2122 */ 	color: #767676;
/* 2123 */ 	display: inline-block;
/* 2124 */ 	padding: 0.5em 1em;
/* 2125 */ }
/* 2126 */
/* 2127 */ .page-links a {
/* 2128 */ 	display: inline-block;
/* 2129 */ }
/* 2130 */
/* 2131 */ .page-links a .page-number {
/* 2132 */ 	color: #222;
/* 2133 */ }
/* 2134 */
/* 2135 */ /* Entry footer */
/* 2136 */
/* 2137 */ .entry-footer {
/* 2138 */ 	border-bottom: 1px solid #eee;
/* 2139 */ 	border-top: 1px solid #eee;
/* 2140 */ 	margin-top: 2em;
/* 2141 */ 	padding: 2em 0;
/* 2142 */ }
/* 2143 */
/* 2144 */ .entry-footer .cat-links,
/* 2145 */ .entry-footer .tags-links {
/* 2146 */ 	display: block;
/* 2147 */ 	font-size: 11px;
/* 2148 */ 	font-size: 0.6875rem;
/* 2149 */ 	font-weight: 800;
/* 2150 */ 	letter-spacing: 0.1818em;

/* style.css */

/* 2151 */ 	padding-left: 2.5em;
/* 2152 */ 	position: relative;
/* 2153 */ 	text-transform: uppercase;
/* 2154 */ }
/* 2155 */
/* 2156 */ .entry-footer .cat-links + .tags-links {
/* 2157 */ 	margin-top: 1em;
/* 2158 */ }
/* 2159 */
/* 2160 */ .entry-footer .cat-links a,
/* 2161 */ .entry-footer .tags-links a {
/* 2162 */ 	color: #333;
/* 2163 */ }
/* 2164 */
/* 2165 */ .entry-footer .cat-links .icon,
/* 2166 */ .entry-footer .tags-links .icon {
/* 2167 */ 	color: #767676;
/* 2168 */ 	left: 0;
/* 2169 */ 	margin-right: 0.5em;
/* 2170 */ 	position: absolute;
/* 2171 */ 	top: 2px;
/* 2172 */ }
/* 2173 */
/* 2174 */ .entry-footer .edit-link {
/* 2175 */ 	display: inline-block;
/* 2176 */ }
/* 2177 */
/* 2178 */ .entry-footer .edit-link a.post-edit-link {
/* 2179 */ 	background-color: #222;
/* 2180 */ 	-webkit-border-radius: 2px;
/* 2181 */ 	border-radius: 2px;
/* 2182 */ 	-webkit-box-shadow: none;
/* 2183 */ 	box-shadow: none;
/* 2184 */ 	color: #fff;
/* 2185 */ 	display: inline-block;
/* 2186 */ 	font-size: 14px;
/* 2187 */ 	font-size: 0.875rem;
/* 2188 */ 	font-weight: 800;
/* 2189 */ 	margin-top: 2em;
/* 2190 */ 	padding: 0.7em 2em;
/* 2191 */ 	-webkit-transition: background-color 0.2s ease-in-out;
/* 2192 */ 	transition: background-color 0.2s ease-in-out;
/* 2193 */ 	white-space: nowrap;
/* 2194 */ }
/* 2195 */
/* 2196 */ .entry-footer .edit-link a.post-edit-link:hover,
/* 2197 */ .entry-footer .edit-link a.post-edit-link:focus {
/* 2198 */ 	background-color: #767676;
/* 2199 */ }
/* 2200 */

/* style.css */

/* 2201 */ /* Post Formats */
/* 2202 */
/* 2203 */ .blog .format-status .entry-title,
/* 2204 */ .archive .format-status .entry-title,
/* 2205 */ .blog .format-aside .entry-title,
/* 2206 */ .archive .format-aside .entry-title {
/* 2207 */ 	display: none;
/* 2208 */ }
/* 2209 */
/* 2210 */ .format-quote blockquote {
/* 2211 */ 	color: #333;
/* 2212 */ 	font-size: 20px;
/* 2213 */ 	font-size: 1.25rem;
/* 2214 */ 	font-weight: 300;
/* 2215 */ 	overflow: visible;
/* 2216 */ 	position: relative;
/* 2217 */ }
/* 2218 */
/* 2219 */ .format-quote blockquote .icon {
/* 2220 */ 	display: block;
/* 2221 */ 	height: 20px;
/* 2222 */ 	left: -1.25em;
/* 2223 */ 	position: absolute;
/* 2224 */ 	top: 0.4em;
/* 2225 */ 	-webkit-transform: scale(-1, 1);
/* 2226 */ 	-ms-transform: scale(-1, 1);
/* 2227 */ 	transform: scale(-1, 1);
/* 2228 */ 	width: 20px;
/* 2229 */ }
/* 2230 */
/* 2231 */ /* Post Navigation */
/* 2232 */
/* 2233 */ .post-navigation {
/* 2234 */ 	font-weight: 800;
/* 2235 */ 	margin: 3em 0;
/* 2236 */ }
/* 2237 */
/* 2238 */ .post-navigation .nav-links {
/* 2239 */ 	padding: 1em 0;
/* 2240 */ }
/* 2241 */
/* 2242 */ .nav-subtitle {
/* 2243 */ 	background: transparent;
/* 2244 */ 	color: #767676;
/* 2245 */ 	display: block;
/* 2246 */ 	font-size: 11px;
/* 2247 */ 	font-size: 0.6875rem;
/* 2248 */ 	letter-spacing: 0.1818em;
/* 2249 */ 	margin-bottom: 1em;
/* 2250 */ 	text-transform: uppercase;

/* style.css */

/* 2251 */ }
/* 2252 */
/* 2253 */ .nav-title {
/* 2254 */ 	color: #333;
/* 2255 */ 	font-size: 15px;
/* 2256 */ 	font-size: 0.9375rem;
/* 2257 */ }
/* 2258 */
/* 2259 */ .post-navigation .nav-next {
/* 2260 */ 	margin-top: 1.5em;
/* 2261 */ }
/* 2262 */
/* 2263 */ .nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
/* 2264 */ 	margin-right: 0.5em;
/* 2265 */ }
/* 2266 */
/* 2267 */ .nav-links .nav-next .nav-title .nav-title-icon-wrapper {
/* 2268 */ 	margin-left: 0.5em;
/* 2269 */ }
/* 2270 */
/* 2271 */ /*--------------------------------------------------------------
/* 2272 *| 13.5 Pages
/* 2273 *| --------------------------------------------------------------*/
/* 2274 */
/* 2275 */ .page-header {
/* 2276 */ 	padding-bottom: 2em;
/* 2277 */ }
/* 2278 */
/* 2279 */ .page .entry-header .edit-link {
/* 2280 */ 	font-size: 14px;
/* 2281 */ 	font-size: 0.875rem;
/* 2282 */ }
/* 2283 */
/* 2284 */ .search .page .entry-header .edit-link {
/* 2285 */ 	font-size: 11px;
/* 2286 */ 	font-size: 0.6875rem;
/* 2287 */ }
/* 2288 */
/* 2289 */ .page-links {
/* 2290 */ 	clear: both;
/* 2291 */ 	margin: 0 0 1.5em;
/* 2292 */ }
/* 2293 */
/* 2294 */ .page:not(.home) #content {
/* 2295 */ 	padding-bottom: 1.5em;
/* 2296 */ }
/* 2297 */
/* 2298 */ /* 404 page */
/* 2299 */
/* 2300 */ .error404 .page-content {

/* style.css */

/* 2301 */ 	padding-bottom: 4em;
/* 2302 */ }
/* 2303 */
/* 2304 */ .error404 .page-content .search-form,
/* 2305 */ .search .page-content .search-form {
/* 2306 */ 	margin-bottom: 3em;
/* 2307 */ }
/* 2308 */
/* 2309 */ /*--------------------------------------------------------------
/* 2310 *| 13.6 Footer
/* 2311 *| --------------------------------------------------------------*/
/* 2312 */
/* 2313 */ .site-footer {
/* 2314 */ 	border-top: 1px solid #eee;
/* 2315 */ }
/* 2316 */
/* 2317 */ .site-footer .wrap {
/* 2318 */ 	padding-bottom: 1.5em;
/* 2319 */ 	padding-top: 2em;
/* 2320 */ }
/* 2321 */
/* 2322 */ /* Footer widgets */
/* 2323 */
/* 2324 */ .site-footer .widget-area {
/* 2325 */ 	padding-bottom: 2em;
/* 2326 */ 	padding-top: 2em;
/* 2327 */ }
/* 2328 */
/* 2329 */ /* Social nav */
/* 2330 */
/* 2331 */ .social-navigation {
/* 2332 */ 	font-size: 16px;
/* 2333 */ 	font-size: 1rem;
/* 2334 */ 	margin-bottom: 1em;
/* 2335 */ }
/* 2336 */
/* 2337 */ .social-navigation ul {
/* 2338 */ 	list-style: none;
/* 2339 */ 	margin-bottom: 0;
/* 2340 */ 	margin-left: 0;
/* 2341 */ }
/* 2342 */
/* 2343 */ .social-navigation li {
/* 2344 */ 	display: inline;
/* 2345 */ }
/* 2346 */
/* 2347 */ .social-navigation a {
/* 2348 */ 	background-color: #767676;
/* 2349 */ 	-webkit-border-radius: 40px;
/* 2350 */ 	border-radius: 40px;

/* style.css */

/* 2351 */ 	color: #fff;
/* 2352 */ 	display: inline-block;
/* 2353 */ 	height: 40px;
/* 2354 */ 	margin: 0 1em 0.5em 0;
/* 2355 */ 	text-align: center;
/* 2356 */ 	width: 40px;
/* 2357 */ }
/* 2358 */
/* 2359 */ .social-navigation a:hover,
/* 2360 */ .social-navigation a:focus {
/* 2361 */ 	background-color: #333;
/* 2362 */ }
/* 2363 */
/* 2364 */ .social-navigation .icon {
/* 2365 */ 	height: 16px;
/* 2366 */ 	top: 12px;
/* 2367 */ 	width: 16px;
/* 2368 */ 	vertical-align: top;
/* 2369 */ }
/* 2370 */
/* 2371 */ /* Site info */
/* 2372 */
/* 2373 */ .site-info {
/* 2374 */ 	font-size: 14px;
/* 2375 */ 	font-size: 0.875rem;
/* 2376 */ 	margin-bottom: 1em;
/* 2377 */ }
/* 2378 */
/* 2379 */ .site-info a {
/* 2380 */ 	color: #666;
/* 2381 */ }
/* 2382 */
/* 2383 */ .site-info .sep {
/* 2384 */ 	margin: 0;
/* 2385 */ 	display: block;
/* 2386 */ 	visibility: hidden;
/* 2387 */ 	height: 0;
/* 2388 */ 	width: 100%;
/* 2389 */ }
/* 2390 */
/* 2391 */ .site-info span[role=separator] {
/* 2392 */ 	padding: 0 0.2em 0 0.4em;
/* 2393 */ }
/* 2394 */
/* 2395 */ .site-info span[role=separator]::before {
/* 2396 */ 	content: '\002f';
/* 2397 */ }
/* 2398 */
/* 2399 */ /*--------------------------------------------------------------
/* 2400 *| 14.0 Comments

/* style.css *|

/* 2401 *| --------------------------------------------------------------*/
/* 2402 */
/* 2403 */ #comments {
/* 2404 */ 	clear: both;
/* 2405 */ 	padding: 2em 0 0.5em;
/* 2406 */ }
/* 2407 */
/* 2408 */ .comments-title {
/* 2409 */ 	font-size: 20px;
/* 2410 */ 	font-size: 1.25rem;
/* 2411 */ 	margin-bottom: 1.5em;
/* 2412 */ }
/* 2413 */
/* 2414 */ .comment-list,
/* 2415 */ .comment-list .children {
/* 2416 */ 	list-style: none;
/* 2417 */ 	margin: 0;
/* 2418 */ 	padding: 0;
/* 2419 */ }
/* 2420 */
/* 2421 */ .comment-list li:before {
/* 2422 */ 	display: none;
/* 2423 */ }
/* 2424 */
/* 2425 */ .comment-body {
/* 2426 */ 	margin-left: 65px;
/* 2427 */ }
/* 2428 */
/* 2429 */ .comment-author {
/* 2430 */ 	font-size: 16px;
/* 2431 */ 	font-size: 1rem;
/* 2432 */ 	margin-bottom: 0.4em;
/* 2433 */ 	position: relative;
/* 2434 */ 	z-index: 2;
/* 2435 */ }
/* 2436 */
/* 2437 */ .comment-author .avatar {
/* 2438 */ 	height: 50px;
/* 2439 */ 	left: -65px;
/* 2440 */ 	position: absolute;
/* 2441 */ 	width: 50px;
/* 2442 */ }
/* 2443 */
/* 2444 */ .comment-author .says {
/* 2445 */ 	display: none;
/* 2446 */ }
/* 2447 */
/* 2448 */ .comment-meta {
/* 2449 */ 	margin-bottom: 1.5em;
/* 2450 */ }

/* style.css */

/* 2451 */
/* 2452 */ .comment-metadata {
/* 2453 */ 	color: #767676;
/* 2454 */ 	font-size: 10px;
/* 2455 */ 	font-size: 0.625rem;
/* 2456 */ 	font-weight: 800;
/* 2457 */ 	letter-spacing: 0.1818em;
/* 2458 */ 	text-transform: uppercase;
/* 2459 */ }
/* 2460 */
/* 2461 */ .comment-metadata a {
/* 2462 */ 	color: #767676;
/* 2463 */ }
/* 2464 */
/* 2465 */ .comment-metadata a.comment-edit-link {
/* 2466 */ 	color: #222;
/* 2467 */ 	margin-left: 1em;
/* 2468 */ }
/* 2469 */
/* 2470 */ .comment-body {
/* 2471 */ 	color: #333;
/* 2472 */ 	font-size: 14px;
/* 2473 */ 	font-size: 0.875rem;
/* 2474 */ 	margin-bottom: 4em;
/* 2475 */ }
/* 2476 */
/* 2477 */ .comment-reply-link {
/* 2478 */ 	font-weight: 800;
/* 2479 */ 	position: relative;
/* 2480 */ }
/* 2481 */
/* 2482 */ .comment-reply-link .icon {
/* 2483 */ 	color: #222;
/* 2484 */ 	left: -2em;
/* 2485 */ 	height: 1em;
/* 2486 */ 	position: absolute;
/* 2487 */ 	top: 0;
/* 2488 */ 	width: 1em;
/* 2489 */ }
/* 2490 */
/* 2491 */ .comment-reply-title small {
/* 2492 */ 	margin-left: 0.5em;
/* 2493 */ }
/* 2494 */
/* 2495 */ .children .comment-author .avatar {
/* 2496 */ 	height: 30px;
/* 2497 */ 	left: -45px;
/* 2498 */ 	width: 30px;
/* 2499 */ }
/* 2500 */

/* style.css */

/* 2501 */ .bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
/* 2502 */ 	border: 1px solid #333;
/* 2503 */ 	padding: 2px;
/* 2504 */ }
/* 2505 */
/* 2506 */ .no-comments,
/* 2507 */ .comment-awaiting-moderation {
/* 2508 */ 	color: #767676;
/* 2509 */ 	font-size: 14px;
/* 2510 */ 	font-size: 0.875rem;
/* 2511 */ 	font-style: italic;
/* 2512 */ }
/* 2513 */
/* 2514 */ .comments-pagination {
/* 2515 */ 	margin: 2em 0 3em;
/* 2516 */ }
/* 2517 */
/* 2518 */ .form-submit {
/* 2519 */ 	text-align: right;
/* 2520 */ }
/* 2521 */
/* 2522 */ .comment-form #wp-comment-cookies-consent {
/* 2523 */ 	margin: 0 10px 0 0;
/* 2524 */ }
/* 2525 */
/* 2526 */ .comment-form .comment-form-cookies-consent label {
/* 2527 */ 	display: inline;
/* 2528 */ }
/* 2529 */
/* 2530 */ /*--------------------------------------------------------------
/* 2531 *| 15.0 Widgets
/* 2532 *| --------------------------------------------------------------*/
/* 2533 */
/* 2534 */ #secondary {
/* 2535 */ 	padding: 1em 0 2em;
/* 2536 */ }
/* 2537 */
/* 2538 */ .widget {
/* 2539 */ 	padding-bottom: 3em;
/* 2540 */ }
/* 2541 */
/* 2542 */ h2.widget-title {
/* 2543 */ 	color: #222;
/* 2544 */ 	font-size: 13px;
/* 2545 */ 	font-size: 0.8125rem;
/* 2546 */ 	font-weight: 800;
/* 2547 */ 	letter-spacing: 0.1818em;
/* 2548 */ 	margin-bottom: 1.5em;
/* 2549 */ 	text-transform: uppercase;
/* 2550 */ }

/* style.css */

/* 2551 */
/* 2552 */ .widget-title a {
/* 2553 */ 	color: inherit;
/* 2554 */ }
/* 2555 */
/* 2556 */ /* widget forms */
/* 2557 */
/* 2558 */ .widget select {
/* 2559 */ 	width: 100%;
/* 2560 */ }
/* 2561 */
/* 2562 */
/* 2563 */ /* widget lists */
/* 2564 */
/* 2565 */ .widget ul {
/* 2566 */ 	list-style: none;
/* 2567 */ 	margin: 0;
/* 2568 */ }
/* 2569 */
/* 2570 */ .widget ul li,
/* 2571 */ .widget ol li {
/* 2572 */ 	border-bottom: 1px solid #ddd;
/* 2573 */ 	border-top: 1px solid #ddd;
/* 2574 */ 	padding: 0.5em 0;
/* 2575 */ }
/* 2576 */
/* 2577 */ .widget:not(.widget_tag_cloud) ul li + li {
/* 2578 */ 	margin-top: -1px;
/* 2579 */ }
/* 2580 */
/* 2581 */ .widget ul li ul {
/* 2582 */ 	margin: 0 0 -1px;
/* 2583 */ 	padding: 0;
/* 2584 */ 	position: relative;
/* 2585 */ }
/* 2586 */
/* 2587 */ .widget ul li li {
/* 2588 */ 	border: 0;
/* 2589 */ 	padding-left: 24px;
/* 2590 */ 	padding-left: 1.5rem;
/* 2591 */ }
/* 2592 */
/* 2593 */ /* Widget lists of links */
/* 2594 */
/* 2595 */ .widget_top-posts ul li ul,
/* 2596 */ .widget_rss_links ul li ul,
/* 2597 */ .widget-grofile ul.grofile-links li ul,
/* 2598 */ .widget_pages ul li ul,
/* 2599 */ .widget_meta ul li ul {
/* 2600 */ 	bottom: 0;

/* style.css */

/* 2601 */ }
/* 2602 */
/* 2603 */ .widget_nav_menu ul li li,
/* 2604 */ .widget_top-posts ul li,
/* 2605 */ .widget_top-posts ul li li,
/* 2606 */ .widget_rss_links ul li,
/* 2607 */ .widget_rss_links ul li li,
/* 2608 */ .widget-grofile ul.grofile-links li,
/* 2609 */ .widget-grofile ul.grofile-links li li {
/* 2610 */ 	padding-bottom: 0.25em;
/* 2611 */ 	padding-top: 0.25em;
/* 2612 */ }
/* 2613 */
/* 2614 */ .widget_rss ul li {
/* 2615 */ 	padding-bottom: 1em;
/* 2616 */ 	padding-top: 1em;
/* 2617 */ }
/* 2618 */
/* 2619 */ /* Widget markup */
/* 2620 */
/* 2621 */ .widget .post-date,
/* 2622 */ .widget .rss-date {
/* 2623 */ 	font-size: 0.81em;
/* 2624 */ }
/* 2625 */
/* 2626 */ /* Text widget */
/* 2627 */
/* 2628 */ .widget_text {
/* 2629 */ 	word-wrap: break-word;
/* 2630 */ }
/* 2631 */
/* 2632 */ .widget_text ul {
/* 2633 */ 	list-style: disc;
/* 2634 */ 	margin: 0 0 1.5em 1.5em;
/* 2635 */ }
/* 2636 */
/* 2637 */ .widget_text ol {
/* 2638 */ 	list-style: decimal;
/* 2639 */ }
/* 2640 */
/* 2641 */ .widget_text ul li,
/* 2642 */ .widget_text ol li {
/* 2643 */ 	border: none;
/* 2644 */ }
/* 2645 */
/* 2646 */ .widget_text ul li:last-child,
/* 2647 */ .widget_text ol li:last-child {
/* 2648 */ 	padding-bottom: 0;
/* 2649 */ }
/* 2650 */

/* style.css */

/* 2651 */ .widget_text ul li ul {
/* 2652 */ 	margin: 0 0 0 1.5em;
/* 2653 */ }
/* 2654 */
/* 2655 */ .widget_text ul li li {
/* 2656 */ 	padding-left: 0;
/* 2657 */ 	padding-right: 0;
/* 2658 */ }
/* 2659 */
/* 2660 */ .widget_text ol li {
/* 2661 */ 	list-style-position: inside;
/* 2662 */ }
/* 2663 */
/* 2664 */ .widget_text ol li + li {
/* 2665 */ 	margin-top: -1px;
/* 2666 */ }
/* 2667 */
/* 2668 */ /* RSS Widget */
/* 2669 */
/* 2670 */ .widget_rss .widget-title .rsswidget:first-child:not(.rss-widget-title) {
/* 2671 */ 	float: right;
/* 2672 */ }
/* 2673 */
/* 2674 */ .widget_rss .widget-title .rsswidget:first-child:hover {
/* 2675 */ 	background-color: transparent;
/* 2676 */ }
/* 2677 */
/* 2678 */ .widget_rss .widget-title .rsswidget:first-child img {
/* 2679 */ 	display: block;
/* 2680 */ }
/* 2681 */
/* 2682 */ .widget_rss ul li {
/* 2683 */ 	padding: 2.125em 0;
/* 2684 */ }
/* 2685 */
/* 2686 */ .widget_rss ul li:first-child {
/* 2687 */ 	border-top: none;
/* 2688 */ 	padding-top: 0;
/* 2689 */ }
/* 2690 */
/* 2691 */ .widget_rss li .rsswidget {
/* 2692 */ 	font-size: 22px;
/* 2693 */ 	font-size: 1.375rem;
/* 2694 */ 	font-weight: 300;
/* 2695 */ 	line-height: 1.4;
/* 2696 */ }
/* 2697 */
/* 2698 */ .widget_rss .rss-date,
/* 2699 */ .widget_rss li cite {
/* 2700 */ 	color: #767676;

/* style.css */

/* 2701 */ 	display: block;
/* 2702 */ 	font-size: 10px;
/* 2703 */ 	font-size: 0.625rem;
/* 2704 */ 	font-style: normal;
/* 2705 */ 	font-weight: 800;
/* 2706 */ 	letter-spacing: 0.18em;
/* 2707 */ 	line-height: 1.5;
/* 2708 */ 	text-transform: uppercase;
/* 2709 */ }
/* 2710 */
/* 2711 */ .widget_rss .rss-date {
/* 2712 */ 	margin: 0.5em 0 1.5em;
/* 2713 */ 	padding: 0;
/* 2714 */ }
/* 2715 */
/* 2716 */ .widget_rss .rssSummary {
/* 2717 */ 	margin-bottom: 0.5em;
/* 2718 */ }
/* 2719 */
/* 2720 */ /* Contact Info Widget */
/* 2721 */
/* 2722 */ .widget_contact_info .contact-map {
/* 2723 */ 	margin-bottom: 0.5em;
/* 2724 */ }
/* 2725 */
/* 2726 */ /* Gravatar */
/* 2727 */
/* 2728 */ .widget-grofile h4 {
/* 2729 */ 	font-size: 16px;
/* 2730 */ 	font-size: 1rem;
/* 2731 */ 	margin-bottom: 0;
/* 2732 */ }
/* 2733 */
/* 2734 */ /* Recent Comments */
/* 2735 */
/* 2736 */ .widget_recent_comments table,
/* 2737 */ .widget_recent_comments th,
/* 2738 */ .widget_recent_comments td {
/* 2739 */ 	border: 0;
/* 2740 */ }
/* 2741 */
/* 2742 */ /* Recent Posts widget */
/* 2743 */
/* 2744 */ .widget_recent_entries .post-date {
/* 2745 */ 	display: block;
/* 2746 */ }
/* 2747 */
/* 2748 */ /* Search */
/* 2749 */
/* 2750 */ .search-form {

/* style.css */

/* 2751 */ 	position: relative;
/* 2752 */ }
/* 2753 */
/* 2754 */ .search-form .search-submit {
/* 2755 */ 	bottom: 3px;
/* 2756 */ 	padding: 0.5em 1em;
/* 2757 */ 	position: absolute;
/* 2758 */ 	right: 3px;
/* 2759 */ 	top: 3px;
/* 2760 */ }
/* 2761 */
/* 2762 */ .search-form .search-submit .icon {
/* 2763 */ 	height: 24px;
/* 2764 */ 	top: -2px;
/* 2765 */ 	width: 24px;
/* 2766 */ }
/* 2767 */
/* 2768 */ /* Tag cloud widget */
/* 2769 */
/* 2770 */ .tagcloud ul li {
/* 2771 */ 	float: left;
/* 2772 */ 	border-top: 0;
/* 2773 */ 	border-bottom: 0;
/* 2774 */ 	padding: 0;
/* 2775 */ 	margin: 4px 4px 0 0;
/* 2776 */ }
/* 2777 */
/* 2778 */ .tagcloud,
/* 2779 */ .widget_tag_cloud,
/* 2780 */ .wp_widget_tag_cloud {
/* 2781 */ 	line-height: 1.5;
/* 2782 */ }
/* 2783 */
/* 2784 */ .widget .tagcloud a,
/* 2785 */ .widget.widget_tag_cloud a,
/* 2786 */ .wp_widget_tag_cloud a {
/* 2787 */ 	border: 1px solid #ddd;
/* 2788 */ 	-webkit-box-shadow: none;
/* 2789 */ 	box-shadow: none;
/* 2790 */ 	display: block;
/* 2791 */ 	padding: 4px 10px 5px;
/* 2792 */ 	position: relative;
/* 2793 */ 	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 2794 */ 	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 2795 */ 	width: auto;
/* 2796 */ 	word-wrap: break-word;
/* 2797 */ 	z-index: 0;
/* 2798 */ }
/* 2799 */
/* 2800 */ .widget .tagcloud a:hover,

/* style.css */

/* 2801 */ .widget .tagcloud a:focus,
/* 2802 */ .widget.widget_tag_cloud a:hover,
/* 2803 */ .widget.widget_tag_cloud a:focus,
/* 2804 */ .wp_widget_tag_cloud a:hover,
/* 2805 */ .wp_widget_tag_cloud a:focus {
/* 2806 */ 	border-color: #bbb;
/* 2807 */ 	-webkit-box-shadow: none;
/* 2808 */ 	box-shadow: none;
/* 2809 */ 	text-decoration: none;
/* 2810 */ }
/* 2811 */
/* 2812 */ /* Calendar widget */
/* 2813 */
/* 2814 */ .widget_calendar .wp-calendar-table {
/* 2815 */ 	margin-bottom: 0;
/* 2816 */ }
/* 2817 */
/* 2818 */ .widget_calendar .wp-calendar-nav {
/* 2819 */ 	display: table;
/* 2820 */ 	width: 100%;
/* 2821 */ 	margin: 0 0 1.5em;
/* 2822 */ 	padding: 0.4em 0;
/* 2823 */ }
/* 2824 */
/* 2825 */ .widget_calendar .wp-calendar-nav span {
/* 2826 */ 	display: table-cell;
/* 2827 */ }
/* 2828 */
/* 2829 */ .widget_calendar .wp-calendar-nav-prev,
/* 2830 */ .widget_calendar .wp-calendar-nav-next {
/* 2831 */ 	width: 40%;
/* 2832 */ }
/* 2833 */
/* 2834 */ .widget_calendar th,
/* 2835 */ .widget_calendar td,
/* 2836 */ .widget_calendar .wp-calendar-nav span {
/* 2837 */ 	text-align: center;
/* 2838 */ }
/* 2839 */
/* 2840 */ .widget_calendar tfoot td {
/* 2841 */ 	border: 0;
/* 2842 */ }
/* 2843 */
/* 2844 */ /* Gallery widget */
/* 2845 */
/* 2846 */ .gallery-columns-5 .gallery-caption,
/* 2847 */ .gallery-columns-6 .gallery-caption,
/* 2848 */ .gallery-columns-7 .gallery-caption,
/* 2849 */ .gallery-columns-8 .gallery-caption,
/* 2850 */ .gallery-columns-9 .gallery-caption {

/* style.css */

/* 2851 */ 	display: none;
/* 2852 */ }
/* 2853 */
/* 2854 */ /*--------------------------------------------------------------
/* 2855 *| 16.0 Media
/* 2856 *| --------------------------------------------------------------*/
/* 2857 */
/* 2858 */ img,
/* 2859 */ video {
/* 2860 */ 	height: auto; /* Make sure images are scaled correctly. */
/* 2861 */ 	max-width: 100%; /* Adhere to container width. */
/* 2862 */ }
/* 2863 */
/* 2864 */ img.alignleft,
/* 2865 */ img.alignright {
/* 2866 */ 	float: none;
/* 2867 */ 	margin: 0;
/* 2868 */ }
/* 2869 */
/* 2870 */ .page-content .wp-smiley,
/* 2871 */ .entry-content .wp-smiley,
/* 2872 */ .comment-content .wp-smiley {
/* 2873 */ 	border: none;
/* 2874 */ 	margin-bottom: 0;
/* 2875 */ 	margin-top: 0;
/* 2876 */ 	padding: 0;
/* 2877 */ }
/* 2878 */
/* 2879 */ audio:focus,
/* 2880 */ video:focus {
/* 2881 */ 	outline: thin dotted;
/* 2882 */ }
/* 2883 */
/* 2884 */ /* Make sure embeds and iframes fit their containers. */
/* 2885 */
/* 2886 */ embed,
/* 2887 */ iframe,
/* 2888 */ object {
/* 2889 */ 	margin-bottom: 1.5em;
/* 2890 */ 	max-width: 100%;
/* 2891 */ }
/* 2892 */
/* 2893 */ /* Remove bottom on embeds that wrapped in paragraphs via wpautop. */
/* 2894 */
/* 2895 */ p > embed:only-child,
/* 2896 */ p > iframe:only-child,
/* 2897 */ p > object:only-child {
/* 2898 */ 	margin-bottom: 0;
/* 2899 */ }
/* 2900 */

/* style.css */

/* 2901 */ .wp-caption,
/* 2902 */ .gallery-caption {
/* 2903 */ 	color: #666;
/* 2904 */ 	font-size: 13px;
/* 2905 */ 	font-size: 0.8125rem;
/* 2906 */ 	font-style: italic;
/* 2907 */ 	margin-bottom: 1.5em;
/* 2908 */ 	max-width: 100%;
/* 2909 */ }
/* 2910 */
/* 2911 */ .wp-caption img[class*="wp-image-"] {
/* 2912 */ 	display: block;
/* 2913 */ 	margin-left: auto;
/* 2914 */ 	margin-right: auto;
/* 2915 */ }
/* 2916 */
/* 2917 */ .wp-caption .wp-caption-text {
/* 2918 */ 	margin: 0.8075em 0;
/* 2919 */ }
/* 2920 */
/* 2921 */ /* Media Elements */
/* 2922 */
/* 2923 */ .mejs-container {
/* 2924 */ 	margin-bottom: 1.5em;
/* 2925 */ }
/* 2926 */
/* 2927 */ /* Audio Player */
/* 2928 */
/* 2929 */ .mejs-controls a.mejs-horizontal-volume-slider,
/* 2930 */ .mejs-controls a.mejs-horizontal-volume-slider:focus,
/* 2931 */ .mejs-controls a.mejs-horizontal-volume-slider:hover {
/* 2932 */ 	background: transparent;
/* 2933 */ 	border: 0;
/* 2934 */ }
/* 2935 */
/* 2936 */ /* Playlist Color Overrides: Light */
/* 2937 */
/* 2938 */ .site-content .wp-playlist-light {
/* 2939 */ 	border-color: #eee;
/* 2940 */ 	color: #222;
/* 2941 */ }
/* 2942 */
/* 2943 */ .site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-album {
/* 2944 */ 	color: #333;
/* 2945 */ }
/* 2946 */
/* 2947 */ .site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-artist {
/* 2948 */ 	color: #767676;
/* 2949 */ }
/* 2950 */

/* style.css */

/* 2951 */ .site-content .wp-playlist-light .wp-playlist-item {
/* 2952 */ 	border-bottom: 1px dotted #eee;
/* 2953 */ 	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 2954 */ 	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 2955 */ }
/* 2956 */
/* 2957 */ .site-content .wp-playlist-light .wp-playlist-item:hover,
/* 2958 */ .site-content .wp-playlist-light .wp-playlist-item:focus {
/* 2959 */ 	border-bottom-color: rgba(0, 0, 0, 0);
/* 2960 */ 	background-color: #767676;
/* 2961 */ 	color: #fff;
/* 2962 */ }
/* 2963 */
/* 2964 */ .site-content .wp-playlist-light a.wp-playlist-caption:hover,
/* 2965 */ .site-content .wp-playlist-light .wp-playlist-item:hover a,
/* 2966 */ .site-content .wp-playlist-light .wp-playlist-item:focus a {
/* 2967 */ 	color: #fff;
/* 2968 */ }
/* 2969 */
/* 2970 */ /* Playlist Color Overrides: Dark */
/* 2971 */
/* 2972 */ .site-content .wp-playlist-dark {
/* 2973 */ 	background: #222;
/* 2974 */ 	border-color: #333;
/* 2975 */ }
/* 2976 */
/* 2977 */ .site-content .wp-playlist-dark .mejs-container .mejs-controls {
/* 2978 */ 	background-color: #333;
/* 2979 */ }
/* 2980 */
/* 2981 */ .site-content .wp-playlist-dark .wp-playlist-caption {
/* 2982 */ 	color: #fff;
/* 2983 */ }
/* 2984 */
/* 2985 */ .site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-album {
/* 2986 */ 	color: #eee;
/* 2987 */ }
/* 2988 */
/* 2989 */ .site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-artist {
/* 2990 */ 	color: #aaa;
/* 2991 */ }
/* 2992 */
/* 2993 */ .site-content .wp-playlist-dark .wp-playlist-playing {
/* 2994 */ 	background-color: #333;
/* 2995 */ }
/* 2996 */
/* 2997 */ .site-content .wp-playlist-dark .wp-playlist-item {
/* 2998 */ 	border-bottom: 1px dotted #555;
/* 2999 */ 	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
/* 3000 */ 	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;

/* style.css */

/* 3001 */ }
/* 3002 */
/* 3003 */ .site-content .wp-playlist-dark .wp-playlist-item:hover,
/* 3004 */ .site-content .wp-playlist-dark .wp-playlist-item:focus {
/* 3005 */ 	border-bottom-color: rgba(0, 0, 0, 0);
/* 3006 */ 	background-color: #aaa;
/* 3007 */ 	color: #222;
/* 3008 */ }
/* 3009 */
/* 3010 */ .site-content .wp-playlist-dark a.wp-playlist-caption:hover,
/* 3011 */ .site-content .wp-playlist-dark .wp-playlist-item:hover a,
/* 3012 */ .site-content .wp-playlist-dark .wp-playlist-item:focus a {
/* 3013 */ 	color: #222;
/* 3014 */ }
/* 3015 */
/* 3016 */ /* Playlist Style Overrides */
/* 3017 */
/* 3018 */ .site-content .wp-playlist {
/* 3019 */ 	padding: 0.625em 0.625em 0.3125em;
/* 3020 */ }
/* 3021 */
/* 3022 */ .site-content .wp-playlist-current-item .wp-playlist-item-title {
/* 3023 */ 	font-weight: 700;
/* 3024 */ }
/* 3025 */
/* 3026 */ .site-content .wp-playlist-current-item .wp-playlist-item-album {
/* 3027 */ 	font-style: normal;
/* 3028 */ }
/* 3029 */
/* 3030 */ .site-content .wp-playlist-current-item .wp-playlist-item-artist {
/* 3031 */ 	font-size: 10px;
/* 3032 */ 	font-size: 0.625rem;
/* 3033 */ 	font-weight: 800;
/* 3034 */ 	letter-spacing: 0.1818em;
/* 3035 */ 	text-transform: uppercase;
/* 3036 */ }
/* 3037 */
/* 3038 */ .site-content .wp-playlist-item {
/* 3039 */ 	padding: 0 0.3125em;
/* 3040 */ 	cursor: pointer;
/* 3041 */ }
/* 3042 */
/* 3043 */ .site-content .wp-playlist-item:last-of-type {
/* 3044 */ 	border-bottom: none;
/* 3045 */ }
/* 3046 */
/* 3047 */ .site-content .wp-playlist-item a {
/* 3048 */ 	padding: 0.3125em 0;
/* 3049 */ 	border-bottom: none;
/* 3050 */ }

/* style.css */

/* 3051 */
/* 3052 */ .site-content .wp-playlist-item a,
/* 3053 */ .site-content .wp-playlist-item a:focus,
/* 3054 */ .site-content .wp-playlist-item a:hover {
/* 3055 */ 	-webkit-box-shadow: none;
/* 3056 */ 	box-shadow: none;
/* 3057 */ 	background: transparent;
/* 3058 */ }
/* 3059 */
/* 3060 */ .site-content .wp-playlist-item-length {
/* 3061 */ 	top: 5px;
/* 3062 */ }
/* 3063 */
/* 3064 */ /* SVG Icons base styles */
/* 3065 */
/* 3066 */ .icon {
/* 3067 */ 	display: inline-block;
/* 3068 */ 	fill: currentColor;
/* 3069 */ 	height: 1em;
/* 3070 */ 	position: relative; /* Align more nicely with capital letters */
/* 3071 */ 	top: -0.0625em;
/* 3072 */ 	vertical-align: middle;
/* 3073 */ 	width: 1em;
/* 3074 */ }
/* 3075 */
/* 3076 */ /*--------------------------------------------------------------
/* 3077 *| 16.1 Galleries
/* 3078 *| --------------------------------------------------------------*/
/* 3079 */
/* 3080 */ .gallery-item {
/* 3081 */ 	display: inline-block;
/* 3082 */ 	text-align: left;
/* 3083 */ 	vertical-align: top;
/* 3084 */ 	margin: 0 0 1.5em;
/* 3085 */ 	padding: 0 1em 0 0;
/* 3086 */ 	width: 50%;
/* 3087 */ }
/* 3088 */
/* 3089 */ .gallery-columns-1 .gallery-item {
/* 3090 */ 	width: 100%;
/* 3091 */ }
/* 3092 */
/* 3093 */ .gallery-columns-2 .gallery-item {
/* 3094 */ 	max-width: 50%;
/* 3095 */ }
/* 3096 */
/* 3097 */ .gallery-item a,
/* 3098 */ .gallery-item a:hover,
/* 3099 */ .gallery-item a:focus,
/* 3100 */ .widget-area .gallery-item a,

/* style.css */

/* 3101 */ .widget-area .gallery-item a:hover,
/* 3102 */ .widget-area .gallery-item a:focus {
/* 3103 */ 	-webkit-box-shadow: none;
/* 3104 */ 	box-shadow: none;
/* 3105 */ 	background: none;
/* 3106 */ 	display: inline-block;
/* 3107 */ 	max-width: 100%;
/* 3108 */ }
/* 3109 */
/* 3110 */ .gallery-item a img {
/* 3111 */ 	display: block;
/* 3112 */ 	-webkit-transition: -webkit-filter 0.2s ease-in;
/* 3113 */ 	transition: -webkit-filter 0.2s ease-in;
/* 3114 */ 	transition: filter 0.2s ease-in;
/* 3115 */ 	transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
/* 3116 */ 	-webkit-backface-visibility: hidden;
/* 3117 */ 	backface-visibility: hidden;
/* 3118 */ }
/* 3119 */
/* 3120 */ .gallery-item a:hover img,
/* 3121 */ .gallery-item a:focus img {
/* 3122 */ 	-webkit-filter: opacity(60%);
/* 3123 */ 	filter: opacity(60%);
/* 3124 */ }
/* 3125 */
/* 3126 */ .gallery-caption {
/* 3127 */ 	display: block;
/* 3128 */ 	text-align: left;
/* 3129 */ 	padding: 0 10px 0 0;
/* 3130 */ 	margin-bottom: 0;
/* 3131 */ }
/* 3132 */
/* 3133 */ /*--------------------------------------------------------------
/* 3134 *| 17.0 Customizer
/* 3135 *| --------------------------------------------------------------*/
/* 3136 */
/* 3137 */ .highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel:after {
/* 3138 */ 	border: 2px dashed #0085ba; /* Matches visible edit shortcuts. */
/* 3139 */ 	bottom: 1em;
/* 3140 */ 	content: "";
/* 3141 */ 	display: block;
/* 3142 */ 	left: 1em;
/* 3143 */ 	position: absolute;
/* 3144 */ 	right: 1em;
/* 3145 */ 	top: 1em;
/* 3146 */ 	z-index: 1;
/* 3147 */ }
/* 3148 */
/* 3149 */ .highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel .panel-content {
/* 3150 */ 	z-index: 2; /* Prevent :after from preventing interactions within the section */

/* style.css */

/* 3151 */ }
/* 3152 */
/* 3153 */ /* Used for placeholder text */
/* 3154 */ .twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel .twentyseventeen-panel-title {
/* 3155 */ 	display: block;
/* 3156 */ 	font-size: 14px;
/* 3157 */ 	font-size: 0.875rem;
/* 3158 */ 	font-weight: 700;
/* 3159 */ 	letter-spacing: 1px;
/* 3160 */ 	padding: 3em;
/* 3161 */ 	text-transform: uppercase;
/* 3162 */ 	text-align: center;
/* 3163 */ }
/* 3164 */
/* 3165 */ /* Show borders on the custom page panels only when the front page sections are being edited */
/* 3166 */ .highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel:nth-of-type(1):after {
/* 3167 */ 	border: none;
/* 3168 */ }
/* 3169 */
/* 3170 */ .twentyseventeen-front-page.twentyseventeen-customizer #primary article.panel-placeholder {
/* 3171 */ 	border: 0;
/* 3172 */ }
/* 3173 */
/* 3174 */ /* Add some space around the visual edit shortcut buttons. */
/* 3175 */ .twentyseventeen-panel > .customize-partial-edit-shortcut > button {
/* 3176 */ 	top: 30px;
/* 3177 */ 	left: 30px;
/* 3178 */ }
/* 3179 */
/* 3180 */ /* Ensure that placeholder icons are visible. */
/* 3181 */ .twentyseventeen-panel .customize-partial-edit-shortcut-hidden:before {
/* 3182 */ 	visibility: visible;
/* 3183 */ }
/* 3184 */
/* 3185 */ /*--------------------------------------------------------------
/* 3186 *| 18.0 SVGs Fallbacks
/* 3187 *| --------------------------------------------------------------*/
/* 3188 */
/* 3189 */ .svg-fallback {
/* 3190 */ 	display: none;
/* 3191 */ }
/* 3192 */
/* 3193 */ .no-svg .svg-fallback {
/* 3194 */ 	display: inline-block;
/* 3195 */ }
/* 3196 */
/* 3197 */ .no-svg .dropdown-toggle {
/* 3198 */ 	padding: 0.5em 0 0;
/* 3199 */ 	right: 0;
/* 3200 */ 	text-align: center;

/* style.css */

/* 3201 */ 	width: 2em;
/* 3202 */ }
/* 3203 */
/* 3204 */ .no-svg .dropdown-toggle .svg-fallback.icon-angle-down {
/* 3205 */ 	font-size: 20px;
/* 3206 */ 	font-size: 1.25rem;
/* 3207 */ 	font-weight: 400;
/* 3208 */ 	line-height: 1;
/* 3209 */ 	-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
/* 3210 */ 	-ms-transform: rotate(180deg); /* IE 9 */
/* 3211 */ 	transform: rotate(180deg);
/* 3212 */ }
/* 3213 */
/* 3214 */ .no-svg .dropdown-toggle.toggled-on .svg-fallback.icon-angle-down {
/* 3215 */ 	-webkit-transform: rotate(0); /* Chrome, Safari, Opera */
/* 3216 */ 	-ms-transform: rotate(0); /* IE 9 */
/* 3217 */ 	transform: rotate(0);
/* 3218 */ }
/* 3219 */
/* 3220 */ .no-svg .dropdown-toggle .svg-fallback.icon-angle-down:before {
/* 3221 */ 	content: "\005E";
/* 3222 */ }
/* 3223 */
/* 3224 */ /* Social Menu fallbacks */
/* 3225 */
/* 3226 */ .no-svg .social-navigation a {
/* 3227 */ 	background: transparent;
/* 3228 */ 	color: #222;
/* 3229 */ 	height: auto;
/* 3230 */ 	width: auto;
/* 3231 */ }
/* 3232 */
/* 3233 */ /* Show screen reader text in some cases */
/* 3234 */
/* 3235 */ .no-svg .next.page-numbers .screen-reader-text,
/* 3236 */ .no-svg .prev.page-numbers .screen-reader-text,
/* 3237 */ .no-svg .social-navigation li a .screen-reader-text,
/* 3238 */ .no-svg .search-submit .screen-reader-text {
/* 3239 */ 	clip-path: none;
/* 3240 */ 	font-size: 16px;
/* 3241 */ 	font-size: 1rem;
/* 3242 */ 	font-weight: 400;
/* 3243 */ 	height: auto;
/* 3244 */ 	position: relative !important; /* overrides previous !important styles */
/* 3245 */ 	width: auto;
/* 3246 */ }
/* 3247 */
/* 3248 */ /*--------------------------------------------------------------
/* 3249 *| 19.0 Media Queries
/* 3250 *| --------------------------------------------------------------*/

/* style.css */

/* 3251 */
/* 3252 */ /* Adjust positioning of edit shortcuts, override style in customize-preview.css */
/* 3253 */ @media screen and (min-width: 20em) {
/* 3254 */
/* 3255 */ 	body.customize-partial-edit-shortcuts-shown .site-header .site-title {
/* 3256 */ 		padding-left: 0;
/* 3257 */ 	}
/* 3258 */ }
/* 3259 */
/* 3260 */ @media screen and (min-width: 30em) {
/* 3261 */
/* 3262 */ 	/* Typography */
/* 3263 */
/* 3264 */ 	body,
/* 3265 */ 	button,
/* 3266 */ 	input,
/* 3267 */ 	select,
/* 3268 */ 	textarea {
/* 3269 */ 		font-size: 18px;
/* 3270 */ 		font-size: 1.125rem;
/* 3271 */ 	}
/* 3272 */
/* 3273 */ 	h1 {
/* 3274 */ 		font-size: 30px;
/* 3275 */ 		font-size: 1.875rem;
/* 3276 */ 	}
/* 3277 */
/* 3278 */ 	h2,
/* 3279 */ 	.home.blog .entry-title,
/* 3280 */ 	.page .panel-content .recent-posts .entry-title {
/* 3281 */ 		font-size: 26px;
/* 3282 */ 		font-size: 1.625rem;
/* 3283 */ 	}
/* 3284 */
/* 3285 */ 	h3 {
/* 3286 */ 		font-size: 22px;
/* 3287 */ 		font-size: 1.375rem;
/* 3288 */ 	}
/* 3289 */
/* 3290 */ 	h4 {
/* 3291 */ 		font-size: 18px;
/* 3292 */ 		font-size: 1.125rem;
/* 3293 */ 	}
/* 3294 */
/* 3295 */ 	h5 {
/* 3296 */ 		font-size: 13px;
/* 3297 */ 		font-size: 0.8125rem;
/* 3298 */ 	}
/* 3299 */
/* 3300 */ 	h6 {

/* style.css */

/* 3301 */ 		font-size: 16px;
/* 3302 */ 		font-size: 1rem;
/* 3303 */ 	}
/* 3304 */
/* 3305 */ 	.entry-content blockquote.alignleft,
/* 3306 */ 	.entry-content blockquote.alignright {
/* 3307 */ 		font-size: 14px;
/* 3308 */ 		font-size: 0.875rem;
/* 3309 */ 	}
/* 3310 */
/* 3311 */ 	/* Fix image alignment */
/* 3312 */ 	img.alignleft {
/* 3313 */ 		float: left;
/* 3314 */ 		margin-right: 1.5em;
/* 3315 */ 	}
/* 3316 */
/* 3317 */ 	img.alignright {
/* 3318 */ 		float: right;
/* 3319 */ 		margin-left: 1.5em;
/* 3320 */ 	}
/* 3321 */
/* 3322 */ 	/* Site Branding */
/* 3323 */
/* 3324 */ 	.site-branding {
/* 3325 */ 		padding: 3em 0;
/* 3326 */ 	}
/* 3327 */
/* 3328 */ 	/* Front Page */
/* 3329 */
/* 3330 */ 	.panel-content .wrap {
/* 3331 */ 		padding-bottom: 2em;
/* 3332 */ 		padding-top: 3.5em;
/* 3333 */ 	}
/* 3334 */
/* 3335 */ 	.page-one-column .panel-content .wrap {
/* 3336 */ 		max-width: 740px;
/* 3337 */ 	}
/* 3338 */
/* 3339 */ 	.panel-content .entry-header {
/* 3340 */ 		margin-bottom: 4.5em;
/* 3341 */ 	}
/* 3342 */
/* 3343 */ 	.panel-content .recent-posts .entry-header {
/* 3344 */ 		margin-bottom: 0;
/* 3345 */ 	}
/* 3346 */
/* 3347 */ 	/* Blog Index, Archive, Search */
/* 3348 */
/* 3349 */ 	.taxonomy-description {
/* 3350 */ 		font-size: 14px;

/* style.css */

/* 3351 */ 		font-size: 0.875rem;
/* 3352 */ 	}
/* 3353 */
/* 3354 */ 	.page-numbers.current {
/* 3355 */ 		font-size: 16px;
/* 3356 */ 		font-size: 1rem;
/* 3357 */ 	}
/* 3358 */
/* 3359 */ 	/* Site Footer */
/* 3360 */
/* 3361 */ 	.site-footer {
/* 3362 */ 		font-size: 16px;
/* 3363 */ 		font-size: 1rem;
/* 3364 */ 	}
/* 3365 */
/* 3366 */ 	/* Gallery Columns */
/* 3367 */
/* 3368 */ 	.gallery-item {
/* 3369 */ 		max-width: 25%;
/* 3370 */ 	}
/* 3371 */
/* 3372 */ 	.gallery-columns-1 .gallery-item {
/* 3373 */ 		max-width: 100%;
/* 3374 */ 	}
/* 3375 */
/* 3376 */ 	.gallery-columns-2 .gallery-item {
/* 3377 */ 		max-width: 50%;
/* 3378 */ 	}
/* 3379 */
/* 3380 */ 	.gallery-columns-3 .gallery-item {
/* 3381 */ 		max-width: 33.33%;
/* 3382 */ 	}
/* 3383 */
/* 3384 */ 	.gallery-columns-4 .gallery-item {
/* 3385 */ 		max-width: 25%;
/* 3386 */ 	}
/* 3387 */ }
/* 3388 */
/* 3389 */ @media screen and (min-width: 48em) {
/* 3390 */ 	html {
/* 3391 */ 		scroll-padding-top: calc( var(--wp-admin--admin-bar--height, 0px) + 72px );
/* 3392 */ 	}
/* 3393 */
/* 3394 */ 	/* Typography */
/* 3395 */
/* 3396 */ 	body,
/* 3397 */ 	button,
/* 3398 */ 	input,
/* 3399 */ 	select,
/* 3400 */ 	textarea {

/* style.css */

/* 3401 */ 		font-size: 16px;
/* 3402 */ 		font-size: 1rem;
/* 3403 */ 		line-height: 1.5;
/* 3404 */ 	}
/* 3405 */
/* 3406 */ 	.entry-content blockquote.alignleft,
/* 3407 */ 	.entry-content blockquote.alignright {
/* 3408 */ 		font-size: 13px;
/* 3409 */ 		font-size: 0.8125rem;
/* 3410 */ 	}
/* 3411 */
/* 3412 */ 	/* Layout */
/* 3413 */
/* 3414 */ 	.wrap {
/* 3415 */ 		max-width: 1000px;
/* 3416 */ 		padding-left: 3em;
/* 3417 */ 		padding-right: 3em;
/* 3418 */ 	}
/* 3419 */
/* 3420 */ 	.has-sidebar:not(.error404) #primary {
/* 3421 */ 		float: left;
/* 3422 */ 		width: 58%;
/* 3423 */ 	}
/* 3424 */
/* 3425 */ 	.has-sidebar #secondary {
/* 3426 */ 		float: right;
/* 3427 */ 		padding-top: 0;
/* 3428 */ 		width: 36%;
/* 3429 */ 	}
/* 3430 */
/* 3431 */ 	.error404 #primary {
/* 3432 */ 		float: none;
/* 3433 */ 	}
/* 3434 */
/* 3435 */ 	/* Site Branding */
/* 3436 */
/* 3437 */ 	.site-branding {
/* 3438 */ 		margin-bottom: 0;
/* 3439 */ 	}
/* 3440 */
/* 3441 */ 	.has-header-image.twentyseventeen-front-page .site-branding,
/* 3442 */ 	.has-header-video.twentyseventeen-front-page .site-branding,
/* 3443 */ 	.has-header-image.home.blog .site-branding,
/* 3444 */ 	.has-header-video.home.blog .site-branding {
/* 3445 */ 		bottom: 0;
/* 3446 */ 		display: block;
/* 3447 */ 		left: 0;
/* 3448 */ 		height: auto;
/* 3449 */ 		padding-top: 0;
/* 3450 */ 		position: absolute;

/* style.css */

/* 3451 */ 		width: 100%;
/* 3452 */ 	}
/* 3453 */
/* 3454 */ 	.has-header-image.twentyseventeen-front-page .custom-header,
/* 3455 */ 	.has-header-video.twentyseventeen-front-page .custom-header,
/* 3456 */ 	.has-header-image.home.blog .custom-header,
/* 3457 */ 	.has-header-video.home.blog .custom-header {
/* 3458 */ 		display: block;
/* 3459 */ 		height: auto;
/* 3460 */ 	}
/* 3461 */
/* 3462 */ 	.custom-header-media {
/* 3463 */ 		height: 165px;
/* 3464 */ 		position: relative;
/* 3465 */ 	}
/* 3466 */
/* 3467 */ 	.twentyseventeen-front-page.has-header-image .custom-header-media,
/* 3468 */ 	.twentyseventeen-front-page.has-header-video .custom-header-media,
/* 3469 */ 	.home.blog.has-header-image .custom-header-media,
/* 3470 */ 	.home.blog.has-header-video .custom-header-media {
/* 3471 */ 		height: 0;
/* 3472 */ 		position: relative;
/* 3473 */ 	}
/* 3474 */
/* 3475 */ 	.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media,
/* 3476 */ 	.has-header-video:not(.twentyseventeen-front-page):not(.home) .custom-header-media {
/* 3477 */ 		bottom: 0;
/* 3478 */ 		height: auto;
/* 3479 */ 		left: 0;
/* 3480 */ 		position: absolute;
/* 3481 */ 		right: 0;
/* 3482 */ 		top: 0;
/* 3483 */ 	}
/* 3484 */
/* 3485 */ 	.custom-logo-link {
/* 3486 */ 		padding-right: 2em;
/* 3487 */ 	}
/* 3488 */
/* 3489 */ 	.custom-logo-link img,
/* 3490 */ 	body.home.title-tagline-hidden.has-header-image .custom-logo-link img,
/* 3491 */ 	body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
/* 3492 */ 		max-width: 350px;
/* 3493 */ 	}
/* 3494 */
/* 3495 */ 	.title-tagline-hidden.home.has-header-image .custom-logo-link img,
/* 3496 */ 	.title-tagline-hidden.home.has-header-video .custom-logo-link img {
/* 3497 */ 		max-height: 200px;
/* 3498 */ 	}
/* 3499 */
/* 3500 */ 	.site-title {

/* style.css */

/* 3501 */ 		font-size: 36px;
/* 3502 */ 		font-size: 2.25rem;
/* 3503 */ 	}
/* 3504 */
/* 3505 */ 	.site-description {
/* 3506 */ 		font-size: 16px;
/* 3507 */ 		font-size: 1rem;
/* 3508 */ 	}
/* 3509 */
/* 3510 */ 	/* Navigation */
/* 3511 */
/* 3512 */ 	.navigation-top {
/* 3513 */ 		bottom: 0;
/* 3514 */ 		font-size: 14px;
/* 3515 */ 		font-size: 0.875rem;
/* 3516 */ 		left: 0;
/* 3517 */ 		position: absolute;
/* 3518 */ 		right: 0;
/* 3519 */ 		width: 100%;
/* 3520 */ 		z-index: 3;
/* 3521 */ 	}
/* 3522 */
/* 3523 */ 	.navigation-top .wrap {
/* 3524 */ 		max-width: 1000px;
/* 3525 */ 		/* The font size is 14px here and we need 50px padding in ems */
/* 3526 */ 		padding: 0.75em 3.4166666666667em;
/* 3527 */ 	}
/* 3528 */
/* 3529 */ 	.navigation-top nav {
/* 3530 */ 		margin-left: -1.25em;
/* 3531 */ 	}
/* 3532 */
/* 3533 */ 	.site-navigation-fixed.navigation-top {
/* 3534 */ 		bottom: auto;
/* 3535 */ 		position: fixed;
/* 3536 */ 		left: 0;
/* 3537 */ 		right: 0;
/* 3538 */ 		top: 0;
/* 3539 */ 		width: 100%;
/* 3540 */ 		z-index: 1000;
/* 3541 */ 	}
/* 3542 */
/* 3543 */ 	.admin-bar .site-navigation-fixed.navigation-top {
/* 3544 */ 		top: 32px;
/* 3545 */ 	}
/* 3546 */
/* 3547 */ 	/* Main Navigation */
/* 3548 */
/* 3549 */ 	.js .menu-toggle,
/* 3550 */ 	.js .dropdown-toggle {

/* style.css */

/* 3551 */ 		display: none;
/* 3552 */ 	}
/* 3553 */
/* 3554 */ 	.main-navigation {
/* 3555 */ 		width: auto;
/* 3556 */ 	}
/* 3557 */
/* 3558 */ 	.js .main-navigation ul,
/* 3559 */ 	.js .main-navigation ul ul,
/* 3560 */ 	.js .main-navigation > div > ul {
/* 3561 */ 		display: block;
/* 3562 */ 	}
/* 3563 */
/* 3564 */ 	.main-navigation ul {
/* 3565 */ 		background: transparent;
/* 3566 */ 		padding: 0;
/* 3567 */ 	}
/* 3568 */
/* 3569 */ 	.main-navigation > div > ul {
/* 3570 */ 		border: 0;
/* 3571 */ 		margin-bottom: 0;
/* 3572 */ 		padding: 0;
/* 3573 */ 	}
/* 3574 */
/* 3575 */ 	.main-navigation li {
/* 3576 */ 		border: 0;
/* 3577 */ 		display: inline-block;
/* 3578 */ 	}
/* 3579 */
/* 3580 */ 	.main-navigation li li {
/* 3581 */ 		display: block;
/* 3582 */ 	}
/* 3583 */
/* 3584 */ 	.main-navigation a {
/* 3585 */ 		padding: 1em 1.25em;
/* 3586 */ 	}
/* 3587 */
/* 3588 */ 	.main-navigation ul ul {
/* 3589 */ 		background: #fff;
/* 3590 */ 		border: 1px solid #bbb;
/* 3591 */ 		left: -999em;
/* 3592 */ 		padding: 0;
/* 3593 */ 		position: absolute;
/* 3594 */ 		top: 100%;
/* 3595 */ 		z-index: 99999;
/* 3596 */ 	}
/* 3597 */
/* 3598 */ 	.main-navigation ul li.menu-item-has-children:before,
/* 3599 */ 	.main-navigation ul li.menu-item-has-children:after,
/* 3600 */ 	.main-navigation ul li.page_item_has_children:before,

/* style.css */

/* 3601 */ 	.main-navigation ul li.page_item_has_children:after {
/* 3602 */ 		border-style: solid;
/* 3603 */ 		border-width: 0 6px 6px;
/* 3604 */ 		content: "";
/* 3605 */ 		display: none;
/* 3606 */ 		height: 0;
/* 3607 */ 		position: absolute;
/* 3608 */ 		right: 1em;
/* 3609 */ 		bottom: -1px;
/* 3610 */ 		width: 0;
/* 3611 */ 		z-index: 100000;
/* 3612 */ 	}
/* 3613 */
/* 3614 */ 	.main-navigation ul li.menu-item-has-children.focus:before,
/* 3615 */ 	.main-navigation ul li.menu-item-has-children:hover:before,
/* 3616 */ 	.main-navigation ul li.menu-item-has-children.focus:after,
/* 3617 */ 	.main-navigation ul li.menu-item-has-children:hover:after,
/* 3618 */ 	.main-navigation ul li.page_item_has_children.focus:before,
/* 3619 */ 	.main-navigation ul li.page_item_has_children:hover:before,
/* 3620 */ 	.main-navigation ul li.page_item_has_children.focus:after,
/* 3621 */ 	.main-navigation ul li.page_item_has_children:hover:after {
/* 3622 */ 		display: block;
/* 3623 */ 	}
/* 3624 */
/* 3625 */ 	.main-navigation ul li.menu-item-has-children:before,
/* 3626 */ 	.main-navigation ul li.page_item_has_children:before {
/* 3627 */ 		border-color: transparent transparent #bbb;
/* 3628 */ 		bottom: 0;
/* 3629 */ 	}
/* 3630 */
/* 3631 */ 	.main-navigation ul li.menu-item-has-children:after,
/* 3632 */ 	.main-navigation ul li.page_item_has_children:after {
/* 3633 */ 		border-color: transparent transparent #fff;
/* 3634 */ 	}
/* 3635 */
/* 3636 */ 	.main-navigation ul ul li:hover > ul,
/* 3637 */ 	.main-navigation ul ul li.focus > ul {
/* 3638 */ 		left: 100%;
/* 3639 */ 		right: auto;
/* 3640 */ 	}
/* 3641 */
/* 3642 */ 	.main-navigation ul ul a {
/* 3643 */ 		padding: 0.75em 1.25em;
/* 3644 */ 		width: 16em;
/* 3645 */ 	}
/* 3646 */
/* 3647 */ 	.main-navigation li li {
/* 3648 */ 		-webkit-transition: background-color 0.2s ease-in-out;
/* 3649 */ 		transition: background-color 0.2s ease-in-out;
/* 3650 */ 	}

/* style.css */

/* 3651 */
/* 3652 */ 	.main-navigation li li:hover,
/* 3653 */ 	.main-navigation li li.focus {
/* 3654 */ 		background: #767676;
/* 3655 */ 	}
/* 3656 */
/* 3657 */ 	.main-navigation li li a {
/* 3658 */ 		-webkit-transition: color 0.3s ease-in-out;
/* 3659 */ 		transition: color 0.3s ease-in-out;
/* 3660 */ 	}
/* 3661 */
/* 3662 */ 	.main-navigation li li.focus > a,
/* 3663 */ 	.main-navigation li li:focus > a,
/* 3664 */ 	.main-navigation li li:hover > a,
/* 3665 */ 	.main-navigation li li a:hover,
/* 3666 */ 	.main-navigation li li a:focus,
/* 3667 */ 	.main-navigation li li.current_page_item a:hover,
/* 3668 */ 	.main-navigation li li.current-menu-item a:hover,
/* 3669 */ 	.main-navigation li li.current_page_item a:focus,
/* 3670 */ 	.main-navigation li li.current-menu-item a:focus {
/* 3671 */ 		color: #fff;
/* 3672 */ 	}
/* 3673 */
/* 3674 */ 	.main-navigation ul li:hover > ul,
/* 3675 */ 	.main-navigation ul li.focus > ul {
/* 3676 */ 		left: 0.5em;
/* 3677 */ 		right: auto;
/* 3678 */ 	}
/* 3679 */
/* 3680 */ 	.main-navigation .menu-item-has-children > a > .icon,
/* 3681 */ 	.main-navigation .page_item_has_children > a > .icon {
/* 3682 */ 		display: inline;
/* 3683 */ 		left: 5px;
/* 3684 */ 		position: relative;
/* 3685 */ 		top: -1px;
/* 3686 */ 	}
/* 3687 */
/* 3688 */ 	.main-navigation ul ul .menu-item-has-children > a > .icon,
/* 3689 */ 	.main-navigation ul ul .page_item_has_children > a > .icon {
/* 3690 */ 		margin-top: -9px;
/* 3691 */ 		left: auto;
/* 3692 */ 		position: absolute;
/* 3693 */ 		right: 1em;
/* 3694 */ 		top: 50%;
/* 3695 */ 		-webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
/* 3696 */ 		-ms-transform: rotate(-90deg); /* IE 9 */
/* 3697 */ 		transform: rotate(-90deg);
/* 3698 */ 	}
/* 3699 */
/* 3700 */ 	.main-navigation ul ul ul {

/* style.css */

/* 3701 */ 		left: -999em;
/* 3702 */ 		margin-top: -1px;
/* 3703 */ 		top: 0;
/* 3704 */ 	}
/* 3705 */
/* 3706 */ 	.main-navigation ul ul li.menu-item-has-children.focus:before,
/* 3707 */ 	.main-navigation ul ul li.menu-item-has-children:hover:before,
/* 3708 */ 	.main-navigation ul ul li.menu-item-has-children.focus:after,
/* 3709 */ 	.main-navigation ul ul li.menu-item-has-children:hover:after,
/* 3710 */ 	.main-navigation ul ul li.page_item_has_children.focus:before,
/* 3711 */ 	.main-navigation ul ul li.page_item_has_children:hover:before,
/* 3712 */ 	.main-navigation ul ul li.page_item_has_children.focus:after,
/* 3713 */ 	.main-navigation ul ul li.page_item_has_children:hover:after {
/* 3714 */ 		display: none;
/* 3715 */ 	}
/* 3716 */
/* 3717 */ 	.site-header .site-navigation-fixed .menu-scroll-down {
/* 3718 */ 		display: none;
/* 3719 */ 	}
/* 3720 */
/* 3721 */ 	/* Scroll down arrow */
/* 3722 */
/* 3723 */ 	.site-header .menu-scroll-down {
/* 3724 */ 		display: block;
/* 3725 */ 		padding: 1em;
/* 3726 */ 		position: absolute;
/* 3727 */ 		right: 0;
/* 3728 */ 	}
/* 3729 */
/* 3730 */ 	.site-header .menu-scroll-down .icon {
/* 3731 */ 		-webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
/* 3732 */ 		-ms-transform: rotate(90deg); /* IE 9 */
/* 3733 */ 		transform: rotate(90deg);
/* 3734 */ 	}
/* 3735 */
/* 3736 */ 	.site-header .menu-scroll-down {
/* 3737 */ 		color: #fff;
/* 3738 */ 		top: 2em;
/* 3739 */ 	}
/* 3740 */
/* 3741 */ 	.site-header .navigation-top .menu-scroll-down {
/* 3742 */ 		color: #767676;
/* 3743 */ 		top: 0.7em;
/* 3744 */ 	}
/* 3745 */
/* 3746 */ 	.menu-scroll-down:focus {
/* 3747 */ 		outline: thin dotted;
/* 3748 */ 	}
/* 3749 */
/* 3750 */ 	.menu-scroll-down .icon {

/* style.css */

/* 3751 */ 		height: 18px;
/* 3752 */ 		width: 18px;
/* 3753 */ 	}
/* 3754 */
/* 3755 */ 	/* Front Page */
/* 3756 */
/* 3757 */ 	.twentyseventeen-front-page.has-header-image .site-branding,
/* 3758 */ 	.twentyseventeen-front-page.has-header-video .site-branding,
/* 3759 */ 	.home.blog.has-header-image .site-branding,
/* 3760 */ 	.home.blog.has-header-video .site-branding {
/* 3761 */ 		margin-bottom: 70px;
/* 3762 */ 	}
/* 3763 */
/* 3764 */ 	.twentyseventeen-front-page.has-header-image .custom-header-media,
/* 3765 */ 	.twentyseventeen-front-page.has-header-video .custom-header-media,
/* 3766 */ 	.home.blog.has-header-image .custom-header-media,
/* 3767 */ 	.home.blog.has-header-video .custom-header-media {
/* 3768 */ 		height: 1200px;
/* 3769 */ 		height: 100vh;
/* 3770 */ 		max-height: 100%;
/* 3771 */ 		overflow: hidden;
/* 3772 */ 	}
/* 3773 */
/* 3774 */ 	.twentyseventeen-front-page.has-header-image .custom-header-media:before,
/* 3775 */ 	.twentyseventeen-front-page.has-header-video .custom-header-media:before,
/* 3776 */ 	.home.blog.has-header-image .custom-header-media:before,
/* 3777 */ 	.home.blog.has-header-video .custom-header-media:before {
/* 3778 */ 		height: 33%;
/* 3779 */ 	}
/* 3780 */
/* 3781 */ 	.admin-bar.twentyseventeen-front-page.has-header-image .custom-header-media,
/* 3782 */ 	.admin-bar.twentyseventeen-front-page.has-header-video .custom-header-media,
/* 3783 */ 	.admin-bar.home.blog.has-header-image .custom-header-media,
/* 3784 */ 	.admin-bar.home.blog.has-header-video .custom-header-media {
/* 3785 */ 		height: calc(100vh - 32px);
/* 3786 */ 	}
/* 3787 */
/* 3788 */ 	.panel-content .wrap {
/* 3789 */ 		padding-bottom: 4.5em;
/* 3790 */ 		padding-top: 6em;
/* 3791 */ 	}
/* 3792 */
/* 3793 */ 	.panel-image {
/* 3794 */ 		height: 100vh;
/* 3795 */ 		max-height: 1200px;
/* 3796 */ 	}
/* 3797 */
/* 3798 */ 	/* With panel images 100% of the screen height, we're going to fix the background image where supported to create a parallax-like effect. */
/* 3799 */ 	.background-fixed .panel-image {
/* 3800 */ 		background-attachment: fixed;

/* style.css */

/* 3801 */ 	}
/* 3802 */
/* 3803 */ 	@supports ( -webkit-touch-callout: none ) {
/* 3804 */ 		/* Image scrolls with the content in iOS Safari. */
/* 3805 */ 		.background-fixed .panel-image {
/* 3806 */ 			background-attachment: scroll;
/* 3807 */ 		}
/* 3808 */ 	}
/* 3809 */
/* 3810 */ 	.page-two-column .panel-content .entry-header {
/* 3811 */ 		float: left;
/* 3812 */ 		width: 36%;
/* 3813 */ 	}
/* 3814 */
/* 3815 */ 	.page-two-column .panel-content .entry-content {
/* 3816 */ 		float: right;
/* 3817 */ 		width: 58%;
/* 3818 */ 	}
/* 3819 */
/* 3820 */ 	/* Front Page - Recent Posts */
/* 3821 */
/* 3822 */ 	.page-two-column .panel-content .recent-posts {
/* 3823 */ 		clear: right;
/* 3824 */ 		float: right;
/* 3825 */ 		width: 58%;
/* 3826 */ 	}
/* 3827 */
/* 3828 */ 	.panel-content .recent-posts article {
/* 3829 */ 		margin-bottom: 4em;
/* 3830 */ 	}
/* 3831 */
/* 3832 */ 	.panel-content .recent-posts .entry-header,
/* 3833 */ 	.page-two-column #primary .panel-content .recent-posts .entry-header,
/* 3834 */ 	.panel-content .recent-posts .entry-content,
/* 3835 */ 	.page-two-column #primary .panel-content .recent-posts .entry-content {
/* 3836 */ 		float: none;
/* 3837 */ 		width: 100%;
/* 3838 */ 	}
/* 3839 */
/* 3840 */ 	.twentyseventeen-front-page .panel-content .recent-posts .entry-header {
/* 3841 */ 		margin-bottom: 1.5em;
/* 3842 */ 	}
/* 3843 */
/* 3844 */ 	.page .panel-content .recent-posts .entry-title {
/* 3845 */ 		font-size: 26px;
/* 3846 */ 		font-size: 1.625rem;
/* 3847 */ 	}
/* 3848 */
/* 3849 */ 	/* Posts */
/* 3850 */

/* style.css */

/* 3851 */ 	.site-content {
/* 3852 */ 		padding: 5.5em 0 0;
/* 3853 */ 	}
/* 3854 */
/* 3855 */ 	.single-post .entry-title,
/* 3856 */ 	.page .entry-title {
/* 3857 */ 		font-size: 26px;
/* 3858 */ 		font-size: 1.625rem;
/* 3859 */ 	}
/* 3860 */
/* 3861 */ 	.comments-pagination,
/* 3862 */ 	.post-navigation {
/* 3863 */ 		clear: both;
/* 3864 */ 	}
/* 3865 */
/* 3866 */ 	.post-navigation .nav-previous {
/* 3867 */ 		float: left;
/* 3868 */ 		width: 50%;
/* 3869 */ 	}
/* 3870 */
/* 3871 */ 	.post-navigation .nav-next {
/* 3872 */ 		float: right;
/* 3873 */ 		text-align: right;
/* 3874 */ 		width: 50%;
/* 3875 */ 	}
/* 3876 */
/* 3877 */ 	.nav-next,
/* 3878 */ 	.post-navigation .nav-next {
/* 3879 */ 		margin-top: 0;
/* 3880 */ 	}
/* 3881 */
/* 3882 */ 	/* Blog, archive, search */
/* 3883 */
/* 3884 */ 	.sticky .icon-thumb-tack {
/* 3885 */ 		height: 23px;
/* 3886 */ 		left: -2.5em;
/* 3887 */ 		top: 1.5em;
/* 3888 */ 		width: 32px;
/* 3889 */ 	}
/* 3890 */
/* 3891 */ 	body:not(.has-sidebar):not(.page-one-column) .page-header,
/* 3892 */ 	body.has-sidebar.error404 #primary .page-header,
/* 3893 */ 	body.page-two-column:not(.archive) #primary .entry-header,
/* 3894 */ 	body.page-two-column.archive:not(.has-sidebar) #primary .page-header {
/* 3895 */ 		float: left;
/* 3896 */ 		width: 36%;
/* 3897 */ 	}
/* 3898 */
/* 3899 */ 	.blog:not(.has-sidebar) #primary article,
/* 3900 */ 	.archive:not(.page-one-column):not(.has-sidebar) #primary article,

/* style.css */

/* 3901 */ 	.search:not(.has-sidebar) #primary article,
/* 3902 */ 	.error404:not(.has-sidebar) #primary .page-content,
/* 3903 */ 	.error404.has-sidebar #primary .page-content,
/* 3904 */ 	body.page-two-column:not(.archive) #primary .entry-content,
/* 3905 */ 	body.page-two-column #comments {
/* 3906 */ 		float: right;
/* 3907 */ 		width: 58%;
/* 3908 */ 	}
/* 3909 */
/* 3910 */ 	.blog .site-main > article,
/* 3911 */ 	.archive .site-main > article,
/* 3912 */ 	.search .site-main > article {
/* 3913 */ 		padding-bottom: 4em;
/* 3914 */ 	}
/* 3915 */
/* 3916 */ 	.navigation.pagination {
/* 3917 */ 		clear: both;
/* 3918 */ 		float: right;
/* 3919 */ 		width: 58%;
/* 3920 */ 	}
/* 3921 */
/* 3922 */ 	.has-sidebar .navigation.pagination,
/* 3923 */ 	.archive.page-one-column:not(.has-sidebar) .navigation.pagination {
/* 3924 */ 		float: none;
/* 3925 */ 		width: 100%;
/* 3926 */ 	}
/* 3927 */
/* 3928 */ 	.entry-footer {
/* 3929 */ 		display: table;
/* 3930 */ 		width: 100%;
/* 3931 */ 	}
/* 3932 */
/* 3933 */ 	.entry-footer .cat-tags-links {
/* 3934 */ 		display: table-cell;
/* 3935 */ 		vertical-align: middle;
/* 3936 */ 		width: 100%;
/* 3937 */ 	}
/* 3938 */
/* 3939 */ 	.entry-footer .edit-link {
/* 3940 */ 		display: table-cell;
/* 3941 */ 		text-align: right;
/* 3942 */ 		vertical-align: middle;
/* 3943 */ 	}
/* 3944 */
/* 3945 */ 	.entry-footer .edit-link a.post-edit-link {
/* 3946 */ 		margin-top: 0;
/* 3947 */ 		margin-left: 1em;
/* 3948 */ 	}
/* 3949 */
/* 3950 */ 	/* Entry content */

/* style.css */

/* 3951 */
/* 3952 */ 	/* without sidebar */
/* 3953 */
/* 3954 */ 	:not(.has-sidebar) .entry-content blockquote.alignleft {
/* 3955 */ 		margin-left: -17.5%;
/* 3956 */ 		width: 48%;
/* 3957 */ 	}
/* 3958 */
/* 3959 */ 	:not(.has-sidebar) .entry-content blockquote.alignright {
/* 3960 */ 		margin-right: -17.5%;
/* 3961 */ 		width: 48%;
/* 3962 */ 	}
/* 3963 */
/* 3964 */ 	/* with sidebar */
/* 3965 */
/* 3966 */ 	.has-sidebar .entry-content blockquote.alignleft {
/* 3967 */ 		margin-left: 0;
/* 3968 */ 		width: 34%;
/* 3969 */ 	}
/* 3970 */
/* 3971 */ 	.has-sidebar .entry-content blockquote.alignright {
/* 3972 */ 		margin-right: 0;
/* 3973 */ 		width: 34%;
/* 3974 */ 	}
/* 3975 */
/* 3976 */ 	.has-sidebar #primary .entry-content blockquote.alignright.below-entry-meta {
/* 3977 */ 		margin-right: -72.5%;
/* 3978 */ 		width: 62%;
/* 3979 */ 	}
/* 3980 */
/* 3981 */ 	/* blog and archive */
/* 3982 */
/* 3983 */ 	.blog:not(.has-sidebar) .entry-content blockquote.alignleft,
/* 3984 */ 	.twentyseventeen-front-page.page-two-column .entry-content blockquote.alignleft,
/* 3985 */ 	.archive:not(.has-sidebar) .entry-content blockquote.alignleft,
/* 3986 */ 	.page-two-column .entry-content blockquote.alignleft {
/* 3987 */ 		margin-left: -72.5%;
/* 3988 */ 		width: 62%;
/* 3989 */ 	}
/* 3990 */
/* 3991 */ 	.blog:not(.has-sidebar) .entry-content blockquote.alignright,
/* 3992 */ 	.twentyseventeen-front-page.page-two-column .entry-content blockquote.alignright,
/* 3993 */ 	.archive:not(.has-sidebar) .entry-content blockquote.alignright,
/* 3994 */ 	.page-two-column .entry-content blockquote.alignright {
/* 3995 */ 		margin-right: 0;
/* 3996 */ 		width: 36%;
/* 3997 */ 	}
/* 3998 */
/* 3999 */ 	/* Post formats */
/* 4000 */

/* style.css */

/* 4001 */ 	.format-quote blockquote .icon {
/* 4002 */ 		left: -1.5em;
/* 4003 */ 	}
/* 4004 */
/* 4005 */ 	/* Pages */
/* 4006 */
/* 4007 */ 	.page.page-one-column .entry-header,
/* 4008 */ 	.twentyseventeen-front-page.page-one-column .entry-header,
/* 4009 */ 	.archive.page-one-column:not(.has-sidebar) .page-header {
/* 4010 */ 		margin-bottom: 4em;
/* 4011 */ 	}
/* 4012 */
/* 4013 */ 	.page:not(.home) #content {
/* 4014 */ 		padding-bottom: 3.25em;
/* 4015 */ 	}
/* 4016 */
/* 4017 */ 	/* 404 page */
/* 4018 */
/* 4019 */ 	.error404 .page-content {
/* 4020 */ 		padding-bottom: 9em;
/* 4021 */ 	}
/* 4022 */
/* 4023 */ 	/* Comments */
/* 4024 */
/* 4025 */ 	#comments {
/* 4026 */ 		padding-top: 5em;
/* 4027 */ 	}
/* 4028 */
/* 4029 */ 	.comments-title {
/* 4030 */ 		margin-bottom: 2.5em;
/* 4031 */ 	}
/* 4032 */
/* 4033 */ 	ol.children .children {
/* 4034 */ 		padding-left: 2em;
/* 4035 */ 	}
/* 4036 */
/* 4037 */ 	/* Posts pagination */
/* 4038 */
/* 4039 */ 	.nav-links .nav-title {
/* 4040 */ 		position: relative;
/* 4041 */ 	}
/* 4042 */
/* 4043 */ 	.nav-title-icon-wrapper {
/* 4044 */ 		position: absolute;
/* 4045 */ 		text-align: center;
/* 4046 */ 		width: 2em;
/* 4047 */ 	}
/* 4048 */
/* 4049 */ 	.nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
/* 4050 */ 		left: -2em;

/* style.css */

/* 4051 */ 	}
/* 4052 */
/* 4053 */ 	.nav-links .nav-next .nav-title .nav-title-icon-wrapper {
/* 4054 */ 		right: -2em;
/* 4055 */ 	}
/* 4056 */
/* 4057 */ 	/* Secondary */
/* 4058 */
/* 4059 */ 	#secondary {
/* 4060 */ 		font-size: 14px;
/* 4061 */ 		font-size: 0.875rem;
/* 4062 */ 		line-height: 1.6;
/* 4063 */ 	}
/* 4064 */
/* 4065 */ 	/* Widgets */
/* 4066 */
/* 4067 */ 	h2.widget-title {
/* 4068 */ 		font-size: 11px;
/* 4069 */ 		font-size: 0.6875rem;
/* 4070 */ 		margin-bottom: 2em;
/* 4071 */ 	}
/* 4072 */
/* 4073 */ 	/* Footer */
/* 4074 */
/* 4075 */ 	.site-footer {
/* 4076 */ 		font-size: 14px;
/* 4077 */ 		font-size: 0.875rem;
/* 4078 */ 		line-height: 1.6;
/* 4079 */ 		margin-top: 3em;
/* 4080 */ 	}
/* 4081 */
/* 4082 */ 	.site-footer .widget-column.footer-widget-1 {
/* 4083 */ 		float: left;
/* 4084 */ 		width: 36%;
/* 4085 */ 	}
/* 4086 */
/* 4087 */ 	.site-footer .widget-column.footer-widget-2 {
/* 4088 */ 		float: right;
/* 4089 */ 		width: 58%;
/* 4090 */ 	}
/* 4091 */
/* 4092 */ 	.social-navigation {
/* 4093 */ 		clear: left;
/* 4094 */ 		float: left;
/* 4095 */ 		margin-bottom: 0;
/* 4096 */ 		width: 36%;
/* 4097 */ 	}
/* 4098 */
/* 4099 */ 	.site-info {
/* 4100 */ 		float: left;

/* style.css */

/* 4101 */ 		padding: 0.7em 0 0;
/* 4102 */ 		width: 58%;
/* 4103 */ 	}
/* 4104 */
/* 4105 */ 	.social-navigation + .site-info {
/* 4106 */ 		margin-left: 6%;
/* 4107 */ 	}
/* 4108 */
/* 4109 */ 	.site-info .sep {
/* 4110 */ 		margin: 0 0.5em;
/* 4111 */ 		display: inline;
/* 4112 */ 		visibility: visible;
/* 4113 */ 		height: auto;
/* 4114 */ 		width: auto;
/* 4115 */ 	}
/* 4116 */
/* 4117 */ 	/* Gallery Columns */
/* 4118 */
/* 4119 */ 	.gallery-columns-5 .gallery-item {
/* 4120 */ 		max-width: 20%;
/* 4121 */ 	}
/* 4122 */
/* 4123 */ 	.gallery-columns-6 .gallery-item {
/* 4124 */ 		max-width: 16.66%;
/* 4125 */ 	}
/* 4126 */
/* 4127 */ 	.gallery-columns-7 .gallery-item {
/* 4128 */ 		max-width: 14.28%;
/* 4129 */ 	}
/* 4130 */
/* 4131 */ 	.gallery-columns-8 .gallery-item {
/* 4132 */ 		max-width: 12.5%;
/* 4133 */ 	}
/* 4134 */
/* 4135 */ 	.gallery-columns-9 .gallery-item {
/* 4136 */ 		max-width: 11.11%;
/* 4137 */ 	}
/* 4138 */ }
/* 4139 */
/* 4140 */ @media screen and ( min-width: 67em ) {
/* 4141 */
/* 4142 */ 	/* Layout */
/* 4143 */
/* 4144 */ 	/* Navigation */
/* 4145 */ 	.navigation-top .wrap {
/* 4146 */ 		padding: 0.75em 2em;
/* 4147 */ 	}
/* 4148 */
/* 4149 */ 	.navigation-top nav {
/* 4150 */ 		margin-left: 0;

/* style.css */

/* 4151 */ 	}
/* 4152 */
/* 4153 */ 	/* Sticky posts */
/* 4154 */
/* 4155 */ 	.sticky .icon-thumb-tack {
/* 4156 */ 		font-size: 32px;
/* 4157 */ 		font-size: 2rem;
/* 4158 */ 		height: 22px;
/* 4159 */ 		left: -1.25em;
/* 4160 */ 		top: 0.75em;
/* 4161 */ 		width: 32px;
/* 4162 */ 	}
/* 4163 */
/* 4164 */ 	/* Pagination */
/* 4165 */
/* 4166 */ 	.page-numbers {
/* 4167 */ 		display: inline-block;
/* 4168 */ 	}
/* 4169 */
/* 4170 */ 	.page-numbers.current {
/* 4171 */ 		font-size: 15px;
/* 4172 */ 		font-size: 0.9375rem;
/* 4173 */ 	}
/* 4174 */
/* 4175 */ 	.page-numbers.current .screen-reader-text {
/* 4176 */ 		clip-path: inset(50%);
/* 4177 */ 		height: 1px;
/* 4178 */ 		overflow: hidden;
/* 4179 */ 		position: absolute !important;
/* 4180 */ 		width: 1px;
/* 4181 */ 	}
/* 4182 */
/* 4183 */ 	/* Comments */
/* 4184 */
/* 4185 */ 	.comment-body {
/* 4186 */ 		margin-left: 0;
/* 4187 */ 	}
/* 4188 */ }
/* 4189 */
/* 4190 */ @media screen and ( min-width: 79em ) {
/* 4191 */
/* 4192 */ 	.has-sidebar .entry-content blockquote.alignleft {
/* 4193 */ 		margin-left: -20%;
/* 4194 */ 	}
/* 4195 */
/* 4196 */ 	.blog:not(.has-sidebar) .entry-content blockquote.alignright,
/* 4197 */ 	.archive:not(.has-sidebar) .entry-content blockquote.alignright,
/* 4198 */ 	.page-two-column .entry-content blockquote.alignright,
/* 4199 */ 	.twentyseventeen-front-page .entry-content blockquote.alignright {
/* 4200 */ 		margin-right: -20%;

/* style.css */

/* 4201 */ 	}
/* 4202 */ }
/* 4203 */
/* 4204 */ @media screen and ( max-width: 48.875em ) and ( min-width: 48em ) {
/* 4205 */
/* 4206 */ 	.admin-bar .site-navigation-fixed.navigation-top,
/* 4207 */ 	.admin-bar .site-navigation-hidden.navigation-top {
/* 4208 */ 		top: 46px;
/* 4209 */ 	}
/* 4210 */ }
/* 4211 */
/* 4212 */ /*--------------------------------------------------------------
/* 4213 *| 20.0 Print
/* 4214 *| --------------------------------------------------------------*/
/* 4215 */
/* 4216 */ @media print {
/* 4217 */
/* 4218 */ 	/* Hide elements */
/* 4219 */
/* 4220 */ 	form,
/* 4221 */ 	button,
/* 4222 */ 	input,
/* 4223 */ 	select,
/* 4224 */ 	textarea,
/* 4225 */ 	.navigation-top,
/* 4226 */ 	.social-navigation,
/* 4227 */ 	#secondary,
/* 4228 */ 	.content-bottom-widgets,
/* 4229 */ 	.header-image,
/* 4230 */ 	.panel-image-prop,
/* 4231 */ 	.icon-thumb-tack,
/* 4232 */ 	.page-links,
/* 4233 */ 	.edit-link,
/* 4234 */ 	.post-navigation,
/* 4235 */ 	.pagination.navigation,
/* 4236 */ 	.comments-pagination,
/* 4237 */ 	.comment-respond,
/* 4238 */ 	.comment-edit-link,
/* 4239 */ 	.comment-reply-link,
/* 4240 */ 	.comment-metadata .edit-link,
/* 4241 */ 	.pingback .edit-link,
/* 4242 */ 	.site-footer aside.widget-area,
/* 4243 */ 	.site-info {
/* 4244 */ 		display: none !important;
/* 4245 */ 	}
/* 4246 */
/* 4247 */ 	.entry-footer,
/* 4248 */ 	#comments,
/* 4249 */ 	.site-footer,
/* 4250 */ 	.single-featured-image-header {

/* style.css */

/* 4251 */ 		border: 0;
/* 4252 */ 	}
/* 4253 */
/* 4254 */ 	/* Font sizes */
/* 4255 */
/* 4256 */ 	body {
/* 4257 */ 		font-size: 12pt;
/* 4258 */ 	}
/* 4259 */
/* 4260 */ 	h1 {
/* 4261 */ 		font-size: 24pt;
/* 4262 */ 	}
/* 4263 */
/* 4264 */ 	h2 {
/* 4265 */ 		font-size: 22pt;
/* 4266 */ 	}
/* 4267 */
/* 4268 */ 	h3 {
/* 4269 */ 		font-size: 17pt;
/* 4270 */ 	}
/* 4271 */
/* 4272 */ 	h4 {
/* 4273 */ 		font-size: 12pt;
/* 4274 */ 	}
/* 4275 */
/* 4276 */ 	h5 {
/* 4277 */ 		font-size: 11pt;
/* 4278 */ 	}
/* 4279 */
/* 4280 */ 	h6 {
/* 4281 */ 		font-size: 12pt;
/* 4282 */ 	}
/* 4283 */
/* 4284 */ 	.page .panel-content .entry-title,
/* 4285 */ 	.page-title,
/* 4286 */ 	body.page:not(.twentyseventeen-front-page) .entry-title {
/* 4287 */ 		font-size: 10pt;
/* 4288 */ 	}
/* 4289 */
/* 4290 */ 	/* Layout */
/* 4291 */
/* 4292 */ 	.wrap {
/* 4293 */ 		padding-left: 5% !important;
/* 4294 */ 		padding-right: 5% !important;
/* 4295 */ 		max-width: none;
/* 4296 */ 	}
/* 4297 */
/* 4298 */ 	/* Site Branding */
/* 4299 */
/* 4300 */ 	.site-header {

/* style.css */

/* 4301 */ 		background: transparent;
/* 4302 */ 		padding: 0;
/* 4303 */ 	}
/* 4304 */
/* 4305 */ 	.custom-header-media {
/* 4306 */ 		padding: 0;
/* 4307 */ 	}
/* 4308 */
/* 4309 */ 	.twentyseventeen-front-page.has-header-image .site-branding,
/* 4310 */ 	.twentyseventeen-front-page.has-header-video .site-branding,
/* 4311 */ 	.home.blog.has-header-image .site-branding,
/* 4312 */ 	.home.blog.has-header-video .site-branding {
/* 4313 */ 		position: relative;
/* 4314 */ 	}
/* 4315 */
/* 4316 */ 	.site-branding {
/* 4317 */ 		margin-top: 0;
/* 4318 */ 		margin-bottom: 1.75em !important; /* override styles added by JavaScript */
/* 4319 */ 	}
/* 4320 */
/* 4321 */ 	.site-title {
/* 4322 */ 		font-size: 25pt;
/* 4323 */ 	}
/* 4324 */
/* 4325 */ 	.site-description {
/* 4326 */ 		font-size: 12pt;
/* 4327 */ 		opacity: 1;
/* 4328 */ 	}
/* 4329 */
/* 4330 */ 	/* Posts */
/* 4331 */
/* 4332 */ 	.single-featured-image-header {
/* 4333 */ 		background: transparent;
/* 4334 */ 	}
/* 4335 */
/* 4336 */ 	.entry-meta {
/* 4337 */ 		font-size: 9pt;
/* 4338 */ 	}
/* 4339 */
/* 4340 */ 	/* Colors */
/* 4341 */
/* 4342 */ 	body,
/* 4343 */ 	.site {
/* 4344 */ 		background: none !important; /* Brute force since user agents all print differently. */
/* 4345 */ 	}
/* 4346 */
/* 4347 */ 	body,
/* 4348 */ 	a,
/* 4349 */ 	.site-title a,
/* 4350 */ 	.twentyseventeen-front-page.has-header-image .site-title,

/* style.css */

/* 4351 */ 	.twentyseventeen-front-page.has-header-video .site-title,
/* 4352 */ 	.twentyseventeen-front-page.has-header-image .site-title a,
/* 4353 */ 	.twentyseventeen-front-page.has-header-video .site-title a {
/* 4354 */ 		color: #222 !important; /* Make sure color schemes don't affect to print */
/* 4355 */ 	}
/* 4356 */
/* 4357 */ 	h2,
/* 4358 */ 	h5,
/* 4359 */ 	blockquote,
/* 4360 */ 	.site-description,
/* 4361 */ 	.twentyseventeen-front-page.has-header-image .site-description,
/* 4362 */ 	.twentyseventeen-front-page.has-header-video .site-description,
/* 4363 */ 	.entry-meta,
/* 4364 */ 	.entry-meta a {
/* 4365 */ 		color: #777 !important; /* Make sure color schemes don't affect to print */
/* 4366 */ 	}
/* 4367 */
/* 4368 */ 	.entry-content blockquote.alignleft,
/* 4369 */ 	.entry-content blockquote.alignright {
/* 4370 */ 		font-size: 11pt;
/* 4371 */ 		width: 34%;
/* 4372 */ 	}
/* 4373 */
/* 4374 */ 	.site-footer {
/* 4375 */ 		padding: 0;
/* 4376 */ 	}
/* 4377 */ }
/* 4378 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* blocks.css */

/* 1   */ /*
/* 2   *| Theme Name: Twenty Seventeen
/* 3   *| Description: Used to style blocks.
/* 4   *| */
/* 5   */
/* 6   */ /*--------------------------------------------------------------
/* 7   *| >>> TABLE OF CONTENTS:
/* 8   *| ----------------------------------------------------------------
/* 9   *| 1.0 General Block Styles
/* 10  *| 2.0 Blocks - Common Blocks
/* 11  *| 3.0 Blocks - Formatting
/* 12  *| 4.0 Blocks - Layout Elements
/* 13  *| 5.0 Blocks - Widgets
/* 14  *| 6.0 Blocks - Colors
/* 15  *| --------------------------------------------------------------*/
/* 16  */
/* 17  */ /*--------------------------------------------------------------
/* 18  *| 1.0 General Block Styles
/* 19  *| --------------------------------------------------------------*/
/* 20  */
/* 21  */ /* Captions */
/* 22  */
/* 23  */ [class^="wp-block-"]:not(.wp-block-gallery) > figcaption {
/* 24  */ 	font-style: italic;
/* 25  */ 	margin-bottom: 1.5em;
/* 26  */ 	text-align: left;
/* 27  */ }
/* 28  */
/* 29  */ .rtl [class^="wp-block-"]:not(.wp-block-gallery) > figcaption {
/* 30  */ 	text-align: right;
/* 31  */ }
/* 32  */
/* 33  */ /*--------------------------------------------------------------
/* 34  *| 2.0 Blocks - Common Blocks
/* 35  *| --------------------------------------------------------------*/
/* 36  */
/* 37  */ /* Paragraph */
/* 38  */
/* 39  */ p.has-drop-cap:not(:focus)::first-letter {
/* 40  */ 	font-size: 5em;
/* 41  */ 	margin-top: 0.075em;
/* 42  */ }
/* 43  */
/* 44  */ /* Image */
/* 45  */
/* 46  */ .wp-block-image {
/* 47  */ 	margin-bottom: 1.5em;
/* 48  */ }
/* 49  */
/* 50  */ .wp-block-image figure {

/* blocks.css */

/* 51  */ 	margin-bottom: 0;
/* 52  */ 	margin-top: 0;
/* 53  */ }
/* 54  */
/* 55  */ .wp-block-image figure.alignleft {
/* 56  */ 	margin-top: 0;
/* 57  */ 	margin-right: 1.5em;
/* 58  */ }
/* 59  */
/* 60  */ .wp-block-image figure.alignright {
/* 61  */ 	margin-top: 0;
/* 62  */ 	margin-left: 1.5em;
/* 63  */ }
/* 64  */
/* 65  */ .wp-block-image a,
/* 66  */ .wp-block-image a:hover,
/* 67  */ .wp-block-image a:focus,
/* 68  */ .widget-area .wp-block-image a,
/* 69  */ .widget-area .wp-block-image a:hover,
/* 70  */ .widget-area .wp-block-image a:focus {
/* 71  */ 	-webkit-box-shadow: none;
/* 72  */ 	box-shadow: none;
/* 73  */ }
/* 74  */
/* 75  */ .entry-content > .wp-block-image:first-child figure.alignleft,
/* 76  */ .entry-content > .wp-block-image:first-child figure.alignright {
/* 77  */ 	margin-top: 1.5em;
/* 78  */ }
/* 79  */
/* 80  */ /* Gallery */
/* 81  */
/* 82  */ .wp-block-gallery {
/* 83  */ 	margin-bottom: 1.5em;
/* 84  */ }
/* 85  */
/* 86  */ .wp-block-gallery figcaption {
/* 87  */ 	font-style: italic;
/* 88  */ }
/* 89  */
/* 90  */ .wp-block-gallery.aligncenter {
/* 91  */ 	display: flex;
/* 92  */ 	margin: 0 -8px;
/* 93  */ }
/* 94  */
/* 95  */ /* Quote */
/* 96  */
/* 97  */ .wp-block-quote:not(.is-large):not(.is-style-large) {
/* 98  */ 	border: 0;
/* 99  */ 	padding: 0;
/* 100 */ }

/* blocks.css */

/* 101 */
/* 102 */ .wp-block-quote.alignleft p:last-of-type,
/* 103 */ .wp-block-quote.alignright p:last-of-type {
/* 104 */ 	margin-bottom: 0;
/* 105 */ }
/* 106 */
/* 107 */ .wp-block-quote cite {
/* 108 */ 	color: inherit;
/* 109 */ 	font-size: inherit;
/* 110 */ }
/* 111 */
/* 112 */ /* Audio */
/* 113 */
/* 114 */ .wp-block-audio audio {
/* 115 */ 	display: block;
/* 116 */ 	width: 100%;
/* 117 */ }
/* 118 */
/* 119 */ /* Cover */
/* 120 */
/* 121 */ .wp-block-cover-image.alignright,
/* 122 */ .wp-block-cover.alignright,
/* 123 */ .wp-block-cover-image.alignleft,
/* 124 */ .wp-block-cover.alignleft,
/* 125 */ .wp-block-cover-image.aligncenter,
/* 126 */ .wp-block-cover.aligncenter {
/* 127 */ 	display: flex;
/* 128 */ }
/* 129 */
/* 130 */ /* File */
/* 131 */
/* 132 */ .wp-block-file .wp-block-file__button {
/* 133 */ 	background-color: #222;
/* 134 */ 	-webkit-border-radius: 2px;
/* 135 */ 	border-radius: 2px;
/* 136 */ 	-webkit-box-shadow: none;
/* 137 */ 	box-shadow: none;
/* 138 */ 	color: #fff;
/* 139 */ 	display: inline-block;
/* 140 */ 	font-size: 14px;
/* 141 */ 	font-size: 0.875rem;
/* 142 */ 	font-weight: 800;
/* 143 */ 	margin-top: 2em;
/* 144 */ 	padding: 0.7em 2em;
/* 145 */ 	-webkit-transition: background-color 0.2s ease-in-out;
/* 146 */ 	transition: background-color 0.2s ease-in-out;
/* 147 */ 	white-space: pre-line;
/* 148 */ }
/* 149 */
/* 150 */ .wp-block-file .wp-block-file__button:hover,

/* blocks.css */

/* 151 */ .wp-block-file .wp-block-file__button:focus {
/* 152 */ 	background-color: #767676;
/* 153 */ 	-webkit-box-shadow: none;
/* 154 */ 	box-shadow: none;
/* 155 */ }
/* 156 */
/* 157 */ /*--------------------------------------------------------------
/* 158 *| 3.0 Blocks - Formatting
/* 159 *| --------------------------------------------------------------*/
/* 160 */
/* 161 */ /* Code */
/* 162 */
/* 163 */ .wp-block-code {
/* 164 */ 	background: transparent;
/* 165 */ 	border: 0;
/* 166 */ 	padding: 0;
/* 167 */ }
/* 168 */
/* 169 */ .wp-block-code code {
/* 170 */ 	font-size: inherit;
/* 171 */ }
/* 172 */
/* 173 */ /* Pullquote */
/* 174 */
/* 175 */ .wp-block-pullquote {
/* 176 */ 	border: 0 solid;
/* 177 */ }
/* 178 */
/* 179 */ .wp-block-pullquote__citation,
/* 180 */ .wp-block-pullquote cite {
/* 181 */ 	font-size: inherit;
/* 182 */ 	text-transform: none;
/* 183 */ }
/* 184 */
/* 185 */ /* Table */
/* 186 */
/* 187 */ .wp-block-table thead th {
/* 188 */ 	border-bottom: 2px solid #bbb;
/* 189 */ 	padding-bottom: 0.5em;
/* 190 */ }
/* 191 */
/* 192 */ .wp-block-table tr {
/* 193 */ 	border-bottom: 1px solid #eee;
/* 194 */ }
/* 195 */
/* 196 */ .wp-block-table th,
/* 197 */ .wp-block-table td {
/* 198 */ 	border: 0;
/* 199 */ }
/* 200 */

/* blocks.css */

/* 201 */ .rtl .wp-block-table th,
/* 202 */ .rtl .wp-block-table td {
/* 203 */ 	text-align: right;
/* 204 */ }
/* 205 */
/* 206 */ /* Calendar */
/* 207 */
/* 208 */ .wp-block-calendar th {
/* 209 */ 	text-align: center;
/* 210 */ }
/* 211 */
/* 212 */ .wp-block-buttons[style*="font-weight"] .wp-block-button__link,
/* 213 */ .wp-block-button[style*="font-weight"] .wp-block-button__link {
/* 214 */ 	font-weight: inherit;
/* 215 */ }
/* 216 */
/* 217 */ /*--------------------------------------------------------------
/* 218 *| 4.0 Blocks - Layout Elements
/* 219 *| --------------------------------------------------------------*/
/* 220 */
/* 221 */ /* Buttons */
/* 222 */
/* 223 */ .wp-block-button .wp-block-button__link {
/* 224 */ 	-webkit-box-shadow: none;
/* 225 */ 	box-shadow: none;
/* 226 */ 	display: inline-block;
/* 227 */ 	font-size: 14px;
/* 228 */ 	font-size: 0.875rem;
/* 229 */ 	font-weight: 800;
/* 230 */ 	line-height: 1.66;
/* 231 */ 	margin-top: 2em;
/* 232 */ 	padding: 0.7em 2em;
/* 233 */ 	-webkit-transition: background-color 0.2s ease-in-out;
/* 234 */ 	transition: background-color 0.2s ease-in-out;
/* 235 */ 	white-space: pre-line;
/* 236 */ }
/* 237 */
/* 238 */ .entry-content .wp-block-button__link {
/* 239 */ 	background-color: #222;
/* 240 */ 	color: #fff;
/* 241 */ }
/* 242 */
/* 243 */ .entry-content .is-style-outline .wp-block-button__link:not(.has-background) {
/* 244 */ 	background-color: transparent;
/* 245 */ }
/* 246 */
/* 247 */ .entry-content .is-style-outline .wp-block-button__link:not(.has-text-color) {
/* 248 */ 	color: #222;
/* 249 */ }
/* 250 */

/* blocks.css */

/* 251 */ .colors-dark .wp-block-button__link {
/* 252 */ 	background-color: #fff;
/* 253 */ 	color: #000;
/* 254 */ }
/* 255 */
/* 256 */ .entry-content .wp-block-button__link:hover,
/* 257 */ .entry-content .wp-block-button__link:focus,
/* 258 */ .entry-content .is-style-outline .wp-block-button__link:not(.has-background):hover,
/* 259 */ .entry-content .is-style-outline .wp-block-button__link:not(.has-background):focus {
/* 260 */ 	background-color: #767676;
/* 261 */ 	-webkit-box-shadow: none;
/* 262 */ 	box-shadow: none;
/* 263 */ 	color: #fff;
/* 264 */ }
/* 265 */
/* 266 */ .colors-dark .entry-content .wp-block-button__link:hover,
/* 267 */ .colors-dark .entry-content .wp-block-button__link:focus,
/* 268 */ .colors-dark .entry-content .is-style-outline .wp-block-button__link:not(.has-background):hover,
/* 269 */ .colors-dark .entry-content .is-style-outline .wp-block-button__link:not(.has-background):focus {
/* 270 */ 	background-color: #bbb;
/* 271 */ 	color: #000;
/* 272 */ }
/* 273 */
/* 274 */ .colors-dark .entry-content .is-style-outline .wp-block-button__link:not(.has-text-color) {
/* 275 */ 	color: #fff;
/* 276 */ }
/* 277 */
/* 278 */ .colors-dark .entry-content .is-style-outline .wp-block-button__link:not(.has-text-color):hover,
/* 279 */ .colors-dark .entry-content .is-style-outline .wp-block-button__link:not(.has-text-color):focus {
/* 280 */ 	color: #222;
/* 281 */ }
/* 282 */
/* 283 */ .colors-custom .entry-content .wp-block-button__link,
/* 284 */ .colors-custom .entry-content .wp-block-button__link:hover,
/* 285 */ .colors-custom .entry-content .wp-block-button__link:focus,
/* 286 */ .colors-dark .entry-content .wp-block-button__link,
/* 287 */ .colors-dark .entry-content .wp-block-button__link:hover,
/* 288 */ .colors-dark .entry-content .wp-block-button__link:focus {
/* 289 */ 	-webkit-box-shadow: none;
/* 290 */ 	box-shadow: none;
/* 291 */ }
/* 292 */
/* 293 */ .colors-custom .entry-content .wp-block-button__link:hover,
/* 294 */ .colors-custom .entry-content .wp-block-button__link:focus {
/* 295 */ 	color: #fff;
/* 296 */ }
/* 297 */
/* 298 */ /* Separator */
/* 299 */
/* 300 */ .wp-block-separator {

/* blocks.css */

/* 301 */ 	border: 0;
/* 302 */ }
/* 303 */
/* 304 */ .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
/* 305 */ 	max-width: 100px;
/* 306 */ }
/* 307 */
/* 308 */ /* Media & Text */
/* 309 */
/* 310 */ .wp-block-media-text {
/* 311 */ 	margin-bottom: 1.5em;
/* 312 */ }
/* 313 */
/* 314 */ .wp-block-media-text *:last-child {
/* 315 */ 	margin-bottom: 0;
/* 316 */ }
/* 317 */
/* 318 */ /*--------------------------------------------------------------
/* 319 *| 5.0 Blocks - Widgets
/* 320 *| --------------------------------------------------------------*/
/* 321 */
/* 322 */ /* Archives, Categories & Latest Posts */
/* 323 */
/* 324 */ .wp-block-archives.aligncenter,
/* 325 */ .wp-block-categories.aligncenter,
/* 326 */ .wp-block-latest-posts.aligncenter {
/* 327 */ 	list-style-position: inside;
/* 328 */ 	text-align: center;
/* 329 */ }
/* 330 */
/* 331 */ /* Comments */
/* 332 */
/* 333 */ .wp-block-latest-comments article {
/* 334 */ 	margin-bottom: 4rem;
/* 335 */ }
/* 336 */
/* 337 */ .widget-area .wp-block-latest-comments article {
/* 338 */ 	margin-bottom: 1em;
/* 339 */ }
/* 340 */
/* 341 */ .blog:not(.has-sidebar) #primary .wp-block-latest-comments article,
/* 342 */ .archive:not(.page-one-column):not(.has-sidebar) #primary .wp-block-latest-comments article,
/* 343 */ .search:not(.has-sidebar) #primary .wp-block-latest-comments article {
/* 344 */ 	float: none;
/* 345 */ 	width: 100%;
/* 346 */ }
/* 347 */
/* 348 */ .wp-block-latest-comments .avatar,
/* 349 */ .wp-block-latest-comments__comment-avatar {
/* 350 */ 	border-radius: 0;

/* blocks.css */

/* 351 */ }
/* 352 */
/* 353 */ .wp-block-latest-comments a {
/* 354 */ 	-webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
/* 355 */ 	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 1);
/* 356 */ }
/* 357 */
/* 358 */ .wp-block-latest-comments .wp-block-latest-comments__comment {
/* 359 */ 	border-top: none;
/* 360 */ }
/* 361 */
/* 362 */ .wp-block-latest-comments__comment-meta {
/* 363 */ 	font-size: 16px;
/* 364 */ 	font-size: 1rem;
/* 365 */ 	margin-bottom: 0.4em;
/* 366 */ }
/* 367 */
/* 368 */ .wp-block-latest-comments__comment-author,
/* 369 */ .wp-block-latest-comments__comment-link {
/* 370 */ 	font-weight: 700;
/* 371 */ 	text-decoration: none;
/* 372 */ }
/* 373 */
/* 374 */ .wp-block-latest-comments__comment-date {
/* 375 */ 	color: #767676;
/* 376 */ 	font-size: 10px;
/* 377 */ 	font-size: 0.625rem;
/* 378 */ 	font-weight: 800;
/* 379 */ 	letter-spacing: 0.1818em;
/* 380 */ 	margin-top: 0.4em;
/* 381 */ 	text-transform: uppercase;
/* 382 */ }
/* 383 */
/* 384 */ /* Query Loop & Post Template */
/* 385 */
/* 386 */ .wp-block-query .wp-block-post-template > li {
/* 387 */ 	border-top: none;
/* 388 */ }
/* 389 */
/* 390 */ /* Site Logo */
/* 391 */
/* 392 */ :root .entry-content .wp-block-site-logo a.custom-logo-link {
/* 393 */ 	-webkit-box-shadow: none;
/* 394 */ 	box-shadow: none;
/* 395 */ }
/* 396 */
/* 397 */ .entry-content .wp-block-site-logo img {
/* 398 */ 	max-height: none;
/* 399 */ }
/* 400 */

/* blocks.css */

/* 401 */ /*--------------------------------------------------------------
/* 402 *| 6.0 Blocks - Colors
/* 403 *| --------------------------------------------------------------*/
/* 404 */
/* 405 */ .entry-content .has-pale-pink-color {
/* 406 */ 	color: #f78da7;
/* 407 */ }
/* 408 */
/* 409 */ .entry-content .has-pale-pink-background-color,
/* 410 */ .wp-block-button.is-style-outline .has-pale-pink-background-color:link {
/* 411 */ 	background-color: #f78da7;
/* 412 */ }
/* 413 */
/* 414 */ .entry-content .has-vivid-red-color {
/* 415 */ 	color: #cf2e2e;
/* 416 */ }
/* 417 */
/* 418 */ .entry-content .has-vivid-red-background-color,
/* 419 */ .wp-block-button.is-style-outline .has-vivid-red-background-color:link {
/* 420 */ 	background-color: #cf2e2e;
/* 421 */ }
/* 422 */
/* 423 */ .entry-content .has-luminous-vivid-orange-color {
/* 424 */ 	color: #ff6900;
/* 425 */ }
/* 426 */
/* 427 */ .entry-content .has-luminous-vivid-orange-background-color,
/* 428 */ .wp-block-button.is-style-outline .has-luminous-vivid-orange-background-color:link {
/* 429 */ 	background-color: #ff6900;
/* 430 */ }
/* 431 */
/* 432 */ .entry-content .has-luminous-vivid-amber-color {
/* 433 */ 	color: #fcb900;
/* 434 */ }
/* 435 */
/* 436 */ .entry-content .has-luminous-vivid-amber-background-color,
/* 437 */ .wp-block-button.is-style-outline .has-luminous-vivid-amber-background-color:link {
/* 438 */ 	background-color: #fcb900;
/* 439 */ }
/* 440 */
/* 441 */ .entry-content .has-light-green-cyan-color {
/* 442 */ 	color: #7bdcb5;
/* 443 */ }
/* 444 */
/* 445 */ .entry-content .has-light-green-cyan-background-color,
/* 446 */ .wp-block-button.is-style-outline .has-light-green-cyan-background-color:link {
/* 447 */ 	background-color: #7bdcb5;
/* 448 */ }
/* 449 */
/* 450 */ .entry-content .has-vivid-green-cyan-color {

/* blocks.css */

/* 451 */ 	color: #00d084;
/* 452 */ }
/* 453 */
/* 454 */ .entry-content .has-vivid-green-cyan-background-color,
/* 455 */ .wp-block-button.is-style-outline .has-vivid-green-cyan-background-color:link {
/* 456 */ 	background-color: #00d084;
/* 457 */ }
/* 458 */
/* 459 */ .entry-content .has-pale-cyan-blue-color {
/* 460 */ 	color: #8ed1fc;
/* 461 */ }
/* 462 */
/* 463 */ .entry-content .has-pale-cyan-blue-background-color,
/* 464 */ .wp-block-button.is-style-outline .has-pale-cyan-blue-background-color:link {
/* 465 */ 	background-color: #8ed1fc;
/* 466 */ }
/* 467 */
/* 468 */ .entry-content .has-vivid-cyan-blue-color {
/* 469 */ 	color: #0693e3;
/* 470 */ }
/* 471 */
/* 472 */ .entry-content .has-vivid-cyan-blue-background-color,
/* 473 */ .wp-block-button.is-style-outline .has-vivid-cyan-blue-background-color:link {
/* 474 */ 	background-color: #0693e3;
/* 475 */ }
/* 476 */
/* 477 */ .entry-content .has-very-light-gray-color {
/* 478 */ 	color: #eee;
/* 479 */ }
/* 480 */
/* 481 */ .entry-content .has-very-light-gray-background-color,
/* 482 */ .wp-block-button.is-style-outline .has-very-light-gray-background-color:link {
/* 483 */ 	background-color: #eee;
/* 484 */ }
/* 485 */
/* 486 */ .entry-content .has-cyan-bluish-gray-color {
/* 487 */ 	color: #abb8c3;
/* 488 */ }
/* 489 */
/* 490 */ .entry-content .has-cyan-bluish-gray-background-color,
/* 491 */ .wp-block-button.is-style-outline .has-cyan-bluish-gray-background-color:link {
/* 492 */ 	background-color: #abb8c3;
/* 493 */ }
/* 494 */
/* 495 */ .entry-content .has-very-dark-gray-color {
/* 496 */ 	color: #313131;
/* 497 */ }
/* 498 */
/* 499 */ .entry-content .has-very-dark-gray-background-color,
/* 500 */ .wp-block-button.is-style-outline .has-very-dark-gray-background-color:link {

/* blocks.css */

/* 501 */ 	background-color: #313131;
/* 502 */ }
/* 503 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.min.css */

/* 1 */ .is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/* Minify_CSS_UriRewriter::$debugText

*/

/* jetpack.css */

/* 1 */ @charset "UTF-8";@font-face{font-family:swiper-icons;font-style:normal;font-weight:400;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff")}:root{--swiper-theme-color:#007aff}.jp-carousel-overlay .swiper-container{list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}.jp-carousel-overlay .swiper-container-vertical>.swiper-wrapper{flex-direction:column}.jp-carousel-overlay .swiper-wrapper{box-sizing:content-box;display:flex;height:100%;position:relative;transition-property:transform;width:100%;z-index:1}.jp-carousel-overlay .swiper-container-android .swiper-slide,.jp-carousel-overlay .swiper-wrapper{transform:translateZ(0)}.jp-carousel-overlay .swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.jp-carousel-overlay .swiper-container-multirow-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.jp-carousel-overlay .swiper-container-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.jp-carousel-overlay .swiper-container-pointer-events{touch-action:pan-y}.jp-carousel-overlay .swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.jp-carousel-overlay .swiper-slide{flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.jp-carousel-overlay .swiper-slide-invisible-blank{visibility:hidden}.jp-carousel-overlay .swiper-container-autoheight,.jp-carousel-overlay .swiper-container-autoheight .swiper-slide{height:auto}.jp-carousel-overlay .swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.jp-carousel-overlay .swiper-container-3d{perspective:1200px}.jp-carousel-overlay .swiper-container-3d .swiper-cube-shadow,.jp-carousel-overlay .swiper-container-3d .swiper-slide,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,.jp-carousel-overlay .swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper{-ms-overflow-style:none;overflow:auto;scrollbar-width:none}.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.jp-carousel-overlay .swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.jp-carousel-overlay .swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.jp-carousel-overlay .swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.jp-carousel-overlay .swiper-button-next,.jp-carousel-overlay .swiper-button-prev{align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:var(--swiper-navigation-size);justify-content:center;margin-top:calc(0px - var( --swiper-navigation-size )/2);position:absolute;top:50%;width:calc(var( --swiper-navigation-size )/44*27);z-index:10}.jp-carousel-overlay .swiper-button-next.swiper-button-disabled,.jp-carousel-overlay .swiper-button-prev.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}.jp-carousel-overlay .swiper-button-next:after,.jp-carousel-overlay .swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);font-variant:normal;letter-spacing:0;line-height:1;text-transform:none!important;text-transform:none}.jp-carousel-overlay .swiper-button-prev,.jp-carousel-overlay .swiper-container-rtl .swiper-button-next{left:10px;right:auto}.jp-carousel-overlay .swiper-button-prev:after,.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after{content:"prev"}.jp-carousel-overlay .swiper-button-next,.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev{left:auto;right:10px}.jp-carousel-overlay .swiper-button-next:after,.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after{content:"next"}.jp-carousel-overlay .swiper-button-next.swiper-button-white,.jp-carousel-overlay .swiper-button-prev.swiper-button-white{--swiper-navigation-color:#fff}.jp-carousel-overlay .swiper-button-next.swiper-button-black,.jp-carousel-overlay .swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000}.jp-carousel-overlay .swiper-button-lock{display:none}.jp-carousel-overlay .swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10}.jp-carousel-overlay .swiper-pagination.swiper-pagination-hidden{opacity:0}.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets,.jp-carousel-overlay .swiper-pagination-custom,.jp-carousel-overlay .swiper-pagination-fraction{bottom:10px;left:0;width:100%}.jp-carousel-overlay .swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden}.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;transform:scale(.33)}.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.jp-carousel-overlay .swiper-pagination-bullet{background:#000;border-radius:50%;display:inline-block;height:8px;opacity:.2;width:8px}.jp-carousel-overlay button.swiper-pagination-bullet{-webkit-appearance:none;appearance:none;border:none;box-shadow:none;margin:0;padding:0}.jp-carousel-overlay .swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.jp-carousel-overlay .swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:1}.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0,-50%,0)}.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0}.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,left .2s}.jp-carousel-overlay .swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.jp-carousel-overlay .swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.jp-carousel-overlay .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.jp-carousel-overlay .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-progressbar,.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{height:4px;left:0;top:0;width:100%}.jp-carousel-overlay .swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.jp-carousel-overlay .swiper-container-vertical>.swiper-pagination-progressbar{height:100%;left:0;top:0;width:4px}.jp-carousel-overlay .swiper-pagination-white{--swiper-pagination-color:#fff}.jp-carousel-overlay .swiper-pagination-black{--swiper-pagination-color:#000}.jp-carousel-overlay .swiper-pagination-lock{display:none}.jp-carousel-overlay .swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.jp-carousel-overlay .swiper-zoom-container>canvas,.jp-carousel-overlay .swiper-zoom-container>img,.jp-carousel-overlay .swiper-zoom-container>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}.jp-carousel-overlay .swiper-slide-zoomed{cursor:move}.jp-carousel-overlay .swiper-container .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}:root{--jp-carousel-primary-color:#fff;--jp-carousel-primary-subtle-color:#999;--jp-carousel-bg-color:#000;--jp-carousel-bg-faded-color:#222;--jp-carousel-border-color:#3a3a3a}:root .jp-carousel-light{--jp-carousel-primary-color:#000;--jp-carousel-primary-subtle-color:#646970;--jp-carousel-bg-color:#fff;--jp-carousel-bg-faded-color:#fbfbfb;--jp-carousel-border-color:#dcdcde}.jp-carousel-overlay .swiper-button-next,.jp-carousel-overlay .swiper-button-prev,.jp-carousel-overlay .swiper-container-rtl .swiper-button-next,.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev{background-image:none}[data-carousel-extra]:not(.jp-carousel-wrap) img,[data-carousel-extra]:not(.jp-carousel-wrap) img+figcaption{cursor:pointer}.jp-carousel-wrap *{line-height:inherit}.jp-carousel-wrap.swiper-container{height:auto;width:100vw}.jp-carousel-overlay .swiper-zoom-container{background-position:50%;background-repeat:no-repeat;background-size:200%}.jp-carousel-overlay .swiper-slide.swiper-slide-next .swiper-zoom-container img,.jp-carousel-overlay .swiper-slide.swiper-slide-prev .swiper-zoom-container img{transition:none!important}.jp-carousel-overlay .swiper-button-next,.jp-carousel-overlay .swiper-button-prev{background-image:none;height:auto;opacity:.5;padding:20px 40px;transition:opacity .5s ease-out;width:auto}.jp-carousel-overlay .swiper-button-next:hover,.jp-carousel-overlay .swiper-button-prev:hover{opacity:1}.jp-carousel-overlay .swiper-button-next:after,.jp-carousel-overlay .swiper-button-prev:after,.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after,.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after{content:none}.jp-carousel-overlay .swiper-button-next svg,.jp-carousel-overlay .swiper-button-prev svg{background:var(--jp-carousel-bg-color);border-radius:4px;height:30px;width:28px}.jp-carousel-overlay .swiper-button-next svg:hover,.jp-carousel-overlay .swiper-button-prev svg:hover{background:var(--jp-carousel-primary-subtle-color)}.jp-carousel-overlay{background:var(--jp-carousel-bg-color);bottom:0;direction:ltr;font-family:Helvetica Neue,sans-serif!important;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;right:0;top:0;z-index:2147483647}.jp-carousel-overlay *{box-sizing:border-box}.jp-carousel-overlay h1:before,.jp-carousel-overlay h2:before,.jp-carousel-overlay h3:before{content:none;display:none}.jp-carousel-overlay .swiper-container .swiper-button-prev{left:0;right:auto}.jp-carousel-overlay .swiper-container .swiper-button-next{left:auto;right:0}.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-next,.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-prev{transform:scaleX(-1)}.jp-carousel-container{display:grid;grid-template-rows:1fr 64px;height:100%}.jp-carousel-hide-controls .jp-carousel-container{grid-template-rows:1fr}.jp-carousel-hide-controls .swiper-wrapper{margin-top:-32px}.jp-carousel-hide-controls .jp-swiper-button-next,.jp-carousel-hide-controls .jp-swiper-button-prev{margin-top:-54px}.jp-carousel-msg{background-color:var(--jp-carousel-primary-color);border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-family:Open Sans,sans-serif;font-size:14px;font-style:normal;line-height:19px;margin:25px 20px 0 2px;padding:11px 15px;text-align:center}.jp-carousel-info{-webkit-font-smoothing:subpixel-antialiased!important;background-color:var(--jp-carousel-bg-color);display:flex;flex-direction:column;opacity:1;text-align:left!important;transition:opacity .2s ease-out;z-index:100}.jp-carousel-hide-controls .jp-carousel-info{height:0;overflow:hidden;visibility:hidden}.jp-carousel-info-footer{align-items:center;display:flex;height:64px;justify-content:space-between;position:relative}.jp-carousel-info-extra,.jp-carousel-info-footer{background-color:var(--jp-carousel-bg-color);width:100vw}.jp-carousel-info-extra{border-top:1px solid var(--jp-carousel-bg-faded-color);display:none;padding:35px}.jp-carousel-title-and-caption{margin-bottom:15px}.jp-carousel-info-extra.jp-carousel-show{display:block}.jp-carousel-info ::selection{background:var(--jp-carousel-primary-color);color:var(--jp-carousel-primary-color)}.jp-carousel-info ::-moz-selection{background:var(--jp-carousel-primary-color);color:var(--jp-carousel-primary-color)}.jp-carousel-photo-info{left:0!important;width:100%!important}.jp-carousel-comments-wrapper{display:none;padding:0;width:100%!important}.jp-carousel-comments-wrapper.jp-carousel-show{display:block}.jp-carousel-comments-wrapper>.jp-carousel-photo-info{display:none}.jp-carousel-transitions .jp-carousel-photo-info{transition:.4s ease-out}.jp-carousel-buttons{background:#222;border-bottom:1px solid #222;margin:-18px -20px 15px;padding:8px 10px;text-align:center}div.jp-carousel-buttons a{-webkit-font-smoothing:subpixel-antialiased;border:none!important;color:var(--jp-carousel-primary-subtle-color);font:normal 11px/1.2em Helvetica Neue,sans-serif!important;letter-spacing:0!important;padding:5px 2px 5px 0;text-decoration:none!important;text-shadow:none!important;vertical-align:middle}div.jp-carousel-buttons a:hover{border:none!important;color:var(--jp-carousel-primary-color)}.jp-carousel-transitions div.jp-carousel-buttons a:hover{transition:none!important}.jp-carousel-slide,.jp-carousel-slide img{transform:translateZ(0)}.jp-carousel-close-hint{color:var(--jp-carousel-primary-color);cursor:default;cursor:pointer;height:45px;letter-spacing:0!important;padding:10px;position:fixed;right:30px;text-align:right;top:20px;transition:opacity .2s ease-out;width:45px;z-index:15}.jp-carousel-transitions .jp-carousel-close-hint{transition:color .2s linear}.jp-carousel-close-hint svg{background:var(--jp-carousel-bg-color);border-radius:4px;padding:3px 2px}.jp-carousel-close-hint svg:hover{background:var(--jp-carousel-primary-subtle-color)}.jp-carousel-close-hint:hover{color:var(--jp-carousel-primary-color)}.jp-carousel-close-hint:hover span{border-color:var(--jp-carousel-primary-color)}.jp-carousel-pagination-container{flex:1;margin:0 15px 0 35px}.jp-carousel-pagination,.jp-swiper-pagination{color:var(--jp-carousel-primary-color);display:none;font-size:15px;font-weight:400;position:static!important;white-space:nowrap}.jp-carousel-pagination-container .swiper-pagination{line-height:8px;text-align:left}.jp-carousel-pagination{padding-left:5px}.jp-swiper-pagination .swiper-pagination-bullet{background:var(--jp-carousel-primary-subtle-color);margin:0 4px}.jp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{background:var(--jp-carousel-primary-color)}.jp-swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active){background:var(--jp-carousel-primary-color);opacity:.5}.jp-carousel-info-footer .jp-carousel-photo-title-container{flex-basis:50vw;flex:4;justify-content:center;margin:0;overflow:hidden}.jp-carousel-photo-caption,.jp-carousel-photo-title{background:none!important;border:none!important;color:var(--jp-carousel-primary-color);display:inline-block;font:normal 20px/1.3em Helvetica Neue,sans-serif;letter-spacing:0!important;line-height:normal;margin:0 0 10px;overflow:hidden;padding:0;text-shadow:none!important;text-transform:none!important}.jp-carousel-info-footer .jp-carousel-photo-caption{color:var(--jp-carousel-primary-subtle-color);cursor:pointer;font-size:15px;margin:0;text-align:center;text-overflow:ellipsis;white-space:nowrap}.jp-carousel-info-footer .jp-carousel-photo-caption p{margin:0}.jp-carousel-photo-title{font-size:32px;margin-bottom:2px}.jp-carousel-photo-description{color:var(--jp-carousel-primary-subtle-color);font-size:16px;margin:25px 0;overflow:hidden;overflow-wrap:break-word;width:100%}.jp-carousel-photo-description p{color:var(--jp-carousel-primary-subtle-color);line-height:1.4;margin-bottom:0}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-photo-description p a{border:none!important;color:var(--jp-carousel-primary-color)!important;font-style:normal!important;font-weight:400!important;text-decoration:underline!important}.jp-carousel-photo-description p b,.jp-carousel-photo-description p strong{color:var(--jp-carousel-primary-subtle-color);font-weight:700}.jp-carousel-photo-description p em,.jp-carousel-photo-description p i{color:var(--jp-carousel-primary-subtle-color);font-style:italic}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-photo-description p a:hover{color:var(--jp-carousel-primary-subtle-color)!important}.jp-carousel-photo-description p:empty{display:none}.jp-carousel-comments-wrapper h1:after,.jp-carousel-comments-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-caption{font-size:14px;font-weight:400;margin:0}.jp-carousel-image-meta{color:var(--jp-carousel-primary-color);display:none;font-size:13px;font:12px/1.4 Helvetica Neue,sans-serif!important;width:100%}.jp-carousel-image-meta.jp-carousel-show{display:block}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{background:none!important;border:none!important;bottom:auto!important;font-family:Helvetica Neue,sans-serif!important;font-weight:400!important;left:auto!important;line-height:1.3em!important;position:inherit!important;right:auto!important;top:auto!important}.jp-carousel-image-meta ul{list-style:none!important;margin:0!important;padding:0!important}.jp-carousel-image-meta li{color:var(--jp-carousel-primary-color)!important;display:inline-block!important;font-size:13px!important;margin:0 2% 15px 0!important;vertical-align:top!important;width:48%!important}.jp-carousel-image-meta h5{color:var(--jp-carousel-primary-subtle-color)!important;font-size:10px!important;letter-spacing:.1em!important;margin:0 0 2px!important;text-transform:uppercase!important}a.jp-carousel-image-download{clear:both;color:var(--jp-carousel-primary-subtle-color);display:inline-block;font-size:14px;font-weight:400;line-height:1;text-decoration:none}a.jp-carousel-image-download svg{display:inline-block;margin:0 3px;padding-bottom:2px;vertical-align:middle}a.jp-carousel-image-download span.photo-size{border-radius:1em;display:inline-block;font-size:11px;margin-left:2px}a.jp-carousel-image-download span.photo-size-times{padding:0 1px 0 2px}.jp-carousel-comments{background:none transparent;bottom:10px;font:15px/1.7 Helvetica Neue,sans-serif!important;font-weight:400;margin-top:20px;width:100%}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:var(--jp-carousel-primary-color)!important}.jp-carousel-comment{background:none transparent;color:var(--jp-carousel-primary-subtle-color);display:flex;overflow:auto;width:100%}.jp-carousel-comment+.jp-carousel-comment{margin-top:20px}.jp-carousel-comment:last-of-type{margin-bottom:20px}.jp-carousel-comment p{color:var(--jp-carousel-primary-subtle-color)!important}.jp-carousel-comment .comment-author{border:none;display:inline;float:none;font-size:15px;font-weight:500;margin:0;padding:0;width:auto}.jp-carousel-comment .comment-author a{color:var(--jp-carousel-primary-color)}.jp-carousel-comment .comment-gravatar{float:none;margin-right:10px}.jp-carousel-comment .comment-content{border:none;padding:0}.jp-carousel-comment .avatar{background-color:transparent!important;border:none!important;border-radius:4px;height:64px;margin:0;min-height:64px;min-width:64px;padding:0!important;width:64px}.jp-carousel-comment .comment-date{border-bottom:1px solid var(--jp-carousel-bg-faded-color);color:var(--jp-carousel-primary-subtle-color);font-size:11px;margin-bottom:6px}#jp-carousel-comment-form{margin:0 0 10px!important;width:100%}#jp-carousel-comment-form.jp-carousel-is-disabled{opacity:.5;pointer-events:none}textarea#jp-carousel-comment-form-comment-field{background:var(--jp-carousel-bg-faded-color);border:1px solid var(--jp-carousel-border-color);border-radius:3px;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1);box-sizing:border-box;color:var(--jp-carousel-primary-subtle-color);float:none;font:16px/1.4 Helvetica Neue,sans-serif!important;height:147px;margin:0;overflow:hidden;padding:10px 10px 5px;width:100%}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:var(--jp-carousel-bg-faded-color);color:var(--jp-carousel-primary-subtle-color)}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:var(--jp-carousel-primary-subtle-color)}#jp-carousel-loading-overlay{bottom:0;display:none;left:0;position:fixed;right:0;top:0}#jp-carousel-loading-wrapper{align-items:center;display:flex;height:100vh;justify-content:center;width:100vw}#jp-carousel-library-loading,#jp-carousel-library-loading:after{border-radius:50%;height:40px;width:40px}#jp-carousel-library-loading{animation:load8 1.1s linear infinite;border:8px solid hsla(0,0%,100%,.2);border-left:8px solid var(--jp-carousel-primary-color);float:left;font-size:10px;margin:22px 0 0 10px;position:relative;text-indent:-9999em;transform:translateZ(0)}#jp-carousel-comment-form-spinner,#jp-carousel-comment-form-spinner:after{border-radius:50%;height:20px;width:20px}#jp-carousel-comment-form-spinner{animation:load8 1.1s linear infinite;border:4px solid hsla(0,0%,100%,.2);border-left:4px solid var(--jp-carousel-primary-color);bottom:0;display:none;float:left;font-size:10px;left:0;margin:0 auto;position:absolute;right:0;text-indent:-9999em;top:calc(50% - 15px);transform:translateZ(0)}@keyframes load8{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.jp-carousel-info-content-wrapper{margin:auto;max-width:800px}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:var(--jp-carousel-bg-color);border:1px solid var(--jp-carousel-border-color);border-radius:2px;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);color:var(--jp-carousel-primary-subtle-color);float:left;font:16px/1.4 Helvetica Neue,sans-serif!important;padding:10px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:var(--jp-carousel-bg-faded-color);color:var(--jp-carousel-primary-subtle-color)}#jp-carousel-comment-form-commenting-as p{float:left;font:400 13px/1.7 Helvetica Neue,sans-serif!important;margin:22px 0 0}#jp-carousel-comment-form-commenting-as fieldset{border:none;clear:both;float:left;margin:20px 0 0;padding:0}#jp-carousel-comment-form-commenting-as label{float:left;font:400 13px/1.7 Helvetica Neue,sans-serif!important;margin:0 20px 3px 0;width:100px}#jp-carousel-comment-form-button-submit{background:var(--jp-carousel-bg-color);border:1px solid var(--jp-carousel-primary-color);border-radius:3px;color:var(--jp-carousel-primary-color);display:block;font-size:14px;margin-left:auto;margin-top:20px;padding:8px 16px}#jp-carousel-comment-form-button-submit:active,#jp-carousel-comment-form-button-submit:focus{background:var(--jp-carousel-primary-color);color:var(--jp-carousel-bg-color)}#jp-carousel-comment-form-container{color:var(--jp-carousel-primary-subtle-color);margin-bottom:15px;margin-top:20px;overflow:hidden;position:relative;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{border:1px solid var(--jp-carousel-border-color);border-radius:2px;box-shadow:inset 0 0 5px 0 rgba(0,0,0,.2);box-sizing:border-box;display:block;font:13px/1.4 Helvetica Neue,sans-serif!important;margin-top:20px;overflow:auto;padding:1em 0;text-align:center;width:100%}.jp-carousel-comment-post-error{color:#df4926}#jp-carousel-comments-closed,#jp-carousel-comments-loading{color:var(--jp-carousel-primary-subtle-color);display:none}#jp-carousel-comments-loading{bottom:10px;font:400 15px/1.7 Helvetica Neue,sans-serif!important;margin-bottom:20px;margin-top:20px;text-align:left;width:100%}.jp-carousel-photo-icons-container{display:block;flex:1;margin:0 20px 0 30px;text-align:right;white-space:nowrap}.jp-carousel-icon-btn{background:none;border:none;display:inline-block;height:64px;padding:16px;text-decoration:none}.jp-carousel-icon{border:none;border-radius:4px;display:inline-block;font-style:normal;font-weight:400;line-height:0;padding:4px 3px 3px;width:31px}.jp-carousel-icon:hover{background:var(--jp-carousel-primary-subtle-color)}.jp-carousel-icon svg{display:inline-block}.jp-carousel-overlay rect{fill:var(--jp-carousel-primary-color)}.jp-carousel-selected .jp-carousel-icon{background:var(--jp-carousel-primary-color)}.jp-carousel-selected rect{fill:var(--jp-carousel-bg-color)}.jp-carousel-icon-comments.jp-carousel-show{display:inline-block}.jp-carousel-icon .jp-carousel-has-comments-indicator{background:var(--jp-carousel-primary-color);border-radius:4px;color:var(--jp-carousel-bg-color);display:none;font-family:Helvetica Neue,sans-serif!important;font-size:12px;font-weight:400;line-height:1;margin-left:-16px;padding:2px 4px;position:relative;vertical-align:top}.jp-carousel-selected .jp-carousel-icon .jp-carousel-has-comments-indicator{background:var(--jp-carousel-bg-color);color:var(--jp-carousel-primary-color)}.jp-carousel-has-comments-indicator.jp-carousel-show{display:inline-block}@media only screen and (max-width:760px){.jp-carousel-buttons,.jp-carousel-overlay .swiper-container .swiper-button-next,.jp-carousel-overlay .swiper-container .swiper-button-prev{display:none!important}.jp-carousel-image-meta{box-sizing:border-box;float:none!important;margin-left:0;width:100%!important}.jp-carousel-close-hint{font-size:26px!important;position:fixed!important;right:10px;top:10px}.admin-bar .jp-carousel-close-hint{top:40px}.jp-carousel-slide img{opacity:1}.jp-carousel-wrap{background-color:var(--jp-carousel-bg-color)}.jp-carousel-fadeaway,.jp-carousel-info>.jp-carousel-photo-info{display:none}.jp-carousel-comments-wrapper>.jp-carousel-photo-info{display:block}.jp-carousel-caption{overflow:visible!important}.jp-carousel-info-footer .jp-carousel-photo-title-container{display:none}.jp-carousel-photo-icons-container{margin:0 10px 0 0;white-space:nowrap}.jp-carousel-icon-btn{padding-left:20px}.jp-carousel-pagination{padding-left:5px}.jp-carousel-pagination-container{margin-left:25px}.jp-carousel-comment .avatar{min-width:48px}#jp-carousel-comment-form-commenting-as fieldset,#jp-carousel-comment-form-commenting-as input{float:none;width:100%}}:root{--jetpack--contact-form--border:1px solid #8c8f94;--jetpack--contact-form--border-color:#8c8f94;--jetpack--contact-form--border-size:1px;--jetpack--contact-form--border-style:solid;--jetpack--contact-form--border-radius:0px;--jetpack--contact-form--input-padding:16px}.contact-form .clear-form{clear:both}.contact-form input::placeholder{transition:opacity .3s ease-out}.contact-form input:hover::placeholder{opacity:.5}.contact-form input:focus::placeholder{opacity:.3}:where(.contact-form input[type=text],.contact-form input[type=email],.contact-form input[type=tel],.contact-form input[type=url],.contact-form textarea){border:1px solid #8c8f94;border-radius:0;box-sizing:border-box;font:inherit;padding:16px;width:100%}:where(.contact-form textarea){height:200px}.contact-form :where(.grunion-field[type=text],.grunion-field.textarea){padding-left:max(var(--jetpack--contact-form--input-padding-left,16px),var(--jetpack--contact-form--border-radius));padding-right:max(var(--jetpack--contact-form--input-padding-left,16px),var(--jetpack--contact-form--border-radius))}.contact-form .grunion-field-wrap input,.contact-form .grunion-field-wrap textarea{margin:0}.contact-form select{min-width:150px;padding:14px 7px}.contact-form :where(input[type=radio],input[type=checkbox]){float:none;height:1rem;width:1rem}.contact-form input[type=checkbox],.contact-form input[type=radio]{margin:0 .75rem 0 0}.contact-form input[type=checkbox]{margin-left:0;top:0}.contact-form label{display:block;float:none;font-weight:700;margin-bottom:.25em}.contact-form label.consent{align-items:center;display:flex;font-size:13px;font-weight:400;text-transform:uppercase}.contact-form label.consent-implicit input{display:none}.contact-form label.checkbox,.contact-form label.checkbox-multiple,.contact-form label.radio{align-items:center;display:inline-flex;float:none;font-weight:400;line-height:1;margin-bottom:0}.contact-form .grunion-checkbox-multiple-options,.contact-form .grunion-radio-options{display:flex;flex-direction:column;gap:12px}.contact-form label span{font-size:85%;font-weight:400;margin-left:.25em;opacity:.45}.contact-form-submission{border-bottom:1px solid #000;border-top:1px solid #000;margin-bottom:4em;padding:1.5em 1em;width:100%}.contact-form-submission p{word-wrap:break-word;margin:0 auto}.contact-form-submission h4{font-weight:200;margin-bottom:32px;margin-top:32px}.contact-form-submission .go-back-message{margin-bottom:32px;margin-top:20px;text-align:left}.contact-form-submission .go-back-message .link{color:#000;font-weight:200}.contact-form-submission .field-name{font-weight:200}.contact-form-submission .field-value{font-weight:600;margin-bottom:20px}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=tel],.textwidget .contact-form input[type=text],.textwidget .contact-form input[type=url],.textwidget .contact-form textarea,.wp-block-column .contact-form input[type=email],.wp-block-column .contact-form input[type=tel],.wp-block-column .contact-form input[type=text],.wp-block-column .contact-form input[type=url],.wp-block-column .contact-form textarea{width:100%}#jetpack-check-feedback-spam{margin:1px 8px 0 0}.jetpack-check-feedback-spam-spinner{display:inline-block;margin-top:7px}.wp-block-jetpack-contact-form{display:flex;flex-direction:row;flex-grow:1;flex-wrap:wrap;gap:var(--wp--style--block-gap,1.5rem);justify-content:flex-start}.wp-block-jetpack-contact-form>*{box-sizing:border-box;flex:0 0 100%}.wp-block-jetpack-contact-form-container.alignfull .wp-block-jetpack-contact-form{padding-left:0;padding-right:0}.wp-block-jetpack-button.alignright button{float:right}.wp-block-jetpack-contact-form .grunion-field-wrap{box-sizing:border-box}.wp-block-jetpack-contact-form .grunion-field-width-25-wrap{flex:1 1 calc(25% - var(--wp--style--block-gap, 1.5rem)*1);max-width:25%}.wp-block-jetpack-contact-form .grunion-field-width-50-wrap{flex:1 1 calc(50% - var(--wp--style--block-gap, 1.5rem)*1);max-width:50%}.wp-block-jetpack-contact-form .grunion-field-width-75-wrap{flex:1 1 calc(75% - var(--wp--style--block-gap, 1.5rem)*1);max-width:75%}.grunion-field-checkbox-wrap,.grunion-field-consent-wrap{align-self:center}@media only screen and (min-width:600px){.contact-form input[type=email],.contact-form input[type=tel],.contact-form input[type=text],.contact-form input[type=url]{width:50%}.wp-block-jetpack-contact-form input[type=email],.wp-block-jetpack-contact-form input[type=tel],.wp-block-jetpack-contact-form input[type=text],.wp-block-jetpack-contact-form input[type=url]{width:100%}}.jetpack-empty-spam,.jetpack-empty-spam-container{display:inline-block}.jetpack-empty-spam-spinner{display:inline-block;margin-top:7px}.wp-block-jetpack-contact-form .wp-block-spacer{width:100%}.contact-form .contact-form-dropdown__button.ui-button{align-items:center;background-color:var(--jetpack--contact-form--input-background);border:var(--jetpack--contact-form--border);border-color:var(--jetpack--contact-form--border-color);border-radius:var(--jetpack--contact-form--border-radius);border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size);box-sizing:border-box;color:var(--jetpack--contact-form--text-color);display:flex;flex-direction:row-reverse;font-family:var(--jetpack--contact-form--font-family);font-size:var(--jetpack--contact-form--font-size);justify-content:space-between;line-height:var(--jetpack--contact-form--line-height);padding:var(--jetpack--contact-form--input-padding);width:100%}.contact-form .contact-form-dropdown__button.ui-button .ui-selectmenu-icon.ui-icon{background:none}.contact-form .contact-form-dropdown__button .ui-selectmenu-icon,.contact-form .contact-form-dropdown__button.ui-selectmenu-button-open .ui-selectmenu-icon{align-items:center;border:2px solid transparent;box-sizing:border-box;display:flex;height:.8em;justify-content:center;margin-right:4px;overflow:visible;position:relative;width:.8em}.contact-form .contact-form-dropdown__button .ui-selectmenu-icon:after{border-bottom:2px solid;border-right:2px solid;box-sizing:border-box;content:"";display:block;height:100%;margin-top:-5px;transform:rotate(45deg);transition:all .2s ease-in-out;width:100%}.contact-form .contact-form-dropdown__button.ui-selectmenu-button-open .ui-selectmenu-icon:after{margin-top:8px;transform:rotate(225deg)}.contact-form .contact-form-dropdown__menu{z-index:1}.contact-form .contact-form-dropdown__menu ul.ui-menu{background-color:var(--jetpack--contact-form--input-background-fallback);border:var(--jetpack--contact-form--border);border-color:var(--jetpack--contact-form--border-color);border-radius:var(--jetpack--contact-form--border-radius);border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size);box-shadow:0 2px 6px rgba(0,0,0,.05);color:var(--jetpack--contact-form--text-color);font-family:var(--jetpack--contact-form--font-family);font-size:var(--jetpack--contact-form--font-size);line-height:normal;list-style:none;margin:0;max-height:230px;overflow:auto;padding:0}.contact-form .contact-form-dropdown__menu .ui-menu-item{margin:0}.contact-form .contact-form-dropdown__menu .ui-menu{margin-top:8px}.contact-form .contact-form-dropdown__menu .ui-menu .ui-menu-item-wrapper{padding:var(--jetpack--contact-form--input-padding)}.contact-form .contact-form-dropdown__menu .ui-menu .ui-menu-item-wrapper.ui-state-active{background-color:var(--jetpack--contact-form--text-color);border:none;color:var(--jetpack--contact-form--input-background-fallback);position:relative}.contact-form .is-style-animated .grunion-field-wrap:not(.grunion-field-checkbox-wrap):not(.grunion-field-consent-wrap),.contact-form .is-style-outlined .grunion-field-wrap:not(.grunion-field-checkbox-wrap):not(.grunion-field-consent-wrap){--notch-width:max(var(--jetpack--contact-form--input-padding-left,16px),var(--jetpack--contact-form--border-radius));display:flex;flex-direction:row-reverse;position:relative}.contact-form .is-style-outlined .grunion-field-checkbox-multiple-wrap,.contact-form .is-style-outlined .grunion-field-radio-wrap{background-color:var(--jetpack--contact-form--input-background)}.contact-form .is-style-animated .grunion-field-wrap .grunion-checkbox-multiple-options,.contact-form .is-style-animated .grunion-field-wrap .grunion-radio-options,.contact-form .is-style-outlined .grunion-field-wrap .grunion-checkbox-multiple-options,.contact-form .is-style-outlined .grunion-field-wrap .grunion-radio-options{flex-grow:1;padding:var(--jetpack--contact-form--input-padding,16px);padding-top:calc(var(--jetpack--contact-form--input-padding-top, 16px) + 4px)}.contact-form :not(.is-style-outlined):not(.is-style-animated) .grunion-field-wrap .grunion-checkbox-multiple-options,.contact-form :not(.is-style-outlined):not(.is-style-animated) .grunion-field-wrap .grunion-radio-options{border-color:var(--jetpack--contact-form--border-color);border-radius:var(--jetpack--contact-form--border-radius);border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size);padding:var(--jetpack--contact-form--input-padding,16px)}.contact-form .is-style-outlined .grunion-field-wrap .notched-label{box-sizing:border-box;display:flex;height:100%;left:0;max-width:100%;pointer-events:none;position:absolute;right:0;text-align:left;width:100%}.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__leading{border:var(--jetpack--contact-form--border);border-color:var(--jetpack--contact-form--border-color);border-radius:var(--jetpack--contact-form--border-radius);border-bottom-right-radius:unset;border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size);border-right:none;border-top-right-radius:unset;width:var(--notch-width)}.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__notch{border:var(--jetpack--contact-form--border);border-color:var(--jetpack--contact-form--border-color);border-radius:unset;border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size);border-left:none;border-right:none;padding:0 4px;transition:border .15s linear}.contact-form .is-style-outlined .grunion-field-wrap.no-label .notched-label__notch{padding:0}.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__label{font-weight:300;margin:0;pointer-events:none;position:relative;top:50%;transform:translateY(-50%);transition:all .15s cubic-bezier(.4,0,.2,1);will-change:transform}.contact-form .is-style-outlined .grunion-field-textarea-wrap .notched-label .notched-label__label{top:var(--jetpack--contact-form--input-padding-top,16px);transform:unset}.contact-form .is-style-outlined .grunion-field-wrap .notched-label .notched-label__trailing{border:var(--jetpack--contact-form--border);border-color:var(--jetpack--contact-form--border-color);border-radius:var(--jetpack--contact-form--border-radius);border-bottom-left-radius:unset;border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size);border-left:none;border-top-left-radius:unset;flex-grow:1}.contact-form .is-style-outlined .grunion-field-wrap .grunion-checkbox-multiple-options~.notched-label .notched-label__notch,.contact-form .is-style-outlined .grunion-field-wrap .grunion-field.has-placeholder~.notched-label .notched-label__notch,.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:focus~.notched-label .notched-label__notch,.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:not(:placeholder-shown)~.notched-label .notched-label__notch,.contact-form .is-style-outlined .grunion-field-wrap .grunion-radio-options~.notched-label .notched-label__notch{border-top-color:transparent}.contact-form .is-style-outlined .grunion-field-wrap .grunion-checkbox-multiple-options~.notched-label .notched-label__label,.contact-form .is-style-outlined .grunion-field-wrap .grunion-field.has-placeholder~.notched-label .notched-label__label,.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:focus~.notched-label .notched-label__label,.contact-form .is-style-outlined .grunion-field-wrap .grunion-field:not(:placeholder-shown)~.notched-label .notched-label__label,.contact-form .is-style-outlined .grunion-field-wrap .grunion-radio-options~.notched-label .notched-label__label{font-size:.8em;top:calc(var(--jetpack--contact-form--border-size)*-1);transform:translateY(-50%)}.contact-form .is-style-outlined .grunion-field-wrap .contact-form-dropdown__button,.contact-form .is-style-outlined .grunion-field-wrap>input,.contact-form .is-style-outlined .grunion-field-wrap>textarea{border-color:transparent!important;outline:none;padding-left:calc(var(--notch-width) + 4px);padding-right:calc(var(--notch-width) + 4px)}.contact-form .is-style-outlined .grunion-field-wrap textarea{padding:var(--jetpack--contact-form--input-padding,16px)}.contact-form .is-style-outlined .contact-form-dropdown__menu .ui-menu-item-wrapper,.contact-form .is-style-outlined .grunion-field-wrap textarea{padding-left:calc(var(--notch-width) + 4px);padding-right:calc(var(--notch-width) + 4px)}.contact-form .is-style-animated .grunion-field-wrap{--left-offset:calc(var(--jetpack--contact-form--input-padding-left, 16px) + var(--jetpack--contact-form--border-size));--label-left:max(var(--left-offset),var(--jetpack--contact-form--border-radius));--field-padding:calc(var(--label-left) - var(--jetpack--contact-form--border-size))}.contact-form .is-style-animated .grunion-field-wrap input{outline:none}.contact-form .is-style-animated .grunion-field-wrap textarea{outline:none;padding:var(--jetpack--contact-form--input-padding,16px)}.contact-form .is-style-animated .grunion-field-wrap:not(.no-label) .contact-form-dropdown__button,.contact-form .is-style-animated .grunion-field-wrap:not(.no-label)>input,.contact-form .is-style-animated .grunion-field-wrap:not(.no-label)>textarea{padding-left:var(--field-padding);padding-right:var(--field-padding);padding-top:1.4em}.contact-form .is-style-animated .grunion-field-wrap .contact-form-dropdown__menu .ui-menu-item-wrapper{padding-left:var(--field-padding);padding-right:var(--field-padding)}.contact-form .is-style-animated .grunion-field-checkbox-multiple-wrap,.contact-form .is-style-animated .grunion-field-radio-wrap{background-color:var(--jetpack--contact-form--input-background);border:var(--jetpack--contact-form--border);border-color:var(--jetpack--contact-form--border-color);border-radius:var(--jetpack--contact-form--border-radius);border-style:var(--jetpack--contact-form--border-style);border-width:var(--jetpack--contact-form--border-size)}.contact-form .is-style-animated .grunion-field-checkbox-multiple-wrap .grunion-checkbox-multiple-options,.contact-form .is-style-animated .grunion-field-radio-wrap .grunion-radio-options{padding-top:1.7em}.contact-form .is-style-animated .grunion-field-wrap .animated-label__label{box-sizing:border-box;left:var(--label-left);margin:0;max-width:100%;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);transition:all .15s cubic-bezier(.4,0,.2,1);width:100%}.contact-form .is-style-animated .grunion-field-textarea-wrap .animated-label__label{top:var(--jetpack--contact-form--input-padding-top,16px);transform:unset}.contact-form .is-style-animated .grunion-field-wrap .grunion-checkbox-multiple-options~.animated-label__label,.contact-form .is-style-animated .grunion-field-wrap .grunion-field.has-placeholder~.animated-label__label,.contact-form .is-style-animated .grunion-field-wrap .grunion-field:focus~.animated-label__label,.contact-form .is-style-animated .grunion-field-wrap .grunion-field:not(:placeholder-shown)~.animated-label__label,.contact-form .is-style-animated .grunion-field-wrap .grunion-radio-options~.animated-label__label{font-size:.75em;top:calc(2px + var(--jetpack--contact-form--border-size));transform:translateY(0)}.contact-form .is-style-below .grunion-field-wrap .below-label__label{margin-left:var(--jetpack--contact-form--border-size)}.infinite-loader{color:#000;display:block;height:28px;text-align:center}#infinite-handle span{background:#333;border-radius:1px;color:#f0f0f1;cursor:pointer;font-size:13px;padding:6px 16px}@keyframes spinner-inner{0%{opacity:1}to{opacity:0}}.infinite-loader .spinner-inner div{animation:spinner-inner 1s linear infinite;background:#000;border-radius:3px/6px;height:12px;left:47px;outline:1px solid #fff;position:absolute;top:24px;transform-origin:3px 26px;width:6px}.infinite-loader .spinner-inner div:first-child{animation-delay:-.9166666667s;background:#000;transform:rotate(0deg)}.infinite-loader .spinner-inner div:nth-child(2){animation-delay:-.8333333333s;background:#000;transform:rotate(30deg)}.infinite-loader .spinner-inner div:nth-child(3){animation-delay:-.75s;background:#000;transform:rotate(60deg)}.infinite-loader .spinner-inner div:nth-child(4){animation-delay:-.6666666667s;background:#000;transform:rotate(90deg)}.infinite-loader .spinner-inner div:nth-child(5){animation-delay:-.5833333333s;background:#000;transform:rotate(120deg)}.infinite-loader .spinner-inner div:nth-child(6){animation-delay:-.5s;background:#000;transform:rotate(150deg)}.infinite-loader .spinner-inner div:nth-child(7){animation-delay:-.4166666667s;background:#000;transform:rotate(180deg)}.infinite-loader .spinner-inner div:nth-child(8){animation-delay:-.3333333333s;background:#000;transform:rotate(210deg)}.infinite-loader .spinner-inner div:nth-child(9){animation-delay:-.25s;background:#000;transform:rotate(240deg)}.infinite-loader .spinner-inner div:nth-child(10){animation-delay:-.1666666667s;background:#000;transform:rotate(270deg)}.infinite-loader .spinner-inner div:nth-child(11){animation-delay:-.0833333333s;background:#000;transform:rotate(300deg)}.infinite-loader .spinner-inner div:nth-child(12){animation-delay:0s;background:#000;transform:rotate(330deg)}.infinite-loader .spinner{background:none;display:inline-block;height:28px;overflow:hidden;width:28px}.infinite-loader .spinner-inner{backface-visibility:hidden;height:100%;position:relative;transform:translateZ(0) scale(.28);transform-origin:0 0;width:100%}.infinite-loader .spinner-inner div{box-sizing:content-box}#infinite-handle span button,#infinite-handle span button:focus,#infinite-handle span button:hover{background:transparent;border:none;color:inherit;cursor:inherit;display:inline;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0;position:static}#infinite-handle span button::-moz-focus-inner{border:none;margin:0;padding:0}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{bottom:-50px;left:0;position:fixed;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:hsla(0,0%,100%,.8);border:solid rgba(0,0,0,.1);border-width:1px 0 0;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:left;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{float:right;font-weight:400;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:right}#infinite-footer .blog-credits a{color:#646970}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}#infinite-footer{position:static}}#infinite-aria{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.infinite-wrap:focus{outline:0!important}div.sharedaddy h3.sd-title:before{border-top:1px solid #dcdcde;content:"";display:block;margin-bottom:1em;min-width:30px;width:100%}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{overflow:hidden;width:61px}#wpadminbar iframe.admin-bar-likes-widget{border-width:0;height:28px;min-height:28px;position:absolute;top:0;width:61px}div.jetpack-likes-widget-wrapper{min-height:50px;position:relative;width:100%}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-comment-likes-widget-wrapper{min-height:31px;position:relative;width:100%}div.jetpack-comment-likes-widget-wrapper iframe{margin-bottom:0}#likes-other-gravatars{background-color:#2e4453;border-width:0;box-shadow:0 0 10px #2e4453;box-shadow:0 0 10px rgba(46,68,83,.6);display:none;min-width:130px;padding:10px 10px 12px;position:absolute;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:12px;padding-bottom:8px}#likes-other-gravatars li,#likes-other-gravatars ul{list-style-type:none;margin:0;padding:0;text-indent:0}#likes-other-gravatars li:before{content:""}#likes-other-gravatars ul.wpl-avatars{display:block;max-height:190px;overflow:auto}#likes-other-gravatars ul.wpl-avatars li{float:left;height:32px;margin:0 5px 5px 0;width:32px}#likes-other-gravatars ul.wpl-avatars li a{border-bottom:none!important;display:block;margin:0 2px 0 0}#likes-other-gravatars ul.wpl-avatars li a img{background:none;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #dcdcde;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{border-width:0;display:block;margin:0}.comment-likes-widget-placeholder,.post-likes-widget-placeholder{border-width:0;margin:0;position:relative}.comment-likes-widget-placeholder{display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;height:18px;position:absolute}.comment-likes-widget-placeholder:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%232EA2CC' d='m12 2 2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:16px 16px;color:#2ea2cc;content:"";display:inline-block;height:16px;padding-right:5px;position:relative;top:3px;width:16px}.post-likes-widget-placeholder .button{display:none}.comment-likes-widget-placeholder .loading,.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.comment-likes-widget-placeholder .loading{align-self:center;color:#4e4e4e;margin-top:4px;padding-left:5px}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{float:none;position:absolute;top:0;width:100%}.comment-likes-widget{width:100%}.cs-rating,.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}@media print{.jetpack-likes-widget-wrapper{display:none}}.jp-related-posts-i2__row{display:flex;margin-top:1.5rem}.jp-related-posts-i2__row:first-child{margin-top:0}.jp-related-posts-i2__post{display:flex;flex-basis:0;flex-direction:column;flex-grow:1;margin:0 10px;padding-left:0}.jp-related-posts-i2__row[data-post-count="3"] .jp-related-posts-i2__post{max-width:calc(33% - 20px)}.jp-related-posts-i2__row[data-post-count="1"] .jp-related-posts-i2__post,.jp-related-posts-i2__row[data-post-count="2"] .jp-related-posts-i2__post{max-width:calc(50% - 20px)}.jp-related-posts-i2__post-context,.jp-related-posts-i2__post-date,.jp-related-posts-i2__post-heading,.jp-related-posts-i2__post-img-link{display:block;flex-direction:row}.jp-related-posts-i2__post-heading{font-size:1rem;line-height:1.2em;margin:.5rem 0}.jp-related-posts-i2__post-link{display:block;line-height:1.2em;width:100%}.jp-related-posts-i2__post-img-link{order:-1}.jp-related-posts-i2__post-img-link img{width:100%}.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__row{display:block;margin-top:0}.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__post{margin:0;max-width:none}.jp-relatedposts-i2[data-layout=list].jp-related-posts-i2__post-img-link{margin-top:1rem}@media only screen and (max-width:640px){.jp-related-posts-i2__row{display:block;margin-top:0}.jp-related-posts-i2__row[data-post-count] .jp-related-posts-i2__post{margin:1rem 0 0;max-width:none}.jp-related-posts-i2__post-img-link{margin-top:1rem}.jp-related-posts-i2__post-img-link img{width:350px}}#jp-relatedposts{clear:both;display:none;margin:1em 0;padding-top:1em;position:relative}.jp-relatedposts:after{clear:both;content:"";display:block}#jp-relatedposts h3.jp-relatedposts-headline{display:inline-block;float:left;font-family:inherit;font-size:9pt;font-weight:700;margin:0 0 1em}#jp-relatedposts h3.jp-relatedposts-headline em:before{border-top:1px solid #dcdcde;border-top:1px solid rgba(0,0,0,.2);content:"";display:block;margin-bottom:1em;min-width:30px;width:100%}#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}#jp-relatedposts .jp-relatedposts-items{clear:left}#jp-relatedposts .jp-relatedposts-items-visual{margin-right:-20px}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;float:left;margin:0 0 1em;width:33%}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8;padding-right:20px}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4){clear:both}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items p,#jp-relatedposts .jp-relatedposts-items time,#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs{position:relative}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{border-bottom:0;bottom:0;display:block;left:0;position:absolute;right:0;top:0}#jp-relatedposts .jp-relatedposts-items p,#jp-relatedposts .jp-relatedposts-items time{margin-bottom:0}#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{display:block;font-family:inherit;margin:0;max-width:100%;text-transform:none}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{filter:alpha(opacity=100);font-size:inherit;font-weight:400;-moz-opacity:1;opacity:1;text-decoration:none}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span{height:auto;max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt,.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{display:none}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span{margin-bottom:1em}#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post{clear:both;width:100%}#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img{float:left;margin-right:3%;max-width:33%;overflow:hidden}#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title{display:inline-block;max-width:63%}@media only screen and (max-width:640px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:50%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:left}#jp-relatedposts .jp-relatedposts-items-visual{margin-right:20px}}@media only screen and (max-width:320px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{clear:both;margin:0 0 1em;width:100%}#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title{float:none;margin-right:0;max-width:100%}}@media print{.jp-relatedposts{display:none!important}}#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{display:inline-block;font-size:9pt;font-weight:700;line-height:1.2;margin:0 0 1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid hsla(0,0%,100%,.4)}.sd-sharing{margin-bottom:1em}.sd-content ul{list-style:none!important;margin:0!important;padding:0!important}.sd-content ul li{display:inline-block}.sd-content ul li.share-deprecated{opacity:.5}.sd-content ul li.share-deprecated a span{text-decoration:line-through}.sd-block.sd-gplus{margin:0 0 .5em}.sd-gplus .sd-content{font-size:12px}.sd-content .share-email-error .share-email-error-title{margin:.5em 0}.sd-content .share-email-error .share-email-error-text{font-family:Open Sans,sans-serif;font-size:12px;margin:.5em 0}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{background:#fff;border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.12),0 0 0 1px rgba(0,0,0,.12);color:#2c3338!important;display:inline-block;font-family:Open Sans,sans-serif;font-size:13px;font-weight:500;line-height:23px;padding:4px 11px 3px 9px;text-decoration:none!important;text-shadow:none}.sd-social-official .sd-content ul li a.sd-button,.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a{align-items:center;display:flex;font-size:12px;line-height:12px;min-height:20px;padding:1px 6px 0 5px}.sd-social-official .sd-content ul.preview li a.sd-button,.sd-social-official .sd-content ul.preview li.preview-item div.option.option-smart-off a{position:relative;top:2px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button>a span,.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:23px;margin-left:6px}.sd-social-icon .sd-content ul li a.sd-button>span{margin-left:0}.sd-social-text .sd-content ul li a.sd-button span{margin-left:3px}.sd-social-official .sd-content ul li a.sd-button>span,.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a span{line-height:12px;margin-left:3px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{box-shadow:0 1px 2px rgba(0,0,0,.22),0 0 0 1px rgba(0,0,0,.22)}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font:normal 18px/1 social-logos;text-align:center;vertical-align:top}.sd-social-icon-text ul li a.sd-button:before{position:relative;top:2px}@media screen and (-webkit-min-device-pixel-ratio:0){.sd-content ul li a.sd-button:before{position:relative;top:2px}}.sd-social-official ul li a.sd-button:before{position:relative;top:-2px}@media screen and (-webkit-min-device-pixel-ratio:0){.sd-social-official ul li a.sd-button:before{top:0}}.sd-content ul li{margin:0 8px 12px 0;padding:0}.jp-sharing-input-touch .sd-content ul li{padding-left:10px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-left:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;height:0;line-height:inherit;padding-left:0}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:-4px}@media screen and (-webkit-min-device-pixel-ratio:0){.sd-social-icon .sd-content ul li a.share-more{top:2px}}@-moz-document url-prefix(){.sd-social-icon .sd-content ul li a.share-more{top:2px}}.sd-social-icon .sd-content ul li a.share-more span{margin-left:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:"\f469"}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:"\f410"}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:"\f207"}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:"\f202"}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:"\f222"}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:"\f607"}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:"\f224"}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:"\f210"}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:"\f203"}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:"\f205"}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.share-telegram div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-telegram a:before,.sd-social-icon-text .sd-content li.share-telegram a:before,.sd-social-official .sd-content li.share-telegram a:before,.sd-social-text .sd-content ul li.share-telegram a:before{content:"\f606"}.sd-social-official .sd-content li.share-telegram a:before{color:#08c}.sd-content ul li.share-skype div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-skype a:before,.sd-social-icon-text .sd-content li.share-skype a:before,.sd-social-text .sd-content ul li.share-skype a:before{content:"\f220"}.sd-content ul li.share-mastodon div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-mastodon a:before,.sd-social-icon-text .sd-content li.share-mastodon a:before,.sd-social-official .sd-content li.share-mastodon a:before,.sd-social-text .sd-content ul li.share-mastodon a:before{content:"\f10a"}.sd-social-official .sd-content li.share-mastodon a:before{color:#563acc}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:"\f415"}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a:before,.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a:before,.sd-social-official .sd-content li.share-jetpack-whatsapp a:before,.sd-social-text .sd-content ul li.share-jetpack-whatsapp a:before{content:"\f608"}.sd-social-official .sd-content li.share-jetpack-whatsapp a:before{color:#43d854}.sd-social-icon .sd-content ul li[class*=share-].share-jetpack-whatsapp a.sd-button{background:#43d854;color:#fff!important}.sd-content ul li.share-deprecated div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-deprecated a:before,.sd-social-icon-text .sd-content li.share-deprecated a:before,.sd-social-official .sd-content li.share-deprecated a:before{content:"🚫";height:1em;width:1em}.sd-social .sd-button .share-count{background:#2ea2cc;border-radius:10px;color:#fff;display:inline-block;font-size:10px;line-height:1;padding:1px 3px;text-align:center}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul{display:flex;flex-wrap:wrap}.sd-social-official .sd-content ul:after{clear:both;content:".";display:block;height:0;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px}.sd-social-official .sd-content ul>li{display:flex;max-height:18px}.sd-social-official .sd-content ul>li .option-smart-off{margin-right:8px}.sd-social-official .fb-share-button>span{vertical-align:top!important}.sd-social-official .sd-content .pocket_button iframe{width:98px}.reddit_button iframe{margin-top:1px}.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}.linkedin_button>span,.pinterest_button a{display:block!important}.sd-social-official .sd-content .share-skype{min-width:55px}.sd-social-official .sd-content .share-tumblr iframe{max-width:53px;width:unset}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-repeat:no-repeat;background-size:16px 16px;display:inline-block;height:21px;line-height:16px;margin-left:0;padding:0 0 0 19px}body .sd-social-icon .sd-content li.share-custom a span{padding-left:16px!important;width:0}.sharing-hidden .inner{background:#fff;border:1px solid #ccc;border-radius:2px;box-shadow:0 5px 20px rgba(0,0,0,.2);margin-top:5px;max-width:400px;padding:10px;position:absolute;z-index:2}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;height:0!important;margin:0!important}.sharing-hidden .inner:after,.sharing-hidden .inner:before{border-bottom:8px solid #ccc;border-left:6px solid transparent;border-right:6px solid transparent;content:"";display:block;height:0;left:20px;position:absolute;top:-8px;width:0;z-index:1}.sharing-hidden .inner:after{border-bottom:8px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;top:-7px;z-index:2}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border:0;border-radius:50%;-webkit-border-radius:50%;box-shadow:none;height:auto;line-height:1;margin-bottom:0;max-width:32px;padding:7px;position:relative;top:-2px;width:auto}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-left:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-left:0}.sd-social-icon .sd-button span.share-count{background:#555;border-radius:0;bottom:0;font-size:9px;position:absolute;right:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#1877f2;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#4f94d4;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-telegram a.sd-button{background:#08c;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-skype a.sd-button{background:#00aff0;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-mastodon a.sd-button{background:linear-gradient(0deg,#563acc 0,#6364ff);color:#fff!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{clip:auto!important;background-color:#f0f0f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#jetpack-source_f_name{display:none!important;left:-9000px;position:absolute!important}.sd-content .share-customize-link{line-height:11px;margin-top:8px}.sd-content .share-customize-link a{font-family:Open Sans,sans-serif;font-size:11px}@media print{.sharedaddy.sd-sharing-enabled{display:none}}.jetpack-slideshow-window{background-color:#222;border:20px solid #222;border-radius:10px;height:0;margin-bottom:20px;overflow:hidden;padding-bottom:56.25%!important;padding-top:30px!important;position:relative;z-index:1}.jetpack-slideshow-window.jetpack-slideshow-white{background-color:#fff;border-color:#fff}.jetpack-slideshow-window,.jetpack-slideshow-window *{box-sizing:content-box}.jetpack-slideshow-loading{height:100%;margin:auto;text-align:center}body div.jetpack-slideshow-window * img{background-color:transparent!important;background-image:none!important;border-width:0!important;display:block;margin:0 auto;max-height:100%;max-width:100%;padding:0!important;position:relative;top:50%;transform:translateY(-50%)}.jetpack-slideshow-loading img{vertical-align:middle}.jetpack-slideshow-slide{display:none;height:100%!important;left:0;margin:auto;position:absolute;text-align:center;top:0;width:100%!important}.jetpack-slideshow-slide img{vertical-align:middle}.jetpack-slideshow-line-height-hack{font-size:0;overflow:hidden;width:0}.jetpack-slideshow-slide-caption{bottom:5px;color:#f6f7f7;font-family:Helvetica Neue,sans-serif;font-size:13px;height:25px;left:0;line-height:25px;position:absolute;text-align:center;text-shadow:#222 1px 1px 2px;width:100%;z-index:100}.jetpack-slideshow-controls{bottom:30px;direction:ltr;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";margin:auto;opacity:.5;position:absolute;text-align:center;transition:opacity .3s ease-out;width:100%;z-index:1000}.jetpack-slideshow-window:hover .jetpack-slideshow-controls{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";opacity:1}body div div.jetpack-slideshow-controls a,body div div.jetpack-slideshow-controls a:hover{zoom:1;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(../modules/shortcodes/img/slideshow-controls.png)!important;background-position:-34px 8px!important;background-repeat:no-repeat;background-size:142px 16px!important;border:2px solid hsla(0,0%,100%,.1)!important;border-radius:10em!important;color:#222!important;display:inline-block!important;*display:inline;height:32px!important;line-height:32px!important;margin:0 5px!important;padding:0!important;text-align:center!important;transition:border-color .3s ease-out;width:32px!important}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.jetpack-slideshow-controls a,body div div.jetpack-slideshow-controls a:hover{background-image:url(../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.jetpack-slideshow-controls a:hover{border-color:#fff!important}body div div.jetpack-slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.jetpack-slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.jetpack-slideshow-controls a.running,body div div.jetpack-slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.jetpack-slideshow-controls a.paused{background-position:9px 8px!important}.jetpack-slideshow-controls a img{border:50px dotted #f0f}body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{bottom:0!important;left:0!important;margin:0!important;min-height:100%!important;min-width:100%!important;padding:0!important;position:absolute!important;right:0!important;top:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:grey;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{border:1px solid #dcdcde;line-height:normal;margin:20px auto;overflow:hidden}.presentation{margin:0;outline:none;overflow:hidden;position:relative}.presentation,.presentation .step{background-position:50%;background-repeat:no-repeat;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{background-repeat:no-repeat;opacity:0;position:absolute;transition:opacity .25s;width:34px;z-index:2}.presentation .nav-arrow-left,.presentation .nav-arrow-right{background-image:url(../modules/shortcodes/images/slide-nav.png);background-size:450% 61px;height:100%}.presentation .nav-arrow-left{background-position:4px 50%;left:0}.presentation .nav-arrow-right{background-position:-120px 50%;right:0}.presentation .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/expand.png);background-size:100% 100%;bottom:0;height:32px;margin:4px;right:0;width:32px;z-index:3}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{background-color:#dcdcde;background-color:rgba(0,0,0,.75);border-radius:50px;display:table;height:15%;margin:30% 10%;position:relative;transition:opacity .5s;width:80%;z-index:100}.presentation .autoplay-overlay .overlay-msg{color:#fff;display:table-cell;position:relative;text-align:center;vertical-align:middle}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;transition:opacity .5s}div.jetpack-quiz{background-color:#f3f3f3;border:1px solid #deede3;border-radius:.2em;line-height:1.3em;margin-bottom:2em;padding:1em}div.jetpack-quiz div.jetpack-quiz-question{font-weight:700;margin-bottom:.5em}div.jetpack-quiz div.jetpack-quiz-answer{border-bottom:1px dotted #999;cursor:pointer;margin-bottom:.5em;padding:1em 0 1em 1em}div.jetpack-quiz div.jetpack-quiz-answer.last{border-bottom:0;margin-bottom:0;padding-bottom:0}div.jetpack-quiz div.jetpack-quiz-answer.correct{color:green}div.jetpack-quiz div.jetpack-quiz-answer.wrong{color:red}div.jetpack-quiz div.jetpack-quiz-answer div.jetpack-quiz-explanation{display:none}div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation,div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation{color:#000;display:block;font-size:90%;margin-top:1em}div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation tt,div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation tt{font-size:85%}div.jetpack-quiz pre{background:transparent;font:15px Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace;margin:0;padding:0}.jetpack-quiz-options{margin-top:12px;text-align:right}.jetpack-quiz-count{color:#646970;float:left;font-size:12px}.jetpack-quiz-option-button{cursor:pointer;margin-left:12px}.jetpack-quiz-option-button:hover svg{background:#3c434a}.jetpack-quiz-option-button svg{fill:#fff;background:#000;border-radius:50%;display:inline-block;height:24px;width:24px}.jetpack-quiz-wrapper .jetpack-quiz:first-of-type .jetpack-quiz-option-button:first-of-type,.jetpack-quiz-wrapper .jetpack-quiz:last-of-type .jetpack-quiz-option-button:last-of-type{display:none}#subscribe-email input{width:95%}.comment-subscription-form{margin-bottom:1em}.comment-subscription-form .subscribe-label{display:inline!important}.jetpack-video-wrapper{margin-bottom:1.6em}.jetpack-video-wrapper>.wp-video,.jetpack-video-wrapper>embed,.jetpack-video-wrapper>iframe,.jetpack-video-wrapper>object{margin-bottom:0}.jetpack-social-navigation ul{display:block;margin:0 0 1.5em;padding:0}.jetpack-social-navigation li{display:inline-block;line-height:1;margin:0}.jetpack-social-navigation a{border:0;height:1em;text-decoration:none;width:1em}.jetpack-social-navigation-svg .icon{fill:currentColor;color:inherit;height:1em;vertical-align:middle;width:1em}.jetpack-social-navigation-genericons a:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;speak:none;content:"\f415";display:inline-block;font-family:Genericons;font-size:1em;font-style:normal;font-weight:400;height:1em;line-height:1;text-decoration:inherit;vertical-align:top;width:1em}.jetpack-social-navigation-genericons a[href*="codepen.io"]:before{content:"\f216"}.jetpack-social-navigation-genericons a[href*="digg.com"]:before{content:"\f221"}.jetpack-social-navigation-genericons a[href*="dribbble.com"]:before{content:"\f201"}.jetpack-social-navigation-genericons a[href*="dropbox.com"]:before{content:"\f225"}.jetpack-social-navigation-genericons a[href*="mailto:"]:before{content:"\f410"}.jetpack-social-navigation-genericons a[href*="facebook.com"]:before{content:"\f203"}.jetpack-social-navigation-genericons a[href*="flickr.com"]:before{content:"\f211"}.jetpack-social-navigation-genericons a[href*="foursquare.com"]:before{content:"\f226"}.jetpack-social-navigation-genericons a[href*="github.com"]:before{content:"\f200"}.jetpack-social-navigation-genericons a[href*="plus.google.com"]:before{content:"\f206"}.jetpack-social-navigation-genericons a[href*="instagram.com"]:before{content:"\f215"}.jetpack-social-navigation-genericons a[href*="linkedin.com"]:before{content:"\f208"}.jetpack-social-navigation-genericons a[href*="path.com"]:before{content:"\f219"}.jetpack-social-navigation-genericons a[href*="pinterest."]:before{content:"\f210"}.jetpack-social-navigation-genericons a[href*="getpocket.com"]:before{content:"\f224"}.jetpack-social-navigation-genericons a[href*="polldaddy.com"]:before{content:"\f217"}.jetpack-social-navigation-genericons a[href*="reddit.com"]:before{content:"\f222"}.jetpack-social-navigation-genericons a[href$="/feed/"]:before{content:"\f413"}.jetpack-social-navigation-genericons a[href*="skype:"]:before{content:"\f220"}.jetpack-social-navigation-genericons a[href*="spotify.com"]:before{content:"\f515"}.jetpack-social-navigation-genericons a[href*="stumbleupon.com"]:before{content:"\f223"}.jetpack-social-navigation-genericons a[href*="tumblr.com"]:before{content:"\f214"}.jetpack-social-navigation-genericons a[href*="twitch.tv"]:before{content:"\f516"}.jetpack-social-navigation-genericons a[href*="twitter.com"]:before{content:"\f202"}.jetpack-social-navigation-genericons a[href*="vimeo.com"]:before{content:"\f212"}.jetpack-social-navigation-genericons a[href*="vine.co"]:before{content:"\f517"}.jetpack-social-navigation-genericons a[href*="wordpress.com"]:before,.jetpack-social-navigation-genericons a[href*="wordpress.org"]:before{content:"\f205"}.jetpack-social-navigation-genericons a[href*="youtube.com"]:before{content:"\f213"}.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:left;position:relative}.tiled-gallery .tiled-gallery-item{float:left;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:transparent;border:none;color:inherit;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:none;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#f0f0f1;background:hsla(0,0%,100%,.8);bottom:0;color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;text-indent:10px;text-overflow:ellipsis;white-space:nowrap;width:100%}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{height:0;overflow:hidden;visibility:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{left:0;position:absolute;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:50%!important;-o-object-fit:cover;object-fit:cover}.tiled-gallery.type-circle .tiled-gallery-caption{display:none}.tiled-gallery.type-square .tiled-gallery-item img{-o-object-fit:cover;object-fit:cover}.jetpack-display-remote-posts{margin:5px 0 20px}.jetpack-display-remote-posts h4{margin:5px 0;padding:0}.jetpack-display-remote-posts p{margin:0;padding:0}.jetpack-display-remote-posts img{max-width:100%}.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-left:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{display:inline;list-style:none}.widget-grofile ul.grofile-accounts li:before{content:""!important}.widget-grofile .grofile-accounts-logo{background-image:url(https://secure.gravatar.com/images/grav-share-sprite.png);background-repeat:no-repeat;float:left;height:16px;margin-bottom:8px;margin-right:8px;width:16px}.rtl .widget-grofile .grofile-accounts-logo{margin-left:8px;margin-right:0}.grofile-thumbnail{max-width:100%;width:500px}@media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.widget-grofile .grofile-accounts-logo{background-image:url(https://secure.gravatar.com/images/grav-share-sprite-2x.png);background-size:16px 784px}}div[class^=gr_custom_container]{background-color:#fff;border:1px solid gray;border-radius:10px;color:#000;padding:10px 5px}div[class^=gr_custom_container] a{color:#000}h2[class^=gr_custom_header]{display:none}div[class^=gr_custom_each_container]{border-bottom:1px solid #a7aaad;clear:both;margin-bottom:10px;overflow:auto;padding-bottom:4px;width:100%}div[class^=gr_custom_book_container]{float:right;height:60px;margin-left:4px;overflow:hidden;width:39px}div[class^=gr_custom_author]{font-size:10px}div[class^=gr_custom_tags]{color:gray;font-size:10px}div[class^=gr_custom_rating]{display:none}.widget_wpcom_social_media_icons_widget ul{list-style-type:none;margin-left:0}.widget_wpcom_social_media_icons_widget ul li{border:0;display:inline;margin-right:.5em}.widget_wpcom_social_media_icons_widget li a{border:0;text-decoration:none}.widget_wpcom_social_media_icons_widget .genericon{font-family:Genericons}.widget_wpcom_social_media_icons_widget .screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.widget_wpcom_social_media_icons_widget .screen-reader-text:active,.widget_wpcom_social_media_icons_widget .screen-reader-text:focus,.widget_wpcom_social_media_icons_widget .screen-reader-text:hover{clip:auto!important;background-color:#f0f0f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.widgets-grid-layout{width:100%}.widgets-grid-layout:after,.widgets-grid-layout:before{content:" ";display:table}.widgets-grid-layout:after{clear:both}.widget-grid-view-image{float:left;max-width:50%}.widget-grid-view-image a{display:block;margin:0 2px 4px 0}.widget-grid-view-image:nth-child(2n){float:right}.widget-grid-view-image:nth-child(2n) a{margin:0 0 4px 2px}.widgets-grid-layout .widget-grid-view-image img{height:auto;max-width:100%}.widgets-list-layout{list-style-type:none;margin:0;padding:0}.widgets-list-layout li:after,.widgets-list-layout li:before{content:"";display:table}.widgets-list-layout li:after{clear:both}.widgets-list-layout li{zoom:1;list-style-type:none!important;margin-bottom:1em}.widgets-list-layout .widgets-list-layout-blavatar{float:left;height:auto;max-width:40px;width:21.276596%}.widgets-list-layout-links{float:right;width:73.404255%}.widgets-list-layout span{opacity:.5}.widgets-list-layout span:hover{opacity:.8}.jetpack-image-container:after{clear:both}.jetpack-image-container:after,.jetpack-image-container:before{content:"";display:table}.widgets-multi-column-grid ul{list-style-type:none;margin:0;overflow:hidden;padding:0}.widgets-multi-column-grid ul li{background:none;border:none;clear:none;float:left;list-style-type:none!important;margin:0 -5px -3px 0;padding:0 8px 6px 0}.widgets-multi-column-grid ul li a{background:none;border:0;margin:0;padding:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widget_jetpack_my_community .avatar-240,.widget_jetpack_my_community .avatar-48{max-height:48px;max-width:48px}.widget.widget_authors li>ul,.widget_authors>ul{margin-left:inherit;padding-left:0}.widget_authors ul li li{padding-left:0}.widget_authors>ul>li{list-style:none;margin-bottom:1em}.widget_authors>ul>li+li{border-top:0}.widget.widget_authors img{box-shadow:none;margin-bottom:5px;margin-right:5px;vertical-align:middle}.wpcnt{line-height:2;text-align:center}.wpa{display:inline-block;max-width:100%;overflow:hidden;position:relative}.wpa-about{border-bottom:none!important;box-shadow:none!important;color:#888;display:block;font:10px/1 Open Sans,Arial,sans-serif!important;left:0;margin-top:0;opacity:.85;position:absolute;right:0;text-align:left!important;text-decoration:none!important;top:5px}.wpa .u>div{display:block;margin-bottom:1em;margin-top:5px}div.wpa>div{margin-top:20px}.wpa .u .adsbygoogle{background-color:transparent;display:block;margin-bottom:1em;margin-top:17px}.widget_eu_cookie_law_widget{animation:fadeIn .8s;border:none;bottom:1em;left:1em;margin:0;padding:0;position:fixed;right:1em;width:auto;z-index:50001}@keyframes fadeIn{0%{opacity:0;visibility:hidden}to{opacity:1;visibility:visible}}.widget_eu_cookie_law_widget.widget.top{bottom:auto;top:1em}.admin-bar .widget_eu_cookie_law_widget.widget.top{top:3em}amp-consent.widget_eu_cookie_law_widget.widget.top{margin:0;top:1em}.admin-bar amp-consent.widget_eu_cookie_law_widget.widget.top{margin-top:3em;top:0}#eu-cookie-law{background-color:#fff;border:1px solid #dedede;color:#2e4467;font-size:12px;line-height:1.5;overflow:hidden;padding:6px 6px 6px 15px;position:relative}#eu-cookie-law a,#eu-cookie-law a:active,#eu-cookie-law a:visited{color:inherit;cursor:inherit;text-decoration:underline}#eu-cookie-law a:hover{cursor:pointer;text-decoration:none}#eu-cookie-law.negative{background-color:#000;border:none;color:#fff}#eu-cookie-law.hide{opacity:0;transition:opacity .4s,visibility .4s;visibility:hidden}#eu-cookie-law form{margin-bottom:0;position:static}#eu-cookie-law input,#eu-cookie-law input:focus,#eu-cookie-law input:hover{background:#f3f3f3;border:1px solid #dedede;border-radius:4px;-moz-border-radius:3px;-webkit-border-radius:3px;color:#2e4453;cursor:pointer;display:inline;float:right;font-family:inherit;font-size:14px;font-weight:inherit;line-height:inherit;margin:0 0 0 5%;padding:8px 12px;position:static;text-transform:none}#eu-cookie-law.negative input,#eu-cookie-law.negative input:focus,#eu-cookie-law.negative input:hover{background:#282828;border-color:#535353;color:#fff}@media (max-width:600px){#eu-cookie-law{padding-bottom:55px}#eu-cookie-law input.accept{bottom:8px;position:absolute;right:8px}}.widget_eu_cookie_law_widget .customize-partial-edit-shortcut>button{left:0}.flickr-images{text-align:center}.flickr-size-thumbnail .flickr-images{align-content:space-between;align-items:center;display:flex;flex-flow:row wrap;justify-content:center}.flickr-images img{margin:5px;max-width:100%}.wpcom-instagram-images{grid-gap:.5rem;display:grid;grid-auto-columns:1fr}.wpcom-instagram-images:after,.wpcom-instagram-images:before{content:none}.wpcom-instagram-images a{display:block;margin:4px 2px}.wpcom-instagram-columns-2 a,.wpcom-instagram-columns-3 a{display:inline-block;vertical-align:top}.wpcom-instagram-columns-2 a{width:calc(50% - 8px)}.wpcom-instagram-columns-3 a{width:calc(33.3333% - 8px)}.wpcom-instagram-images .sq-bg-image{background-position:50%;background-repeat:no-repeat;background-size:cover;height:0;overflow:hidden;padding-bottom:100%}.wpcom-instagram-columns-2{grid-template-columns:repeat(2,1fr)}.wpcom-instagram-columns-3{grid-template-columns:repeat(3,1fr)}@supports (display:grid){.wpcom-instagram-images a{display:block;margin:0}.wpcom-instagram-columns-2 a,.wpcom-instagram-columns-3 a{width:auto}}.jetpack-search-filters-widget__sub-heading{font-size:inherit;font-weight:700;margin:0 0 .5em;padding:0}.jetpack-search-form+.jetpack-search-filters-widget__sub-heading{margin-bottom:.5em!important;margin-top:1.5em}.jetpack-search-filters-widget__clear{margin-bottom:.5em;margin-top:.5em}.jetpack-search-sort-wrapper{margin-bottom:1.5em;margin-top:1em}.jetpack-search-sort-wrapper label{display:inherit}.widget_search .jetpack-search-filters-widget__filter-list input[type=checkbox]{height:auto;width:auto}ul.jetpack-search-filters-widget__filter-list li{border:none;list-style:none;padding:0}ul.jetpack-search-filters-widget__filter-list li a{text-decoration:none}ul.jetpack-search-filters-widget__filter-list li a:hover{box-shadow:none}ul.jetpack-search-filters-widget__filter-list li label{display:inherit;font-weight:inherit}.jetpack-search-filters-widget__filter-list{list-style:none}ul.jetpack-search-filters-widget__filter-list{margin-bottom:1.5em}body.search .jetpack-search-form input[name=s]::placeholder{color:transparent}body.search .jetpack-search-form input[name=s].show-placeholder::placeholder{color:inherit}@media screen and (min-width:400px){.widget.jetpack-simple-payments .jetpack-simple-payments-product{flex-direction:column}.widget.jetpack-simple-payments .jetpack-simple-payments-details{padding-left:0}}.jetpack_widget_social_icons li,.jetpack_widget_social_icons ul{list-style:none}.jetpack_widget_social_icons ul{display:block;margin:0 0 1.5em;padding:0}.jetpack_widget_social_icons ul li{border:0;display:inline-block;line-height:1;margin:0;padding:0}.jetpack_widget_social_icons ul li:after,.jetpack_widget_social_icons ul li:before{display:none}.jetpack_widget_social_icons a{border:0;box-shadow:none;display:block;height:24px;text-decoration:none;width:24px}.jetpack_widget_social_icons svg{fill:currentColor;color:inherit;height:inherit;vertical-align:middle;width:inherit}.jetpack_widget_social_icons ul.size-small a{height:24px;width:24px}.jetpack_widget_social_icons ul.size-medium a{height:32px;width:32px}.jetpack_widget_social_icons ul.size-large a{height:48px;width:48px}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px}.milestone-widget{margin-bottom:1em}.milestone-content{line-height:2;margin-top:5px;max-width:100%;padding:0;text-align:center}.milestone-header{background-color:var(--milestone-text-color,#111);color:var(--milestone-bg-color,#fff);line-height:1.3;margin:0;padding:.8em}.milestone-header .date,.milestone-header .event{display:block}.milestone-header .event{font-size:120%}.milestone-countdown .difference{display:block;font-size:500%;font-weight:700;line-height:1.2}.milestone-countdown,.milestone-message{background-color:var(--milestone-bg-color,#fff);border:1px solid var(--milestone-border-color,#767676);border-top:0;color:var(--milestone-text-color,#111);padding-bottom:1em}.milestone-message{padding-top:1em}
