/* elliecard — card template. All sizes in inches/points so the same DOM prints at true size.
   Pokémon kind follows the classic (Base Set era) layout: yellow border, softly mottled type-coloured panel, metallic art bevel,
   gold species bar, attack rows, weakness/resistance/retreat bar, boxed flavor text, tiny footer. */
.card{position:relative;width:2.5in;height:3.5in;box-sizing:border-box;overflow:hidden;border-radius:0.1in;
  background:linear-gradient(110deg,#ffe45b,#f7d43b 65%,#edc32a);color:#111;
  font-family:"Gill Sans","Gill Sans MT",Cabin,"Trebuchet MS",sans-serif;-webkit-font-smoothing:antialiased;text-rendering:geometricPrecision;
  --type:#6cbf5a;--deep:#3d8a32;--tint:#e9f3d9;--tint2:#cfe4bd}
.card.bleed{width:2.75in;height:3.75in;border-radius:0}
.card.bleed .inner{margin:0.125in}
.card .inner{position:relative;width:2.5in;height:3.5in;box-sizing:border-box}
/* Own the box model: app.html has a global reset; the print document does not. */
.card *,.card *::before,.card *::after{box-sizing:border-box}
/* Subtle printed grain over an uneven wash; no conspicuous diagonal grid. */
.card .frame{position:absolute;inset:0.105in;border-radius:0.025in;
  background:radial-gradient(ellipse at 18% 12%,#ffffff70,transparent 48%),
    radial-gradient(ellipse at 95% 75%,var(--type),transparent 80%),
    linear-gradient(155deg,var(--tint),var(--tint2));
  box-shadow:inset 0 0 0 0.006in #5d512c90,inset 0 0 0.04in #51442340}
.card .frame::before{content:"";position:absolute;inset:0;border-radius:inherit;opacity:.23;
  background:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22160%22%20height%3D%22160%22%20viewBox%3D%220%200%20160%20160%22%3E%0A%20%20%3Cfilter%20id%3D%22paper%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%0A%20%20%20%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%22.14%22%20numOctaves%3D%223%22%20seed%3D%2212%22%20stitchTiles%3D%22stitch%22%2F%3E%0A%20%20%20%20%3CfeColorMatrix%20type%3D%22saturate%22%20values%3D%220%22%2F%3E%0A%20%20%3C%2Ffilter%3E%0A%20%20%3Cpath%20fill%3D%22%23aaa%22%20filter%3D%22url%28%23paper%29%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%0A%3C%2Fsvg%3E%0A") center/1.1in 1.1in;mix-blend-mode:multiply;pointer-events:none}
/* header */
.card .stage{position:absolute;left:0.17in;top:0.14in;font-size:4.6pt;font-weight:700;letter-spacing:.01em;color:#1b1b1b;line-height:1}
.card .stage .ev{display:block;font-weight:400;text-transform:none;letter-spacing:0;font-size:4.3pt;color:#333;margin-top:0.012in}
.card .evthumb{position:absolute;left:0.15in;top:0.1in;width:0.36in;height:0.36in;border-radius:50%;overflow:hidden;border:0.016in solid #f4e6a8;box-shadow:0 0 0 0.01in #8a6b1e,0 0.01in 0.02in rgba(0,0,0,.35);background:#ddd}
.card .evthumb img{width:100%;height:100%;object-fit:cover}
.card.has-ev .stage{left:0.55in;right:0.16in;top:0.14in;white-space:nowrap;overflow:hidden}
.card.has-ev .stage .ev{display:inline;margin-left:0.05in;font-size:4.1pt}
.card .name{position:absolute;left:0.17in;top:0.24in;right:0.82in;font-size:11.5pt;font-weight:700;line-height:1;white-space:nowrap;overflow:hidden;letter-spacing:-.012em;color:#111;text-align:left}
.card.has-ev .name{left:0.55in}
.card .hp{position:absolute;right:0.40in;top:0.26in;font-size:10pt;font-weight:700;color:#c8231c;line-height:1;white-space:nowrap;letter-spacing:-.02em}
.card .hp small{font-size:8pt;margin-left:0.025in;font-weight:700;letter-spacing:0}
.card .hpbadge{position:absolute;right:0.16in;top:0.20in;width:0.20in;height:0.20in}
/* art window with a metallic bevel */
.card .artwrap{position:absolute;left:0.21in;top:0.49in;width:2.08in;height:1.43in;padding:0.033in;border-radius:0;
  background:linear-gradient(135deg,#fff6c4 0%,#d9b34a 18%,#8f6a1c 38%,#f3dc8c 52%,#a67c22 68%,#e8c65e 84%,#6f5210 100%);
  box-shadow:inset 0 0 0 0.006in rgba(255,255,255,.7),0 0.014in 0.03in rgba(0,0,0,.45),0 0 0 0.006in rgba(0,0,0,.35)}
.card .artwrap::after{content:"";position:absolute;inset:0.03in;pointer-events:none;box-shadow:inset 0.006in 0.006in 0.01in rgba(0,0,0,.55),inset -0.004in -0.004in 0.006in rgba(255,255,255,.35)}
.card .art{position:relative;width:100%;height:100%;overflow:hidden;background:#cfd8dc}
.card .art img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:var(--ox,50%) var(--oy,50%)}
.card .art .empty{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:6pt;color:#667;text-align:center;padding:0.1in}
.card .holo{position:absolute;inset:0;pointer-events:none;mix-blend-mode:color-dodge;opacity:.55;
  background:linear-gradient(115deg,rgba(255,0,128,.0) 20%,rgba(255,220,0,.55) 35%,rgba(0,255,200,.55) 50%,rgba(120,80,255,.55) 65%,rgba(255,0,128,0) 80%);
  background-size:220% 220%;background-position:var(--mx,50%) var(--my,50%)}
.card.print .holo{display:none}
/* species bar: bevelled gold */
.card .species{position:absolute;left:0.23in;right:0.23in;top:1.955in;height:0.115in;line-height:0.115in;text-align:center;
  font-size:4.6pt;font-style:italic;color:#1a1a1a;border-radius:0;white-space:nowrap;overflow:hidden;
  background:linear-gradient(180deg,#fff2bd 0%,#e9c65a 40%,#c9a13a 60%,#f3dd93 100%);
  box-shadow:inset 0 0.006in 0 rgba(255,255,255,.8),inset 0 -0.006in 0 rgba(0,0,0,.25),0 0.008in 0.014in rgba(0,0,0,.35),0 0 0 0.005in rgba(90,60,10,.6)}
/* attacks */
.card .attacks{position:absolute;left:0.19in;right:0.19in;top:2.145in;height:0.69in;display:flex;flex-direction:column;justify-content:space-around}
.card .atk{position:relative;display:grid;grid-template-columns:0.60in minmax(0,1fr) 0.29in;align-items:center;column-gap:0.03in;min-height:0.22in}
.card .atk .cost{display:flex;flex-wrap:wrap;gap:0.014in;justify-content:flex-start;align-items:center;max-width:0.60in}
.card .atk .cost .en{width:0.165in;height:0.165in;display:inline-block}
.card .atk .an{font-size:8.5pt;font-weight:700;line-height:1.08;text-align:left;white-space:nowrap;overflow:hidden;letter-spacing:-.01em}
.card .atk .dmg{font-size:11pt;font-weight:400;text-align:right;line-height:1;white-space:nowrap;letter-spacing:-.02em}
.card .atk .at{grid-column:1 / -1;font-family:Arial,sans-serif;font-size:5.1pt;line-height:1.18;color:#111;margin-top:0.012in;max-height:0.24in;overflow:hidden}
.card .atk + .atk{padding-top:0.035in}
.card .atk.only-attack{min-height:0.36in}
.card .atk.only-attack .an{text-align:center}
/* Classic three-column rules strip: labels above the energy symbols. */
.card .wrr{position:absolute;left:0.19in;right:0.19in;top:2.85in;height:0.23in;
  display:grid;grid-template-columns:1fr 1fr 1fr;border-top:0.008in solid #252218;padding-top:0.022in}
.card .wrr>div{display:flex;flex-direction:column;align-items:center;gap:0.017in;
  font-size:4.6pt;font-weight:700;line-height:1;text-transform:lowercase;white-space:nowrap}
.card .wrr>div:first-child{align-items:flex-start}
.card .wrr>div:last-child{align-items:flex-end}
.card .wrr .value{display:flex;align-items:center;gap:0.018in;min-height:0.13in}
.card .wrr .mod{font-size:5pt;font-weight:400}
.card .wrr .none{opacity:.5;font-weight:400}
/* flavor */
.card .flavor{position:absolute;left:0.19in;right:0.19in;top:3.105in;height:0.19in;font-size:4.5pt;font-style:italic;line-height:1.15;color:#1a1a1a;
  overflow:hidden;background:rgba(255,249,214,.17);border:0.007in solid #605122;padding:0.018in 0.04in;box-sizing:border-box}
/* footer */
.card .flavor:empty{visibility:hidden}
.card .foot{position:absolute;left:0.19in;right:0.19in;top:3.32in;height:0.06in;display:flex;justify-content:space-between;align-items:center;font-size:3.6pt;color:#1d1d1d;white-space:nowrap;line-height:1}
.card .foot>span:last-child{display:flex;align-items:center;gap:0.025in}
.card .foot .setsym{flex-shrink:0}
.card .copy{position:absolute;left:0;right:0;bottom:var(--fb,0.027in);text-align:center;font-size:2.9pt;color:#3a3a3a;white-space:nowrap;line-height:1;letter-spacing:.02em}
.card.has-frame .foot{top:var(--ft,3.365in)}
.card .foot .rar{font-size:4.2pt;margin-left:0.03in}
.card .foot .setsym{display:inline-block;width:0.07in;height:0.07in;margin-right:0.025in;vertical-align:-0.012in;border-radius:50%;background:#1d1d1d;box-shadow:inset 0 0 0 0.012in #f4d34a,inset 0 0 0 0.02in #1d1d1d}
.card .foot .mid{opacity:.8}
/* type palettes: panel tints echo the printed backgrounds (a touch more saturated than pastel) */
.card.t-grass{--type:#6cbf5a;--deep:#3d8a32;--tint:#cfe8b8;--tint2:#9dd07f}
.card.t-fire{--type:#ef6a3b;--deep:#b8391a;--tint:#f6cdb4;--tint2:#ee9f72}
.card.t-water{--type:#4d9be0;--deep:#1f5fa8;--tint:#c4dcf5;--tint2:#8fbde9}
.card.t-lightning{--type:#f2c534;--deep:#b98c0d;--tint:#fae9a0;--tint2:#f1d24e}
.card.t-psychic{--type:#9d63c9;--deep:#5f3487;--tint:#e0ccef;--tint2:#bd9ad9}
.card.t-fighting{--type:#c77a3a;--deep:#8a4d1c;--tint:#efd3b6;--tint2:#dcae78}
.card.t-darkness{--type:#3a4650;--deep:#1a2229;--tint:#c3ccd3;--tint2:#8794a0}
.card.t-metal{--type:#a0a8b2;--deep:#5f6870;--tint:#dfe3e7;--tint2:#b6bdc5}
.card.t-fairy{--type:#ec86c0;--deep:#b5457f;--tint:#f7cfe3;--tint2:#eea6cb}
.card.t-dragon{--type:#d29a3a;--deep:#8f6014;--tint:#eedbb0;--tint2:#d8b56a}
.card.t-colorless{--type:#d8d4c8;--deep:#8c877a;--tint:#ecebe4;--tint2:#d2cfc3}
/* frame-bank face: a generated card face replaces the CSS frame; the template's text sits on top */
.card.has-frame{background:#f4d34a}
.card.has-frame .frame{background:var(--frame-img) center/cover no-repeat;box-shadow:none;left:0;top:0;right:0;bottom:0;border-radius:0.1in}
.card.has-frame.bleed .frame{border-radius:0}
.card.has-frame .frame::before{display:none}
/* Replace a generated frame's unfinished lower edge with its matching upper edge.
   This is opt-in per frame; art and calibrated text positions stay independent. */
.card.has-frame.repair-footer .frame::after{content:"";position:absolute;left:0;right:0;bottom:0;height:0.245in;
  background:var(--frame-img) center top/2.5in 3.5in no-repeat;transform:scaleY(-1)}
.card.has-frame .artwrap{left:var(--ax,0.19in);top:var(--ay,0.47in);width:var(--aw,2.12in);height:var(--ah,1.52in);padding:0;background:none;box-shadow:none;border-radius:0}
.card.has-frame .artwrap::after{display:none}
.card.has-frame .species{left:0.36in;right:0.36in;top:var(--sy,2.085in);height:0.15in;line-height:0.15in}
.card.has-frame .attacks{top:var(--aty,2.28in);height:var(--ath,0.72in)}
.card.has-frame .wrr{top:var(--wy,3.005in);height:0.20in;padding-top:0.01in}
.card.has-frame .wrr>div{font-size:4.2pt;gap:0.01in}
.card.has-frame .wrr .value{min-height:0.11in}
.card.has-frame .wrr .en{width:0.11in!important;height:0.11in!important}
.card.has-frame .flavor{top:var(--fy,3.215in);height:var(--fh,0.125in)}
.card.has-frame.species-plain .species{background:none;box-shadow:none;font-weight:700;font-style:italic}
.card.has-frame.flavor-plain .flavor{background:none;border-color:transparent}
.card.has-frame.dark{color:#f4f4f4}
.card.has-frame.dark .stage,.card.has-frame.dark .stage .ev,.card.has-frame.dark .atk .at,.card.has-frame.dark .foot,.card.has-frame.dark .wrr div,.card.has-frame.dark .name{color:#f4f4f4}
.card.has-frame.no-species .species{display:none}
/* ===== sports kind: full-bleed art front, stats back ===== */
.card.sports{background:#fff;--team:#1d4ed8;--team2:#0f2a6b;font-family:Cabin,"Gill Sans","Trebuchet MS",sans-serif}
.card.sports .frame{display:none}
.card.sports .sart{position:absolute;left:0.06in;top:0.06in;right:0.06in;bottom:0.06in;overflow:hidden;background:#cfd8dc;border-radius:0.06in}
.card.sports .sart img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:var(--ox,50%) var(--oy,50%)}
.card.sports .sart .empty{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:6pt;color:#667}
.card.sports .sart .holo{position:absolute;inset:0;pointer-events:none;mix-blend-mode:color-dodge;opacity:.5;
  background:linear-gradient(115deg,rgba(255,0,128,0) 20%,rgba(255,220,0,.55) 35%,rgba(0,255,200,.55) 50%,rgba(120,80,255,.55) 65%,rgba(255,0,128,0) 80%);background-size:220% 220%;background-position:var(--mx,50%) var(--my,50%)}
.card.sports.print .sart .holo{display:none}
.card.sports .band{position:absolute;left:0.06in;right:0.06in;bottom:0.06in;height:0.72in;
  background:linear-gradient(100deg,var(--team) 0 62%,var(--team2) 62% 100%);clip-path:polygon(0 22%,60% 22%,66% 0,100% 0,100% 100%,0 100%);color:#fff}
.card.sports .band::before{content:"";position:absolute;left:0;right:0;top:0.16in;height:0.012in;background:rgba(255,255,255,.55)}
.card.sports .sname{position:absolute;left:0.14in;bottom:0.28in;font-size:13pt;font-weight:700;text-transform:uppercase;letter-spacing:.02em;line-height:1;white-space:nowrap;overflow:hidden;max-width:1.7in;text-shadow:0 0.01in 0.02in rgba(0,0,0,.4);color:#fff}
.card.sports .ssub{position:absolute;left:0.14in;bottom:0.12in;font-size:6pt;font-weight:700;text-transform:uppercase;letter-spacing:.12em;opacity:.92;white-space:nowrap;color:#fff}
.card.sports .num{position:absolute;right:0.14in;bottom:0.13in;font-size:22pt;font-weight:700;line-height:1;letter-spacing:-.03em;text-shadow:0 0.01in 0.02in rgba(0,0,0,.4);color:#fff}
.card.sports .num small{font-size:7pt;vertical-align:top;margin-right:0.01in}
.card.sports .setlogo{position:absolute;left:0.14in;top:0.14in;background:rgba(0,0,0,.55);color:#fff;font-size:4.5pt;font-weight:700;letter-spacing:.16em;text-transform:uppercase;padding:0.03in 0.06in;border-radius:0.03in;border:0.008in solid rgba(255,255,255,.6)}
.card.sports .rc{position:absolute;right:0.14in;top:0.14in;background:var(--team);color:#fff;font-size:5pt;font-weight:700;letter-spacing:.1em;padding:0.03in 0.06in;border-radius:0.03in;border:0.008in solid #fff;box-shadow:0 0 0 0.008in var(--team)}
.card.sports .pos{position:absolute;right:0.14in;top:0.42in;background:#fff;color:var(--team2);font-size:5pt;font-weight:700;letter-spacing:.1em;padding:0.025in 0.05in;border-radius:0.03in}
/* sports back */
.card.sback{background:#f3f1ea;color:#1a1f24;--team:#1d4ed8;--team2:#0f2a6b;font-family:Cabin,"Gill Sans","Trebuchet MS",sans-serif}
.card.sback .frame{display:none}
.card.sback .bh{position:absolute;left:0.06in;top:0.06in;right:0.06in;height:0.62in;background:linear-gradient(100deg,var(--team),var(--team2));color:#fff;border-radius:0.06in 0.06in 0 0;padding:0.1in 0.14in;box-sizing:border-box}
.card.sback .bh .n{font-size:11pt;font-weight:700;text-transform:uppercase;letter-spacing:.02em;line-height:1;white-space:nowrap;overflow:hidden}
.card.sback .bh .s{font-size:5.5pt;font-weight:700;letter-spacing:.12em;text-transform:uppercase;opacity:.9;margin-top:0.05in}
.card.sback .bh .j{position:absolute;right:0.14in;top:0.1in;font-size:20pt;font-weight:700;line-height:1;letter-spacing:-.03em}
.card.sback .bthumb{position:absolute;left:0.14in;top:0.78in;width:0.62in;height:0.62in;border-radius:50%;overflow:hidden;border:0.02in solid var(--team);background:#ddd}
.card.sback .bthumb img{width:100%;height:100%;object-fit:cover}
.card.sback .bio{position:absolute;left:0.86in;right:0.14in;top:0.78in;height:0.66in;font-size:5.2pt;line-height:1.25;overflow:hidden;color:#222}
.card.sback .bio b{display:block;font-size:4.5pt;letter-spacing:.12em;text-transform:uppercase;color:var(--team2);margin-bottom:0.02in}
.card.sback .facts{position:absolute;left:0.14in;right:0.14in;top:1.5in;display:grid;grid-template-columns:repeat(3,1fr);gap:0.04in}
.card.sback .facts div{background:#fff;border:0.006in solid #d8d4c8;border-radius:0.03in;padding:0.03in 0.04in;font-size:5pt;line-height:1.2}
.card.sback .facts b{display:block;font-size:4pt;letter-spacing:.1em;text-transform:uppercase;color:var(--team2)}
.card.sback table{position:absolute;left:0.14in;right:0.14in;top:1.86in;border-collapse:collapse;width:2.22in;font-size:5pt;line-height:1.1}
.card.sback th{background:var(--team2);color:#fff;font-weight:700;font-size:4.3pt;letter-spacing:.06em;text-transform:uppercase;padding:0.025in 0.02in;text-align:right}
.card.sback th:first-child,.card.sback td:first-child{text-align:left}
.card.sback th:nth-child(2),.card.sback td:nth-child(2){text-align:left}
.card.sback td{padding:0.022in 0.02in;text-align:right;border-bottom:0.006in solid #ddd8cc;font-variant-numeric:tabular-nums;white-space:nowrap}
.card.sback tr.tot td{font-weight:700;border-top:0.008in solid var(--team);border-bottom:0;background:#faf8f2}
.card.sback .bfoot{position:absolute;left:0.14in;right:0.14in;bottom:0.1in;display:flex;justify-content:space-between;font-size:4.2pt;color:#555;letter-spacing:.04em}
/* fallback energy dot when energy.js is absent */
.card .en.dot{border-radius:50%;background:var(--type);box-shadow:inset 0 0 0 0.01in #fff,0 0 0 0.008in var(--deep)}

.card .en svg{display:block;width:100%;height:100%}
.card.frozen>img{display:block;width:100%;height:100%;object-fit:fill}
/* Wedding keepsakes share the physical trim size, with their own visual language. */
.card.wedding{background:#f9f5ed;color:#31372e;font-family:Georgia,'Times New Roman',serif;--accent:#66765d}
.wedding .wed-border{position:absolute;inset:.10in;border:.006in solid var(--accent);box-shadow:inset 0 0 0 .035in #f9f5ed,inset 0 0 0 .04in #c9c5b6;opacity:.8}
.wedding .wed-eyebrow{position:absolute;top:.24in;left:.23in;right:.23in;text-align:center;font:5pt Cabin,Arial,sans-serif;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);overflow:hidden;white-space:nowrap}
.wedding .wed-photo{position:absolute;left:.24in;top:.52in;width:2.02in;height:1.79in;overflow:hidden;background:#e3e6dc;border-radius:1.02in 1.02in .015in .015in;display:grid;place-items:center;font-size:7pt;color:var(--accent)}
.wedding .wed-photo img{width:100%;height:100%;object-fit:cover;object-position:var(--ox) var(--oy)}
.wedding .wed-name{position:absolute;top:2.43in;left:.20in;right:.20in;height:.43in;display:flex;align-items:center;justify-content:center;text-align:center;line-height:1.08;overflow:hidden;color:var(--accent)}
.wedding .wed-role{position:absolute;top:2.91in;left:.23in;right:.23in;text-align:center;font:5.5pt Cabin,Arial,sans-serif;letter-spacing:.06em;white-space:nowrap;overflow:hidden}
.wedding .wed-date{position:absolute;top:3.14in;left:.2in;right:.2in;text-align:center;font-size:6pt;letter-spacing:.04em}
.wedding .wed-footer{position:absolute;top:3.31in;left:.2in;right:.2in;text-align:center;font:3.5pt Cabin,Arial,sans-serif;color:#68705f;white-space:nowrap;overflow:hidden}
.wedding .wed-ornament{position:absolute;top:.63in;left:0;right:0;text-align:center;font-size:27pt;color:var(--accent)}
.wedding .wed-back-title{position:absolute;top:1.13in;left:.28in;right:.28in;text-align:center;font-size:14pt;color:var(--accent);line-height:1.15;max-height:.55in;overflow:hidden}
.wedding .wed-message{position:absolute;top:1.83in;left:.35in;right:.35in;height:1.13in;text-align:center;font-size:7pt;line-height:1.4;white-space:pre-line;overflow:hidden}
.wedding.wed-playful{background:#fff0dc;--accent:#b75236}
.wedding.wed-playful .wed-photo{border-radius:.06in;border:.015in solid var(--accent);height:1.64in}
.wedding.wed-playful .wed-name{top:2.23in;height:.36in;font-weight:bold}
.wedding.wed-playful .wed-role{top:2.66in}
.wedding .wed-attributes{position:absolute;top:2.83in;left:.22in;right:.22in;display:flex;justify-content:center;gap:.06in;font:4pt Cabin,Arial,sans-serif;text-align:center}
.wedding .wed-attributes span{flex:1;min-width:0;border-top:.007in solid var(--accent);padding-top:.04in;overflow:hidden}
.wedding .wed-attributes b{display:block;font-size:7pt;color:var(--accent);margin-bottom:.015in}

/* Era library: printable vector/CSS frames. Design years never change collection dates. */
.card.pokemon-era .frame{box-shadow:inset 0 0 0 .009in #887128}
.card.pokemon-era .era-header,.card.pokemon-era .era-panel{position:absolute;pointer-events:none}
.card.pk-1999 .frame{border-radius:.025in}
.card.pk-1999 .name{font-family:Arial,sans-serif;letter-spacing:-.03em}
.card.pk-1999 .species{font-family:Georgia,serif;font-size:4.2pt}
/* Neo Genesis: finely ruled picture surround and quiet, pale information panel. */
.card.pk-2000{background:linear-gradient(115deg,#ffe270,#e5bb37 50%,#ffe277)}
.card.pk-2000 .frame{background:radial-gradient(ellipse at 80% 20%,#fff9 0,transparent 55%),linear-gradient(125deg,var(--tint),var(--type));border-radius:.045in}
.card.pk-2000 .era-panel{left:.15in;right:.15in;top:2.08in;bottom:.15in;background:linear-gradient(95deg,#fff8,var(--tint));border-top:.008in solid var(--deep)}
.card.pk-2000 .artwrap{top:.46in;height:1.46in;padding:.02in;background:linear-gradient(135deg,#fffbe3,#ba9745,#fffbe0);box-shadow:0 0 0 .012in var(--deep),0 0 0 .022in #fff0b6}
.card.pk-2000 .species{background:linear-gradient(#fffdf0,#dbd5b5);box-shadow:none;border-top:.007in solid #6e715c;border-bottom:.007in solid #6e715c;font-style:normal;font-size:4.3pt}
.card.pk-2000 .hp{color:#111}
.card.pk-2000 .flavor{border:0;background:none}
.card.pk-2000 .setsym{border-radius:0;transform:rotate(45deg);box-shadow:none;background:#252c29}
/* Expedition: offset e-Card rail; the dots are decorative, not scannable data. */
.card.pk-2002{background:linear-gradient(100deg,#f8da42,#fce779 60%,#eabf35)}
.card.pk-2002 .frame{left:.31in;right:.10in;top:.11in;bottom:.22in;border-radius:.11in .11in .03in .03in;background:linear-gradient(135deg,var(--tint),var(--type) 48%,var(--tint));box-shadow:inset 0 0 0 .012in var(--deep)}
.card.pk-2002 .ecard-rail{position:absolute;left:.075in;top:.18in;bottom:.25in;width:.12in;border-left:.014in solid #6d6129;border-right:.008in solid #9d8430;background:radial-gradient(#5f5630 .005in,transparent .008in) 0 0/.033in .04in}
.card.pk-2002 .ecard-code{position:absolute;left:.31in;right:.15in;bottom:.055in;height:.09in;border-top:.008in solid #887228;border-bottom:.008in solid #887228;background:radial-gradient(#554b24 .005in,transparent .009in) 0 0/.03in .03in}
.card.pk-2002 .stage{left:.38in;top:.145in}
.card.pk-2002 .name{left:.38in;top:.265in;right:.72in;font-family:Arial,sans-serif}
.card.pk-2002 .hp{right:.38in;color:#151b19;font-size:9pt;top:.28in}
.card.pk-2002 .hp small{font-size:5.5pt}.card.pk-2002 .hpbadge{right:.14in;top:.245in}
.card.pk-2002 .artwrap{left:.39in;top:.49in;width:1.94in;height:1.34in;border-radius:.09in .09in 0 0;padding:.016in;background:linear-gradient(115deg,#fff6bd,#8e731d,#fff2a7);box-shadow:0 0 0 .012in var(--deep)}
.card.pk-2002 .art{border-radius:.075in .075in 0 0}.card.pk-2002 .artwrap:after{display:none}
.card.pk-2002 .species{left:.39in;right:.17in;top:1.865in;background:none;box-shadow:none;font-style:normal;font-size:4pt}
.card.pk-2002 .attacks{left:.38in;right:.17in;top:2.06in;height:.69in}
.card.pk-2002 .atk{grid-template-columns:.51in minmax(0,1fr) .23in;column-gap:.025in}.card.pk-2002 .atk .cost{max-width:.51in;gap:.012in}.card.pk-2002 .atk .cost .en{width:.12in!important;height:.12in!important}
.card.pk-2002 .wrr{left:.38in;right:.17in;top:2.79in}.card.pk-2002 .flavor{left:.38in;right:.17in;top:3.035in;height:.175in;border:0;background:none}
.card.pk-2002 .foot{left:.38in;right:.17in;top:3.225in}.card.pk-2002 .copy{bottom:.17in;left:.3in;font-size:2.6pt}
.card.pk-2002.has-ev .evthumb{left:.34in;top:.12in;width:.25in;height:.25in}
.card.pk-2002.has-ev .stage{left:.64in;top:.135in;font-size:3.5pt}.card.pk-2002.has-ev .stage .ev{font-size:3.2pt;margin-left:.015in}.card.pk-2002.has-ev .name{left:.64in;font-size:9pt!important}
/* Ruby & Sapphire ex: metallic perimeter and round-cornered inset art. */
.card.pk-2003{background:linear-gradient(122deg,#fff,#8b969e 15%,#f5f9fb 26%,#7b868f 47%,#f5f8fa 66%,#9ca8ac 88%,#fff)}
.card.pk-2003 .frame{left:.095in;right:.095in;top:.095in;bottom:.105in;border-radius:.14in;background:linear-gradient(155deg,#fffd,var(--tint) 38%,var(--type));box-shadow:inset 0 0 0 .012in #354953}
.card.pk-2003 .era-header{left:.105in;right:.105in;top:.105in;height:.34in;border-radius:.14in .14in 0 .11in;background:linear-gradient(165deg,#fff,#ccd6da 62%,#8fa2af);border-bottom:.014in solid #547082}
.card.pk-2003 .stage{top:.14in;font-size:4pt}.card.pk-2003 .name{top:.255in}.card.pk-2003 .hp{color:#222;top:.265in}
.card.pk-2003 .artwrap{left:.18in;top:.49in;width:2.14in;height:1.43in;padding:.025in;border-radius:.15in .045in .15in .045in;background:linear-gradient(130deg,#fdfefe,#667884 44%,#fff 64%,#84949c);box-shadow:0 0 0 .009in #4e5d68}
.card.pk-2003 .art{border-radius:.12in .02in .12in .02in}.card.pk-2003 .artwrap:after{display:none}
.card.pk-2003 .species{background:#eef4f799;box-shadow:none;border-radius:.07in;font-style:normal;color:#253644}
.card.pk-2003 .era-panel{left:.15in;right:.15in;top:2.1in;bottom:.15in;border-radius:.1in;background:linear-gradient(120deg,#ffffffc9,#ffffff35)}
.card.pk-2003 .flavor{border:0;background:none}.card.pk-2003 .setsym{background:#273e53;border-radius:0;clip-path:polygon(0 0,100% 30%,80% 100%,20% 80%);box-shadow:none}
/* Diamond & Pearl: broad silver heading and a faceted art mat. */
.card.pk-2007 .frame{background:linear-gradient(140deg,var(--tint),#fafbf3 65%,var(--tint2));border-radius:.10in}
.card.pk-2007 .era-header{left:.115in;right:.115in;top:.115in;height:.33in;background:linear-gradient(#fff,#d8dee0 50%,#f7f8f8);border-bottom:.02in solid var(--deep);border-radius:.09in .09in .13in 0}
.card.pk-2007 .name{top:.25in}.card.pk-2007 .hp{color:#181d20}.card.pk-2007 .stage{font-size:4pt;top:.14in;letter-spacing:.05em;text-transform:uppercase}
.card.pk-2007 .artwrap{left:.19in;width:2.12in;top:.49in;padding:.035in;background:linear-gradient(135deg,#fff,#84959b 35%,#f3f7f8 60%,#697b87);box-shadow:0 .02in .025in #263c5360;border-radius:.035in}
.card.pk-2007 .species{background:linear-gradient(90deg,var(--type),#fff9,var(--type));box-shadow:none;font-style:normal;border-bottom:.008in solid var(--deep)}
.card.pk-2007 .era-panel{left:.15in;right:.15in;top:2.11in;bottom:.17in;background:linear-gradient(#ffffffc4,#ffffff35);border-top:.007in solid #fff}
.card.pk-2007 .atk + .atk{border-top:.007in solid #60686b50}.card.pk-2007 .flavor{border:0;border-top:.005in solid #697880;background:none}
/* Chrome-inspired sports: each year owns its photo proportions and identity panel. */
.card.sports.chrome-era{background:linear-gradient(115deg,#747f86,#fafafa 17%,#aebcc1 29%,#f5f6f6 48%,#7a898f 73%,#edf3f4 89%,#b4c0c4)}
.card.sports.chrome-era .sart{left:.18in;right:.18in;top:.16in;bottom:.54in;border-radius:0;box-shadow:0 0 0 .008in #182c36,0 0 0 .018in #fff,0 0 0 .024in #647078}
.card.sports.chrome-era .setlogo{display:none}.card.sports.chrome-era .band:before{display:none}
.card.sports.chrome-era .band{left:.17in;right:.17in;bottom:.14in;height:.31in;clip-path:none;border-radius:0;background:linear-gradient(180deg,#e5edf0,#9aaab1 50%,#dce6e9);border-top:.008in solid #47565b;border-bottom:.008in solid #fbffff}
.card.sports.chrome-era .sname{left:.21in;right:.21in;bottom:.29in;max-width:none;height:.16in;color:#162a32;font-family:Georgia,serif;font-weight:bold;font-size:9pt!important;line-height:1.2;text-align:center;letter-spacing:.025em;text-shadow:0 1px #ffffff9c}
.card.sports.chrome-era .ssub{left:.23in;right:.23in;bottom:.14in;font-size:4.3pt;height:.10in;line-height:1.1;color:#243941;text-align:center;letter-spacing:.08em;overflow:hidden}
.card.sports.chrome-era .num{bottom:.035in;right:.2in;font:5pt Cabin,Arial,sans-serif;color:#223f4a;text-shadow:none;letter-spacing:0}.card.sports.chrome-era .num small{font-size:4pt}
.card.sports.chrome-era .pos{top:.27in!important;right:.27in;max-width:1.25in;overflow:hidden;font-size:4pt;background:#f5f6f2dc;color:#20353d;border:.007in solid #b8c9ce}
.card.sports.chrome-era .rc{top:.22in;left:.23in;right:auto;max-width:.65in;font:italic bold 4.2pt Georgia,serif;border-color:#dee5e8;background:#e4ecefdc;color:#1b333e;box-shadow:0 0 0 .008in #566b76}
.card.sports.chrome-era .chrome-trim{position:absolute;inset:.085in;pointer-events:none;border:.01in solid #fff8;box-shadow:inset 0 0 0 .008in #293f474d}
.card.sports.chrome-era .chrome-brand{position:absolute;left:.25in;bottom:.61in;display:flex;flex-direction:column;align-items:center;color:#eaf3f7;text-shadow:-1px -1px #344750,1px 1px #344750;transform:rotate(-5deg)}
.card.sports.chrome-era .chrome-brand i{font:bold italic 10pt Georgia,serif;letter-spacing:-.08em;line-height:.85}.card.sports.chrome-era .chrome-brand b{font:bold 4.5pt Arial,sans-serif;letter-spacing:.15em;line-height:1.3}
.card.sports.chrome-era .chrome-year{position:absolute;left:.2in;bottom:.04in;font:3.5pt Cabin,Arial,sans-serif;color:#263d48;letter-spacing:.1em}
.card.sports.tc-1999{background:linear-gradient(125deg,#eaf1f5,#7d8e9a 21%,#f3f7f8 40%,#a3b1bc 76%,#e4ecf2)}
.card.sports.tc-1999 .sart{left:.11in;right:.11in;top:.12in;bottom:.17in}.card.sports.tc-1999 .sart:after{content:"";position:absolute;inset:0;pointer-events:none;box-shadow:inset .09in 0 .17in #101a23a8,inset -.09in 0 .17in #101a23a8,inset 0 -.3in .25in #0b161bbf}
.card.sports.tc-1999 .band{left:.24in;right:.24in;bottom:.25in;height:.33in;border-radius:50% / 25%;background:linear-gradient(#e9f0f3,#869da8 48%,#c0d0d6 54%,#fafdfd);border:.012in solid #e7f0f3;box-shadow:0 0 0 .008in #182a35}
.card.sports.tc-1999 .sname{bottom:.36in;left:.3in;right:.3in;font-size:8.5pt!important}.card.sports.tc-1999 .ssub{bottom:.25in;color:#263a44;font-size:3.8pt;left:.3in;right:.3in}
.card.sports.tc-1999 .chrome-brand{left:.22in;bottom:.7in}.card.sports.tc-1999 .chrome-year{bottom:.045in}.card.sports.tc-1999 .num{bottom:.045in}
.card.sports.tc-2001{background:linear-gradient(118deg,#054f50,#35898a 20%,#0c5c60 44%,#317a7c 63%,#064951 87%,#399495)}
.card.sports.tc-2001 .sart{left:.23in;right:.23in;top:.24in;bottom:.58in;box-shadow:0 0 0 .012in #c6dce1,0 0 0 .025in #152e37,0 0 0 .035in #98b7be}
.card.sports.tc-2001 .band{left:.19in;right:.19in;bottom:.17in;height:.3in;background:linear-gradient(100deg,#adcccd,#e9f2ef 45%,#8cb1b5);border:.01in solid #123e44}
.card.sports.tc-2001 .sname{bottom:.32in;font-size:9pt!important}.card.sports.tc-2001 .ssub{bottom:.18in;color:#153b40}
.card.sports.tc-2001 .chrome-brand{left:.32in;bottom:.68in}.card.sports.tc-2001 .chrome-year,.card.sports.tc-2001 .num{color:#d7eeee}
.card.sports.tc-2001 .chrome-trim{inset:.1in;border-color:#93b7b8;box-shadow:inset 0 0 0 .008in #092f35}
.card.sports.tc-2001 .rc{left:.30in;top:.3in}.card.sports.tc-2001 .pos{right:.3in;top:.30in!important}
.card.sports.tc-2003{background:repeating-linear-gradient(90deg,#2863b655 0 .009in,#0b326322 .009in .024in),linear-gradient(110deg,#073777,#376bb5 25%,#082555 53%,#447cbf 80%,#0b3979)}
.card.sports.tc-2003 .sart{left:.19in;right:.19in;top:.2in;bottom:.49in;box-shadow:0 0 0 .009in #e1ecf2,0 0 0 .025in #0c1f4d}
.card.sports.tc-2003 .band{left:.17in;right:.17in;bottom:.15in;height:.34in;background:linear-gradient(130deg,#142f57,#28599c 56%,#153764);border-color:#9cb6d4}
.card.sports.tc-2003 .chrome-portrait{position:absolute;left:.24in;bottom:.18in;width:.52in;height:.52in;border-radius:50%;border:.025in solid #b9c5d3;box-shadow:0 0 0 .009in #16283f;overflow:hidden;background:#bdd1e2}
.card.sports.tc-2003 .chrome-portrait img{width:100%;height:100%;object-fit:cover}
.card.sports.tc-2003 .sname{left:.84in;right:.22in;bottom:.32in;text-align:left;color:#eef6ff;text-shadow:0 1px #081e37;font-family:Arial,sans-serif;font-size:8.2pt!important;letter-spacing:0}
.card.sports.tc-2003 .ssub{left:.84in;right:.22in;bottom:.17in;text-align:left;color:#b4cde4;font-size:3.8pt;letter-spacing:0}
.card.sports.tc-2003 .chrome-brand{top:.29in;bottom:auto;left:.29in}.card.sports.tc-2003 .rc{left:auto;right:.27in;top:.27in}.card.sports.tc-2003 .pos{top:.49in!important}
.card.sports.tc-2003 .chrome-year,.card.sports.tc-2003 .num{color:#d1e1f4}
/* Matching era backs keep stats readable on ordinary home-print stock. */
.card.sback.chrome-era{background:linear-gradient(125deg,#abb9c2,#f4f5f0 28%,#c5d0d5);color:#19313e}
.card.sback.chrome-era .inner:before{content:"";position:absolute;inset:.1in;background:#f8f7ee;border:.012in solid #526672;border-radius:.025in}
.card.sback.chrome-era .bh{left:.16in;right:.16in;top:.17in;height:.51in;background:linear-gradient(120deg,#3d5260,#758b94);border-radius:0;border-bottom:.025in solid #b9c9ca;padding:.075in .08in}
.card.sback.chrome-era .bh .n{max-width:1.6in;font-size:9pt}.card.sback.chrome-era .bh .j{right:.08in;font-size:15pt}
.card.sback.chrome-era .bthumb{left:.20in;top:.79in;border-color:#849aa5}.card.sback.chrome-era .bio{left:.94in;right:.21in;top:.79in}
.card.sback.chrome-era .facts{left:.2in;right:.2in}.card.sback.chrome-era table{left:.20in;right:.20in;width:2.10in;font-size:4.5pt}.card.sback.chrome-era th{background:#435c69}
.card.sback.chrome-era .bfoot{left:.2in;right:.2in;bottom:.24in;font-size:3.5pt}
.card.sback.chrome-era .chrome-backmark{position:absolute;left:.2in;right:.2in;bottom:.13in;font:3.5pt Cabin,Arial,sans-serif;letter-spacing:.15em;text-align:center;color:#334e61}
.card.sback.tc-1999 .inner:before{background:#eef0e9}.card.sback.tc-1999 .bh{border-radius:.1in .1in 0 0;background:linear-gradient(100deg,#233746,#8f9f9d)}
.card.sback.tc-2001{background:linear-gradient(125deg,#084f50,#328587,#0a535c)}.card.sback.tc-2001 .inner:before{border-color:#a9c4c5}.card.sback.tc-2001 .bh,.card.sback.tc-2001 th{background:#155c60}.card.sback.tc-2001 .chrome-backmark{color:#2b6f71}
.card.sback.tc-2003{background:linear-gradient(110deg,#083277,#3769aa,#113264)}.card.sback.tc-2003 .bh,.card.sback.tc-2003 th{background:#214b7a}.card.sback.tc-2003 .inner:before{border-color:#8ca9c8}.card.sback.tc-2003 .chrome-backmark{color:#244d7c}

/* One crop model for live cards, approved snapshots and print exports. */
.card .art img,.card .sart img,.card .wed-photo img,.card .chrome-portrait img,.card .bthumb img{object-position:var(--ox,50%) var(--oy,50%);transform:scale(var(--zoom,1));transform-origin:var(--ox,50%) var(--oy,50%);display:block}

/* Modern ex: a continuous illustration under readable translucent rules. */
.card.pk-2023-ex{background:linear-gradient(125deg,#fdfefe,#88959c 18%,#fff 35%,#a0a9ae 62%,#f8fafb 85%,#72848c)}
.card.pk-2023-ex .frame{inset:.075in;border-radius:.07in;background:var(--tint);box-shadow:0 0 0 .012in #52616b}
.card.pk-2023-ex .frame:before{display:none}
.card.pk-2023-ex .artwrap{left:.08in;top:.08in;width:2.34in;height:3.34in;padding:0;border-radius:.065in;background:none;box-shadow:none;z-index:1}
.card.pk-2023-ex .artwrap:after{display:none}
.card.pk-2023-ex .art{border-radius:inherit}
.card.pk-2023-ex .era-header{left:.08in;right:.08in;top:.08in;height:.41in;z-index:2;border-radius:.06in .06in 0 0;background:linear-gradient(#fffffff0,#ffffffc2 75%,#ffffff00)}
.card.pk-2023-ex .era-panel{left:.08in;right:.08in;top:1.94in;bottom:.08in;z-index:2;background:linear-gradient(#ffffff00,#ffffffa8 13%,#ffffffc9 85%,#fffffff0);border-radius:0 0 .06in .06in}
.card.pk-2023-ex :is(.stage,.evthumb,.name,.hp,.hpbadge,.attacks,.wrr,.flavor,.foot,.ex-rule){z-index:3}
.card.pk-2023-ex .name{display:flex;gap:.035in;align-items:baseline;right:.76in;top:.245in;overflow:visible;text-shadow:0 1px 2px #fff}
.card.pk-2023-ex .name-text{min-width:0;overflow:hidden;text-overflow:ellipsis}
.card.pk-2023-ex .ex-mark{flex-shrink:0;font:bold italic 13pt Arial,sans-serif;letter-spacing:-.06em;color:#253d40;-webkit-text-stroke:.3px #fff}
.card.pk-2023-ex .hp{color:#18272c;top:.26in;right:.38in;font-size:10pt}
.card.pk-2023-ex .hp small{font-size:5pt}
.card.pk-2023-ex .hpbadge{right:.13in}
.card.pk-2023-ex .species{display:none}
.card.pk-2023-ex .attacks{top:2.09in;height:.68in;left:.17in;right:.17in}
.card.pk-2023-ex .atk + .atk{border-top:.005in solid #65747266}
.card.pk-2023-ex .atk.only-attack .an{text-align:left}
.card.pk-2023-ex .wrr{top:2.83in;left:.17in;right:.17in;border-color:#6f7f7e}
.card.pk-2023-ex .flavor{top:3.085in;height:.11in;left:.17in;right:.17in;background:none;border:none;padding:0;font-size:3.8pt!important}
.card.pk-2023-ex .ex-rule{position:absolute;left:.15in;right:.15in;top:3.22in;height:.12in;border-radius:.025in;background:#dce5e2;border:.005in solid #a7b8b4;font:3.7pt/1.15 Arial,sans-serif;padding:.014in .025in;overflow:hidden}
.card.pk-2023-ex .ex-rule b{font-weight:bold;margin-right:.035in}
.card.pk-2023-ex .foot{top:3.37in;left:.16in;right:.16in}
.card.pk-2023-ex .setsym{background:#354d47;box-shadow:none;border-radius:.01in}
/* Original Elliecards decks: shared screen and 300 dpi print renderer. */
.card.deck-card{background:#f5f0e5;color:#273c32;font-family:Georgia,serif;--deck-accent:#426951}
.deck-card .inner{padding:.23in .24in .3in;display:flex;flex-direction:column;gap:.12in;overflow:hidden}
.deck-card .deck-kicker{font:5.5pt Cabin,sans-serif;letter-spacing:.08em;text-transform:uppercase;color:var(--deck-accent);position:relative;z-index:1;overflow:hidden;max-height:.27in}
.deck-card .deck-content{position:relative;flex:1;min-height:0;display:flex;flex-direction:column;justify-content:center;gap:.13in;z-index:1}
.deck-card .deck-title{font-size:17pt;line-height:1.1;letter-spacing:-.02em;overflow:hidden;max-height:.77in;overflow-wrap:anywhere}
.deck-card .deck-question{font-size:15pt;line-height:1.25;overflow:hidden;overflow-wrap:anywhere;white-space:pre-wrap;max-height:2in}
.deck-card.deck-is-question .deck-title{font:6pt Cabin,sans-serif;text-transform:uppercase;letter-spacing:.06em;max-height:.3in;color:var(--deck-accent)}
.deck-card .deck-subtitle{font:8pt/1.4 Cabin,sans-serif;max-height:.5in;overflow:hidden;white-space:pre-wrap}
.deck-card .deck-message{font:10pt/1.45 Georgia,serif;max-height:1.7in;overflow:hidden;overflow-wrap:anywhere;white-space:pre-wrap}
.deck-card .deck-foot{position:absolute;bottom:.14in;left:.24in;right:.24in;display:flex;justify-content:space-between;gap:.1in;font:4.5pt Cabin,sans-serif;letter-spacing:.04em;text-transform:uppercase;border-top:.006in solid currentColor;padding-top:.07in;opacity:.75}
.deck-foot span:first-child{max-width:1.55in;overflow:hidden;white-space:nowrap}
.deck-card .deck-photo{height:1.72in;flex-shrink:0;border-radius:.8in .8in .04in .04in;overflow:hidden;position:relative}
.deck-card .deck-photo img{width:100%;height:100%;object-fit:cover;object-position:var(--ox) var(--oy);transform:scale(var(--zoom));transform-origin:var(--ox) var(--oy)}
.deck-card.deck-is-question:has(.deck-photo) .deck-photo{height:1in;border-radius:.03in}
.deck-card.deck-is-question:has(.deck-photo) .deck-question{font-size:11pt;max-height:1.2in}
.deck-card .deck-ornament{position:absolute;inset:.12in;border:.009in solid var(--deck-accent);opacity:.35;pointer-events:none}
.deck-card.deck-sans .deck-title,.deck-card.deck-sans .deck-question,.deck-card.deck-sans .deck-message{font-family:Cabin,sans-serif}
.deck-card .deck-memory{display:flex;align-items:center;gap:.12in;font:5pt/1.4 Cabin,sans-serif;margin-top:auto}
.deck-card .deck-memory img{height:.75in;width:.75in;image-rendering:pixelated;background:white}
.deck-card.deck-back:has(.deck-memory) .deck-message{max-height:1.25in}
.deck-card.deck-botanical{background:radial-gradient(ellipse at 95% 10%,#d0dfc2 0,transparent 45%),#faf7ea}.deck-botanical .deck-ornament{border-radius:.8in .05in .8in .05in;inset:.09in}
.deck-card.deck-editorial{background:#fffaf1}.deck-editorial .deck-kicker{border-bottom:.04in solid var(--deck-accent);padding-bottom:.1in}.deck-editorial .deck-ornament{display:none}.deck-editorial .deck-title{font-weight:bold;font-size:21pt}.deck-editorial .deck-photo{border-radius:0}
.deck-card.deck-midnight{background:#172b32;color:#f6e6b7}.deck-midnight .deck-kicker,.deck-midnight.deck-is-question .deck-title{color:#ddc991}.deck-midnight .deck-ornament{border-color:#ddc991;inset:.09in;border-width:.025in}
.deck-card.deck-confetti{background:radial-gradient(circle at 95% 12%,#f1b1a8 0 .23in,transparent .24in),radial-gradient(circle at 0% 90%,#ddad45 0 .4in,transparent .41in),#f8f0e4}.deck-confetti .deck-ornament{border-style:dashed;border-width:.012in}.deck-confetti .deck-photo{border-radius:.15in}
.deck-card.deck-sunrise{background:linear-gradient(170deg,#f9dbc1,#f9efdd 55%,#cbdcd2)}.deck-sunrise .deck-ornament{border-radius:1.2in 1.2in .08in .08in}.deck-sunrise .deck-kicker{text-align:center}.deck-sunrise .deck-content{text-align:center}
.deck-card.deck-varsity{background:linear-gradient(90deg,var(--deck-accent) .09in,#fcf8ec .09in, #fcf8ec 2.41in,var(--deck-accent) 2.41in)}.deck-varsity .deck-title{font-family:Cabin,sans-serif;font-weight:900;text-transform:uppercase}.deck-varsity .deck-photo{border-radius:.025in;border:.04in solid var(--deck-accent)}
.deck-card.deck-scoreboard{background:#162f37;color:#fff9df;font-family:Cabin,sans-serif}.deck-scoreboard .deck-kicker,.deck-scoreboard.deck-is-question .deck-title{color:#e8c95b}.deck-scoreboard .deck-photo{border-radius:0;border-bottom:.06in solid #e8c95b}.deck-scoreboard .deck-ornament{border:0;background:repeating-linear-gradient(0deg,transparent 0 .09in,#ffffff0b .1in)}
.deck-card.deck-storybook{background:#fff2d5}.deck-storybook .deck-ornament{border:.025in double #a87640;border-radius:.12in}.deck-storybook .deck-photo{border-radius:50% 50% .04in .04in}.deck-storybook .deck-title{font-style:italic}
.deck-card.deck-quest{background:radial-gradient(ellipse at 30% 0%,#617b9b,#253346);color:#fcf0cd}.deck-quest .deck-kicker,.deck-quest.deck-is-question .deck-title{color:#ffe4a0}.deck-quest .deck-ornament{border:.025in double #d5b575;transform:rotate(1deg)}.deck-quest .deck-photo{border-radius:.2in;border:.025in solid #d5b575}
.deck-card.deck-polaroid{background:#fdfcf7}.deck-polaroid .deck-photo{border-radius:0;border:.015in solid #d6d6cf;height:1.85in}.deck-polaroid .deck-title{font-style:italic;font-size:16pt}.deck-polaroid .deck-ornament{display:none}
.deck-card.deck-archive{background:#e6dcc9}.deck-archive .deck-ornament{border:.008in dashed #7d694d}.deck-archive .deck-photo{border-radius:0;filter:sepia(.35)}.deck-archive .deck-title{font-family:Georgia,serif;letter-spacing:.02em}.deck-archive .deck-kicker{font-family:monospace}
/* Heritage sports: distinct construction for each historical design family. */
.card.heritage{background:#f5f2e6;color:#17283b;font-family:Arial,sans-serif}.heritage .h-ground{position:absolute;inset:.07in;background:var(--team,#b32035)}.heritage .h-engraving{position:absolute;inset:0;width:100%;height:100%;color:#cdb458;opacity:.8;stroke-width:1.4}.heritage .h-word{position:absolute;left:.18in;right:.18in;top:.15in;font:900 italic 15pt/1 Arial,sans-serif;letter-spacing:-.055em;z-index:3;color:#f2d076;text-shadow:1px 1px #172338}.heritage .h-year{position:absolute;top:.07in;left:.19in;font:3.5pt Arial;letter-spacing:.1em;color:#fff;z-index:3}.heritage .h-team{position:absolute;right:.2in;top:.42in;font:bold 6pt Arial;color:white;z-index:3;max-width:1.8in;overflow:hidden;white-space:nowrap}.heritage .sart.h-photo{position:absolute;inset:auto;top:.58in;left:.2in;width:2.1in;height:2.22in;background:#142439;border:.03in solid #edc34a;overflow:hidden;z-index:2}.heritage .h-photo img{width:100%;height:100%;object-fit:var(--photo-fit,cover)}.heritage .h-empty{position:absolute;inset:0;display:grid;place-items:center;color:#f7eed3;font:9pt Arial}.heritage .h-caption{position:absolute;left:.18in;right:.18in;bottom:.25in;z-index:4}.heritage .h-name{font:bold 16pt/.98 Arial,sans-serif;letter-spacing:-.04em;max-height:.43in;overflow:hidden;overflow-wrap:anywhere}.heritage .h-position{font:4.5pt/1.3 Arial;text-transform:uppercase;letter-spacing:.07em;max-height:.18in;overflow:hidden;margin-top:.045in}.heritage .h-edition{position:absolute;left:.18in;right:.18in;bottom:.10in;font:3.6pt Arial;letter-spacing:.09em;z-index:4;white-space:nowrap;overflow:hidden}.heritage .h-number{position:absolute;right:.22in;bottom:.80in;font:900 italic 33pt Arial;line-height:1;color:#fff;-webkit-text-stroke:.008in #192330;z-index:3}.heritage .h-ticket{display:none}.heritage .h-flash{pointer-events:none}
.heritage.sp-1986-fleer{background:#e8d896}.sp-1986-fleer .h-ground{inset:.085in;background:linear-gradient(90deg,#a4182d 0 19%,#153b73 19% 81%,#a4182d 81%);border:.025in solid #e7b643}.sp-1986-fleer .h-engraving{display:none}.sp-1986-fleer .h-word{top:.16in;font:900 14pt Arial;color:#f2cd62;text-align:center;letter-spacing:.05em}.sp-1986-fleer .h-team{top:.39in;left:.2in;text-align:center}.heritage.sp-1986-fleer .sart.h-photo{top:.61in;height:2.19in;border:.018in solid #edca4e;box-shadow:0 0 0 .025in #f9f6df}.sp-1986-fleer .h-caption{bottom:.31in;background:#fffdf2;padding:.055in .07in;border:.012in solid #edbf4b}.sp-1986-fleer .h-name{font-size:10pt!important;text-transform:uppercase;text-align:center;letter-spacing:.015em}.sp-1986-fleer .h-position{text-align:center;font-size:4pt}.sp-1986-fleer .h-edition{color:#faeeca;text-align:center}.sp-1986-fleer .h-number{display:none}
.heritage.sp-1987-wood{background:repeating-linear-gradient(1deg,#b88b57 0,#e8c38b .035in,#d3a46c .055in,#efd39b .12in,#d0a06b .15in)}.sp-1987-wood .h-ground{inset:0;background:repeating-radial-gradient(ellipse at 5% 40%,transparent 0 .08in,#764e2926 .085in .09in,transparent .095in .13in);opacity:.8}.sp-1987-wood .h-engraving{display:none}.heritage.sp-1987-wood .sart.h-photo{left:.17in;top:.22in;width:2.16in;height:2.72in;border:.025in solid #30281e;box-shadow:.016in .016in 0 #ffe8ba}.sp-1987-wood .h-word{left:.09in;top:.09in;right:auto;width:.65in;height:.52in;display:grid;place-items:center;background:var(--team);border:.025in solid #f9e8cc;border-radius:50%;color:#fff;font:bold 6pt Arial;text-shadow:none}.sp-1987-wood .h-team,.sp-1987-wood .h-number,.sp-1987-wood .h-year{display:none}.sp-1987-wood .h-caption{left:.23in;right:.16in;bottom:.24in;transform:rotate(-2deg)}.sp-1987-wood .h-name{font-size:13pt!important;text-transform:uppercase;text-shadow:1px 1px #ffe8b7}.sp-1987-wood .h-position{margin-top:.015in}.sp-1987-wood .h-edition{bottom:.075in}
.heritage.sp-1991-stadium{background:#191c23;color:#fff}.sp-1991-stadium .h-ground,.sp-1991-stadium .h-engraving,.sp-1991-stadium .h-number,.sp-1991-stadium .h-team{display:none}.heritage.sp-1991-stadium .sart.h-photo{left:.055in;top:.055in;width:2.39in;height:3.39in;border:0}.sp-1991-stadium .h-word{top:.14in;font:bold italic 10pt Georgia;color:#efd691;text-shadow:1px 2px #161a1e}.sp-1991-stadium .h-year{top:.36in}.sp-1991-stadium .h-flash{position:absolute;left:.055in;right:.055in;bottom:.055in;height:1.1in;background:linear-gradient(transparent,#080f1ced);z-index:3}.sp-1991-stadium .h-name{font-family:Georgia;font-style:italic;color:#ead392;font-weight:normal;letter-spacing:-.05em}.sp-1991-stadium .h-position{color:#e9e9df}.sp-1991-stadium .h-edition{color:#cabd9b}
.heritage.sp-1993-finest{background:linear-gradient(125deg,#80dd81,#153e5b 20%,#afe26f 40%,#0f6b55 70%,#2c78a3);color:#eef6b7}.sp-1993-finest .h-ground{inset:.065in;background:repeating-linear-gradient(150deg,#111f4366 0 .05in,#6dc38144 .06in .12in);border:.018in solid #c3e99e}.sp-1993-finest .h-engraving{color:#d9f07c;stroke-width:2.2}.heritage.sp-1993-finest .sart.h-photo{left:.3in;top:.61in;width:1.91in;height:2.1in;transform:rotate(-4deg);border:.045in ridge #afd2a9;box-shadow:.07in .07in 0 #083146}.sp-1993-finest .h-word{top:.24in;font:900 italic 24pt Arial;color:#dce5ad;-webkit-text-stroke:.009in #133d4d;text-shadow:2px 3px #041d39;transform:rotate(-7deg)}.sp-1993-finest .h-caption{bottom:.30in;transform:rotate(-5deg);left:.15in;right:.15in}.sp-1993-finest .h-name{font-style:italic;text-transform:uppercase;text-shadow:2px 2px #092d46}.sp-1993-finest .h-position{color:#dfefbe}.sp-1993-finest .h-number{color:#dcf58e;bottom:.78in;right:.11in}
.heritage.sp-1995-sp{background:#142849;color:#f7dc90}.sp-1995-sp .h-ground{inset:.08in;background:linear-gradient(130deg,#183058,#2d5d8c 40%,#0a203b);border:.018in solid #b99b56}.sp-1995-sp .h-word{font:900 italic 14pt Georgia;top:.2in}.heritage.sp-1995-sp .sart.h-photo{top:.62in;left:.2in;width:2.1in;height:2.05in;border:.035in solid #c8b476;box-shadow:.09in .09in 0 #0a1226;clip-path:polygon(0 0,88% 0,100% 12%,100% 100%,12% 100%,0 88%)}.sp-1995-sp .h-name{font-family:Georgia;font-style:italic}.sp-1995-sp .h-number{font-size:22pt;color:#c8b476;right:.27in}.sp-1995-sp .h-team{color:#b6cbe1}
.heritage.sp-1997-metal{background:linear-gradient(125deg,#263349,#bacdd0 15%,#18273a 30%,#e2e9df 68%,#365062);color:#e7e9e4}.sp-1997-metal .h-ground{inset:.055in;background:radial-gradient(circle at 75% 17%,#6b40ae,transparent 35%),radial-gradient(circle at 12% 70%,#087eaa,transparent 45%),#0c1323;border:.018in solid #c1c7cf}.sp-1997-metal .h-engraving{color:#b0dff6;stroke-width:1.2;z-index:3;pointer-events:none}.sp-1997-metal .h-word{font:900 italic 18pt/1 Arial;color:#e4eef5;-webkit-text-stroke:.004in #303e58;text-shadow:2px 2px #030a1c;top:.19in}.heritage.sp-1997-metal .sart.h-photo{top:.67in;left:.32in;width:1.88in;height:2.01in;border:.035in ridge #a0bbcf;border-radius:.40in .07in .4in .07in;box-shadow:0 0 .2in #71bbe984}.sp-1997-metal .h-caption{background:#0a1523dd;padding:.05in .07in;border-left:.025in solid #78d2fa;bottom:.26in}.sp-1997-metal .h-name{font-style:italic;letter-spacing:-.045em}.sp-1997-metal .h-number{font-size:28pt;right:.12in;color:#a9d8ec}.sp-1997-metal .h-team{display:none}
.heritage.sp-1998-zforce{background:#d7f21e;color:#151a24}.sp-1998-zforce .h-ground{inset:.05in;background:repeating-linear-gradient(125deg,#682b9e 0 .18in,#372052 .18in .2in,#8c3abc .2in .36in);clip-path:polygon(0 0,100% 0,100% 84%,0 100%)}.sp-1998-zforce .h-word{top:.16in;font:900 italic 30pt Arial;letter-spacing:-.095em;color:#e3ff28;-webkit-text-stroke:.009in #111529;text-shadow:3px 3px #c956ee;transform:rotate(-7deg)}.sp-1998-zforce .h-team{top:.58in;font-style:italic}.heritage.sp-1998-zforce .sart.h-photo{top:.85in;left:.26in;width:1.98in;height:1.86in;border:.045in solid #dfff32;transform:rotate(-5deg);box-shadow:.08in .08in 0 #151329}.sp-1998-zforce .h-engraving{color:#e5f31b;stroke-width:3}.sp-1998-zforce .h-caption{bottom:.29in;transform:rotate(-6deg)}.sp-1998-zforce .h-name{text-transform:uppercase;font-style:italic;font-weight:900}.sp-1998-zforce .h-number{color:#daff27;font-size:39pt;right:.09in;bottom:.82in;-webkit-text-stroke:.02in #35184f}.sp-1998-zforce .h-edition{bottom:.06in}
.heritage.sp-1998-ex{background:conic-gradient(from 35deg,#42abbc,#c37fd9,#ffd896,#7ef3dd,#548bde,#be70d0,#42abbc);color:#eee4ff}.sp-1998-ex .h-ground{inset:.09in;background:linear-gradient(150deg,#2d305a,#142f42);clip-path:polygon(0 0,100% 0,100% 87%,85% 100%,0 100%)}.heritage.sp-1998-ex .sart.h-photo{left:.31in;top:.56in;width:1.88in;height:2.2in;border:.025in solid #a1dce3;box-shadow:0 0 0 .065in #221f5277,0 0 0 .08in #e1adfb99}.sp-1998-ex .h-word{top:.17in;font:bold italic 17pt Georgia;color:#d8f6fa;text-align:center}.sp-1998-ex .h-name{font-family:Georgia;font-style:italic;font-size:13pt!important}.sp-1998-ex .h-engraving{color:#dbe9fc;opacity:.4}.sp-1998-ex .h-team,.sp-1998-ex .h-number{display:none}
.heritage.sp-2000-ticket{background:#eadbb7;color:#171e2b}.sp-2000-ticket .h-ground{inset:.085in;background:#f6eccc;border:.015in solid #242b37}.sp-2000-ticket .h-engraving{display:none}.sp-2000-ticket .h-word{font:900 14pt Arial;color:#1b2d43;text-shadow:none;top:.17in}.sp-2000-ticket .h-year{color:#48372a;top:.42in}.sp-2000-ticket .h-team{display:none}.heritage.sp-2000-ticket .sart.h-photo{left:.63in;top:.7in;width:1.65in;height:2.0in;border:.02in solid #273244}.sp-2000-ticket .h-ticket{display:flex;flex-direction:column;position:absolute;left:.17in;top:.76in;width:.33in;gap:.18in;text-align:center;font:4pt Arial}.sp-2000-ticket .h-ticket b{display:block;font:bold 8pt Arial;word-break:break-all}.sp-2000-ticket .h-flash{position:absolute;left:.52in;top:.58in;bottom:.19in;border-left:.012in dashed #988a6f}.sp-2000-ticket .h-caption{left:.64in;right:.18in;bottom:.34in}.sp-2000-ticket .h-name{font-size:11pt!important;text-transform:uppercase;letter-spacing:-.05em}.sp-2000-ticket .h-edition{font-family:monospace;left:.64in;font-size:3pt}.sp-2000-ticket .h-number{display:none}
/* Matching reverse-side palettes retain the shared statistics and photograph. */
.sback[class*="sp-"] .chrome-backmark{font-size:3.4pt}.sback.sp-1986-fleer .bh,.sback.sp-1986-fleer th{background:#153b73}.sback.sp-1986-fleer{background:#a4182d}.sback.sp-1987-wood{background:#d8b482}.sback.sp-1987-wood .bh,.sback.sp-1987-wood th{background:#805e38}.sback.sp-1991-stadium .bh{background:#192532;border-bottom-color:#c4a664}.sback.sp-1993-finest{background:#176c52}.sback.sp-1993-finest .bh,.sback.sp-1993-finest th{background:#115d4c}.sback.sp-1995-sp{background:#102440}.sback.sp-1997-metal{background:#293e55}.sback.sp-1998-zforce{background:#cae939}.sback.sp-1998-zforce .bh,.sback.sp-1998-zforce th{background:#592880}.sback.sp-1998-ex{background:#619cc4}.sback.sp-2000-ticket{background:#d4bd8f}.sback.sp-2000-ticket .bh,.sback.sp-2000-ticket th{background:#384354}
/* Fantasy systems: their own typographic hierarchy, art windows and game fields. */
.card.fantasy-card{background:#423e37;color:#211d17;font-family:Georgia,serif}.fantasy-texture{position:absolute;inset:.09in;background:repeating-radial-gradient(ellipse at 25% 35%,#ffffff1a 0 .008in,#00000010 .012in,transparent .02in .04in);border:.025in ridge #b7a57c}.fantasy-title{position:absolute;top:.15in;left:.16in;right:.16in;height:.29in;display:flex;gap:.06in;align-items:center;padding:.025in .045in;z-index:4}.fantasy-name{min-width:0;flex:1;overflow:hidden;white-space:nowrap;font-weight:bold;letter-spacing:-.035em;line-height:1.15}.fantasy-card .fantasy-art{position:absolute;left:.24in;top:.73in;width:2.02in;height:1.78in;overflow:hidden;background:#18252f;border:.04in ridge #9daca6}.fantasy-art img{width:100%;height:100%;object-fit:var(--photo-fit,cover)}.fantasy-art>span{display:block;margin-top:.6in;text-align:center;color:#eee;font:9pt Georgia}.fantasy-type{font-size:6pt;font-weight:bold;line-height:1.2;overflow:hidden;max-height:.22in}.fantasy-rules{font-size:6.1pt;line-height:1.17;white-space:pre-wrap;overflow:hidden;overflow-wrap:anywhere}.fantasy-foot{position:absolute;left:.15in;right:.15in;bottom:.095in;display:flex;justify-content:space-between;gap:.08in;font:3.2pt Georgia;z-index:5}.fantasy-foot span{max-width:1.7in;overflow:hidden;white-space:nowrap}.duel-card{background:linear-gradient(105deg,#b08849,#ead59c 43%,#b89251)!important}.duel-card .fantasy-texture{border-color:#a57d39;background-color:#c6a66b}.duel-card .fantasy-title{background:linear-gradient(100deg,#a17c43,#e6cf94,#b9985b);border:.018in ridge #e7d7b1;height:.38in;right:.18in;padding-right:.38in}.duel-card .fantasy-name{font-variant:small-caps;font-weight:normal}.duel-attribute{position:absolute;right:.02in;top:.02in;width:.29in;height:.29in;border-radius:50%;background:radial-gradient(circle at 30% 20%,#fffcc3,#b79d41);box-shadow:0 0 0 .012in #695a41;color:white;text-shadow:1px 1px #514727;display:grid;place-content:center;text-align:center}.duel-attribute b{font:13pt/1 Georgia}.duel-attribute small{font:2.5pt Arial}.duel-attribute.attr-DARK{background:radial-gradient(circle at 30% 20%,#a16dce,#45213f)}.duel-attribute.attr-FIRE{background:#a94424}.duel-attribute.attr-WATER{background:#2976a0}.duel-attribute.attr-EARTH{background:#9a6844}.duel-attribute.attr-WIND{background:#5f8978}.duel-level{position:absolute;top:.57in;left:.25in;right:.24in;display:flex;justify-content:flex-end;gap:.026in;height:.14in}.duel-level span{width:.139in;height:.139in;border-radius:50%;background:radial-gradient(circle at 30% 20%,#ffce59,#b93d19);font:9pt/.14in Georgia;text-align:center;color:#ffe073;text-shadow:1px 1px #b8320e}.duel-rank{justify-content:flex-start}.duel-rank span{background:#17222b}.duel-set{position:absolute;right:.23in;top:2.535in;font:4pt Georgia}.duel-rules{position:absolute;left:.17in;right:.17in;top:2.66in;height:.64in;padding:.045in .05in .16in;background:#f0e2bf;border:.025in ridge #9e875b}.duel-rules .fantasy-rules{height:.35in;font-size:5.8pt}.duel-stats{position:absolute;bottom:.025in;right:.045in;left:.045in;padding-top:.025in;border-top:.007in solid #362c1b;text-align:right;font:bold 6pt Georgia}.duel-seal{position:absolute;right:.09in;bottom:.045in;width:.075in;height:.075in;background:conic-gradient(#b6a261,#f1eedb,#acbead,#e5ca70,#b6a261);border:.005in solid #897641}.duel-card.yg-effect .fantasy-texture{background-color:#ba8156}.duel-card.yg-fusion .fantasy-texture{background-color:#887393}.duel-card.yg-fusion .fantasy-title{background:linear-gradient(110deg,#87748f,#cec2d1,#8c7899)}.duel-card.yg-synchro .fantasy-texture{background-color:#e9e8dd}.duel-card.yg-synchro .fantasy-title{background:linear-gradient(110deg,#b7bab4,#fffff4,#b8c2bb)}.duel-card.yg-xyz .fantasy-texture{background-color:#23282c;background-image:radial-gradient(circle at 25% 10%,#ffffff40 0 .006in,transparent .01in),repeating-linear-gradient(135deg,transparent 0 .1in,#ffffff07 .11in .12in)}.duel-card.yg-xyz .fantasy-title{background:linear-gradient(100deg,#1d2830,#61696e,#1c2024);color:#efe4c3}.yg-xyz .duel-set,.yg-xyz .fantasy-foot{color:#eee}
.magic-card{--mana-color:#466540;--mana-pale:#d4dbc4;background:#101511!important}.magic-card.mana-frame-W{--mana-color:#bcb497;--mana-pale:#f4efd9}.magic-card.mana-frame-U{--mana-color:#497b96;--mana-pale:#d0e2e5}.magic-card.mana-frame-B{--mana-color:#4e4b53;--mana-pale:#d1c8c7}.magic-card.mana-frame-R{--mana-color:#a25843;--mana-pale:#edd0b5}.magic-card.mana-frame-M{--mana-color:#b19b53;--mana-pale:#e7dfbe}.magic-card.mana-frame-C{--mana-color:#8e9897;--mana-pale:#e0e1d8}.magic-card .fantasy-texture{inset:.12in;border:.025in ridge #918775;background-color:var(--mana-color);border-radius:.08in}.magic-card .fantasy-title{background:var(--mana-pale);border:.022in ridge #9ba58e;border-radius:.075in .075in .035in .035in;top:.18in;left:.2in;right:.2in;height:.29in;padding:.025in .05in}.mana-cost{display:flex;gap:.012in;flex-shrink:0}.mana{height:.13in;min-width:.13in;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;color:#17211a;background:#d6d0c2;box-shadow:.006in .006in #1119;font:bold 6.5pt Arial;line-height:1}.mana-W{background:#efebcc}.mana-U{background:#a6cedc}.mana-B{background:#b5adb6}.mana-R{background:#e5a086}.mana-G{background:#96b695}.magic-card .fantasy-art{left:.22in;top:.5in;width:2.06in;height:1.53in;border:.025in ridge #7c8873}.magic-type{position:absolute;left:.2in;right:.2in;top:2.05in;height:.25in;display:flex;align-items:center;justify-content:space-between;gap:.04in;background:var(--mana-pale);border:.019in ridge #8b9b84;padding:.025in .055in;border-radius:.035in}.magic-type .fantasy-type{font-size:7pt;font-weight:normal}.magic-set{color:#735c22;font-size:9pt}.magic-rules{position:absolute;top:2.32in;left:.22in;right:.22in;height:.84in;padding:.075in;background:#e7dfc4;background-image:repeating-radial-gradient(ellipse at 25% 55%,#8679570a 0 .006in,transparent .009in .025in);border:.016in solid #514e38}.magic-rules .fantasy-rules{max-height:.57in;font-size:7pt}.fantasy-flavor{font-size:6pt;font-style:italic;line-height:1.2;border-top:.006in solid #8d836955;padding-top:.025in;margin-top:.03in;max-height:.28in;overflow:hidden}.magic-rules:has(.fantasy-flavor) .fantasy-rules{max-height:.40in}.magic-pt{position:absolute;right:.19in;bottom:.18in;font:bold 10pt Georgia;background:var(--mana-pale);padding:.022in .10in;border:.022in ridge #8c9882;border-radius:.05in;z-index:5}.magic-card .fantasy-foot{bottom:.075in;color:#e7e2cc;font-size:3pt}.magic-card.mtg-modern .fantasy-title{top:.17in;left:.16in;right:.16in;border-radius:.10in .10in .035in .035in;box-shadow:0 -.05in 0 #adb2a4,0 -.065in 0 #4c5448}.magic-card.mtg-modern .fantasy-texture{inset:.08in;border-color:#737e70}.magic-card.mtg-modern .fantasy-art{left:.17in;width:2.16in;top:.5in;height:1.57in}.magic-card.mtg-modern .magic-type{left:.16in;right:.16in;top:2.09in}.magic-card.mtg-modern .magic-rules{left:.18in;right:.18in;top:2.36in;height:.78in;background-color:var(--mana-pale)}.magic-card.mtg-borderless .fantasy-texture{display:none}.magic-card.mtg-borderless .fantasy-art{left:.045in;top:.045in;width:2.41in;height:3.41in;border:0;border-radius:.06in}.magic-card.mtg-borderless .fantasy-title{background:color-mix(in srgb,var(--mana-pale) 83%,transparent);top:.13in;left:.11in;right:.11in}.magic-card.mtg-borderless .magic-type{top:2.16in;left:.11in;right:.11in;background:color-mix(in srgb,var(--mana-pale) 88%,transparent);z-index:3}.magic-card.mtg-borderless .magic-rules{top:2.4in;left:.12in;right:.12in;height:.73in;background:#ede6d1e8;z-index:3}.magic-card.mtg-borderless .fantasy-foot{text-shadow:1px 1px #000}.fantasy-back{background:#271711;color:#dcc49b}.fantasy-back small{position:absolute;bottom:.13in;left:0;right:0;text-align:center;font:3.5pt Georgia;letter-spacing:.12em}.duel-back .inner{border:.065in solid #684822;background:repeating-radial-gradient(ellipse at 50% 50%,#040303 0 .018in,#492d17 .024in,#bb6b29 .039in,#e2b16a .047in,#26170c .06in,#0d0805 .078in)}.duel-vortex{position:absolute;inset:.28in .13in;border-radius:50%;transform:rotate(-28deg);background:repeating-radial-gradient(ellipse at 50% 50%,#060403 0 .045in,#442513 .055in,#c57930 .077in,#513619 .09in,#060403 .11in);box-shadow:inset 0 0 .4in .05in #0a0704}.fantasy-back-label{position:absolute;top:.12in;right:.08in;font:bold 5pt Georgia;text-shadow:1px 1px #000}.magic-back{background:#322b24}.magic-back .inner{border:.13in solid #131b25;background:repeating-radial-gradient(ellipse at 15% 80%,#ab7854 0 .016in,#956746 .02in,#be9266 .024in)}.magic-oval{position:absolute;left:.22in;right:.22in;top:.3in;bottom:.35in;border-radius:50%;background:radial-gradient(ellipse,#826447,#4d3d30);border:.025in ridge #d19b64;box-shadow:0 0 0 .025in #493b30;text-align:center;padding:.23in .07in}.magic-oval>b{font:bold 24pt Georgia;color:#80a6bc;-webkit-text-stroke:.005in #1a2632;letter-spacing:-.05em;text-shadow:1px 2px #081b33}.magic-oval>span{display:block;font:bold 6pt Georgia;color:#d2bd8c}.mana-orbit{position:relative;margin:.20in auto;width:1.24in;height:1.1in}.mana-orbit .mana{position:absolute;width:.23in;height:.23in;font-size:13pt;border:.013in solid #26303b}.mana-orbit .mana:nth-child(1){left:.5in;top:0}.mana-orbit .mana:nth-child(2){right:0;top:.35in}.mana-orbit .mana:nth-child(3){right:.17in;bottom:0}.mana-orbit .mana:nth-child(4){left:.17in;bottom:0}.mana-orbit .mana:nth-child(5){left:0;top:.35in}.magic-oval em{font:italic bold 10pt Georgia;color:#7d9dab;text-shadow:1px 1px #151f2b}.magic-back small{bottom:.06in;color:#1c2023}
/* Contain is explicit: never lose a teammate simply to fill a frame. */
.card .art img,.card .sart img,.card .wed-photo img,.card .deck-photo img{object-fit:var(--photo-fit,cover)}

.mana svg{width:75%;height:75%;display:block}

/* Modern ex: a continuous illustration under readable translucent rules. */
.card.pk-2022-gallery{background:linear-gradient(125deg,#fdfefe,#88959c 18%,#fff 35%,#a0a9ae 62%,#f8fafb 85%,#72848c)}
.card.pk-2022-gallery .frame{inset:.075in;border-radius:.07in;background:var(--tint);box-shadow:0 0 0 .012in #52616b}
.card.pk-2022-gallery .frame:before{display:none}
.card.pk-2022-gallery .artwrap{left:.08in;top:.08in;width:2.34in;height:3.34in;padding:0;border-radius:.065in;background:none;box-shadow:none;z-index:1}
.card.pk-2022-gallery .artwrap:after{display:none}
.card.pk-2022-gallery .art{border-radius:inherit}
.card.pk-2022-gallery .era-header{left:.08in;right:.08in;top:.08in;height:.41in;z-index:2;border-radius:.06in .06in 0 0;background:linear-gradient(#fffffff0,#ffffffc2 75%,#ffffff00)}
.card.pk-2022-gallery .era-panel{left:.08in;right:.08in;top:1.94in;bottom:.08in;z-index:2;background:linear-gradient(#ffffff00,#ffffffa8 13%,#ffffffc9 85%,#fffffff0);border-radius:0 0 .06in .06in}
.card.pk-2022-gallery :is(.stage,.evthumb,.name,.hp,.hpbadge,.attacks,.wrr,.flavor,.foot,.ex-rule){z-index:3}
.card.pk-2022-gallery .name{display:flex;gap:.035in;align-items:baseline;right:.76in;top:.245in;overflow:visible;text-shadow:0 1px 2px #fff}
.card.pk-2022-gallery .name-text{min-width:0;overflow:hidden;text-overflow:ellipsis}
.card.pk-2022-gallery .ex-mark{flex-shrink:0;font:bold italic 13pt Arial,sans-serif;letter-spacing:-.06em;color:#253d40;-webkit-text-stroke:.3px #fff}
.card.pk-2022-gallery .hp{color:#18272c;top:.26in;right:.38in;font-size:10pt}
.card.pk-2022-gallery .hp small{font-size:5pt}
.card.pk-2022-gallery .hpbadge{right:.13in}
.card.pk-2022-gallery .species{display:none}
.card.pk-2022-gallery .attacks{top:2.09in;height:.68in;left:.17in;right:.17in}
.card.pk-2022-gallery .atk + .atk{border-top:.005in solid #65747266}
.card.pk-2022-gallery .atk.only-attack .an{text-align:left}
.card.pk-2022-gallery .wrr{top:2.83in;left:.17in;right:.17in;border-color:#6f7f7e}
.card.pk-2022-gallery .flavor{top:3.085in;height:.11in;left:.17in;right:.17in;background:none;border:none;padding:0;font-size:3.8pt!important}
.card.pk-2022-gallery .ex-rule{position:absolute;left:.15in;right:.15in;top:3.22in;height:.12in;border-radius:.025in;background:#dce5e2;border:.005in solid #a7b8b4;font:3.7pt/1.15 Arial,sans-serif;padding:.014in .025in;overflow:hidden}
.card.pk-2022-gallery .ex-rule b{font-weight:bold;margin-right:.035in}
.card.pk-2022-gallery .foot{top:3.37in;left:.16in;right:.16in}
.card.pk-2022-gallery .setsym{background:#354d47;box-shadow:none;border-radius:.01in}

.card.pk-2022-gallery{background:linear-gradient(110deg,#ffe464,#edc62d)}.card.pk-2022-gallery .frame{box-shadow:none}.card.pk-2022-gallery .artwrap{left:.105in;top:.105in;width:2.29in;height:3.29in}.card.pk-2022-gallery .era-header{background:linear-gradient(#ffffffee,#ffffff00)}.card.pk-2022-gallery .flavor{top:3.11in;height:.2in;font-size:4pt!important}.card.pk-2022-gallery .attacks{top:2.11in}.card.pk-2000-rocket .frame{background:radial-gradient(ellipse at 20% 20%,#3f49384d,transparent 60%),linear-gradient(120deg,var(--tint),var(--type))}.rocket-mark{position:absolute;right:.16in;top:2.085in;z-index:3;font:900 italic 12pt Arial;color:#ac2933;-webkit-text-stroke:.003in #111}.pk-2000-rocket .species{padding-right:.23in}

.sp-1997-metal .h-engraving{z-index:1}.sp-1997-metal .h-engraving path{display:none}.sp-1998-zforce .h-engraving ellipse,.sp-1993-finest .h-engraving ellipse,.sp-1995-sp .h-engraving ellipse,.sp-1998-ex .h-engraving ellipse{display:none}

.heritage .h-name{line-height:1.2}

.sp-1998-zforce .h-caption{background:#d7f21e;padding:.035in .055in;box-shadow:.035in .035in 0 #30154d}

.duel-back .inner{background:#180c05}.duel-vortex{inset:0;border-radius:0;transform:none;box-shadow:none;background:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20750%201050%22%3E%3Cdefs%3E%3Cfilter%20id%3D%22grain%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%22.07%22%20numOctaves%3D%223%22%20seed%3D%229%22%20result%3D%22noise%22/%3E%3CfeDisplacementMap%20in%3D%22SourceGraphic%22%20in2%3D%22noise%22%20scale%3D%2212%22/%3E%3C/filter%3E%3CradialGradient%20id%3D%22shade%22%3E%3Cstop%20stop-color%3D%22%23080502%22/%3E%3Cstop%20offset%3D%22.18%22%20stop-color%3D%22%23090502%22%20stop-opacity%3D%22.2%22/%3E%3Cstop%20offset%3D%22.75%22%20stop-color%3D%22%23000%22%20stop-opacity%3D%220%22/%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23120703%22%20stop-opacity%3D%22.45%22/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect%20width%3D%22750%22%20height%3D%221050%22%20fill%3D%22%23180c05%22/%3E%3Cg%20filter%3D%22url%28%23grain%29%22%3E%3Cpath%20fill%3D%22%23643519%22%20d%3D%22M387.6%2C529.0%20L387.6%2C530.6%20L387.4%2C532.3%20L387.1%2C534.0%20L386.7%2C535.6%20L386.1%2C537.3%20L385.4%2C538.9%20L384.6%2C540.5%20L383.6%2C542.0%20L382.5%2C543.4%20L381.3%2C544.7%20L379.9%2C545.9%20L378.4%2C546.9%20L376.8%2C547.8%20L375.2%2C548.5%20L373.4%2C549.0%20L371.5%2C549.2%20L369.6%2C549.3%20L367.7%2C549.1%20L365.7%2C548.7%20L363.7%2C548.1%20L361.8%2C547.1%20L359.8%2C546.0%20L357.9%2C544.5%20L356.1%2C542.8%20L354.4%2C540.8%20L352.8%2C538.6%20L351.3%2C536.1%20L350.0%2C533.4%20L348.9%2C530.5%20L347.9%2C527.4%20L347.2%2C524.1%20L346.7%2C520.6%20L346.4%2C517.0%20L346.5%2C513.3%20L346.8%2C509.6%20L347.4%2C505.7%20L348.3%2C501.9%20L349.5%2C498.2%20L351.0%2C494.5%20L352.8%2C490.9%20L354.9%2C487.4%20L357.3%2C484.2%20L360.1%2C481.2%20L363.1%2C478.4%20L366.3%2C476.0%20L369.9%2C473.9%20L373.6%2C472.3%20L377.6%2C471.0%20L381.7%2C470.2%20L386.0%2C470.0%20L390.4%2C470.2%20L394.8%2C471.0%20L399.3%2C472.3%20L403.7%2C474.3%20L408.2%2C476.8%20L412.5%2C479.9%20L416.6%2C483.6%20L420.6%2C488.0%20L424.3%2C492.9%20L427.8%2C498.3%20L430.8%2C504.3%20L433.5%2C510.8%20L435.8%2C517.7%20L437.6%2C525.1%20L438.8%2C532.8%20L439.5%2C540.9%20L439.7%2C549.2%20L439.1%2C557.7%20L438.0%2C566.3%20L436.1%2C574.9%20L433.6%2C583.5%20L430.4%2C591.9%20L426.4%2C600.2%20L421.8%2C608.0%20L416.5%2C615.5%20L410.5%2C622.5%20L403.9%2C628.9%20L396.6%2C634.5%20L388.8%2C639.4%20L380.4%2C643.5%20L371.6%2C646.5%20L362.3%2C648.6%20L352.7%2C649.5%20L342.9%2C649.3%20L332.9%2C647.8%20L322.7%2C645.1%20L312.6%2C641.1%20L302.6%2C635.7%20L292.7%2C629.0%20L283.2%2C620.9%20L274.1%2C611.5%20L265.5%2C600.8%20L257.6%2C588.8%20L250.4%2C575.6%20L244.0%2C561.2%20L238.6%2C545.7%20L234.3%2C529.3%20L231.1%2C511.9%20L229.2%2C493.9%20L228.6%2C475.2%20L229.4%2C456.1%20L231.6%2C436.7%20L235.4%2C417.1%20L240.7%2C397.7%20L247.6%2C378.5%20L256.1%2C359.8%20L266.1%2C341.7%20L277.8%2C324.5%20L290.9%2C308.4%20L305.6%2C293.6%20L321.6%2C280.3%20L339.0%2C268.8%20L357.6%2C259.1%20L377.4%2C251.6%20L398.1%2C246.3%20L419.6%2C243.5%20L441.7%2C243.3%20L464.4%2C245.8%20L487.3%2C251.2%20L510.2%2C259.6%20L533.0%2C270.9%20L555.4%2C285.3%20L577.1%2C302.7%20L598.0%2C323.2%20L617.8%2C346.7%20L636.2%2C373.2%20L652.9%2C402.4%20L667.8%2C434.3%20L680.6%2C468.7%20L691.1%2C505.3%20L699.0%2C544.0%20L704.1%2C584.5%20L706.3%2C626.4%20L705.4%2C669.5%20L701.2%2C713.3%20L693.6%2C757.4%20L682.5%2C801.6%20L667.8%2C845.2%20L649.6%2C887.9%20L627.8%2C929.3%20L602.4%2C968.7%20L573.5%2C1005.9%20L541.2%2C1040.2%20L505.7%2C1071.2%20L467.1%2C1098.5%20L425.7%2C1121.5%20L381.6%2C1139.9%20L335.4%2C1153.2%20L287.1%2C1161.0%20L237.3%2C1163.0%20L186.3%2C1158.9%20L134.7%2C1148.5%20L82.7%2C1131.4%20L31.0%2C1107.5%20L-20.0%2C1076.8%20L-69.7%2C1039.1%20L-117.5%2C994.5%20L-163.0%2C943.1%20L-205.4%2C885.1%20L-244.4%2C820.6%20L-279.3%2C750.0%20L-309.6%2C673.6%20L-334.7%2C591.9%20L-354.1%2C505.5%20L-367.4%2C414.9%20L-374.2%2C320.8%20L-374.0%2C224.0%20L-366.4%2C125.2%20L-351.3%2C25.4%20L-328.3%2C-74.6%20L-297.3%2C-173.8%20L-258.2%2C-271.2%20L-210.9%2C-365.6%20L-155.6%2C-456.2%20L-92.2%2C-541.7%20L-21.2%2C-621.2%20L57.3%2C-693.5%20L142.9%2C-757.5%20L235.0%2C-812.2%20L333.1%2C-856.7%20L-160.6%2C-675.8%20L-231.6%2C-578.4%20L-293.6%2C-475.4%20L-346.4%2C-368.0%20L-389.9%2C-257.5%20L-424.3%2C-145.0%20L-449.6%2C-31.7%20L-466.0%2C81.3%20L-473.9%2C193.1%20L-473.4%2C302.6%20L-465.2%2C408.8%20L-449.5%2C511.1%20L-426.9%2C608.6%20L-397.9%2C700.7%20L-363.2%2C786.7%20L-323.3%2C866.2%20L-278.8%2C938.6%20L-230.3%2C1003.8%20L-178.6%2C1061.4%20L-124.2%2C1111.3%20L-67.8%2C1153.3%20L-9.9%2C1187.5%20L48.7%2C1213.9%20L107.5%2C1232.6%20L166.1%2C1243.9%20L223.7%2C1247.9%20L280.0%2C1245.0%20L334.5%2C1235.6%20L386.7%2C1220.1%20L436.4%2C1198.8%20L483.1%2C1172.3%20L526.5%2C1141.1%20L566.4%2C1105.6%20L602.7%2C1066.4%20L635.1%2C1024.1%20L663.6%2C979.2%20L688.0%2C932.2%20L708.3%2C883.7%20L724.5%2C834.2%20L736.8%2C784.2%20L745.1%2C734.2%20L749.5%2C684.6%20L750.3%2C635.9%20L747.5%2C588.6%20L741.4%2C542.9%20L732.2%2C499.2%20L720.1%2C457.9%20L705.5%2C419.1%20L688.4%2C383.2%20L669.2%2C350.4%20L648.3%2C320.7%20L625.8%2C294.4%20L602.0%2C271.4%20L577.3%2C252.0%20L551.9%2C235.9%20L526.0%2C223.4%20L500.0%2C214.2%20L474.1%2C208.4%20L448.5%2C205.8%20L423.5%2C206.2%20L399.2%2C209.6%20L375.8%2C215.8%20L353.6%2C224.6%20L332.6%2C235.7%20L313.0%2C249.0%20L294.9%2C264.2%20L278.5%2C281.1%20L263.7%2C299.4%20L250.6%2C319.0%20L239.4%2C339.5%20L229.9%2C360.8%20L222.3%2C382.6%20L216.4%2C404.6%20L212.3%2C426.8%20L209.9%2C448.7%20L209.1%2C470.4%20L209.9%2C491.5%20L212.3%2C511.9%20L216.0%2C531.4%20L221.0%2C550.0%20L227.2%2C567.4%20L234.4%2C583.6%20L242.7%2C598.5%20L251.7%2C611.9%20L261.5%2C624.0%20L271.9%2C634.5%20L282.7%2C643.5%20L293.9%2C651.0%20L305.2%2C656.9%20L316.7%2C661.4%20L328.2%2C664.4%20L339.6%2C665.9%20L350.7%2C666.0%20L361.5%2C664.9%20L372.0%2C662.4%20L381.9%2C658.9%20L391.4%2C654.2%20L400.2%2C648.6%20L408.3%2C642.1%20L415.8%2C634.8%20L422.5%2C626.9%20L428.5%2C618.4%20L433.7%2C609.4%20L438.1%2C600.1%20L441.7%2C590.5%20L444.5%2C580.8%20L446.5%2C571.0%20L447.7%2C561.2%20L448.3%2C551.6%20L448.1%2C542.3%20L447.2%2C533.2%20L445.8%2C524.4%20L443.7%2C516.1%20L441.1%2C508.3%20L438.0%2C501.0%20L434.5%2C494.2%20L430.5%2C488.1%20L426.3%2C482.6%20L421.8%2C477.8%20L417.1%2C473.6%20L412.2%2C470.1%20L407.2%2C467.3%20L402.1%2C465.2%20L397.0%2C463.7%20L392.0%2C462.9%20L387.0%2C462.6%20L382.2%2C463.0%20L377.5%2C463.9%20L373.1%2C465.4%20L368.8%2C467.3%20L364.9%2C469.7%20L361.2%2C472.5%20L357.8%2C475.6%20L354.7%2C479.0%20L352.0%2C482.7%20L349.6%2C486.7%20L347.6%2C490.7%20L345.9%2C494.9%20L344.6%2C499.2%20L343.6%2C503.5%20L343.0%2C507.9%20L342.7%2C512.1%20L342.7%2C516.3%20L343.0%2C520.4%20L343.5%2C524.3%20L344.4%2C528.0%20L345.5%2C531.5%20L346.8%2C534.8%20L348.3%2C537.8%20L350.0%2C540.6%20L351.8%2C543.1%20L353.8%2C545.3%20L355.9%2C547.2%20L358.0%2C548.9%20L360.2%2C550.2%20L362.4%2C551.2%20L364.7%2C551.9%20L366.9%2C552.4%20L369.1%2C552.5%20L371.3%2C552.5%20L373.3%2C552.1%20L375.3%2C551.5%20L377.2%2C550.7%20L379.0%2C549.7%20L380.7%2C548.5%20L382.2%2C547.2%20L383.6%2C545.7%20L384.8%2C544.1%20L385.9%2C542.4%20L386.9%2C540.6%20L387.7%2C538.8%20L388.3%2C536.9%20L388.8%2C535.0%20L389.1%2C533.1%20L389.3%2C531.2%20L389.3%2C529.3%20L389.2%2C527.5%20L389.0%2C525.8%20L388.6%2C524.1%20L388.2%2C522.5%20L387.6%2C521.0%20Z%22/%3E%3Cpath%20fill%3D%22%23ae642d%22%20d%3D%22M387.8%2C527.7%20L387.9%2C529.4%20L387.8%2C531.1%20L387.6%2C532.8%20L387.3%2C534.5%20L386.8%2C536.2%20L386.2%2C537.9%20L385.5%2C539.5%20L384.6%2C541.1%20L383.6%2C542.6%20L382.4%2C544.0%20L381.1%2C545.3%20L379.7%2C546.5%20L378.2%2C547.5%20L376.5%2C548.4%20L374.8%2C549.0%20L373.0%2C549.5%20L371.1%2C549.8%20L369.1%2C549.8%20L367.1%2C549.6%20L365.1%2C549.1%20L363.1%2C548.3%20L361.1%2C547.4%20L359.1%2C546.1%20L357.2%2C544.6%20L355.4%2C542.8%20L353.7%2C540.7%20L352.0%2C538.4%20L350.6%2C535.8%20L349.2%2C533.0%20L348.1%2C530.0%20L347.2%2C526.7%20L346.5%2C523.3%20L346.1%2C519.8%20L345.9%2C516.1%20L345.9%2C512.3%20L346.3%2C508.5%20L347.0%2C504.6%20L348.0%2C500.7%20L349.2%2C496.8%20L350.8%2C493.1%20L352.8%2C489.5%20L355.0%2C486.0%20L357.5%2C482.7%20L360.4%2C479.7%20L363.5%2C477.0%20L366.9%2C474.6%20L370.5%2C472.5%20L374.4%2C470.9%20L378.5%2C469.8%20L382.7%2C469.1%20L387.1%2C468.9%20L391.6%2C469.2%20L396.1%2C470.2%20L400.7%2C471.7%20L405.2%2C473.8%20L409.7%2C476.5%20L414.1%2C479.8%20L418.3%2C483.7%20L422.3%2C488.2%20L426.0%2C493.3%20L429.5%2C499.0%20L432.5%2C505.2%20L435.2%2C511.9%20L437.4%2C519.1%20L439.1%2C526.7%20L440.3%2C534.7%20L440.9%2C542.9%20L440.9%2C551.5%20L440.2%2C560.1%20L438.9%2C568.9%20L436.9%2C577.7%20L434.1%2C586.4%20L430.7%2C595.0%20L426.5%2C603.3%20L421.7%2C611.3%20L416.1%2C618.8%20L409.9%2C625.8%20L403.0%2C632.2%20L395.4%2C637.8%20L387.3%2C642.6%20L378.7%2C646.5%20L369.6%2C649.4%20L360.1%2C651.3%20L350.3%2C652.0%20L340.2%2C651.5%20L329.9%2C649.8%20L319.6%2C646.7%20L309.2%2C642.4%20L299.1%2C636.6%20L289.1%2C629.5%20L279.5%2C621.0%20L270.3%2C611.1%20L261.6%2C599.9%20L253.7%2C587.4%20L246.5%2C573.6%20L240.2%2C558.7%20L235.0%2C542.7%20L230.8%2C525.8%20L227.8%2C508.0%20L226.1%2C489.4%20L225.8%2C470.3%20L226.9%2C450.7%20L229.5%2C430.8%20L233.6%2C410.9%20L239.4%2C391.1%20L246.7%2C371.6%20L255.7%2C352.6%20L266.3%2C334.4%20L278.5%2C317.1%20L292.2%2C300.9%20L307.5%2C286.1%20L324.1%2C272.9%20L342.1%2C261.5%20L361.4%2C252.1%20L381.7%2C244.9%20L403.0%2C240.0%20L425.1%2C237.7%20L447.8%2C238.1%20L470.9%2C241.2%20L494.3%2C247.3%20L517.7%2C256.5%20L540.8%2C268.7%20L563.6%2C284.0%20L585.6%2C302.4%20L606.7%2C324.0%20L626.5%2C348.5%20L645.0%2C376.1%20L661.7%2C406.4%20L676.5%2C439.5%20L689.0%2C475.1%20L699.2%2C512.9%20L706.7%2C552.8%20L711.3%2C594.4%20L712.9%2C637.4%20L711.3%2C681.4%20L706.3%2C726.2%20L697.8%2C771.3%20L685.8%2C816.2%20L670.1%2C860.6%20L650.7%2C903.9%20L627.7%2C945.7%20L601.1%2C985.5%20L570.9%2C1022.8%20L537.3%2C1057.1%20L500.4%2C1088.0%20L460.4%2C1114.9%20L417.6%2C1137.5%20L372.2%2C1155.2%20L324.6%2C1167.6%20L275.1%2C1174.4%20L224.0%2C1175.3%20L171.8%2C1169.8%20L119.0%2C1157.7%20L66.0%2C1138.9%20L13.4%2C1113.1%20L-38.3%2C1080.3%20L-88.6%2C1040.5%20L-137.0%2C993.6%20L-182.7%2C939.7%20L-225.4%2C879.2%20L-264.3%2C812.1%20L-298.9%2C738.8%20L-328.8%2C659.8%20L-353.2%2C575.5%20L-371.8%2C486.4%20L-384.0%2C393.2%20L-389.5%2C296.6%20L-387.8%2C197.4%20L-378.5%2C96.4%20L-361.4%2C-5.5%20L-336.3%2C-107.4%20L-303.0%2C-208.2%20L-261.4%2C-306.9%20L-211.5%2C-402.6%20L-153.4%2C-493.9%20L-87.2%2C-580.0%20L-13.1%2C-659.6%20L68.5%2C-731.6%20L157.1%2C-795.0%20L252.4%2C-848.8%20L-39.5%2C-751.9%20L-119.4%2C-666.6%20L-190.9%2C-574.3%20L-253.7%2C-476.2%20L-307.7%2C-373.5%20L-352.8%2C-267.3%20L-388.9%2C-159.0%20L-416.2%2C-49.4%20L-434.9%2C60.2%20L-445.2%2C168.9%20L-447.3%2C275.7%20L-441.7%2C379.7%20L-428.8%2C480.0%20L-409.0%2C576.0%20L-382.9%2C666.9%20L-351.1%2C752.1%20L-314.0%2C831.1%20L-272.3%2C903.5%20L-226.5%2C968.9%20L-177.4%2C1027.0%20L-125.5%2C1077.7%20L-71.5%2C1120.9%20L-15.9%2C1156.4%20L40.7%2C1184.4%20L97.7%2C1204.9%20L154.5%2C1218.1%20L210.6%2C1224.3%20L265.6%2C1223.6%20L318.9%2C1216.5%20L370.3%2C1203.3%20L419.2%2C1184.5%20L465.3%2C1160.4%20L508.4%2C1131.6%20L548.2%2C1098.6%20L584.5%2C1061.8%20L617.1%2C1021.7%20L645.9%2C979.0%20L670.7%2C934.1%20L691.7%2C887.6%20L708.7%2C839.9%20L721.8%2C791.6%20L731.0%2C743.1%20L736.5%2C695.0%20L738.4%2C647.5%20L736.8%2C601.2%20L731.9%2C556.4%20L724.0%2C513.5%20L713.2%2C472.7%20L699.7%2C434.4%20L683.9%2C398.7%20L666.0%2C365.9%20L646.3%2C336.2%20L624.9%2C309.6%20L602.3%2C286.4%20L578.6%2C266.4%20L554.2%2C249.8%20L529.3%2C236.6%20L504.2%2C226.7%20L479.0%2C220.0%20L454.1%2C216.5%20L429.7%2C216.0%20L405.9%2C218.4%20L383.0%2C223.5%20L361.1%2C231.2%20L340.4%2C241.2%20L320.9%2C253.4%20L303.0%2C267.6%20L286.5%2C283.4%20L271.7%2C300.7%20L258.5%2C319.3%20L247.1%2C338.9%20L237.3%2C359.3%20L229.4%2C380.3%20L223.1%2C401.6%20L218.6%2C423.0%20L215.7%2C444.3%20L214.5%2C465.4%20L214.8%2C486.0%20L216.6%2C506.0%20L219.7%2C525.2%20L224.2%2C543.5%20L229.8%2C560.7%20L236.6%2C576.8%20L244.2%2C591.6%20L252.8%2C605.1%20L262.0%2C617.2%20L271.9%2C627.9%20L282.2%2C637.1%20L292.9%2C644.8%20L303.9%2C651.0%20L315.0%2C655.8%20L326.1%2C659.1%20L337.1%2C661.0%20L348.0%2C661.6%20L358.6%2C660.9%20L368.8%2C658.9%20L378.6%2C655.8%20L387.9%2C651.7%20L396.7%2C646.5%20L404.8%2C640.5%20L412.2%2C633.7%20L419.0%2C626.2%20L425.0%2C618.1%20L430.3%2C609.5%20L434.8%2C600.6%20L438.5%2C591.4%20L441.4%2C582.0%20L443.6%2C572.6%20L445.1%2C563.1%20L445.8%2C553.8%20L445.9%2C544.6%20L445.3%2C535.7%20L444.0%2C527.1%20L442.2%2C518.9%20L439.8%2C511.2%20L437.0%2C503.9%20L433.7%2C497.3%20L430.0%2C491.1%20L426.0%2C485.6%20L421.7%2C480.7%20L417.2%2C476.5%20L412.5%2C472.9%20L407.7%2C470.0%20L402.8%2C467.7%20L397.9%2C466.1%20L393.0%2C465.1%20L388.2%2C464.6%20L383.5%2C464.8%20L378.9%2C465.5%20L374.5%2C466.8%20L370.3%2C468.5%20L366.4%2C470.7%20L362.8%2C473.2%20L359.4%2C476.2%20L356.3%2C479.4%20L353.6%2C482.9%20L351.2%2C486.6%20L349.1%2C490.5%20L347.4%2C494.6%20L346.0%2C498.7%20L344.9%2C502.9%20L344.2%2C507.1%20L343.8%2C511.2%20L343.7%2C515.3%20L343.9%2C519.2%20L344.3%2C523.1%20L345.1%2C526.7%20L346.1%2C530.2%20L347.3%2C533.5%20L348.7%2C536.5%20L350.2%2C539.3%20L352.0%2C541.8%20L353.8%2C544.0%20L355.8%2C546.0%20L357.9%2C547.6%20L360.0%2C549.0%20L362.1%2C550.1%20L364.3%2C550.9%20L366.5%2C551.4%20L368.6%2C551.6%20L370.7%2C551.6%20L372.8%2C551.4%20L374.7%2C550.9%20L376.6%2C550.2%20L378.3%2C549.3%20L380.0%2C548.2%20L381.5%2C546.9%20L382.9%2C545.5%20L384.2%2C544.0%20L385.3%2C542.4%20L386.2%2C540.7%20L387.0%2C538.9%20L387.7%2C537.1%20L388.2%2C535.3%20L388.6%2C533.4%20L388.8%2C531.6%20L388.8%2C529.8%20L388.8%2C528.0%20L388.6%2C526.3%20L388.3%2C524.6%20L387.9%2C523.1%20Z%22/%3E%3Cpath%20fill%3D%22%23e9a958%22%20d%3D%22M387.9%2C527.0%20L388.0%2C528.6%20L388.0%2C530.3%20L387.9%2C532.0%20L387.6%2C533.8%20L387.2%2C535.5%20L386.6%2C537.2%20L386.0%2C538.9%20L385.1%2C540.6%20L384.2%2C542.1%20L383.1%2C543.6%20L381.8%2C545.0%20L380.4%2C546.2%20L379.0%2C547.3%20L377.4%2C548.3%20L375.6%2C549.0%20L373.8%2C549.6%20L372.0%2C550.0%20L370.0%2C550.1%20L368.0%2C550.0%20L366.0%2C549.6%20L363.9%2C549.0%20L361.9%2C548.1%20L359.9%2C547.0%20L357.9%2C545.6%20L356.0%2C543.9%20L354.2%2C541.9%20L352.5%2C539.7%20L351.0%2C537.2%20L349.6%2C534.5%20L348.3%2C531.5%20L347.3%2C528.3%20L346.5%2C525.0%20L345.9%2C521.4%20L345.6%2C517.8%20L345.5%2C514.0%20L345.8%2C510.1%20L346.3%2C506.2%20L347.1%2C502.3%20L348.3%2C498.4%20L349.7%2C494.5%20L351.5%2C490.8%20L353.6%2C487.2%20L356.1%2C483.8%20L358.8%2C480.6%20L361.8%2C477.7%20L365.1%2C475.1%20L368.7%2C472.9%20L372.5%2C471.0%20L376.5%2C469.6%20L380.7%2C468.7%20L385.1%2C468.2%20L389.6%2C468.3%20L394.2%2C469.0%20L398.8%2C470.2%20L403.4%2C472.1%20L408.0%2C474.5%20L412.5%2C477.6%20L416.8%2C481.2%20L421.0%2C485.5%20L424.9%2C490.4%20L428.5%2C495.9%20L431.8%2C501.9%20L434.7%2C508.5%20L437.1%2C515.5%20L439.1%2C523.0%20L440.6%2C530.9%20L441.5%2C539.1%20L441.7%2C547.6%20L441.4%2C556.4%20L440.4%2C565.2%20L438.7%2C574.1%20L436.2%2C583.0%20L433.1%2C591.7%20L429.2%2C600.3%20L424.7%2C608.5%20L419.4%2C616.3%20L413.4%2C623.7%20L406.7%2C630.4%20L399.4%2C636.5%20L391.5%2C641.8%20L383.0%2C646.2%20L374.0%2C649.6%20L364.6%2C652.0%20L354.7%2C653.3%20L344.6%2C653.4%20L334.3%2C652.3%20L323.9%2C649.8%20L313.4%2C646.0%20L303.1%2C640.9%20L292.8%2C634.3%20L282.9%2C626.4%20L273.4%2C617.0%20L264.4%2C606.3%20L256.0%2C594.3%20L248.4%2C581.0%20L241.6%2C566.5%20L235.7%2C550.8%20L230.9%2C534.1%20L227.3%2C516.4%20L225.0%2C498.0%20L224.0%2C478.9%20L224.4%2C459.3%20L226.3%2C439.3%20L229.8%2C419.2%20L234.8%2C399.1%20L241.5%2C379.2%20L249.8%2C359.7%20L259.7%2C340.8%20L271.3%2C322.8%20L284.4%2C305.9%20L299.1%2C290.3%20L315.3%2C276.1%20L332.9%2C263.7%20L351.8%2C253.2%20L371.8%2C244.8%20L392.9%2C238.7%20L414.9%2C235.1%20L437.6%2C234.2%20L460.8%2C236.0%20L484.4%2C240.8%20L508.1%2C248.5%20L531.7%2C259.4%20L554.9%2C273.4%20L577.5%2C290.5%20L599.4%2C310.8%20L620.1%2C334.2%20L639.5%2C360.7%20L657.2%2C390.1%20L673.2%2C422.2%20L687.0%2C457.0%20L698.4%2C494.2%20L707.3%2C533.6%20L713.4%2C574.9%20L716.5%2C617.8%20L716.4%2C661.9%20L713.0%2C706.9%20L706.1%2C752.5%20L695.7%2C798.0%20L681.6%2C843.2%20L663.8%2C887.6%20L642.2%2C930.7%20L617.0%2C972.0%20L588.2%2C1011.0%20L555.8%2C1047.3%20L520.1%2C1080.2%20L481.1%2C1109.4%20L439.1%2C1134.4%20L394.4%2C1154.7%20L347.2%2C1169.9%20L298.0%2C1179.5%20L247.0%2C1183.3%20L194.7%2C1180.8%20L141.5%2C1171.8%20L87.9%2C1156.1%20L34.5%2C1133.3%20L-18.4%2C1103.6%20L-70.0%2C1066.6%20L-120.0%2C1022.6%20L-167.6%2C971.4%20L-212.3%2C913.4%20L-253.6%2C848.6%20L-290.7%2C777.4%20L-323.3%2C700.2%20L-350.7%2C617.3%20L-372.4%2C529.4%20L-387.9%2C437.1%20L-396.7%2C340.9%20L-398.5%2C241.7%20L-392.8%2C140.2%20L-379.3%2C37.5%20L-357.8%2C-65.8%20L-328.1%2C-168.4%20L-290.0%2C-269.5%20L-243.5%2C-367.8%20L-188.6%2C-462.5%20L-125.5%2C-552.2%20L-54.3%2C-636.0%20L24.6%2C-712.7%20L111.0%2C-781.2%20L204.2%2C-840.3%20L109.0%2C-815.2%20L20.3%2C-745.5%20L-60.9%2C-667.4%20L-134.1%2C-581.9%20L-199.1%2C-490.3%20L-255.7%2C-393.6%20L-303.7%2C-293.1%20L-343.1%2C-189.7%20L-373.9%2C-84.7%20L-396.3%2C20.9%20L-410.5%2C126.2%20L-416.7%2C230.1%20L-415.3%2C331.8%20L-406.5%2C430.4%20L-391.0%2C525.2%20L-369.1%2C615.4%20L-341.3%2C700.4%20L-308.2%2C779.8%20L-270.3%2C853.0%20L-228.3%2C919.6%20L-182.7%2C979.4%20L-134.0%2C1032.1%20L-83.0%2C1077.5%20L-30.2%2C1115.6%20L23.8%2C1146.5%20L78.6%2C1170.1%20L133.4%2C1186.5%20L187.9%2C1196.1%20L241.5%2C1198.9%20L293.7%2C1195.4%20L344.2%2C1185.7%20L392.6%2C1170.5%20L438.5%2C1149.9%20L481.6%2C1124.6%20L521.7%2C1094.9%20L558.5%2C1061.3%20L591.8%2C1024.3%20L621.5%2C984.5%20L647.4%2C942.3%20L669.6%2C898.3%20L688.1%2C852.9%20L702.7%2C806.7%20L713.6%2C760.0%20L720.8%2C713.4%20L724.4%2C667.3%20L724.7%2C622.1%20L721.6%2C578.1%20L715.5%2C535.8%20L706.6%2C495.4%20L695.0%2C457.2%20L680.9%2C421.4%20L664.7%2C388.3%20L646.6%2C358.1%20L626.9%2C330.9%20L605.7%2C306.8%20L583.4%2C285.9%20L560.3%2C268.2%20L536.5%2C253.7%20L512.4%2C242.4%20L488.1%2C234.3%20L464.0%2C229.3%20L440.2%2C227.3%20L416.9%2C228.1%20L394.4%2C231.7%20L372.8%2C237.8%20L352.2%2C246.3%20L332.8%2C256.9%20L314.7%2C269.6%20L298.1%2C284.0%20L283.0%2C299.9%20L269.4%2C317.2%20L257.5%2C335.6%20L247.2%2C354.9%20L238.7%2C374.8%20L231.8%2C395.1%20L226.5%2C415.7%20L222.9%2C436.3%20L220.9%2C456.8%20L220.4%2C476.9%20L221.4%2C496.5%20L223.7%2C515.4%20L227.3%2C533.5%20L232.2%2C550.6%20L238.1%2C566.7%20L245.0%2C581.6%20L252.8%2C595.3%20L261.4%2C607.7%20L270.5%2C618.7%20L280.3%2C628.4%20L290.4%2C636.6%20L300.9%2C643.3%20L311.5%2C648.7%20L322.2%2C652.6%20L332.9%2C655.2%20L343.4%2C656.4%20L353.8%2C656.4%20L363.8%2C655.1%20L373.5%2C652.7%20L382.7%2C649.2%20L391.4%2C644.8%20L399.6%2C639.4%20L407.1%2C633.2%20L414.0%2C626.4%20L420.1%2C618.9%20L425.6%2C610.9%20L430.3%2C602.5%20L434.3%2C593.7%20L437.6%2C584.8%20L440.1%2C575.7%20L441.8%2C566.6%20L442.9%2C557.5%20L443.3%2C548.6%20L443.1%2C539.9%20L442.2%2C531.4%20L440.7%2C523.3%20L438.7%2C515.6%20L436.2%2C508.4%20L433.3%2C501.7%20L429.9%2C495.5%20L426.2%2C489.8%20L422.2%2C484.8%20L418.0%2C480.4%20L413.6%2C476.6%20L409.0%2C473.4%20L404.3%2C470.9%20L399.6%2C469.0%20L394.9%2C467.7%20L390.2%2C467.0%20L385.6%2C466.9%20L381.1%2C467.3%20L376.8%2C468.2%20L372.6%2C469.7%20L368.7%2C471.5%20L365.1%2C473.8%20L361.7%2C476.4%20L358.6%2C479.4%20L355.7%2C482.6%20L353.2%2C486.1%20L351.1%2C489.8%20L349.2%2C493.6%20L347.7%2C497.5%20L346.5%2C501.5%20L345.6%2C505.6%20L345.1%2C509.6%20L344.8%2C513.5%20L344.9%2C517.4%20L345.2%2C521.2%20L345.8%2C524.8%20L346.6%2C528.3%20L347.6%2C531.5%20L348.9%2C534.5%20L350.3%2C537.4%20L351.9%2C539.9%20L353.6%2C542.2%20L355.5%2C544.2%20L357.4%2C546.0%20L359.4%2C547.4%20L361.5%2C548.6%20L363.6%2C549.5%20L365.7%2C550.2%20L367.8%2C550.6%20L369.8%2C550.7%20L371.8%2C550.6%20L373.7%2C550.2%20L375.6%2C549.6%20L377.3%2C548.9%20L379.0%2C547.9%20L380.5%2C546.8%20L381.9%2C545.5%20L383.2%2C544.1%20L384.3%2C542.6%20L385.3%2C541.0%20L386.2%2C539.3%20L386.9%2C537.6%20L387.5%2C535.8%20L387.9%2C534.1%20L388.2%2C532.3%20L388.3%2C530.5%20L388.3%2C528.8%20L388.2%2C527.1%20L388.0%2C525.5%20Z%22/%3E%3Cpath%20fill%3D%22%23b16d35%22%20d%3D%22M388.0%2C524.3%20L388.3%2C525.8%20L388.5%2C527.5%20L388.6%2C529.2%20L388.6%2C531.0%20L388.4%2C532.8%20L388.1%2C534.6%20L387.6%2C536.4%20L387.0%2C538.2%20L386.2%2C540.0%20L385.3%2C541.7%20L384.3%2C543.3%20L383.1%2C544.8%20L381.8%2C546.2%20L380.3%2C547.5%20L378.7%2C548.6%20L377.0%2C549.5%20L375.2%2C550.3%20L373.3%2C550.8%20L371.3%2C551.1%20L369.3%2C551.2%20L367.2%2C551.0%20L365.1%2C550.6%20L362.9%2C549.9%20L360.8%2C548.9%20L358.7%2C547.6%20L356.7%2C546.0%20L354.7%2C544.2%20L352.9%2C542.1%20L351.1%2C539.7%20L349.5%2C537.0%20L348.1%2C534.1%20L346.9%2C531.0%20L345.8%2C527.6%20L345.0%2C524.1%20L344.5%2C520.3%20L344.2%2C516.5%20L344.3%2C512.5%20L344.6%2C508.4%20L345.2%2C504.3%20L346.2%2C500.2%20L347.5%2C496.2%20L349.1%2C492.2%20L351.0%2C488.3%20L353.3%2C484.6%20L355.9%2C481.1%20L358.9%2C477.8%20L362.1%2C474.9%20L365.6%2C472.3%20L369.4%2C470.0%20L373.4%2C468.2%20L377.7%2C466.9%20L382.1%2C466.0%20L386.7%2C465.7%20L391.4%2C466.0%20L396.2%2C466.8%20L401.1%2C468.3%20L405.9%2C470.3%20L410.6%2C473.0%20L415.3%2C476.4%20L419.8%2C480.4%20L424.0%2C485.0%20L428.1%2C490.3%20L431.8%2C496.1%20L435.1%2C502.6%20L438.0%2C509.6%20L440.4%2C517.0%20L442.4%2C525.0%20L443.7%2C533.3%20L444.5%2C542.0%20L444.6%2C550.9%20L444.1%2C560.1%20L442.8%2C569.3%20L440.9%2C578.6%20L438.2%2C587.8%20L434.7%2C596.9%20L430.5%2C605.8%20L425.5%2C614.3%20L419.8%2C622.3%20L413.4%2C629.9%20L406.2%2C636.7%20L398.4%2C642.9%20L390.0%2C648.1%20L381.0%2C652.5%20L371.5%2C655.8%20L361.5%2C658.0%20L351.2%2C659.1%20L340.6%2C658.9%20L329.8%2C657.3%20L318.9%2C654.4%20L308.0%2C650.1%20L297.2%2C644.4%20L286.6%2C637.1%20L276.3%2C628.5%20L266.5%2C618.4%20L257.3%2C606.9%20L248.7%2C593.9%20L240.9%2C579.7%20L234.1%2C564.2%20L228.2%2C547.6%20L223.6%2C529.9%20L220.1%2C511.3%20L218.0%2C491.8%20L217.3%2C471.7%20L218.2%2C451.2%20L220.5%2C430.3%20L224.6%2C409.2%20L230.3%2C388.3%20L237.6%2C367.6%20L246.7%2C347.4%20L257.5%2C327.9%20L270.0%2C309.4%20L284.2%2C292.0%20L299.9%2C276.1%20L317.2%2C261.7%20L335.9%2C249.2%20L355.9%2C238.8%20L377.2%2C230.7%20L399.4%2C224.9%20L422.6%2C221.9%20L446.4%2C221.6%20L470.8%2C224.3%20L495.4%2C230.0%20L520.2%2C239.0%20L544.7%2C251.1%20L568.8%2C266.6%20L592.3%2C285.3%20L614.8%2C307.3%20L636.1%2C332.6%20L655.9%2C360.9%20L674.0%2C392.4%20L690.1%2C426.7%20L703.9%2C463.7%20L715.2%2C503.1%20L723.8%2C544.7%20L729.4%2C588.3%20L731.8%2C633.4%20L730.8%2C679.7%20L726.4%2C726.9%20L718.2%2C774.5%20L706.4%2C822.0%20L690.7%2C869.0%20L671.1%2C915.0%20L647.7%2C959.6%20L620.4%2C1002.1%20L589.3%2C1042.2%20L554.6%2C1079.2%20L516.4%2C1112.7%20L474.9%2C1142.1%20L430.4%2C1167.0%20L383.0%2C1186.8%20L333.2%2C1201.3%20L281.3%2C1209.8%20L227.7%2C1212.1%20L172.8%2C1207.8%20L117.2%2C1196.7%20L61.2%2C1178.4%20L5.5%2C1152.9%20L-49.4%2C1119.9%20L-102.9%2C1079.4%20L-154.5%2C1031.6%20L-203.5%2C976.3%20L-249.3%2C913.9%20L-291.3%2C844.6%20L-329.0%2C768.7%20L-361.7%2C686.5%20L-388.8%2C598.6%20L-409.9%2C505.6%20L-424.4%2C408.2%20L-431.8%2C306.9%20L-431.7%2C202.7%20L-423.7%2C96.3%20L-407.5%2C-11.2%20L-382.9%2C-118.9%20L-349.7%2C-225.7%20L-307.7%2C-330.6%20L-257.0%2C-432.4%20L-197.5%2C-530.0%20L-129.5%2C-622.2%20L-53.1%2C-707.9%20L31.3%2C-785.9%20L-19.4%2C-762.3%20L-100.7%2C-679.0%20L-173.6%2C-588.5%20L-238.0%2C-492.0%20L-293.6%2C-390.8%20L-340.3%2C-285.8%20L-378.1%2C-178.4%20L-407.1%2C-69.6%20L-427.5%2C39.6%20L-439.4%2C148.0%20L-443.2%2C254.7%20L-439.3%2C358.8%20L-427.9%2C459.4%20L-409.7%2C555.9%20L-385.0%2C647.4%20L-354.5%2C733.4%20L-318.6%2C813.4%20L-278.0%2C886.8%20L-233.3%2C953.4%20L-185.1%2C1012.8%20L-134.1%2C1064.8%20L-80.7%2C1109.3%20L-25.6%2C1146.3%20L30.5%2C1175.7%20L87.1%2C1197.7%20L143.7%2C1212.3%20L199.7%2C1219.9%20L254.7%2C1220.7%20L308.2%2C1215.0%20L359.7%2C1203.1%20L408.8%2C1185.5%20L455.4%2C1162.6%20L498.9%2C1134.9%20L539.2%2C1102.9%20L576.0%2C1067.0%20L609.3%2C1027.8%20L638.7%2C985.8%20L664.3%2C941.6%20L686.0%2C895.6%20L703.7%2C848.4%20L717.6%2C800.4%20L727.6%2C752.2%20L733.8%2C704.2%20L736.4%2C656.8%20L735.6%2C610.4%20L731.4%2C565.5%20L724.1%2C522.4%20L713.9%2C481.4%20L701.1%2C442.7%20L685.9%2C406.6%20L668.5%2C373.4%20L649.2%2C343.2%20L628.2%2C316.1%20L606.0%2C292.2%20L582.6%2C271.7%20L558.5%2C254.5%20L533.8%2C240.6%20L508.8%2C230.0%20L483.8%2C222.7%20L458.9%2C218.5%20L434.5%2C217.4%20L410.7%2C219.2%20L387.7%2C223.8%20L365.7%2C230.9%20L344.8%2C240.4%20L325.2%2C252.1%20L307.0%2C265.8%20L290.3%2C281.2%20L275.2%2C298.1%20L261.8%2C316.4%20L250.0%2C335.7%20L240.0%2C355.8%20L231.7%2C376.6%20L225.1%2C397.7%20L220.2%2C419.0%20L217.0%2C440.3%20L215.5%2C461.3%20L215.4%2C481.9%20L216.9%2C501.9%20L219.8%2C521.2%20L223.9%2C539.6%20L229.3%2C557.0%20L235.8%2C573.2%20L243.2%2C588.2%20L251.5%2C601.9%20L260.6%2C614.3%20L270.3%2C625.2%20L280.5%2C634.7%20L291.1%2C642.7%20L301.9%2C649.2%20L313.0%2C654.2%20L324.0%2C657.8%20L335.0%2C660.0%20L345.9%2C660.9%20L356.5%2C660.4%20L366.7%2C658.7%20L376.6%2C655.9%20L386.0%2C652.0%20L394.8%2C647.0%20L403.0%2C641.2%20L410.5%2C634.6%20L417.4%2C627.3%20L423.5%2C619.4%20L428.9%2C610.9%20L433.6%2C602.1%20L437.4%2C593.0%20L440.5%2C583.7%20L442.9%2C574.3%20L444.5%2C564.9%20L445.4%2C555.6%20L445.6%2C546.4%20L445.1%2C537.5%20L444.0%2C528.9%20L442.3%2C520.7%20L440.0%2C512.9%20L437.3%2C505.5%20L434.1%2C498.8%20L430.6%2C492.5%20L426.6%2C486.9%20L422.4%2C481.9%20L418.0%2C477.6%20L413.3%2C473.9%20L408.6%2C470.8%20L403.7%2C468.4%20L398.8%2C466.7%20L393.9%2C465.5%20L389.1%2C465.0%20L384.4%2C465.1%20L379.8%2C465.7%20L375.4%2C466.8%20L371.2%2C468.4%20L367.3%2C470.5%20L363.6%2C472.9%20L360.1%2C475.8%20L357.0%2C478.9%20L354.2%2C482.4%20L351.8%2C486.0%20L349.6%2C489.9%20L347.8%2C493.9%20L346.4%2C498.0%20L345.2%2C502.1%20L344.5%2C506.3%20L344.0%2C510.4%20L343.8%2C514.5%20L344.0%2C518.4%20L344.4%2C522.3%20L345.1%2C526.0%20L346.0%2C529.5%20L347.1%2C532.8%20L348.5%2C535.8%20L350.0%2C538.6%20L351.7%2C541.2%20L353.5%2C543.5%20L355.5%2C545.5%20L357.5%2C547.2%20L359.6%2C548.6%20L361.8%2C549.7%20L363.9%2C550.6%20L366.1%2C551.2%20L368.2%2C551.5%20L370.3%2C551.5%20L372.3%2C551.3%20L374.3%2C550.9%20L376.2%2C550.2%20L378.0%2C549.4%20L379.6%2C548.3%20L381.2%2C547.1%20L382.6%2C545.7%20L383.9%2C544.2%20L385.0%2C542.7%20L386.0%2C541.0%20L386.8%2C539.2%20L387.5%2C537.4%20L388.0%2C535.6%20L388.4%2C533.8%20L388.7%2C531.9%20L388.8%2C530.1%20L388.7%2C528.4%20L388.6%2C526.6%20L388.3%2C525.0%20L387.9%2C523.4%20Z%22/%3E%3Cpath%20fill%3D%22%23643519%22%20d%3D%22M366.0%2C537.0%20L364.9%2C536.2%20L363.9%2C535.1%20L362.9%2C534.0%20L362.0%2C532.6%20L361.1%2C531.2%20L360.4%2C529.6%20L359.7%2C527.9%20L359.2%2C526.0%20L358.8%2C524.1%20L358.5%2C522.1%20L358.4%2C520.0%20L358.5%2C517.8%20L358.7%2C515.7%20L359.0%2C513.4%20L359.6%2C511.2%20L360.3%2C509.0%20L361.2%2C506.9%20L362.3%2C504.8%20L363.6%2C502.9%20L365.0%2C501.0%20L366.6%2C499.3%20L368.4%2C497.7%20L370.3%2C496.3%20L372.4%2C495.2%20L374.6%2C494.3%20L376.9%2C493.6%20L379.3%2C493.2%20L381.8%2C493.1%20L384.4%2C493.3%20L386.9%2C493.8%20L389.5%2C494.6%20L392.1%2C495.8%20L394.7%2C497.3%20L397.2%2C499.2%20L399.6%2C501.4%20L401.8%2C504.0%20L404.0%2C506.9%20L405.9%2C510.1%20L407.7%2C513.6%20L409.2%2C517.4%20L410.5%2C521.5%20L411.5%2C525.8%20L412.1%2C530.4%20L412.5%2C535.1%20L412.5%2C539.9%20L412.1%2C544.8%20L411.4%2C549.8%20L410.2%2C554.8%20L408.7%2C559.8%20L406.8%2C564.7%20L404.4%2C569.4%20L401.6%2C574.0%20L398.5%2C578.2%20L394.9%2C582.2%20L391.0%2C585.9%20L386.8%2C589.1%20L382.2%2C591.8%20L377.3%2C594.1%20L372.1%2C595.8%20L366.7%2C596.8%20L361.1%2C597.3%20L355.4%2C597.0%20L349.5%2C596.0%20L343.6%2C594.3%20L337.8%2C591.9%20L332.0%2C588.6%20L326.3%2C584.6%20L320.8%2C579.8%20L315.6%2C574.2%20L310.7%2C567.8%20L306.1%2C560.7%20L302.0%2C552.9%20L298.4%2C544.5%20L295.4%2C535.4%20L293.0%2C525.7%20L291.3%2C515.6%20L290.3%2C505.1%20L290.1%2C494.2%20L290.7%2C483.1%20L292.1%2C471.8%20L294.5%2C460.4%20L297.7%2C449.2%20L301.9%2C438.1%20L307.0%2C427.3%20L313.0%2C416.9%20L319.9%2C407.0%20L327.7%2C397.8%20L336.3%2C389.3%20L345.8%2C381.8%20L356.0%2C375.3%20L366.9%2C369.9%20L378.4%2C365.7%20L390.5%2C362.9%20L403.1%2C361.6%20L416.0%2C361.7%20L429.2%2C363.5%20L442.5%2C366.9%20L455.8%2C372.0%20L469.0%2C378.9%20L481.9%2C387.6%20L494.4%2C398.0%20L506.4%2C410.2%20L517.8%2C424.2%20L528.3%2C439.8%20L537.8%2C457.0%20L546.3%2C475.8%20L553.5%2C496.0%20L559.3%2C517.5%20L563.6%2C540.1%20L566.3%2C563.7%20L567.2%2C588.2%20L566.4%2C613.2%20L563.6%2C638.7%20L558.8%2C664.3%20L552.0%2C689.9%20L543.2%2C715.2%20L532.2%2C739.8%20L519.2%2C763.6%20L504.1%2C786.3%20L487.0%2C807.6%20L467.9%2C827.2%20L447.0%2C844.8%20L424.3%2C860.2%20L400.0%2C873.1%20L374.2%2C883.3%20L347.2%2C890.4%20L319.0%2C894.4%20L290.0%2C895.0%20L260.3%2C892.0%20L230.3%2C885.2%20L200.1%2C874.6%20L170.2%2C860.1%20L140.7%2C841.5%20L112.1%2C819.0%20L84.5%2C792.4%20L58.5%2C761.9%20L34.1%2C727.6%20L11.9%2C689.5%20L-7.9%2C647.9%20L-24.9%2C603.1%20L-38.9%2C555.2%20L-49.6%2C504.6%20L-56.7%2C451.6%20L-59.9%2C396.8%20L-59.0%2C340.4%20L-53.9%2C282.9%20L-44.3%2C224.9%20L-30.2%2C167.0%20L-11.4%2C109.6%20L12.2%2C53.4%20L40.4%2C-1.1%20L73.3%2C-53.2%20L110.9%2C-102.2%20L152.9%2C-147.6%20L199.2%2C-188.7%20L249.5%2C-225.0%20L303.6%2C-255.7%20L361.1%2C-280.4%20L421.6%2C-298.5%20L484.7%2C-309.4%20L549.9%2C-312.8%20L616.8%2C-308.1%20L684.6%2C-295.1%20L752.8%2C-273.5%20L820.7%2C-242.9%20L887.8%2C-203.4%20L953.2%2C-154.7%20L1016.2%2C-97.0%20L1076.2%2C-30.3%20L1132.4%2C45.2%20L1184.0%2C129.1%20L1230.3%2C221.2%20L1270.6%2C320.8%20L1304.1%2C427.5%20L1330.4%2C540.4%20L1348.6%2C658.9%20L1358.2%2C782.1%20L1358.8%2C908.9%20L1349.7%2C1038.4%20L1330.8%2C1169.4%20L1455.2%2C531.7%20L1424.8%2C404.3%20L1386.1%2C284.1%20L1339.9%2C171.9%20L1286.9%2C68.3%20L1228.0%2C-26.0%20L1164.0%2C-110.7%20L1095.7%2C-185.5%20L1024.0%2C-250.0%20L949.7%2C-304.3%20L873.7%2C-348.3%20L796.6%2C-382.0%20L719.4%2C-405.7%20L642.6%2C-419.7%20L567.0%2C-424.2%20L493.3%2C-419.6%20L422.0%2C-406.5%20L353.7%2C-385.4%20L288.9%2C-356.9%20L227.9%2C-321.5%20L171.3%2C-280.0%20L119.3%2C-233.0%20L72.1%2C-181.2%20L30.0%2C-125.3%20L-6.9%2C-66.0%20L-38.5%2C-4.1%20L-64.7%2C59.7%20L-85.5%2C124.8%20L-101.1%2C190.5%20L-111.6%2C256.1%20L-117.0%2C321.1%20L-117.6%2C384.9%20L-113.5%2C446.9%20L-105.2%2C506.7%20L-92.8%2C563.8%20L-76.6%2C617.8%20L-57.0%2C668.3%20L-34.4%2C715.1%20L-9.0%2C757.9%20L18.7%2C796.4%20L48.4%2C830.6%20L79.8%2C860.3%20L112.3%2C885.5%20L145.7%2C906.1%20L179.7%2C922.2%20L213.8%2C933.9%20L247.9%2C941.2%20L281.4%2C944.2%20L314.2%2C943.3%20L346.0%2C938.5%20L376.6%2C930.1%20L405.7%2C918.3%20L433.0%2C903.4%20L458.6%2C885.8%20L482.1%2C865.6%20L503.6%2C843.2%20L522.8%2C819.0%20L539.7%2C793.2%20L554.2%2C766.1%20L566.4%2C738.1%20L576.3%2C709.5%20L583.8%2C680.5%20L589.0%2C651.4%20L592.0%2C622.6%20L592.8%2C594.3%20L591.5%2C566.6%20L588.3%2C539.9%20L583.3%2C514.4%20L576.6%2C490.2%20L568.3%2C467.4%20L558.6%2C446.3%20L547.7%2C426.9%20L535.7%2C409.4%20L522.8%2C393.8%20L509.2%2C380.1%20L494.9%2C368.4%20L480.2%2C358.8%20L465.3%2C351.2%20L450.2%2C345.5%20L435.1%2C341.8%20L420.2%2C339.9%20L405.6%2C339.9%20L391.5%2C341.6%20L377.8%2C344.9%20L364.8%2C349.7%20L352.5%2C355.9%20L341.0%2C363.4%20L330.3%2C372.1%20L320.6%2C381.7%20L311.9%2C392.2%20L304.1%2C403.4%20L297.4%2C415.3%20L291.7%2C427.5%20L287.1%2C440.1%20L283.5%2C452.9%20L281.0%2C465.8%20L279.4%2C478.5%20L278.8%2C491.1%20L279.1%2C503.4%20L280.3%2C515.3%20L282.3%2C526.8%20L285.1%2C537.6%20L288.6%2C547.9%20L292.7%2C557.4%20L297.4%2C566.2%20L302.5%2C574.1%20L308.1%2C581.2%20L314.1%2C587.5%20L320.3%2C592.9%20L326.8%2C597.4%20L333.4%2C601.0%20L340.0%2C603.7%20L346.7%2C605.6%20L353.3%2C606.6%20L359.8%2C606.9%20L366.1%2C606.3%20L372.2%2C605.0%20L378.0%2C603.1%20L383.6%2C600.5%20L388.7%2C597.3%20L393.5%2C593.6%20L397.9%2C589.5%20L401.9%2C584.9%20L405.5%2C580.0%20L408.5%2C574.9%20L411.2%2C569.5%20L413.3%2C564.0%20L415.0%2C558.3%20L416.3%2C552.7%20L417.1%2C547.0%20L417.5%2C541.4%20L417.4%2C536.0%20L417.0%2C530.6%20L416.2%2C525.5%20L415.1%2C520.7%20L413.6%2C516.1%20L411.9%2C511.8%20L409.9%2C507.8%20L407.6%2C504.2%20L405.2%2C500.9%20L402.6%2C498.1%20L399.9%2C495.6%20L397.1%2C493.5%20L394.2%2C491.8%20L391.2%2C490.5%20L388.3%2C489.6%20L385.4%2C489.0%20L382.5%2C488.8%20L379.7%2C489.0%20L376.9%2C489.5%20L374.3%2C490.3%20L371.9%2C491.3%20L369.5%2C492.7%20L367.4%2C494.2%20L365.4%2C496.0%20L363.6%2C498.0%20L361.9%2C500.1%20L360.5%2C502.3%20L359.3%2C504.7%20L358.3%2C507.1%20L357.5%2C509.6%20L356.9%2C512.1%20L356.5%2C514.6%20L356.3%2C517.1%20L356.2%2C519.5%20L356.4%2C521.9%20L356.7%2C524.2%20L357.1%2C526.4%20L357.8%2C528.4%20L358.5%2C530.4%20L359.3%2C532.1%20L360.3%2C533.8%20L361.4%2C535.3%20L362.5%2C536.6%20L363.7%2C537.7%20L364.9%2C538.7%20L366.2%2C539.5%20L367.5%2C540.1%20L368.8%2C540.6%20L370.1%2C540.8%20L371.4%2C541.0%20Z%22/%3E%3Cpath%20fill%3D%22%23ae642d%22%20d%3D%22M366.7%2C537.8%20L365.6%2C537.1%20L364.5%2C536.2%20L363.4%2C535.1%20L362.4%2C533.9%20L361.5%2C532.5%20L360.7%2C531.0%20L359.9%2C529.3%20L359.3%2C527.6%20L358.8%2C525.7%20L358.4%2C523.7%20L358.2%2C521.6%20L358.1%2C519.4%20L358.2%2C517.2%20L358.4%2C515.0%20L358.8%2C512.7%20L359.4%2C510.5%20L360.2%2C508.3%20L361.2%2C506.1%20L362.3%2C504.0%20L363.6%2C502.0%20L365.1%2C500.1%20L366.8%2C498.4%20L368.7%2C496.9%20L370.7%2C495.5%20L372.8%2C494.4%20L375.1%2C493.5%20L377.4%2C492.9%20L379.9%2C492.5%20L382.5%2C492.5%20L385.1%2C492.7%20L387.7%2C493.3%20L390.4%2C494.2%20L393.0%2C495.5%20L395.6%2C497.2%20L398.1%2C499.1%20L400.5%2C501.5%20L402.8%2C504.2%20L405.0%2C507.2%20L406.9%2C510.5%20L408.7%2C514.2%20L410.2%2C518.1%20L411.4%2C522.3%20L412.3%2C526.8%20L413.0%2C531.4%20L413.2%2C536.3%20L413.2%2C541.2%20L412.7%2C546.3%20L411.9%2C551.4%20L410.6%2C556.5%20L409.0%2C561.5%20L406.9%2C566.5%20L404.4%2C571.3%20L401.5%2C575.8%20L398.2%2C580.2%20L394.5%2C584.1%20L390.5%2C587.8%20L386.1%2C591.0%20L381.3%2C593.7%20L376.2%2C595.8%20L370.9%2C597.4%20L365.4%2C598.4%20L359.6%2C598.7%20L353.8%2C598.3%20L347.8%2C597.1%20L341.8%2C595.2%20L335.8%2C592.6%20L329.9%2C589.1%20L324.2%2C584.8%20L318.6%2C579.7%20L313.3%2C573.9%20L308.4%2C567.2%20L303.9%2C559.8%20L299.8%2C551.7%20L296.2%2C543.0%20L293.3%2C533.6%20L291.0%2C523.7%20L289.4%2C513.2%20L288.5%2C502.4%20L288.5%2C491.3%20L289.3%2C479.9%20L290.9%2C468.3%20L293.5%2C456.8%20L297.0%2C445.3%20L301.4%2C434.1%20L306.8%2C423.1%20L313.1%2C412.6%20L320.3%2C402.7%20L328.5%2C393.4%20L337.5%2C385.0%20L347.3%2C377.5%20L357.8%2C371.1%20L369.1%2C365.9%20L381.0%2C361.9%20L393.5%2C359.3%20L406.3%2C358.3%20L419.6%2C358.7%20L433.0%2C360.9%20L446.6%2C364.7%20L460.1%2C370.3%20L473.5%2C377.7%20L486.7%2C386.9%20L499.4%2C397.9%20L511.5%2C410.8%20L522.9%2C425.3%20L533.4%2C441.6%20L542.9%2C459.5%20L551.3%2C478.9%20L558.3%2C499.8%20L563.9%2C522.0%20L568.0%2C545.3%20L570.4%2C569.6%20L571.0%2C594.6%20L569.7%2C620.3%20L566.5%2C646.3%20L561.2%2C672.5%20L553.8%2C698.5%20L544.4%2C724.1%20L532.8%2C749.1%20L519.0%2C773.2%20L503.2%2C796.1%20L485.4%2C817.4%20L465.5%2C837.0%20L443.8%2C854.5%20L420.3%2C869.7%20L395.2%2C882.3%20L368.6%2C892.1%20L340.8%2C898.7%20L311.9%2C902.1%20L282.1%2C901.9%20L251.8%2C898.1%20L221.1%2C890.4%20L190.4%2C878.8%20L159.9%2C863.1%20L130.0%2C843.4%20L101.0%2C819.5%20L73.2%2C791.6%20L47.0%2C759.7%20L22.6%2C723.9%20L0.4%2C684.3%20L-19.2%2C641.2%20L-36.0%2C594.8%20L-49.6%2C545.4%20L-59.7%2C493.3%20L-66.2%2C438.8%20L-68.6%2C382.5%20L-66.9%2C324.7%20L-60.7%2C266.0%20L-50.0%2C206.8%20L-34.6%2C147.8%20L-14.4%2C89.5%20L10.6%2C32.5%20L40.4%2C-22.6%20L74.9%2C-75.1%20L114.1%2C-124.4%20L157.9%2C-169.9%20L205.9%2C-210.8%20L258.1%2C-246.7%20L314.0%2C-276.8%20L373.3%2C-300.6%20L435.6%2C-317.6%20L500.4%2C-327.2%20L567.3%2C-329.0%20L635.7%2C-322.5%20L705.0%2C-307.5%20L774.5%2C-283.5%20L843.7%2C-250.5%20L911.7%2C-208.3%20L978.0%2C-156.8%20L1041.7%2C-96.0%20L1102.1%2C-26.1%20L1158.5%2C52.7%20L1210.1%2C140.0%20L1256.1%2C235.5%20L1295.8%2C338.6%20L1328.6%2C448.8%20L1353.7%2C565.2%20L1370.5%2C687.1%20L1378.5%2C813.5%20L1377.1%2C943.5%20L1365.8%2C1076.0%20L1446.2%2C704.0%20L1428.4%2C572.7%20L1401.7%2C447.3%20L1366.7%2C328.6%20L1324.2%2C217.4%20L1275.0%2C114.4%20L1219.7%2C20.2%20L1159.3%2C-64.9%20L1094.4%2C-140.4%20L1026.0%2C-206.1%20L954.8%2C-261.9%20L881.7%2C-307.6%20L807.3%2C-343.5%20L732.5%2C-369.6%20L658.0%2C-386.1%20L584.4%2C-393.4%20L512.4%2C-391.8%20L442.6%2C-381.7%20L375.4%2C-363.7%20L311.5%2C-338.4%20L251.3%2C-306.2%20L195.1%2C-267.9%20L143.2%2C-224.0%20L96.0%2C-175.3%20L53.7%2C-122.4%20L16.3%2C-66.0%20L-15.9%2C-6.8%20L-43.0%2C54.4%20L-64.8%2C117.1%20L-81.6%2C180.6%20L-93.3%2C244.2%20L-100.1%2C307.4%20L-102.1%2C369.6%20L-99.7%2C430.2%20L-92.9%2C488.8%20L-82.1%2C545.0%20L-67.6%2C598.2%20L-49.7%2C648.3%20L-28.7%2C694.8%20L-4.9%2C737.5%20L21.2%2C776.1%20L49.4%2C810.6%20L79.2%2C840.8%20L110.4%2C866.6%20L142.5%2C888.0%20L175.3%2C905.0%20L208.3%2C917.6%20L241.3%2C926.0%20L274.0%2C930.3%20L306.0%2C930.6%20L337.1%2C927.1%20L367.1%2C920.1%20L395.7%2C909.7%20L422.8%2C896.3%20L448.1%2C880.0%20L471.6%2C861.3%20L493.0%2C840.3%20L512.3%2C817.4%20L529.3%2C792.8%20L544.2%2C767.0%20L556.7%2C740.1%20L567.0%2C712.6%20L575.0%2C684.6%20L580.8%2C656.5%20L584.3%2C628.5%20L585.8%2C600.9%20L585.2%2C573.9%20L582.7%2C547.7%20L578.4%2C522.6%20L572.4%2C498.7%20L564.9%2C476.2%20L555.9%2C455.3%20L545.7%2C435.9%20L534.5%2C418.4%20L522.2%2C402.6%20L509.2%2C388.8%20L495.6%2C376.9%20L481.5%2C366.9%20L467.1%2C358.9%20L452.5%2C352.8%20L437.9%2C348.6%20L423.4%2C346.2%20L409.2%2C345.7%20L395.3%2C346.8%20L381.9%2C349.5%20L369.1%2C353.7%20L357.0%2C359.3%20L345.6%2C366.1%20L335.0%2C374.1%20L325.3%2C383.2%20L316.5%2C393.1%20L308.7%2C403.7%20L301.9%2C415.0%20L296.1%2C426.8%20L291.3%2C438.9%20L287.5%2C451.2%20L284.7%2C463.6%20L282.8%2C476.0%20L282.0%2C488.3%20L282.0%2C500.3%20L282.9%2C512.0%20L284.6%2C523.2%20L287.0%2C533.9%20L290.2%2C544.0%20L294.0%2C553.4%20L298.3%2C562.2%20L303.2%2C570.1%20L308.5%2C577.3%20L314.2%2C583.6%20L320.1%2C589.1%20L326.3%2C593.8%20L332.6%2C597.5%20L339.1%2C600.5%20L345.5%2C602.5%20L351.9%2C603.8%20L358.2%2C604.2%20L364.4%2C604.0%20L370.4%2C602.9%20L376.1%2C601.3%20L381.6%2C598.9%20L386.7%2C596.0%20L391.5%2C592.6%20L395.9%2C588.8%20L399.9%2C584.5%20L403.4%2C579.8%20L406.6%2C574.9%20L409.2%2C569.8%20L411.5%2C564.5%20L413.3%2C559.0%20L414.6%2C553.6%20L415.5%2C548.1%20L416.0%2C542.6%20L416.1%2C537.3%20L415.8%2C532.1%20L415.2%2C527.1%20L414.2%2C522.3%20L412.9%2C517.8%20L411.3%2C513.5%20L409.4%2C509.6%20L407.3%2C506.0%20L405.0%2C502.7%20L402.6%2C499.8%20L400.0%2C497.3%20L397.3%2C495.1%20L394.5%2C493.4%20L391.6%2C492.0%20L388.8%2C491.0%20L385.9%2C490.3%20L383.1%2C490.0%20L380.4%2C490.0%20L377.7%2C490.4%20L375.2%2C491.1%20L372.7%2C492.0%20L370.4%2C493.2%20L368.3%2C494.7%20L366.3%2C496.4%20L364.5%2C498.2%20L362.8%2C500.2%20L361.4%2C502.4%20L360.2%2C504.6%20L359.1%2C506.9%20L358.3%2C509.3%20L357.6%2C511.7%20L357.2%2C514.2%20L356.9%2C516.6%20L356.8%2C518.9%20L356.9%2C521.3%20L357.1%2C523.5%20L357.6%2C525.6%20L358.1%2C527.7%20L358.8%2C529.6%20L359.6%2C531.4%20L360.5%2C533.0%20L361.5%2C534.5%20L362.5%2C535.8%20L363.7%2C537.0%20L364.8%2C538.0%20L366.1%2C538.8%20L367.3%2C539.4%20L368.6%2C539.9%20L369.8%2C540.3%20Z%22/%3E%3Cpath%20fill%3D%22%23e9a958%22%20d%3D%22M367.2%2C538.3%20L366.0%2C537.6%20L364.9%2C536.8%20L363.8%2C535.8%20L362.8%2C534.6%20L361.8%2C533.3%20L360.9%2C531.8%20L360.1%2C530.2%20L359.4%2C528.5%20L358.8%2C526.6%20L358.4%2C524.6%20L358.1%2C522.6%20L357.9%2C520.4%20L357.9%2C518.2%20L358.1%2C516.0%20L358.4%2C513.7%20L358.9%2C511.4%20L359.6%2C509.1%20L360.5%2C506.9%20L361.6%2C504.8%20L362.8%2C502.7%20L364.3%2C500.7%20L365.9%2C498.9%20L367.7%2C497.3%20L369.6%2C495.8%20L371.7%2C494.5%20L374.0%2C493.5%20L376.3%2C492.8%20L378.8%2C492.3%20L381.3%2C492.1%20L383.9%2C492.2%20L386.6%2C492.6%20L389.3%2C493.4%20L392.0%2C494.5%20L394.6%2C496.0%20L397.2%2C497.8%20L399.7%2C500.0%20L402.1%2C502.6%20L404.3%2C505.5%20L406.4%2C508.7%20L408.3%2C512.3%20L409.9%2C516.1%20L411.3%2C520.2%20L412.4%2C524.6%20L413.2%2C529.2%20L413.6%2C534.1%20L413.7%2C539.0%20L413.4%2C544.1%20L412.8%2C549.2%20L411.7%2C554.4%20L410.2%2C559.5%20L408.3%2C564.6%20L406.0%2C569.5%20L403.3%2C574.3%20L400.2%2C578.8%20L396.6%2C583.0%20L392.7%2C586.8%20L388.4%2C590.3%20L383.7%2C593.2%20L378.7%2C595.7%20L373.5%2C597.6%20L368.0%2C598.9%20L362.2%2C599.5%20L356.3%2C599.4%20L350.3%2C598.6%20L344.3%2C597.1%20L338.2%2C594.7%20L332.2%2C591.6%20L326.3%2C587.7%20L320.6%2C582.9%20L315.1%2C577.4%20L309.9%2C571.0%20L305.2%2C563.9%20L300.8%2C556.0%20L297.0%2C547.5%20L293.7%2C538.3%20L291.0%2C528.5%20L289.0%2C518.2%20L287.8%2C507.4%20L287.4%2C496.3%20L287.8%2C484.9%20L289.0%2C473.2%20L291.2%2C461.6%20L294.3%2C449.9%20L298.3%2C438.4%20L303.3%2C427.1%20L309.2%2C416.3%20L316.1%2C405.9%20L323.9%2C396.2%20L332.6%2C387.3%20L342.1%2C379.3%20L352.5%2C372.2%20L363.5%2C366.4%20L375.3%2C361.7%20L387.6%2C358.4%20L400.4%2C356.6%20L413.7%2C356.4%20L427.2%2C357.7%20L440.9%2C360.8%20L454.6%2C365.6%20L468.3%2C372.2%20L481.7%2C380.6%20L494.8%2C390.9%20L507.3%2C403.0%20L519.2%2C416.9%20L530.3%2C432.6%20L540.4%2C449.9%20L549.5%2C468.8%20L557.2%2C489.3%20L563.6%2C511.1%20L568.5%2C534.1%20L571.8%2C558.3%20L573.2%2C583.3%20L572.9%2C609.0%20L570.5%2C635.2%20L566.2%2C661.6%20L559.7%2C688.0%20L551.2%2C714.2%20L540.5%2C739.8%20L527.6%2C764.7%20L512.6%2C788.4%20L495.5%2C810.8%20L476.4%2C831.5%20L455.3%2C850.2%20L432.4%2C866.8%20L407.7%2C880.8%20L381.5%2C892.1%20L353.9%2C900.3%20L325.2%2C905.3%20L295.5%2C906.9%20L265.0%2C904.8%20L234.1%2C898.9%20L203.0%2C889.1%20L172.0%2C875.2%20L141.5%2C857.2%20L111.6%2C835.0%20L82.9%2C808.7%20L55.5%2C778.3%20L29.9%2C744.0%20L6.4%2C705.7%20L-14.7%2C663.8%20L-33.1%2C618.4%20L-48.4%2C569.8%20L-60.4%2C518.3%20L-68.8%2C464.3%20L-73.2%2C408.2%20L-73.5%2C350.4%20L-69.4%2C291.4%20L-60.7%2C231.6%20L-47.4%2C171.8%20L-29.3%2C112.4%20L-6.4%2C54.0%20L21.4%2C-2.8%20L54.1%2C-57.2%20L91.6%2C-108.7%20L133.7%2C-156.7%20L180.2%2C-200.4%20L231.1%2C-239.2%20L285.8%2C-272.5%20L344.2%2C-299.7%20L405.9%2C-320.2%20L470.3%2C-333.6%20L537.1%2C-339.2%20L605.6%2C-336.7%20L675.4%2C-325.6%20L745.7%2C-305.7%20L816.0%2C-276.7%20L885.4%2C-238.4%20L953.4%2C-190.8%20L1019.2%2C-133.7%20L1082.0%2C-67.4%20L1141.1%2C8.0%20L1195.7%2C92.3%20L1245.0%2C185.1%20L1288.3%2C285.8%20L1324.9%2C393.9%20L1354.1%2C508.8%20L1375.2%2C629.6%20L1387.6%2C755.4%20L1390.8%2C885.4%20L1384.2%2C1018.4%20L1414.7%2C900.3%20L1411.9%2C767.1%20L1399.7%2C638.0%20L1378.5%2C514.1%20L1349.0%2C396.2%20L1311.9%2C285.2%20L1267.8%2C181.7%20L1217.6%2C86.3%20L1162.0%2C-0.4%20L1101.7%2C-78.0%20L1037.6%2C-146.4%20L970.4%2C-205.2%20L900.8%2C-254.4%20L829.8%2C-294.1%20L757.9%2C-324.2%20L685.9%2C-345.0%20L614.4%2C-356.7%20L544.2%2C-359.7%20L475.8%2C-354.3%20L409.7%2C-341.1%20L346.4%2C-320.4%20L286.5%2C-292.8%20L230.2%2C-259.0%20L178.0%2C-219.5%20L130.1%2C-175.0%20L86.8%2C-126.1%20L48.2%2C-73.6%20L14.5%2C-18.0%20L-14.2%2C40.0%20L-37.9%2C99.7%20L-56.7%2C160.5%20L-70.5%2C221.8%20L-79.6%2C283.0%20L-84.0%2C343.4%20L-83.9%2C402.7%20L-79.6%2C460.2%20L-71.2%2C515.6%20L-59.1%2C568.4%20L-43.6%2C618.3%20L-24.9%2C665.0%20L-3.4%2C708.1%20L20.6%2C747.4%20L46.7%2C782.8%20L74.6%2C814.1%20L104.0%2C841.2%20L134.5%2C864.1%20L165.7%2C882.7%20L197.4%2C897.1%20L229.3%2C907.4%20L260.9%2C913.6%20L292.1%2C915.9%20L322.6%2C914.5%20L352.1%2C909.5%20L380.4%2C901.2%20L407.3%2C889.8%20L432.6%2C875.6%20L456.1%2C858.8%20L477.8%2C839.7%20L497.5%2C818.6%20L515.1%2C795.7%20L530.6%2C771.5%20L543.8%2C746.1%20L554.9%2C719.9%20L563.8%2C693.2%20L570.4%2C666.1%20L575.0%2C639.1%20L577.5%2C612.2%20L578.0%2C585.9%20L576.5%2C560.2%20L573.3%2C535.5%20L568.4%2C511.8%20L561.9%2C489.4%20L554.0%2C468.5%20L544.8%2C449.0%20L534.5%2C431.2%20L523.2%2C415.1%20L511.0%2C400.7%20L498.2%2C388.3%20L484.9%2C377.7%20L471.1%2C369.0%20L457.2%2C362.1%20L443.1%2C357.1%20L429.1%2C353.9%20L415.2%2C352.4%20L401.7%2C352.6%20L388.5%2C354.4%20L375.9%2C357.7%20L363.8%2C362.3%20L352.4%2C368.3%20L341.8%2C375.5%20L332.0%2C383.6%20L323.1%2C392.8%20L315.1%2C402.6%20L308.0%2C413.2%20L301.9%2C424.3%20L296.7%2C435.8%20L292.5%2C447.6%20L289.3%2C459.5%20L287.1%2C471.5%20L285.7%2C483.3%20L285.3%2C495.0%20L285.7%2C506.5%20L286.9%2C517.5%20L288.9%2C528.1%20L291.6%2C538.2%20L294.9%2C547.6%20L298.8%2C556.4%20L303.3%2C564.5%20L308.2%2C571.8%20L313.4%2C578.3%20L319.0%2C584.0%20L324.9%2C588.9%20L330.9%2C593.0%20L337.1%2C596.3%20L343.3%2C598.7%20L349.5%2C600.3%20L355.6%2C601.2%20L361.6%2C601.3%20L367.5%2C600.7%20L373.2%2C599.4%20L378.6%2C597.5%20L383.7%2C595.0%20L388.5%2C592.0%20L392.9%2C588.5%20L396.9%2C584.5%20L400.6%2C580.2%20L403.8%2C575.7%20L406.6%2C570.8%20L409.0%2C565.8%20L411.0%2C560.6%20L412.5%2C555.3%20L413.6%2C550.1%20L414.3%2C544.8%20L414.6%2C539.6%20L414.5%2C534.5%20L414.1%2C529.6%20L413.3%2C524.8%20L412.2%2C520.3%20L410.8%2C516.1%20L409.1%2C512.1%20L407.2%2C508.5%20L405.1%2C505.2%20L402.8%2C502.2%20L400.4%2C499.5%20L397.8%2C497.3%20L395.2%2C495.4%20L392.5%2C493.9%20L389.7%2C492.7%20L387.0%2C491.9%20L384.3%2C491.4%20L381.6%2C491.3%20L379.0%2C491.5%20L376.5%2C492.0%20L374.0%2C492.7%20L371.7%2C493.8%20L369.6%2C495.0%20L367.6%2C496.5%20L365.8%2C498.2%20L364.1%2C500.1%20L362.6%2C502.1%20L361.3%2C504.2%20L360.2%2C506.4%20L359.3%2C508.7%20L358.6%2C511.0%20L358.0%2C513.3%20L357.7%2C515.6%20L357.5%2C518.0%20L357.5%2C520.2%20L357.7%2C522.4%20L358.0%2C524.5%20L358.4%2C526.5%20L359.0%2C528.5%20L359.7%2C530.2%20L360.5%2C531.9%20L361.4%2C533.4%20L362.4%2C534.8%20L363.5%2C536.0%20L364.6%2C537.0%20L365.8%2C537.9%20L367.0%2C538.6%20L368.2%2C539.2%20Z%22/%3E%3Cpath%20fill%3D%22%23b16d35%22%20d%3D%22M369.0%2C539.8%20L367.8%2C539.3%20L366.5%2C538.7%20L365.3%2C538.0%20L364.2%2C537.0%20L363.0%2C535.9%20L362.0%2C534.7%20L361.0%2C533.3%20L360.1%2C531.7%20L359.3%2C530.0%20L358.6%2C528.1%20L358.0%2C526.2%20L357.6%2C524.1%20L357.3%2C521.9%20L357.1%2C519.6%20L357.2%2C517.3%20L357.4%2C515.0%20L357.8%2C512.6%20L358.4%2C510.2%20L359.2%2C507.9%20L360.1%2C505.6%20L361.3%2C503.3%20L362.7%2C501.2%20L364.2%2C499.2%20L366.0%2C497.3%20L367.9%2C495.6%20L369.9%2C494.2%20L372.2%2C492.9%20L374.5%2C491.9%20L377.0%2C491.2%20L379.6%2C490.7%20L382.3%2C490.6%20L385.0%2C490.8%20L387.8%2C491.4%20L390.6%2C492.3%20L393.4%2C493.5%20L396.1%2C495.2%20L398.8%2C497.2%20L401.4%2C499.6%20L403.9%2C502.3%20L406.2%2C505.4%20L408.3%2C508.9%20L410.2%2C512.7%20L411.8%2C516.8%20L413.2%2C521.2%20L414.2%2C525.8%20L415.0%2C530.7%20L415.4%2C535.7%20L415.4%2C541.0%20L415.0%2C546.3%20L414.2%2C551.7%20L413.0%2C557.0%20L411.3%2C562.4%20L409.2%2C567.6%20L406.7%2C572.7%20L403.7%2C577.6%20L400.4%2C582.3%20L396.5%2C586.6%20L392.3%2C590.5%20L387.7%2C593.9%20L382.8%2C596.9%20L377.5%2C599.3%20L372.0%2C601.2%20L366.2%2C602.3%20L360.1%2C602.8%20L354.0%2C602.6%20L347.7%2C601.5%20L341.3%2C599.7%20L335.0%2C597.0%20L328.8%2C593.6%20L322.7%2C589.2%20L316.7%2C584.1%20L311.1%2C578.1%20L305.8%2C571.2%20L300.9%2C563.6%20L296.5%2C555.2%20L292.6%2C546.1%20L289.3%2C536.4%20L286.7%2C526.0%20L284.9%2C515.1%20L283.8%2C503.7%20L283.6%2C492.0%20L284.2%2C480.0%20L285.7%2C467.9%20L288.2%2C455.7%20L291.7%2C443.6%20L296.2%2C431.6%20L301.6%2C419.9%20L308.1%2C408.7%20L315.5%2C398.1%20L323.9%2C388.2%20L333.2%2C379.1%20L343.3%2C370.9%20L354.3%2C363.9%20L366.1%2C358.1%20L378.5%2C353.6%20L391.5%2C350.5%20L405.0%2C349.0%20L418.9%2C349.2%20L433.1%2C351.0%20L447.4%2C354.7%20L461.7%2C360.2%20L475.9%2C367.6%20L489.9%2C376.8%20L503.4%2C388.1%20L516.3%2C401.2%20L528.6%2C416.1%20L539.9%2C432.9%20L550.2%2C451.4%20L559.3%2C471.6%20L567.1%2C493.3%20L573.4%2C516.5%20L578.0%2C540.8%20L580.9%2C566.3%20L582.0%2C592.6%20L581.1%2C619.6%20L578.2%2C647.0%20L573.1%2C674.6%20L565.8%2C702.1%20L556.3%2C729.3%20L544.5%2C755.9%20L530.5%2C781.5%20L514.3%2C806.0%20L495.9%2C828.9%20L475.5%2C850.1%20L452.9%2C869.1%20L428.5%2C885.7%20L402.4%2C899.7%20L374.7%2C910.6%20L345.5%2C918.4%20L315.2%2C922.8%20L284.0%2C923.4%20L252.1%2C920.3%20L219.7%2C913.1%20L187.3%2C901.7%20L155.0%2C886.2%20L123.3%2C866.3%20L92.4%2C842.1%20L62.7%2C813.5%20L34.6%2C780.8%20L8.4%2C743.8%20L-15.6%2C702.9%20L-37.0%2C658.2%20L-55.4%2C610.0%20L-70.5%2C558.4%20L-82.1%2C504.0%20L-89.8%2C447.0%20L-93.3%2C388.0%20L-92.5%2C327.2%20L-87.0%2C265.4%20L-76.8%2C203.0%20L-61.6%2C140.5%20L-41.5%2C78.7%20L-16.2%2C18.1%20L14.1%2C-40.5%20L49.5%2C-96.7%20L89.8%2C-149.6%20L135.0%2C-198.5%20L184.7%2C-242.9%20L238.8%2C-282.0%20L297.0%2C-315.2%20L358.9%2C-341.9%20L424.0%2C-361.5%20L491.9%2C-373.5%20L562.1%2C-377.2%20L634.1%2C-372.4%20L707.1%2C-358.5%20L780.5%2C-335.4%20L853.7%2C-302.7%20L925.9%2C-260.2%20L996.4%2C-208.0%20L1064.4%2C-146.0%20L1129.0%2C-74.4%20L1189.6%2C6.8%20L1245.2%2C97.0%20L1295.2%2C196.0%20L1338.7%2C303.2%20L1375.0%2C417.9%20L1403.4%2C539.4%20L1423.2%2C666.9%20L1433.8%2C799.5%20L1443.1%2C731.4%20L1427.4%2C599.7%20L1402.7%2C473.6%20L1369.6%2C354.0%20L1328.9%2C241.8%20L1281.2%2C137.5%20L1227.4%2C41.9%20L1168.3%2C-44.7%20L1104.7%2C-121.8%20L1037.3%2C-189.3%20L967.0%2C-246.9%20L894.6%2C-294.5%20L820.8%2C-332.3%20L746.4%2C-360.3%20L672.2%2C-378.7%20L598.7%2C-387.8%20L526.7%2C-388.1%20L456.7%2C-379.8%20L389.3%2C-363.6%20L325.0%2C-339.8%20L264.3%2C-309.2%20L207.5%2C-272.3%20L155.0%2C-229.8%20L107.0%2C-182.3%20L63.8%2C-130.5%20L25.6%2C-75.1%20L-7.5%2C-16.7%20L-35.5%2C43.8%20L-58.4%2C105.9%20L-76.1%2C169.0%20L-88.8%2C232.3%20L-96.6%2C295.3%20L-99.6%2C357.4%20L-98.1%2C418.1%20L-92.2%2C476.9%20L-82.3%2C533.3%20L-68.7%2C586.9%20L-51.5%2C637.4%20L-31.2%2C684.4%20L-8.2%2C727.7%20L17.4%2C767.0%20L45.0%2C802.2%20L74.4%2C833.2%20L105.1%2C859.7%20L136.9%2C882.0%20L169.4%2C899.8%20L202.2%2C913.3%20L235.1%2C922.5%20L267.6%2C927.6%20L299.7%2C928.8%20L330.8%2C926.1%20L360.9%2C919.8%20L389.7%2C910.2%20L417.0%2C897.4%20L442.6%2C881.8%20L466.3%2C863.7%20L488.0%2C843.2%20L507.7%2C820.8%20L525.1%2C796.7%20L540.4%2C771.3%20L553.3%2C744.8%20L564.0%2C717.5%20L572.5%2C689.7%20L578.7%2C661.7%20L582.7%2C633.8%20L584.5%2C606.2%20L584.4%2C579.2%20L582.3%2C553.0%20L578.4%2C527.8%20L572.8%2C503.8%20L565.6%2C481.1%20L557.0%2C459.9%20L547.1%2C440.3%20L536.1%2C422.5%20L524.1%2C406.4%20L511.3%2C392.3%20L497.9%2C380.0%20L483.9%2C369.7%20L469.7%2C361.3%20L455.2%2C354.8%20L440.7%2C350.3%20L426.2%2C347.5%20L412.0%2C346.6%20L398.1%2C347.3%20L384.7%2C349.7%20L371.8%2C353.5%20L359.6%2C358.8%20L348.1%2C365.4%20L337.4%2C373.1%20L327.5%2C381.9%20L318.6%2C391.6%20L310.6%2C402.1%20L303.6%2C413.2%20L297.6%2C424.8%20L292.6%2C436.8%20L288.6%2C449.0%20L285.6%2C461.3%20L283.6%2C473.7%20L282.5%2C485.9%20L282.4%2C497.9%20L283.1%2C509.6%20L284.6%2C520.9%20L286.9%2C531.6%20L289.9%2C541.8%20L293.5%2C551.4%20L297.8%2C560.2%20L302.5%2C568.3%20L307.7%2C575.6%20L313.2%2C582.1%20L319.1%2C587.7%20L325.2%2C592.5%20L331.5%2C596.4%20L337.9%2C599.5%20L344.3%2C601.8%20L350.7%2C603.2%20L357.0%2C603.8%20L363.2%2C603.7%20L369.2%2C602.8%20L374.9%2C601.3%20L380.4%2C599.1%20L385.6%2C596.3%20L390.4%2C593.0%20L394.9%2C589.3%20L398.9%2C585.1%20L402.6%2C580.6%20L405.8%2C575.7%20L408.5%2C570.7%20L410.9%2C565.4%20L412.7%2C560.0%20L414.2%2C554.6%20L415.2%2C549.1%20L415.8%2C543.7%20L415.9%2C538.4%20L415.7%2C533.2%20L415.2%2C528.1%20L414.2%2C523.3%20L413.0%2C518.7%20L411.4%2C514.4%20L409.6%2C510.4%20L407.6%2C506.8%20L405.4%2C503.5%20L402.9%2C500.5%20L400.4%2C497.9%20L397.7%2C495.7%20L395.0%2C493.9%20L392.1%2C492.4%20L389.3%2C491.3%20L386.5%2C490.6%20L383.7%2C490.2%20L380.9%2C490.2%20L378.3%2C490.5%20L375.7%2C491.1%20L373.2%2C492.0%20L370.9%2C493.1%20L368.7%2C494.5%20L366.7%2C496.1%20L364.9%2C497.9%20L363.2%2C499.9%20L361.8%2C502.0%20L360.5%2C504.2%20L359.4%2C506.5%20L358.5%2C508.9%20L357.8%2C511.3%20L357.3%2C513.7%20L357.0%2C516.1%20L356.9%2C518.5%20L357.0%2C520.8%20L357.2%2C523.0%20L357.5%2C525.2%20L358.1%2C527.2%20L358.7%2C529.2%20L359.5%2C531.0%20L360.3%2C532.6%20L361.3%2C534.1%20L362.4%2C535.5%20L363.5%2C536.7%20L364.6%2C537.7%20L365.9%2C538.6%20L367.1%2C539.3%20L368.3%2C539.8%20L369.6%2C540.1%20Z%22/%3E%3Cpath%20fill%3D%22%23643519%22%20d%3D%22M371.4%2C509.0%20L372.5%2C508.3%20L373.7%2C507.6%20L375.0%2C507.1%20L376.3%2C506.7%20L377.8%2C506.5%20L379.2%2C506.5%20L380.7%2C506.6%20L382.2%2C507.0%20L383.7%2C507.5%20L385.2%2C508.2%20L386.7%2C509.1%20L388.1%2C510.3%20L389.5%2C511.6%20L390.8%2C513.1%20L392.0%2C514.8%20L393.1%2C516.7%20L394.1%2C518.8%20L395.0%2C521.0%20L395.7%2C523.4%20L396.2%2C525.9%20L396.6%2C528.6%20L396.8%2C531.3%20L396.7%2C534.1%20L396.5%2C537.0%20L396.0%2C539.9%20L395.3%2C542.8%20L394.4%2C545.7%20L393.2%2C548.5%20L391.8%2C551.2%20L390.2%2C553.8%20L388.3%2C556.3%20L386.2%2C558.6%20L383.9%2C560.7%20L381.4%2C562.5%20L378.7%2C564.0%20L375.8%2C565.3%20L372.8%2C566.2%20L369.6%2C566.7%20L366.4%2C566.9%20L363.0%2C566.7%20L359.6%2C566.1%20L356.2%2C565.0%20L352.8%2C563.5%20L349.4%2C561.5%20L346.2%2C559.1%20L343.0%2C556.2%20L340.0%2C552.9%20L337.2%2C549.1%20L334.6%2C545.0%20L332.3%2C540.4%20L330.2%2C535.4%20L328.6%2C530.1%20L327.2%2C524.4%20L326.3%2C518.5%20L325.8%2C512.3%20L325.8%2C506.0%20L326.2%2C499.5%20L327.1%2C493.0%20L328.6%2C486.4%20L330.6%2C479.9%20L333.1%2C473.5%20L336.1%2C467.2%20L339.7%2C461.2%20L343.8%2C455.6%20L348.4%2C450.3%20L353.5%2C445.5%20L359.1%2C441.2%20L365.1%2C437.5%20L371.5%2C434.5%20L378.2%2C432.3%20L385.3%2C430.8%20L392.6%2C430.1%20L400.1%2C430.4%20L407.8%2C431.6%20L415.5%2C433.7%20L423.2%2C436.9%20L430.8%2C441.1%20L438.3%2C446.3%20L445.5%2C452.5%20L452.4%2C459.8%20L458.9%2C468.0%20L464.9%2C477.3%20L470.4%2C487.4%20L475.1%2C498.4%20L479.2%2C510.3%20L482.4%2C522.9%20L484.7%2C536.1%20L486.1%2C549.9%20L486.5%2C564.2%20L485.8%2C578.8%20L484.0%2C593.6%20L481.0%2C608.5%20L476.9%2C623.3%20L471.5%2C637.9%20L465.0%2C652.1%20L457.2%2C665.8%20L448.2%2C678.8%20L438.1%2C691.0%20L426.8%2C702.2%20L414.5%2C712.2%20L401.2%2C720.9%20L386.9%2C728.1%20L371.8%2C733.7%20L356.0%2C737.5%20L339.6%2C739.5%20L322.7%2C739.5%20L305.4%2C737.3%20L288.0%2C733.0%20L270.5%2C726.5%20L253.2%2C717.7%20L236.1%2C706.5%20L219.6%2C693.0%20L203.8%2C677.2%20L188.8%2C659.1%20L174.9%2C638.8%20L162.3%2C616.3%20L151.0%2C591.9%20L141.4%2C565.5%20L133.6%2C537.5%20L127.8%2C507.8%20L124.1%2C476.9%20L122.6%2C444.9%20L123.6%2C412.1%20L127.0%2C378.7%20L133.0%2C345.0%20L141.7%2C311.4%20L153.1%2C278.2%20L167.2%2C245.8%20L184.1%2C214.4%20L203.6%2C184.5%20L225.9%2C156.4%20L250.7%2C130.4%20L278.0%2C107.0%20L307.6%2C86.6%20L339.3%2C69.3%20L373.0%2C55.6%20L408.4%2C45.9%20L445.2%2C40.3%20L483.3%2C39.1%20L522.1%2C42.7%20L561.5%2C51.1%20L601.1%2C64.5%20L640.5%2C83.2%20L679.2%2C107.0%20L716.9%2C136.2%20L753.2%2C170.6%20L787.7%2C210.2%20L819.8%2C254.9%20L849.2%2C304.4%20L875.5%2C358.6%20L898.2%2C417.2%20L917.0%2C479.7%20L931.4%2C545.8%20L941.1%2C615.1%20L945.8%2C686.9%20L945.2%2C760.9%20L938.9%2C836.2%20L926.9%2C912.3%20L908.8%2C988.4%20L884.7%2C1063.8%20L854.3%2C1137.8%20L817.8%2C1209.6%20L775.1%2C1278.2%20L726.3%2C1343.0%20L671.7%2C1403.1%20L611.4%2C1457.6%20L545.8%2C1505.8%20L475.2%2C1546.8%20L400.1%2C1579.9%20L321.0%2C1604.4%20L238.4%2C1619.7%20L152.9%2C1625.0%20L65.4%2C1619.8%20L-23.6%2C1603.7%20L-113.1%2C1576.3%20L-202.4%2C1537.3%20L-290.6%2C1486.4%20L-376.7%2C1423.5%20L-459.8%2C1348.8%20L-538.9%2C1262.2%20L-169.6%2C1719.1%20L-68.2%2C1749.1%20L32.5%2C1766.3%20L131.5%2C1771.1%20L228.0%2C1764.2%20L321.3%2C1746.0%20L410.6%2C1717.4%20L495.3%2C1679.1%20L574.9%2C1631.9%20L648.7%2C1576.7%20L716.5%2C1514.4%20L777.9%2C1445.9%20L832.5%2C1372.1%20L880.3%2C1294.0%20L921.2%2C1212.5%20L955.0%2C1128.5%20L981.8%2C1042.9%20L1001.6%2C956.6%20L1014.7%2C870.5%20L1021.3%2C785.2%20L1021.5%2C701.7%20L1015.7%2C620.5%20L1004.2%2C542.3%20L987.5%2C467.7%20L965.8%2C397.2%20L939.7%2C331.2%20L909.7%2C270.3%20L876.1%2C214.6%20L839.4%2C164.5%20L800.2%2C120.1%20L758.9%2C81.6%20L716.1%2C49.0%20L672.1%2C22.5%20L627.5%2C1.9%20L582.6%2C-12.9%20L538.0%2C-22.0%20L494.1%2C-25.5%20L451.1%2C-23.8%20L409.4%2C-17.1%20L369.5%2C-5.6%20L331.5%2C10.2%20L295.7%2C30.1%20L262.4%2C53.5%20L231.7%2C80.3%20L203.9%2C109.9%20L178.9%2C141.9%20L157.0%2C176.0%20L138.1%2C211.6%20L122.4%2C248.5%20L109.7%2C286.2%20L100.2%2C324.2%20L93.6%2C362.3%20L89.9%2C400.1%20L89.1%2C437.3%20L91.0%2C473.5%20L95.4%2C508.4%20L102.2%2C541.8%20L111.2%2C573.4%20L122.3%2C603.1%20L135.1%2C630.7%20L149.6%2C655.9%20L165.4%2C678.7%20L182.5%2C699.0%20L200.5%2C716.7%20L219.2%2C731.8%20L238.6%2C744.2%20L258.2%2C754.0%20L278.0%2C761.2%20L297.8%2C765.9%20L317.3%2C768.1%20L336.4%2C767.9%20L355.0%2C765.5%20L372.9%2C761.0%20L389.9%2C754.5%20L406.0%2C746.2%20L421.0%2C736.2%20L434.8%2C724.7%20L447.5%2C712.0%20L458.8%2C698.1%20L468.9%2C683.3%20L477.6%2C667.7%20L484.9%2C651.5%20L490.9%2C634.9%20L495.4%2C618.2%20L498.7%2C601.3%20L500.6%2C584.6%20L501.3%2C568.1%20L500.8%2C551.9%20L499.2%2C536.4%20L496.4%2C521.4%20L492.7%2C507.2%20L488.0%2C493.9%20L482.6%2C481.4%20L476.4%2C470.0%20L469.5%2C459.6%20L462.1%2C450.4%20L454.2%2C442.3%20L446.0%2C435.3%20L437.6%2C429.5%20L428.9%2C424.9%20L420.2%2C421.4%20L411.4%2C419.0%20L402.8%2C417.8%20L394.3%2C417.6%20L386.0%2C418.4%20L378.0%2C420.1%20L370.4%2C422.8%20L363.2%2C426.2%20L356.4%2C430.5%20L350.1%2C435.4%20L344.4%2C440.8%20L339.2%2C446.9%20L334.6%2C453.3%20L330.6%2C460.1%20L327.2%2C467.2%20L324.4%2C474.5%20L322.3%2C481.9%20L320.7%2C489.3%20L319.7%2C496.7%20L319.2%2C504.1%20L319.3%2C511.2%20L319.9%2C518.2%20L321.0%2C524.9%20L322.5%2C531.2%20L324.5%2C537.2%20L326.8%2C542.8%20L329.5%2C548.0%20L332.4%2C552.7%20L335.6%2C556.9%20L339.1%2C560.7%20L342.6%2C563.9%20L346.4%2C566.6%20L350.2%2C568.8%20L354.0%2C570.4%20L357.9%2C571.6%20L361.7%2C572.3%20L365.5%2C572.5%20L369.2%2C572.3%20L372.8%2C571.6%20L376.2%2C570.5%20L379.4%2C569.1%20L382.5%2C567.3%20L385.3%2C565.2%20L387.9%2C562.8%20L390.2%2C560.2%20L392.3%2C557.4%20L394.2%2C554.5%20L395.7%2C551.4%20L397.0%2C548.2%20L398.1%2C544.9%20L398.8%2C541.6%20L399.4%2C538.3%20L399.6%2C535.1%20L399.6%2C531.9%20L399.4%2C528.8%20L399.0%2C525.8%20L398.4%2C523.0%20L397.6%2C520.3%20L396.6%2C517.8%20L395.4%2C515.4%20L394.2%2C513.3%20L392.8%2C511.4%20L391.3%2C509.7%20L389.7%2C508.2%20L388.1%2C506.9%20L386.4%2C505.9%20L384.7%2C505.1%20L383.0%2C504.5%20L381.3%2C504.2%20L379.6%2C504.0%20L378.0%2C504.1%20L376.4%2C504.3%20L374.9%2C504.7%20L373.4%2C505.3%20L372.1%2C506.1%20L370.8%2C507.0%20L369.6%2C508.0%20L368.5%2C509.1%20L367.6%2C510.3%20L366.7%2C511.6%20L366.0%2C513.0%20Z%22/%3E%3Cpath%20fill%3D%22%23ae642d%22%20d%3D%22M370.4%2C509.4%20L371.5%2C508.5%20L372.7%2C507.8%20L373.9%2C507.1%20L375.3%2C506.6%20L376.7%2C506.3%20L378.1%2C506.1%20L379.6%2C506.1%20L381.1%2C506.3%20L382.7%2C506.7%20L384.2%2C507.3%20L385.7%2C508.1%20L387.2%2C509.0%20L388.7%2C510.2%20L390.1%2C511.6%20L391.4%2C513.2%20L392.6%2C515.0%20L393.7%2C517.0%20L394.7%2C519.1%20L395.5%2C521.4%20L396.2%2C523.9%20L396.7%2C526.5%20L397.1%2C529.2%20L397.2%2C532.0%20L397.1%2C534.9%20L396.8%2C537.9%20L396.3%2C540.8%20L395.5%2C543.8%20L394.5%2C546.7%20L393.3%2C549.6%20L391.8%2C552.3%20L390.1%2C554.9%20L388.1%2C557.4%20L385.9%2C559.7%20L383.5%2C561.8%20L380.9%2C563.6%20L378.1%2C565.1%20L375.2%2C566.3%20L372.1%2C567.1%20L368.8%2C567.6%20L365.5%2C567.7%20L362.1%2C567.4%20L358.6%2C566.7%20L355.1%2C565.5%20L351.7%2C563.9%20L348.3%2C561.8%20L344.9%2C559.2%20L341.7%2C556.2%20L338.7%2C552.7%20L335.9%2C548.8%20L333.3%2C544.4%20L331.0%2C539.6%20L329.0%2C534.5%20L327.3%2C529.0%20L326.1%2C523.2%20L325.2%2C517.1%20L324.8%2C510.8%20L324.8%2C504.3%20L325.4%2C497.6%20L326.5%2C491.0%20L328.0%2C484.3%20L330.2%2C477.6%20L332.8%2C471.1%20L336.0%2C464.8%20L339.8%2C458.8%20L344.1%2C453.1%20L348.9%2C447.8%20L354.2%2C443.0%20L360.0%2C438.7%20L366.2%2C435.1%20L372.8%2C432.2%20L379.7%2C430.1%20L387.0%2C428.7%20L394.5%2C428.3%20L402.2%2C428.7%20L410.0%2C430.1%20L417.9%2C432.5%20L425.8%2C436.0%20L433.5%2C440.4%20L441.1%2C446.0%20L448.4%2C452.5%20L455.4%2C460.1%20L461.9%2C468.8%20L467.9%2C478.4%20L473.3%2C488.9%20L478.0%2C500.3%20L482.0%2C512.6%20L485.1%2C525.6%20L487.3%2C539.2%20L488.5%2C553.4%20L488.6%2C568.0%20L487.7%2C582.9%20L485.6%2C598.0%20L482.3%2C613.2%20L477.9%2C628.3%20L472.2%2C643.1%20L465.2%2C657.5%20L457.0%2C671.4%20L447.6%2C684.5%20L437.1%2C696.7%20L425.4%2C707.9%20L412.6%2C717.8%20L398.8%2C726.4%20L384.1%2C733.4%20L368.5%2C738.8%20L352.2%2C742.3%20L335.4%2C743.9%20L318.0%2C743.4%20L300.4%2C740.8%20L282.6%2C736.0%20L264.8%2C728.8%20L247.2%2C719.3%20L229.9%2C707.4%20L213.2%2C693.2%20L197.2%2C676.6%20L182.1%2C657.7%20L168.2%2C636.5%20L155.6%2C613.2%20L144.5%2C587.8%20L135.1%2C560.6%20L127.5%2C531.6%20L122.0%2C501.1%20L118.7%2C469.3%20L117.7%2C436.5%20L119.1%2C402.9%20L123.1%2C368.7%20L129.8%2C334.4%20L139.2%2C300.2%20L151.4%2C266.5%20L166.4%2C233.6%20L184.2%2C201.9%20L204.7%2C171.7%20L227.9%2C143.5%20L253.8%2C117.5%20L282.1%2C94.3%20L312.7%2C74.0%20L345.5%2C57.2%20L380.2%2C44.0%20L416.7%2C34.9%20L454.5%2C30.1%20L493.5%2C29.9%20L533.3%2C34.5%20L573.5%2C44.1%20L613.9%2C58.9%20L653.9%2C79.0%20L693.2%2C104.5%20L731.4%2C135.3%20L768.1%2C171.5%20L802.8%2C213.0%20L835.0%2C259.6%20L864.4%2C311.1%20L890.5%2C367.3%20L912.8%2C427.8%20L931.1%2C492.4%20L944.8%2C560.5%20L953.7%2C631.7%20L957.4%2C705.5%20L955.6%2C781.2%20L948.0%2C858.2%20L934.5%2C935.9%20L914.8%2C1013.4%20L888.9%2C1090.1%20L856.6%2C1165.2%20L818.1%2C1237.7%20L773.2%2C1307.0%20L722.3%2C1372.1%20L665.4%2C1432.3%20L602.7%2C1486.6%20L534.8%2C1534.3%20L461.8%2C1574.6%20L384.3%2C1606.6%20L302.8%2C1629.7%20L217.9%2C1643.2%20L130.3%2C1646.4%20L40.7%2C1638.9%20L-50.2%2C1620.2%20L-141.5%2C1589.8%20L-232.4%2C1547.5%20L-321.9%2C1493.1%20L-409.2%2C1426.5%20L-493.2%2C1347.8%20L-281.7%2C1622.9%20L-184.0%2C1668.8%20L-85.8%2C1701.9%20L12.0%2C1722.5%20L108.5%2C1731.0%20L202.8%2C1727.9%20L294.2%2C1713.8%20L382.0%2C1689.3%20L465.5%2C1655.2%20L544.1%2C1612.2%20L617.5%2C1561.2%20L685.0%2C1503.0%20L746.4%2C1438.5%20L801.5%2C1368.6%20L849.9%2C1294.3%20L891.7%2C1216.3%20L926.6%2C1135.7%20L954.7%2C1053.2%20L976.1%2C969.9%20L990.9%2C886.3%20L999.2%2C803.5%20L1001.4%2C722.0%20L997.6%2C642.6%20L988.3%2C565.9%20L973.7%2C492.5%20L954.2%2C422.9%20L930.3%2C357.6%20L902.4%2C297.0%20L870.9%2C241.4%20L836.3%2C191.1%20L799.1%2C146.3%20L759.8%2C107.2%20L718.7%2C73.8%20L676.5%2C46.2%20L633.4%2C24.4%20L590.0%2C8.3%20L546.7%2C-2.2%20L503.9%2C-7.4%20L462.0%2C-7.3%20L421.2%2C-2.4%20L382.0%2C7.3%20L344.6%2C21.3%20L309.2%2C39.3%20L276.2%2C60.9%20L245.6%2C85.8%20L217.8%2C113.6%20L192.7%2C143.9%20L170.5%2C176.3%20L151.3%2C210.3%20L135.1%2C245.7%20L121.9%2C281.9%20L111.6%2C318.7%20L104.3%2C355.6%20L99.9%2C392.3%20L98.2%2C428.5%20L99.2%2C463.9%20L102.7%2C498.1%20L108.6%2C531.0%20L116.6%2C562.2%20L126.7%2C591.6%20L138.6%2C618.9%20L152.1%2C644.1%20L167.0%2C666.9%20L183.2%2C687.3%20L200.3%2C705.3%20L218.3%2C720.7%20L236.8%2C733.6%20L255.8%2C743.9%20L274.9%2C751.7%20L294.1%2C757.0%20L313.1%2C759.9%20L331.7%2C760.4%20L349.9%2C758.8%20L367.4%2C755.1%20L384.2%2C749.4%20L400.0%2C741.9%20L414.9%2C732.7%20L428.7%2C722.1%20L441.3%2C710.1%20L452.7%2C697.0%20L462.9%2C682.9%20L471.7%2C668.1%20L479.2%2C652.6%20L485.4%2C636.7%20L490.3%2C620.5%20L493.9%2C604.1%20L496.2%2C587.9%20L497.2%2C571.8%20L497.1%2C556.1%20L495.8%2C540.8%20L493.5%2C526.1%20L490.2%2C512.1%20L486.0%2C498.9%20L480.9%2C486.6%20L475.1%2C475.2%20L468.7%2C464.9%20L461.7%2C455.5%20L454.2%2C447.3%20L446.4%2C440.2%20L438.2%2C434.2%20L429.9%2C429.4%20L421.5%2C425.7%20L413.0%2C423.0%20L404.6%2C421.5%20L396.3%2C420.9%20L388.2%2C421.4%20L380.4%2C422.8%20L372.9%2C425.1%20L365.7%2C428.2%20L359.1%2C432.1%20L352.8%2C436.6%20L347.1%2C441.8%20L341.9%2C447.4%20L337.3%2C453.5%20L333.2%2C460.0%20L329.8%2C466.8%20L326.9%2C473.8%20L324.6%2C480.9%20L322.8%2C488.1%20L321.7%2C495.3%20L321.1%2C502.5%20L321.0%2C509.5%20L321.4%2C516.3%20L322.3%2C522.8%20L323.7%2C529.1%20L325.4%2C535.0%20L327.6%2C540.6%20L330.1%2C545.7%20L332.8%2C550.4%20L335.9%2C554.6%20L339.1%2C558.4%20L342.5%2C561.7%20L346.1%2C564.5%20L349.8%2C566.7%20L353.5%2C568.5%20L357.2%2C569.8%20L361.0%2C570.6%20L364.6%2C571.0%20L368.2%2C570.9%20L371.7%2C570.3%20L375.1%2C569.4%20L378.3%2C568.2%20L381.3%2C566.5%20L384.1%2C564.6%20L386.7%2C562.4%20L389.0%2C560.0%20L391.1%2C557.3%20L393.0%2C554.5%20L394.6%2C551.5%20L396.0%2C548.4%20L397.0%2C545.3%20L397.9%2C542.1%20L398.4%2C538.9%20L398.8%2C535.8%20L398.9%2C532.7%20L398.7%2C529.6%20L398.4%2C526.7%20L397.9%2C523.9%20L397.1%2C521.3%20L396.2%2C518.8%20L395.2%2C516.4%20L394.0%2C514.3%20L392.7%2C512.4%20L391.2%2C510.7%20L389.7%2C509.2%20L388.2%2C507.9%20L386.6%2C506.8%20L384.9%2C506.0%20L383.3%2C505.3%20L381.6%2C504.9%20L380.0%2C504.7%20L378.4%2C504.7%20L376.8%2C504.9%20L375.3%2C505.2%20L373.9%2C505.8%20L372.6%2C506.4%20L371.3%2C507.3%20L370.1%2C508.2%20L369.1%2C509.3%20L368.1%2C510.4%20L367.3%2C511.6%20Z%22/%3E%3Cpath%20fill%3D%22%23e9a958%22%20d%3D%22M369.9%2C509.7%20L370.9%2C508.8%20L372.1%2C507.9%20L373.3%2C507.2%20L374.6%2C506.6%20L376.0%2C506.2%20L377.4%2C506.0%20L378.9%2C505.9%20L380.5%2C506.0%20L382.0%2C506.3%20L383.6%2C506.8%20L385.1%2C507.5%20L386.6%2C508.3%20L388.1%2C509.4%20L389.6%2C510.8%20L390.9%2C512.3%20L392.2%2C514.0%20L393.4%2C515.9%20L394.5%2C518.0%20L395.4%2C520.3%20L396.2%2C522.7%20L396.8%2C525.2%20L397.2%2C527.9%20L397.4%2C530.8%20L397.4%2C533.6%20L397.2%2C536.6%20L396.8%2C539.6%20L396.2%2C542.6%20L395.3%2C545.6%20L394.1%2C548.5%20L392.7%2C551.3%20L391.1%2C554.0%20L389.2%2C556.6%20L387.1%2C559.0%20L384.8%2C561.2%20L382.3%2C563.2%20L379.6%2C564.9%20L376.6%2C566.2%20L373.6%2C567.3%20L370.3%2C567.9%20L367.0%2C568.2%20L363.6%2C568.1%20L360.1%2C567.6%20L356.6%2C566.6%20L353.0%2C565.2%20L349.6%2C563.3%20L346.2%2C560.9%20L342.9%2C558.1%20L339.7%2C554.8%20L336.8%2C551.0%20L334.0%2C546.8%20L331.5%2C542.2%20L329.4%2C537.1%20L327.5%2C531.7%20L326.0%2C526.0%20L325.0%2C520.0%20L324.3%2C513.7%20L324.2%2C507.2%20L324.5%2C500.5%20L325.3%2C493.8%20L326.7%2C487.0%20L328.5%2C480.3%20L331.0%2C473.6%20L334.0%2C467.1%20L337.5%2C460.9%20L341.6%2C454.9%20L346.2%2C449.4%20L351.3%2C444.3%20L356.9%2C439.7%20L363.0%2C435.7%20L369.5%2C432.4%20L376.4%2C429.9%20L383.6%2C428.1%20L391.1%2C427.2%20L398.8%2C427.2%20L406.7%2C428.2%20L414.6%2C430.1%20L422.6%2C433.1%20L430.5%2C437.1%20L438.2%2C442.2%20L445.8%2C448.4%20L453.0%2C455.6%20L459.8%2C463.8%20L466.2%2C473.1%20L471.9%2C483.3%20L477.1%2C494.4%20L481.4%2C506.4%20L485.0%2C519.2%20L487.7%2C532.7%20L489.4%2C546.8%20L490.0%2C561.4%20L489.6%2C576.4%20L488.1%2C591.6%20L485.3%2C606.9%20L481.4%2C622.3%20L476.2%2C637.4%20L469.8%2C652.2%20L462.1%2C666.5%20L453.2%2C680.1%20L443.0%2C693.0%20L431.7%2C704.8%20L419.3%2C715.5%20L405.8%2C724.8%20L391.4%2C732.7%20L376.0%2C738.9%20L359.9%2C743.4%20L343.1%2C745.9%20L325.8%2C746.5%20L308.0%2C744.9%20L290.1%2C741.1%20L272.1%2C734.9%20L254.1%2C726.5%20L236.4%2C715.6%20L219.2%2C702.3%20L202.7%2C686.7%20L187.0%2C668.6%20L172.3%2C648.3%20L158.9%2C625.7%20L146.9%2C601.0%20L136.6%2C574.3%20L128.0%2C545.8%20L121.4%2C515.7%20L117.0%2C484.2%20L114.8%2C451.4%20L115.1%2C417.7%20L117.9%2C383.4%20L123.4%2C348.7%20L131.6%2C314.0%20L142.6%2C279.6%20L156.4%2C245.9%20L173.0%2C213.2%20L192.5%2C181.9%20L214.7%2C152.3%20L239.6%2C124.9%20L267.0%2C100.0%20L296.9%2C78.1%20L329.1%2C59.3%20L363.3%2C44.2%20L399.4%2C33.0%20L437.0%2C26.0%20L476.0%2C23.6%20L515.9%2C25.9%20L556.4%2C33.2%20L597.2%2C45.7%20L637.9%2C63.4%20L678.1%2C86.6%20L717.4%2C115.2%20L755.3%2C149.2%20L791.4%2C188.7%20L825.2%2C233.3%20L856.4%2C283.1%20L884.4%2C337.8%20L908.9%2C397.0%20L929.4%2C460.4%20L945.5%2C527.7%20L956.9%2C598.3%20L963.1%2C671.8%20L964.0%2C747.5%20L959.1%2C824.9%20L948.3%2C903.3%20L931.4%2C981.9%20L908.2%2C1060.0%20L878.6%2C1136.8%20L842.7%2C1211.5%20L800.3%2C1283.3%20L751.7%2C1351.3%20L697.0%2C1414.7%20L636.3%2C1472.5%20L570.1%2C1524.1%20L498.6%2C1568.5%20L422.3%2C1605.0%20L341.7%2C1632.7%20L257.4%2C1651.1%20L170.0%2C1659.4%20L80.2%2C1657.1%20L-11.3%2C1643.6%20L-103.6%2C1618.5%20L-195.9%2C1581.4%20L-287.2%2C1532.3%20L-376.7%2C1470.8%20L-463.4%2C1397.0%20L-398.7%2C1489.9%20L-307.3%2C1553.4%20L-213.8%2C1604.4%20L-119.4%2C1642.8%20L-24.9%2C1669.1%20L68.8%2C1683.5%20L160.9%2C1686.4%20L250.5%2C1678.4%20L336.9%2C1660.1%20L419.6%2C1632.1%20L497.9%2C1595.2%20L571.4%2C1550.1%20L639.4%2C1497.6%20L701.8%2C1438.6%20L758.1%2C1374.0%20L808.2%2C1304.6%20L851.8%2C1231.3%20L889.0%2C1154.9%20L919.6%2C1076.4%20L943.6%2C996.5%20L961.2%2C916.0%20L972.6%2C835.8%20L977.8%2C756.5%20L977.2%2C678.9%20L971.1%2C603.5%20L959.7%2C531.1%20L943.4%2C462.0%20L922.6%2C396.9%20L897.7%2C336.1%20L869.2%2C279.9%20L837.4%2C228.7%20L802.9%2C182.7%20L766.1%2C142.1%20L727.3%2C107.0%20L687.2%2C77.5%20L646.1%2C53.5%20L604.5%2C35.1%20L562.7%2C22.0%20L521.2%2C14.3%20L480.3%2C11.7%20L440.3%2C14.0%20L401.7%2C20.9%20L364.7%2C32.2%20L329.6%2C47.5%20L296.6%2C66.5%20L265.9%2C88.9%20L237.6%2C114.2%20L212.0%2C142.1%20L189.2%2C172.3%20L169.1%2C204.2%20L152.0%2C237.7%20L137.7%2C272.2%20L126.3%2C307.3%20L117.8%2C342.9%20L112.0%2C378.4%20L109.0%2C413.5%20L108.6%2C448.1%20L110.7%2C481.6%20L115.1%2C514.0%20L121.8%2C544.9%20L130.4%2C574.2%20L141.0%2C601.6%20L153.2%2C626.9%20L166.9%2C650.2%20L181.8%2C671.1%20L197.8%2C689.7%20L214.7%2C705.8%20L232.3%2C719.5%20L250.4%2C730.8%20L268.7%2C739.6%20L287.2%2C745.9%20L305.6%2C750.0%20L323.8%2C751.7%20L341.5%2C751.2%20L358.7%2C748.7%20L375.3%2C744.2%20L391.0%2C737.9%20L405.9%2C729.9%20L419.7%2C720.4%20L432.5%2C709.6%20L444.1%2C697.5%20L454.6%2C684.5%20L463.7%2C670.5%20L471.7%2C655.9%20L478.3%2C640.8%20L483.7%2C625.3%20L487.8%2C609.6%20L490.6%2C593.9%20L492.3%2C578.3%20L492.8%2C563.0%20L492.1%2C548.0%20L490.4%2C533.6%20L487.8%2C519.7%20L484.1%2C506.6%20L479.7%2C494.3%20L474.5%2C482.8%20L468.6%2C472.3%20L462.2%2C462.8%20L455.2%2C454.3%20L447.8%2C446.9%20L440.1%2C440.5%20L432.2%2C435.3%20L424.1%2C431.1%20L415.9%2C428.0%20L407.8%2C426.0%20L399.7%2C424.9%20L391.8%2C424.9%20L384.2%2C425.8%20L376.8%2C427.5%20L369.7%2C430.1%20L363.0%2C433.4%20L356.8%2C437.5%20L351.0%2C442.1%20L345.8%2C447.3%20L341.0%2C453.0%20L336.8%2C459.0%20L333.2%2C465.4%20L330.1%2C472.1%20L327.6%2C478.9%20L325.6%2C485.8%20L324.2%2C492.7%20L323.3%2C499.6%20L323.0%2C506.4%20L323.1%2C513.1%20L323.8%2C519.5%20L324.8%2C525.7%20L326.3%2C531.6%20L328.2%2C537.2%20L330.4%2C542.3%20L332.9%2C547.1%20L335.7%2C551.4%20L338.7%2C555.3%20L342.0%2C558.7%20L345.3%2C561.6%20L348.8%2C564.1%20L352.4%2C566.0%20L356.0%2C567.5%20L359.6%2C568.6%20L363.1%2C569.1%20L366.6%2C569.3%20L370.1%2C569.0%20L373.4%2C568.3%20L376.5%2C567.3%20L379.5%2C565.9%20L382.3%2C564.2%20L384.9%2C562.2%20L387.3%2C560.0%20L389.5%2C557.5%20L391.4%2C554.9%20L393.1%2C552.1%20L394.5%2C549.2%20L395.7%2C546.2%20L396.6%2C543.1%20L397.3%2C540.1%20L397.8%2C537.0%20L398.0%2C534.0%20L398.0%2C531.0%20L397.7%2C528.2%20L397.3%2C525.4%20L396.7%2C522.7%20L395.9%2C520.3%20L395.0%2C517.9%20L393.9%2C515.8%20L392.7%2C513.8%20L391.4%2C512.0%20L390.0%2C510.5%20L388.5%2C509.1%20L387.0%2C508.0%20L385.4%2C507.1%20L383.8%2C506.4%20L382.2%2C505.9%20L380.7%2C505.5%20L379.1%2C505.4%20L377.6%2C505.5%20L376.1%2C505.8%20L374.7%2C506.2%20L373.3%2C506.8%20L372.1%2C507.5%20L370.9%2C508.3%20L369.8%2C509.3%20L368.8%2C510.3%20Z%22/%3E%3Cpath%20fill%3D%22%23b16d35%22%20d%3D%22M368.0%2C511.0%20L368.9%2C509.8%20L369.9%2C508.8%20L371.1%2C507.8%20L372.3%2C507.0%20L373.6%2C506.3%20L375.0%2C505.7%20L376.4%2C505.3%20L377.9%2C505.1%20L379.5%2C505.1%20L381.1%2C505.2%20L382.7%2C505.6%20L384.3%2C506.1%20L386.0%2C506.9%20L387.5%2C507.9%20L389.1%2C509.1%20L390.6%2C510.5%20L392.0%2C512.1%20L393.3%2C514.0%20L394.5%2C516.0%20L395.6%2C518.3%20L396.5%2C520.7%20L397.3%2C523.2%20L397.9%2C526.0%20L398.2%2C528.8%20L398.4%2C531.8%20L398.4%2C534.8%20L398.1%2C537.9%20L397.6%2C541.0%20L396.9%2C544.1%20L395.9%2C547.2%20L394.6%2C550.3%20L393.1%2C553.2%20L391.3%2C556.0%20L389.3%2C558.7%20L387.1%2C561.1%20L384.6%2C563.4%20L381.9%2C565.3%20L379.0%2C567.0%20L375.9%2C568.3%20L372.7%2C569.3%20L369.3%2C569.9%20L365.8%2C570.1%20L362.2%2C569.9%20L358.5%2C569.2%20L354.8%2C568.1%20L351.2%2C566.5%20L347.5%2C564.4%20L344.0%2C561.8%20L340.6%2C558.7%20L337.4%2C555.1%20L334.3%2C551.1%20L331.5%2C546.6%20L329.0%2C541.6%20L326.8%2C536.3%20L325.0%2C530.6%20L323.6%2C524.5%20L322.6%2C518.1%20L322.0%2C511.5%20L322.0%2C504.7%20L322.4%2C497.7%20L323.4%2C490.6%20L325.0%2C483.6%20L327.1%2C476.5%20L329.8%2C469.6%20L333.1%2C462.9%20L336.9%2C456.4%20L341.3%2C450.3%20L346.2%2C444.7%20L351.7%2C439.5%20L357.7%2C434.9%20L364.2%2C430.9%20L371.1%2C427.6%20L378.3%2C425.2%20L385.9%2C423.6%20L393.8%2C422.9%20L401.9%2C423.1%20L410.2%2C424.4%20L418.5%2C426.7%20L426.8%2C430.1%20L435.0%2C434.5%20L443.0%2C440.1%20L450.8%2C446.8%20L458.3%2C454.6%20L465.3%2C463.5%20L471.7%2C473.4%20L477.6%2C484.3%20L482.8%2C496.2%20L487.1%2C508.9%20L490.6%2C522.5%20L493.1%2C536.7%20L494.7%2C551.6%20L495.1%2C566.9%20L494.4%2C582.6%20L492.4%2C598.6%20L489.3%2C614.6%20L484.8%2C630.5%20L479.1%2C646.3%20L472.0%2C661.6%20L463.7%2C676.4%20L454.0%2C690.4%20L443.2%2C703.6%20L431.1%2C715.6%20L417.8%2C726.4%20L403.5%2C735.8%20L388.1%2C743.6%20L371.9%2C749.6%20L354.9%2C753.8%20L337.2%2C756.0%20L319.0%2C756.0%20L300.4%2C753.7%20L281.6%2C749.1%20L262.8%2C742.1%20L244.1%2C732.7%20L225.8%2C720.7%20L208.0%2C706.2%20L190.9%2C689.2%20L174.8%2C669.8%20L159.8%2C647.9%20L146.1%2C623.8%20L134.0%2C597.5%20L123.7%2C569.2%20L115.2%2C539.0%20L108.9%2C507.1%20L104.8%2C473.8%20L103.2%2C439.4%20L104.2%2C404.0%20L107.8%2C368.0%20L114.2%2C331.8%20L123.5%2C295.6%20L135.8%2C259.9%20L150.9%2C224.9%20L169.0%2C191.1%20L190.1%2C158.8%20L214.0%2C128.5%20L240.6%2C100.5%20L270.0%2C75.3%20L301.8%2C53.2%20L335.9%2C34.6%20L372.2%2C19.8%20L410.3%2C9.2%20L449.9%2C3.1%20L490.8%2C1.7%20L532.7%2C5.5%20L575.1%2C14.4%20L617.7%2C28.8%20L660.1%2C48.8%20L701.9%2C74.4%20L742.5%2C105.7%20L781.7%2C142.6%20L818.8%2C185.2%20L853.4%2C233.2%20L885.2%2C286.5%20L913.5%2C344.7%20L938.1%2C407.7%20L958.4%2C475.0%20L974.0%2C546.1%20L984.5%2C620.7%20L989.7%2C698.0%20L989.1%2C777.6%20L982.5%2C858.7%20L969.6%2C940.6%20L950.3%2C1022.6%20L924.4%2C1103.9%20L891.9%2C1183.6%20L852.6%2C1260.9%20L806.7%2C1334.9%20L754.4%2C1404.7%20L695.6%2C1469.5%20L630.8%2C1528.3%20L560.2%2C1580.4%20L484.3%2C1624.7%20L403.5%2C1660.5%20L318.3%2C1687.1%20L229.4%2C1703.7%20L137.5%2C1709.6%20L43.2%2C1704.2%20L-52.5%2C1687.1%20L-149.0%2C1657.8%20L-245.1%2C1616.0%20L-340.1%2C1561.4%20L-298.7%2C1605.8%20L-201.8%2C1654.3%20L-104.1%2C1689.9%20L-6.6%2C1713.0%20L89.7%2C1724.0%20L184.0%2C1723.3%20L275.6%2C1711.5%20L363.8%2C1689.3%20L447.8%2C1657.3%20L527.1%2C1616.3%20L601.2%2C1567.2%20L669.7%2C1510.7%20L732.1%2C1447.8%20L788.2%2C1379.4%20L837.8%2C1306.3%20L880.8%2C1229.4%20L916.9%2C1149.7%20L946.3%2C1068.0%20L969.0%2C985.2%20L985.1%2C902.0%20L994.8%2C819.4%20L998.2%2C738.0%20L995.7%2C658.5%20L987.5%2C581.6%20L974.1%2C507.8%20L955.7%2C437.7%20L932.8%2C371.8%20L905.8%2C310.5%20L875.2%2C254.1%20L841.5%2C203.0%20L805.0%2C157.2%20L766.2%2C117.1%20L725.7%2C82.7%20L683.9%2C54.0%20L641.2%2C31.1%20L598.1%2C13.9%20L554.9%2C2.3%20L512.2%2C-4.0%20L470.3%2C-5.0%20L429.4%2C-1.1%20L390.1%2C7.6%20L352.4%2C20.6%20L316.8%2C37.7%20L283.5%2C58.5%20L252.5%2C82.6%20L224.2%2C109.7%20L198.7%2C139.3%20L176.0%2C171.1%20L156.3%2C204.7%20L139.5%2C239.6%20L125.7%2C275.5%20L114.9%2C312.0%20L107.0%2C348.7%20L102.0%2C385.3%20L99.8%2C421.5%20L100.2%2C456.9%20L103.2%2C491.2%20L108.5%2C524.1%20L116.1%2C555.6%20L125.7%2C585.2%20L137.1%2C612.8%20L150.3%2C638.3%20L164.8%2C661.6%20L180.7%2C682.4%20L197.5%2C700.8%20L215.3%2C716.7%20L233.6%2C730.0%20L252.4%2C740.8%20L271.4%2C749.1%20L290.5%2C754.8%20L309.4%2C758.2%20L328.1%2C759.3%20L346.2%2C758.1%20L363.8%2C754.8%20L380.7%2C749.6%20L396.6%2C742.5%20L411.7%2C733.7%20L425.6%2C723.4%20L438.4%2C711.8%20L450.0%2C699.0%20L460.4%2C685.2%20L469.5%2C670.5%20L477.2%2C655.2%20L483.7%2C639.5%20L488.8%2C623.4%20L492.6%2C607.2%20L495.1%2C591.0%20L496.5%2C574.9%20L496.6%2C559.2%20L495.5%2C543.9%20L493.5%2C529.2%20L490.4%2C515.1%20L486.4%2C501.8%20L481.5%2C489.3%20L475.9%2C477.8%20L469.6%2C467.3%20L462.8%2C457.8%20L455.4%2C449.4%20L447.7%2C442.1%20L439.6%2C435.9%20L431.4%2C430.8%20L423.0%2C426.9%20L414.6%2C424.0%20L406.2%2C422.2%20L397.9%2C421.5%20L389.8%2C421.8%20L382.0%2C423.0%20L374.4%2C425.1%20L367.3%2C428.0%20L360.5%2C431.7%20L354.2%2C436.1%20L348.4%2C441.1%20L343.1%2C446.6%20L338.4%2C452.6%20L334.3%2C459.0%20L330.7%2C465.7%20L327.7%2C472.6%20L325.3%2C479.6%20L323.4%2C486.8%20L322.2%2C494.0%20L321.4%2C501.1%20L321.3%2C508.1%20L321.6%2C514.9%20L322.4%2C521.5%20L323.6%2C527.8%20L325.3%2C533.7%20L327.3%2C539.3%20L329.7%2C544.5%20L332.4%2C549.3%20L335.4%2C553.6%20L338.6%2C557.5%20L342.0%2C560.8%20L345.5%2C563.7%20L349.1%2C566.1%20L352.8%2C567.9%20L356.5%2C569.3%20L360.2%2C570.2%20L363.9%2C570.7%20L367.5%2C570.7%20L371.0%2C570.3%20L374.4%2C569.4%20L377.6%2C568.2%20L380.6%2C566.7%20L383.5%2C564.8%20L386.1%2C562.7%20L388.5%2C560.3%20L390.6%2C557.7%20L392.5%2C554.9%20L394.2%2C552.0%20L395.6%2C549.0%20L396.7%2C545.9%20L397.6%2C542.7%20L398.2%2C539.5%20L398.6%2C536.4%20L398.7%2C533.3%20L398.7%2C530.3%20L398.4%2C527.3%20L397.9%2C524.5%20L397.2%2C521.8%20L396.3%2C519.3%20L395.3%2C517.0%20L394.1%2C514.8%20L392.9%2C512.8%20L391.5%2C511.1%20L390.0%2C509.5%20L388.5%2C508.2%20L386.9%2C507.1%20L385.2%2C506.2%20L383.6%2C505.6%20L381.9%2C505.1%20L380.3%2C504.8%20L378.7%2C504.8%20L377.2%2C504.9%20L375.7%2C505.3%20L374.2%2C505.7%20L372.9%2C506.4%20L371.6%2C507.2%20L370.4%2C508.1%20L369.3%2C509.1%20L368.3%2C510.2%20L367.5%2C511.4%20Z%22/%3E%3C/g%3E%3Crect%20width%3D%22750%22%20height%3D%221050%22%20fill%3D%22url%28%23shade%29%22/%3E%3C/svg%3E") center/cover no-repeat}
