/* Utility classes for Elementor-built pages. Editors attach these via
   Advanced > CSS Classes on an Elementor element. Everything else on those
   pages is native Elementor settings. */

/* Signature gradient headline treatment (same gradient as .legal-hero__title
   in page-legal.css). Works on Elementor heading widgets. */
.dai-gradient-text .elementor-heading-title,
.dai-gradient-text {
	background: linear-gradient(90deg, #A5D9D0 0%, #5CC2EF 37.72%, #886CEA 66.67%, #595BA7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(1.41px 1.41px 2px rgba(0, 0, 0, .6));
}

/* Torn-paper bottom edge for hero containers (same clip-path as
   .legal-hero__tear in page-legal.css). Put on the hero container. */
.dai-tear-bottom {
	position: relative;
}

.dai-tear-bottom::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: -1px;
	height: 40px;
	z-index: 10;
	background: var(--color-bg);
	clip-path: polygon(0% 100%, 0% 40%, 3% 60%, 6% 30%, 9% 55%, 12% 25%, 15% 60%, 18% 35%, 21% 55%, 24% 30%, 27% 60%, 30% 35%, 33% 55%, 36% 30%, 39% 60%, 42% 35%, 45% 55%, 48% 30%, 51% 60%, 54% 35%, 57% 55%, 60% 30%, 63% 60%, 66% 35%, 69% 55%, 72% 30%, 75% 60%, 78% 35%, 81% 55%, 84% 30%, 87% 60%, 90% 35%, 93% 55%, 96% 30%, 100% 55%, 100% 100%);
}

/* Center a block while keeping its bullet list start-aligned (matches the
   .workshop-intro/.workshop-why text columns). Put on a Text Editor widget
   whose alignment is set to center. */
.dai-center-list ul {
	display: inline-block;
	text-align: start;
	margin-inline: auto;
	padding-inline-start: 1.2em;
}

/* Article-style text for Text Editor widgets holding long content
   (product pages, about page, FAQ). Mirrors the .legal-body__content
   heading/table treatment from page-legal.css / page-ai-tool.css.

   Rule of thumb for everything below: anything an Elementor control can
   also set (colour, font, line height on the widget) is declared on the
   WRAPPER, never on the p or li inside it. Elementor paints its Text
   Color and Typography onto the widget wrapper, so inner text picks those
   up by inheritance, and a direct rule on p or li here would silently
   beat the editor's own setting no matter how specific that setting is.
   Headings are the exception: the Elementor kit ships a
   .elementor-kit-570 h2 colour rule, so a matching direct rule is the
   only way to recolour headings in dark sections. This file is enqueued
   after the kit stylesheet so those ties resolve in the theme's favour. */
.dai-prose {
	line-height: 1.8;
}

.dai-prose h2,
.dai-prose h3,
.dai-prose h4,
.dai-prose h5,
.dai-prose h6 {
	font-family: var(--font-accent);
	color: var(--color-ink);
}

.dai-prose h2 {
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 700;
	margin-block: 40px 16px;
}

.dai-prose h3 {
	font-size: clamp(18px, 2vw, 21px);
	font-weight: 600;
	margin-block: 28px 10px;
}

.dai-prose h4 {
	font-size: clamp(17px, 1.7vw, 19px);
	font-weight: 600;
	margin-block: 24px 8px;
}

.dai-prose h5,
.dai-prose h6 {
	font-size: 17px;
	font-weight: 600;
	margin-block: 20px 8px;
}

.dai-prose h2:first-child,
.dai-prose h3:first-child,
.dai-prose h4:first-child,
.dai-prose h5:first-child,
.dai-prose h6:first-child {
	margin-block-start: 0;
}

/* Inline links in body copy. Elementor's text editor has no per link colour
   control, and without this a link is the same near black as the sentence
   around it, so there is nothing telling a reader where to click. */
.dai-prose a:not(.elementor-button) {
	color: var(--color-teal);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dai-prose-light a:not(.elementor-button) {
	color: var(--color-sky);
}

.dai-prose table {
	width: 100%;
	border-collapse: collapse;
	margin-block: 24px;
}

.dai-prose th,
.dai-prose td {
	border: 1px solid #d9d5e6;
	padding: 10px 14px;
	text-align: start;
}

.dai-prose th {
	background: var(--color-lavender);
	font-family: var(--font-accent);
	font-weight: 600;
	color: var(--color-ink);
}

/* Light variant for text sitting on dark or gradient backgrounds. Body
   colour goes on the wrapper alone so the widget's Text Color control
   still overrides it. Heading colour has to be a direct rule to outrank
   the kit's own heading colour, but it reads a custom property, so an
   editor can retint headings per element from Advanced > Custom CSS
   without touching this file. */
.dai-prose-light {
	--dai-heading-color: #fff;
	color: #d6d6e6;
}

.dai-prose-light h2,
.dai-prose-light h3,
.dai-prose-light h4,
.dai-prose-light h5,
.dai-prose-light h6 {
	color: var(--dai-heading-color);
}

/* Torn paper edge lifted from the live site, shared by the homepage tools
   section and the mid page CTA bands. The shape is applied as a mask so a
   single copy can be tinted differently per edge. */
.dai-torn-top,
.dai-cta-band {
	position: relative;
}

.dai-torn-top.dai-torn-top::after,
.dai-cta-band.dai-cta-band::before,
.dai-cta-band.dai-cta-band::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	height: 50px;
	z-index: 2;
	pointer-events: none;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg id='comp-lw53fwxe-top' preserveAspectRatio='xMidYMax slice' data-bbox='-0.001 205.493 1920.001 94.507' viewBox='-0.001 205.493 1920.001 94.507' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-lw53fwxe-top %7B fill: %23886CAE; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M0 300h1920v-58.8l-1 .2c-.6.2-1.2-.6-1.8-.4l-.3-.3c.7-.4 1.3-.9 2-1.3v-1.5c-1-.2-1.8-.3-2.7-.5V236c.3.1.4.2.6.2l2.1.6v-2.1c-.1-.3-.3-.6-.4-.8v.1l-.1-.1c-.6-.2-1.3-.4-1.9-.6-.5 1-1 2.1-1.5 3.3-1.2-1.7-1.2-1.7 1.3-5.1.8.9 1.4 1.7 2.1 2.4h.1c0-.5 0-1-.1-1.5-.4-2-3-1.8-4.8-2.7 1.1-.6 2.2-1.2 1.1-2.4-.5.2-.9.4-1.3.6-.1-.1-.1-.2-.2-.3.7-.2 1.4-.4 2.2-.6.8 1.2-.1 2.6 1.7 3.3-.4-1.5-.7-2.9-1.4-4.3-.2-.5-1.4-.7-2.3-1.1 0-.2.1-.6.2-1.2-1.3.4-2.5.7-3.8 1.1.3.3.6.5.7.6l-1.4 1.4c-.4-.2-1.2-.7-2-1.2-.1-.2-.1-.3-.2-.5-1.1.8-2.1 1.6-3.1 2.4l.3.3c-.4-.2-.9-.3-1.5-.5-.1.7-.3 1.3-.4 2-.4-.1-.7-.1-.9-.2-1.3-1.5-2.5-.8-3.4.3-1.1 1.2-1.9 2.6-2.9 3.9-.6-.3-1.4-.7-2.4-1.3-.5 1.6-2 2.1-3.7 2.3-1.3.1-1.6.7-1.1 1.6.1.3 0 .6-.1 1h-.5c-.1-.4-.2-.8-.3-1.5-.4.4-.6.7-.8 1-.7-.3-1.3-.5-2.2-.9.4-.2.7-.4 1.2-.7-.9-.3-1.7-.6-2.5-.9-2.1.9.4 2.2-.6 3.4-.5-.8-.9-1.5-1.3-2.2-.1.1-.2.3-.2.4-1.7-.3-3.3-.5-5-.8-.1.1-.1.2-.2.4l1 1c0 .1-.1.3-.1.4-1.2-.2-2.4-.3-3.9-.5-1.4.7.1 1.2 1 1.9-.7.2-1.1.3-1.2.3-.9-.8-1.7-1.4-2.7-2.3-.7 2.2-1.1 2.3-3.1 1.6-.3.3-.6.6-.9 1-3.2-1.5-2.3 1.4-3.6 1.9 1.6 2.4 1.5 3.2-.1 4.2-.3-.7-.5-1.4-.9-2-.5-.6-1.3-.9-1.5-1.5 0-.5 0-.9-.1-1.4-.2-.9-.6-1.8-.9-2.7s-.9-1.5-2.2-1.5c-.6 0-1.1-.4-1.6-.5-1 .8-2 1.6-3.3 2.6-1.7-2.3-2.6-4.5-2.7-6.7-.1-1.7-1.6-2.5-3.7-1.9-.1 0-.4 0-.5-.1v5.7c-.1-1.8-.2-3-.3-3.2-1.1 1.2-3.1 1.6-2.9 3.4.1 1.2-.6 2.4-1 3.6-1.3-.3-2.2-.6-3.3-.8.1.6.2 1.1.3 1.5h-.4c-.9-1.8-2.5-2.2-4.9-2-.5 0-1 .1-1.6.1 1.2.2 1.5.9 1 2.2-.2-.4-.4-.9-.6-1.4-.8-.1-1.8-.2-2.7-.4 0-.2.1-.3.1-.5h.9c-.7-.1-1.4-.4-2-1-.3-.3-1.3-.1-1.6-.1-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.6.3-1.3.6-1.8.9-.9-.7-1.9-1.3-3.2-2.2 1 .3 1.7.5 2.5.7s1.6.4 2.5.6c-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.5.9.2 2.3-1.7 2.3-.2-.7-.5-1.4-.7-2.2-.6.3-1 .5-1.1.5-1.2-.4-2.1-.7-3.3-1 0 .6.1.8.1 1.2-3.6-.3-6.4 1-9.7 2.1-1.5-.7-2.3 1-3.5 1.4-3.5-.8-3.7-3.3-4.9-5.3-.5-.9-1.8-1.5-2.9-2-.6-.3-1.6 0-2.3.2-.2.1.1 1 .1 1.6-.1 0-.4.1-.5 0-1.6-.9-3.3-.7-4.9-.1l-18.1 3.6c.1-.3.3-.5.4-.9-1.4.1-2.6.2-3.6.3l1.5 1-4.9 1c-.3-.1-.5-.1-.8-.3v.3c-1.2-.2-2.2-.4-3.2-.5v-.4c.5-.1.9-.3 1.4-.4-.5-.3-1-.6-1.6-.8-.1 0-.3 0-.4-.1-1.2-.1-3.1.6-4.1-.2-1.7-1.2-1.3-2.6-1.5-4.5-.2-1.6.5-3.6-.9-4.9-1-.8-10.5.3-10.5.4v.3c.4.2 1 .4 1.2.7s0 .8 0 1.1c-.5 0-1.1.1-1.4-.1-.8-.5-1.4-1.2-2.2-1.7-.1-.1-.5.1-.6.1.6.8 1.1 1.5 1.7 2.2l-.2.2-2-1c-1.3.8-2.4 1.6-3.7 2.4-.1-.4-.1-.7-.2-1.1-.7.1-1.4.1-2.2.2 0-.1-.1-.3-.1-.4 1.2-.3 2.5-.5 3.7-.8.1.1.1.2.2.3.2-.4.3-.8.6-1.3-2.8.5-5.4 1.1-8 1.4-1.5.2-3.1 0-4.6-.2-.8-.2-1.5-.9-2-1.6.6.1 1.1.3 1.7.4.1-.1.2-.3.3-.4-1.2-.7-2.4-1.3-3.5-2 .2-.1.4-.3.6-.4.4-.5.8-.9 1.4-1.6-1-.1-1.7-.2-2.3-.3.3-.5 1.1-1.4.8-1.6-.6-.6-1.7-.8-2.7-1.3l1-1c-3.8.3-7.4 0-10.6 1.8-2.1-1.6-4.1.3-6.8 0 1.2.8 2.1 1.4 2.9 1.9-3.5-.6-3.8-.9-3.6-2.1-1.7.3-3.3.6-5 1-.8-1-1.6-2.1-2.5-3.1-.2.5-.3.8-.5 1.1-.1 0-.2-.1-.4-.1.2-.7.4-1.4.7-2.2-1.2-.4-2.4-.6-3.6-.6-.2.6-.4 1-.5 1.3-1.6.1-3 .2-4.6.3.2-.5.4-.9.7-1.1-.9.2-1.7.5-2.6.7 1 .6 2 1.1 3 1.7 0 .1 0 .3.1.4-1.3-.1-2.6-.1-4-.2.6.5 1.2 1.1 1.8 1.6-2.5-.6-3.7-1.4-3.7-2.6-.8.2-1.6.5-2.4.7-.1-.4-.2-.6-.4-1l-2.1.6c.2.5.4 1 .5 1.5.1.4-.3.9-.6 1.3 0 .1-.7 0-.8-.1-.1-.4-.1-.9 0-1.3 0-.3.3-.5.4-.7-.4-.1-.8-.2-1.1-.3-2 .4-3.9.9-5.2 2.5-.4.4-1.3.6-2 .8-.1-.1-.2-.3-.4-.4.5-.4 1.1-.7 1.6-1.1-2.2-.6-7.1.5-7.6 1.3-2.4.3-4.6.4-6.8.8-3.4.6-6.7 1.2-10.1.1-.3-.1-.8 0-1.1.1-3.6 1.2-7.2 2.3-10.7 3.6-2.1.8-4.1 1.7-6.1 2.6-.3.1-.8.4-1.1.3-3.5-.9-6.3.3-9 1.8-1 .5-1.9.7-3.1.8-1.7.1-3.4.4-5 .9-1.1.3-1.9 1.1-3.2 1.8-4-1.1-7.4 1.5-11.7 1.8.6 1.1 1.1 2.1 1.6 3-1.7 1.3 1.2 1.8.8 3l-.9-.6c-.8-.5-1.4-.7-2.4-.1-1.2.8-2.7.9-4.4.8-2.7-.2-5.5-.1-8.3-.2-.7 0-1.3-.4-1.9-.6 0-.2.1-.5.1-.7-2.9.2-5.8.4-8.6.6-.3 0-.6 0-.8-.1-2.6-1.7-5.4-1.6-8.4-.8h-.5c-2.4-1.4-5.4-1.2-8.1-1.5-2.5-.3-4.9-.9-7-2.1-.5-.3-1.2-.5-1.8-.4-3.7.1-7.3.3-10.9.5-2.5.2-5 .5-7.4.8-.4 0-.9.1-1.1 0-3-1.8-6.2-1.3-9.5-.6-1 .2-1.8.1-2.9-.1-1.8-.5-3.7-.8-5.5-.6-.1 0-.1-.1-.2-.1l.1.1-1.5.3c-.4-.4-.7-.9-1-1.4-.8.1-1.6-.2-2.2-.7-.5-.1-1.1-.4-1.5-.7-.6-.4-1.1-1-1.6-1.5l-1.8-.9c.2-.1.3-.2.5-.2-1.5-.8-4.5-.8-6.1-.4 0 0-.1 0-.1-.1h-.3c.1 0 .2 0 .3-.1-1-.6-1.9-1.4-3.3-1.4-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.6.3-1.3.6-1.8.9-.9-.7-1.9-1.3-3.2-2.2 1 .3 1.7.5 2.5.7s1.6.4 2.5.6c-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.1.2-.2.5-.2.8-1 .2-1.9.4-2.9.6-.8.2-1.4.6-2.1.9l-.7-.7c-.2.5-.4.9-.5 1.1.6.4 1.2.7 2.1 1.2-1.3.2-2 .3-2.6.4-1.7-2.1-3.4-4.3-5.3-6.6-.2.5-.3.8-.5 1.1-.1 0-.2-.1-.4-.1.2-.7.4-1.4.7-2.2-1.2-.4-2.4-.6-3.6-.6.1-.3.3-.7.5-1.1-1.9.4-3.7.5-4.8 1.6-.9.2-1.7.5-2.6.7-.1-.1-.2-.1-.3-.2l-.4.4c-.5.1-.9.2-1.4.4-.1-.7-.2-1.1-.3-1.6-.4.7-.5 1.3-.5 1.8-.8.2-1.6.5-2.4.7-.1-.4-.2-.6-.4-1l-2.1.6c-.2-.5-.4-1.1-.6-1.6-1.5.3-2.6.5-3.8.7 0 .2-.1.3-.1.5.9.2 1.9.5 2.9.8-2 .4-3.9.9-5.2 2.5-.4.4-1.3.6-2 .8-.1-.1-.2-.3-.4-.4.5-.4 1.1-.7 1.6-1.1-2.2-.6-7.1.5-7.6 1.3-2.4.3-4.6.4-6.8.8-3.4.6-6.7 1.2-10.1.1-.3-.1-.8 0-1.1.1-3.6 1.2-7.2 2.3-10.7 3.6-2.1.8-4.1 1.7-6.1 2.6-.3.1-.8.4-1.1.3-3.5-.9-6.3.3-9 1.8-1 .5-1.9.7-3.1.8-1.7.1-3.4.4-5 .9-1.1.3-1.9 1.1-3.2 1.8-4-1.1-7.4 1.5-11.7 1.8.6 1.1 1.1 2.1 1.6 3-1.7 1.3 1.2 1.8.8 3l-.9-.6c-.8-.5-1.4-.7-2.4-.1-1.2.8-2.7.9-4.4.8-2.7-.2-5.5-.1-8.3-.2-.7 0-1.3-.4-1.9-.6 0-.2.1-.5.1-.7-2.9.2-5.8.4-8.6.6-.3 0-.6 0-.8-.1-2.6-1.7-5.4-1.6-8.4-.8h-.5c-2.4-1.4-5.4-1.2-8.1-1.5-2.5-.3-4.9-.9-7-2.1-.5-.3-1.2-.5-1.8-.4-3.7.1-7.3.3-10.9.5-2.5.2-5 .5-7.4.8-.4 0-.9.1-1.1 0-3-1.8-6.2-1.3-9.5-.6-1 .2-1.8.1-2.9-.1-1.8-.5-3.7-.8-5.5-.6-.1 0-.1-.1-.2-.1l-1.4-.7c0-.2-.1-.4-.1-.6-.2.1-.4.2-.6.2l-.4-.2c-.1-.2-.2-.5-.3-.7l-.6.3-2.8-1.4c-.3-.3-.5-.6-.8-.8-.7-.6-1.5-1.3-2.2-1.1-1.6-.8-4.7-.8-6.3-.4-1-.6-1.9-1.4-3.3-1.4-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.6.3-1.3.6-1.8.9-.9-.7-1.9-1.3-3.2-2.2 1 .3 1.7.5 2.5.7s1.6.4 2.5.6c-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.5.9.2 2.3-1.7 2.3-.2-.7-.5-1.4-.7-2.2-.6.3-1 .5-1.1.5-1.2-.4-2.1-.7-3.3-1 0 .6.1.8.1 1.2-3.6-.3-6.4 1-9.7 2.1-1.5-.7-2.3 1-3.5 1.4-3.5-.8-3.7-3.3-4.9-5.3-.5-.9-1.8-1.5-2.9-2-.6-.3-1.6 0-2.3.2-.2.1.1 1 .1 1.6-.1 0-.4.1-.5 0-1.6-.9-3.3-.7-4.9-.1-1.7.6-3.2 1.5-4.8 2.2-2.3.9-7.7 4.1-10.2 3.6-.7-.2-1.3-.6-1.8-1 0 .1 0 .2-.1.3-.2-.2-.3-.4-.4-.6-.4-.2-.7-.4-1.2-.5-1.3-.2-4.4-.7-6.3-.3v.9c-1.2-.2-2.2-.4-3.2-.5v-.4c.5-.2 1-.3 1.6-.5-.8-.9-2.4.1-3.7.3-.1-1.2-.3-3.3-1.1-4.7-.5-.1-.9-.2-1.4-.3 0-.1 0-.3.1-.4.2 0 .4-.1.6-.1-.4-.3-.9-.5-1.5-.4.2-.1-.2-3.1-.3-3.4-.9-.2-1.7-.6-2.6-1.1-3.1.2-6.4.5-9.7.8v.3c.4.2 1 .4 1.2.7s0 .8 0 1.1c-.5 0-1.1.1-1.4-.1-.8-.5-1.4-1.2-2.2-1.7-.1-.1-.5.1-.6.1.6.8 1.1 1.5 1.7 2.2l-.2.2-2-1c-1.3.8-2.4 1.6-3.7 2.4-.1-.4-.1-.7-.2-1.1-.7.1-1.4.1-2.2.2 0-.1-.1-.3-.1-.4 1.2-.3 2.5-.5 3.7-.8.1.1.1.2.2.3.2-.4.3-.8.6-1.3-2.8.5-5.4 1.1-8 1.4-1.5.2-3.1 0-4.6-.2-.8-.2-1.5-.9-2-1.6.6.1 1.1.3 1.7.4.1-.1.2-.3.3-.4-1.2-.7-2.4-1.3-3.5-2 .2-.1.4-.3.6-.4.4-.5.8-.9 1.4-1.6-1-.1-1.7-.2-2.3-.3.3-.5 1.1-1.4.8-1.6-.6-.6-1.7-.8-2.7-1.3l1-1c-3.8.3-7.4 0-10.6 1.8-2.1-1.6-4.1.3-6.8 0 1.2.8 2.1 1.4 2.9 1.9-3.5-.6-3.8-.9-3.7-2.1-2.7.5-5.5 1-8.3 1.6-.4.1-.7.2-1 .4 1.1-.1 2.2-.1 3.4-.2.2 0 .4-.3.6-.4 1.3-.9 3.7-.4 4.5 1.2-.8-.3-1.5-.4-2.1-.7-1-.4-1.6-.5-2.3.4-.8 1.1-1.3 1.3-2.5 1 .3-.3.5-.6.7-.9-1.2.9-1.9.1-2.6-.3-.3.1-.5.3-.8.4l-.7-.7c-.2.5-.4.9-.5 1.1.6.4 1.2.7 2.1 1.2-1.3.2-2 .3-2.6.4-1.7-2.1-3.4-4.3-5.3-6.6-.2.5-.3.8-.5 1.1-.1 0-.2-.1-.4-.1.2-.7.4-1.4.7-2.2-2.6-.8-5.3-.8-8-.1-2.6.7-5.2 1.4-7.8 2.2-.1-.4-.2-.6-.4-1-3 1.1-6.8.9-8.9 3.4-.4.4-1.3.6-2 .8-.1-.1-.2-.3-.4-.4.5-.4 1.1-.7 1.6-1.1-2.2-.6-7.1.5-7.6 1.3-2.4.3-4.6.4-6.8.8-3.4.6-6.7 1.2-10.1.1-.3-.1-.8 0-1.1.1-3.6 1.2-7.2 2.3-10.7 3.6-2.1.8-4.1 1.7-6.1 2.6-.3.1-.8.4-1.1.3-3.5-.9-6.3.3-9 1.8-1 .5-1.9.7-3.1.8-1.7.1-3.4.4-5 .9-1.1.3-1.9 1.1-3.2 1.8-4-1.1-7.4 1.5-11.7 1.8.6 1.1 1.1 2.1 1.6 3-1.7 1.3 1.2 1.8.8 3l-.9-.6c-.8-.5-1.4-.7-2.4-.1-1.2.8-2.7.9-4.4.8-2.7-.2-5.5-.1-8.3-.2-.7 0-1.3-.4-1.9-.6 0-.2.1-.5.1-.7-2.9.2-5.8.4-8.6.6-.3 0-.6 0-.8-.1-2.6-1.7-5.4-1.6-8.4-.8h-.5c-2.4-1.4-5.4-1.2-8.1-1.5-2.5-.3-4.9-.9-7-2.1-.5-.3-1.2-.5-1.8-.4-3.7.1-7.3.3-10.9.5-2.5.2-5 .5-7.4.8-.4 0-.9.1-1.1 0-3-1.8-6.2-1.3-9.5-.6-1 .2-1.8.1-2.9-.1-2.9-.8-5.9-1.1-8.8.5-3.4-2.3-7.8-.7-11.8-1.6v3.2c-2.1.9.3 2.1-.5 3.1-.2-.3-.4-.5-.6-.8-.5-.7-1-1.1-2.3-.8-1.1.2-2.5.4-3.5.1-2.2-.6-3.7 0-5.7 1.4.4.7.9 1.7 1.4 2.6.1.1.1.3.1.4-1.1 1.4 0 2.7.2 4 .3 1.7.1 1.8-2 1.8-.3 0-.7.1-1.2.2.7.9 1.3 1.7 2 2.7-1-.4-1.7-.7-2.7-1 0-.1.1-.4.1-.8 0-.7-.3-1.1-1.4-1.1-1.9.1-3.8.2-5.7.1-1.1 0-2.2-.3-3.5-.6.7 1.7 1.9 2.3 3.5 1.9.2.9.4 1.7.5 2.5-.1.1-.3.2-.4.3-1.1-.9-2.3-1.7-3.6-2.7-.4.5-.9.9-1.1 1.1-2.1.1-3.9.2-5.8.3.5-.7 1-1.5 1.5-2.1 1.1.4 1.8.7 2.5 1 0-.7.1-1.2.1-1.8h-10.9c.1.3.1.7.1.7h6.9c.1.1.2.3.2.4-1.6.7-3.2 1.4-5 2.3-.2-.9-.4-1.6-.5-2.2-1.3 2.4-4.7.2-6.3 2-.8-1-1.4-1.8-2.1-2.6.5-.2.9-.3 1.4-.5l-.1-.4c-1.3.2-2.7.3-4 .5v.5c.7 0 1.5.1 2.2.1-1.2 1.1-2.2 1.1-4.8-.1.4-.2.8-.5 1.3-.8-.7 0-1.2-.2-1.8-.1-.4.1-1 .4-.9.6.3 1.1.7 2.2 1.1 3.4-1.2 0-2.8-.2-4.2 0-2.4.4-4.5-.2-6.7-.5-2.3-.4-4.7-.3-6.9-.7-1.6-.3-3-1-4.6-1.5-.6-.2-1.2-.4-1.8-.4-4 .2-8 .5-12 .8-2.1.2-4.2.6-6.3.9-.4.1-.9.2-1.1.1-3.1-1.7-6.2-1.1-9.5-.5-.9.2-1.9.1-2.8 0-3-.5-6-1-8.8.8-3.3-2.3-7.5-.6-11.8-1.4 1.6-.7 2.7-1.2 3.9-1.6 1.3-.5 2-2.1 1.1-2.9-1.2-1.1-2.6-2.2-3.8-3.3-.7-.6-1.9-1.1-.5-2.1l-1.2-.6c.5-.4.8-.8 1.3-1 .8-.5 1.7-.9 2.6-1.3 1.8-.8 2-1.8.9-3.1-2.2-2.4-2.2-2.4-5.6-3.3.5-.5 1-1 1.3-1.4-.8-.4-1.7-.7-1.7-.9.2-1.4-1.3-2.1-2.4-2.4-1.6-.4-1.7-1.1-1.8-2 0-.2-.2-.4-.3-.7-.3.1-.6.2-1.2.3 1.2-2.8-2.2-2.3-3.1-3-3.1 1.3-6 2.6-9 3.9 1 .4 1.8.6 2.3 1 .2.1-.4.8-.6 1.3-1.5-.6-2.8-1.4-4.4-1 1 .6 1.9 1 2.8 1.5 0 .1 0 .2-.1.3-.9-.1-1.8-.2-2.4-.3-.7 1.1-1.4 2.1-1.8 2.7-1 0-1.5-.1-1.9 0-.5.1-.9.3-1.4.4v-.7c-1.8.7-3.6 1.3-5.5 2-1.7.6-3.4.8-4.9-.4.6-.1 1.2-.2 1.8-.2v-.4l-3.9-1.2c.1-.7.2-1.2.3-2-.9.1-1.5.2-1.8.3-.3-.6-.3-1.5-.9-1.8-.5-.3-1.6-.1-2.6-.1 0-.1.1-.6.3-1.4-3.2 1.5-6.8 2.2-8.8 4.9-2.8-.9-3.7 1.5-6.2 2 1.5.4 2.5.6 3.6.9-.1.2-.2.3-.2.5-1.3-.7-3.5.6-4.2-1.3-3.1 1.8-6.1 3.6-9.5 5.6l2.6 1.3c-.9.3-1.4.6-2.1.8-2.6-1.4-5.3-2.9-8.1-4.5 0 .4-.1.7-.1 1h-.3c-.2-.7-.3-1.4-.5-2.1-6.2.1-9.3 3.9-13.5 6.6l-.8-.8c-1.3.8-2.7 1.5-3.8 2.4-1 .9-1.7 2-2.6 3.1-.5.6-1 1.1-1.5 1.6-.2-.1-.4-.2-.5-.3.3-.5.6-1 1-1.6-3 .3-4.5 2.2-6.5 3.4.2.4.4.7.6 1-1.9-.4-3.3.3-4.7 1.1-1.8.9-4.1.8-6.1-.7 1.8.1 3.4.3 5.2.4-.9-1.2-1.5-2.1-2.2-3.1.4-.3.7-.5 1-.7l1.2 2.4h.7c.7-1 1.3-1.9 2-2.9.4-.2 1-.3 1.1-.6.5-1.2 1.2-2.5-.1-3.7-.3-.3-.4-.8-.6-1.3 1.6.4 2.9.3 3.3-1.3.2.1.3.2.5.4-.8 1-1.7 2-2.5 3l.6.3c1-1.2 2.2-2.3 3-3.6.3-.5-.2-1.3-.3-2h-.5c.3-.1.5-.2.8-.4.2-.1.5-.2 1-.5-1.3-.5-2.5-.9-3.7-1.4-.1.4-.2.6-.2.8-.7.1-1.4.1-2.4.2v-2.4c-1.3-.1-2.8-.1-4.3-.2-.1.1-.1.3-.2.4-.1-.4-.3-.7-.4-1.2-.7.4-1.4.7-2.4 1.3-.2-.8-.3-1.5-.5-2.3-2.8-.4-5.5-.1-8 1.3-.2-.9-.3-1.7-.5-2.6-1.8.7-3.1.4-4.4-.4-1-.6-1.9-.8-2.5.4-.1.2-.7.3-1.2.3.3-.3.7-.7 1.2-1.3-.8.1-1.2.2-1.6.3-.2-.6-.3-1.2-.6-1.9.5.1.9.1 1.5.2-.3-.7-.6-1.4-1.2-2.6-1.2 1.1-2.1 1.9-3 2.7-.1 0-.2-.1-.2-.1.4-.7.8-1.4 1.2-2.2-.2.1-.4.1-.5.2l-2.7-3.3c-.2 0-.3.1-.5.1-.1.4-.2.8-.4 1.8-1-1.1-1.7-1.8-2.6-2.9-1.5-.2-1.1.7-.9 1.6-1.4-.1-2.8-.2-4.5-.4 1.1-.5 1.9-.8 2.7-1.2.1.3.2.6.2.9h.5v-2.5c-2.3.9-2.7.8-3.3-.8-.5.1-1.1.1-1.7.2-.7-3.1-2.8-.2-4.1-.7-1.4 2.7-2.1 3.1-3.7 2.9.4-1.3.8-2.6 1.1-3.6 1-1.2 1.9-2.3 3-3.2 1.7-1.5-.4-2.6-.6-4h-4.6c1-2.5 2.5-4.5 4.6-6.2 1.3-1.1.8-2.2-.6-3.2-1.5-1.1-3.3-1.3-5.1-1.8-.9-.3-2.1-.5-1.4-1.7-.5-.1-.8-.1-1.3-.2 0-.1-.1-.3 0-.4.8-1 1.5-2.1 2.4-3.1 1.1-1.1.7-2-.5-2.6-2.2-1.1-4.2-2.9-7.4-1.3.3-.9.5-1.6.7-2.2-.1 0-.3-.1-.4-.1-.3.2-.6.4-1.1.7-.8-1.2-1.9-2-3.7-2-1.5 0-2.5-.4-3.1-1.4-.1-.2-.9-.2-1.4-.2-.4-2.5-3.2-.8-4.3-1.3-2.2 2.1-4.3 4.1-6.5 6.3 1.2 0 2-.1 2.7.1.2.1.1.9.2 1.3h-4.2c-.1 0-.2.5-.2.5 1.1.2 2.1.3 3.1.5 0 .1.1.2.1.3-.9.2-1.8.3-2.3.4-.1 1.3-.2 2.4-.3 3.7-.5-.3-.8-.4-1.2-.6-.4.4-.8.9-1.3 1.4-.2-.3-.5-.5-.5-.6.6-.7 1.4-1.4 1.9-2.1.2-.3-.1-.8-.2-1.5-1.7 2.1-3.1 4-4.7 5.8-.7.7-1.6 1.4-2.6 1.9-1.3.7-2.1.7-3.7.2l1.8-.6c0-.1-.1-.3-.1-.4h-4c-.4-.7-.6-1.2-.9-1.7-.6.2-1.2.5-1.7.6-.3-.5-.5-1.4-.9-1.4-1-.1-2.1.2-3.2.4 0-.1-.1-.5-.1-.8-1.1-.2-5.4 4.9-5.8 6.9-3.1 0-2.6 2.5-4.7 3.7 1.6-.1 2.7-.2 3.8-.3-2.2 1.4-3.4 1.5-4.4.6-1.7 2.2-3.3 4.5-5 6.8.1.1.2.1.3.2.3-.1.9-.2 1-.4.1-1.1 1.9-1.5 1.8-2.8-.1-.9 2.8-1.6 4-.9-.8.2-1.5.5-2.2.6-1 .2-1.5.6-1 1.4.1.2.2.6.2.8-.1.4-.3.8-.5 1.3-.3-.3-.6-.6-.9-1-.2 1.7-2.1 1.2-3.5 1.5.2.3.4.7.5.9.8-.1 1.5-.2 2.7-.3-.8.9-1.2 1.3-1.6 1.7-3.2-.5-6.4-1.1-9.6-1.6-.1.2-.1.4-.2.9-.5-.7-.8-1.1-1.2-1.7-5.7 1.9-6.7 6.4-9.1 10.2-.4-.2-.7-.3-1.1-.4-.8 1.2-1.8 2.4-2.4 3.6-.5 1.1-.5 2.2-.7 3.4-.1.7-.3 1.3-.5 2l-.7-.1c.1-.6.2-1.2.2-1.9-2.6 1.2-3.2 3.4-4.4 5.2 1.1.2 2.1.5 3.3.7-1.4 1-2.5 1.8-3.6 2.6-.1-.1-.2-.1-.3-.2l2.3-2.3c-.2-.2-.5-.4-.7-.5-1 .7-2.2 1.2-3.1 2-1 1-1.8 2.2-2.6 3.3-1.4 1.8-3.1 3.4-5.6 4.4-.4.2-.8.5-1 .9-1.2 2.6-2.6 3.4-6.6 3.6-.2-.7-.4-1.4-.7-2.3-.7.4-1.1.6-1.6.9 1.6-1.8.7-3.2-.7-4.7-.9-1-2.1-2-1.4-3.5.1-.3-.5-.9-.7-1.1-1.5.4-2.6.7-3.7 1.1-.1-.2-.2-.4-.3-.5.5-.2 1-.4 1.8-.7-.2-.5-.1-1.5-.6-1.8-2.1-1-3.3.6-4.8 1.4l-.3-.3c.8-.6 1.5-1.2 2.3-1.9-.8.1-1.6.1-1.9.2-.9.8-1.5 1.3-2.4 2.1-.3-.8-.4-1.1-.5-1.4-.8.2-1.4.3-2.1.5-.8-.6-1.5-1.1-2.4-1.7.3-.3.6-.6.8-.9-.1-.1-.2-.2-.4-.3-.5.4-1 .8-1.6 1.3-.9-1.2.1-2 1-3h-2.7c.5-.8.8-1.5 1.3-2.3-1.3.6-2.5 1.1-3.7 1.6l-.3-.3c1.1-.9 2.3-1.8 3.5-2.7-1.8-.2-3.1-.4-4.5-.6v-1.3c.5.3.9.6 1.4.7.6.1 1.2 0 1.9 0-.1-.4-.1-.9-.2-1.3-.2-.8-.2-1.7-.7-2.2-.8-.9-.7-2.3-2.7-2.6-1-.1-2.1-.5-3.3-.8 1.3-.6 2.2-1.3 1.2-2.5-.4.2-.9.4-1.3.6-.1-.1-.1-.2-.1-.3.6-.3 1.3-.5 1.9-.8.9 1.1.1 2.6 2 3.2-.5-1.3-.8-2.7-1.5-3.9-.4-.6-1.5-.9-2.4-1.3l-.3.3c.1-.5.1-1 .2-1.6-1.3.5-2.5.9-3.7 1.4.3.3.5.5.8.7-.5.2-.9.4-1.4.7.3.2.6.4.8.5l-.4.4c-.8-.5-1.6-.9-2.4-1.4-.1-.1-.2-.3-.3-.4-1 .9-2 1.8-3.2 2.8.1 0-.4-.1-1-.4-.1.7-.2 1.3-.2 2.1-.5-.1-1-.2-1.3-.4-1.1-1-2-.6-2.7.3-1.1 1.4-2 2.9-3 4.4-.5-.2-1.3-.6-2.2-1 0 .2.1.3.1.5-1.2.6-2.4 1.3-3.7 1.7-1.2.4-1.8.7-1.1 1.7.2.2 0 .6 0 .9h-.5c-.1-.4-.3-.8-.4-1.5-.3.4-.5.7-.8 1-.7-.2-1.4-.5-2.2-.8.3-.3.6-.5.9-.9-.9-.3-1.8-.5-3.2-.9.3 1.4.5 2.4.7 3.5h-.3c-.5-.7-.9-1.3-1.4-2-.1.1-.1.3-.2.4-1.7-.2-3.4-.3-5.1-.5 0 .1-.1.2-.1.3.4.3.7.6 1.1 1l-.1.4c-1.2-.1-2.4-.2-4-.3-1.4.8.2 1.2 1.2 1.8-.5.2-1 .4-1.1.4-1-.7-1.8-1.3-2.9-2.1-.4 2.2-1 2.4-2.9 1.7-.3.4-.5.7-.8 1.1-1.4-.5-2.5-.7-2.7.9 0 .4-.5.8-.8 1.2 1.7 2.1 1.8 2.9.5 3.9-1-1-2-2.1-3-3.2-.1-.4-.2-.9-.4-1.4-.3-.8-.6-1.5-.9-2.2-.4-1-1-1.8-2.6-1.6-.5 0-1-.3-1.5-.5-1 .9-1.9 1.8-3.1 2.8-1.9-2.3-3-4.5-3.4-6.9-.2-1.4-1.8-1.7-3.5-1.6-2.2.2-3.5 1.3-5.2 1.9-.6.2-1.5 0-2.2 0-.4 0-.9.1-1.7.2-.4-1-1-2.2-1.4-3.3-.5-1.4-1.5-1.9-3.3-1.5-2.4.6-5.2.8-5.8 3.4-.7-.7-1.2-1.2-1.9-1.8-.4 2-1.7 1.2-2.9 1-1 .7-2 1.4-3.4 2.4-.5.1-1.9-1-2.7.5-2.9-1.7-3 1.3-4.9 1.9 2.8 1.9 1.4 4.5 2.5 6.9-.7 0-1.3.1-1.8.1.1.1.2.1.2.2-.6.5-1.3 1-2.2 1.7-.2-.8-.2-1.1-.3-1.4-.4.1-.8.1-1.1.2-.4.1-.7.1-1 .2-.7-.6-1.5-1.2-2.2-1.8.3-.3.6-.5.9-.8-.1-.1-.2-.2-.4-.3l-1.5 1.2c-.2 0-.3-.1-.5-.1.4-.9.7-1.8 1.2-2.9-.6-.1-1.4-.2-2.2-.2.4-.6.8-1.3 1.3-2-1.3.4-2.5.9-3.8 1.3l-.3-.3c1.2-.8 2.4-1.6 3.8-2.5-1.8-.3-3.1-.6-4.5-.8V250c.3.1.4.2.6.2.9.2 1.7.4 2.6.7-.1-.6-.2-1.3-.3-1.9-.1-.4-.4-.8-.6-1.2 0-.5 0-1-.1-1.5-.4-2-3-1.8-4.8-2.7 1.1-.6 2.2-1.2 1.1-2.4-.5.2-.9.4-1.3.6-.1-.1-.1-.2-.2-.3.7-.2 1.4-.4 2.2-.6.8 1.2-.1 2.6 1.7 3.3-.4-1.5-.7-2.9-1.4-4.3-.2-.5-1.4-.7-2.3-1.1 0-.2.1-.6.2-1.2-1.3.4-2.5.7-3.8 1.1.3.3.6.5.7.6l-1.4 1.4c-.4-.2-1.2-.7-2-1.2-.1-.2-.1-.3-.2-.5-1.1.8-2.1 1.6-3.1 2.4l.3.3c-.4-.2-.9-.3-1.5-.5-.1.7-.3 1.3-.4 2-.4-.1-.7-.1-.9-.2-1.3-1.5-2.5-.8-3.4.3-1.1 1.2-1.9 2.6-2.9 3.9-.6-.3-1.4-.7-2.4-1.3-.5 1.6-2 2.1-3.7 2.3-1.3.1-1.6.7-1.1 1.6.1.3 0 .6-.1 1h-.5c-.1-.4-.2-.8-.3-1.5-.4.4-.6.7-.8 1-.7-.3-1.3-.5-2.2-.9.4-.2.7-.4 1.2-.7-.9-.3-1.7-.6-2.5-.9-2.1.9.4 2.2-.6 3.4-.5-.8-.9-1.5-1.3-2.2-.1.1-.2.3-.2.4-1.7-.3-3.3-.5-5-.8-.1.1-.1.2-.2.4l1 1c0 .1-.1.3-.1.4-1.2-.2-2.4-.3-3.9-.5-1.4.7.1 1.2 1 1.9-.7.2-1.1.3-1.2.3-.9-.8-1.7-1.4-2.7-2.3-.7 2.2-1.1 2.3-3.1 1.6-.3.3-.6.6-.9 1-3.2-1.5-2.3 1.4-3.6 1.9 1.6 2.4 1.5 3.2-.1 4.2-.3-.7-.5-1.4-.9-2-.5-.6-1.3-.9-1.5-1.5 0-.5 0-.9-.1-1.4-.2-.9-.6-1.8-.9-2.7-.3-.9-.9-1.5-2.2-1.5-.6 0-1.1-.4-1.6-.5-1 .8-2 1.6-3.3 2.6-1.7-2.3-2.6-4.5-2.7-6.7-.1-1.7-1.6-2.5-3.7-1.9-.1 0-.4 0-.5-.1v5.7c-.1-1.8-.2-3-.3-3.2-1.1 1.2-3.1 1.6-2.9 3.4.1 1.2-.6 2.4-1 3.6-1.3-.3-2.2-.6-3.3-.8.1.6.2 1.1.3 1.5h-.4c-.9-1.8-2.5-2.2-4.9-2-1.7.1-3.5.3-4.9-1-.3-.3-1.3-.1-1.6-.1-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.5.9.2 2.3-1.7 2.3-.2-.7-.5-1.4-.7-2.2-.6.3-1 .5-1.1.5-1.2-.4-2.1-.7-3.3-1 0 .6.1.8.1 1.2-3.6-.3-6.4 1-9.7 2.1-1.5-.7-2.3 1-3.5 1.4-3.5-.8-3.7-3.3-4.9-5.3-.5-.9-1.8-1.5-2.9-2-.6-.3-1.6 0-2.3.2-.2.1.1 1 .1 1.6-.1 0-.4.1-.5 0-1.6-.9-3.3-.7-4.9-.1-1.7.6-3.2 1.5-4.8 2.2-3.1 1.2-8.5 4.6-11.9 2.6-.2-.1-.5-.3-.7-.5v.2c-.5-.7-.8-1.1-.9-1.2v-.1c-.3-.4-.6-.9-.9-1.3-.9.1-1.7.1-2.4.2 0-.1-.1-.3-.1-.4l2.1-.3c-.4-.4-.8-.8-1.4-1-.9-.3-2.3.7-3.4.4-1.2-.3-1.9-2-3-2.6-1.5-.8-4.1-.1-5.2-.8-.9-.6-1-2.2-1.7-2.6-1.4-1-.7-1.1-2.8-1.7-2.4-.6-6.4.5-8.9.7v.3c.4.2 1 .4 1.2.7s0 .8 0 1.1c-.5 0-1.1.1-1.4-.1-.8-.5-1.4-1.2-2.2-1.7-.1-.1-.5.1-.6.1.6.8 1.1 1.5 1.7 2.2l-.2.2-2-1c-1.3.8-2.4 1.6-3.7 2.4-.1-.4-.1-.7-.2-1.1-.7.1-1.4.1-2.2.2 0-.1-.1-.3-.1-.4 1.2-.3 2.5-.5 3.7-.8.1.1.1.2.2.3.2-.4.3-.8.6-1.3-2.8.5-5.4 1.1-8 1.4-1.5.2-3.1 0-4.6-.2-.8-.2-1.5-.9-2-1.6.6.1 1.1.3 1.7.4.1-.1.2-.3.3-.4-1.2-.7-2.4-1.3-3.5-2 .2-.1.4-.3.6-.4.4-.5.8-.9 1.4-1.6-1-.1-1.7-.2-2.3-.3.3-.5 1.1-1.4.8-1.6-.6-.6-1.7-.8-2.7-1.3l1-1c-3.8.3-7.4 0-10.6 1.8-2.1-1.6-4.1.3-6.8 0 1.2.8 2.1 1.4 2.9 1.9-3.5-.6-3.8-.9-3.6-2.1-1.8.3-2.8.7-4.6 1m122 30.5c-1.6.7-2.9 1.7-4.3 2.6-.3.2-.6.4-.8.4-2.1 0-4 .3-5.9.8h-3.5c6.3-2 12.6-4 19-6 .6-.2 1.3-.2 2-.4 0 .1.1.3.1.4-2.3.7-4.6 1.3-6.6 2.2zm930.1-21.6c.1-.4 0-1.3.4-1.4 1.2-.4 2.5-.4 3.7-.5.1 0 .2.7.3.9-1.5.3-2.8.6-4.4 1zm91.6 21.6c-1.6.7-2.9 1.7-4.3 2.6-.3.2-.6.4-.8.4-2.1 0-4 .3-5.9.8h-3.5c6.3-2 12.6-4 19-6 .6-.2 1.3-.2 2-.4 0 .1.1.3.1.4-2.3.7-4.5 1.3-6.6 2.2zm14.2-17h4c-.7.2-1.3.5-2 .7 1.1.9 2.2 1.8 3.2 2.6-2.6.1-2.6.1-5.2-3.3zm27.3-1.5c-1.9-1.7-1.9-1.8-.5-2.5.3.5.6 1.1 1.1 1.9 0 .1-.3.3-.6.6zm233.1-11.9h4c-.7.2-1.3.5-2 .7 1.1.9 2.2 1.8 3.2 2.6-2.6.1-2.6.1-5.2-3.3zm26.9-1.1c-1.9-1.7-1.9-1.8-.5-2.5.3.5.6 1.1 1.1 1.9 0 .1-.3.3-.6.6zm8.8-.5c-.2-.4-.4-.9-.6-1.4-.9-.1-1.6-.4-2.2-.8 2.7-.3 3.5.3 2.8 2.2zm3.9-.1h-2.4c-.8-1.3-.8-1.5 1-1.5-.4.2-.6.4-.7.6.8.2 1.5.4 2.2.6 0 .1-.1.2-.1.3zm64 9.3c-1.5-.5-2.9-.9-4.2-1.4 0-.1.1-.2.1-.3 1.3.2 2.6.4 4.1.6v1.1zm32.2 1c-.6-.2-1.1-.4-2.1-.9 1.4-.2 2.3-.4 3.3-.6.1.1.1.2.2.3-.5.5-.9.8-1.4 1.2zm65-20.2v-.2c1.3-.1 2.5-.3 4.2-.5 0 0 .2.4.3.7h-4.5zm18.5-1.4c.9-.4 1.9-.8 3.5-1.4-.3 1-.3 2-.7 2.1-.8.2-1.9 0-2.8-.1v-.6zm5.3 3.4c-1.6-.2-2.9-.5-4.1-.7v-.5c1.3-.4 2.6-.7 4.1-1.1v2.3zm9.9.6c-.7-.9-1.1-1.3-1.2-1.5.4-.7.6-1.2 1-1.9-2 .1-3.6.2-5.1.3 0-.2-.1-.4-.1-.5 2-.3 3.9-.6 6.2-.9-.3 1.7-.5 2.9-.8 4.5zm8.8-3.2h.1-.1zm0 0c-.6-.2-1.1-.4-1.5-.5-.3-.2-.6-.3-.9-.3-.1-.2-.3-.4-.4-.5 1-.2 2.3.1 3 1-.1.1-.1.2-.2.3zm27.8 8c.1-.4 0-1.3.4-1.4 1.2-.4 2.5-.4 3.7-.5.1 0 .2.7.3.9-1.6.3-2.9.6-4.4 1zm91.6 21.6c-1.6.7-2.9 1.7-4.3 2.6-.3.2-.6.4-.8.4-5 0-9.1 1.8-13.3 3.5-3.4 1.3-6.7 2.9-10.7 3.1l-.3-.3c1.5-.6 3-1.2 4.5-1.9l.3.3c.1-.5.2-.9.2-1.2.8-.1 1.4 0 2-.2 8.9-2.8 17.8-5.6 26.8-8.5.6-.2 1.3-.2 2-.4 0 .1.1.3.1.4-2.2.7-4.5 1.3-6.5 2.2zm14.8-17.3h4c-.7.2-1.3.5-2 .7 1.1.9 2.2 1.8 3.2 2.6-2.6.1-2.6.1-5.2-3.3zm26.7-1.2c-1.9-1.7-1.9-1.8-.5-2.5.3.5.6 1.1 1.1 1.9 0 .1-.3.3-.6.6zm12.8-.9h-2.4c-.8-1.4-.8-1.5 1.3-1.5-.5.3-.7.5-.9.7.8.2 1.5.4 2.2.6-.2 0-.2.1-.2.2zm64.5-6.3c-.4-.1-1.2-.1-1.3-.3-.4-.6-.6-1.4-.8-2.1.2-.1.5-.2.7-.2.6.5 1.3 1 1.7 1.5.1.2-.2.7-.3 1.1z'/%3E%3C/g%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg id='comp-lw53fwxe-top' preserveAspectRatio='xMidYMax slice' data-bbox='-0.001 205.493 1920.001 94.507' viewBox='-0.001 205.493 1920.001 94.507' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-lw53fwxe-top %7B fill: %23886CAE; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M0 300h1920v-58.8l-1 .2c-.6.2-1.2-.6-1.8-.4l-.3-.3c.7-.4 1.3-.9 2-1.3v-1.5c-1-.2-1.8-.3-2.7-.5V236c.3.1.4.2.6.2l2.1.6v-2.1c-.1-.3-.3-.6-.4-.8v.1l-.1-.1c-.6-.2-1.3-.4-1.9-.6-.5 1-1 2.1-1.5 3.3-1.2-1.7-1.2-1.7 1.3-5.1.8.9 1.4 1.7 2.1 2.4h.1c0-.5 0-1-.1-1.5-.4-2-3-1.8-4.8-2.7 1.1-.6 2.2-1.2 1.1-2.4-.5.2-.9.4-1.3.6-.1-.1-.1-.2-.2-.3.7-.2 1.4-.4 2.2-.6.8 1.2-.1 2.6 1.7 3.3-.4-1.5-.7-2.9-1.4-4.3-.2-.5-1.4-.7-2.3-1.1 0-.2.1-.6.2-1.2-1.3.4-2.5.7-3.8 1.1.3.3.6.5.7.6l-1.4 1.4c-.4-.2-1.2-.7-2-1.2-.1-.2-.1-.3-.2-.5-1.1.8-2.1 1.6-3.1 2.4l.3.3c-.4-.2-.9-.3-1.5-.5-.1.7-.3 1.3-.4 2-.4-.1-.7-.1-.9-.2-1.3-1.5-2.5-.8-3.4.3-1.1 1.2-1.9 2.6-2.9 3.9-.6-.3-1.4-.7-2.4-1.3-.5 1.6-2 2.1-3.7 2.3-1.3.1-1.6.7-1.1 1.6.1.3 0 .6-.1 1h-.5c-.1-.4-.2-.8-.3-1.5-.4.4-.6.7-.8 1-.7-.3-1.3-.5-2.2-.9.4-.2.7-.4 1.2-.7-.9-.3-1.7-.6-2.5-.9-2.1.9.4 2.2-.6 3.4-.5-.8-.9-1.5-1.3-2.2-.1.1-.2.3-.2.4-1.7-.3-3.3-.5-5-.8-.1.1-.1.2-.2.4l1 1c0 .1-.1.3-.1.4-1.2-.2-2.4-.3-3.9-.5-1.4.7.1 1.2 1 1.9-.7.2-1.1.3-1.2.3-.9-.8-1.7-1.4-2.7-2.3-.7 2.2-1.1 2.3-3.1 1.6-.3.3-.6.6-.9 1-3.2-1.5-2.3 1.4-3.6 1.9 1.6 2.4 1.5 3.2-.1 4.2-.3-.7-.5-1.4-.9-2-.5-.6-1.3-.9-1.5-1.5 0-.5 0-.9-.1-1.4-.2-.9-.6-1.8-.9-2.7s-.9-1.5-2.2-1.5c-.6 0-1.1-.4-1.6-.5-1 .8-2 1.6-3.3 2.6-1.7-2.3-2.6-4.5-2.7-6.7-.1-1.7-1.6-2.5-3.7-1.9-.1 0-.4 0-.5-.1v5.7c-.1-1.8-.2-3-.3-3.2-1.1 1.2-3.1 1.6-2.9 3.4.1 1.2-.6 2.4-1 3.6-1.3-.3-2.2-.6-3.3-.8.1.6.2 1.1.3 1.5h-.4c-.9-1.8-2.5-2.2-4.9-2-.5 0-1 .1-1.6.1 1.2.2 1.5.9 1 2.2-.2-.4-.4-.9-.6-1.4-.8-.1-1.8-.2-2.7-.4 0-.2.1-.3.1-.5h.9c-.7-.1-1.4-.4-2-1-.3-.3-1.3-.1-1.6-.1-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.6.3-1.3.6-1.8.9-.9-.7-1.9-1.3-3.2-2.2 1 .3 1.7.5 2.5.7s1.6.4 2.5.6c-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.5.9.2 2.3-1.7 2.3-.2-.7-.5-1.4-.7-2.2-.6.3-1 .5-1.1.5-1.2-.4-2.1-.7-3.3-1 0 .6.1.8.1 1.2-3.6-.3-6.4 1-9.7 2.1-1.5-.7-2.3 1-3.5 1.4-3.5-.8-3.7-3.3-4.9-5.3-.5-.9-1.8-1.5-2.9-2-.6-.3-1.6 0-2.3.2-.2.1.1 1 .1 1.6-.1 0-.4.1-.5 0-1.6-.9-3.3-.7-4.9-.1l-18.1 3.6c.1-.3.3-.5.4-.9-1.4.1-2.6.2-3.6.3l1.5 1-4.9 1c-.3-.1-.5-.1-.8-.3v.3c-1.2-.2-2.2-.4-3.2-.5v-.4c.5-.1.9-.3 1.4-.4-.5-.3-1-.6-1.6-.8-.1 0-.3 0-.4-.1-1.2-.1-3.1.6-4.1-.2-1.7-1.2-1.3-2.6-1.5-4.5-.2-1.6.5-3.6-.9-4.9-1-.8-10.5.3-10.5.4v.3c.4.2 1 .4 1.2.7s0 .8 0 1.1c-.5 0-1.1.1-1.4-.1-.8-.5-1.4-1.2-2.2-1.7-.1-.1-.5.1-.6.1.6.8 1.1 1.5 1.7 2.2l-.2.2-2-1c-1.3.8-2.4 1.6-3.7 2.4-.1-.4-.1-.7-.2-1.1-.7.1-1.4.1-2.2.2 0-.1-.1-.3-.1-.4 1.2-.3 2.5-.5 3.7-.8.1.1.1.2.2.3.2-.4.3-.8.6-1.3-2.8.5-5.4 1.1-8 1.4-1.5.2-3.1 0-4.6-.2-.8-.2-1.5-.9-2-1.6.6.1 1.1.3 1.7.4.1-.1.2-.3.3-.4-1.2-.7-2.4-1.3-3.5-2 .2-.1.4-.3.6-.4.4-.5.8-.9 1.4-1.6-1-.1-1.7-.2-2.3-.3.3-.5 1.1-1.4.8-1.6-.6-.6-1.7-.8-2.7-1.3l1-1c-3.8.3-7.4 0-10.6 1.8-2.1-1.6-4.1.3-6.8 0 1.2.8 2.1 1.4 2.9 1.9-3.5-.6-3.8-.9-3.6-2.1-1.7.3-3.3.6-5 1-.8-1-1.6-2.1-2.5-3.1-.2.5-.3.8-.5 1.1-.1 0-.2-.1-.4-.1.2-.7.4-1.4.7-2.2-1.2-.4-2.4-.6-3.6-.6-.2.6-.4 1-.5 1.3-1.6.1-3 .2-4.6.3.2-.5.4-.9.7-1.1-.9.2-1.7.5-2.6.7 1 .6 2 1.1 3 1.7 0 .1 0 .3.1.4-1.3-.1-2.6-.1-4-.2.6.5 1.2 1.1 1.8 1.6-2.5-.6-3.7-1.4-3.7-2.6-.8.2-1.6.5-2.4.7-.1-.4-.2-.6-.4-1l-2.1.6c.2.5.4 1 .5 1.5.1.4-.3.9-.6 1.3 0 .1-.7 0-.8-.1-.1-.4-.1-.9 0-1.3 0-.3.3-.5.4-.7-.4-.1-.8-.2-1.1-.3-2 .4-3.9.9-5.2 2.5-.4.4-1.3.6-2 .8-.1-.1-.2-.3-.4-.4.5-.4 1.1-.7 1.6-1.1-2.2-.6-7.1.5-7.6 1.3-2.4.3-4.6.4-6.8.8-3.4.6-6.7 1.2-10.1.1-.3-.1-.8 0-1.1.1-3.6 1.2-7.2 2.3-10.7 3.6-2.1.8-4.1 1.7-6.1 2.6-.3.1-.8.4-1.1.3-3.5-.9-6.3.3-9 1.8-1 .5-1.9.7-3.1.8-1.7.1-3.4.4-5 .9-1.1.3-1.9 1.1-3.2 1.8-4-1.1-7.4 1.5-11.7 1.8.6 1.1 1.1 2.1 1.6 3-1.7 1.3 1.2 1.8.8 3l-.9-.6c-.8-.5-1.4-.7-2.4-.1-1.2.8-2.7.9-4.4.8-2.7-.2-5.5-.1-8.3-.2-.7 0-1.3-.4-1.9-.6 0-.2.1-.5.1-.7-2.9.2-5.8.4-8.6.6-.3 0-.6 0-.8-.1-2.6-1.7-5.4-1.6-8.4-.8h-.5c-2.4-1.4-5.4-1.2-8.1-1.5-2.5-.3-4.9-.9-7-2.1-.5-.3-1.2-.5-1.8-.4-3.7.1-7.3.3-10.9.5-2.5.2-5 .5-7.4.8-.4 0-.9.1-1.1 0-3-1.8-6.2-1.3-9.5-.6-1 .2-1.8.1-2.9-.1-1.8-.5-3.7-.8-5.5-.6-.1 0-.1-.1-.2-.1l.1.1-1.5.3c-.4-.4-.7-.9-1-1.4-.8.1-1.6-.2-2.2-.7-.5-.1-1.1-.4-1.5-.7-.6-.4-1.1-1-1.6-1.5l-1.8-.9c.2-.1.3-.2.5-.2-1.5-.8-4.5-.8-6.1-.4 0 0-.1 0-.1-.1h-.3c.1 0 .2 0 .3-.1-1-.6-1.9-1.4-3.3-1.4-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.6.3-1.3.6-1.8.9-.9-.7-1.9-1.3-3.2-2.2 1 .3 1.7.5 2.5.7s1.6.4 2.5.6c-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.1.2-.2.5-.2.8-1 .2-1.9.4-2.9.6-.8.2-1.4.6-2.1.9l-.7-.7c-.2.5-.4.9-.5 1.1.6.4 1.2.7 2.1 1.2-1.3.2-2 .3-2.6.4-1.7-2.1-3.4-4.3-5.3-6.6-.2.5-.3.8-.5 1.1-.1 0-.2-.1-.4-.1.2-.7.4-1.4.7-2.2-1.2-.4-2.4-.6-3.6-.6.1-.3.3-.7.5-1.1-1.9.4-3.7.5-4.8 1.6-.9.2-1.7.5-2.6.7-.1-.1-.2-.1-.3-.2l-.4.4c-.5.1-.9.2-1.4.4-.1-.7-.2-1.1-.3-1.6-.4.7-.5 1.3-.5 1.8-.8.2-1.6.5-2.4.7-.1-.4-.2-.6-.4-1l-2.1.6c-.2-.5-.4-1.1-.6-1.6-1.5.3-2.6.5-3.8.7 0 .2-.1.3-.1.5.9.2 1.9.5 2.9.8-2 .4-3.9.9-5.2 2.5-.4.4-1.3.6-2 .8-.1-.1-.2-.3-.4-.4.5-.4 1.1-.7 1.6-1.1-2.2-.6-7.1.5-7.6 1.3-2.4.3-4.6.4-6.8.8-3.4.6-6.7 1.2-10.1.1-.3-.1-.8 0-1.1.1-3.6 1.2-7.2 2.3-10.7 3.6-2.1.8-4.1 1.7-6.1 2.6-.3.1-.8.4-1.1.3-3.5-.9-6.3.3-9 1.8-1 .5-1.9.7-3.1.8-1.7.1-3.4.4-5 .9-1.1.3-1.9 1.1-3.2 1.8-4-1.1-7.4 1.5-11.7 1.8.6 1.1 1.1 2.1 1.6 3-1.7 1.3 1.2 1.8.8 3l-.9-.6c-.8-.5-1.4-.7-2.4-.1-1.2.8-2.7.9-4.4.8-2.7-.2-5.5-.1-8.3-.2-.7 0-1.3-.4-1.9-.6 0-.2.1-.5.1-.7-2.9.2-5.8.4-8.6.6-.3 0-.6 0-.8-.1-2.6-1.7-5.4-1.6-8.4-.8h-.5c-2.4-1.4-5.4-1.2-8.1-1.5-2.5-.3-4.9-.9-7-2.1-.5-.3-1.2-.5-1.8-.4-3.7.1-7.3.3-10.9.5-2.5.2-5 .5-7.4.8-.4 0-.9.1-1.1 0-3-1.8-6.2-1.3-9.5-.6-1 .2-1.8.1-2.9-.1-1.8-.5-3.7-.8-5.5-.6-.1 0-.1-.1-.2-.1l-1.4-.7c0-.2-.1-.4-.1-.6-.2.1-.4.2-.6.2l-.4-.2c-.1-.2-.2-.5-.3-.7l-.6.3-2.8-1.4c-.3-.3-.5-.6-.8-.8-.7-.6-1.5-1.3-2.2-1.1-1.6-.8-4.7-.8-6.3-.4-1-.6-1.9-1.4-3.3-1.4-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.6.3-1.3.6-1.8.9-.9-.7-1.9-1.3-3.2-2.2 1 .3 1.7.5 2.5.7s1.6.4 2.5.6c-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.5.9.2 2.3-1.7 2.3-.2-.7-.5-1.4-.7-2.2-.6.3-1 .5-1.1.5-1.2-.4-2.1-.7-3.3-1 0 .6.1.8.1 1.2-3.6-.3-6.4 1-9.7 2.1-1.5-.7-2.3 1-3.5 1.4-3.5-.8-3.7-3.3-4.9-5.3-.5-.9-1.8-1.5-2.9-2-.6-.3-1.6 0-2.3.2-.2.1.1 1 .1 1.6-.1 0-.4.1-.5 0-1.6-.9-3.3-.7-4.9-.1-1.7.6-3.2 1.5-4.8 2.2-2.3.9-7.7 4.1-10.2 3.6-.7-.2-1.3-.6-1.8-1 0 .1 0 .2-.1.3-.2-.2-.3-.4-.4-.6-.4-.2-.7-.4-1.2-.5-1.3-.2-4.4-.7-6.3-.3v.9c-1.2-.2-2.2-.4-3.2-.5v-.4c.5-.2 1-.3 1.6-.5-.8-.9-2.4.1-3.7.3-.1-1.2-.3-3.3-1.1-4.7-.5-.1-.9-.2-1.4-.3 0-.1 0-.3.1-.4.2 0 .4-.1.6-.1-.4-.3-.9-.5-1.5-.4.2-.1-.2-3.1-.3-3.4-.9-.2-1.7-.6-2.6-1.1-3.1.2-6.4.5-9.7.8v.3c.4.2 1 .4 1.2.7s0 .8 0 1.1c-.5 0-1.1.1-1.4-.1-.8-.5-1.4-1.2-2.2-1.7-.1-.1-.5.1-.6.1.6.8 1.1 1.5 1.7 2.2l-.2.2-2-1c-1.3.8-2.4 1.6-3.7 2.4-.1-.4-.1-.7-.2-1.1-.7.1-1.4.1-2.2.2 0-.1-.1-.3-.1-.4 1.2-.3 2.5-.5 3.7-.8.1.1.1.2.2.3.2-.4.3-.8.6-1.3-2.8.5-5.4 1.1-8 1.4-1.5.2-3.1 0-4.6-.2-.8-.2-1.5-.9-2-1.6.6.1 1.1.3 1.7.4.1-.1.2-.3.3-.4-1.2-.7-2.4-1.3-3.5-2 .2-.1.4-.3.6-.4.4-.5.8-.9 1.4-1.6-1-.1-1.7-.2-2.3-.3.3-.5 1.1-1.4.8-1.6-.6-.6-1.7-.8-2.7-1.3l1-1c-3.8.3-7.4 0-10.6 1.8-2.1-1.6-4.1.3-6.8 0 1.2.8 2.1 1.4 2.9 1.9-3.5-.6-3.8-.9-3.7-2.1-2.7.5-5.5 1-8.3 1.6-.4.1-.7.2-1 .4 1.1-.1 2.2-.1 3.4-.2.2 0 .4-.3.6-.4 1.3-.9 3.7-.4 4.5 1.2-.8-.3-1.5-.4-2.1-.7-1-.4-1.6-.5-2.3.4-.8 1.1-1.3 1.3-2.5 1 .3-.3.5-.6.7-.9-1.2.9-1.9.1-2.6-.3-.3.1-.5.3-.8.4l-.7-.7c-.2.5-.4.9-.5 1.1.6.4 1.2.7 2.1 1.2-1.3.2-2 .3-2.6.4-1.7-2.1-3.4-4.3-5.3-6.6-.2.5-.3.8-.5 1.1-.1 0-.2-.1-.4-.1.2-.7.4-1.4.7-2.2-2.6-.8-5.3-.8-8-.1-2.6.7-5.2 1.4-7.8 2.2-.1-.4-.2-.6-.4-1-3 1.1-6.8.9-8.9 3.4-.4.4-1.3.6-2 .8-.1-.1-.2-.3-.4-.4.5-.4 1.1-.7 1.6-1.1-2.2-.6-7.1.5-7.6 1.3-2.4.3-4.6.4-6.8.8-3.4.6-6.7 1.2-10.1.1-.3-.1-.8 0-1.1.1-3.6 1.2-7.2 2.3-10.7 3.6-2.1.8-4.1 1.7-6.1 2.6-.3.1-.8.4-1.1.3-3.5-.9-6.3.3-9 1.8-1 .5-1.9.7-3.1.8-1.7.1-3.4.4-5 .9-1.1.3-1.9 1.1-3.2 1.8-4-1.1-7.4 1.5-11.7 1.8.6 1.1 1.1 2.1 1.6 3-1.7 1.3 1.2 1.8.8 3l-.9-.6c-.8-.5-1.4-.7-2.4-.1-1.2.8-2.7.9-4.4.8-2.7-.2-5.5-.1-8.3-.2-.7 0-1.3-.4-1.9-.6 0-.2.1-.5.1-.7-2.9.2-5.8.4-8.6.6-.3 0-.6 0-.8-.1-2.6-1.7-5.4-1.6-8.4-.8h-.5c-2.4-1.4-5.4-1.2-8.1-1.5-2.5-.3-4.9-.9-7-2.1-.5-.3-1.2-.5-1.8-.4-3.7.1-7.3.3-10.9.5-2.5.2-5 .5-7.4.8-.4 0-.9.1-1.1 0-3-1.8-6.2-1.3-9.5-.6-1 .2-1.8.1-2.9-.1-2.9-.8-5.9-1.1-8.8.5-3.4-2.3-7.8-.7-11.8-1.6v3.2c-2.1.9.3 2.1-.5 3.1-.2-.3-.4-.5-.6-.8-.5-.7-1-1.1-2.3-.8-1.1.2-2.5.4-3.5.1-2.2-.6-3.7 0-5.7 1.4.4.7.9 1.7 1.4 2.6.1.1.1.3.1.4-1.1 1.4 0 2.7.2 4 .3 1.7.1 1.8-2 1.8-.3 0-.7.1-1.2.2.7.9 1.3 1.7 2 2.7-1-.4-1.7-.7-2.7-1 0-.1.1-.4.1-.8 0-.7-.3-1.1-1.4-1.1-1.9.1-3.8.2-5.7.1-1.1 0-2.2-.3-3.5-.6.7 1.7 1.9 2.3 3.5 1.9.2.9.4 1.7.5 2.5-.1.1-.3.2-.4.3-1.1-.9-2.3-1.7-3.6-2.7-.4.5-.9.9-1.1 1.1-2.1.1-3.9.2-5.8.3.5-.7 1-1.5 1.5-2.1 1.1.4 1.8.7 2.5 1 0-.7.1-1.2.1-1.8h-10.9c.1.3.1.7.1.7h6.9c.1.1.2.3.2.4-1.6.7-3.2 1.4-5 2.3-.2-.9-.4-1.6-.5-2.2-1.3 2.4-4.7.2-6.3 2-.8-1-1.4-1.8-2.1-2.6.5-.2.9-.3 1.4-.5l-.1-.4c-1.3.2-2.7.3-4 .5v.5c.7 0 1.5.1 2.2.1-1.2 1.1-2.2 1.1-4.8-.1.4-.2.8-.5 1.3-.8-.7 0-1.2-.2-1.8-.1-.4.1-1 .4-.9.6.3 1.1.7 2.2 1.1 3.4-1.2 0-2.8-.2-4.2 0-2.4.4-4.5-.2-6.7-.5-2.3-.4-4.7-.3-6.9-.7-1.6-.3-3-1-4.6-1.5-.6-.2-1.2-.4-1.8-.4-4 .2-8 .5-12 .8-2.1.2-4.2.6-6.3.9-.4.1-.9.2-1.1.1-3.1-1.7-6.2-1.1-9.5-.5-.9.2-1.9.1-2.8 0-3-.5-6-1-8.8.8-3.3-2.3-7.5-.6-11.8-1.4 1.6-.7 2.7-1.2 3.9-1.6 1.3-.5 2-2.1 1.1-2.9-1.2-1.1-2.6-2.2-3.8-3.3-.7-.6-1.9-1.1-.5-2.1l-1.2-.6c.5-.4.8-.8 1.3-1 .8-.5 1.7-.9 2.6-1.3 1.8-.8 2-1.8.9-3.1-2.2-2.4-2.2-2.4-5.6-3.3.5-.5 1-1 1.3-1.4-.8-.4-1.7-.7-1.7-.9.2-1.4-1.3-2.1-2.4-2.4-1.6-.4-1.7-1.1-1.8-2 0-.2-.2-.4-.3-.7-.3.1-.6.2-1.2.3 1.2-2.8-2.2-2.3-3.1-3-3.1 1.3-6 2.6-9 3.9 1 .4 1.8.6 2.3 1 .2.1-.4.8-.6 1.3-1.5-.6-2.8-1.4-4.4-1 1 .6 1.9 1 2.8 1.5 0 .1 0 .2-.1.3-.9-.1-1.8-.2-2.4-.3-.7 1.1-1.4 2.1-1.8 2.7-1 0-1.5-.1-1.9 0-.5.1-.9.3-1.4.4v-.7c-1.8.7-3.6 1.3-5.5 2-1.7.6-3.4.8-4.9-.4.6-.1 1.2-.2 1.8-.2v-.4l-3.9-1.2c.1-.7.2-1.2.3-2-.9.1-1.5.2-1.8.3-.3-.6-.3-1.5-.9-1.8-.5-.3-1.6-.1-2.6-.1 0-.1.1-.6.3-1.4-3.2 1.5-6.8 2.2-8.8 4.9-2.8-.9-3.7 1.5-6.2 2 1.5.4 2.5.6 3.6.9-.1.2-.2.3-.2.5-1.3-.7-3.5.6-4.2-1.3-3.1 1.8-6.1 3.6-9.5 5.6l2.6 1.3c-.9.3-1.4.6-2.1.8-2.6-1.4-5.3-2.9-8.1-4.5 0 .4-.1.7-.1 1h-.3c-.2-.7-.3-1.4-.5-2.1-6.2.1-9.3 3.9-13.5 6.6l-.8-.8c-1.3.8-2.7 1.5-3.8 2.4-1 .9-1.7 2-2.6 3.1-.5.6-1 1.1-1.5 1.6-.2-.1-.4-.2-.5-.3.3-.5.6-1 1-1.6-3 .3-4.5 2.2-6.5 3.4.2.4.4.7.6 1-1.9-.4-3.3.3-4.7 1.1-1.8.9-4.1.8-6.1-.7 1.8.1 3.4.3 5.2.4-.9-1.2-1.5-2.1-2.2-3.1.4-.3.7-.5 1-.7l1.2 2.4h.7c.7-1 1.3-1.9 2-2.9.4-.2 1-.3 1.1-.6.5-1.2 1.2-2.5-.1-3.7-.3-.3-.4-.8-.6-1.3 1.6.4 2.9.3 3.3-1.3.2.1.3.2.5.4-.8 1-1.7 2-2.5 3l.6.3c1-1.2 2.2-2.3 3-3.6.3-.5-.2-1.3-.3-2h-.5c.3-.1.5-.2.8-.4.2-.1.5-.2 1-.5-1.3-.5-2.5-.9-3.7-1.4-.1.4-.2.6-.2.8-.7.1-1.4.1-2.4.2v-2.4c-1.3-.1-2.8-.1-4.3-.2-.1.1-.1.3-.2.4-.1-.4-.3-.7-.4-1.2-.7.4-1.4.7-2.4 1.3-.2-.8-.3-1.5-.5-2.3-2.8-.4-5.5-.1-8 1.3-.2-.9-.3-1.7-.5-2.6-1.8.7-3.1.4-4.4-.4-1-.6-1.9-.8-2.5.4-.1.2-.7.3-1.2.3.3-.3.7-.7 1.2-1.3-.8.1-1.2.2-1.6.3-.2-.6-.3-1.2-.6-1.9.5.1.9.1 1.5.2-.3-.7-.6-1.4-1.2-2.6-1.2 1.1-2.1 1.9-3 2.7-.1 0-.2-.1-.2-.1.4-.7.8-1.4 1.2-2.2-.2.1-.4.1-.5.2l-2.7-3.3c-.2 0-.3.1-.5.1-.1.4-.2.8-.4 1.8-1-1.1-1.7-1.8-2.6-2.9-1.5-.2-1.1.7-.9 1.6-1.4-.1-2.8-.2-4.5-.4 1.1-.5 1.9-.8 2.7-1.2.1.3.2.6.2.9h.5v-2.5c-2.3.9-2.7.8-3.3-.8-.5.1-1.1.1-1.7.2-.7-3.1-2.8-.2-4.1-.7-1.4 2.7-2.1 3.1-3.7 2.9.4-1.3.8-2.6 1.1-3.6 1-1.2 1.9-2.3 3-3.2 1.7-1.5-.4-2.6-.6-4h-4.6c1-2.5 2.5-4.5 4.6-6.2 1.3-1.1.8-2.2-.6-3.2-1.5-1.1-3.3-1.3-5.1-1.8-.9-.3-2.1-.5-1.4-1.7-.5-.1-.8-.1-1.3-.2 0-.1-.1-.3 0-.4.8-1 1.5-2.1 2.4-3.1 1.1-1.1.7-2-.5-2.6-2.2-1.1-4.2-2.9-7.4-1.3.3-.9.5-1.6.7-2.2-.1 0-.3-.1-.4-.1-.3.2-.6.4-1.1.7-.8-1.2-1.9-2-3.7-2-1.5 0-2.5-.4-3.1-1.4-.1-.2-.9-.2-1.4-.2-.4-2.5-3.2-.8-4.3-1.3-2.2 2.1-4.3 4.1-6.5 6.3 1.2 0 2-.1 2.7.1.2.1.1.9.2 1.3h-4.2c-.1 0-.2.5-.2.5 1.1.2 2.1.3 3.1.5 0 .1.1.2.1.3-.9.2-1.8.3-2.3.4-.1 1.3-.2 2.4-.3 3.7-.5-.3-.8-.4-1.2-.6-.4.4-.8.9-1.3 1.4-.2-.3-.5-.5-.5-.6.6-.7 1.4-1.4 1.9-2.1.2-.3-.1-.8-.2-1.5-1.7 2.1-3.1 4-4.7 5.8-.7.7-1.6 1.4-2.6 1.9-1.3.7-2.1.7-3.7.2l1.8-.6c0-.1-.1-.3-.1-.4h-4c-.4-.7-.6-1.2-.9-1.7-.6.2-1.2.5-1.7.6-.3-.5-.5-1.4-.9-1.4-1-.1-2.1.2-3.2.4 0-.1-.1-.5-.1-.8-1.1-.2-5.4 4.9-5.8 6.9-3.1 0-2.6 2.5-4.7 3.7 1.6-.1 2.7-.2 3.8-.3-2.2 1.4-3.4 1.5-4.4.6-1.7 2.2-3.3 4.5-5 6.8.1.1.2.1.3.2.3-.1.9-.2 1-.4.1-1.1 1.9-1.5 1.8-2.8-.1-.9 2.8-1.6 4-.9-.8.2-1.5.5-2.2.6-1 .2-1.5.6-1 1.4.1.2.2.6.2.8-.1.4-.3.8-.5 1.3-.3-.3-.6-.6-.9-1-.2 1.7-2.1 1.2-3.5 1.5.2.3.4.7.5.9.8-.1 1.5-.2 2.7-.3-.8.9-1.2 1.3-1.6 1.7-3.2-.5-6.4-1.1-9.6-1.6-.1.2-.1.4-.2.9-.5-.7-.8-1.1-1.2-1.7-5.7 1.9-6.7 6.4-9.1 10.2-.4-.2-.7-.3-1.1-.4-.8 1.2-1.8 2.4-2.4 3.6-.5 1.1-.5 2.2-.7 3.4-.1.7-.3 1.3-.5 2l-.7-.1c.1-.6.2-1.2.2-1.9-2.6 1.2-3.2 3.4-4.4 5.2 1.1.2 2.1.5 3.3.7-1.4 1-2.5 1.8-3.6 2.6-.1-.1-.2-.1-.3-.2l2.3-2.3c-.2-.2-.5-.4-.7-.5-1 .7-2.2 1.2-3.1 2-1 1-1.8 2.2-2.6 3.3-1.4 1.8-3.1 3.4-5.6 4.4-.4.2-.8.5-1 .9-1.2 2.6-2.6 3.4-6.6 3.6-.2-.7-.4-1.4-.7-2.3-.7.4-1.1.6-1.6.9 1.6-1.8.7-3.2-.7-4.7-.9-1-2.1-2-1.4-3.5.1-.3-.5-.9-.7-1.1-1.5.4-2.6.7-3.7 1.1-.1-.2-.2-.4-.3-.5.5-.2 1-.4 1.8-.7-.2-.5-.1-1.5-.6-1.8-2.1-1-3.3.6-4.8 1.4l-.3-.3c.8-.6 1.5-1.2 2.3-1.9-.8.1-1.6.1-1.9.2-.9.8-1.5 1.3-2.4 2.1-.3-.8-.4-1.1-.5-1.4-.8.2-1.4.3-2.1.5-.8-.6-1.5-1.1-2.4-1.7.3-.3.6-.6.8-.9-.1-.1-.2-.2-.4-.3-.5.4-1 .8-1.6 1.3-.9-1.2.1-2 1-3h-2.7c.5-.8.8-1.5 1.3-2.3-1.3.6-2.5 1.1-3.7 1.6l-.3-.3c1.1-.9 2.3-1.8 3.5-2.7-1.8-.2-3.1-.4-4.5-.6v-1.3c.5.3.9.6 1.4.7.6.1 1.2 0 1.9 0-.1-.4-.1-.9-.2-1.3-.2-.8-.2-1.7-.7-2.2-.8-.9-.7-2.3-2.7-2.6-1-.1-2.1-.5-3.3-.8 1.3-.6 2.2-1.3 1.2-2.5-.4.2-.9.4-1.3.6-.1-.1-.1-.2-.1-.3.6-.3 1.3-.5 1.9-.8.9 1.1.1 2.6 2 3.2-.5-1.3-.8-2.7-1.5-3.9-.4-.6-1.5-.9-2.4-1.3l-.3.3c.1-.5.1-1 .2-1.6-1.3.5-2.5.9-3.7 1.4.3.3.5.5.8.7-.5.2-.9.4-1.4.7.3.2.6.4.8.5l-.4.4c-.8-.5-1.6-.9-2.4-1.4-.1-.1-.2-.3-.3-.4-1 .9-2 1.8-3.2 2.8.1 0-.4-.1-1-.4-.1.7-.2 1.3-.2 2.1-.5-.1-1-.2-1.3-.4-1.1-1-2-.6-2.7.3-1.1 1.4-2 2.9-3 4.4-.5-.2-1.3-.6-2.2-1 0 .2.1.3.1.5-1.2.6-2.4 1.3-3.7 1.7-1.2.4-1.8.7-1.1 1.7.2.2 0 .6 0 .9h-.5c-.1-.4-.3-.8-.4-1.5-.3.4-.5.7-.8 1-.7-.2-1.4-.5-2.2-.8.3-.3.6-.5.9-.9-.9-.3-1.8-.5-3.2-.9.3 1.4.5 2.4.7 3.5h-.3c-.5-.7-.9-1.3-1.4-2-.1.1-.1.3-.2.4-1.7-.2-3.4-.3-5.1-.5 0 .1-.1.2-.1.3.4.3.7.6 1.1 1l-.1.4c-1.2-.1-2.4-.2-4-.3-1.4.8.2 1.2 1.2 1.8-.5.2-1 .4-1.1.4-1-.7-1.8-1.3-2.9-2.1-.4 2.2-1 2.4-2.9 1.7-.3.4-.5.7-.8 1.1-1.4-.5-2.5-.7-2.7.9 0 .4-.5.8-.8 1.2 1.7 2.1 1.8 2.9.5 3.9-1-1-2-2.1-3-3.2-.1-.4-.2-.9-.4-1.4-.3-.8-.6-1.5-.9-2.2-.4-1-1-1.8-2.6-1.6-.5 0-1-.3-1.5-.5-1 .9-1.9 1.8-3.1 2.8-1.9-2.3-3-4.5-3.4-6.9-.2-1.4-1.8-1.7-3.5-1.6-2.2.2-3.5 1.3-5.2 1.9-.6.2-1.5 0-2.2 0-.4 0-.9.1-1.7.2-.4-1-1-2.2-1.4-3.3-.5-1.4-1.5-1.9-3.3-1.5-2.4.6-5.2.8-5.8 3.4-.7-.7-1.2-1.2-1.9-1.8-.4 2-1.7 1.2-2.9 1-1 .7-2 1.4-3.4 2.4-.5.1-1.9-1-2.7.5-2.9-1.7-3 1.3-4.9 1.9 2.8 1.9 1.4 4.5 2.5 6.9-.7 0-1.3.1-1.8.1.1.1.2.1.2.2-.6.5-1.3 1-2.2 1.7-.2-.8-.2-1.1-.3-1.4-.4.1-.8.1-1.1.2-.4.1-.7.1-1 .2-.7-.6-1.5-1.2-2.2-1.8.3-.3.6-.5.9-.8-.1-.1-.2-.2-.4-.3l-1.5 1.2c-.2 0-.3-.1-.5-.1.4-.9.7-1.8 1.2-2.9-.6-.1-1.4-.2-2.2-.2.4-.6.8-1.3 1.3-2-1.3.4-2.5.9-3.8 1.3l-.3-.3c1.2-.8 2.4-1.6 3.8-2.5-1.8-.3-3.1-.6-4.5-.8V250c.3.1.4.2.6.2.9.2 1.7.4 2.6.7-.1-.6-.2-1.3-.3-1.9-.1-.4-.4-.8-.6-1.2 0-.5 0-1-.1-1.5-.4-2-3-1.8-4.8-2.7 1.1-.6 2.2-1.2 1.1-2.4-.5.2-.9.4-1.3.6-.1-.1-.1-.2-.2-.3.7-.2 1.4-.4 2.2-.6.8 1.2-.1 2.6 1.7 3.3-.4-1.5-.7-2.9-1.4-4.3-.2-.5-1.4-.7-2.3-1.1 0-.2.1-.6.2-1.2-1.3.4-2.5.7-3.8 1.1.3.3.6.5.7.6l-1.4 1.4c-.4-.2-1.2-.7-2-1.2-.1-.2-.1-.3-.2-.5-1.1.8-2.1 1.6-3.1 2.4l.3.3c-.4-.2-.9-.3-1.5-.5-.1.7-.3 1.3-.4 2-.4-.1-.7-.1-.9-.2-1.3-1.5-2.5-.8-3.4.3-1.1 1.2-1.9 2.6-2.9 3.9-.6-.3-1.4-.7-2.4-1.3-.5 1.6-2 2.1-3.7 2.3-1.3.1-1.6.7-1.1 1.6.1.3 0 .6-.1 1h-.5c-.1-.4-.2-.8-.3-1.5-.4.4-.6.7-.8 1-.7-.3-1.3-.5-2.2-.9.4-.2.7-.4 1.2-.7-.9-.3-1.7-.6-2.5-.9-2.1.9.4 2.2-.6 3.4-.5-.8-.9-1.5-1.3-2.2-.1.1-.2.3-.2.4-1.7-.3-3.3-.5-5-.8-.1.1-.1.2-.2.4l1 1c0 .1-.1.3-.1.4-1.2-.2-2.4-.3-3.9-.5-1.4.7.1 1.2 1 1.9-.7.2-1.1.3-1.2.3-.9-.8-1.7-1.4-2.7-2.3-.7 2.2-1.1 2.3-3.1 1.6-.3.3-.6.6-.9 1-3.2-1.5-2.3 1.4-3.6 1.9 1.6 2.4 1.5 3.2-.1 4.2-.3-.7-.5-1.4-.9-2-.5-.6-1.3-.9-1.5-1.5 0-.5 0-.9-.1-1.4-.2-.9-.6-1.8-.9-2.7-.3-.9-.9-1.5-2.2-1.5-.6 0-1.1-.4-1.6-.5-1 .8-2 1.6-3.3 2.6-1.7-2.3-2.6-4.5-2.7-6.7-.1-1.7-1.6-2.5-3.7-1.9-.1 0-.4 0-.5-.1v5.7c-.1-1.8-.2-3-.3-3.2-1.1 1.2-3.1 1.6-2.9 3.4.1 1.2-.6 2.4-1 3.6-1.3-.3-2.2-.6-3.3-.8.1.6.2 1.1.3 1.5h-.4c-.9-1.8-2.5-2.2-4.9-2-1.7.1-3.5.3-4.9-1-.3-.3-1.3-.1-1.6-.1-.3 1.1-.5 2-.8 2.9-.2 0-.5 0-.7-.1 0-.5.1-.9.1-1.6-.7-.2-1.8-.7-2.4-.5-2.1.8-.9 2.4-1 3.6l-.5.1c-.2-.8-.5-1.5-.8-2.4-.4.6-.7 1.2-1.1 1.7.1 0 .2-.1.4-.1.3.7.5 1.4.9 2.4-1-.3-1.4-.4-1.8-.5-.6 2.3-2.3 2.3-4.8 1.5.2.4.4.9.7 1.4-.1.1-.3.2-.4.3-.9-.7-1.7-1.4-2.7-2.2-.4.4-.8 1-1.2 1.5-.5-.6-1-1.2-1.8-2.1v1.7c0 .6-.2 1.1-.3 1.7h-.4c-.3-1.2-.7-2.4-1.1-3.7-1.2 1-2.1 1.8-3.2 2.7-.4-.2-.9-.4-1.2-.6.9-.5 1.7-1.1 2.7-1.6-1.3-1.2-2.7-.8-4-.7-1.1-1.3-3.9-1.4-5-.2-.5-.3-.9-.8-1.5-1-.9-.3-1.8-.5-2.7-.7-1.5-.4-2.9-.4-3.5 1.1-.5-.3-1-.6-1.6-.9-.5.9.2 2.3-1.7 2.3-.2-.7-.5-1.4-.7-2.2-.6.3-1 .5-1.1.5-1.2-.4-2.1-.7-3.3-1 0 .6.1.8.1 1.2-3.6-.3-6.4 1-9.7 2.1-1.5-.7-2.3 1-3.5 1.4-3.5-.8-3.7-3.3-4.9-5.3-.5-.9-1.8-1.5-2.9-2-.6-.3-1.6 0-2.3.2-.2.1.1 1 .1 1.6-.1 0-.4.1-.5 0-1.6-.9-3.3-.7-4.9-.1-1.7.6-3.2 1.5-4.8 2.2-3.1 1.2-8.5 4.6-11.9 2.6-.2-.1-.5-.3-.7-.5v.2c-.5-.7-.8-1.1-.9-1.2v-.1c-.3-.4-.6-.9-.9-1.3-.9.1-1.7.1-2.4.2 0-.1-.1-.3-.1-.4l2.1-.3c-.4-.4-.8-.8-1.4-1-.9-.3-2.3.7-3.4.4-1.2-.3-1.9-2-3-2.6-1.5-.8-4.1-.1-5.2-.8-.9-.6-1-2.2-1.7-2.6-1.4-1-.7-1.1-2.8-1.7-2.4-.6-6.4.5-8.9.7v.3c.4.2 1 .4 1.2.7s0 .8 0 1.1c-.5 0-1.1.1-1.4-.1-.8-.5-1.4-1.2-2.2-1.7-.1-.1-.5.1-.6.1.6.8 1.1 1.5 1.7 2.2l-.2.2-2-1c-1.3.8-2.4 1.6-3.7 2.4-.1-.4-.1-.7-.2-1.1-.7.1-1.4.1-2.2.2 0-.1-.1-.3-.1-.4 1.2-.3 2.5-.5 3.7-.8.1.1.1.2.2.3.2-.4.3-.8.6-1.3-2.8.5-5.4 1.1-8 1.4-1.5.2-3.1 0-4.6-.2-.8-.2-1.5-.9-2-1.6.6.1 1.1.3 1.7.4.1-.1.2-.3.3-.4-1.2-.7-2.4-1.3-3.5-2 .2-.1.4-.3.6-.4.4-.5.8-.9 1.4-1.6-1-.1-1.7-.2-2.3-.3.3-.5 1.1-1.4.8-1.6-.6-.6-1.7-.8-2.7-1.3l1-1c-3.8.3-7.4 0-10.6 1.8-2.1-1.6-4.1.3-6.8 0 1.2.8 2.1 1.4 2.9 1.9-3.5-.6-3.8-.9-3.6-2.1-1.8.3-2.8.7-4.6 1m122 30.5c-1.6.7-2.9 1.7-4.3 2.6-.3.2-.6.4-.8.4-2.1 0-4 .3-5.9.8h-3.5c6.3-2 12.6-4 19-6 .6-.2 1.3-.2 2-.4 0 .1.1.3.1.4-2.3.7-4.6 1.3-6.6 2.2zm930.1-21.6c.1-.4 0-1.3.4-1.4 1.2-.4 2.5-.4 3.7-.5.1 0 .2.7.3.9-1.5.3-2.8.6-4.4 1zm91.6 21.6c-1.6.7-2.9 1.7-4.3 2.6-.3.2-.6.4-.8.4-2.1 0-4 .3-5.9.8h-3.5c6.3-2 12.6-4 19-6 .6-.2 1.3-.2 2-.4 0 .1.1.3.1.4-2.3.7-4.5 1.3-6.6 2.2zm14.2-17h4c-.7.2-1.3.5-2 .7 1.1.9 2.2 1.8 3.2 2.6-2.6.1-2.6.1-5.2-3.3zm27.3-1.5c-1.9-1.7-1.9-1.8-.5-2.5.3.5.6 1.1 1.1 1.9 0 .1-.3.3-.6.6zm233.1-11.9h4c-.7.2-1.3.5-2 .7 1.1.9 2.2 1.8 3.2 2.6-2.6.1-2.6.1-5.2-3.3zm26.9-1.1c-1.9-1.7-1.9-1.8-.5-2.5.3.5.6 1.1 1.1 1.9 0 .1-.3.3-.6.6zm8.8-.5c-.2-.4-.4-.9-.6-1.4-.9-.1-1.6-.4-2.2-.8 2.7-.3 3.5.3 2.8 2.2zm3.9-.1h-2.4c-.8-1.3-.8-1.5 1-1.5-.4.2-.6.4-.7.6.8.2 1.5.4 2.2.6 0 .1-.1.2-.1.3zm64 9.3c-1.5-.5-2.9-.9-4.2-1.4 0-.1.1-.2.1-.3 1.3.2 2.6.4 4.1.6v1.1zm32.2 1c-.6-.2-1.1-.4-2.1-.9 1.4-.2 2.3-.4 3.3-.6.1.1.1.2.2.3-.5.5-.9.8-1.4 1.2zm65-20.2v-.2c1.3-.1 2.5-.3 4.2-.5 0 0 .2.4.3.7h-4.5zm18.5-1.4c.9-.4 1.9-.8 3.5-1.4-.3 1-.3 2-.7 2.1-.8.2-1.9 0-2.8-.1v-.6zm5.3 3.4c-1.6-.2-2.9-.5-4.1-.7v-.5c1.3-.4 2.6-.7 4.1-1.1v2.3zm9.9.6c-.7-.9-1.1-1.3-1.2-1.5.4-.7.6-1.2 1-1.9-2 .1-3.6.2-5.1.3 0-.2-.1-.4-.1-.5 2-.3 3.9-.6 6.2-.9-.3 1.7-.5 2.9-.8 4.5zm8.8-3.2h.1-.1zm0 0c-.6-.2-1.1-.4-1.5-.5-.3-.2-.6-.3-.9-.3-.1-.2-.3-.4-.4-.5 1-.2 2.3.1 3 1-.1.1-.1.2-.2.3zm27.8 8c.1-.4 0-1.3.4-1.4 1.2-.4 2.5-.4 3.7-.5.1 0 .2.7.3.9-1.6.3-2.9.6-4.4 1zm91.6 21.6c-1.6.7-2.9 1.7-4.3 2.6-.3.2-.6.4-.8.4-5 0-9.1 1.8-13.3 3.5-3.4 1.3-6.7 2.9-10.7 3.1l-.3-.3c1.5-.6 3-1.2 4.5-1.9l.3.3c.1-.5.2-.9.2-1.2.8-.1 1.4 0 2-.2 8.9-2.8 17.8-5.6 26.8-8.5.6-.2 1.3-.2 2-.4 0 .1.1.3.1.4-2.2.7-4.5 1.3-6.5 2.2zm14.8-17.3h4c-.7.2-1.3.5-2 .7 1.1.9 2.2 1.8 3.2 2.6-2.6.1-2.6.1-5.2-3.3zm26.7-1.2c-1.9-1.7-1.9-1.8-.5-2.5.3.5.6 1.1 1.1 1.9 0 .1-.3.3-.6.6zm12.8-.9h-2.4c-.8-1.4-.8-1.5 1.3-1.5-.5.3-.7.5-.9.7.8.2 1.5.4 2.2.6-.2 0-.2.1-.2.2zm64.5-6.3c-.4-.1-1.2-.1-1.3-.3-.4-.6-.6-1.4-.8-2.1.2-.1.5-.2.7-.2.6.5 1.3 1 1.7 1.5.1.2-.2.7-.3 1.1z'/%3E%3C/g%3E%3C/svg%3E");
	-webkit-mask-size: 1016px 100%;
	mask-size: 1016px 100%;
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
	-webkit-mask-position: left bottom;
	mask-position: left bottom;
}

/* Top edge only. Defaults to the purple used by the homepage tools
   section. Set --dai-torn-color to tear in a different colour. */
.dai-torn-top.dai-torn-top::after {
	top: 0;
	transform: scale(1, -1);
	background-color: var(--dai-torn-color, #886CAE);
}

/* CTA band: the page background tears into it from both sides. Override
   --dai-torn-color when a band sits on something other than the page
   background. */
.dai-cta-band.dai-cta-band::before {
	top: 0;
	transform: scale(1, -1);
	background-color: var(--dai-torn-color, #FFFEFC);
}

.dai-cta-band.dai-cta-band::after {
	bottom: 0;
	background-color: var(--dai-torn-color, #FFFEFC);
}

/* Layered drop shadow on the band headline, copied from the live site. */
.dai-cta-band .elementor-heading-title {
	text-shadow:
		#c8c8c8 1px 1px 0,
		#b4b4b4 0 2px 0,
		#a0a0a0 0 3px 0,
		rgba(140, 140, 140, .5) 0 4px 0,
		#787878 0 0 0,
		rgba(0, 0, 0, .5) 0 5px 10px;
}

/* Client logo wall. The live site uses two size tiers, so the short wide
   logos carry .dai-logo-wide, and the one with a transparent background
   sits on a white card so it stays readable on the gradient. */
.dai-logo-wall {
	direction: ltr;
}

.dai-logo-wall .elementor-widget-image {
	width: auto;
}

.dai-logo-wall .elementor-widget-image img {
	display: block;
	width: auto;
	height: 144px;
	max-width: none;
	object-fit: contain;
}

.dai-logo-wall .dai-logo-wide img {
	height: 83px;
}

.dai-logo-wall .dai-logo-card {
	padding: 11px 13px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

.dai-logo-wall .dai-logo-card img {
	height: 96px;
}

/* A short wide logo that also needs a card belongs to the wide tier. Without
   this it would take the card height above on source order and run several
   hundred pixels wide. */
.dai-logo-wall .dai-logo-card.dai-logo-wide img {
	height: 83px;
}

/* Compact variant for the three product pages. Their wall carries six logos
   rather than the about-us eight, but two of them are far wider, so at the
   default tiers the row measured 1316px against 1220px of container and the
   last logo dropped onto a line of its own. Trimming each tier by roughly a
   tenth and capping the widest logo puts all six on one desktop row with
   about 50px to spare, at the same visual scale as about-us. */
.dai-logo-wall--compact .elementor-widget-image img {
	height: 132px;
	max-width: 230px;
}

.dai-logo-wall--compact .dai-logo-wide img,
.dai-logo-wall--compact .dai-logo-card.dai-logo-wide img {
	height: 76px;
}

.dai-logo-wall--compact .dai-logo-card img {
	height: 88px;
}

/* MSD and 4TE ship with their white background baked into the file rather
   than sitting on a .dai-logo-card, so they rendered as hard cornered white
   rectangles next to the rounded cards. Rounding the image itself squares
   them up with the cards. The same radius is a no-op on the transparent
   logos, so it can go on every image in the wall. */
.dai-logo-wall--compact .elementor-widget-image img {
	border-radius: 10px;
}

@media (max-width: 767px) {
	.dai-logo-wall .elementor-widget-image img {
		height: 88px;
	}

	.dai-logo-wall .dai-logo-wide img {
		height: 52px;
	}

	.dai-logo-wall .dai-logo-card img {
		height: 60px;
	}

	/* Below the phone breakpoint the wall wraps anyway, so the compact tiers
	   would only make the logos needlessly small. Hand back to the shared
	   mobile sizes above. */
	.dai-logo-wall--compact .elementor-widget-image img {
		height: 88px;
		max-width: 100%;
	}

	.dai-logo-wall--compact .dai-logo-wide img,
	.dai-logo-wall--compact .dai-logo-card.dai-logo-wide img {
		height: 52px;
	}

	.dai-logo-wall--compact .dai-logo-card img {
		height: 60px;
	}
}

/* Card media. The tool cards on the solutions and language model pages take
   their photos from stock of every aspect ratio, which pushed each card's
   coloured heading bar to a different height. Pinning one ratio lines the
   bars up across the row. Ratio and cropping only, every other image control
   stays with Elementor. */
.dai-card-media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* LinkedIn link on the about page. It sat under the contact button as plain
   body copy, so it read as a sentence rather than somewhere to click. */
.dai-linkedin-link a {
	display: inline-block;
	padding: 9px 26px;
	border: 2px solid #0A66C2;
	border-radius: 999px;
	color: #0A66C2;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}

.dai-linkedin-link a:hover,
.dai-linkedin-link a:focus {
	background: #0A66C2;
	color: #fff;
}

/* Homepage hero. The live site paints a four stop gradient behind the hero
   artwork, which is a transparent PNG, so the gradient reads through it.
   Elementor gradients only take two stops, so the gradient lives here and
   the artwork is set as the container's Background Overlay. */
.dai-hero-bg {
	background-image: linear-gradient(90deg, #595BA7 0%, #886CEA 36%, #5CC2EF 66.7%, #A5D9D0 100%);
}

/* Curved bottom edge on the hero, arcing up in the middle. */
.dai-hero-curve {
	position: relative;
}

.dai-hero-curve.dai-hero-curve::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 100px;
	z-index: 2;
	pointer-events: none;
	background-color: var(--color-bg);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 91 1920 209' width='100%25' height='100%25'%3E%3Cpath fill='%23000' d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 91 1920 209' width='100%25' height='100%25'%3E%3Cpath fill='%23000' d='M1920 291C1656.8 169.2 1323.3 91 960 91S262.5 169.2 0 291v9h1920v-9z'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

@media (max-width: 767px) {
	.dai-hero-curve.dai-hero-curve::after {
		height: 56px;
	}
}

/* The hero headline runs at 64px, where the shared gradient-text drop
   shadow reads far heavier than it does at body headline sizes. */
.dai-hero-bg .dai-gradient-text {
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .3));
}

/* Section headings on the chatbot and assistant product pages. The live
   site centres these in purple, unlike the dark article pages (Manus,
   Claude, ChatGPT) which keep white start-aligned headings, so this is
   scoped to the three pages rather than applied to .dai-prose everywhere. */
.page-id-1555 .dai-prose h2,
.page-id-1557 .dai-prose h2,
.page-id-1558 .dai-prose h2 {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 400;
	color: #886CAE;
	text-align: center;
}

/* "למה אנחנו כאן?" media grid: two staggered columns, each a photo and a
   stat card, at the live site's tile sizes. */
.dai-why-media .dai-why-tile img {
	width: 231px;
	height: 294px;
	max-width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

/* Founder portrait on the about page: circular, thick white ring and a soft
   drop shadow, matching the live site. Doubled class so it outranks
   Elementor's own "img { border-radius: 0 }", which loads later. */
.dai-founder-photo.dai-founder-photo img {
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid #fff;
	box-shadow: 0 0 14px rgba(0, 0, 0, .2);
}
