/* ===== CRYPTCADE horror theme (complements Tailwind) ===== */

:root { --gore: #b91c1c; --blood: #8b0000; }

html, body { background: #070506; }

/* vignette + red bleed at edges */
.vignette {
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 90%, rgba(0,0,0,0.9) 100%),
    radial-gradient(80% 60% at 50% 120%, rgba(139,0,0,0.18), transparent 70%);
}

/* film grain */
.noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  animation: grain 0.6s steps(3) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 33%{transform:translate(-3px,2px)} 66%{transform:translate(2px,-3px)} 100%{transform:translate(0,0)} }

/* whole-screen flicker */
.flicker { background: rgba(139,0,0,0.02); animation: flick 4s infinite steps(60); }
@keyframes flick { 0%,96%,100%{opacity:0} 97%{opacity:0.7} 98%{opacity:0.1} 99%{opacity:0.5} }

/* blood-gradient title (horizontal red sheen — no top/bottom split => no flag look) */
.title-blood {
  background: linear-gradient(100deg, #7f1d1d 0%, #ef4444 34%, #dc2626 56%, #8b1414 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
/* glitchy title — red chromatic aberration (was cyan/red = Polish-flag look) */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; inset: 0; pointer-events: none;
}
.glitch::before { color:#ff4d4d; -webkit-text-fill-color:#ff4d4d; mix-blend-mode:screen; opacity:.75; animation: gl1 2.6s infinite steps(2); clip-path: inset(0 0 55% 0); }
.glitch::after  { color:#6f0b0b; -webkit-text-fill-color:#6f0b0b; mix-blend-mode:screen; animation: gl2 3.1s infinite steps(2); clip-path: inset(55% 0 0 0); }
@keyframes gl1 { 0%,92%,100%{transform:translate(0,0)} 93%{transform:translate(-3px,-1px)} 96%{transform:translate(2px,1px)} }
@keyframes gl2 { 0%,90%,100%{transform:translate(0,0)} 91%{transform:translate(3px,1px)} 95%{transform:translate(-2px,-1px)} }

/* ===== CRT ===== */
.crt-bezel {
  padding: 18px;
  background:
    linear-gradient(160deg, #1a1516, #0a0708 60%, #050303);
  box-shadow:
    0 0 0 2px #2a1f20,
    0 0 40px rgba(139,0,0,0.35),
    0 30px 80px rgba(0,0,0,0.8),
    inset 0 0 60px rgba(0,0,0,0.9);
}
.crt-screen {
  box-shadow: inset 0 0 120px rgba(0,0,0,0.95), inset 0 0 30px rgba(139,0,0,0.25);
}
.crt-glow { background: radial-gradient(70% 55% at 50% 45%, rgba(185,28,28,0.10), transparent 70%); }
.scanlines {
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,0.35) 2px 3px);
  mix-blend-mode: multiply; opacity: 0.6;
}

/* idle static */
.static-bg {
  background-color: #050303;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)' opacity='0.35'/%3E%3C/svg%3E");
  animation: grain 0.4s steps(4) infinite;
}
.no-signal { animation: blink 1.4s steps(2) infinite; text-shadow: 0 0 20px rgba(185,28,28,0.7); }
@keyframes blink { 0%,60%{opacity:1} 61%,100%{opacity:0.25} }

/* platform headstones */
.headstone {
  position: relative;
  background: linear-gradient(180deg, #14100f, #0b0808);
  border: 1px solid rgba(127,29,29,0.4);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.headstone:hover { transform: translateY(-3px); border-color: var(--gore); box-shadow: 0 0 22px rgba(185,28,28,0.35); }
.headstone.selected { border-color: var(--gore); box-shadow: 0 0 26px rgba(185,28,28,0.55) inset, 0 0 18px rgba(185,28,28,0.4); }
.headstone .rip { position:absolute; top:6px; right:8px; font-size:10px; letter-spacing:2px; color:#7f1d1d; }
.headstone .tombtag {
  display:inline-block; min-width:3.2rem; text-align:center;
  padding:2px 8px; border:1px solid rgba(127,29,29,0.55); border-radius:4px;
  background: linear-gradient(180deg, rgba(139,0,0,0.18), rgba(0,0,0,0.4));
  text-shadow: 0 0 12px rgba(185,28,28,0.8);
}

/* drag-over highlight */
body.dragging #slot { border-color: var(--gore); background: rgba(185,28,28,0.10); box-shadow: 0 0 30px rgba(185,28,28,0.3) inset; }

/* ===== BIOS / firmware — badges, chips, panel ===== */
.bios-need {
  display: inline-block; font-family: 'VT323', monospace; font-size: 11px; letter-spacing: .06em;
  padding: 2px 7px; border-radius: 3px; border: 1px solid rgba(185,28,28,.55);
  color: #f59e9e; background: rgba(139,0,0,.16);
}
.bios-need.bios-need--ready  { border-color: rgba(63,98,18,.7); color: #a3d977; background: rgba(63,98,18,.14); }
.bios-need.bios-need--missing{ border-color: rgba(185,28,28,.8); color: #ff8a8a; background: rgba(139,0,0,.28); animation: needPulse 2.4s ease infinite; }
@keyframes needPulse { 0%,100%{ box-shadow: 0 0 0 rgba(185,28,28,0);} 50%{ box-shadow: 0 0 10px rgba(185,28,28,.5);} }

.bios-chip {
  display: inline-flex; align-items: center; font-family: 'VT323', monospace; font-size: 13px; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 4px; border: 1px solid transparent;
}
.bios-chip.chip-none    { color: #9ca39c; border-color: rgba(168,162,158,.3); background: rgba(255,255,255,.02); }
.bios-chip.chip-ready   { color: #a3d977; border-color: rgba(63,98,18,.6);   background: rgba(63,98,18,.14); }
.bios-chip.chip-missing { color: #ff8a8a; border-color: rgba(185,28,28,.7); background: rgba(139,0,0,.22); }
.bios-chip.chip-unknown { color: #d6b26b; border-color: rgba(214,178,107,.4); background: rgba(214,178,107,.08); }

.bios-btn {
  display: inline-block; font-family: 'VT323', monospace; font-size: 14px; letter-spacing: .03em;
  padding: 6px 12px; border-radius: 5px; border: 1px solid rgba(127,29,29,.55);
  color: #a8a29e; background: linear-gradient(180deg, rgba(139,0,0,.10), rgba(0,0,0,.25));
  cursor: pointer; transition: color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.bios-btn:hover { color: #e7e5e4; border-color: var(--gore); box-shadow: 0 0 14px rgba(185,28,28,.3); }
.bios-btn.bios-btn--main { color: #b91c1c; border-color: rgba(185,28,28,.7); font-family: 'Nosifer', cursive; font-size: 15px; }
.bios-btn.bios-btn--main:hover { color: #ff4d4d; box-shadow: 0 0 18px rgba(185,28,28,.5); }

.bios-row {
  border: 1px solid rgba(127,29,29,.3); border-radius: 10px; padding: 12px 14px;
  background: linear-gradient(180deg, #120e0e, #0a0707);
}
.bios-row-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bios-row-files { margin-top: 6px; line-height: 1.5; }
.bios-row-actions { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }

/* console dossier — appears when a headstone is opened */
.console-dossier {
  border: 1px solid rgba(185,28,28,.5);
  background: linear-gradient(180deg, rgba(20,14,13,.9), rgba(8,5,5,.95));
  box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 0 40px rgba(185,28,28,.15), inset 0 0 40px rgba(0,0,0,.5);
  animation: dossierIn .25s ease;
}
@keyframes dossierIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== boot splash (CRT power-on) ===== */
#boot-splash {
  position: fixed; inset: 0; z-index: 100; background: #000;
  display: grid; place-items: center; overflow: hidden;
  animation: bootOut .55s ease 2.05s forwards;
}
#boot-splash.done { display: none; }
/* CRT gun warmup: a bright line draws horizontally, then the screen "opens" */
.boot-line {
  position: absolute; left: 8%; right: 8%; height: 3px; background: #fff;
  box-shadow: 0 0 18px 4px rgba(255,255,255,.9), 0 0 46px 12px rgba(185,28,28,.6);
  transform: scaleX(0); transform-origin: center;
  animation: bootLine 1.05s ease forwards;
}
@keyframes bootLine {
  0% { transform: scaleX(0); opacity: 1; height: 3px; }
  40% { transform: scaleX(1); opacity: 1; height: 3px; }
  70% { opacity: .7; height: 3px; }
  100% { transform: scaleX(1); opacity: 0; height: 62vh; }
}
.boot-glow {
  position: absolute; width: 62vw; height: 62vw; max-width: 720px; max-height: 720px;
  border-radius: 50%; background: radial-gradient(circle, rgba(185,28,28,.34), transparent 62%);
  opacity: 0; animation: bootGlow 1.9s ease .5s forwards;
}
@keyframes bootGlow { 0%{opacity:0;transform:scale(.6)} 45%{opacity:1;transform:scale(1)} 100%{opacity:.5;transform:scale(1.05)} }
.boot-logo {
  position: relative; font-size: clamp(3rem, 12vw, 8rem); letter-spacing: .14em;
  color: var(--gore); text-shadow: 0 0 26px rgba(185,28,28,.75);
  opacity: 0; animation: bootLogo 1.7s steps(1) .5s forwards;
}
.boot-logo::before, .boot-logo::after {
  content: attr(data-text); position: absolute; inset: 0; pointer-events: none; opacity: .9;
}
.boot-logo::before { color: #ff4d4d; mix-blend-mode: screen; animation: bootGl1 .5s steps(2) .55s 3; clip-path: inset(0 0 60% 0); }
.boot-logo::after  { color: #6f0b0b; mix-blend-mode: screen; animation: bootGl2 .5s steps(2) .55s 3; clip-path: inset(60% 0 0 0); }
@keyframes bootLogo {
  0% { opacity: 0; clip-path: inset(0 0 100% 0); }
  10% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(-6px); }
  13% { transform: translateX(6px); } 16% { transform: translateX(0); }
  30% { opacity: .35; } 33% { opacity: 1; } 60% { opacity: .8; } 63% { opacity: 1; } 100% { opacity: 1; }
}
@keyframes bootGl1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-4px,-1px)} }
@keyframes bootGl2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(4px,1px)} }
.boot-sub {
  position: absolute; bottom: 15%; color: var(--gore); opacity: 0; font-size: 1.05rem; letter-spacing: .12em;
  text-shadow: 0 0 12px rgba(185,28,28,.6); animation: bootSub 1.1s ease 1.05s forwards;
}
@keyframes bootSub { 0%{opacity:0} 60%{opacity:.9} 100%{opacity:.7} }
@keyframes bootOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .noise, .flicker, .static-bg, .glitch::before, .glitch::after, .no-signal, body::after { animation: none; }
  #boot-splash { animation: bootOut .3s ease .2s forwards; }
  .boot-line, .boot-glow, .boot-logo, .boot-logo::before, .boot-logo::after, .boot-sub { animation: none; opacity: 1; }
  .boot-logo { clip-path: none; }
}

/* ===== web-only top nav (browser build) ===== */
/* the desktop app sets html.is-desktop and hides anything web-only */
html.is-desktop .web-only { display: none !important; }
/* fixed nav needs the page pushed down; only in the browser build */
html:not(.is-desktop) body { padding-top: 3.15rem; }

.cc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 55;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .5rem clamp(.75rem, 3vw, 1.5rem);
  background: linear-gradient(180deg, rgba(13,10,11,0.96), rgba(7,5,6,0.88));
  border-bottom: 1px solid rgba(139,0,0,0.5);
  box-shadow: 0 2px 24px rgba(139,0,0,0.25);
  backdrop-filter: blur(6px);
}
.cc-nav-brand {
  font-size: 1.85rem; line-height: 1; letter-spacing: .12em;
  color: var(--gore); text-decoration: none; white-space: nowrap;
  text-shadow: 0 0 14px rgba(185,28,28,0.55);
}
.cc-nav-brand:hover { color: #ff4d4d; }
.cc-nav-links { display: flex; align-items: center; gap: clamp(.6rem, 2.5vw, 1.4rem); }
.cc-nav-links a {
  color: #a8a29e; text-decoration: none; font-size: 1.25rem;
  letter-spacing: .06em; transition: color .15s, text-shadow .15s;
}
.cc-nav-links a:hover { color: var(--gore); text-shadow: 0 0 10px rgba(185,28,28,0.5); }
.cc-nav-dl {
  color: #e7e5e4 !important; border: 1px solid rgba(139,0,0,0.6);
  border-radius: .375rem; padding: .25rem .7rem; white-space: nowrap;
}
.cc-nav-dl:hover { border-color: var(--gore); background: rgba(185,28,28,0.12); color: #ff4d4d !important; }

@media (max-width: 480px) {
  .cc-nav-brand { font-size: 1.45rem; }
  .cc-nav-links a { font-size: 1.05rem; }
  .cc-nav-dl { padding: .2rem .5rem; }
}

/* ===== docs page ===== */
.doc-wrap { max-width: 60rem; margin: 0 auto; padding: 1.5rem clamp(1rem, 4vw, 2rem) 6rem; font-size: 1.2rem; line-height: 1.6; }
.doc-wrap .text-sm { font-size: 1rem !important; }
.doc-table { width: 100%; border-collapse: collapse; font-size: 1.1rem; }
.doc-table th, .doc-table td { border: 1px solid rgba(127,29,29,0.35); padding: .55rem .7rem; text-align: left; vertical-align: top; }
.doc-table th { color: var(--gore); font-family: 'Creepster', cursive; letter-spacing: .05em; font-weight: 400; }
.doc-table tr:nth-child(even) td { background: rgba(139,0,0,0.05); }
.doc-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: .5rem; }
.doc-badge { display: inline-block; font-size: .72rem; padding: .05rem .4rem; border-radius: .25rem; border: 1px solid; }
.doc-badge.need { color: #fca5a5; border-color: rgba(185,28,28,0.6); }
.doc-badge.free { color: #a3b18a; border-color: rgba(63,98,18,0.6); }

/* ===== footer (legal) ===== */
.cc-foot-links { margin-top: .75rem; }
.cc-foot-links a { color: #a8a29e; text-decoration: none; transition: color .15s; }
.cc-foot-links a:hover { color: var(--gore); text-shadow: 0 0 10px rgba(185,28,28,0.45); }
.cc-foot-fine { margin-top: .6rem; font-size: .95rem; color: rgba(168,162,158,0.35); max-width: 46rem; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* nav shrinks on small phones: the brand already links home, so the redundant
   "emulator" link goes first, then the download label shortens. */
.cc-nav-links .dl-mini { display: none; }
@media (max-width: 480px) {
  .cc-nav-links a[href="/"] { display: none; }
}
@media (max-width: 380px) {
  .cc-nav-links .dl-full { display: none; }
  .cc-nav-links .dl-mini { display: inline; }
}

/* doc/legal page titles: fluid so long words ("documentation") never overflow
   a narrow phone — Creepster at a fixed 48px blew past 320px viewports. */
.doc-title {
  font-size: clamp(2.1rem, 11vw, 3.75rem);
  letter-spacing: .08em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

/* BIOS "open folder" only makes sense with a real filesystem (desktop app);
   the web build stores BIOS files in the browser (IndexedDB), no folder to open. */
html:not(.is-desktop) .bios-btn--desktop-only { display: none; }

/* BIOS remove — destructive, so it reads colder than "+ add file" */
.bios-btn.bios-btn--remove { color: #8a8483; border-color: rgba(127,29,29,.35); }
.bios-btn.bios-btn--remove:hover { color: #ff8a8a; border-color: rgba(185,28,28,.8); box-shadow: 0 0 14px rgba(185,28,28,.25); }

/* ===== crypt wall backdrop =====
   Masonry tile (inline SVG — no extra request, works offline in the app) under
   large non-tiling mould/damp blooms. The tile is 352x304 with sparse, scattered
   damage and the blooms sit on top: both are there to stop it reading as
   wallpaper. Sits behind the content (z-0; main is z-10). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #0a0708;
  background-image:
    /* scrim: the masonry has to read as backdrop, not compete with the text on top */
    linear-gradient(rgba(7,5,6,.56), rgba(7,5,6,.56)),
    /* moon: cold light falling from above onto the top of the wall */
    radial-gradient(46% 34% at 50% -6%, rgba(176,198,220,.16), transparent 72%),
    linear-gradient(rgba(120,150,180,.05), transparent 45%),
    radial-gradient(55% 40% at 10% 15%, rgba(63,98,18,.17), transparent 70%),
    radial-gradient(40% 32% at 84% 58%, rgba(63,98,18,.13), transparent 72%),
    radial-gradient(30% 26% at 22% 78%, rgba(63,98,18,.1), transparent 70%),
    radial-gradient(35% 30% at 68% 12%, rgba(139,0,0,.09), transparent 70%),
    radial-gradient(70% 55% at 50% 105%, rgba(0,0,0,.6), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='352' height='304' viewBox='0 0 352 304'%3E%3Cdefs%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' seed='11'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='352' height='304' fill='%23100b0c'/%3E%3Crect x='0' y='0' width='84' height='34' rx='1.5' fill='%23221a1c'/%3E%3Crect x='0' y='0' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='0' y='33' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='88' y='0' width='84' height='34' rx='1.5' fill='%23211a1b'/%3E%3Crect x='88' y='0' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='88' y='33' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='176' y='0' width='84' height='34' rx='1.5' fill='%23211a1b'/%3E%3Crect x='176' y='0' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='176' y='33' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='195.76272226300216' y='4.395900251528202' width='11.158317089620194' height='10.748018088167541' rx='3' fill='rgba(0,0,0,.28)'/%3E%3Crect x='264' y='0' width='84' height='34' rx='1.5' fill='%231d1618'/%3E%3Crect x='264' y='0' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='264' y='33' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='-42' y='38' width='84' height='34' rx='1.5' fill='%231d1618'/%3E%3Crect x='-42' y='38' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='-42' y='71' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='46' y='38' width='84' height='34' rx='1.5' fill='%231d1618'/%3E%3Crect x='46' y='38' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='46' y='71' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='134' y='38' width='84' height='34' rx='1.5' fill='%231f1a1c'/%3E%3Crect x='134' y='38' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='134' y='71' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M193.34553828246217 72 l13.517319682760778 3.3508423573108588 l-5.9835621127782215 6.9015539898078675 l-5.603424549383774 -2.8566465083773465 Z' fill='%230e090a'/%3E%3Crect x='222' y='38' width='84' height='34' rx='1.5' fill='%231c1517'/%3E%3Crect x='222' y='38' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='222' y='71' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='310' y='38' width='84' height='34' rx='1.5' fill='%23261d20'/%3E%3Crect x='310' y='38' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='310' y='71' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M346.4896046055898 72 l8.795038224568142 2.6496703627750606 l-6.021891028630496 5.67012107450055 l-7.4652524005925525 -3.169959903308172 Z' fill='%230e090a'/%3E%3Crect x='0' y='76' width='84' height='34' rx='1.5' fill='%231f1a1c'/%3E%3Crect x='0' y='76' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='0' y='109' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='88' y='76' width='84' height='34' rx='1.5' fill='%23261d20'/%3E%3Crect x='88' y='76' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='88' y='109' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='116.77100588230928' y='89.64796353022007' width='12.583781243573773' height='10.885058703313144' rx='3' fill='rgba(0,0,0,.28)'/%3E%3Crect x='176' y='76' width='84' height='34' rx='1.5' fill='%231c1517'/%3E%3Crect x='176' y='76' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='176' y='109' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='264' y='76' width='84' height='34' rx='1.5' fill='%231d1618'/%3E%3Crect x='264' y='76' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='264' y='109' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='-42' y='114' width='84' height='34' rx='1.5' fill='%231a1416'/%3E%3Crect x='-42' y='114' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='-42' y='147' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='46' y='114' width='84' height='34' rx='1.5' fill='%23211a1b'/%3E%3Crect x='46' y='114' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='46' y='147' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M64.3279978084974 114 l6.723906040528745 4.73716810473109 l-7.819998504510149 6.18473076922108 l-8.91120052519776 -4.848448039427608 Z' fill='%230e090a'/%3E%3Crect x='134' y='114' width='84' height='34' rx='1.5' fill='%23241c1f'/%3E%3Crect x='134' y='114' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='134' y='147' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M209.7162674831768 114 l11.830656054350854 2.499347925418684 l-5.670102030816535 4.511997580766677 l-7.0214220294828635 -2.8058485988554773 Z' fill='%230e090a'/%3E%3Crect x='222' y='114' width='84' height='34' rx='1.5' fill='%23241c1f'/%3E%3Crect x='222' y='114' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='222' y='147' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='310' y='114' width='84' height='34' rx='1.5' fill='%231a1416'/%3E%3Crect x='310' y='114' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='310' y='147' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='0' y='152' width='84' height='34' rx='1.5' fill='%231f1a1c'/%3E%3Crect x='0' y='152' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='0' y='185' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='88' y='152' width='84' height='34' rx='1.5' fill='%23211a1b'/%3E%3Crect x='88' y='152' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='88' y='185' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='176' y='152' width='84' height='34' rx='1.5' fill='%23211a1b'/%3E%3Crect x='176' y='152' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='176' y='185' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M239.86231436946537 186 l8.401657105610546 3.5261497504665282 l-4.014238357550576 6.768119892928805 l-6.883044243735748 -2.7532150748899276 Z' fill='%230e090a'/%3E%3Crect x='264' y='152' width='84' height='34' rx='1.5' fill='%231c1517'/%3E%3Crect x='264' y='152' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='264' y='185' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='-42' y='190' width='84' height='34' rx='1.5' fill='%231f1a1c'/%3E%3Crect x='-42' y='190' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='-42' y='223' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M-14.33660637416719 190 l8.510490418649507 2.0435590744221392 l-8.434256686099925 4.645521164241024 l-8.171234251545386 -2.312702298309981 Z' fill='%230e090a'/%3E%3Crect x='46' y='190' width='84' height='34' rx='1.5' fill='%231a1416'/%3E%3Crect x='46' y='190' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='46' y='223' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='134' y='190' width='84' height='34' rx='1.5' fill='%231d1618'/%3E%3Crect x='134' y='190' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='134' y='223' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='222' y='190' width='84' height='34' rx='1.5' fill='%23221a1c'/%3E%3Crect x='222' y='190' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='222' y='223' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='310' y='190' width='84' height='34' rx='1.5' fill='%23241c1f'/%3E%3Crect x='310' y='190' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='310' y='223' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='0' y='228' width='84' height='34' rx='1.5' fill='%23241c1f'/%3E%3Crect x='0' y='228' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='0' y='261' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M55.901857040776804 228 l10.403997661734 3.6518033750596475 l-4.453312993260712 6.152119130898322 l-7.528759003863092 -3.7958898552674287 Z' fill='%230e090a'/%3E%3Crect x='88' y='228' width='84' height='34' rx='1.5' fill='%231d1618'/%3E%3Crect x='88' y='228' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='88' y='261' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Cpath d='M102.01861357969167 228 l8.840556146037093 2.739036202774866 l-5.648713947110211 6.65983259801745 l-7.257916928389071 -4.4455047857228225 Z' fill='%230e090a'/%3E%3Crect x='176' y='228' width='84' height='34' rx='1.5' fill='%231f1a1c'/%3E%3Crect x='176' y='228' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='176' y='261' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='264' y='228' width='84' height='34' rx='1.5' fill='%231a1416'/%3E%3Crect x='264' y='228' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='264' y='261' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='-42' y='266' width='84' height='34' rx='1.5' fill='%231c1517'/%3E%3Crect x='-42' y='266' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='-42' y='299' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='46' y='266' width='84' height='34' rx='1.5' fill='%231c1517'/%3E%3Crect x='46' y='266' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='46' y='299' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='134' y='266' width='84' height='34' rx='1.5' fill='%231c1517'/%3E%3Crect x='134' y='266' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='134' y='299' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='222' y='266' width='84' height='34' rx='1.5' fill='%231a1416'/%3E%3Crect x='222' y='266' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='222' y='299' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='310' y='266' width='84' height='34' rx='1.5' fill='%23261d20'/%3E%3Crect x='310' y='266' width='84' height='1' fill='rgba(255,255,255,.04)'/%3E%3Crect x='310' y='299' width='84' height='1' fill='rgba(0,0,0,.65)'/%3E%3Crect x='328.84270788116504' y='281.4192192626275' width='33.665553342395256' height='10.051204921701553' rx='3' fill='rgba(0,0,0,.28)'/%3E%3Crect x='339.2' y='175.1' width='8.5' height='86.8' rx='4.3' fill='rgba(0,0,0,.2)'/%3E%3Crect x='341.7' y='175.1' width='3.4' height='69.4' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='17.1' y='295.4' width='12.5' height='49.0' rx='6.3' fill='rgba(0,0,0,.2)'/%3E%3Crect x='20.8' y='295.4' width='5.0' height='39.2' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='82.6' y='99.7' width='11.3' height='41.0' rx='5.6' fill='rgba(0,0,0,.2)'/%3E%3Crect x='86.0' y='99.7' width='4.5' height='32.8' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='304.6' y='284.4' width='13.9' height='52.0' rx='6.9' fill='rgba(0,0,0,.2)'/%3E%3Crect x='308.7' y='284.4' width='5.5' height='41.6' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='326.3' y='156.4' width='7.2' height='46.1' rx='3.6' fill='rgba(0,0,0,.2)'/%3E%3Crect x='328.5' y='156.4' width='2.9' height='36.9' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='109.1' y='138.5' width='15.9' height='76.2' rx='7.9' fill='rgba(0,0,0,.2)'/%3E%3Crect x='113.9' y='138.5' width='6.4' height='61.0' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='29.5' y='174.4' width='11.4' height='59.6' rx='5.7' fill='rgba(0,0,0,.2)'/%3E%3Crect x='32.9' y='174.4' width='4.6' height='47.7' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='312.5' y='117.3' width='4.5' height='126.5' rx='2.2' fill='rgba(0,0,0,.2)'/%3E%3Crect x='313.9' y='117.3' width='1.8' height='101.2' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='44.4' y='192.9' width='9.0' height='128.9' rx='4.5' fill='rgba(0,0,0,.2)'/%3E%3Crect x='47.1' y='192.9' width='3.6' height='103.1' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='188.3' y='49.0' width='13.7' height='48.4' rx='6.9' fill='rgba(0,0,0,.2)'/%3E%3Crect x='192.4' y='49.0' width='5.5' height='38.8' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='56.4' y='262.5' width='10.2' height='71.3' rx='5.1' fill='rgba(0,0,0,.2)'/%3E%3Crect x='59.4' y='262.5' width='4.1' height='57.0' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='345.1' y='197.5' width='10.2' height='70.5' rx='5.1' fill='rgba(0,0,0,.2)'/%3E%3Crect x='348.1' y='197.5' width='4.1' height='56.4' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='340.8' y='208.6' width='12.7' height='83.6' rx='6.4' fill='rgba(0,0,0,.2)'/%3E%3Crect x='344.6' y='208.6' width='5.1' height='66.8' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Crect x='269.4' y='103.0' width='8.6' height='73.5' rx='4.3' fill='rgba(0,0,0,.2)'/%3E%3Crect x='271.9' y='103.0' width='3.4' height='58.8' rx='1' fill='rgba(0,0,0,.22)'/%3E%3Cellipse cx='52.1' cy='222.4' rx='35.8' ry='15.2' fill='rgba(0,0,0,0.20)'/%3E%3Cellipse cx='308.8' cy='265.7' rx='32.9' ry='18.5' fill='rgba(0,0,0,0.17)'/%3E%3Cellipse cx='296.1' cy='36.6' rx='34.0' ry='17.4' fill='rgba(0,0,0,0.13)'/%3E%3Cellipse cx='177.6' cy='71.6' rx='31.4' ry='17.5' fill='rgba(0,0,0,0.15)'/%3E%3Cellipse cx='87.0' cy='82.2' rx='61.3' ry='33.6' fill='rgba(0,0,0,0.20)'/%3E%3Cellipse cx='296.8' cy='302.7' rx='57.6' ry='26.3' fill='rgba(0,0,0,0.17)'/%3E%3Cellipse cx='266.8' cy='287.3' rx='20.1' ry='16.5' fill='rgba(0,0,0,0.17)'/%3E%3Cellipse cx='49.1' cy='31.0' rx='56.6' ry='23.1' fill='rgba(0,0,0,0.13)'/%3E%3Cellipse cx='319.7' cy='229.8' rx='25.2' ry='11.2' fill='rgba(0,0,0,0.13)'/%3E%3Cellipse cx='167.3' cy='61.6' rx='22.3' ry='15.8' fill='rgba(0,0,0,0.20)'/%3E%3Cpath d='M104.4 284.2 q5.5 14.2 11.7 22.7 q-1.9 10.9 21.6 41.0 q-3.1 11.7 33.5 78.7 q2.7 9.2 24.2 103.9 q-1.7 13.5 16.7 133.9' stroke='%230b0708' stroke-width='1.59' fill='none' opacity='.8'/%3E%3Cpath d='M135.8 121.5 q-0.7 11.7 -1.7 29.7 q2.6 9.7 11.2 57.5 q6.4 9.7 16.0 80.4 q-6.2 8.1 7.5 105.2 q-5.7 10.1 11.3 121.5' stroke='%230b0708' stroke-width='1.04' fill='none' opacity='.8'/%3E%3Cpath d='M326.4 283.5 q-1.5 14.3 11.8 36.9 q-6.5 12.7 4.3 55.0 q4.8 14.5 -6.3 90.1 q-1.4 10.0 1.6 117.2 q4.6 13.9 6.2 152.8' stroke='%230b0708' stroke-width='1.50' fill='none' opacity='.8'/%3E%3Crect width='352' height='304' filter='url(%23g)' opacity='.17'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: auto, auto, auto, auto, auto, auto, auto, auto, 352px 304px;
}
/* content sits above the wall */
body > header, body > main, body > footer, body > nav { position: relative; z-index: 10; }

/* ===== graveyard horizon =====
   Headstones, crosses and bare trees against the wall, with two fog banks
   drifting at different speeds. Layer 1 (the silhouettes) holds still while the
   fog positions animate — hence a position per layer in the keyframes.
   Sits between the wall (z-0) and the content (z-10). */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='300' viewBox='0 0 1400 300'%3E%3Cline x1='208.0' y1='274.0' x2='211.5' y2='231.9' stroke='%23050405' stroke-width='8.2' stroke-linecap='round'/%3E%3Cline x1='211.5' y1='231.9' x2='229.0' y2='206.0' stroke='%23050405' stroke-width='4.9' stroke-linecap='round'/%3E%3Cline x1='229.0' y1='206.0' x2='249.2' y2='192.0' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='249.2' y1='192.0' x2='260.0' y2='180.6' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='260.0' y1='180.6' x2='267.0' y2='172.3' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='267.0' y1='172.3' x2='273.1' y2='166.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='267.0' y1='172.3' x2='271.6' y2='165.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='260.0' y1='180.6' x2='263.2' y2='169.9' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='263.2' y1='169.9' x2='265.6' y2='163.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='263.2' y1='169.9' x2='265.3' y2='162.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='260.0' y1='180.6' x2='263.7' y2='169.8' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='263.7' y1='169.8' x2='262.9' y2='162.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='263.7' y1='169.8' x2='269.2' y2='164.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='249.2' y1='192.0' x2='267.8' y2='188.8' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='267.8' y1='188.8' x2='280.6' y2='181.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='280.6' y1='181.0' x2='288.6' y2='175.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='280.6' y1='181.0' x2='288.8' y2='177.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='280.6' y1='181.0' x2='285.5' y2='172.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='267.8' y1='188.8' x2='280.3' y2='180.6' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='280.3' y1='180.6' x2='288.7' y2='177.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='280.3' y1='180.6' x2='289.5' y2='176.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='249.2' y1='192.0' x2='257.4' y2='179.6' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='257.4' y1='179.6' x2='257.8' y2='168.9' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='257.8' y1='168.9' x2='259.5' y2='161.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='257.8' y1='168.9' x2='255.0' y2='162.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='257.4' y1='179.6' x2='258.1' y2='170.6' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='258.1' y1='170.6' x2='255.1' y2='165.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='258.1' y1='170.6' x2='255.8' y2='165.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='258.1' y1='170.6' x2='254.8' y2='164.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='229.0' y1='206.0' x2='232.2' y2='185.8' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='232.2' y1='185.8' x2='242.9' y2='175.0' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='242.9' y1='175.0' x2='250.4' y2='166.1' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='250.4' y1='166.1' x2='253.4' y2='157.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='250.4' y1='166.1' x2='258.1' y2='163.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='250.4' y1='166.1' x2='257.6' y2='161.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='242.9' y1='175.0' x2='253.2' y2='170.9' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='253.2' y1='170.9' x2='260.3' y2='166.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='253.2' y1='170.9' x2='258.2' y2='165.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='242.9' y1='175.0' x2='254.6' y2='172.7' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='254.6' y1='172.7' x2='261.0' y2='168.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='254.6' y1='172.7' x2='263.3' y2='171.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='232.2' y1='185.8' x2='232.4' y2='171.0' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='232.4' y1='171.0' x2='234.0' y2='159.6' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='234.0' y1='159.6' x2='234.8' y2='152.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='234.0' y1='159.6' x2='238.7' y2='153.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='232.4' y1='171.0' x2='230.5' y2='162.1' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='230.5' y1='162.1' x2='231.2' y2='155.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='230.5' y1='162.1' x2='229.8' y2='155.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='232.2' y1='185.8' x2='238.6' y2='174.5' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='238.6' y1='174.5' x2='243.3' y2='167.2' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='243.3' y1='167.2' x2='244.9' y2='161.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='243.3' y1='167.2' x2='245.8' y2='161.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='243.3' y1='167.2' x2='248.4' y2='164.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='238.6' y1='174.5' x2='237.8' y2='165.8' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='237.8' y1='165.8' x2='236.1' y2='161.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='237.8' y1='165.8' x2='234.6' y2='160.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='237.8' y1='165.8' x2='235.2' y2='161.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='229.0' y1='206.0' x2='241.6' y2='191.5' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='241.6' y1='191.5' x2='256.2' y2='187.7' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='256.2' y1='187.7' x2='266.0' y2='183.3' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='266.0' y1='183.3' x2='273.7' y2='181.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='266.0' y1='183.3' x2='272.3' y2='182.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='256.2' y1='187.7' x2='262.2' y2='181.3' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='262.2' y1='181.3' x2='265.3' y2='175.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='262.2' y1='181.3' x2='265.4' y2='175.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='241.6' y1='191.5' x2='253.5' y2='186.9' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='253.5' y1='186.9' x2='259.6' y2='181.3' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='259.6' y1='181.3' x2='264.8' y2='178.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='259.6' y1='181.3' x2='264.3' y2='178.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='253.5' y1='186.9' x2='260.7' y2='183.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='260.7' y1='183.0' x2='265.5' y2='183.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='260.7' y1='183.0' x2='265.7' y2='179.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='211.5' y1='231.9' x2='195.5' y2='202.8' stroke='%23050405' stroke-width='4.9' stroke-linecap='round'/%3E%3Cline x1='195.5' y1='202.8' x2='190.7' y2='181.2' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='190.7' y1='181.2' x2='189.6' y2='166.2' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='189.6' y1='166.2' x2='188.8' y2='157.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='188.8' y1='157.0' x2='191.1' y2='150.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='188.8' y1='157.0' x2='186.9' y2='151.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='189.6' y1='166.2' x2='186.0' y2='158.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='186.0' y1='158.0' x2='184.0' y2='151.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='186.0' y1='158.0' x2='182.3' y2='152.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='189.6' y1='166.2' x2='183.4' y2='158.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='183.4' y1='158.0' x2='178.9' y2='154.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='183.4' y1='158.0' x2='180.9' y2='151.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='190.7' y1='181.2' x2='181.8' y2='169.5' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='181.8' y1='169.5' x2='174.9' y2='163.6' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='174.9' y1='163.6' x2='169.1' y2='160.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='174.9' y1='163.6' x2='172.3' y2='157.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='181.8' y1='169.5' x2='175.6' y2='162.2' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='175.6' y1='162.2' x2='170.1' y2='160.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='175.6' y1='162.2' x2='173.1' y2='156.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='190.7' y1='181.2' x2='191.0' y2='168.3' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='191.0' y1='168.3' x2='192.9' y2='160.2' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='192.9' y1='160.2' x2='195.2' y2='154.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='192.9' y1='160.2' x2='192.4' y2='154.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='191.0' y1='168.3' x2='189.1' y2='158.4' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='189.1' y1='158.4' x2='189.3' y2='150.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='189.1' y1='158.4' x2='186.5' y2='151.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='191.0' y1='168.3' x2='190.5' y2='160.7' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='190.5' y1='160.7' x2='187.4' y2='156.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='190.5' y1='160.7' x2='191.8' y2='155.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='190.5' y1='160.7' x2='188.7' y2='154.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='195.5' y1='202.8' x2='191.7' y2='178.0' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='191.7' y1='178.0' x2='186.4' y2='160.9' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='186.4' y1='160.9' x2='175.7' y2='152.9' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='175.7' y1='152.9' x2='167.0' y2='149.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='175.7' y1='152.9' x2='168.2' y2='149.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='186.4' y1='160.9' x2='177.5' y2='153.4' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='177.5' y1='153.4' x2='171.4' y2='149.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='177.5' y1='153.4' x2='169.7' y2='151.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='191.7' y1='178.0' x2='182.2' y2='164.7' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='182.2' y1='164.7' x2='174.6' y2='156.8' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='174.6' y1='156.8' x2='169.3' y2='152.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='174.6' y1='156.8' x2='170.6' y2='149.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='182.2' y1='164.7' x2='179.4' y2='154.9' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='179.4' y1='154.9' x2='176.3' y2='147.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='179.4' y1='154.9' x2='178.5' y2='147.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='211.5' y1='231.9' x2='198.9' y2='208.8' stroke='%23050405' stroke-width='4.9' stroke-linecap='round'/%3E%3Cline x1='198.9' y1='208.8' x2='183.9' y2='199.0' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='183.9' y1='199.0' x2='175.9' y2='188.2' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='175.9' y1='188.2' x2='170.4' y2='180.6' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='170.4' y1='180.6' x2='165.1' y2='178.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='170.4' y1='180.6' x2='165.2' y2='178.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='175.9' y1='188.2' x2='173.0' y2='179.4' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='173.0' y1='179.4' x2='172.4' y2='173.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='173.0' y1='179.4' x2='169.8' y2='174.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='183.9' y1='199.0' x2='176.8' y2='190.0' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='176.8' y1='190.0' x2='170.1' y2='186.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='170.1' y1='186.0' x2='166.3' y2='182.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='170.1' y1='186.0' x2='165.9' y2='184.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='176.8' y1='190.0' x2='169.3' y2='187.7' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='169.3' y1='187.7' x2='164.2' y2='185.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='169.3' y1='187.7' x2='163.7' y2='186.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='169.3' y1='187.7' x2='164.7' y2='185.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='198.9' y1='208.8' x2='197.1' y2='190.7' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='197.1' y1='190.7' x2='197.2' y2='179.2' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='197.2' y1='179.2' x2='201.3' y2='172.3' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='201.3' y1='172.3' x2='205.0' y2='167.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='201.3' y1='172.3' x2='203.5' y2='167.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='197.2' y1='179.2' x2='198.3' y2='172.2' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='198.3' y1='172.2' x2='196.1' y2='167.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='198.3' y1='172.2' x2='201.0' y2='168.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='197.1' y1='190.7' x2='199.5' y2='176.7' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='199.5' y1='176.7' x2='199.5' y2='168.5' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='199.5' y1='168.5' x2='199.1' y2='162.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='199.5' y1='168.5' x2='200.7' y2='162.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='199.5' y1='168.5' x2='202.9' y2='163.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='199.5' y1='176.7' x2='202.7' y2='166.0' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='202.7' y1='166.0' x2='207.8' y2='161.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='202.7' y1='166.0' x2='208.0' y2='159.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='202.7' y1='166.0' x2='205.8' y2='158.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='197.1' y1='190.7' x2='199.3' y2='179.6' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='199.3' y1='179.6' x2='204.0' y2='172.8' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='204.0' y1='172.8' x2='209.4' y2='170.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='204.0' y1='172.8' x2='204.7' y2='167.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='199.3' y1='179.6' x2='202.3' y2='172.4' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='202.3' y1='172.4' x2='205.8' y2='168.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='202.3' y1='172.4' x2='201.8' y2='166.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='202.3' y1='172.4' x2='205.1' y2='168.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='198.9' y1='208.8' x2='187.9' y2='195.8' stroke='%23050405' stroke-width='2.9' stroke-linecap='round'/%3E%3Cline x1='187.9' y1='195.8' x2='178.5' y2='190.1' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='178.5' y1='190.1' x2='171.8' y2='189.7' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='178.5' y1='190.1' x2='172.7' y2='184.4' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='172.7' y1='184.4' x2='168.8' y2='179.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='172.7' y1='184.4' x2='168.2' y2='180.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='178.5' y1='190.1' x2='172.0' y2='189.3' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='187.9' y1='195.8' x2='177.4' y2='192.4' stroke='%23050405' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='177.4' y1='192.4' x2='171.7' y2='185.9' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='171.7' y1='185.9' x2='166.8' y2='183.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='171.7' y1='185.9' x2='169.3' y2='179.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='171.7' y1='185.9' x2='168.9' y2='181.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='177.4' y1='192.4' x2='169.3' y2='190.7' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='169.3' y1='190.7' x2='164.1' y2='191.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='169.3' y1='190.7' x2='164.7' y2='186.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='177.4' y1='192.4' x2='171.2' y2='186.5' stroke='%23050405' stroke-width='1.1' stroke-linecap='round'/%3E%3Cline x1='171.2' y1='186.5' x2='166.1' y2='184.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='171.2' y1='186.5' x2='168.5' y2='181.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='761.0' y1='274.0' x2='765.6' y2='219.6' stroke='%23050405' stroke-width='7.5' stroke-linecap='round'/%3E%3Cline x1='765.6' y1='219.6' x2='781.8' y2='183.0' stroke='%23050405' stroke-width='4.5' stroke-linecap='round'/%3E%3Cline x1='781.8' y1='183.0' x2='797.5' y2='163.0' stroke='%23050405' stroke-width='2.7' stroke-linecap='round'/%3E%3Cline x1='797.5' y1='163.0' x2='802.5' y2='145.0' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='802.5' y1='145.0' x2='803.9' y2='133.6' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='803.9' y1='133.6' x2='804.7' y2='126.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='803.9' y1='133.6' x2='805.8' y2='126.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='802.5' y1='145.0' x2='808.4' y2='134.4' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='808.4' y1='134.4' x2='811.5' y2='127.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='808.4' y1='134.4' x2='807.3' y2='125.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='797.5' y1='163.0' x2='809.5' y2='153.8' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='809.5' y1='153.8' x2='812.5' y2='144.2' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='812.5' y1='144.2' x2='810.5' y2='137.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='812.5' y1='144.2' x2='812.2' y2='136.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='812.5' y1='144.2' x2='811.7' y2='136.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='809.5' y1='153.8' x2='816.6' y2='146.1' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='816.6' y1='146.1' x2='821.6' y2='141.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='816.6' y1='146.1' x2='820.8' y2='139.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='797.5' y1='163.0' x2='811.4' y2='156.9' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='811.4' y1='156.9' x2='818.9' y2='147.5' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='818.9' y1='147.5' x2='826.0' y2='142.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='818.9' y1='147.5' x2='823.9' y2='140.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='811.4' y1='156.9' x2='820.9' y2='157.0' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='820.9' y1='157.0' x2='827.4' y2='154.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='820.9' y1='157.0' x2='827.8' y2='157.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='781.8' y1='183.0' x2='789.1' y2='158.6' stroke='%23050405' stroke-width='2.7' stroke-linecap='round'/%3E%3Cline x1='789.1' y1='158.6' x2='793.0' y2='140.4' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='793.0' y1='140.4' x2='789.3' y2='126.9' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='789.3' y1='126.9' x2='786.9' y2='116.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='789.3' y1='126.9' x2='792.0' y2='116.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='793.0' y1='140.4' x2='795.5' y2='128.0' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='795.5' y1='128.0' x2='797.2' y2='119.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='795.5' y1='128.0' x2='799.8' y2='120.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='795.5' y1='128.0' x2='794.1' y2='118.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='789.1' y1='158.6' x2='794.8' y2='141.8' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='794.8' y1='141.8' x2='798.5' y2='129.3' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='798.5' y1='129.3' x2='798.7' y2='119.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='798.5' y1='129.3' x2='798.2' y2='119.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='794.8' y1='141.8' x2='802.3' y2='130.5' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='802.3' y1='130.5' x2='806.2' y2='122.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='802.3' y1='130.5' x2='808.1' y2='121.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='789.1' y1='158.6' x2='788.2' y2='142.4' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='788.2' y1='142.4' x2='790.5' y2='132.7' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='790.5' y1='132.7' x2='791.7' y2='125.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='790.5' y1='132.7' x2='795.0' y2='128.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='788.2' y1='142.4' x2='793.6' y2='132.9' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='793.6' y1='132.9' x2='796.4' y2='126.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='793.6' y1='132.9' x2='795.8' y2='124.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='765.6' y1='219.6' x2='765.4' y2='181.1' stroke='%23050405' stroke-width='4.5' stroke-linecap='round'/%3E%3Cline x1='765.4' y1='181.1' x2='764.8' y2='152.2' stroke='%23050405' stroke-width='2.7' stroke-linecap='round'/%3E%3Cline x1='764.8' y1='152.2' x2='769.2' y2='133.1' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='769.2' y1='133.1' x2='771.8' y2='118.6' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='771.8' y1='118.6' x2='768.4' y2='108.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='771.8' y1='118.6' x2='769.0' y2='109.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='769.2' y1='133.1' x2='769.5' y2='118.0' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='769.5' y1='118.0' x2='771.1' y2='106.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='769.5' y1='118.0' x2='765.9' y2='109.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='769.2' y1='133.1' x2='773.3' y2='118.2' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='773.3' y1='118.2' x2='773.3' y2='108.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='773.3' y1='118.2' x2='778.9' y2='108.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='764.8' y1='152.2' x2='768.8' y2='133.1' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='768.8' y1='133.1' x2='765.8' y2='121.4' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='765.8' y1='121.4' x2='762.2' y2='113.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='765.8' y1='121.4' x2='760.7' y2='116.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='765.8' y1='121.4' x2='760.4' y2='116.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='768.8' y1='133.1' x2='776.6' y2='123.6' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='776.6' y1='123.6' x2='777.2' y2='115.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='776.6' y1='123.6' x2='777.3' y2='116.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='768.8' y1='133.1' x2='767.0' y2='118.7' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='767.0' y1='118.7' x2='766.7' y2='109.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='767.0' y1='118.7' x2='767.9' y2='108.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='765.4' y1='181.1' x2='775.3' y2='152.0' stroke='%23050405' stroke-width='2.7' stroke-linecap='round'/%3E%3Cline x1='775.3' y1='152.0' x2='781.8' y2='130.4' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='781.8' y1='130.4' x2='790.4' y2='119.5' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='790.4' y1='119.5' x2='799.2' y2='113.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='790.4' y1='119.5' x2='799.2' y2='114.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='781.8' y1='130.4' x2='784.7' y2='112.9' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='784.7' y1='112.9' x2='789.2' y2='99.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='784.7' y1='112.9' x2='787.5' y2='99.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='775.3' y1='152.0' x2='771.8' y2='131.5' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='771.8' y1='131.5' x2='769.7' y2='115.2' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='769.7' y1='115.2' x2='773.8' y2='103.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='769.7' y1='115.2' x2='765.6' y2='104.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='771.8' y1='131.5' x2='766.1' y2='117.0' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='766.1' y1='117.0' x2='763.1' y2='106.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='766.1' y1='117.0' x2='758.7' y2='107.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='771.8' y1='131.5' x2='767.1' y2='117.2' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='767.1' y1='117.2' x2='765.7' y2='106.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='767.1' y1='117.2' x2='758.0' y2='109.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='765.4' y1='181.1' x2='755.8' y2='152.0' stroke='%23050405' stroke-width='2.7' stroke-linecap='round'/%3E%3Cline x1='755.8' y1='152.0' x2='737.4' y2='136.6' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='737.4' y1='136.6' x2='721.4' y2='134.7' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='721.4' y1='134.7' x2='709.3' y2='134.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='721.4' y1='134.7' x2='711.4' y2='133.4' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='737.4' y1='136.6' x2='720.0' y2='130.5' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='720.0' y1='130.5' x2='709.4' y2='131.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='720.0' y1='130.5' x2='708.4' y2='121.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='720.0' y1='130.5' x2='709.7' y2='126.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='737.4' y1='136.6' x2='724.4' y2='126.2' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='724.4' y1='126.2' x2='715.1' y2='119.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='724.4' y1='126.2' x2='714.7' y2='124.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='724.4' y1='126.2' x2='716.1' y2='116.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='755.8' y1='152.0' x2='760.1' y2='134.1' stroke='%23050405' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='760.1' y1='134.1' x2='755.4' y2='122.4' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='755.4' y1='122.4' x2='752.8' y2='114.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='755.4' y1='122.4' x2='748.5' y2='117.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='760.1' y1='134.1' x2='770.9' y2='124.5' stroke='%23050405' stroke-width='1.0' stroke-linecap='round'/%3E%3Cline x1='770.9' y1='124.5' x2='773.5' y2='114.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='770.9' y1='124.5' x2='777.8' y2='118.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1223.9' y1='274.0' x2='1219.4' y2='221.2' stroke='%23050405' stroke-width='6.1' stroke-linecap='round'/%3E%3Cline x1='1219.4' y1='221.2' x2='1219.6' y2='185.7' stroke='%23050405' stroke-width='3.7' stroke-linecap='round'/%3E%3Cline x1='1219.6' y1='185.7' x2='1226.7' y2='163.3' stroke='%23050405' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='1226.7' y1='163.3' x2='1236.1' y2='150.0' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1236.1' y1='150.0' x2='1242.1' y2='141.7' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1242.1' y1='141.7' x2='1244.6' y2='134.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1242.1' y1='141.7' x2='1243.0' y2='135.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1236.1' y1='150.0' x2='1241.2' y2='141.7' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1241.2' y1='141.7' x2='1246.0' y2='137.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1241.2' y1='141.7' x2='1241.2' y2='135.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1226.7' y1='163.3' x2='1230.8' y2='147.0' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1230.8' y1='147.0' x2='1232.4' y2='136.4' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1232.4' y1='136.4' x2='1232.9' y2='129.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1232.4' y1='136.4' x2='1228.9' y2='129.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1230.8' y1='147.0' x2='1231.0' y2='135.3' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1231.0' y1='135.3' x2='1234.7' y2='126.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1231.0' y1='135.3' x2='1230.1' y2='127.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1219.6' y1='185.7' x2='1225.8' y2='159.5' stroke='%23050405' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='1225.8' y1='159.5' x2='1221.9' y2='143.0' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1221.9' y1='143.0' x2='1220.6' y2='130.4' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1220.6' y1='130.4' x2='1222.8' y2='122.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1220.6' y1='130.4' x2='1214.9' y2='123.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1220.6' y1='130.4' x2='1220.3' y2='121.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1221.9' y1='143.0' x2='1217.7' y2='133.4' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1217.7' y1='133.4' x2='1213.4' y2='127.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1217.7' y1='133.4' x2='1213.7' y2='127.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1225.8' y1='159.5' x2='1239.0' y2='146.6' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1239.0' y1='146.6' x2='1248.0' y2='137.8' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1248.0' y1='137.8' x2='1255.6' y2='135.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1248.0' y1='137.8' x2='1250.3' y2='130.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1239.0' y1='146.6' x2='1242.8' y2='134.3' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1242.8' y1='134.3' x2='1241.6' y2='125.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1242.8' y1='134.3' x2='1240.3' y2='126.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1219.4' y1='221.2' x2='1230.2' y2='183.3' stroke='%23050405' stroke-width='3.7' stroke-linecap='round'/%3E%3Cline x1='1230.2' y1='183.3' x2='1228.9' y2='159.6' stroke='%23050405' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='1228.9' y1='159.6' x2='1228.1' y2='143.3' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1228.1' y1='143.3' x2='1224.2' y2='131.9' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1224.2' y1='131.9' x2='1219.1' y2='124.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1224.2' y1='131.9' x2='1219.5' y2='125.3' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1228.1' y1='143.3' x2='1230.3' y2='132.5' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1230.3' y1='132.5' x2='1233.3' y2='126.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1230.3' y1='132.5' x2='1234.3' y2='125.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1228.9' y1='159.6' x2='1224.3' y2='144.5' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1224.3' y1='144.5' x2='1215.7' y2='135.5' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1215.7' y1='135.5' x2='1212.4' y2='128.6' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1215.7' y1='135.5' x2='1214.4' y2='127.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1224.3' y1='144.5' x2='1222.0' y2='134.9' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1222.0' y1='134.9' x2='1223.3' y2='129.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1222.0' y1='134.9' x2='1223.0' y2='127.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1230.2' y1='183.3' x2='1224.2' y2='158.4' stroke='%23050405' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='1224.2' y1='158.4' x2='1220.9' y2='139.7' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1220.9' y1='139.7' x2='1214.4' y2='128.5' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1214.4' y1='128.5' x2='1208.7' y2='119.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1214.4' y1='128.5' x2='1206.2' y2='124.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1220.9' y1='139.7' x2='1223.1' y2='124.8' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1223.1' y1='124.8' x2='1227.7' y2='115.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1223.1' y1='124.8' x2='1227.5' y2='115.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1223.1' y1='124.8' x2='1227.5' y2='117.1' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1224.2' y1='158.4' x2='1224.0' y2='143.1' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1224.0' y1='143.1' x2='1225.5' y2='133.6' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1225.5' y1='133.6' x2='1230.7' y2='128.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1225.5' y1='133.6' x2='1229.4' y2='127.5' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1224.0' y1='143.1' x2='1219.8' y2='134.4' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1219.8' y1='134.4' x2='1218.7' y2='127.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1219.8' y1='134.4' x2='1215.1' y2='129.0' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1224.2' y1='158.4' x2='1222.3' y2='140.0' stroke='%23050405' stroke-width='1.3' stroke-linecap='round'/%3E%3Cline x1='1222.3' y1='140.0' x2='1213.9' y2='129.4' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1213.9' y1='129.4' x2='1207.2' y2='125.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1213.9' y1='129.4' x2='1210.2' y2='119.8' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1222.3' y1='140.0' x2='1219.8' y2='127.4' stroke='%23050405' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='1219.8' y1='127.4' x2='1223.3' y2='117.9' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1219.8' y1='127.4' x2='1215.1' y2='118.7' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cline x1='1219.8' y1='127.4' x2='1219.5' y2='118.2' stroke='%23050405' stroke-width='0.6' stroke-linecap='round'/%3E%3Cg transform='rotate(4.2 23.9 274)'%3E%3Cpath d='M10 274 L10 240.28004872346298 a13.936348082468076 13.936348082468076 0 0 1 27.87269616493615 0 L37.9 274 Z' fill='%23050405'/%3E%3Cpath d='M10 240.3 a13.936348082468076 13.936348082468076 0 0 1 27.87269616493615 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(-4.5 111.1 274)'%3E%3Cpath d='M97.5224502345186 274 L99.5 243.9 L122.7 243.9 L124.7 274 Z' fill='%23050405'/%3E%3C/g%3E%3Cg transform='rotate(1.4 206.9 274)'%3E%3Cpath d='M184.40371899977498 274 L184.40371899977498 239.21891307328778 a22.495770460225536 22.495770460225536 0 0 1 44.99154092045107 0 L229.4 274 Z' fill='%23050405'/%3E%3Cpath d='M184.40371899977498 239.2 a22.495770460225536 22.495770460225536 0 0 1 44.99154092045107 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(0.2 275.3 274)'%3E%3Cpath d='M256.11056525544757 274 L256.11056525544757 251.40217724507775 a19.167739306189 19.167739306189 0 0 1 38.335478612378 0 L294.4 274 Z' fill='%23050405'/%3E%3Cpath d='M256.11056525544757 251.4 a19.167739306189 19.167739306189 0 0 1 38.335478612378 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(-4.2 349.5 274)'%3E%3Cpath d='M329.50027886009786 274 L329.50027886009786 251.5525053746777 a19.970702712410457 19.970702712410457 0 0 1 39.941405424820914 0 L369.4 274 Z' fill='%23050405'/%3E%3Cpath d='M329.50027886009786 251.6 a19.970702712410457 19.970702712410457 0 0 1 39.941405424820914 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(0.1 435.6 274)'%3E%3Cpath d='M422.0454358887139 274 L422.0454358887139 235.7498645120067 a13.57913434672129 13.57913434672129 0 0 1 27.15826869344258 0 L449.2 274 Z' fill='%23050405'/%3E%3Cpath d='M422.0454358887139 235.7 a13.57913434672129 13.57913434672129 0 0 1 27.15826869344258 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(-3.3 509.7 274)'%3E%3Cpath d='M494.77144360764487 274 L496.8 238.5 L522.6 238.5 L524.6 274 Z' fill='%23050405'/%3E%3C/g%3E%3Cg transform='rotate(3.9 593.0 274)'%3E%3Cpath d='M582.6828148647597 274 L584.7 241.7 L601.3 241.7 L603.3 274 Z' fill='%23050405'/%3E%3C/g%3E%3Cg transform='rotate(0.9 682.8 274)'%3E%3Crect x='679.2' y='207.9' width='7.3' height='66.1' fill='%23050405'/%3E%3Crect x='663.9' y='227.7' width='37.8' height='7.3' fill='%23050405'/%3E%3Crect x='679.2' y='207.9' width='7.3' height='1' fill='rgba(150,170,190,.07)'/%3E%3C/g%3E%3Cg transform='rotate(-2.2 775.2 274)'%3E%3Cpath d='M755.181294758423 274 L755.181294758423 245.69213717975288 a20.04897678366349 20.04897678366349 0 0 1 40.09795356732698 0 L795.3 274 Z' fill='%23050405'/%3E%3Cpath d='M755.181294758423 245.7 a20.04897678366349 20.04897678366349 0 0 1 40.09795356732698 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(0.1 849.5 274)'%3E%3Cpath d='M827.2032705327512 274 L827.2032705327512 233.90902244295415 a22.291986828805875 22.291986828805875 0 0 1 44.58397365761175 0 L871.8 274 Z' fill='%23050405'/%3E%3Cpath d='M827.2032705327512 233.9 a22.291986828805875 22.291986828805875 0 0 1 44.58397365761175 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(0.6 934.5 274)'%3E%3Cpath d='M922.7373989898421 274 L922.7373989898421 236.387728744367 a11.718104124869269 11.718104124869269 0 0 1 23.436208249738538 0 L946.2 274 Z' fill='%23050405'/%3E%3Cpath d='M922.7373989898421 236.4 a11.718104124869269 11.718104124869269 0 0 1 23.436208249738538 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(1.7 1012.5 274)'%3E%3Cpath d='M994.4149121308769 274 L994.4149121308769 227.30755363838168 a18.116068963015486 18.116068963015486 0 0 1 36.23213792603097 0 L1030.6 274 Z' fill='%23050405'/%3E%3Cpath d='M994.4149121308769 227.3 a18.116068963015486 18.116068963015486 0 0 1 36.23213792603097 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(-1.5 1054.6 274)'%3E%3Cpath d='M1044.543244992636 274 L1044.543244992636 226.30757616847174 a10.074275016819255 10.074275016819255 0 0 1 20.14855003363851 0 L1064.7 274 Z' fill='%23050405'/%3E%3Cpath d='M1044.543244992636 226.3 a10.074275016819255 10.074275016819255 0 0 1 20.14855003363851 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(0.7 1135.7 274)'%3E%3Crect x='1132.2' y='239.6' width='7.1' height='34.4' fill='%23050405'/%3E%3Crect x='1123.9' y='249.9' width='23.7' height='7.1' fill='%23050405'/%3E%3Crect x='1132.2' y='239.6' width='7.1' height='1' fill='rgba(150,170,190,.07)'/%3E%3C/g%3E%3Cg transform='rotate(4.0 1184.6 274)'%3E%3Cpath d='M1173.7319644967708 274 L1173.7319644967708 212.34884653722347 a10.846207976735293 10.846207976735293 0 0 1 21.692415953470586 0 L1195.4 274 Z' fill='%23050405'/%3E%3Cpath d='M1173.7319644967708 212.3 a10.846207976735293 10.846207976735293 0 0 1 21.692415953470586 0' stroke='rgba(150,170,190,.07)' stroke-width='1' fill='none'/%3E%3C/g%3E%3Cg transform='rotate(1.8 1267.1 274)'%3E%3Crect x='1263.5' y='221.3' width='7.2' height='52.7' fill='%23050405'/%3E%3Crect x='1257.1' y='237.1' width='19.8' height='7.2' fill='%23050405'/%3E%3Crect x='1263.5' y='221.3' width='7.2' height='1' fill='rgba(150,170,190,.07)'/%3E%3C/g%3E%3Cg transform='rotate(4.3 1341.5 274)'%3E%3Crect x='1337.9' y='231.9' width='7.1' height='42.1' fill='%23050405'/%3E%3Crect x='1332.7' y='244.5' width='17.6' height='7.1' fill='%23050405'/%3E%3Crect x='1337.9' y='231.9' width='7.1' height='1' fill='rgba(150,170,190,.07)'/%3E%3C/g%3E%3Cpath d='M0 280 Q280 269 630 278 T1400 276 L1400 300 L0 300 Z' fill='%23040304'/%3E%3C/svg%3E"),
    radial-gradient(closest-side at 50% 50%, rgba(178,196,214,.055), transparent 100%),
    radial-gradient(closest-side at 50% 50%, rgba(178,196,214,.04), transparent 100%);
  background-repeat: repeat-x, repeat-x, repeat-x;
  background-size: 1400px 300px, 46% 26%, 62% 34%;
  background-position: center bottom, 0% 82%, 0% 93%;
  animation: cemeteryFog 120s linear infinite;
}
@keyframes cemeteryFog {
  from { background-position: center bottom,    0% 82%,    0% 93%; }
  to   { background-position: center bottom,  200% 82%, -200% 93%; }
}

