From: Snapshot-Content-Location: https://serverfault.com/questions/1026572/nginx-remove-header-from-upstream Subject: nginx remove header from upstream - Server Fault - https://serverfault.com/ Date: Thu, 22 Aug 2024 21:00:13 +0200 MIME-Version: 1.0 Content-Type: multipart/related; type="text/html"; boundary="----MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i----" ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: quoted-printable Content-Location: https://serverfault.com/questions/1026572/nginx-remove-header-from-upstream nginx remove header from upstream - Server Fault - https://s= erverfault.com/ =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20
=20
=20
Skip to main content=

Stack Excha= nge Network

Stack Exchange network consists of 183 Q&A communities including = Stack Overflow, the largest, mos= t trusted online community for developers to learn, share their knowledge, = and build their careers.

Visit Stack Exchange
=09
=09
=20

Teams

Q&A for work<= /p>

Connect and share= knowledge within a single location that is structured and easy to search.<= /p> Learn more about Teams

<= path d=3D"M16.4 26.08A6 6 0 1 0 7.53 26C5.64 26.06 4 27.52 4 29.45V40a1 1 0= 0 0 1 1h9a1 1 0 1 0 0-2h-4v-7a1 1 0 1 0-2 0v7H6v-9.55c0-.73.67-1.45 1.64-1= .45H16a1 1 0 0 0 .4-1.92M12 18a4 4 0 1 1 0 8 4 4 0 0 1 0-8m16.47 14a6 6 0 1= 0-8.94 0A3.6 3.6 0 0 0 16 35.5V46a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V35.5c0-1.= 94-1.64-3.42-3.53-3.5M20 28a4 4 0 1 1 8 0 4 4 0 0 1-8 0m-.3 6h8.6c1 0 1.7.7= 5 1.7 1.5V45h-2v-7a1 1 0 1 0-2 0v7h-4v-7a1 1 0 1 0-2 0v7h-2v-9.5c0-.75.7-1.= 5 1.7-1.5M42 22c0 1.54-.58 2.94-1.53 4A3.5 3.5 0 0 1 44 29.45V40a1 1 0 0 1-= 1 1h-9a1 1 0 1 1 0-2h4v-7a1 1 0 1 1 2 0v7h2v-9.55A1.5 1.5 0 0 0 40.48 28H32= a1 1 0 0 1-.4-1.92A6 6 0 1 1 42 22m-2 0a4 4 0 1 0-8 0 4 4 0 0 0 8 0">
=20
=20
Asked
Viewed 9k times
=20
=20
=20
This question shows research effort; = it is useful and clear
=20
3
=20 =20
Save this question.
=20
Show a= ctivity on this post.
=20
=20
=20

I have nginx with upstream.

The upstream sets headers:

Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache

Because I want this page to be cached, in nginx I have following conf:

    location ~* ^.+\.(html)$ {
            proxy_pass      http://websitefarm.php73;

            add_header      Pragma          "";
            add_header      x-pragma        "OK";
            expires         1d;
    }

it successfully remove Expires and Cache-Control, but Pragma stays.

note my test header "x-pragma" is set. so definitely conf "works"

expires: Sat, 25 Jul 2020 12:13:04 GMT
cache-control: max-age=3D86400
pragma: no-cache
x-pragma: OK

if i try set "Pragma" to something else, it works, but "" not seems to w= ork.

=20
Follow this question to = receive notifications
asked Jul 24, 2020 at 12:21
=20
3D"Nick's
NickNick
88222 gold badges1616 silver badges4343 bronze badges
=20
=20
=20
=20 =20

2 Answers 2

=20
=20
=20
This answer is useful
=20
2
=20 =20
Save this answer.
=20
Show a= ctivity on this post.
=20
=20

Seems like this can be removed only with proxy_hide_header = directive

Following config works:

    location ~* ^.+\.(html)$ {
            proxy_pass              http://websitefarm.php73;
            proxy_hide_header       Pragma;
            expires                 1d;
    }
answered Jul 24, 2020 at 12:37
=20
3D"Nick's
NickNick
88222 gold badges1616 silver badges4343 bronze badges
=20 =20
=20
1=20
=20
<= /div>
=20
=20
This answer is useful
=20
2
=20 =20
Save this answer.
=20
Show a= ctivity on this post.
=20
=20

This is a PHP configuration issue. You have set session.cache_limiter to no= cache, either by leaving it at its default or by setting it explicit= ly in code, or both.

If the pages of interest are indeed cacheable, and are not for logged-in= users, you need to have a chat with the application's developer about the = inappropriate use of sessions.

answered Jul 24, 2020 at 12:45
=20
3D"Michael
Mi= chael HamptonMichael Hampton
250k4646 gold badges517517 silver ba= dges986986 bronze badges
=20 =20
=20
1=20
=20

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .

=20
=20
=20 =20
=20 =20 =20 =20 =20
=20
=20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20
------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-c5bd514d-026e-40da-815b-972aa8070fd1@mhtml.blink @charset "utf-8"; a.svelte-9quauz { outline: none; } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-d0545fb8-4c75-4884-9d7f-191a0193b440@mhtml.blink @charset "utf-8"; h1.svelte-1mm1u63 { font-size: 13px; font-weight: 400; overflow: hidden; te= xt-align: center; color: var(--black-400); } h1.svelte-1mm1u63::before, h1.svelte-1mm1u63::after { content: ""; display:= inline-block; width: 50%; margin: 0px 0.5em 0px -55%; vertical-align: midd= le; border-bottom-width: 1px; border-bottom-style: solid; border-color: var= (--black-225); } h1.svelte-1mm1u63::after { margin: 0px -55% 0px 0.5em; } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-03eb2104-ac0a-4760-8d92-c733e137be89@mhtml.blink @charset "utf-8"; .show-hide-password.svelte-1rlgrxv { position: absolute; top: 8px; right: 8= px; border: none; background: none; padding: 0px; cursor: pointer; } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-5283d683-35ba-40ed-8c2e-69e23e94323f@mhtml.blink @charset "utf-8"; .qJTHM { user-select: none; color: rgb(32, 33, 36); direction: ltr; font-fa= mily: Roboto-Regular, arial, sans-serif; -webkit-font-smoothing: antialiase= d; font-weight: 400; margin: 0px; overflow: hidden; text-size-adjust: 100%;= } .ynRLnc { left: -9999px; position: absolute; top: -9999px; } .L6cTce { display: none; } .bltWBb { word-break: break-all; } .hSRGPd { color: rgb(26, 115, 232); cursor: pointer; font-weight: 500; text= -decoration: none; } .Bz112c-W3lGp { height: 16px; width: 16px; } .Bz112c-E3DyYd { height: 20px; width: 20px; } .Bz112c-r9oPif { height: 24px; width: 24px; } .Bz112c-uaxL4e { border-radius: 10px; } .LgbsSe-Bz112c { display: block; } .S9gUrf-YoZ4jf, .S9gUrf-YoZ4jf * { border: none; margin: 0px; padding: 0px;= } .fFW7wc-ibnC6b > .aZ2wEe > div { border-color: rgb(66, 133, 244); } .P1ekSe-ZMv3u > div:nth-child(1) { background-color: rgb(26, 115, 232) !imp= ortant; } .P1ekSe-ZMv3u > div:nth-child(2), .P1ekSe-ZMv3u > div:nth-child(3) { backgr= ound-image: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 2= 55, 255, 0.7)), linear-gradient(to right, rgb(26, 115, 232), rgb(26, 115, 2= 32)) !important; } .haAclf { display: inline-block; } .nsm7Bb-HzV7m-LgbsSe { border-radius: 4px; box-sizing: border-box; transiti= on: background-color 0.218s, border-color 0.218s; user-select: none; appear= ance: none; background-color: rgb(255, 255, 255); background-image: none; b= order: 1px solid rgb(218, 220, 224); color: rgb(60, 64, 67); cursor: pointe= r; font-family: "Google Sans", arial, sans-serif; font-size: 14px; height: = 40px; letter-spacing: 0.25px; outline: none; overflow: hidden; padding: 0px= 12px; position: relative; text-align: center; vertical-align: middle; whit= e-space: nowrap; width: auto; } @media screen and (-ms-high-contrast:active) { .nsm7Bb-HzV7m-LgbsSe { border: 2px solid windowtext; color: windowtext; } } .nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe { font-size: 14px; height: 32px; letter-s= pacing: 0.25px; padding: 0px 10px; } .nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe { font-size: 11px; height: 20px; letter-s= pacing: 0.3px; padding: 0px 8px; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe { padding: 0px; width: 40px; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe { width: 32px; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe { width: 20px; } .nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK { border-radius: 20px; } .nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.pSzOP-SxQuSe { border-radius: 16px; } .nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK.purZT-SxQuSe { border-radius: 10px; } .nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc { border: none; color: rgb(255, 255, 255= ); } .nsm7Bb-HzV7m-LgbsSe.MFS4be-v3pZbf-Ia7Qfc { background-color: rgb(26, 115, = 232); } .nsm7Bb-HzV7m-LgbsSe.MFS4be-JaPV2b-Ia7Qfc { background-color: rgb(32, 33, 3= 6); color: rgb(232, 234, 237); } .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c { height: 18px; margin-rig= ht: 8px; min-width: 18px; width: 18px; } .nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c { height: 14p= x; min-width: 14px; width: 14px; } .nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c { height: 10p= x; min-width: 10px; width: 10px; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c { margin-left: 8px;= margin-right: -4px; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c { margin: 0p= x; padding: 10px; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c= { padding: 8px; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c= { padding: 4px; } .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf { border-top-left-r= adius: 3px; border-bottom-left-radius: 3px; display: flex; justify-content:= center; align-items: center; background-color: rgb(255, 255, 255); height:= 36px; margin-left: -10px; margin-right: 12px; min-width: 36px; width: 36px= ; } .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf .nsm7Bb-HzV7m-LgbsS= e-Bz112c, .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-ha= Aclf .nsm7Bb-HzV7m-LgbsSe-Bz112c { margin: 0px; padding: 0px; } .nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf { heig= ht: 28px; margin-left: -8px; margin-right: 10px; min-width: 28px; width: 28= px; } .nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf { heig= ht: 16px; margin-left: -6px; margin-right: 8px; min-width: 16px; width: 16p= x; } .nsm7Bb-HzV7m-LgbsSe.Bz112c-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf { bor= der-radius: 3px; margin-left: 2px; margin-right: 0px; padding: 0px; } .nsm7Bb-HzV7m-LgbsSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf { borde= r-radius: 18px; } .nsm7Bb-HzV7m-LgbsSe.pSzOP-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-h= aAclf { border-radius: 14px; } .nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-h= aAclf { border-radius: 8px; } .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb { display: flex; al= ign-items: center; flex-flow: row; justify-content: space-between; height: = 100%; position: relative; width: 100%; } .nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX { justify-content: center; } .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId { flex-grow: 1; font-famil= y: "Google Sans", arial, sans-serif; font-weight: 500; overflow: hidden; te= xt-overflow: ellipsis; vertical-align: top; } .nsm7Bb-HzV7m-LgbsSe.purZT-SxQuSe .nsm7Bb-HzV7m-LgbsSe-BPrWId { font-weight= : 300; } .nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX .nsm7Bb-HzV7m-LgbsSe-BPrWId { flex-grow:= 0; } .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe { transition: background-c= olor 0.218s; inset: 0px; position: absolute; } .nsm7Bb-HzV7m-LgbsSe:hover, .nsm7Bb-HzV7m-LgbsSe:focus { box-shadow: none; = border-color: rgb(210, 227, 252); outline: none; } .nsm7Bb-HzV7m-LgbsSe:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe, .nsm7Bb-HzV7m-LgbsS= e:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe { background: rgba(66, 133, 244, 0.04);= } .nsm7Bb-HzV7m-LgbsSe:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe { background: rgba(= 66, 133, 244, 0.1); } .nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:hover .nsm7Bb-HzV7m-LgbsSe-MJoBVe, .nsm7= Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:focus .nsm7Bb-HzV7m-LgbsSe-MJoBVe { backgroun= d: rgba(255, 255, 255, 0.24); } .nsm7Bb-HzV7m-LgbsSe.MFS4be-Ia7Qfc:active .nsm7Bb-HzV7m-LgbsSe-MJoBVe { bac= kground: rgba(255, 255, 255, 0.32); } .nsm7Bb-HzV7m-LgbsSe .n1UuX-DkfjY { border-radius: 50%; display: flex; heig= ht: 20px; margin-left: -4px; margin-right: 8px; min-width: 20px; width: 20p= x; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId { font-family: Robo= to; font-size: 12px; text-align: left; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .ssJRIf, .nsm7Bb-Hz= V7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .fmcmS { overflow: hi= dden; text-overflow: ellipsis; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff { display: = flex; align-items: center; color: rgb(95, 99, 104); fill: rgb(95, 99, 104);= font-size: 11px; font-weight: 400; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe.MFS4be-Ia7Qfc .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4ef= ff { color: rgb(232, 234, 237); fill: rgb(232, 234, 237); } .nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-BPrWId .K4efff .Bz112c { h= eight: 18px; margin: -3px -3px -3px 2px; min-width: 18px; width: 18px; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf { border-rad= ius: 0px 3px 3px 0px; margin-left: 12px; margin-right: -10px; } .nsm7Bb-HzV7m-LgbsSe.jVeSEe.JGcpL-RbRzK .nsm7Bb-HzV7m-LgbsSe-Bz112c-haAclf = { border-radius: 18px; } .L5Fo6c-sM5MNb { border: 0px; display: block; left: 0px; position: relative= ; top: 0px; } .L5Fo6c-bF1uUb { border-radius: 4px; inset: 0px; cursor: pointer; position:= absolute; } .L5Fo6c-bF1uUb:focus { border: none; outline: none; } sentinel { } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-41d33bd2-8a2b-4547-bc64-1b262876fcf6@mhtml.blink @charset "utf-8"; #onetrust-banner-sdk { text-size-adjust: 100%; } #onetrust-banner-sdk .onetrust-vendors-list-handler { cursor: pointer; colo= r: rgb(31, 150, 219); font-size: inherit; font-weight: bold; text-decoratio= n: none; margin-left: 5px; } #onetrust-banner-sdk .onetrust-vendors-list-handler:hover { color: rgb(31, = 150, 219); } #onetrust-banner-sdk:focus { outline: rgb(0, 0, 0) solid 2px; outline-offse= t: -2px; } #onetrust-banner-sdk a:focus { outline: rgb(0, 0, 0) solid 2px; } #onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #on= etrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler { = outline-offset: 1px; } #onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo { height: 64px; width: 64px= ; } #onetrust-banner-sdk .ot-tcf2-vendor-count.ot-text-bold { font-weight: bold= ; } #onetrust-banner-sdk .ot-close-icon, #onetrust-pc-sdk .ot-close-icon, #ot-s= ync-ntfy .ot-close-icon { background-size: contain; background-repeat: no-r= epeat; background-position: center center; height: 12px; width: 12px; } #onetrust-banner-sdk .powered-by-logo, #onetrust-banner-sdk .ot-pc-footer-l= ogo a, #onetrust-pc-sdk .powered-by-logo, #onetrust-pc-sdk .ot-pc-footer-lo= go a, #ot-sync-ntfy .powered-by-logo, #ot-sync-ntfy .ot-pc-footer-logo a { = background-size: contain; background-repeat: no-repeat; background-position= : center center; height: 25px; width: 152px; display: block; text-decoratio= n: none; font-size: 0.75em; } #onetrust-banner-sdk .powered-by-logo:hover, #onetrust-banner-sdk .ot-pc-fo= oter-logo a:hover, #onetrust-pc-sdk .powered-by-logo:hover, #onetrust-pc-sd= k .ot-pc-footer-logo a:hover, #ot-sync-ntfy .powered-by-logo:hover, #ot-syn= c-ntfy .ot-pc-footer-logo a:hover { color: rgb(86, 86, 86); } #onetrust-banner-sdk h3 *, #onetrust-banner-sdk h4 *, #onetrust-banner-sdk = h6 *, #onetrust-banner-sdk button *, #onetrust-banner-sdk a[data-parent-id]= *, #onetrust-pc-sdk h3 *, #onetrust-pc-sdk h4 *, #onetrust-pc-sdk h6 *, #o= netrust-pc-sdk button *, #onetrust-pc-sdk a[data-parent-id] *, #ot-sync-ntf= y h3 *, #ot-sync-ntfy h4 *, #ot-sync-ntfy h6 *, #ot-sync-ntfy button *, #ot= -sync-ntfy a[data-parent-id] * { font-size: inherit; font-weight: inherit; = color: inherit; } #onetrust-banner-sdk .ot-hide, #onetrust-pc-sdk .ot-hide, #ot-sync-ntfy .ot= -hide { display: none !important; } #onetrust-banner-sdk button.ot-link-btn:hover, #onetrust-pc-sdk button.ot-l= ink-btn:hover, #ot-sync-ntfy button.ot-link-btn:hover { text-decoration: un= derline; opacity: 1; } #onetrust-pc-sdk .ot-sdk-row .ot-sdk-column { padding: 0px; } #onetrust-pc-sdk .ot-sdk-container { padding-right: 0px; } #onetrust-pc-sdk .ot-sdk-row { flex-direction: initial; width: 100%; } #onetrust-pc-sdk [type=3D"checkbox"]:checked, #onetrust-pc-sdk [type=3D"che= ckbox"]:not(:checked) { pointer-events: initial; } #onetrust-pc-sdk [type=3D"checkbox"]:disabled + label::before, #onetrust-pc= -sdk [type=3D"checkbox"]:disabled + label::after, #onetrust-pc-sdk [type=3D= "checkbox"]:disabled + label { pointer-events: none; opacity: 0.7; } #onetrust-pc-sdk #vendor-list-content { transform: translate3d(0px, 0px, 0p= x); } #onetrust-pc-sdk li input[type=3D"checkbox"] { z-index: 1; } #onetrust-pc-sdk li .ot-checkbox label { z-index: 2; } #onetrust-pc-sdk li .ot-checkbox input[type=3D"checkbox"] { height: auto; w= idth: auto; } #onetrust-pc-sdk li .host-title a, #onetrust-pc-sdk li .ot-host-name a, #on= etrust-pc-sdk li .accordion-text, #onetrust-pc-sdk li .ot-acc-txt { z-index= : 2; position: relative; } #onetrust-pc-sdk input { margin: 3px 0.1ex; } #onetrust-pc-sdk .pc-logo, #onetrust-pc-sdk .ot-pc-logo { height: 60px; wid= th: 180px; background-position: center center; background-size: contain; ba= ckground-repeat: no-repeat; display: inline-flex; justify-content: center; = align-items: center; } #onetrust-pc-sdk .pc-logo img, #onetrust-pc-sdk .ot-pc-logo img { max-heigh= t: 100%; max-width: 100%; } #onetrust-pc-sdk .screen-reader-only, #onetrust-pc-sdk .ot-scrn-rdr, .ot-sd= k-cookie-policy .screen-reader-only, .ot-sdk-cookie-policy .ot-scrn-rdr { b= order: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; over= flow: hidden; padding: 0px; position: absolute; width: 1px; } #onetrust-pc-sdk.ot-fade-in, .onetrust-pc-dark-filter.ot-fade-in, #onetrust= -banner-sdk.ot-fade-in { animation-name: onetrust-fade-in; animation-durati= on: 400ms; animation-timing-function: ease-in-out; } #onetrust-pc-sdk.ot-hide { display: none !important; } .onetrust-pc-dark-filter.ot-hide { display: none !important; } #ot-sdk-btn.ot-sdk-show-settings, #ot-sdk-btn.optanon-show-settings { color= : rgb(104, 182, 49); border: 1px solid rgb(104, 182, 49); height: auto; whi= te-space: normal; overflow-wrap: break-word; padding: 0.8em 2em; font-size:= 0.8em; line-height: 1.2; cursor: pointer; transition: 0.1s; } #ot-sdk-btn.ot-sdk-show-settings:hover, #ot-sdk-btn.optanon-show-settings:h= over { color: rgb(255, 255, 255); background-color: rgb(104, 182, 49); } .onetrust-pc-dark-filter { background: rgba(0, 0, 0, 0.5); z-index: 2147483= 646; width: 100%; height: 100%; overflow: hidden; position: fixed; top: 0px= ; bottom: 0px; left: 0px; } @keyframes onetrust-fade-in {=20 0% { opacity: 0; } 100% { opacity: 1; } } .ot-cookie-label { text-decoration: underline; } @media only screen and (min-width: 426px) and (max-width: 896px) and (orien= tation: landscape) { #onetrust-pc-sdk p { font-size: 0.75em; } } #onetrust-banner-sdk .banner-option-input:focus + label { outline: rgb(0, 0= , 0) auto 1px; } .category-vendors-list-handler + a:focus, .category-vendors-list-handler + = a:focus-visible { outline: rgb(0, 0, 0) solid 2px; } #onetrust-pc-sdk .ot-userid-title { margin-top: 10px; } #onetrust-pc-sdk .ot-userid-title > span, #onetrust-pc-sdk .ot-userid-times= tamp > span { font-weight: 700; } #onetrust-pc-sdk .ot-userid-desc { font-style: italic; } #onetrust-pc-sdk .ot-host-desc a { pointer-events: initial; } #onetrust-pc-sdk .ot-ven-hdr > p a { position: relative; z-index: 2; pointe= r-events: initial; } #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, #onetrust-pc-sdk= .ot-vs-list .ot-vnd-item .ot-vnd-info a { margin-right: auto; } #onetrust-pc-sdk .ot-pc-footer-logo img { width: 136px; height: 16px; } #onetrust-pc-sdk .ot-pur-vdr-count { font-weight: 400; font-size: 0.7rem; p= adding-top: 3px; display: block; } #onetrust-banner-sdk .ot-optout-signal, #onetrust-pc-sdk .ot-optout-signal = { border: 1px solid rgb(50, 174, 136); border-radius: 3px; padding: 5px; ma= rgin-bottom: 10px; background-color: rgb(249, 255, 250); font-size: 0.85rem= ; line-height: 2; } #onetrust-banner-sdk .ot-optout-signal .ot-optout-icon, #onetrust-pc-sdk .o= t-optout-signal .ot-optout-icon { display: inline; margin-right: 5px; } #onetrust-banner-sdk .ot-optout-signal svg, #onetrust-pc-sdk .ot-optout-sig= nal svg { height: 20px; width: 30px; transform: scale(0.5); } #onetrust-banner-sdk .ot-optout-signal svg path, #onetrust-pc-sdk .ot-optou= t-signal svg path { fill: rgb(50, 174, 136); } #onetrust-banner-sdk, #onetrust-pc-sdk, #ot-sdk-cookie-policy, #ot-sync-ntf= y { font-size: 16px; } #onetrust-banner-sdk *, #onetrust-banner-sdk ::after, #onetrust-banner-sdk = ::before, #onetrust-pc-sdk *, #onetrust-pc-sdk ::after, #onetrust-pc-sdk ::= before, #ot-sdk-cookie-policy *, #ot-sdk-cookie-policy ::after, #ot-sdk-coo= kie-policy ::before, #ot-sync-ntfy *, #ot-sync-ntfy ::after, #ot-sync-ntfy = ::before { box-sizing: content-box; } #onetrust-banner-sdk div, #onetrust-banner-sdk span, #onetrust-banner-sdk h= 1, #onetrust-banner-sdk h2, #onetrust-banner-sdk h3, #onetrust-banner-sdk h= 4, #onetrust-banner-sdk h5, #onetrust-banner-sdk h6, #onetrust-banner-sdk p= , #onetrust-banner-sdk img, #onetrust-banner-sdk svg, #onetrust-banner-sdk = button, #onetrust-banner-sdk section, #onetrust-banner-sdk a, #onetrust-ban= ner-sdk label, #onetrust-banner-sdk input, #onetrust-banner-sdk ul, #onetru= st-banner-sdk li, #onetrust-banner-sdk nav, #onetrust-banner-sdk table, #on= etrust-banner-sdk thead, #onetrust-banner-sdk tr, #onetrust-banner-sdk td, = #onetrust-banner-sdk tbody, #onetrust-banner-sdk .ot-main-content, #onetrus= t-banner-sdk .ot-toggle, #onetrust-banner-sdk #ot-content, #onetrust-banner= -sdk #ot-pc-content, #onetrust-banner-sdk .checkbox, #onetrust-pc-sdk div, = #onetrust-pc-sdk span, #onetrust-pc-sdk h1, #onetrust-pc-sdk h2, #onetrust-= pc-sdk h3, #onetrust-pc-sdk h4, #onetrust-pc-sdk h5, #onetrust-pc-sdk h6, #= onetrust-pc-sdk p, #onetrust-pc-sdk img, #onetrust-pc-sdk svg, #onetrust-pc= -sdk button, #onetrust-pc-sdk section, #onetrust-pc-sdk a, #onetrust-pc-sdk= label, #onetrust-pc-sdk input, #onetrust-pc-sdk ul, #onetrust-pc-sdk li, #= onetrust-pc-sdk nav, #onetrust-pc-sdk table, #onetrust-pc-sdk thead, #onetr= ust-pc-sdk tr, #onetrust-pc-sdk td, #onetrust-pc-sdk tbody, #onetrust-pc-sd= k .ot-main-content, #onetrust-pc-sdk .ot-toggle, #onetrust-pc-sdk #ot-conte= nt, #onetrust-pc-sdk #ot-pc-content, #onetrust-pc-sdk .checkbox, #ot-sdk-co= okie-policy div, #ot-sdk-cookie-policy span, #ot-sdk-cookie-policy h1, #ot-= sdk-cookie-policy h2, #ot-sdk-cookie-policy h3, #ot-sdk-cookie-policy h4, #= ot-sdk-cookie-policy h5, #ot-sdk-cookie-policy h6, #ot-sdk-cookie-policy p,= #ot-sdk-cookie-policy img, #ot-sdk-cookie-policy svg, #ot-sdk-cookie-polic= y button, #ot-sdk-cookie-policy section, #ot-sdk-cookie-policy a, #ot-sdk-c= ookie-policy label, #ot-sdk-cookie-policy input, #ot-sdk-cookie-policy ul, = #ot-sdk-cookie-policy li, #ot-sdk-cookie-policy nav, #ot-sdk-cookie-policy = table, #ot-sdk-cookie-policy thead, #ot-sdk-cookie-policy tr, #ot-sdk-cooki= e-policy td, #ot-sdk-cookie-policy tbody, #ot-sdk-cookie-policy .ot-main-co= ntent, #ot-sdk-cookie-policy .ot-toggle, #ot-sdk-cookie-policy #ot-content,= #ot-sdk-cookie-policy #ot-pc-content, #ot-sdk-cookie-policy .checkbox, #ot= -sync-ntfy div, #ot-sync-ntfy span, #ot-sync-ntfy h1, #ot-sync-ntfy h2, #ot= -sync-ntfy h3, #ot-sync-ntfy h4, #ot-sync-ntfy h5, #ot-sync-ntfy h6, #ot-sy= nc-ntfy p, #ot-sync-ntfy img, #ot-sync-ntfy svg, #ot-sync-ntfy button, #ot-= sync-ntfy section, #ot-sync-ntfy a, #ot-sync-ntfy label, #ot-sync-ntfy inpu= t, #ot-sync-ntfy ul, #ot-sync-ntfy li, #ot-sync-ntfy nav, #ot-sync-ntfy tab= le, #ot-sync-ntfy thead, #ot-sync-ntfy tr, #ot-sync-ntfy td, #ot-sync-ntfy = tbody, #ot-sync-ntfy .ot-main-content, #ot-sync-ntfy .ot-toggle, #ot-sync-n= tfy #ot-content, #ot-sync-ntfy #ot-pc-content, #ot-sync-ntfy .checkbox { fo= nt-family: inherit; font-weight: normal; -webkit-font-smoothing: auto; lett= er-spacing: normal; line-height: normal; padding: 0px; margin: 0px; height:= auto; min-height: 0px; max-height: none; width: auto; min-width: 0px; max-= width: none; border-radius: 0px; border: none; clear: none; float: none; po= sition: static; inset: auto; text-align: left; text-decoration: none; text-= indent: 0px; text-shadow: none; text-transform: none; white-space: normal; = background: none; overflow: visible; vertical-align: baseline; visibility: = visible; z-index: auto; box-shadow: none; } #onetrust-banner-sdk label::before, #onetrust-banner-sdk label::after, #one= trust-banner-sdk .checkbox::after, #onetrust-banner-sdk .checkbox::before, = #onetrust-pc-sdk label::before, #onetrust-pc-sdk label::after, #onetrust-pc= -sdk .checkbox::after, #onetrust-pc-sdk .checkbox::before, #ot-sdk-cookie-p= olicy label::before, #ot-sdk-cookie-policy label::after, #ot-sdk-cookie-pol= icy .checkbox::after, #ot-sdk-cookie-policy .checkbox::before, #ot-sync-ntf= y label::before, #ot-sync-ntfy label::after, #ot-sync-ntfy .checkbox::after= , #ot-sync-ntfy .checkbox::before { content: none; } #onetrust-banner-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-container,= #ot-sdk-cookie-policy .ot-sdk-container { position: relative; width: 100%;= max-width: 100%; margin: 0px auto; padding: 0px 20px; box-sizing: border-b= ox; } #onetrust-banner-sdk .ot-sdk-column, #onetrust-banner-sdk .ot-sdk-columns, = #onetrust-pc-sdk .ot-sdk-column, #onetrust-pc-sdk .ot-sdk-columns, #ot-sdk-= cookie-policy .ot-sdk-column, #ot-sdk-cookie-policy .ot-sdk-columns { width= : 100%; float: left; box-sizing: border-box; padding: 0px; display: initial= ; } @media (min-width: 400px) { #onetrust-banner-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-containe= r, #ot-sdk-cookie-policy .ot-sdk-container { width: 90%; padding: 0px; } } @media (min-width: 550px) { #onetrust-banner-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-containe= r, #ot-sdk-cookie-policy .ot-sdk-container { width: 100%; } #onetrust-banner-sdk .ot-sdk-column, #onetrust-banner-sdk .ot-sdk-columns= , #onetrust-pc-sdk .ot-sdk-column, #onetrust-pc-sdk .ot-sdk-columns, #ot-sd= k-cookie-policy .ot-sdk-column, #ot-sdk-cookie-policy .ot-sdk-columns { mar= gin-left: 4%; } #onetrust-banner-sdk .ot-sdk-column:first-child, #onetrust-banner-sdk .ot= -sdk-columns:first-child, #onetrust-pc-sdk .ot-sdk-column:first-child, #one= trust-pc-sdk .ot-sdk-columns:first-child, #ot-sdk-cookie-policy .ot-sdk-col= umn:first-child, #ot-sdk-cookie-policy .ot-sdk-columns:first-child { margin= -left: 0px; } #onetrust-banner-sdk .ot-sdk-two.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk= -two.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-two.ot-sdk-columns { wid= th: 13.3333%; } #onetrust-banner-sdk .ot-sdk-three.ot-sdk-columns, #onetrust-pc-sdk .ot-s= dk-three.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-three.ot-sdk-columns= { width: 22%; } #onetrust-banner-sdk .ot-sdk-four.ot-sdk-columns, #onetrust-pc-sdk .ot-sd= k-four.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-four.ot-sdk-columns { = width: 30.6667%; } #onetrust-banner-sdk .ot-sdk-eight.ot-sdk-columns, #onetrust-pc-sdk .ot-s= dk-eight.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-eight.ot-sdk-columns= { width: 65.3333%; } #onetrust-banner-sdk .ot-sdk-nine.ot-sdk-columns, #onetrust-pc-sdk .ot-sd= k-nine.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-nine.ot-sdk-columns { = width: 74%; } #onetrust-banner-sdk .ot-sdk-ten.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk= -ten.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-ten.ot-sdk-columns { wid= th: 82.6667%; } #onetrust-banner-sdk .ot-sdk-eleven.ot-sdk-columns, #onetrust-pc-sdk .ot-= sdk-eleven.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-eleven.ot-sdk-colu= mns { width: 91.3333%; } #onetrust-banner-sdk .ot-sdk-twelve.ot-sdk-columns, #onetrust-pc-sdk .ot-= sdk-twelve.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-twelve.ot-sdk-colu= mns { width: 100%; margin-left: 0px; } } #onetrust-banner-sdk h1, #onetrust-banner-sdk h2, #onetrust-banner-sdk h3, = #onetrust-banner-sdk h4, #onetrust-banner-sdk h5, #onetrust-banner-sdk h6, = #onetrust-pc-sdk h1, #onetrust-pc-sdk h2, #onetrust-pc-sdk h3, #onetrust-pc= -sdk h4, #onetrust-pc-sdk h5, #onetrust-pc-sdk h6, #ot-sdk-cookie-policy h1= , #ot-sdk-cookie-policy h2, #ot-sdk-cookie-policy h3, #ot-sdk-cookie-policy= h4, #ot-sdk-cookie-policy h5, #ot-sdk-cookie-policy h6 { margin-top: 0px; = font-weight: 600; font-family: inherit; } #onetrust-banner-sdk h1, #onetrust-pc-sdk h1, #ot-sdk-cookie-policy h1 { fo= nt-size: 1.5rem; line-height: 1.2; } #onetrust-banner-sdk h2, #onetrust-pc-sdk h2, #ot-sdk-cookie-policy h2 { fo= nt-size: 1.5rem; line-height: 1.25; } #onetrust-banner-sdk h3, #onetrust-pc-sdk h3, #ot-sdk-cookie-policy h3 { fo= nt-size: 1.5rem; line-height: 1.3; } #onetrust-banner-sdk h4, #onetrust-pc-sdk h4, #ot-sdk-cookie-policy h4 { fo= nt-size: 1.5rem; line-height: 1.35; } #onetrust-banner-sdk h5, #onetrust-pc-sdk h5, #ot-sdk-cookie-policy h5 { fo= nt-size: 1.5rem; line-height: 1.5; } #onetrust-banner-sdk h6, #onetrust-pc-sdk h6, #ot-sdk-cookie-policy h6 { fo= nt-size: 1.5rem; line-height: 1.6; } @media (min-width: 550px) { #onetrust-banner-sdk h1, #onetrust-pc-sdk h1, #ot-sdk-cookie-policy h1 { = font-size: 1.5rem; } #onetrust-banner-sdk h2, #onetrust-pc-sdk h2, #ot-sdk-cookie-policy h2 { = font-size: 1.5rem; } #onetrust-banner-sdk h3, #onetrust-pc-sdk h3, #ot-sdk-cookie-policy h3 { = font-size: 1.5rem; } #onetrust-banner-sdk h4, #onetrust-pc-sdk h4, #ot-sdk-cookie-policy h4 { = font-size: 1.5rem; } #onetrust-banner-sdk h5, #onetrust-pc-sdk h5, #ot-sdk-cookie-policy h5 { = font-size: 1.5rem; } #onetrust-banner-sdk h6, #onetrust-pc-sdk h6, #ot-sdk-cookie-policy h6 { = font-size: 1.5rem; } } #onetrust-banner-sdk p, #onetrust-pc-sdk p, #ot-sdk-cookie-policy p { margi= n: 0px 0px 1em; font-family: inherit; line-height: normal; } #onetrust-banner-sdk a, #onetrust-pc-sdk a, #ot-sdk-cookie-policy a { color= : rgb(86, 86, 86); text-decoration: underline; } #onetrust-banner-sdk a:hover, #onetrust-pc-sdk a:hover, #ot-sdk-cookie-poli= cy a:hover { color: rgb(86, 86, 86); text-decoration: none; } #onetrust-banner-sdk .ot-sdk-button, #onetrust-banner-sdk button, #onetrust= -pc-sdk .ot-sdk-button, #onetrust-pc-sdk button, #ot-sdk-cookie-policy .ot-= sdk-button, #ot-sdk-cookie-policy button { margin-bottom: 1rem; font-family= : inherit; } #onetrust-banner-sdk .ot-sdk-button, #onetrust-banner-sdk button, #onetrust= -pc-sdk .ot-sdk-button, #onetrust-pc-sdk button, #ot-sdk-cookie-policy .ot-= sdk-button, #ot-sdk-cookie-policy button { display: inline-block; height: 3= 8px; padding: 0px 30px; color: rgb(85, 85, 85); text-align: center; font-si= ze: 0.9em; font-weight: 400; line-height: 38px; letter-spacing: 0.01em; tex= t-decoration: none; white-space: nowrap; background-color: rgba(0, 0, 0, 0)= ; border-radius: 2px; border: 1px solid rgb(187, 187, 187); cursor: pointer= ; box-sizing: border-box; } #onetrust-banner-sdk .ot-sdk-button:hover, #onetrust-banner-sdk :not(.ot-le= g-btn-container) > button:not(.ot-link-btn):hover, #onetrust-banner-sdk :no= t(.ot-leg-btn-container) > button:not(.ot-link-btn):focus, #onetrust-pc-sdk= .ot-sdk-button:hover, #onetrust-pc-sdk :not(.ot-leg-btn-container) > butto= n:not(.ot-link-btn):hover, #onetrust-pc-sdk :not(.ot-leg-btn-container) > b= utton:not(.ot-link-btn):focus, #ot-sdk-cookie-policy .ot-sdk-button:hover, = #ot-sdk-cookie-policy :not(.ot-leg-btn-container) > button:not(.ot-link-btn= ):hover, #ot-sdk-cookie-policy :not(.ot-leg-btn-container) > button:not(.ot= -link-btn):focus { color: rgb(51, 51, 51); border-color: rgb(136, 136, 136)= ; opacity: 0.7; } #onetrust-banner-sdk .ot-sdk-button:focus, #onetrust-banner-sdk :not(.ot-le= g-btn-container) > button:focus, #onetrust-pc-sdk .ot-sdk-button:focus, #on= etrust-pc-sdk :not(.ot-leg-btn-container) > button:focus, #ot-sdk-cookie-po= licy .ot-sdk-button:focus, #ot-sdk-cookie-policy :not(.ot-leg-btn-container= ) > button:focus { outline: rgb(0, 0, 0) solid 2px; } #onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary, #onetrust-banner= -sdk button.ot-sdk-button-primary, #onetrust-banner-sdk input[type=3D"submi= t"].ot-sdk-button-primary, #onetrust-banner-sdk input[type=3D"reset"].ot-sd= k-button-primary, #onetrust-banner-sdk input[type=3D"button"].ot-sdk-button= -primary, #onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary, #onetrust-= pc-sdk button.ot-sdk-button-primary, #onetrust-pc-sdk input[type=3D"submit"= ].ot-sdk-button-primary, #onetrust-pc-sdk input[type=3D"reset"].ot-sdk-butt= on-primary, #onetrust-pc-sdk input[type=3D"button"].ot-sdk-button-primary, = #ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary, #ot-sdk-cookie-= policy button.ot-sdk-button-primary, #ot-sdk-cookie-policy input[type=3D"su= bmit"].ot-sdk-button-primary, #ot-sdk-cookie-policy input[type=3D"reset"].o= t-sdk-button-primary, #ot-sdk-cookie-policy input[type=3D"button"].ot-sdk-b= utton-primary { color: rgb(255, 255, 255); background-color: rgb(51, 195, 2= 40); border-color: rgb(51, 195, 240); } #onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:hover, #onetrust-= banner-sdk button.ot-sdk-button-primary:hover, #onetrust-banner-sdk input[t= ype=3D"submit"].ot-sdk-button-primary:hover, #onetrust-banner-sdk input[typ= e=3D"reset"].ot-sdk-button-primary:hover, #onetrust-banner-sdk input[type= =3D"button"].ot-sdk-button-primary:hover, #onetrust-banner-sdk .ot-sdk-butt= on.ot-sdk-button-primary:focus, #onetrust-banner-sdk button.ot-sdk-button-p= rimary:focus, #onetrust-banner-sdk input[type=3D"submit"].ot-sdk-button-pri= mary:focus, #onetrust-banner-sdk input[type=3D"reset"].ot-sdk-button-primar= y:focus, #onetrust-banner-sdk input[type=3D"button"].ot-sdk-button-primary:= focus, #onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:hover, #onetru= st-pc-sdk button.ot-sdk-button-primary:hover, #onetrust-pc-sdk input[type= =3D"submit"].ot-sdk-button-primary:hover, #onetrust-pc-sdk input[type=3D"re= set"].ot-sdk-button-primary:hover, #onetrust-pc-sdk input[type=3D"button"].= ot-sdk-button-primary:hover, #onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-= primary:focus, #onetrust-pc-sdk button.ot-sdk-button-primary:focus, #onetru= st-pc-sdk input[type=3D"submit"].ot-sdk-button-primary:focus, #onetrust-pc-= sdk input[type=3D"reset"].ot-sdk-button-primary:focus, #onetrust-pc-sdk inp= ut[type=3D"button"].ot-sdk-button-primary:focus, #ot-sdk-cookie-policy .ot-= sdk-button.ot-sdk-button-primary:hover, #ot-sdk-cookie-policy button.ot-sdk= -button-primary:hover, #ot-sdk-cookie-policy input[type=3D"submit"].ot-sdk-= button-primary:hover, #ot-sdk-cookie-policy input[type=3D"reset"].ot-sdk-bu= tton-primary:hover, #ot-sdk-cookie-policy input[type=3D"button"].ot-sdk-but= ton-primary:hover, #ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-prima= ry:focus, #ot-sdk-cookie-policy button.ot-sdk-button-primary:focus, #ot-sdk= -cookie-policy input[type=3D"submit"].ot-sdk-button-primary:focus, #ot-sdk-= cookie-policy input[type=3D"reset"].ot-sdk-button-primary:focus, #ot-sdk-co= okie-policy input[type=3D"button"].ot-sdk-button-primary:focus { color: rgb= (255, 255, 255); background-color: rgb(30, 174, 219); border-color: rgb(30,= 174, 219); } #onetrust-banner-sdk input[type=3D"text"], #onetrust-pc-sdk input[type=3D"t= ext"], #ot-sdk-cookie-policy input[type=3D"text"] { height: 38px; padding: = 6px 10px; background-color: rgb(255, 255, 255); border: 1px solid rgb(209, = 209, 209); border-radius: 4px; box-shadow: none; box-sizing: border-box; } #onetrust-banner-sdk input[type=3D"text"], #onetrust-pc-sdk input[type=3D"t= ext"], #ot-sdk-cookie-policy input[type=3D"text"] { appearance: none; } #onetrust-banner-sdk input[type=3D"text"]:focus, #onetrust-pc-sdk input[typ= e=3D"text"]:focus, #ot-sdk-cookie-policy input[type=3D"text"]:focus { borde= r: 1px solid rgb(0, 0, 0); outline: 0px; } #onetrust-banner-sdk label, #onetrust-pc-sdk label, #ot-sdk-cookie-policy l= abel { display: block; margin-bottom: 0.5rem; font-weight: 600; } #onetrust-banner-sdk input[type=3D"checkbox"], #onetrust-pc-sdk input[type= =3D"checkbox"], #ot-sdk-cookie-policy input[type=3D"checkbox"] { display: i= nline; } #onetrust-banner-sdk ul, #onetrust-pc-sdk ul, #ot-sdk-cookie-policy ul { li= st-style: inside circle; } #onetrust-banner-sdk ul, #onetrust-pc-sdk ul, #ot-sdk-cookie-policy ul { pa= dding-left: 0px; margin-top: 0px; } #onetrust-banner-sdk ul ul, #onetrust-pc-sdk ul ul, #ot-sdk-cookie-policy u= l ul { margin: 1.5rem 0px 1.5rem 3rem; font-size: 90%; } #onetrust-banner-sdk li, #onetrust-pc-sdk li, #ot-sdk-cookie-policy li { ma= rgin-bottom: 1rem; } #onetrust-banner-sdk th, #onetrust-banner-sdk td, #onetrust-pc-sdk th, #one= trust-pc-sdk td, #ot-sdk-cookie-policy th, #ot-sdk-cookie-policy td { paddi= ng: 12px 15px; text-align: left; border-bottom: 1px solid rgb(225, 225, 225= ); } #onetrust-banner-sdk button, #onetrust-pc-sdk button, #ot-sdk-cookie-policy= button { margin-bottom: 1rem; font-family: inherit; } #onetrust-banner-sdk .ot-sdk-container::after, #onetrust-banner-sdk .ot-sdk= -row::after, #onetrust-pc-sdk .ot-sdk-container::after, #onetrust-pc-sdk .o= t-sdk-row::after, #ot-sdk-cookie-policy .ot-sdk-container::after, #ot-sdk-c= ookie-policy .ot-sdk-row::after { content: ""; display: table; clear: both;= } #onetrust-banner-sdk .ot-sdk-row, #onetrust-pc-sdk .ot-sdk-row, #ot-sdk-coo= kie-policy .ot-sdk-row { margin: 0px; max-width: none; display: block; } .ot-sdk-cookie-policy { font-family: inherit; font-size: 16px; } .ot-sdk-cookie-policy.otRelFont { font-size: 1rem; } .ot-sdk-cookie-policy h3, .ot-sdk-cookie-policy h4, .ot-sdk-cookie-policy h= 6, .ot-sdk-cookie-policy p, .ot-sdk-cookie-policy li, .ot-sdk-cookie-policy= a, .ot-sdk-cookie-policy th, .ot-sdk-cookie-policy #cookie-policy-descript= ion, .ot-sdk-cookie-policy .ot-sdk-cookie-policy-group, .ot-sdk-cookie-poli= cy #cookie-policy-title { color: dimgray; } .ot-sdk-cookie-policy #cookie-policy-description { margin-bottom: 1em; } .ot-sdk-cookie-policy h4 { font-size: 1.2em; } .ot-sdk-cookie-policy h6 { font-size: 1em; margin-top: 2em; } .ot-sdk-cookie-policy th { min-width: 75px; } .ot-sdk-cookie-policy a, .ot-sdk-cookie-policy a:hover { background: rgb(25= 5, 255, 255); } .ot-sdk-cookie-policy thead { background-color: rgb(246, 246, 244); font-we= ight: bold; } .ot-sdk-cookie-policy .ot-mobile-border { display: none; } .ot-sdk-cookie-policy section { margin-bottom: 2em; } .ot-sdk-cookie-policy table { border-collapse: inherit; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy { font-family: inherit; font-= size: 1rem; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h3, #ot-sdk-cookie-policy-v2.= ot-sdk-cookie-policy h4, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, = #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, #ot-sdk-cookie-policy-v2.o= t-sdk-cookie-policy li, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, #o= t-sdk-cookie-policy-v2.ot-sdk-cookie-policy th, #ot-sdk-cookie-policy-v2.ot= -sdk-cookie-policy #cookie-policy-description, #ot-sdk-cookie-policy-v2.ot-= sdk-cookie-policy .ot-sdk-cookie-policy-group, #ot-sdk-cookie-policy-v2.ot-= sdk-cookie-policy #cookie-policy-title { color: dimgray; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { = margin-bottom: 1em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup { margin-lef= t: 1.5em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description, #= ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group-de= sc, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header, #ot-sdk= -cookie-policy-v2.ot-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.ot-sdk-c= ookie-policy span, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td { font-= size: 0.9em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td span, #ot-sdk-cookie-polic= y-v2.ot-sdk-cookie-policy td a { font-size: inherit; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group {= font-size: 1em; margin-bottom: 0.6em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-title {= margin-bottom: 1.2em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy > section { margin-bottom: 1e= m; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { min-width: 75px; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.o= t-sdk-cookie-policy a:hover { background: rgb(255, 255, 255); } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead { background-color: rgb= (246, 246, 244); font-weight: bold; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-mobile-border { display: = none; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy section { margin-bottom: 2em;= } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li { list= -style: disc; margin-left: 1.5em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li h4 { d= isplay: inline-block; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table { border-collapse: inhe= rit; margin: auto; border: 1px solid rgb(215, 215, 215); border-radius: 5px= ; border-spacing: initial; width: 100%; overflow: hidden; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th, #ot-sdk-cookie-poli= cy-v2.ot-sdk-cookie-policy table td { border-bottom: 1px solid rgb(215, 215= , 215); border-right: 1px solid rgb(215, 215, 215); } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td { bord= er-bottom: 0px; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr th:last-child, #ot-s= dk-cookie-policy-v2.ot-sdk-cookie-policy table tr td:last-child { border-ri= ght: 0px; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host, #ot-sdk-cooki= e-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type { width: 25%; } .ot-sdk-cookie-policy[dir=3D"rtl"] { text-align: left; } #ot-sdk-cookie-policy h3 { font-size: 1.5em; } @media only screen and (max-width: 530px) { .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) table, .ot-sdk-cookie= -policy:not(#ot-sdk-cookie-policy-v2) thead, .ot-sdk-cookie-policy:not(#ot-= sdk-cookie-policy-v2) tbody, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-polic= y-v2) th, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td, .ot-sdk-c= ookie-policy:not(#ot-sdk-cookie-policy-v2) tr { display: block; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead tr { position: = absolute; top: -9999px; left: -9999px; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr { margin: 0px 0px = 1em; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(2n+1), .= ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(2n+1) a { b= ackground: rgb(246, 246, 244); } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td { border-top: none= ; border-right: none; border-left: none; border-image: initial; border-bott= om: 1px solid rgb(238, 238, 238); position: relative; padding-left: 50%; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td::before { position= : absolute; height: 100%; left: 6px; width: 40%; padding-right: 10px; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) .ot-mobile-border { d= isplay: inline-block; background-color: rgb(228, 228, 228); position: absol= ute; height: 100%; top: 0px; left: 45%; width: 2px; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td::before { content:= attr(data-label); font-weight: bold; } .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) li { word-break: brea= k-word; overflow-wrap: break-word; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table { overflow: hidden; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td { border-top: none= ; border-right: none; border-left: none; border-image: initial; border-bott= om: 1px solid rgb(215, 215, 215); } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table, #ot-sdk-cookie-polic= y-v2.ot-sdk-cookie-policy thead, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-pol= icy tbody, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th, #ot-sdk-cookie= -policy-v2.ot-sdk-cookie-policy td, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-= policy tr { display: block; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host, #ot-sdk-coo= kie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type { width: auto; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr { margin: 0px 0px 1em; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td::before { height: 100%; = width: 40%; padding-right: 10px; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td::before { content: attr(= data-label); font-weight: bold; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li { word-break: break-word= ; overflow-wrap: break-word; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead tr { position: absolu= te; top: -9999px; left: -9999px; z-index: -9999; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td { bo= rder-bottom: 1px solid rgb(215, 215, 215); border-right: 0px; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td:last= -child { border-bottom: 0px; } } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h5, #ot-sdk-cookie-policy-v2.= ot-sdk-cookie-policy h6, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, = #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, #ot-sdk-cookie-policy-v2.o= t-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, = #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, #ot-sdk-cookie-policy-v2.= ot-sdk-cookie-policy #cookie-policy-description { color: rgb(105, 105, 105)= ; } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { color: rgb(105, 105, 105= ); } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group {= color: rgb(105, 105, 105); } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { color:= rgb(105, 105, 105); } #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th { background-color: = rgb(248, 248, 248); } .ot-floating-button__front { background-image: url("https://cdn.cookielaw.o= rg/logos/static/ot_persistent_cookie_icon.png"); } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-431184ed-a6fd-4dd2-9bef-ddd5cd298ca0@mhtml.blink @charset "utf-8"; =0A ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: https://cdn.sstatic.net/Shared/stacks.css?v=619122b796ae @charset "utf-8"; html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, b= lockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, i= mg, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i= , center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, cap= tion, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, emb= ed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, se= ction, summary, time, mark, audio, video { margin: 0px; padding: 0px; borde= r: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; f= ont-stretch: inherit; line-height: inherit; font-family: inherit; font-opti= cal-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font= -feature-settings: inherit; font-variation-settings: inherit; font-size: 10= 0%; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, = nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote::before, blockquote::after, q::before, q::after { content: none;= } table { border-collapse: collapse; border-spacing: 0px; } sub, sup { font-size: 80%; line-height: 1; vertical-align: sub; } sup { vertical-align: super; } button { margin: 0px; } fieldset { border: 0px; min-width: 0px; padding: 0px; } .svg-icon, .svg-spot { vertical-align: bottom; } .svg-icon:not(.native) *, .svg-spot:not(.native) * { fill: currentcolor; } .is-disabled, .is-readonly, .has-success, .has-error, .has-warning { positi= on: relative; } .s-activity-indicator { --_ai-translucent: var(--translucent-secondary); --= _ai-bg: var(--theme-secondary-400); --_ai-fc: var(--white); background-colo= r: var(--_ai-bg); box-shadow: 0 0 0 var(--su-static4) var(--_ai-translucent= ); color: var(--_ai-fc); border-radius: 1000px; display: inline-block; font= -size: var(--fs-fine); font-weight: 700; line-height: 1.1; min-width: var(-= -su-static12); min-height: var(--su-static12); padding: var(--su2) var(--su= 4); text-transform: uppercase; } body.theme-highcontrast .s-activity-indicator { --_ai-bg: var(--theme-secon= dary-500); } .s-activity-indicator.s-activity-indicator__danger { --_ai-bg: var(--red-40= 0); --_ai-translucent: var(--translucent-error); } body.theme-highcontrast .s-activity-indicator.s-activity-indicator__danger = { --_ai-bg: var(--red-500); } .s-activity-indicator.s-activity-indicator__success { --_ai-bg: var(--green= -400); --_ai-translucent: var(--translucent-success); } body.theme-highcontrast .s-activity-indicator.s-activity-indicator__success= { --_ai-bg: var(--green-500); } .s-activity-indicator.s-activity-indicator__warning { --_ai-bg: var(--yello= w-400); --_ai-fc: var(--_black-static); --_ai-translucent: var(--translucen= t-warning); } body.theme-highcontrast .s-activity-indicator.s-activity-indicator__warning= { --_ai-bg: var(--yellow-500); --_ai-fc: var(--white); } .s-anchors.s-anchors__underlined a:not(.s-link), .s-anchors.s-anchors__unde= rlined .s-btn.s-btn__link { text-decoration: underline; } .s-anchors.s-anchors__danger, .s-anchors.s-anchors__grayscale, .s-anchors.s= -anchors__inherit, .s-anchors.s-anchors__muted { --_an-a-fc-hover-visited: = var(--_an-a-fc-hover); } .s-anchors.s-anchors__danger { --_an-a-fc: var(--red-400); --_an-a-fc-hover= : var(--red-500); --_an-a-fc-visited: var(--red-600); } .s-anchors.s-anchors__default { --_an-a-fc: var(--theme-link-color, var(--t= heme-secondary-400)); --_an-a-fc-hover: var(--theme-link-color-hover, var(-= -theme-secondary-500)); --_an-a-fc-visited: var(--theme-link-color-visited,= var(--purple-500)); --_an-a-fc-hover-visited: var(--theme-link-color-hover= , var(--purple-600)); } .s-anchors.s-anchors__grayscale { --_an-a-fc: var(--black-500); --_an-a-fc-= hover: var(--black-600); --_an-a-fc-visited: var(--black-400); } .s-anchors.s-anchors__inherit { --_an-a-fc: inherit; --_an-a-fc-hover: inhe= rit; --_an-a-fc-visited: inherit; } .s-anchors.s-anchors__muted { --_an-a-fc: var(--black-400); --_an-a-fc-hove= r: var(--black-500); --_an-a-fc-visited: var(--black-600); } .s-anchors.s-anchors__danger a:not(.s-link), .s-anchors.s-anchors__default = a:not(.s-link), .s-anchors.s-anchors__grayscale a:not(.s-link), .s-anchors.= s-anchors__inherit a:not(.s-link), .s-anchors.s-anchors__muted a:not(.s-lin= k), .s-anchors.s-anchors__danger .s-btn.s-btn__link, .s-anchors.s-anchors__= default .s-btn.s-btn__link, .s-anchors.s-anchors__grayscale .s-btn.s-btn__l= ink, .s-anchors.s-anchors__inherit .s-btn.s-btn__link, .s-anchors.s-anchors= __muted .s-btn.s-btn__link { color: var(--_an-a-fc, inherit); } .s-anchors.s-anchors__danger a:not(.s-link):active, .s-anchors.s-anchors__d= efault a:not(.s-link):active, .s-anchors.s-anchors__grayscale a:not(.s-link= ):active, .s-anchors.s-anchors__inherit a:not(.s-link):active, .s-anchors.s= -anchors__muted a:not(.s-link):active, .s-anchors.s-anchors__danger .s-btn.= s-btn__link:active, .s-anchors.s-anchors__default .s-btn.s-btn__link:active= , .s-anchors.s-anchors__grayscale .s-btn.s-btn__link:active, .s-anchors.s-a= nchors__inherit .s-btn.s-btn__link:active, .s-anchors.s-anchors__muted .s-b= tn.s-btn__link:active, .s-anchors.s-anchors__danger a:not(.s-link):hover, .= s-anchors.s-anchors__default a:not(.s-link):hover, .s-anchors.s-anchors__gr= ayscale a:not(.s-link):hover, .s-anchors.s-anchors__inherit a:not(.s-link):= hover, .s-anchors.s-anchors__muted a:not(.s-link):hover, .s-anchors.s-ancho= rs__danger .s-btn.s-btn__link:hover, .s-anchors.s-anchors__default .s-btn.s= -btn__link:hover, .s-anchors.s-anchors__grayscale .s-btn.s-btn__link:hover,= .s-anchors.s-anchors__inherit .s-btn.s-btn__link:hover, .s-anchors.s-ancho= rs__muted .s-btn.s-btn__link:hover { color: var(--_an-a-fc-hover); } .s-anchors.s-anchors__danger a:not(.s-link):visited, .s-anchors.s-anchors__= default a:not(.s-link):visited, .s-anchors.s-anchors__grayscale a:not(.s-li= nk):visited, .s-anchors.s-anchors__inherit a:not(.s-link):visited, .s-ancho= rs.s-anchors__muted a:not(.s-link):visited { color: var(--_an-a-fc-visited,= inherit); } .s-anchors.s-anchors__danger a:not(.s-link):visited:hover, .s-anchors.s-anc= hors__default a:not(.s-link):visited:hover, .s-anchors.s-anchors__grayscale= a:not(.s-link):visited:hover, .s-anchors.s-anchors__inherit a:not(.s-link)= :visited:hover, .s-anchors.s-anchors__muted a:not(.s-link):visited:hover { = color: var(--_an-a-fc-hover-visited, inherit); } .s-avatar { --_av-size: var(--su-static16); --_av-bg: var(--_white-static);= --_av-br: var(--br-sm); --_av-fs-letter: calc(var(--su-static12) - var(--s= u-static1)); --_av-scale-badge: 1; background-color: var(--_av-bg); border-= radius: var(--_av-br); height: var(--_av-size); width: var(--_av-size); bac= kground-repeat: no-repeat; background-size: 100%; display: inline-block; po= sition: relative; vertical-align: bottom; } body.theme-highcontrast .s-avatar { background-color: var(--black); box-sha= dow: 0 0 0 var(--su-static1) var(--black); color: var(--white); } body.theme-highcontrast .s-avatar .s-avatar--letter { color: var(--white); = } .s-avatar.s-avatar__32, .s-avatar.s-avatar__48 { --_av-br: var(--br-md); } .s-avatar.s-avatar__96, .s-avatar.s-avatar__128 { --_av-br: calc(var(--br-l= g) + var(--br-sm)); --_av-scale-badge: 3; } .s-avatar.s-avatar__24 { --_av-size: var(--su-static24); --_av-fs-letter: v= ar(--su-static16); --_av-scale-badge: 1.1; } .s-avatar.s-avatar__32 { --_av-size: var(--su-static32); --_av-fs-letter: c= alc(var(--su-static24) - var(--su-static2)); --_av-scale-badge: 1.3; } .s-avatar.s-avatar__48 { --_av-size: var(--su-static48); --_av-fs-letter: c= alc(var(--su-static32) + var(--su-static2)); --_av-scale-badge: 1.6; } .s-avatar.s-avatar__64 { --_av-size: var(--su-static64); --_av-br: var(--br= -lg); --_av-fs-letter: calc(var(--su-static48) - var(--su-static4)); --_av-= scale-badge: 2.4; } .s-avatar.s-avatar__96 { --_av-size: var(--su-static96); --_av-fs-letter: c= alc(var(--su-static64) + var(--su-static2)); } .s-avatar.s-avatar__128 { --_av-size: var(--su-static128); --_av-fs-letter:= calc(var(--su-static96) - var(--su-static8)); } .s-avatar .s-avatar--badge { bottom: calc(var(--su-static4) * -1); position= : absolute; right: calc(var(--su-static4) * -1); transform: scale(var(--_av= -scale-badge)); } .s-avatar .s-avatar--image { border-radius: var(--_av-br); display: block; = height: var(--_av-size); width: var(--_av-size); } .s-avatar .s-avatar--letter { color: var(--_white-static); display: block; = font-size: var(--_av-fs-letter); font-weight: bold; line-height: 1.4; text-= align: center; text-transform: uppercase; user-select: none; } .s-award-bling { --_ab-before-bg: unset; align-items: center; color: inheri= t; display: flex; } .s-award-bling.s-award-bling__gold { --_ab-before-bg: var(--gold-300); } .s-award-bling.s-award-bling__silver { --_ab-before-bg: var(--silver-300); = } .s-award-bling.s-award-bling__bronze { --_ab-before-bg: var(--bronze-300); = } .s-award-bling::before { background-color: var(--_ab-before-bg); border-rad= ius: 100%; content: ""; margin-right: var(--su4); height: var(--su8); width= : var(--su8); } .s-badge { --_ba-as: unset; --_ba-bc: var(--bc-medium); --_ba-bg: var(--bla= ck-150); --_ba-fc: var(--black-500); --_ba-fs: var(--fs-caption); --_ba-fw:= normal; --_ba-g: .3em; --_ba-lh: 2; --_ba-px: var(--su6); --_ba-py: 0; --_= ba-tt: unset; --_ba-wmn: 0; align-self: var(--_ba-as); background-color: va= r(--_ba-bg); border: var(--su-static1) solid var(--_ba-bc); color: var(--_b= a-fc); font-size: var(--_ba-fs); gap: var(--_ba-g); font-weight: var(--_ba-= fw); line-height: var(--_ba-lh); min-width: var(--_ba-wmn); padding: var(--= _ba-py) var(--_ba-px); text-transform: var(--_ba-tt); align-items: center; = border-radius: var(--br-sm); display: inline-flex; justify-content: center;= text-decoration: none; vertical-align: middle; white-space: nowrap; } body.theme-highcontrast .s-badge__gold, body.theme-highcontrast .s-badge__s= ilver, body.theme-highcontrast .s-badge__bronze, body.theme-highcontrast .s= -badge__rep, body.theme-highcontrast .s-badge__rep-down, body.theme-highcon= trast .s-badge__votes:not(.s-badge__answered), body.theme-highcontrast .s-b= adge__admin, body.theme-highcontrast .s-badge__moderator, body.theme-highco= ntrast .s-badge__staff { --_ba-bc: currentColor; } body.theme-highcontrast .s-badge__new { --_ba-fc: var(--purple-600); } .s-badge.s-badge__xs, .s-badge.s-badge__sm { --_ba-as: flex-start; --_ba-fs= : var(--fs-fine); } .s-badge.s-badge__xs { --_ba-lh: 1.5; --_ba-px: var(--su2); --_ba-wmn: calc= (var(--su-static16) + var(--su-static2)); } .s-badge.s-badge__sm { --_ba-lh: 1.8; --_ba-px: var(--su4); --_ba-wmn: calc= (var(--su-static16) + var(--su-static2)); } .s-badge.s-badge__gold, .s-badge.s-badge__silver, .s-badge.s-badge__bronze = { --_ba-fc: var(--black-500); } .s-badge.s-badge__gold { --_ba-bc: var(--gold-300); --_ba-bg: var(--gold-10= 0); } .s-badge.s-badge__silver { --_ba-bc: var(--silver-300); --_ba-bg: var(--sil= ver-100); } .s-badge.s-badge__bronze { --_ba-bc: var(--bronze-300); --_ba-bg: var(--bro= nze-100); } .s-badge.s-badge__answered, .s-badge.s-badge__bounty, .s-badge.s-badge__imp= ortant { --_ba-bc: transparent; --_ba-fc: var(--white); } .s-badge.s-badge__rep, .s-badge.s-badge__rep-down, .s-badge.s-badge__votes:= not(.s-badge__answered) { --_ba-bg: var(--white); } .s-badge.s-badge__answered { --_ba-bg: var(--green-400); } .s-badge.s-badge__bounty { --_ba-bg: var(--blue-400); } .s-badge.s-badge__important { --_ba-bg: var(--red-400); } .s-badge.s-badge__rep { --_ba-bc: var(--green-300); --_ba-fc: var(--green-4= 00); } .s-badge.s-badge__rep-down { --_ba-bc: var(--red-300); --_ba-fc: var(--red-= 400); } .s-badge.s-badge__votes:not(.s-badge__answered) { --_ba-bc: var(--black-250= ); --_ba-fc: var(--black-500); } .s-badge.s-badge__admin { --_ba-bc: var(--theme-primary-200); --_ba-bg: var= (--theme-primary-100); --_ba-fc: var(--theme-primary-500); } .s-badge.s-badge__moderator { --_ba-bc: var(--theme-secondary-300); --_ba-b= g: var(--theme-secondary-200); --_ba-fc: var(--theme-secondary-600); --_ba-= g: calc(var(--su-static4) - var(--su-static1)); --_ba-before-h: calc(var(--= su-static16) - var(--su-static2)); --_ba-before-icon: url("data:image/svg+x= ml;,%3Csvg width=3D'12' height=3D'14' xmlns=3D'http://www.w3.org/2000/svg'%= 3E%3Cpath d=3D'M5.528.746c.257-.329.675-.327.93 0l4.42 5.66c.258.329.257.86= 4 0 1.192l-4.42 5.66c-.256.328-.674.327-.93 0l-4.42-5.66c-.257-.329-.256-.8= 65 0-1.192l4.42-5.66z' fill=3D'%23fff'/%3E%3C/svg%3E"); --_ba-before-mt: ca= lc(var(--su-static1) * -1); --_ba-before-w: var(--su-static12); } .s-badge.s-badge__moderator.s-badge__xs { --_ba-before-h: calc(var(--su-sta= tic8) + var(--su-static1)); --_ba-before-icon: url("data:image/svg+xml;,%3C= svg width=3D'7' height=3D'9' xmlns=3D'http://www.w3.org/2000/svg'%3E%3Cpath= d=3D'M3 .246c.3-.329.701-.327 1 0L6.776 4c.3.329.298.672 0 1L4 8.75c-.299.= 329-.702.327-1 0L.224 5c-.284-.324-.285-.675 0-1L3 .246z' fill=3D'%23fff'/%= 3E%3C/svg%3E"); --_ba-before-mt: 0; --_ba-before-w: calc(var(--su-static8) = - var(--su-static1)); } .s-badge.s-badge__moderator.s-badge__sm { --_ba-g: var(--su-static2); --_ba= -before-h: calc(var(--su-static12) - var(--su-static1)); --_ba-before-icon:= url("data:image/svg+xml;,%3Csvg width=3D'9' height=3D'11' xmlns=3D'http://= www.w3.org/2000/svg'%3E%3Cpath d=3D'M3.55.246c.257-.329.647-.327.903 0l3.36= 4.66c.256.329.256.864 0 1.192L4.45 10.75c-.257.329-.644.327-.9 0L.192 6.09= 8c-.256-.329-.256-.865 0-1.192L3.55.246z' fill=3D'%23fff'/%3E%3C/svg%3E"); = --_ba-before-mt: 0; --_ba-before-w: calc(var(--su-static8) + var(--su-stati= c1)); } .s-badge.s-badge__moderator::before { height: var(--_ba-before-h); margin-t= op: var(--_ba-before-mt); width: var(--_ba-before-w); content: ""; display:= inline-block; background-color: currentcolor; mask-image: ; -webkit-mask-p= osition-x: ; -webkit-mask-position-y: ; mask-repeat: ; mask-origin: ; mask-= clip: ; mask-composite: ; mask-mode: ; mask-size: contain; } .s-badge.s-badge__staff { --_ba-bc: var(--orange-300); --_ba-bg: var(--oran= ge-200); --_ba-fc: var(--orange-600); } .s-badge.s-badge__danger.s-badge__filled, .s-badge.s-badge__muted.s-badge__= filled { --_ba-bc: transparent; } .s-badge.s-badge__danger { --_ba-bc: var(--red-300); --_ba-bg: var(--red-20= 0); --_ba-fc: var(--red-600); } .s-badge.s-badge__danger.s-badge__filled { --_ba-bg: var(--red-400); --_ba-= fc: var(--white); } .s-badge.s-badge__info { --_ba-bc: var(--blue-300); --_ba-bg: var(--blue-20= 0); --_ba-fc: var(--blue-600); } .s-badge.s-badge__warning { --_ba-bc: var(--yellow-300); --_ba-bg: var(--ye= llow-200); --_ba-fc: var(--yellow-600); } .s-badge.s-badge__muted { --_ba-bc: var(--black-300); --_ba-bg: var(--black= -200); --_ba-fc: var(--black-500); } .s-badge.s-badge__muted.s-badge__filled { --_ba-bg: var(--black-500); --_ba= -fc: var(--white); } .s-badge.s-badge__new { --_ba-bc: var(--_ba-bg); --_ba-bg: var(--purple-100= ); --_ba-fc: var(--purple-400); --_ba-fw: bold; --_ba-tt: uppercase; } .s-badge--image, .s-badge .s-badge--image { align-self: center; display: in= line-flex; margin-right: var(--su1); margin-left: calc((var(--su4) + var(--= su1)) * -1); } a.s-badge:hover { text-decoration: none; } .s-banner { --_no-ty-offset: 0; --_no-ty: var(--theme-topbar-height, calc(v= ar(--su-static48) + var(--su-static8))); --_no-bc: var(--black-225); --_no-= bg: var(--black-100); --_no-fc: var(--black-500); --_no-btn-bg-active: var(= --black-250); --_no-btn-bg-focus: var(--black-225); --_no-btn-fc: var(--_no= -fc); --_no-code-bc: var(--black-300); --_no-code-bg: var(--black-200); --_= no-code-fc: var(--_no-fc); background: var(--_no-bg); border-color: var(--_= no-bc); color: var(--_no-fc); border-style: solid; font-size: var(--fs-body= 1); border-width: 0 0 var(--su-static1); inset: 0px 0px auto; padding: var(= --su12); position: fixed; transform: translate3d(0, calc(var(--_no-ty) * va= r(--_no-ty-offset)), 0); width: 100%; z-index: calc(var(--zi-navigation-fix= ed) - 1); } @media (prefers-color-scheme: dark) { body.theme-system .s-banner { --_no-bc: var(--_no-bg); } } body.theme-dark .s-banner, .theme-dark__forced .s-banner, body.theme-system= .theme-dark__forced .s-banner { --_no-bc: var(--_no-bg); } body.theme-highcontrast .s-banner, body.theme-highcontrast .s-banner.s-bann= er__danger, body.theme-highcontrast .s-banner.s-banner__info, body.theme-hi= ghcontrast .s-banner.s-banner__success, body.theme-highcontrast .s-banner.s= -banner__warning { --_no-code-bc: var(--black-400); --_no-code-bg: var(--wh= ite); --_no-code-fc: var(--black); } body.theme-highcontrast .s-banner.s-banner__important, body.theme-highcontr= ast .s-banner.s-banner__danger.s-banner__important, body.theme-highcontrast= .s-banner.s-banner__info.s-banner__important, body.theme-highcontrast .s-b= anner.s-banner__success.s-banner__important, body.theme-highcontrast .s-ban= ner.s-banner__warning.s-banner__important { --_no-code-bc: var(--black-200)= ; --_no-code-bg: var(--black); --_no-code-fc: var(--white); } .s-banner__important:not(.s-banner__danger):not(.s-banner__info):not(.s-ban= ner__success):not(.s-banner__warning) { --_no-bc: var(--_no-bg); --_no-bg: = var(--black-500); --_no-fc: var(--white); --_no-btn-bg-focus: var(--black-6= 00); --_no-btn-bg-active: var(--black-600); --_no-btn-fc: var(--_no-fc); --= _no-code-bc: var(--black-300); --_no-code-bg: var(--black-600); } .s-banner__danger:not(.s-banner__important) { --_no-bc: var(--red-300); --_= no-bg: var(--red-100); --_no-btn-bg-active: var(--red-200); --_no-btn-bg-fo= cus: var(--red-200); --_no-btn-fc: var(--red-500); --_no-code-bc: var(--red= -300); --_no-code-bg: var(--red-200); } .s-banner__danger.s-banner__important { --_no-bc: var(--_no-bg); --_no-bg: = var(--red-400); --_no-fc: var(--white); --_no-btn-bg-active: var(--red-500)= ; --_no-btn-bg-focus: var(--red-500); --_no-btn-fc: var(--red-100); --_no-c= ode-bc: var(--red-300); --_no-code-bg: var(--red-500); } body.theme-highcontrast .s-banner__danger.s-banner__important { --_no-bg: v= ar(--red-500); } .s-banner__info:not(.s-banner__important) { --_no-bc: var(--theme-secondary= -300); --_no-bg: var(--theme-secondary-100); --_no-btn-bg-active: var(--the= me-secondary-200); --_no-btn-bg-focus: var(--theme-secondary-200); --_no-bt= n-fc: var(--theme-secondary-500); --_no-code-bc: var(--theme-secondary-300)= ; --_no-code-bg: var(--theme-secondary-200); } .s-banner__info.s-banner__important { --_no-bc: var(--_no-bg); --_no-bg: va= r(--theme-secondary-400); --_no-fc: var(--white); --_no-btn-bg-active: var(= --theme-secondary-500); --_no-btn-bg-focus: var(--theme-secondary-500); --_= no-btn-fc: var(--theme-secondary-100); --_no-code-bc: var(--theme-secondary= -300); --_no-code-bg: var(--theme-secondary-500); } body.theme-highcontrast .s-banner__info.s-banner__important { --_no-bg: var= (--theme-secondary-500); } .s-banner__success:not(.s-banner__important) { --_no-bc: var(--green-300); = --_no-bg: var(--green-100); --_no-btn-bg-active: var(--green-200); --_no-bt= n-bg-focus: var(--green-200); --_no-btn-fc: var(--green-500); --_no-code-bc= : var(--green-300); --_no-code-bg: var(--green-200); } .s-banner__success.s-banner__important { --_no-bc: var(--_no-bg); --_no-bg:= var(--green-400); --_no-fc: var(--white); --_no-btn-bg-active: var(--green= -500); --_no-btn-bg-focus: var(--green-500); --_no-btn-fc: var(--green-100)= ; --_no-code-bc: var(--green-300); --_no-code-bg: var(--green-500); } body.theme-highcontrast .s-banner__success.s-banner__important { --_no-bg: = var(--green-500); } .s-banner__warning:not(.s-banner__important) { --_no-bc: var(--yellow-300);= --_no-bg: var(--yellow-100); --_no-btn-bg-active: var(--yellow-200); --_no= -btn-bg-focus: var(--yellow-200); --_no-code-bc: var(--yellow-300); --_no-c= ode-bg: var(--yellow-200); --_no-btn-fc: var(--yellow-600); } .s-banner__warning.s-banner__important { --_no-bc: var(--_no-bg); --_no-bg:= var(--yellow-400); --_no-fc: var(--black); --_no-btn-fc: var(--_no-fc); --= _no-btn-bg-active: var(--yellow-300); --_no-btn-bg-focus: var(--yellow-300)= ; --_no-code-bc: var(--yellow-500); --_no-code-bg: var(--yellow-300); } @media (prefers-color-scheme: dark) { body.theme-system .s-banner__warning.s-banner__important { --_no-fc: var(= --white); --_no-code-bc: var(--yellow-300); --_no-code-bg: var(--yellow-500= ); } } body.theme-dark .s-banner__warning.s-banner__important, .theme-dark__forced= .s-banner__warning.s-banner__important, body.theme-system .theme-dark__for= ced .s-banner__warning.s-banner__important { --_no-fc: var(--white); --_no-= code-bc: var(--yellow-300); --_no-code-bg: var(--yellow-500); } body.theme-highcontrast .s-banner__warning.s-banner__important { --_no-bg: = var(--yellow-500); --_no-fc: var(--white); --_no-btn-bg-active: transparent= ; --_no-btn-bg-focus: transparent; } .s-banner code { background-color: var(--_no-code-bg); color: var(--_no-cod= e-fc); outline: var(--su-static1) solid var(--_no-code-bc); border-radius: = var(--br-sm); padding-left: var(--su2); padding-right: var(--su2); } .s-banner .s-banner--btn { padding: var(--su8); color: var(--_no-btn-fc, in= herit) !important; } .s-banner .s-banner--btn:active { background-color: var(--_no-btn-bg-active= , inherit) !important; } .s-banner .s-banner--btn:focus-visible, .s-banner .s-banner--btn:hover, .s-= banner .s-banner--btn.focus-inset-bordered { background-color: var(--_no-bt= n-bg-focus, inherit) !important; } .s-banner[aria-hidden=3D"true"] { --_no-ty-offset: -1; opacity: 0; visibili= ty: hidden; } .s-banner[aria-hidden=3D"false"] { --_no-ty-offset: 1; opacity: 1; visibili= ty: visible; } .s-banner[aria-hidden=3D"false"].is-pinned { --_no-ty-offset: 0; z-index: c= alc(var(--zi-navigation-fixed) + 1); } .s-banner__body-pt { padding-top: 93px; } .s-banner .s-banner--container { margin: 0px auto; max-width: calc(var(--s-= step) * 10); position: relative; width: 100%; } a.s-block-link, .s-block-link { --_bl-bs-color: var(--theme-primary); --_bl= -bg: transparent; --_bl-fc: var(--black-500); --_bl-fc-hover: var(--black-6= 00); --_bl-fc-visited: var(--_bl-fc); background-color: var(--_bl-bg); colo= r: var(--_bl-fc); border-radius: 0px; border: none; cursor: pointer; displa= y: block; font-family: inherit; line-height: inherit; padding: var(--su6) v= ar(--su12); text-align: left; width: 100%; } @media (prefers-color-scheme: dark) { body.theme-system a.s-block-link.is-selected, body.theme-system .s-block-= link.is-selected { --_bl-bg: var(--black-100); } } body.theme-dark a.s-block-link.is-selected, body.theme-dark .s-block-link.i= s-selected, .theme-dark__forced a.s-block-link.is-selected, .theme-dark__fo= rced .s-block-link.is-selected, body.theme-system .theme-dark__forced a.s-b= lock-link.is-selected, body.theme-system .theme-dark__forced .s-block-link.= is-selected { --_bl-bg: var(--black-100); } a.s-block-link.is-selected, .s-block-link.is-selected { --_bl-bg: var(--bla= ck-150); --_bl-fc: var(--black-600); font-weight: bold; } a.s-block-linka.s-block-link__left.is-selected:not(:focus-visible):not(.foc= us-inset), a.s-block-link.s-block-link__left.is-selected:not(:focus-visible= ):not(.focus-inset), .s-block-linka.s-block-link__left.is-selected:not(:foc= us-visible):not(.focus-inset), .s-block-link.s-block-link__left.is-selected= :not(:focus-visible):not(.focus-inset), a.s-block-linka.s-block-link__right= .is-selected:not(:focus-visible):not(.focus-inset), a.s-block-link.s-block-= link__right.is-selected:not(:focus-visible):not(.focus-inset), .s-block-lin= ka.s-block-link__right.is-selected:not(:focus-visible):not(.focus-inset), .= s-block-link.s-block-link__right.is-selected:not(:focus-visible):not(.focus= -inset) { box-shadow: inset var(--_li-block-bs-offset-x, 3px) 0 0 var(--_bl= -bs-color); } a.s-block-linka.s-block-link__right.is-selected, a.s-block-link.s-block-lin= k__right.is-selected, .s-block-linka.s-block-link__right.is-selected, .s-bl= ock-link.s-block-link__right.is-selected { --_li-block-bs-offset-x: calc(va= r(--su-static1) - var(--su-static4)); } a.s-block-linka.s-block-link__danger, a.s-block-link.s-block-link__danger, = .s-block-linka.s-block-link__danger, .s-block-link.s-block-link__danger { -= -_bl-fc: var(--red-400); --_bl-fc-hover: var(--red-500); --_bl-fc-visited: = var(--red-500); } a.s-block-link:active, .s-block-link:active, a.s-block-link:hover, .s-block= -link:hover, a.s-block-link:active:visited, .s-block-link:active:visited, a= .s-block-link:hover:visited, .s-block-link:hover:visited { color: var(--_bl= -fc-hover); } a.s-block-link:visited, .s-block-link:visited { color: var(--_bl-fc-visited= ); } a.s-block-link:focus-visible, .s-block-link:focus-visible { box-shadow: ins= et 0 0 0 var(--su-static2) var(--focus-theme),inset 0 0 0 var(--su-static4)= var(--focus-neutral); outline: var(--su-static2) solid transparent !import= ant; } a.s-block-link:focus-visible, .s-block-link:focus-visible, a.s-block-link.f= ocus-inset, .s-block-link.focus-inset { border-radius: var(--br-sm); } .s-breadcrumbs { --_br-divider-px: var(--su4); --_br-link-fc: var(--fc-ligh= t); align-items: flex-start; color: var(--black-300); display: flex; flex-w= rap: wrap; font-size: var(--fs-caption); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-breadcrumbs { --_br= -divider-px: var(--su2); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-breadcrumbs { --_br-divid= er-px: var(--su2); } } .s-breadcrumbs .s-breadcrumbs--divider { margin-left: var(--_br-divider-px)= ; margin-right: var(--_br-divider-px); } body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider { color: var= (--fc-light); } .s-breadcrumbs .s-breadcrumbs--item { align-items: center; display: flex; f= lex-wrap: nowrap; margin-bottom: var(--su2); margin-top: var(--su2); } .s-breadcrumbs .s-breadcrumbs--link { color: var(--_br-link-fc); } .s-breadcrumbs .s-breadcrumbs--link:hover { --_br-link-fc: var(--fc-medium)= ; } .s-btn { --_bu-baw: var(--su-static1); --_bu-bc: transparent; --_bu-br: var= (--br-md); --_bu-fc: var(--theme-button-color, var(--theme-secondary-400));= --_bu-fs: var(--fs-body1); --_bu-p: .8em; --_bu-bc-active: var(--_bu-bc); = --_bu-bg-active: var(--theme-button-active-background-color, var(--theme-se= condary-300)); --_bu-fc-active: var(--theme-button-hover-color, var(--theme= -secondary-500)); --_bu-bc-hover: var(--_bu-bc); --_bu-bg-hover: var(--them= e-button-hover-background-color, var(--theme-secondary-200)); --_bu-fc-hove= r: var(--theme-button-hover-color, var(--theme-secondary-500)); --_bu-bg-se= lected: var(--theme-button-selected-background-color, var(--theme-secondary= -300)); --_bu-fc-selected: var(--theme-button-selected-color, var(--theme-s= econdary-600)); --_bu-filled-bc: transparent; --_bu-filled-bg: var(--theme-= button-primary-background-color, var(--theme-secondary-400)); --_bu-filled-= fc: var(--theme-button-primary-color, var(--white)); --_bu-filled-bc-select= ed: transparent; --_bu-filled-bg-selected: var(--theme-button-primary-selec= ted-background-color, var(--theme-secondary-500)); --_bu-filled-fc-selected= : var(--theme-button-primary-selected-color, var(--white)); --_bu-filled-bc= -active: var(--_bu-filled-bc); --_bu-filled-bg-active: var(--theme-button-p= rimary-active-background-color, var(--theme-secondary-600)); --_bu-filled-f= c-active: var(--theme-button-primary-hover-color, var(--white)); --_bu-fill= ed-bc-hover: var(--_bu-filled-bc); --_bu-filled-bg-hover: var(--theme-butto= n-primary-hover-background-color, var(--theme-secondary-500)); --_bu-filled= -fc-hover: var(--theme-button-primary-hover-color, var(--white)); --_bu-out= lined-bc: var(--theme-button-outlined-border-color, var(--theme-secondary-4= 00)); --_bu-outlined-bg: var(--theme-button-outlined-background-color); --_= bg-outlined-fc: var(--theme-button-outlined-color, var(--theme-secondary-40= 0)); --_bu-outlined-bc-selected: var(--theme-button-outlined-selected-borde= r-color, var(--theme-secondary-400)); --_bu-outlined-bg-selected: var(--the= me-button-selected-background-color, var(--theme-secondary-300)); --_bu-out= lined-fc-selected: var(--theme-button-selected-color, var(--theme-secondary= -600)); --_bu-badge-o: .5; --_bu-dropdown-bw: var(--su-static4); --_bu-numb= er-fc: var(--white); --_bu-number-fc-filled: var(--theme-button-primary-num= ber-color, var(--theme-secondary-600)); --_bu-number-fc-selected: var(--whi= te); background-color: var(--_bu-bg, inherit); border: var(--_bu-baw) solid= var(--_bu-bc); border-radius: var(--_bu-br); box-shadow: none; color: var(= --_bu-fc); font-size: var(--_bu-fs); padding: var(--_bu-py, var(--_bu-p)) v= ar(--_bu-px, var(--_bu-p)); cursor: pointer; display: inline-block; font-fa= mily: inherit; font-weight: normal; line-height: var(--lh-sm); position: re= lative; outline: none; text-align: center; text-decoration: none; user-sele= ct: none; } body.theme-highcontrast .s-btn { --_bu-bc: currentColor; --_bu-outlined-bc:= var(--_bu-bc); --_bu-bc-selected: var(--_bu-bc); --_bu-fc-selected: var(--= white); --_bu-outlined-fc-selected: var(--white); --_bu-badge-o: .8; --_bu-= number-fc-selected: var(--theme-button-primary-number-color, var(--theme-se= condary-600)); } fieldset[disabled] .s-btn, .s-btn[disabled], .s-btn[aria-disabled=3D"true"]= { opacity: var(--_o-disabled-static); pointer-events: none; text-decoratio= n: none; } button .s-btn, button[type=3D"submit"] .s-btn, button[type=3D"reset"] .s-bt= n { appearance: button; } .s-btn.grid { display: flex; } .s-btn.is-loading { padding-left: 2.2em; } .s-btn.is-loading .svg-icon:first-child { margin-left: calc((var(--su-stati= c24) - var(--su-static1)) * -1); opacity: 0; } .s-btn.is-selected, .s-btn--radio:checked + .s-btn { background-color: var(= --_bu-bg-selected); border-color: var(--_bu-bc-selected, transparent); colo= r: var(--_bu-fc-selected); } .s-btn.is-selected .s-btn--number, .s-btn--radio:checked + .s-btn .s-btn--n= umber { color: var(--_bu-number-fc-selected); } .s-btn.is-selected.s-btn__filled, .s-btn--radio:checked + .s-btn.s-btn__fil= led { border-color: var(--_bu-filled-bc-selected); background-color: var(--= _bu-filled-bg-selected); color: var(--_bu-filled-fc-selected); } .s-btn.is-selected.s-btn__outlined, .s-btn--radio:checked + .s-btn.s-btn__o= utlined { border-color: var(--_bu-outlined-bc-selected); background-color: = var(--_bu-outlined-bg-selected); color: var(--_bu-outlined-fc-selected); } body.theme-highcontrast .s-btn.is-selected.s-btn__outlined.s-btn__muted, bo= dy.theme-highcontrast .s-btn--radio:checked + .s-btn.s-btn__outlined.s-btn_= _muted { --_bu-outlined-bc-selected: var(--_bu-filled-bc-selected); --_bu-o= utlined-bg-selected: var(--_bu-filled-bg-selected); --_bu-outlined-fc-selec= ted: var(--_bu-filled-fc-selected); --_bu-number-fc-selected: var(--_bu-fil= led-bg-selected); } .s-btn.s-btn__filled { border-color: var(--_bu-filled-bc); background-color= : var(--_bu-filled-bg); color: var(--_bu-filled-fc); } .s-btn.s-btn__filled .s-btn--number { color: var(--_bu-number-fc-filled); } .s-btn.s-btn__outlined { border-color: var(--_bu-outlined-bc); background-c= olor: var(--_bu-outlined-bg, inherit); } .s-btn.s-btn__link, .s-btn.s-btn__unset { --_bu-baw: 0; --_bu-br: 0; --_bu-= p: 0; } .s-btn.s-btn__link:focus, .s-btn.s-btn__unset:focus, .s-btn.s-btn__link:foc= us-visible, .s-btn.s-btn__unset:focus-visible { outline-style: auto; } .s-btn.s-btn__link { --_li-fc: var(--theme-link-color, var(--theme-secondar= y-400)); --_li-fc-hover: var(--theme-link-color-hover, var(--theme-secondar= y-500)); --_li-fc-visited: var(--theme-link-color-visited, var(--purple-500= )); --_li-fc-hover-visited: var(--theme-link-color-visited, var(--purple-60= 0)); color: var(--_li-fc); cursor: pointer; text-decoration: none; user-sel= ect: auto; display: inline; font: inherit; outline: revert; text-align: inh= erit; } .s-btn.s-btn__link, .s-btn.s-btn__link:hover, .s-btn.s-btn__link:active, .s= -btn.s-btn__link:focus, .s-btn.s-btn__link[disabled], .s-btn.s-btn__link[ar= ia-disabled=3D"true"] { --_bu-bg: none; } .s-btn.s-btn__link.s-btn__dropdown { padding-right: 0.9em; } body.theme-highcontrast .s-btn.s-btn__link { text-decoration: underline; } .s-btn.s-btn__link.s-link__dropdown { padding-right: 0.9em; position: relat= ive; } .s-btn.s-btn__link.s-link__dropdown::after { border-right-width: ; border-l= eft-width: ; border-bottom: 0px solid currentcolor; border-top-color: curre= ntcolor; border-right-color: transparent; border-left-color: transparent; b= order-top-style: solid; border-right-style: solid; border-left-style: solid= ; border-top-width: var(--su-static4); content: ""; pointer-events: none; p= osition: absolute; right: 0px; top: calc(50% - var(--su-static2)); z-index:= var(--zi-active); } .s-btn.s-btn__link.s-link__underlined { text-decoration: underline !importa= nt; } .s-btn.s-btn__link.s-link__visited { --_li-fc: var(--theme-link-color-visit= ed, var(--purple-500)); --_li-fc-hover: var(--theme-link-color-hover, var(-= -purple-600)); --_li-fc-visited: var(--theme-link-color-visited, var(--purp= le-500)); --_li-fc-hover-visited: var(--theme-link-color-visited, var(--pur= ple-600)); } .s-btn.s-btn__link.s-link__danger, .s-btn.s-btn__link.s-link__grayscale, .s= -btn.s-btn__link.s-link__inherit, .s-btn.s-btn__link.s-link__muted { --_li-= fc-hover-visited: var(--_li-fc-hover); } .s-btn.s-btn__link.s-link__danger { --_li-fc: var(--red-400); --_li-fc-hove= r: var(--red-500); --_li-fc-visited: var(--red-600); } .s-btn.s-btn__link.s-link__grayscale { --_li-fc: var(--black-500); --_li-fc= -hover: var(--black-600); --_li-fc-visited: var(--black-400); } .s-btn.s-btn__link.s-link__inherit { --_li-fc: inherit !important; --_li-fc= -hover: inherit !important; --_li-fc-visited: inherit !important; } .s-btn.s-btn__link.s-link__muted { --_li-fc: var(--black-400); --_li-fc-hov= er: var(--black-500); --_li-fc-visited: var(--black-600); } fieldset[disabled] .s-btn.s-btn__link { opacity: var(--_o-disabled-static);= pointer-events: none; box-shadow: none !important; } .s-btn.s-btn__link:active, .s-btn.s-btn__link:hover { --_li-fc: var(--_li-f= c-hover); } button.s-btn.s-btn__link { appearance: none; background: transparent; borde= r: 0px; font-family: inherit; line-height: inherit; padding: 0px; user-sele= ct: auto; } button.s-btn.s-btn__link:focus { outline: revert; } p .s-btn.s-btn__link { text-decoration: underline; } .s-btn.s-btn__unset { outline: initial; } .s-btn.s-btn__unset, .s-btn.s-btn__unset:hover, .s-btn.s-btn__unset:active,= .s-btn.s-btn__unset:focus { --_bu-bg: none; --_bu-fc: unset; cursor: defau= lt; font: unset; user-select: auto; } .s-btn.s-btn__dropdown { padding-right: calc(var(--_bu-px, var(--_bu-p)) * = 2.5); } .s-btn.s-btn__dropdown::after { border-color: currentcolor transparent; bor= der-style: solid; border-top-width: ; border-right-width: ; border-left-wid= th: ; border-bottom-width: 0px; content: ""; pointer-events: none; position= : absolute; right: var(--_bu-px, var(--_bu-p)); top: calc(50% - var(--su-st= atic2)); z-index: var(--zi-active); } .s-btn.s-btn__icon .svg-icon { vertical-align: baseline; margin-top: -0.3em= ; margin-bottom: -0.3em; transition: opacity 200ms var(--te-smooth); } .s-btn.s-btn__xs { --_bu-fs: var(--fs-fine); --_bu-dropdown-bw: calc(var(--= su-static4) - var(--su-static1)); --_bu-p: .6em; } .s-btn.s-btn__sm { --_bu-fs: var(--fs-caption); } .s-btn.s-btn__md { --_bu-fs: var(--fs-body3); --_bu-br: calc(var(--br-sm) += var(--su-static1)); --_bu-p: .7em; } body.theme-highcontrast .s-btn.s-btn__danger, body.theme-highcontrast .s-bt= n.s-btn__muted { --_bu-filled-bc: transparent; } .s-btn.s-btn__danger { --_bu-bg-active: var(--red-300); --_bu-bg-hover: var= (--red-200); --_bu-bg-selected: var(--red-300); --_bu-fc: var(--red-500); -= -_bu-fc-active: var(--_bu-fc); --_bu-fc-hover: var(--red-500); --_bu-fc-sel= ected: var(--red-600); --_bu-filled-bc: transparent; --_bu-filled-bc-select= ed: var(--_bu-filled-bc); --_bu-filled-bg: var(--red-400); --_bu-filled-bg-= active: var(--red-500); --_bu-filled-bg-hover: var(--red-500); --_bu-filled= -bg-selected: var(--red-600); --_bu-filled-fc: var(--white); --_bu-filled-f= c-active: var(--_bu-filled-fc); --_bu-filled-fc-hover: var(--_bu-filled-fc)= ; --_bu-filled-fc-selected: var(--_bu-filled-fc); --_bu-outlined-bc: var(--= red-400); --_bu-outlined-bc-selected: var(--red-500); --_bu-outlined-bg-sel= ected: var(--_bu-bg-selected); --_bu-outlined-fc-selected: var(--_bu-fc-sel= ected); --_bu-number-fc: var(--white); --_bu-number-fc-filled: var(--black)= ; } .s-btn.s-btn__muted { --_bu-bc-hover: var(--black-300); --_bu-bg-active: va= r(--black-150); --_bu-bg-hover: var(--black-100); --_bu-bg-selected: var(--= black-200); --_bu-fc: var(--black-500); --_bu-fc-active: var(--_bu-fc); --_= bu-fc-hover: var(--black-500); --_bu-fc-selected: var(--black-500); --_bu-f= illed-bc: transparent; --_bu-filled-bc-selected: var(--_bu-filled-bc); --_b= u-filled-bg: var(--black-225); --_bu-filled-bg-active: var(--black-300); --= _bu-filled-bg-hover: var(--black-250); --_bu-filled-bg-selected: var(--blac= k-350); --_bu-filled-fc: var(--black-500); --_bu-filled-fc-active: var(--_b= u-filled-fc); --_bu-filled-fc-hover: var(--_bu-filled-fc); --_bu-filled-fc-= selected: var(--black-600); --_bu-outlined-bc: var(--black-300); --_bu-outl= ined-bc-selected: var(--black-300); --_bu-outlined-bg-selected: var(--_bu-b= g-selected); --_bu-outlined-fc-selected: var(--_bu-fc-selected); --_bu-numb= er-fc-filled: var(--white); --_bu-number-fc-selected: var(--white); --_bu-b= g-focus: var(--black-400); --_bu-fc-focus: var(--white); --_bu-number-fc-fo= cus: var(--black-500); } body.theme-highcontrast .s-btn.s-btn__muted { --_bu-bg-hover: var(--black-2= 25); --_bu-filled-bg: var(--black-400); --_bu-filled-bg-active: var(--black= -500); --_bu-filled-bg-hover: var(--black-400); --_bu-filled-bg-selected: v= ar(--black-500); --_bu-filled-fc: var(--white); --_bu-filled-fc-selected: v= ar(--_bu-filled-fc); --_bu-fc-selected: var(--black); --_bu-number-fc: var(= --white); --_bu-number-fc-filled: var(--black); --_bu-number-fc-selected: v= ar(--white); } body.theme-highcontrast .s-btn.s-btn__facebook, body.theme-highcontrast .s-= btn.s-btn__github { --_bu-bc: transparent; } .s-btn.s-btn__facebook { --_bu-bc: transparent; --_bu-bg: #385499; --_bu-bg= -active: #2a4074; --_bu-bg-hover: #314a86; --_bu-fc: #fff; --_bu-fc-active:= var(--_bu-fc); --_bu-fc-hover: var(--_bu-fc); --_bu-hc-bc: transparent; } .s-btn.s-btn__google { --_bu-bc: var(--bc-medium); --_bu-bg: var(--white); = --_bu-bg-active: var(--black-150); --_bu-bg-hover: var(--black-100); --_bu-= fc: var(--fc-medium); --_bu-fc-active: var(--fc-dark); --_bu-fc-hover: var(= --black-600); } .s-btn.s-btn__github { --_bu-bg: var(--black-600); --_bu-bg-active: var(--b= lack); --_bu-bg-hover: var(--black-600); --_bu-fc: var(--white); --_bu-fc-a= ctive: var(--white); --_bu-fc-hover: var(--white); --_bu-hc-bc: transparent= ; } .s-btn .s-btn--badge { opacity: var(--_bu-badge-o); display: inline-block; = border-radius: var(--br-sm); padding: var(--su2) calc(var(--su4) - var(--su= 1)); font-size: var(--fs-caption); line-height: var(--lh-xs); background-co= lor: currentcolor; } .s-btn .s-btn--number { color: var(--_bu-number-fc); } .s-btn--radio { border: 0px; clip-path: inset(50%); clip: rect(var(--su-sta= tic1), var(--su-static1), var(--su-static1), var(--su-static1)); height: va= r(--su-static1); margin: calc(var(--su-static1) * -1); overflow-wrap: norma= l; overflow: hidden; padding: 0px; position: absolute; width: var(--su-stat= ic1); } .s-btn:not(.s-btn__link):not(.s-btn__unset):focus-visible, .s-btn--radio:fo= cus-visible + .s-btn { box-shadow: inset 0 0 0 var(--su-static1) var(--focu= s-theme),inset 0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focu= s-neutral); border-color: var(--focus-theme) !important; outline: var(--su-= static2) solid transparent !important; } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):focus-visible, .s-btn:not(.s-btn--radio:checked + label):not(.s-bt= n__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.= s-btn__google):not(.is-selected).focus-inset-bordered { background-color: v= ar(--_bu-bg-focus, var(--_bu-filled-bg)); color: var(--_bu-fc-focus, var(--= _bu-filled-fc)); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):focus-visible:not(:hover) .s-btn--number, .s-btn:not(.s-btn--radio= :checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook= ):not(.s-btn__github):not(.s-btn__google):not(.is-selected).focus-inset-bor= dered:not(:hover) .s-btn--number { color: var(--_bu-number-fc-focus, var(--= _bu-number-fc-filled)); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):hover { background-color: var(--_bu-bg-hover); color: var(--_bu-fc= -hover); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):hover.s-btn__filled { background-color: var(--_bu-filled-bg-hover)= ; border-color: var(--_bu-filled-bc-hover); color: var(--_bu-filled-fc-hove= r); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):hover:not(.s-btn__outlined) { border-color: var(--_bu-bc-hover); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):hover:visited:not(:active):not(:focus) { background-color: var(--_= bu-bg); border-color: var(--_bu-bc); color: var(--_bu-fc); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):hover:visited:not(:active):not(:focus).s-btn__filled { background-= color: var(--_bu-filled-bg); border-color: var(--_bu-filled-bc); color: var= (--_bu-filled-fc); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):active { background-color: var(--_bu-bg-active); border-color: var= (--_bu-bc-active); color: var(--_bu-fc-active); } .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__uns= et):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-s= elected):active.s-btn__filled { background-color: var(--_bu-filled-bg-activ= e); border-color: var(--_bu-filled-bc-active); color: var(--_bu-filled-fc-a= ctive); } .s-btn-group { border: var(--su-static1) solid var(--black-300); border-rad= ius: var(--br-md); display: inline-flex; flex-wrap: wrap; padding: calc(var= (--su-static4) - var(--su-static1)); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-btn-group .s-btn { = --_bu-px: .4em; } html.html__responsive:not(.html__unpinned-leftnav) .s-btn-group .s-btn.s-= btn__dropdown { padding-right: 1.2em; } html.html__responsive:not(.html__unpinned-leftnav) .s-btn-group .s-btn.s-= btn__dropdown::after { right: var(--_bu-px); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-btn-group .s-btn { --_bu-= px: .4em; } html.html__responsive.html__unpinned-leftnav .s-btn-group .s-btn.s-btn__d= ropdown { padding-right: 1.2em; } html.html__responsive.html__unpinned-leftnav .s-btn-group .s-btn.s-btn__d= ropdown::after { right: var(--_bu-px); } } .s-btn-group form { display: flex; margin-right: calc(var(--su-static1) * -= 1); } .s-btn-group .s-btn { --_bu-br: var(--br-sm); --_bu-bc-hover: transparent; = --_bu-px: calc(var(--su12) - var(--su1)); --_bu-py: calc(var(--su6) + .65px= ); white-space: nowrap; } .s-btn-group .s-btn.s-btn__xs { --_bu-px: calc(var(--su8) - var(--su1)); --= _bu-py: calc(var(--su2) + .9px); } .s-btn-group .s-btn.s-btn__sm { --_bu-px: calc(var(--su8) + var(--su1)); --= _bu-py: calc(var(--su4) + (var(--su2) - .15px)); } .s-btn-group .s-btn.s-btn__md { --_bu-px: var(--su12); --_bu-py: calc(var(-= -su8) + .15px); } .s-btn-group .s-btn.is-selected, .s-btn-group .s-btn--radio:checked + .s-bt= n { font-weight: bold; } .s-btn-group .s-btn .s-btn--badge { margin-bottom: -100%; margin-top: -100%= ; font-weight: normal; } .s-btn-group .s-btn .s-btn--text { display: inline-flex; flex-direction: co= lumn; } .s-btn-group .s-btn .s-btn--text::before { content: attr(data-text) / ""; f= ont-weight: bold; height: 0px; pointer-events: none; user-select: none; vis= ibility: hidden; } .s-card { --_ca-bc: var(--bc-medium); border: var(--su-static1) solid var(-= -_ca-bc); background-color: var(--white); border-radius: var(--br-sm); padd= ing: var(--su12); } a.s-card { text-decoration: none !important; } .s-card.s-card__muted { --_ca-bc: var(--bc-light); } .s-card.s-card__muted > * { opacity: 0.65; } @media (prefers-color-scheme: dark) { body.theme-system .s-card.s-card__muted > * { opacity: 0.7; } } body.theme-dark .s-card.s-card__muted > *, .theme-dark__forced .s-card.s-ca= rd__muted > *, body.theme-system .theme-dark__forced .s-card.s-card__muted = > * { opacity: 0.7; } body.theme-highcontrast .s-card.s-card__muted > * { opacity: 0.75; } .s-card > :last-child { margin-bottom: 0px; } .s-check-control { --_cc-ai: center; align-items: var(--_cc-ai); display: f= lex; gap: var(--su8); } .s-check-group .s-check-control { --_cc-ai: flex-start; } .s-check-control .s-label { font-weight: normal; } .s-check-group { --_cg-fd: column; flex-direction: var(--_cg-fd); display: = flex; gap: var(--su8); } .s-check-group.s-check-group__horizontal { --_cg-fd: row; } .s-check-group legend.s-label { margin-bottom: var(--su8); } .s-checkbox, .s-radio { --_ch-baw: var(--su-static1); --_ch-bc: var(--bc-da= rk); --_ch-bg: var(--white); --_ch-bg-image: unset; background-color: var(-= -_ch-bg); border: var(--_ch-baw) solid var(--_ch-bc); appearance: none; cur= sor: pointer; font-size: inherit; height: 1em; margin: 0px; outline: 0px; v= ertical-align: middle; width: 1em; } fieldset[disabled] .s-checkbox, fieldset[disabled] .s-radio, .s-checkbox[di= sabled], .s-radio[disabled] { cursor: not-allowed; opacity: var(--_o-disabl= ed-static); } .s-check-group .s-checkbox, .s-check-group .s-radio { margin-top: calc(var(= --su2) + var(--su1)); } input.s-checkbox, input.s-radio { flex-shrink: 0; } .s-checkbox:focus, .s-radio:focus { box-shadow: 0 0 0 var(--su-static2) var= (--focus-neutral),0 0 0 var(--su-static4) var(--focus-theme); outline: var(= --su-static2) solid transparent !important; } .s-checkbox { background-image: var(--_ch-bg-image); background-position: c= enter center; background-repeat: no-repeat; background-size: contain; borde= r-radius: var(--br-sm); } @media (prefers-color-scheme: dark) { body.theme-system .s-checkbox:checked { --_ch-bg-image: url("data:image/s= vg+xml;,%3Csvg width=3D'11' height=3D'11' xmlns=3D'http://www.w3.org/2000/s= vg'%3E%3Cpath d=3D'M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill=3D'hsl(2= 10, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E"); } body.theme-system .s-checkbox:indeterminate { --_ch-bg-image: url("data:i= mage/svg+xml;,%3Csvg width=3D'11' height=3D'11' xmlns=3D'http://www.w3.org/= 2000/svg'%3E%3Cpath d=3D'M2 4.5 h7 v2 h-7 z' fill=3D'hsl(210, 3.00000000000= 00027%, 15%)'/%3E%3C/svg%3E"); } } body.theme-dark .s-checkbox:checked, .theme-dark__forced .s-checkbox:checke= d, body.theme-system .theme-dark__forced .s-checkbox:checked { --_ch-bg-ima= ge: url("data:image/svg+xml;,%3Csvg width=3D'11' height=3D'11' xmlns=3D'htt= p://www.w3.org/2000/svg'%3E%3Cpath d=3D'M10 3.41L8.59 2 4 6.59 2.41 5 1 6.4= 1l3 3z' fill=3D'hsl(210, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E"); } body.theme-dark .s-checkbox:indeterminate, .theme-dark__forced .s-checkbox:= indeterminate, body.theme-system .theme-dark__forced .s-checkbox:indetermin= ate { --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width=3D'11' height= =3D'11' xmlns=3D'http://www.w3.org/2000/svg'%3E%3Cpath d=3D'M2 4.5 h7 v2 h-= 7 z' fill=3D'hsl(210, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E"); } @media (prefers-color-scheme: dark) { body.theme-highcontrast.theme-system .s-checkbox:checked, body.theme-high= contrast.theme-system .s-checkbox:indeterminate { --_ch-bg: var(--blue-400)= ; --_ch-bc: var(--blue-500) !important; } } body.theme-highcontrast.theme-dark .s-checkbox:checked, body.theme-highcont= rast.theme-dark .s-checkbox:indeterminate { --_ch-bg: var(--blue-400); --_c= h-bc: var(--blue-500) !important; } @media (forced-colors: active) { .s-checkbox:checked, .s-checkbox:indeterminate { --_ch-bg: ButtonText !im= portant; } } .s-checkbox:checked, .s-checkbox:indeterminate { --_ch-bg: var(--theme-seco= ndary-400); --_ch-bc: var(--theme-secondary-400) !important; } .s-checkbox:checked { --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width= =3D'11' height=3D'11' xmlns=3D'http://www.w3.org/2000/svg'%3E%3Cpath d=3D'M= 10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill=3D'hsl(0, 0%, 100%)'/%3E%3C/= svg%3E"); } .s-checkbox:indeterminate { --_ch-bg-image: url("data:image/svg+xml;,%3Csvg= width=3D'11' height=3D'11' xmlns=3D'http://www.w3.org/2000/svg'%3E%3Cpath = d=3D'M2 4.5 h7 v2 h-7 z' fill=3D'hsl(0, 0%, 100%)'/%3E%3C/svg%3E"); } .s-radio { border-radius: var(--br-circle); } @media (prefers-color-scheme: dark) { body.theme-highcontrast.theme-system .s-radio:checked { --_ch-bc: var(--b= lue-400); outline: var(--su-static1) solid var(--black); } } body.theme-highcontrast.theme-dark .s-radio:checked { --_ch-bc: var(--blue-= 400); outline: var(--su-static1) solid var(--black); } .s-radio:checked { --_ch-baw: .30769231em; --_ch-bc: var(--theme-secondary-= 400); --_ch-bg: var(--white); } .has-error .s-checkbox, .has-error .s-radio:not(:checked), .has-success .s-= checkbox, .has-success .s-radio:not(:checked), .has-warning .s-checkbox, .h= as-warning .s-radio:not(:checked) { --_ch-bc-focus: var(--_ch-bc); } .has-error .s-checkbox, .has-error .s-radio:not(:checked) { --_ch-bc: var(-= -red-400); } .has-success .s-checkbox, .has-success .s-radio:not(:checked) { --_ch-bc: v= ar(--green-400); } .has-warning .s-checkbox, .has-warning .s-radio:not(:checked) { --_ch-bc: v= ar(--yellow-500); } .s-check-control { --_cc-ai: center; align-items: var(--_cc-ai); display: f= lex; gap: var(--su8); } .s-check-group .s-check-control { --_cc-ai: flex-start; } .s-check-control .s-label { font-weight: normal; } .s-check-group { --_cg-fd: column; flex-direction: var(--_cg-fd); display: = flex; gap: var(--su8); } .s-check-group.s-check-group__horizontal { --_cg-fd: row; } .s-check-group legend.s-label { margin-bottom: var(--su8); } .s-code-block { --_cb-line-numbers-bg: var(--black-150); } @media (prefers-color-scheme: dark) { body.theme-system .s-code-block { --_cb-line-numbers-bg: var(--black-100)= ; } } body.theme-dark .s-code-block, .theme-dark__forced .s-code-block, body.them= e-system .theme-dark__forced .s-code-block { --_cb-line-numbers-bg: var(--b= lack-100); } code[class*=3D"language-"] .s-code-block, pre.s-code-block > code { font-fa= mily: inherit; } code[class*=3D"language-"] .s-code-block .hljs-built_in, pre.s-code-block >= code .hljs-built_in, code[class*=3D"language-"] .s-code-block .hljs-litera= l, pre.s-code-block > code .hljs-literal, code[class*=3D"language-"] .s-cod= e-block .hljs-title, pre.s-code-block > code .hljs-title { color: var(--hig= hlight-literal); } code[class*=3D"language-"] .s-code-block .hljs-bullet, pre.s-code-block > c= ode .hljs-bullet, code[class*=3D"language-"] .s-code-block .hljs-code, pre.= s-code-block > code .hljs-code { color: var(--highlight-punctuation); } code[class*=3D"language-"] .s-code-block .hljs-doctag, pre.s-code-block > c= ode .hljs-doctag, code[class*=3D"language-"] .s-code-block .hljs-keyword, p= re.s-code-block > code .hljs-keyword, code[class*=3D"language-"] .s-code-bl= ock .hljs-meta-keyword, pre.s-code-block > code .hljs-meta-keyword, code[cl= ass*=3D"language-"] .s-code-block .hljs-meta, pre.s-code-block > code .hljs= -meta, code[class*=3D"language-"] .s-code-block .hljs-section, pre.s-code-b= lock > code .hljs-section, code[class*=3D"language-"] .s-code-block .hljs-s= elector-class, pre.s-code-block > code .hljs-selector-class, code[class*=3D= "language-"] .s-code-block .hljs-selector-pseudo, pre.s-code-block > code .= hljs-selector-pseudo, code[class*=3D"language-"] .s-code-block .hljs-select= or-tag, pre.s-code-block > code .hljs-selector-tag { color: var(--highlight= -keyword); } code[class*=3D"language-"] .s-code-block .hljs-name, pre.s-code-block > cod= e .hljs-name, code[class*=3D"language-"] .s-code-block .hljs-number, pre.s-= code-block > code .hljs-number, code[class*=3D"language-"] .s-code-block .h= ljs-quote, pre.s-code-block > code .hljs-quote, code[class*=3D"language-"] = .s-code-block .hljs-selector-id, pre.s-code-block > code .hljs-selector-id,= code[class*=3D"language-"] .s-code-block .hljs-template-tag, pre.s-code-bl= ock > code .hljs-template-tag, code[class*=3D"language-"] .s-code-block .hl= js-type, pre.s-code-block > code .hljs-type { color: var(--highlight-namesp= ace); } code[class*=3D"language-"] .s-code-block .hljs-link, pre.s-code-block > cod= e .hljs-link, code[class*=3D"language-"] .s-code-block .hljs-meta-string, p= re.s-code-block > code .hljs-meta-string, code[class*=3D"language-"] .s-cod= e-block .hljs-regexp, pre.s-code-block > code .hljs-regexp, code[class*=3D"= language-"] .s-code-block .hljs-selector-attr, pre.s-code-block > code .hlj= s-selector-attr, code[class*=3D"language-"] .s-code-block .hljs-string, pre= .s-code-block > code .hljs-string, code[class*=3D"language-"] .s-code-block= .hljs-symbol, pre.s-code-block > code .hljs-symbol, code[class*=3D"languag= e-"] .s-code-block .hljs-template-variable, pre.s-code-block > code .hljs-t= emplate-variable, code[class*=3D"language-"] .s-code-block .hljs-variable, = pre.s-code-block > code .hljs-variable { color: var(--highlight-variable); = } code[class*=3D"language-"] .s-code-block .hljs-addition, pre.s-code-block >= code .hljs-addition { color: var(--highlight-addition); } code[class*=3D"language-"] .s-code-block .hljs-attr, pre.s-code-block > cod= e .hljs-attr { color: var(--highlight-attribute); } code[class*=3D"language-"] .s-code-block .hljs-attribute, pre.s-code-block = > code .hljs-attribute { color: var(--highlight-symbol); } code[class*=3D"language-"] .s-code-block .hljs-comment, pre.s-code-block > = code .hljs-comment { color: var(--highlight-comment); } code[class*=3D"language-"] .s-code-block .hljs-deletion, pre.s-code-block >= code .hljs-deletion { color: var(--highlight-deletion); } code[class*=3D"language-"] .s-code-block .hljs-emphasis, pre.s-code-block >= code .hljs-emphasis { font-style: italic; } code[class*=3D"language-"] .s-code-block .hljs-strong, pre.s-code-block > c= ode .hljs-strong { font-weight: bold; } code[class*=3D"language-"] .s-code-block .hljs-subst, pre.s-code-block > co= de .hljs-subst { color: var(--highlight-color); } pre.s-code-block { scrollbar-color: var(--scrollbar) transparent; backgroun= d-color: var(--highlight-bg); border-radius: var(--br-md); color: var(--hig= hlight-color); font-family: var(--ff-mono); font-size: var(--fs-body1); lin= e-height: var(--lh-md); margin: 0px; overflow: auto; padding: var(--su12); = } pre.s-code-block .s-code-block--line-numbers { background-color: var(--_cb-= line-numbers-bg); border-color: var(--bc-medium); border-style: solid; bord= er-width: 0 var(--su-static1) 0 0; color: var(--black-350); float: left; ma= rgin-top: ; margin-bottom: ; margin-left: ; margin-right: var(--su12); padd= ing-top: ; padding-bottom: ; padding-left: ; padding-right: var(--su6); tex= t-align: right; } pre.s-code-block::-webkit-scrollbar { width: calc(var(--su-static12) - var(= --su-static2)); height: calc(var(--su-static12) - var(--su-static2)); backg= round-color: transparent; } pre.s-code-block::-webkit-scrollbar-track { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: transparent; } pre.s-code-block::-webkit-scrollbar-thumb { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: var(--scrollbar); } pre.s-code-block::-webkit-scrollbar-corner { background-color: transparent;= border-color: transparent; } .s-description { color: var(--fc-light); font-size: var(--fs-caption); padd= ing: 0 var(--su2); } .is-disabled .s-description { opacity: var(--_o-disabled-static); } .s-empty-state { color: var(--fc-light); text-align: center; margin-left: a= uto; margin-right: auto; } .s-empty-state p { font-size: var(--fs-body1); margin-bottom: var(--su12); = } .s-empty-state p strong { color: var(--fc-dark); } .s-expandable { --_ex-after-h: 10px; --_ex-after-hmx: 0; --_ex-after-transi= tion: height 100ms linear, max-height 0s 100ms linear; --_ex-content-hmx: 1000000px; --_ex-con= tent-mb: 0; --_ex-content-o: unset; --_ex-content-transform: unset; --_ex-c= ontent-transition: margin-bottom 100ms cubic-bezier(0, 0, 0, 1), transform 100ms cubic-bezier(1, 0, 1, 1), opacity 100ms cubic-bezier(1, 0, 1, 1); --_ex-content-v: unset; ali= gn-items: flex-start; display: flex; clip-path: polygon(-1e+06px -1e+06px, = 1e+06px -1e+06px, 1e+06px 1e+06px, -1e+06px 1e+06px); transition: clip-path= 0s var(--_ex-transition-duration),-webkit-clip-path 0s var(--_ex-transitio= n-duration); } .s-expandable:not(.is-expanded) { --_ex-after-h: 0; --_ex-after-hmx: 10px; = --_ex-after-transition: height 10px linear; --_ex-content-hmx: 0; --_ex-con= tent-mb: -1500px; --_ex-content-o: 0; --_ex-content-transform: scaleY(0); -= -_ex-content-transition: margin-bottom 100ms cubic-bezier(1, 0, 1, 1), visibility 0s 100ms, max-height 0s 100ms, transform 100ms cubic-bezier(0, 1, 1, 1), opacity 100ms cubic-bezier(0, 1, 1, 1); --_ex-content-v: hidden= ; clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); overflow: hidden;= transition: none; } @supports ((-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%))= or (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%))) { .s-expandable:not(.is-expanded) .s-expandable--content { --_ex-content-o:= 0; --_ex-content-transform: none; } } .s-expandable::after { height: var(--_ex-after-h); max-height: var(--_ex-af= ter-hmx); transition: var(--_ex-after-transition); content: ""; flex-basis:= 0px; } .s-expandable .s-expandable--content { max-height: var(--_ex-content-hmx); = margin-bottom: var(--_ex-content-mb); opacity: var(--_ex-content-o); transf= orm: var(--_ex-content-transform); visibility: var(--_ex-content-v); flex-b= asis: 100%; transform-origin: 0px 0px; transition: var(--_ex-content-transi= tion); } .s-input, .s-textarea { --_in-bc: var(--bc-darker); --_in-bg: var(--white);= --_in-br: var(--br-md); --_in-c: unset; --_in-fc: var(--fc-dark); --_in-fs= : var(--fs-body1); --_in-o: unset; --_in-px: .7em; --_in-py: .6em; --_in-pl= aceholder-fc: var(--black-300); scrollbar-color: var(--scrollbar) transpare= nt; background-color: var(--_in-bg); border: var(--su-static1) solid var(--= _in-bc); border-radius: var(--_in-br); color: var(--_in-fc); cursor: var(--= _in-c); font-size: var(--_in-fs); opacity: var(--_in-o); padding: var(--_in= -py) var(--_in-px) var(--_in-py) var(--_in-pl, var(--_in-px)); appearance: = none; font-family: inherit; margin: 0px; width: 100%; } @supports (-webkit-overflow-scrolling: touch) { .s-input, .s-textarea { --_in-fs: var(--su-static16); --_in-px: .55em; --= _in-py: .36em; } .s-input::-webkit-input-placeholder, .s-textarea::-webkit-input-placehold= er { line-height: normal !important; } } body.theme-highcontrast .s-input, body.theme-highcontrast .s-textarea { --_= in-bc: var(--black); --_in-placeholder-fc: var(--black-400); } fieldset[disabled] .s-input, fieldset[disabled] .s-textarea, .s-input[disab= led], .s-textarea[disabled], .s-input[readonly], .s-textarea[readonly], .is= -readonly .s-input, .is-readonly .s-textarea { --_in-c: not-allowed; } fieldset[disabled] .s-input, fieldset[disabled] .s-textarea, .s-input[disab= led], .s-textarea[disabled] { --_in-o: var(--_o-disabled-static); } .s-input[readonly], .s-textarea[readonly], .is-readonly .s-input, .is-reado= nly .s-textarea { --_in-bg: var(--black-150); --_in-bc: var(--bc-light); --= _in-fc: var(--black-400); } body.theme-highcontrast .s-input[readonly], body.theme-highcontrast .s-text= area[readonly], body.theme-highcontrast .is-readonly .s-input, body.theme-h= ighcontrast .is-readonly .s-textarea { --_in-fc: var(--fc-medium); } .has-error .s-input, .has-error .s-textarea, .has-success .s-input, .has-su= ccess .s-textarea, .has-warning .s-input, .has-warning .s-textarea { --_in-= bc-focus: var(--_in-bc); } .has-error .s-input, .has-error .s-textarea { --_in-bc: var(--red-400); } body.theme-highcontrast .has-error .s-input, body.theme-highcontrast .has-e= rror .s-textarea { --_in-bc: var(--red-400); } .has-success .s-input, .has-success .s-textarea { --_in-bc: var(--green-400= ); } body.theme-highcontrast .has-success .s-input, body.theme-highcontrast .has= -success .s-textarea { --_in-bc: var(--green-400); } .has-warning .s-input, .has-warning .s-textarea { --_in-bc: var(--yellow-50= 0); } body.theme-highcontrast .has-warning .s-input, body.theme-highcontrast .has= -warning .s-textarea { --_in-bc: var(--yellow-500); } .s-input.s-input__sm, .s-input.s-textarea__sm, .s-textarea.s-input__sm, .s-= textarea.s-textarea__sm { --_in-fs: var(--fs-caption); } .s-input.s-input__md, .s-input.s-textarea__md, .s-textarea.s-input__md, .s-= textarea.s-textarea__md { --_in-fs: var(--fs-body3); --_in-br: calc(var(--b= r-sm) + var(--su-static1)); } @supports (-webkit-overflow-scrolling: touch) { .s-input.s-input__md, .s-input.s-textarea__md, .s-textarea.s-input__md, .= s-textarea.s-textarea__md { --_in-fs: calc(var(--su-static16) + var(--su-st= atic1)); --_in-py: .4em; } } .s-input.s-input__lg, .s-input.s-textarea__lg, .s-textarea.s-input__lg, .s-= textarea.s-textarea__lg { --_in-fs: var(--fs-title); --_in-br: calc(var(--b= r-sm) + var(--su-static1)); --_in-px: .6em; --_in-py: .45em; } .s-input.s-input__xl, .s-input.s-textarea__xl, .s-textarea.s-input__xl, .s-= textarea.s-textarea__xl { --_in-fs: var(--fs-headline1); --_in-br: var(--br= -md); --_in-px: .5em; --_in-py: .4em; } .s-input:-webkit-autofill, .s-textarea:-webkit-autofill { box-shadow: 0 0 0= 1000px var(--theme-secondary-200) inset; -webkit-text-fill-color: var(--bl= ack); border-color: var(--blue-400); transition: background-color 50000s; } .s-input:-webkit-autofill:focus, .s-textarea:-webkit-autofill:focus { borde= r-color: var(--blue-400); box-shadow: 0 0 0 1000px var(--blue-200) inset,0 = 0 0 var(--su-static4) var(--focus-ring); } .s-input::-webkit-contacts-auto-fill-button, .s-textarea::-webkit-contacts-= auto-fill-button { background-color: var(--black); } .s-input::placeholder, .s-textarea::placeholder, .s-input::-webkit-input-pl= aceholder, .s-textarea::-webkit-input-placeholder { color: var(--_in-placeh= older-fc); } .s-input::placeholder, .s-textarea::placeholder { opacity: 1; } .s-input.s-input__creditcard, .s-input.s-textarea__creditcard, .s-textarea.= s-input__creditcard, .s-textarea.s-textarea__creditcard, .s-input.s-input__= search, .s-input.s-textarea__search, .s-textarea.s-input__search, .s-textar= ea.s-textarea__search { --_in-pl: var(--su-static32); } .s-input:focus, .s-textarea:focus, .s-input:focus-within, .s-textarea:focus= -within { box-shadow: 0 0 0 var(--su-static2) var(--focus-neutral),0 0 0 va= r(--su-static4) var(--focus-theme); outline: var(--su-static2) solid transp= arent !important; } .s-input::-webkit-scrollbar, .s-textarea::-webkit-scrollbar { width: calc(v= ar(--su-static12) - var(--su-static2)); height: calc(var(--su-static12) - v= ar(--su-static2)); background-color: transparent; } .s-input::-webkit-scrollbar-track, .s-textarea::-webkit-scrollbar-track { b= order-radius: calc(var(--su-static12) - var(--su-static2)); background-colo= r: transparent; } .s-input::-webkit-scrollbar-thumb, .s-textarea::-webkit-scrollbar-thumb { b= order-radius: calc(var(--su-static12) - var(--su-static2)); background-colo= r: var(--scrollbar); } .s-input::-webkit-scrollbar-corner, .s-textarea::-webkit-scrollbar-corner {= background-color: transparent; border-color: transparent; } .is-disabled .s-input, .is-readonly .s-input, .has-success .s-input, .has-e= rror .s-input, .has-warning .s-input { padding-right: var(--su32); } .s-input.s-input__md { --_in-py: .5em; } .is-disabled .s-textarea, .is-readonly .s-textarea, .has-success .s-textare= a, .has-error .s-textarea, .has-warning .s-textarea { padding-right: var(--= su48); } .s-textarea.s-textarea__md { --_in-py: .72em; } .s-textarea ~ .s-input-icon { right: 1.5em; top: 1.5em; } .s-input-fill { --_if-bc: var(--bc-dark); --_if-bg: var(--black-150); --_if= -blw: 0; --_if-blr: 0; --_if-brr: 0; --_if-brw: 0; background-color: var(--= _if-bg); border-top-color: ; border-top-style: ; border-top-width: ; border= -right-color: ; border-right-style: ; border-bottom-color: ; border-bottom-= style: ; border-bottom-width: ; border-left-color: ; border-left-style: ; b= order-image-source: ; border-image-slice: ; border-image-width: ; border-im= age-outset: ; border-image-repeat: ; border-left-width: var(--_if-blw); bor= der-right-width: var(--_if-brw); border-radius: var(--_if-blr) var(--_if-br= r) var(--_if-brr) var(--_if-blr); color: var(--fc-medium); font-family: inh= erit; line-height: var(--lh-sm); padding: 0.6em 0.7em; white-space: nowrap;= } .s-input-fill.s-input-fill__clear { --_if-bc: transparent; --_if-bg: transp= arent; } .s-input-fill.order-first { --_if-blw: var(--su-static1); --_if-blr: var(--= br-md); } .s-input-fill.order-last { --_if-brw: var(--su-static1); --_if-brr: var(--b= r-md); } .s-input-icon { --_ii-fc: unset; --_ii-r: .7em; color: var(--_ii-fc); right= : var(--_ii-r); margin-top: calc((var(--su-static8) + var(--su-static1)) * = -1); pointer-events: none; position: absolute; top: 50%; } .has-error .s-input-icon { --_ii-fc: var(--red-400); } .has-success .s-input-icon { --_ii-fc: var(--green-400); } .has-warning .s-input-icon { --_ii-fc: var(--yellow-400); } .is-disabled .s-input-icon { --_ii-fc: var(--black-400); } .is-readonly .s-input-icon { --_ii-fc: var(--black-300); } body.theme-highcontrast .is-readonly .s-input-icon { --_ii-fc: var(--fc-lig= ht); } .s-input-icon.s-input-icon__creditcard, .s-input-icon.s-input-icon__search = { --_ii-r: auto; color: var(--black-400); left: 0.7em; } .s-input-message { --_im-fc: unset; --_im-a-fc: unset; --_im-a-fc-hover: un= set; color: var(--_im-fc); font-size: var(--fs-caption); padding: var(--su2= ); } .is-disabled .s-input-message a, .is-readonly .s-input-message a, .has-succ= ess .s-input-message a, .has-error .s-input-message a, .has-warning .s-inpu= t-message a { text-decoration: underline; } fieldset[disabled] .s-input-message { cursor: not-allowed; opacity: var(--_= o-disabled-static); } .has-error .s-input-message { --_im-fc: var(--red-400); --_im-a-fc: var(--r= ed-600); --_im-a-fc-hover: var(--red-500); } .has-success .s-input-message { --_im-fc: var(--green-400); --_im-a-fc: var= (--green-600); --_im-a-fc-hover: var(--green-500); } .has-warning .s-input-message { --_im-fc: var(--yellow-500); --_im-a-fc: va= r(--yellow-600); --_im-a-fc-hover: var(--yellow-500); } .s-input-message a { color: var(--_im-a-fc) !important; } .s-input-message a:hover { color: var(--_im-a-fc-hover) !important; } .s-label { --_la-fs: var(--fs-body2); font-size: var(--_la-fs); color: var(= --fc-medium); font-family: inherit; font-weight: 700; padding: 0 var(--su2)= ; } .s-label[for] { cursor: pointer; } fieldset[disabled] .s-label, .is-disabled .s-label, .s-check-control .s-che= ckbox[disabled] + .s-label, .s-check-control .s-radio[disabled] + .s-label = { cursor: not-allowed; opacity: var(--_o-disabled-static); } fieldset[disabled] .s-label .s-description, .is-disabled .s-label .s-descri= ption { opacity: unset; } .is-readonly .s-label { cursor: not-allowed; } .s-label.s-label__sm { --_la-fs: var(--fs-caption); } .s-label.s-label__md { --_la-fs: var(--fs-body3); } .s-label.s-label__lg { --_la-fs: var(--fs-title); } .s-label.s-label__xl { --_la-fs: var(--fs-headline1); } .s-label--status { --_la-status-b: none; --_la-status-bg: var(--black-150);= --_la-status-fc: var(--fc-medium); background-color: var(--_la-status-bg);= border: var(--_la-status-b); color: var(--_la-status-fc); border-radius: 1= 000px; font-size: var(--fs-caption); font-weight: 400; margin-left: var(--s= u4); padding: var(--su2) var(--su8); vertical-align: text-bottom; } body.theme-highcontrast .s-label--status { --_la-status-b: var(--su-static1= ) solid currentColor; } .s-label--status__beta { --_la-status-bg: var(--blue-200); --_la-status-fc:= var(--blue-500); } .s-label--status__new { --_la-status-bg: var(--green-200); --_la-status-fc:= var(--green-500); } .s-label--status__required { --_la-status-bg: var(--red-200); --_la-status-= fc: var(--red-500); } .s-label .s-description, .s-label .s-input-message { font-weight: normal; m= argin-bottom: 0px; margin-top: var(--su4); padding: 0px; } .s-required-symbol { color: var(--red-400); font-size: 125%; font-weight: n= ormal; line-height: 0; text-decoration: none !important; } a:visited:not([class*=3D"s-"]):not(.post-tag):not(.badge):not(.badge-tag), = a:visited.s-link, a:visited.s-sidebarwidget--action, a:visited.s-user-card-= -link { color: var(--_li-fc-visited); } a:visited:not([class*=3D"s-"]):not(.post-tag):not(.badge):not(.badge-tag):h= over, a:visited.s-link:hover, a:visited.s-sidebarwidget--action:hover, a:vi= sited.s-user-card--link:hover { color: var(--_li-fc-hover-visited); } a, .s-link { --_li-fc: var(--theme-link-color, var(--theme-secondary-400));= --_li-fc-hover: var(--theme-link-color-hover, var(--theme-secondary-500));= --_li-fc-visited: var(--theme-link-color-visited, var(--purple-500)); --_l= i-fc-hover-visited: var(--theme-link-color-visited, var(--purple-600)); col= or: var(--_li-fc); cursor: pointer; text-decoration: none; user-select: aut= o; } body.theme-highcontrast a, body.theme-highcontrast .s-link { text-decoratio= n: underline; } a.s-link__dropdown, .s-link.s-link__dropdown { padding-right: 0.9em; positi= on: relative; } a.s-link__dropdown::after, .s-link.s-link__dropdown::after { border-right-w= idth: ; border-left-width: ; border-bottom: 0px solid currentcolor; border-= top-color: currentcolor; border-right-color: transparent; border-left-color= : transparent; border-top-style: solid; border-right-style: solid; border-l= eft-style: solid; border-top-width: var(--su-static4); content: ""; pointer= -events: none; position: absolute; right: 0px; top: calc(50% - var(--su-sta= tic2)); z-index: var(--zi-active); } a.s-link__underlined, .s-link.s-link__underlined { text-decoration: underli= ne !important; } a.s-link__visited, .s-link.s-link__visited { --_li-fc: var(--theme-link-col= or-visited, var(--purple-500)); --_li-fc-hover: var(--theme-link-color-hove= r, var(--purple-600)); --_li-fc-visited: var(--theme-link-color-visited, va= r(--purple-500)); --_li-fc-hover-visited: var(--theme-link-color-visited, v= ar(--purple-600)); } a.s-link__danger, .s-link.s-link__danger, a.s-link__grayscale, .s-link.s-li= nk__grayscale, a.s-link__inherit, .s-link.s-link__inherit, a.s-link__muted,= .s-link.s-link__muted { --_li-fc-hover-visited: var(--_li-fc-hover); } a.s-link__danger, .s-link.s-link__danger { --_li-fc: var(--red-400); --_li-= fc-hover: var(--red-500); --_li-fc-visited: var(--red-600); } a.s-link__grayscale, .s-link.s-link__grayscale { --_li-fc: var(--black-500)= ; --_li-fc-hover: var(--black-600); --_li-fc-visited: var(--black-400); } a.s-link__inherit, .s-link.s-link__inherit { --_li-fc: inherit !important; = --_li-fc-hover: inherit !important; --_li-fc-visited: inherit !important; } a.s-link__muted, .s-link.s-link__muted { --_li-fc: var(--black-400); --_li-= fc-hover: var(--black-500); --_li-fc-visited: var(--black-600); } fieldset[disabled] a, fieldset[disabled] .s-link { opacity: var(--_o-disabl= ed-static); pointer-events: none; box-shadow: none !important; } a:active, .s-link:active, a:hover, .s-link:hover { --_li-fc: var(--_li-fc-h= over); } button.s-link { appearance: none; background: transparent; border: 0px; fon= t-family: inherit; line-height: inherit; padding: 0px; user-select: auto; } button.s-link:focus { outline: revert; } p .s-link { text-decoration: underline; } .s-link-preview { --_lp-details-fc: var(--black-400); --_lp-details-mt: var= (--su2); --_lp-footer-bg: var(--black-100); --_lp-footer-fd: unset; --_lp-h= eader-bg: var(--black-100); --_lp-misc-pl: var(--su4); --_lp-misc-pt: unset= ; border: var(--su-static1) solid var(--bc-medium); border-radius: var(--br= -sm); box-shadow: var(--bs-sm); text-align: left; } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-link-preview { --_l= p-details-mt: var(--su4); --_lp-footer-fd: column; --_lp-misc-pl: 0; --_lp-= misc-pt: var(--su2); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-link-preview { --_lp-deta= ils-mt: var(--su4); --_lp-footer-fd: column; --_lp-misc-pl: 0; --_lp-misc-p= t: var(--su2); } } body.theme-highcontrast .s-link-preview { --_lp-details-fc: var(--black-600= ); --_lp-footer-bg: var(--black-050); --_lp-header-bg: var(--black-050); } .s-link-preview .s-link-preview--details a, .s-link-preview .s-link-preview= --footer a { color: var(--black-600); cursor: pointer; text-decoration: non= e; } .s-link-preview .s-link-preview--details a:hover, .s-link-preview .s-link-p= review--footer a:hover, .s-link-preview .s-link-preview--details a:active, = .s-link-preview .s-link-preview--footer a:active, .s-link-preview .s-link-p= review--details a:focus, .s-link-preview .s-link-preview--footer a:focus, .= s-link-preview .s-link-preview--details a:visited, .s-link-preview .s-link-= preview--footer a:visited { color: var(--black-500); } .s-link-preview .s-link-preview--body { font-size: var(--fs-body2); padding= : var(--su12); } .s-link-preview .s-link-preview--body :last-child { margin-bottom: 0px; } .s-link-preview .s-link-preview--code pre { margin: 0px; max-height: 400px;= border-radius: 0px !important; } .s-link-preview .s-link-preview--details { color: var(--_lp-details-fc); ma= rgin-top: var(--_lp-details-mt); font-size: var(--fs-caption); } .s-link-preview .s-link-preview--footer { background: var(--_lp-footer-bg);= flex-direction: var(--_lp-footer-fd); border-bottom-left-radius: var(--br-= sm); border-bottom-right-radius: var(--br-sm); border-top: var(--su-static1= ) solid var(--bc-medium); display: flex; font-size: var(--fs-caption); just= ify-content: space-between; padding: var(--su12); } .s-link-preview .s-link-preview--header { background: var(--_lp-header-bg);= border-bottom: var(--su-static1) solid var(--bc-medium); border-top-left-r= adius: var(--br-sm); border-top-right-radius: var(--br-sm); display: flex; = padding: var(--su12) var(--su8); } .s-link-preview .s-link-preview--icon { color: var(--black-600); margin-rig= ht: var(--su8); } .s-link-preview .s-link-preview--misc { padding-left: var(--_lp-misc-pl); p= adding-top: var(--_lp-misc-pt); color: var(--black-400); } .s-link-preview .s-link-preview--title { color: var(--black-600); font-size= : var(--fs-body3); font-weight: bold; } .s-link-preview a.s-link-preview--title { color: var(--theme-link-color, va= r(--theme-secondary-400)); cursor: pointer; text-decoration: none; } .s-link-preview a.s-link-preview--title:active, .s-link-preview a.s-link-pr= eview--title:hover { color: var(--theme-link-color-hover, var(--theme-secon= dary-500)); } .s-link-preview a.s-link-preview--title:active, .s-link-preview a.s-link-pr= eview--title:hover, .s-link-preview a.s-link-preview--title.s-link__visited= :active, .s-link-preview a.s-link-preview--title.s-link__visited:hover, .s-= link-preview a.s-link-preview--title.s-link__visited:visited { text-decorat= ion: none; } body.theme-highcontrast .s-link-preview a.s-link-preview--title:active, bod= y.theme-highcontrast .s-link-preview a.s-link-preview--title:hover, body.th= eme-highcontrast .s-link-preview a.s-link-preview--title.s-link__visited:ac= tive, body.theme-highcontrast .s-link-preview a.s-link-preview--title.s-lin= k__visited:hover, body.theme-highcontrast .s-link-preview a.s-link-preview-= -title.s-link__visited:visited { text-decoration: underline; } .s-link-preview a.s-link-preview--title:visited, .s-link-preview a.s-link-p= review--title.s-link__visited { color: var(--theme-link-color, var(--purple= -500)); } .s-link-preview a.s-link-preview--title:visited:hover, .s-link-preview a.s-= link-preview--title.s-link__visited:hover { color: var(--theme-link-color, = var(--purple-600)); } .s-link-preview .s-link-preview--url { max-width: 100%; overflow: hidden; w= hite-space: nowrap; text-overflow: ellipsis !important; } .s-menu { --_me-divider-bg: var(--bc-light); --_me-label-btc: var(--bc-ligh= t); --_me-label-cursor: pointer; list-style: none; margin: 0px; padding: 0p= x; } @media (prefers-color-scheme: dark) { body.theme-system .s-menu { --_me-divider-bg: var(--bc-light); --_me-labe= l-btc: var(--bc-light); } } body.theme-dark .s-menu, .theme-dark__forced .s-menu, body.theme-system .th= eme-dark__forced .s-menu { --_me-divider-bg: var(--bc-light); --_me-label-b= tc: var(--bc-light); } .s-menu .s-menu--divider { background-color: var(--_me-divider-bg); height:= var(--su-static1); margin: var(--su8) 0; } .s-menu .s-menu--label { border-top: var(--su-static1) solid var(--_me-labe= l-btc); cursor: var(--_me-label-cursor); padding: var(--su12); } .s-menu .s-menu--label.is-disabled { --_me-label-cursor: not-allowed; } .s-menu .s-menu--title { color: var(--black-500); font-size: var(--fs-fine)= ; padding: var(--su8) var(--su12); text-transform: uppercase; } .s-menu li + .s-menu--title { margin-top: var(--su12); } .s-modal { --_mo-bg: hsla(210,8%,5%,0.5); --_mo-hmx: unset; --_mo-wmx: unse= t; --_mo-close-t: var(--su8); --_mo-dialog-bg: var(--white); --_mo-dialog-p= t: var(--su24); --_mo-header-fc: var(--fc-dark); background-color: var(--_m= o-bg); max-height: var(--_mo-hmx); max-width: var(--_mo-wmx); align-items: = center; backface-visibility: hidden; display: flex; inset: 0px; justify-con= tent: center; opacity: 0; position: fixed; transition: opacity 100ms var(--= te-smooth) 0s,z-index 0s 100ms,visibility 0s 100ms; visibility: hidden; wil= l-change: visibility, z-index, opacity; z-index: var(--zi-hide); } @media (prefers-color-scheme: dark) { body.theme-system .s-modal { --_mo-dialog-bg: var(--black-225); } } body.theme-dark .s-modal, .theme-dark__forced .s-modal, body.theme-system .= theme-dark__forced .s-modal { --_mo-dialog-bg: var(--black-225); } @media (prefers-color-scheme: dark) { body.theme-highcontrast.theme-system .s-modal { --_mo-dialog-bg: var(--bl= ack-200); } } body.theme-highcontrast.theme-dark .s-modal { --_mo-dialog-bg: var(--black-= 200); } .s-modal[aria-hidden=3D"false"], .s-modal[aria-hidden=3D"false"] .s-modal--= dialog { opacity: 1; transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1)= ; transition: opacity 100ms var(--te-smooth) 10ms,z-index 0s 0s,visibility = 0s 0s,transform 100ms var(--te-smooth) 10ms,transform 100ms var(--te-smooth= ) 10ms; visibility: visible; z-index: var(--zi-modals); } .s-modal.s-modal__celebration { --_mo-dialog-pt: var(--su64); } .s-modal.s-modal__celebration .s-modal--dialog { background-repeat: repeat-= x; background-position: center top -10px; background-image: url("data:image= /svg+xml;,%3Csvg width=3D'600' height=3D'90' viewBox=3D'0 0 600 90' fill=3D= 'none' xmlns=3D'http://www.w3.org/2000/svg'%3E%3Crect x=3D'42' y=3D'-10' wi= dth=3D'6' height=3D'10'/%3E%3Crect x=3D'84' y=3D'-10' width=3D'6' height=3D= '10'/%3E%3Crect x=3D'126' y=3D'-13' width=3D'5' height=3D'13'/%3E%3Crect x= =3D'168' y=3D'-13' width=3D'5' height=3D'13'/%3E%3Crect x=3D'210' y=3D'-10'= width=3D'6' height=3D'10'/%3E%3Crect x=3D'252' y=3D'-13' width=3D'5' heigh= t=3D'13'/%3E%3Crect x=3D'294' y=3D'-10' width=3D'6' height=3D'10'/%3E%3Crec= t x=3D'336' y=3D'-13' width=3D'5' height=3D'13'/%3E%3Crect x=3D'378' y=3D'-= 13' width=3D'5' height=3D'13'/%3E%3Crect x=3D'420' y=3D'-10' width=3D'6' he= ight=3D'10'/%3E%3Crect x=3D'462' y=3D'-10' width=3D'6' height=3D'10'/%3E%3C= rect x=3D'504' y=3D'-13' width=3D'5' height=3D'13'/%3E%3Crect x=3D'546' y= =3D'-10' width=3D'6' height=3D'10'/%3E%3Cstyle type=3D'text/css'%3E rect %7= B opacity: 0; %7D rect:nth-child(1) %7B transform-origin: 45px 5px; transfo= rm: rotate(-145deg); animation: blast 700ms infinite ease-out; animation-de= lay: 88ms; animation-duration: 631ms; %7D rect:nth-child(2) %7B transform-o= rigin: 87px 5px; transform: rotate(164deg); animation: blast 700ms infinite= ease-out; animation-delay: 131ms; animation-duration: 442ms; %7D rect:nth-= child(3) %7B transform-origin: 128px 6px; transform: rotate(4deg); animatio= n: blast 700ms infinite ease-out; animation-delay: 92ms; animation-duration= : 662ms; %7D rect:nth-child(4) %7B transform-origin: 170px 6px; transform: = rotate(-175deg); animation: blast 700ms infinite ease-out; animation-delay:= 17ms; animation-duration: 593ms; %7D rect:nth-child(5) %7B transform-origi= n: 213px 5px; transform: rotate(-97deg); animation: blast 700ms infinite ea= se-out; animation-delay: 122ms; animation-duration: 476ms; %7D rect:nth-chi= ld(6) %7B transform-origin: 255px 6px; transform: rotate(57deg); animation:= blast 700ms infinite ease-out; animation-delay: 271ms; animation-duration:= 381ms; %7D rect:nth-child(7) %7B transform-origin: 297px 5px; transform: r= otate(-46deg); animation: blast 700ms infinite ease-out; animation-delay: 1= 31ms; animation-duration: 619ms; %7D rect:nth-child(8) %7B transform-origin= : 338px 6px; transform: rotate(-65deg); animation: blast 700ms infinite eas= e-out; animation-delay: 85ms; animation-duration: 668ms; %7D rect:nth-child= (9) %7B transform-origin: 380px 6px; transform: rotate(13deg); animation: b= last 700ms infinite ease-out; animation-delay: 128ms; animation-duration: 3= 77ms; %7D rect:nth-child(10) %7B transform-origin: 423px 5px; transform: ro= tate(176deg); animation: blast 700ms infinite ease-out; animation-delay: 31= 1ms; animation-duration: 508ms; %7D rect:nth-child(11) %7B transform-origin= : 465px 5px; transform: rotate(108deg); animation: blast 700ms infinite eas= e-out; animation-delay: 108ms; animation-duration: 595ms; %7D rect:nth-chil= d(12) %7B transform-origin: 506px 6px; transform: rotate(62deg); animation:= blast 700ms infinite ease-out; animation-delay: 105ms; animation-duration:= 375ms; %7D rect:nth-child(13) %7B transform-origin: 549px 5px; transform: = rotate(16deg); animation: blast 700ms infinite ease-out; animation-delay: 1= 49ms; animation-duration: 491ms; %7D rect:nth-child(odd) %7B fill: %2365BB5= C; %7D rect:nth-child(even) %7B z-index: 1; fill: %2333AAFF; %7D rect:nth-c= hild(4n) %7B animation-duration: 1400ms; fill: %23F23B14; %7D rect:nth-chil= d(3n) %7B animation-duration: 1750ms; animation-delay: 700ms; %7D rect:nth-= child(4n-7) %7B fill: %232A2F6A; %7D rect:nth-child(6n) %7B fill: %23FBBA23= ; %7D @keyframes blast %7B from %7B opacity: 0; %7D 20%25 %7B opacity: 1; %= 7D to %7B transform: translateY(90px); %7D %7D %3C/style%3E%3C/svg%3E%0A");= } @media (prefers-reduced-motion) { .s-modal.s-modal__celebration .s-modal--dialog { background-image: url("d= ata:image/svg+xml;,%3Csvg width=3D'574' height=3D'60' viewBox=3D'0 0 574 60= ' fill=3D'none' xmlns=3D'http://www.w3.org/2000/svg'%3E%3Crect opacity=3D'0= .8' x=3D'27.1224' y=3D'20.0458' width=3D'5' height=3D'13' transform=3D'rota= te(-139 27.1224 20.0458)' fill=3D'%23F23B14'/%3E%3Crect opacity=3D'0.8' x= =3D'118.478' y=3D'7.00201' width=3D'5' height=3D'13' transform=3D'rotate(-3= 8.8114 118.478 7.00201)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.8' x=3D= '504.616' y=3D'25.4479' width=3D'5' height=3D'13' transform=3D'rotate(-60.2= 734 504.616 25.4479)' fill=3D'%23F23B14'/%3E%3Crect opacity=3D'0.6' x=3D'53= 8.983' y=3D'45.555' width=3D'5' height=3D'13' transform=3D'rotate(16.7826 5= 38.983 45.555)' fill=3D'%232A2F6A'/%3E%3Crect opacity=3D'0.3' x=3D'470.322'= y=3D'2.63625' width=3D'5' height=3D'13' transform=3D'rotate(11.295 470.322= 2.63625)' fill=3D'%2333AAFF'/%3E%3Crect opacity=3D'0.3' x=3D'190.295' y=3D= '4.58138' width=3D'5' height=3D'13' transform=3D'rotate(27.5954 190.295 4.5= 8138)' fill=3D'%23F23B14'/%3E%3Crect opacity=3D'0.8' x=3D'234.303' y=3D'16.= 3233' width=3D'5' height=3D'13' transform=3D'rotate(-41.8233 234.303 16.323= 3)' fill=3D'%2365BB5C'/%3E%3Crect opacity=3D'0.6' x=3D'369.702' y=3D'40.987= 5' width=3D'5' height=3D'13' transform=3D'rotate(-56.419 369.702 40.9875)' = fill=3D'%2333AAFF'/%3E%3Crect opacity=3D'0.3' x=3D'402.121' y=3D'31.0848' w= idth=3D'5' height=3D'13' transform=3D'rotate(-17.9234 402.121 31.0848)' fil= l=3D'%23F23B14'/%3E%3Crect opacity=3D'0.6' x=3D'200.316' y=3D'31.9328' widt= h=3D'5' height=3D'13' transform=3D'rotate(-15.8896 200.316 31.9328)' fill= =3D'%232A2F6A'/%3E%3Crect opacity=3D'0.6' x=3D'69.6745' y=3D'23.4725' width= =3D'6' height=3D'10' transform=3D'rotate(70.0266 69.6745 23.4725)' fill=3D'= %2365BB5C'/%3E%3Crect opacity=3D'0.6' x=3D'291.945' y=3D'7.16931' width=3D'= 6' height=3D'10' transform=3D'rotate(30.4258 291.945 7.16931)' fill=3D'%23F= BBA23'/%3E%3Crect opacity=3D'0.3' x=3D'33.7754' y=3D'38.2208' width=3D'6' h= eight=3D'10' transform=3D'rotate(38.6056 33.7754 38.2208)' fill=3D'%23FBBA2= 3'/%3E%3Crect opacity=3D'0.8' x=3D'109.752' y=3D'31.1743' width=3D'6' heigh= t=3D'10' transform=3D'rotate(28.5296 109.752 31.1743)' fill=3D'%2333AAFF'/%= 3E%3Crect opacity=3D'0.3' x=3D'278.081' y=3D'37.8695' width=3D'6' height=3D= '10' transform=3D'rotate(-26.5651 278.081 37.8695)' fill=3D'%23F23B14'/%3E%= 3Crect opacity=3D'0.8' x=3D'416.294' y=3D'11.5573' width=3D'6' height=3D'10= ' transform=3D'rotate(-22.8498 416.294 11.5573)' fill=3D'%23FBBA23'/%3E%3Cr= ect opacity=3D'0.3' x=3D'354.667' y=3D'9.32341' width=3D'6' height=3D'10' t= ransform=3D'rotate(17.7506 354.667 9.32341)' fill=3D'%232A2F6A'/%3E%3Crect = opacity=3D'0.8' x=3D'532.404' y=3D'16.6372' width=3D'6' height=3D'10' trans= form=3D'rotate(-75.3432 532.404 16.6372)' fill=3D'%23FBBA23'/%3E%3Crect opa= city=3D'0.6' x=3D'460.463' y=3D'39.3557' width=3D'6' height=3D'10' transfor= m=3D'rotate(45.4982 460.463 39.3557)' fill=3D'%2365BB5C'/%3E%3C/svg%3E"); } } .s-modal.s-modal__full { --_mo-hmx: calc(100% - var(--su48)); --_mo-wmx: ca= lc(100% - var(--su48)); } .s-modal.has-danger, .s-modal.s-modal__danger { --_mo-bg: hsla(0,65%,4%,0.5= ); --_mo-header-fc: var(--red-500); } .s-modal .s-modal--body { color: var(--fc-medium); margin-bottom: var(--su2= 4); } .s-modal .s-modal--close { right: var(--su8); top: var(--_mo-close-t); padd= ing: var(--su12) !important; position: absolute !important; } .s-modal .s-modal--close .svg-icon { margin: 0px !important; } .s-modal .s-modal--dialog { padding: var(--_mo-dialog-pt) var(--su24) var(-= -su24); scrollbar-color: var(--scrollbar) transparent; backface-visibility:= hidden; background-color: var(--_mo-dialog-bg); border-radius: var(--br-lg= ); box-shadow: var(--bs-lg); max-height: 100%; max-width: 600px; opacity: 0= ; overflow-y: auto; transform: translate3d(0px, 30%, 0px) scale3d(0.6, 0.6,= 0.6); transition: opacity 200ms var(--te-smooth) 0s,z-index 0s 100ms,visib= ility 0s 100ms,transform 100ms var(--te-smooth) 0s,transform 100ms var(--te= -smooth) 0s; visibility: hidden; will-change: visibility, z-index, opacity,= transform; z-index: var(--zi-hide); } .s-modal .s-modal--dialog::-webkit-scrollbar { width: calc(var(--su-static1= 2) - var(--su-static2)); height: calc(var(--su-static12) - var(--su-static2= )); background-color: transparent; } .s-modal .s-modal--dialog::-webkit-scrollbar-track { border-radius: calc(va= r(--su-static12) - var(--su-static2)); background-color: transparent; } .s-modal .s-modal--dialog::-webkit-scrollbar-thumb { border-radius: calc(va= r(--su-static12) - var(--su-static2)); background-color: var(--scrollbar); = } .s-modal .s-modal--dialog::-webkit-scrollbar-corner { background-color: tra= nsparent; border-color: transparent; } .s-modal .s-modal--footer { margin-top: var(--su24); } .s-modal .s-modal--header { color: var(--_mo-header-fc); font-size: var(--f= s-headline1); font-weight: normal; line-height: var(--lh-sm); margin-bottom= : var(--su16); margin-right: var(--su24); } .s-navigation { --_na-fd: row; --_na-fw: wrap; --_na-p: var(--su2) 0; --_na= -gap: var(--su4); --_na-item-bg: none; --_na-item-fc: var(--black-500); --_= na-item-fs: unset; --_na-item-p: var(--su6) var(--su12); --_na-item-py: var= (--su12); --_na-item-ws: nowrap; --_na-item-bg-hover: var(--black-200); --_= na-item-fc-hover: var(--_na-item-fc); --_na-item-selected-bg: var(--theme-p= rimary); --_na-item-selected-fc: var(--white); --_na-item-selected-bg-hover= : var(--theme-primary-500); --_na-title-mt: var(--su16); flex-direction: va= r(--_na-fd); flex-wrap: var(--_na-fw); gap: var(--_na-gap); padding: var(--= _na-p); display: flex; list-style: none; margin: 0px; } body.theme-highcontrast .s-navigation { --_na-item-bg-hover: var(--black-50= 0); --_na-item-fc-hover: var(--black-225); } .s-navigation.s-navigation__scroll { --_na-fw: nowrap; overflow-x: auto; sc= rollbar-color: var(--scrollbar) transparent; } .s-navigation.s-navigation__scroll::-webkit-scrollbar { width: calc(var(--s= u-static12) - var(--su-static2)); height: calc(var(--su-static12) - var(--s= u-static2)); background-color: transparent; } .s-navigation.s-navigation__scroll::-webkit-scrollbar-track { border-radius= : calc(var(--su-static12) - var(--su-static2)); background-color: transpare= nt; } .s-navigation.s-navigation__scroll::-webkit-scrollbar-thumb { border-radius= : calc(var(--su-static12) - var(--su-static2)); background-color: var(--scr= ollbar); } .s-navigation.s-navigation__scroll::-webkit-scrollbar-corner { background-c= olor: transparent; border-color: transparent; } .s-navigation.s-navigation__sm { --_na-item-fs: var(--fs-caption); --_na-it= em-p: var(--su4) var(--su12); } .s-navigation.s-navigation__vertical { --_na-fd: column; --_na-gap: 0; --_n= a-p: 0; --_na-item-ws: normal; } .s-navigation.s-navigation__muted { --_na-item-selected-bg: var(--black-150= ); --_na-item-selected-fc: var(--black-600); --_na-item-selected-bg-hover: = var(--_na-item-bg); } body.theme-highcontrast .s-navigation.s-navigation__muted { --_na-item-sele= cted-bg: var(--black-600); --_na-item-selected-fc: var(--black-150); --_na-= item-selected-bg-hover: var(--black-600); } .s-navigation .s-navigation--item { background-color: var(--_na-item-bg); c= olor: var(--_na-item-fc); font-style: unset; font-variant: unset; font-weig= ht: unset; font-stretch: unset; line-height: unset; font-family: unset; fon= t-optical-sizing: unset; font-size-adjust: unset; font-kerning: unset; font= -feature-settings: unset; font-variation-settings: unset; font-size: var(--= _na-item-fs); padding: var(--_na-item-p); white-space: var(--_na-item-ws); = align-items: center; border: none; border-radius: 1000px; box-shadow: none;= cursor: pointer; display: flex; position: relative; user-select: auto; } .s-navigation .s-navigation--item.is-selected { --_na-item-bg: var(--_na-it= em-selected-bg); --_na-item-fc: var(--_na-item-selected-fc); --_na-item-fc-= hover: var(--_na-item-fc); --_na-item-bg-hover: var(--_na-item-selected-bg-= hover); } body.theme-highcontrast .s-navigation .s-navigation--item.is-selected { tex= t-decoration: none; } .s-navigation .s-navigation--item__dropdown { padding-right: 2em; } .s-navigation .s-navigation--item__dropdown::after { border-style: solid; b= order-width: var(--su-static4) var(--su-static4) 0 var(--su-static4); borde= r-color: currentcolor transparent; content: ""; pointer-events: none; posit= ion: absolute; right: 0.9em; top: calc(50% - var(--su-static2)); z-index: v= ar(--zi-active); } .s-navigation .s-navigation--item:hover, .s-navigation .s-navigation--item:= active { background-color: var(--_na-item-bg-hover); color: var(--_na-item-= fc-hover); } .s-navigation .s-navigation--item:focus-visible { box-shadow: inset 0 0 0 v= ar(--su-static2) var(--focus-theme),inset 0 0 0 var(--su-static4) var(--foc= us-neutral); outline: var(--su-static2) solid transparent !important; } .s-navigation .s-navigation--title { margin-top: var(--_na-title-mt); font-= size: var(--fs-fine); font-weight: bold; padding: var(--su6) var(--su12); t= ext-transform: uppercase; } .s-navigation .s-navigation--title:first-child { --_na-title-mt: 0; } .s-notice { --_no-bc: var(--black-225); --_no-bg: var(--black-100); --_no-f= c: var(--black-500); --_no-btn-bg-active: var(--black-250); --_no-btn-bg-fo= cus: var(--black-225); --_no-btn-fc: var(--_no-fc); --_no-code-bc: var(--bl= ack-300); --_no-code-bg: var(--black-200); --_no-code-fc: var(--_no-fc); ba= ckground: var(--_no-bg); border-color: var(--_no-bc); color: var(--_no-fc);= border-style: solid; font-size: var(--fs-body1); border-radius: var(--br-m= d); border-width: var(--su-static1); padding: var(--su16); } @media (prefers-color-scheme: dark) { body.theme-system .s-notice { --_no-bc: var(--_no-bg); } } body.theme-dark .s-notice, .theme-dark__forced .s-notice, body.theme-system= .theme-dark__forced .s-notice { --_no-bc: var(--_no-bg); } body.theme-highcontrast .s-notice, body.theme-highcontrast .s-notice.s-noti= ce__danger, body.theme-highcontrast .s-notice.s-notice__info, body.theme-hi= ghcontrast .s-notice.s-notice__success, body.theme-highcontrast .s-notice.s= -notice__warning { --_no-code-bc: var(--black-400); --_no-code-bg: var(--wh= ite); --_no-code-fc: var(--black); } body.theme-highcontrast .s-notice.s-notice__important, body.theme-highcontr= ast .s-notice.s-notice__danger.s-notice__important, body.theme-highcontrast= .s-notice.s-notice__info.s-notice__important, body.theme-highcontrast .s-n= otice.s-notice__success.s-notice__important, body.theme-highcontrast .s-not= ice.s-notice__warning.s-notice__important { --_no-code-bc: var(--black-200)= ; --_no-code-bg: var(--black); --_no-code-fc: var(--white); } .s-notice__important:not(.s-notice__danger):not(.s-notice__info):not(.s-not= ice__success):not(.s-notice__warning) { --_no-bc: var(--_no-bg); --_no-bg: = var(--black-500); --_no-fc: var(--white); --_no-btn-bg-focus: var(--black-6= 00); --_no-btn-bg-active: var(--black-600); --_no-btn-fc: var(--_no-fc); --= _no-code-bc: var(--black-300); --_no-code-bg: var(--black-600); } .s-notice__danger:not(.s-notice__important) { --_no-bc: var(--red-300); --_= no-bg: var(--red-100); --_no-btn-bg-active: var(--red-200); --_no-btn-bg-fo= cus: var(--red-200); --_no-btn-fc: var(--red-500); --_no-code-bc: var(--red= -300); --_no-code-bg: var(--red-200); } .s-notice__danger.s-notice__important { --_no-bc: var(--_no-bg); --_no-bg: = var(--red-400); --_no-fc: var(--white); --_no-btn-bg-active: var(--red-500)= ; --_no-btn-bg-focus: var(--red-500); --_no-btn-fc: var(--red-100); --_no-c= ode-bc: var(--red-300); --_no-code-bg: var(--red-500); } body.theme-highcontrast .s-notice__danger.s-notice__important { --_no-bg: v= ar(--red-500); } .s-notice__info:not(.s-notice__important) { --_no-bc: var(--theme-secondary= -300); --_no-bg: var(--theme-secondary-100); --_no-btn-bg-active: var(--the= me-secondary-200); --_no-btn-bg-focus: var(--theme-secondary-200); --_no-bt= n-fc: var(--theme-secondary-500); --_no-code-bc: var(--theme-secondary-300)= ; --_no-code-bg: var(--theme-secondary-200); } .s-notice__info.s-notice__important { --_no-bc: var(--_no-bg); --_no-bg: va= r(--theme-secondary-400); --_no-fc: var(--white); --_no-btn-bg-active: var(= --theme-secondary-500); --_no-btn-bg-focus: var(--theme-secondary-500); --_= no-btn-fc: var(--theme-secondary-100); --_no-code-bc: var(--theme-secondary= -300); --_no-code-bg: var(--theme-secondary-500); } body.theme-highcontrast .s-notice__info.s-notice__important { --_no-bg: var= (--theme-secondary-500); } .s-notice__success:not(.s-notice__important) { --_no-bc: var(--green-300); = --_no-bg: var(--green-100); --_no-btn-bg-active: var(--green-200); --_no-bt= n-bg-focus: var(--green-200); --_no-btn-fc: var(--green-500); --_no-code-bc= : var(--green-300); --_no-code-bg: var(--green-200); } .s-notice__success.s-notice__important { --_no-bc: var(--_no-bg); --_no-bg:= var(--green-400); --_no-fc: var(--white); --_no-btn-bg-active: var(--green= -500); --_no-btn-bg-focus: var(--green-500); --_no-btn-fc: var(--green-100)= ; --_no-code-bc: var(--green-300); --_no-code-bg: var(--green-500); } body.theme-highcontrast .s-notice__success.s-notice__important { --_no-bg: = var(--green-500); } .s-notice__warning:not(.s-notice__important) { --_no-bc: var(--yellow-300);= --_no-bg: var(--yellow-100); --_no-btn-bg-active: var(--yellow-200); --_no= -btn-bg-focus: var(--yellow-200); --_no-code-bc: var(--yellow-300); --_no-c= ode-bg: var(--yellow-200); --_no-btn-fc: var(--yellow-600); } .s-notice__warning.s-notice__important { --_no-bc: var(--_no-bg); --_no-bg:= var(--yellow-400); --_no-fc: var(--black); --_no-btn-fc: var(--_no-fc); --= _no-btn-bg-active: var(--yellow-300); --_no-btn-bg-focus: var(--yellow-300)= ; --_no-code-bc: var(--yellow-500); --_no-code-bg: var(--yellow-300); } @media (prefers-color-scheme: dark) { body.theme-system .s-notice__warning.s-notice__important { --_no-fc: var(= --white); --_no-code-bc: var(--yellow-300); --_no-code-bg: var(--yellow-500= ); } } body.theme-dark .s-notice__warning.s-notice__important, .theme-dark__forced= .s-notice__warning.s-notice__important, body.theme-system .theme-dark__for= ced .s-notice__warning.s-notice__important { --_no-fc: var(--white); --_no-= code-bc: var(--yellow-300); --_no-code-bg: var(--yellow-500); } body.theme-highcontrast .s-notice__warning.s-notice__important { --_no-bg: = var(--yellow-500); --_no-fc: var(--white); --_no-btn-bg-active: transparent= ; --_no-btn-bg-focus: transparent; } .s-notice code { background-color: var(--_no-code-bg); color: var(--_no-cod= e-fc); outline: var(--su-static1) solid var(--_no-code-bc); border-radius: = var(--br-sm); padding-left: var(--su2); padding-right: var(--su2); } .s-notice .s-notice--btn { padding: var(--su8); color: var(--_no-btn-fc, in= herit) !important; } .s-notice .s-notice--btn:active { background-color: var(--_no-btn-bg-active= , inherit) !important; } .s-notice .s-notice--btn:focus-visible, .s-notice .s-notice--btn:hover, .s-= notice .s-notice--btn.focus-inset-bordered { background-color: var(--_no-bt= n-bg-focus, inherit) !important; } .s-page-title { --_pt-ai: flex-end; --_pt-fd: row; --_pt-actions-ml: var(--= su8); --_pt-actions-mt: unset; --_pt-breadcrums-mb: var(--su8); align-items= : var(--_pt-ai); flex-direction: var(--_pt-fd); border-bottom: var(--su-sta= tic1) solid var(--bc-medium); display: flex; justify-content: space-between= ; padding-bottom: var(--su16); width: 100%; } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-page-title { --_pt-= breadcrums-mb: var(--su2); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-page-title { --_pt-breadc= rums-mb: var(--su2); } } @media (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .s-page-title { --_pt-= ai: flex-start; --_pt-fd: column; --_pt-actions-ml: 0; --_pt-actions-mt: va= r(--su8); } } @media (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .s-page-title { --_pt-ai: fl= ex-start; --_pt-fd: column; --_pt-actions-ml: 0; --_pt-actions-mt: var(--su= 8); } } .s-page-title .s-page-title--actions { margin-left: var(--_pt-actions-ml); = margin-top: var(--_pt-actions-mt); flex-shrink: 0; } .s-page-title .s-page-title--description { color: var(--fc-light); font-siz= e: var(--fs-body2); margin-bottom: 0px; margin-top: var(--su4); } .s-page-title .s-page-title--header { color: var(--fc-dark); font-size: var= (--fs-headline1); font-weight: bold; line-height: var(--lh-sm); margin: 0px= ; } .s-page-title .s-breadcrumbs { margin-bottom: var(--_pt-breadcrums-mb); } .s-pagination { display: flex; flex-wrap: wrap; gap: var(--su4); } .s-pagination .s-pagination--item { --_pa-item-bg: transparent; --_pa-item-= bc: var(--bc-darker); --_pa-item-fc: var(--fc-medium); --_pa-item-bg-focus:= var(--black-400); --_pa-item-fc-focus: var(--white); --_pa-item-bg-hover: = var(--black-225); --_pa-item-bc-hover: var(--bc-darker); --_pa-item-fc-hove= r: var(--fc-dark); background-color: var(--_pa-item-bg); border: 1px solid = var(--_pa-item-bc); color: var(--_pa-item-fc); border-radius: var(--br-sm);= font-size: var(--fs-body1); line-height: var(--lh-xl); padding: 0 var(--su= 8); } body.theme-highcontrast .s-pagination .s-pagination--item { text-decoration= : none; } .s-pagination .s-pagination--item.is-selected { --_pa-item-bg: var(--theme-= primary); --_pa-item-bc: transparent; --_pa-item-fc: var(--white); --_pa-it= em-bg-focus: var(--theme-primary-400); } .s-pagination .s-pagination--item.s-pagination--item__clear { --_pa-item-bg= : transparent; --_pa-item-bc: transparent; --_pa-item-fc: inherit; } .s-pagination .s-pagination--item.is-selected, .s-pagination .s-pagination-= -item.s-pagination--item__clear { --_pa-item-bc-hover: var(--_pa-item-bc); = --_pa-item-bg-hover: var(--_pa-item-bg); --_pa-item-fc-hover: var(--_pa-ite= m-fc); } .s-pagination .s-pagination--item:hover { background-color: var(--_pa-item-= bg-hover); border-color: var(--_pa-item-bc-hover); color: var(--_pa-item-fc= -hover); } .s-pagination .s-pagination--item:focus-visible { box-shadow: inset 0 0 0 v= ar(--su-static1) var(--focus-theme),inset 0 0 0 calc(var(--su-static4) - va= r(--su-static1)) var(--focus-neutral); border-color: var(--focus-theme) !im= portant; outline: var(--su-static2) solid transparent !important; } .s-pagination .s-pagination--item:focus-visible, .s-pagination .s-paginatio= n--item.focus-inset-bordered { background-color: var(--_pa-item-bg-focus); = color: var(--_pa-item-fc-focus); } .s-popover { --_po-bg: var(--white); --_po-bc: var(--bc-medium); --_po-bs: = var(--bs-md); --_po-d: none; --_po-wmn: 12rem; --_po-w: 100%; --_po-arrow-f= c: var(--white); --_po-arrow-b: unset; --_po-arrow-l: unset; --_po-arrow-r:= unset; --_po-arrow-t: unset; --_po-arrow-ps: calc(var(--su6) * -1); --_po-= arrow-after-b: unset; --_po-arrow-after-l: unset; --_po-arrow-after-r: unse= t; --_po-arrow-after-t: unset; --_po-arrow-after-bs: unset; --_po-topbar-he= ight: var(--theme-topbar-height, calc(var(--su-static48) + var(--su-static8= ))); --_po-content-mxh: calc(100vh - var(--_po-topbar-height) - var(--su48)= ); background-color: var(--_po-bg); border: 1px solid var(--_po-bc); box-sh= adow: var(--_po-bs); display: var(--_po-d); min-width: var(--_po-wmn); widt= h: var(--_po-w); border-radius: var(--br-md); color: var(--fc-dark); font-s= ize: var(--fs-body1); max-width: 24rem; padding: var(--su12); position: abs= olute; white-space: normal; z-index: var(--zi-popovers); } @media (prefers-color-scheme: dark) { body.theme-system .s-popover { --_po-bg: var(--black-200); --_po-bc: var(= --bc-light); --_po-bs: var(--bs-lg); --_po-arrow-fc: var(--black-200); } } body.theme-dark .s-popover, .theme-dark__forced .s-popover, body.theme-syst= em .theme-dark__forced .s-popover { --_po-bg: var(--black-200); --_po-bc: v= ar(--bc-light); --_po-bs: var(--bs-lg); --_po-arrow-fc: var(--black-200); } .s-popover.is-visible { --_po-d: block; } .s-popover.s-popover__tooltip { --_po-wmn: unset; --_po-w: auto; } .s-popover[data-popper-placement^=3D"top"] > .s-popover--arrow, .s-popover = .s-popover--arrow__bc, .s-popover .s-popover--arrow__bl, .s-popover .s-popo= ver--arrow__br { --_po-arrow-b: var(--_po-arrow-ps); --_po-arrow-after-b: v= ar(--su-static1); --_po-arrow-after-bs: 2px 2px 5px 0 hsla(0,0%,0%,0.07), 2= px 2px 2px -1px hsla(0, 0%, 0%, 0.1); } body.theme-highcontrast .s-popover[data-popper-placement^=3D"top"] > .s-pop= over--arrow, body.theme-highcontrast .s-popover .s-popover--arrow__bc, body= .theme-highcontrast .s-popover .s-popover--arrow__bl, body.theme-highcontra= st .s-popover .s-popover--arrow__br { --_po-arrow-after-bs: 1px 1px 0 0 var= (--bc-medium); } .s-popover[data-popper-placement^=3D"bottom"] > .s-popover--arrow, .s-popov= er .s-popover--arrow__tc, .s-popover .s-popover--arrow__tl, .s-popover .s-p= opover--arrow__tr { --_po-arrow-t: var(--_po-arrow-ps); --_po-arrow-after-t= : var(--su-static1); --_po-arrow-after-bs: -1px -1px 1px 0 hsla(0,0%,0%,0.1= 2); } body.theme-highcontrast .s-popover[data-popper-placement^=3D"bottom"] > .s-= popover--arrow, body.theme-highcontrast .s-popover .s-popover--arrow__tc, b= ody.theme-highcontrast .s-popover .s-popover--arrow__tl, body.theme-highcon= trast .s-popover .s-popover--arrow__tr { --_po-arrow-after-bs: -1px -1px 0 = 0 var(--bc-medium); } .s-popover[data-popper-placement^=3D"left"] > .s-popover--arrow, .s-popover= .s-popover--arrow__rc, .s-popover .s-popover--arrow__rt, .s-popover .s-pop= over--arrow__rb { --_po-arrow-r: var(--_po-arrow-ps); --_po-arrow-after-r: = var(--su-static1); --_po-arrow-after-bs: 2px -2px 5px 0 hsla(0,0%,0%,0.07),= 2px -2px 2px -1px hsla(0, 0%, 0%, 0.1); } body.theme-highcontrast .s-popover[data-popper-placement^=3D"left"] > .s-po= pover--arrow, body.theme-highcontrast .s-popover .s-popover--arrow__rc, bod= y.theme-highcontrast .s-popover .s-popover--arrow__rt, body.theme-highcontr= ast .s-popover .s-popover--arrow__rb { --_po-arrow-after-bs: 1px -1px 0 0 v= ar(--bc-medium); } .s-popover[data-popper-placement^=3D"right"] > .s-popover--arrow, .s-popove= r .s-popover--arrow__lc, .s-popover .s-popover--arrow__lt, .s-popover .s-po= pover--arrow__lb { --_po-arrow-l: var(--_po-arrow-ps); --_po-arrow-after-l:= var(--su-static1); --_po-arrow-after-bs: -2px 2px 5px 0 hsla(0,0%,0%,0.07)= , -2px 2px 2px -1px hsla(0, 0%, 0%, 0.1); } body.theme-highcontrast .s-popover[data-popper-placement^=3D"right"] > .s-p= opover--arrow, body.theme-highcontrast .s-popover .s-popover--arrow__lc, bo= dy.theme-highcontrast .s-popover .s-popover--arrow__lt, body.theme-highcont= rast .s-popover .s-popover--arrow__lb { --_po-arrow-after-bs: -1px 1px 0 0 = var(--bc-medium); } .s-popover .s-popover--arrow__tc, .s-popover .s-popover--arrow__bc { --_po-= arrow-l: calc(50% - var(--su6)); } .s-popover .s-popover--arrow__lc, .s-popover .s-popover--arrow__rc { --_po-= arrow-t: calc(50% - var(--su6)); } .s-popover .s-popover--arrow__tr, .s-popover .s-popover--arrow__br { --_po-= arrow-r: var(--su12); } .s-popover .s-popover--arrow__rb, .s-popover .s-popover--arrow__lb { --_po-= arrow-b: var(--su12); } .s-popover .s-popover--arrow { bottom: var(--_po-arrow-b); color: var(--_po= -arrow-fc); left: var(--_po-arrow-l); right: var(--_po-arrow-r); top: var(-= -_po-arrow-t); } .s-popover .s-popover--arrow, .s-popover .s-popover--arrow::before, .s-popo= ver .s-popover--arrow::after { display: block; height: var(--su12); positio= n: absolute; width: var(--su12); z-index: -1; } .s-popover .s-popover--arrow::before, .s-popover .s-popover--arrow::after {= content: ""; transform: rotate(45deg); } .s-popover .s-popover--arrow::after { bottom: var(--_po-arrow-after-b); box= -shadow: var(--_po-arrow-after-bs); left: var(--_po-arrow-after-l); right: = var(--_po-arrow-after-r); top: var(--_po-arrow-after-t); background: curren= tcolor; border-radius: calc(var(--su-static1) * 1.5); } .s-popover .s-popover--close { float: right; top: calc(var(--su8) * -1); ri= ght: calc(var(--su8) * -1); padding: var(--su8) !important; } .s-popover .s-popover--content { max-height: var(--_po-content-mxh); overfl= ow-y: auto; margin: calc(var(--su12) * -1); padding: var(--su12); } .s-post-summary { --_ps-bb: var(--su1) solid var(--bc-light); --_ps-bg: uns= et; --_ps-o: unset; --_ps-content-excerpt-fc: var(--_ps-state-fc, var(--fc-= medium)); --_ps-content-title-a-fc: var(--_ps-state-fc, var(--theme-post-ti= tle-color, var(--theme-link-color, var(--theme-secondary-400)))); --_ps-con= tent-title-a-fc-hover: var(--_ps-state-fc, var(--theme-post-title-color-hov= er, var(--theme-link-color-hover, var(--theme-secondary-500)))); --_ps-cont= ent-title-a-fc-visited: var(--_ps-state-fc, var(--theme-post-title-color-vi= sited, var(--theme-link-color-visited, var(--purple-500)))); --_ps-content-= title-a-fc-hover-visited: var(--_ps-state-fc, var(--theme-post-title-color-= hover, var(--theme-link-color-hover, var(--purple-600)))); --_ps-stats-ai: = flex-end; --_ps-stats-fc: var(--_ps-state-fc, var(--fc-light)); --_ps-stats= -fd: column; --_ps-stats-w: calc(var(--su96) + var(--su12)); --_ps-has-answ= ers-bc: var(--green-400); --_ps-has-answers-bg: unset; --_ps-has-answers-fc= : var(--green-400); --_ps-has-accepted-answers-bc: var(--green-400); --_ps-= has-accepted-answers-bg: var(--green-400); --_ps-has-accepted-answers-fc: v= ar(--white); --_ps-stats-item-emphasized-fc: var(--_ps-state-fc, var(--fc-d= ark)); background-color: var(--_ps-bg); border-bottom: var(--_ps-bb); displ= ay: flex; padding: var(--su16); position: relative; } @media (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .s-post-summary { --_p= s-stats-ai: center; --_ps-stats-fd: row; --_ps-stats-w: auto; flex-directio= n: column; } } @media (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .s-post-summary { --_ps-stat= s-ai: center; --_ps-stats-fd: row; --_ps-stats-w: auto; flex-direction: col= umn; } } .s-post-summary.s-post-summary__minimal, .s-post-summary .s-post-summary--a= nswer { --_ps-stats-ai: center; --_ps-stats-fd: row; --_ps-stats-w: auto; } .s-post-summary.s-post-summary__minimal { flex-direction: column; } .s-post-summary.s-post-summary__minimal .s-post-summary--content { width: 1= 00%; } .s-post-summary.s-post-summary__deleted, .s-post-summary.s-post-summary__ig= nored { --_ps-o: .75; --_ps-has-answers-bc: var(--black-350); --_ps-has-ans= wers-bg: transparent; --_ps-has-answers-fc: var(--_ps-state-fc); --_ps-has-= accepted-answers-bc: transparent; --_ps-has-accepted-answers-bg: var(--blac= k-150); --_ps-has-accepted-answers-fc: var(--_ps-state-fc); --_ps-meta-tags= -tag-bg: var(--black-150); --_ps-meta-tags-tag-fc: var(--_ps-state-fc); --_= ps-state-fc: var(--black-400); } .s-post-summary.s-post-summary__deleted .s-post-summary--meta-tags a, .s-po= st-summary.s-post-summary__ignored .s-post-summary--meta-tags a, .s-post-su= mmary.s-post-summary__deleted .s-post-summary--meta-tags .post-tag, .s-post= -summary.s-post-summary__ignored .s-post-summary--meta-tags .post-tag, .s-p= ost-summary.s-post-summary__deleted .s-post-summary--meta-tags .s-tag, .s-p= ost-summary.s-post-summary__ignored .s-post-summary--meta-tags .s-tag, .s-p= ost-summary.s-post-summary__deleted .s-post-summary--meta-tags a:active, .s= -post-summary.s-post-summary__ignored .s-post-summary--meta-tags a:active, = .s-post-summary.s-post-summary__deleted .s-post-summary--meta-tags .post-ta= g:active, .s-post-summary.s-post-summary__ignored .s-post-summary--meta-tag= s .post-tag:active, .s-post-summary.s-post-summary__deleted .s-post-summary= --meta-tags .s-tag:active, .s-post-summary.s-post-summary__ignored .s-post-= summary--meta-tags .s-tag:active, .s-post-summary.s-post-summary__deleted .= s-post-summary--meta-tags a:hover, .s-post-summary.s-post-summary__ignored = .s-post-summary--meta-tags a:hover, .s-post-summary.s-post-summary__deleted= .s-post-summary--meta-tags .post-tag:hover, .s-post-summary.s-post-summary= __ignored .s-post-summary--meta-tags .post-tag:hover, .s-post-summary.s-pos= t-summary__deleted .s-post-summary--meta-tags .s-tag:hover, .s-post-summary= .s-post-summary__ignored .s-post-summary--meta-tags .s-tag:hover, .s-post-s= ummary.s-post-summary__deleted .s-post-summary--meta-tags a:focus, .s-post-= summary.s-post-summary__ignored .s-post-summary--meta-tags a:focus, .s-post= -summary.s-post-summary__deleted .s-post-summary--meta-tags .post-tag:focus= , .s-post-summary.s-post-summary__ignored .s-post-summary--meta-tags .post-= tag:focus, .s-post-summary.s-post-summary__deleted .s-post-summary--meta-ta= gs .s-tag:focus, .s-post-summary.s-post-summary__ignored .s-post-summary--m= eta-tags .s-tag:focus, .s-post-summary.s-post-summary__deleted .s-post-summ= ary--meta-tags a .focus-bordered, .s-post-summary.s-post-summary__ignored .= s-post-summary--meta-tags a .focus-bordered, .s-post-summary.s-post-summary= __deleted .s-post-summary--meta-tags .post-tag .focus-bordered, .s-post-sum= mary.s-post-summary__ignored .s-post-summary--meta-tags .post-tag .focus-bo= rdered, .s-post-summary.s-post-summary__deleted .s-post-summary--meta-tags = .s-tag .focus-bordered, .s-post-summary.s-post-summary__ignored .s-post-sum= mary--meta-tags .s-tag .focus-bordered { background-color: var(--_ps-meta-t= ags-tag-bg); color: var(--black-500); } body.theme-highcontrast .s-post-summary.s-post-summary__deleted .s-post-sum= mary--meta-tags a, body.theme-highcontrast .s-post-summary.s-post-summary__= ignored .s-post-summary--meta-tags a, body.theme-highcontrast .s-post-summa= ry.s-post-summary__deleted .s-post-summary--meta-tags .post-tag, body.theme= -highcontrast .s-post-summary.s-post-summary__ignored .s-post-summary--meta= -tags .post-tag, body.theme-highcontrast .s-post-summary.s-post-summary__de= leted .s-post-summary--meta-tags .s-tag, body.theme-highcontrast .s-post-su= mmary.s-post-summary__ignored .s-post-summary--meta-tags .s-tag, body.theme= -highcontrast .s-post-summary.s-post-summary__deleted .s-post-summary--meta= -tags a:active, body.theme-highcontrast .s-post-summary.s-post-summary__ign= ored .s-post-summary--meta-tags a:active, body.theme-highcontrast .s-post-s= ummary.s-post-summary__deleted .s-post-summary--meta-tags .post-tag:active,= body.theme-highcontrast .s-post-summary.s-post-summary__ignored .s-post-su= mmary--meta-tags .post-tag:active, body.theme-highcontrast .s-post-summary.= s-post-summary__deleted .s-post-summary--meta-tags .s-tag:active, body.them= e-highcontrast .s-post-summary.s-post-summary__ignored .s-post-summary--met= a-tags .s-tag:active, body.theme-highcontrast .s-post-summary.s-post-summar= y__deleted .s-post-summary--meta-tags a:hover, body.theme-highcontrast .s-p= ost-summary.s-post-summary__ignored .s-post-summary--meta-tags a:hover, bod= y.theme-highcontrast .s-post-summary.s-post-summary__deleted .s-post-summar= y--meta-tags .post-tag:hover, body.theme-highcontrast .s-post-summary.s-pos= t-summary__ignored .s-post-summary--meta-tags .post-tag:hover, body.theme-h= ighcontrast .s-post-summary.s-post-summary__deleted .s-post-summary--meta-t= ags .s-tag:hover, body.theme-highcontrast .s-post-summary.s-post-summary__i= gnored .s-post-summary--meta-tags .s-tag:hover, body.theme-highcontrast .s-= post-summary.s-post-summary__deleted .s-post-summary--meta-tags a:focus, bo= dy.theme-highcontrast .s-post-summary.s-post-summary__ignored .s-post-summa= ry--meta-tags a:focus, body.theme-highcontrast .s-post-summary.s-post-summa= ry__deleted .s-post-summary--meta-tags .post-tag:focus, body.theme-highcont= rast .s-post-summary.s-post-summary__ignored .s-post-summary--meta-tags .po= st-tag:focus, body.theme-highcontrast .s-post-summary.s-post-summary__delet= ed .s-post-summary--meta-tags .s-tag:focus, body.theme-highcontrast .s-post= -summary.s-post-summary__ignored .s-post-summary--meta-tags .s-tag:focus, b= ody.theme-highcontrast .s-post-summary.s-post-summary__deleted .s-post-summ= ary--meta-tags a .focus-bordered, body.theme-highcontrast .s-post-summary.s= -post-summary__ignored .s-post-summary--meta-tags a .focus-bordered, body.t= heme-highcontrast .s-post-summary.s-post-summary__deleted .s-post-summary--= meta-tags .post-tag .focus-bordered, body.theme-highcontrast .s-post-summar= y.s-post-summary__ignored .s-post-summary--meta-tags .post-tag .focus-borde= red, body.theme-highcontrast .s-post-summary.s-post-summary__deleted .s-pos= t-summary--meta-tags .s-tag .focus-bordered, body.theme-highcontrast .s-pos= t-summary.s-post-summary__ignored .s-post-summary--meta-tags .s-tag .focus-= bordered { border-color: currentcolor; } .s-post-summary.s-post-summary__deleted .s-user-card a, .s-post-summary.s-p= ost-summary__ignored .s-user-card a, .s-post-summary.s-post-summary__delete= d .s-user-card .s-user-card--link, .s-post-summary.s-post-summary__ignored = .s-user-card .s-user-card--link, .s-post-summary.s-post-summary__deleted .s= -user-card .s-user-card--rep, .s-post-summary.s-post-summary__ignored .s-us= er-card .s-user-card--rep, .s-post-summary.s-post-summary__deleted .s-user-= card .s-user-card--time, .s-post-summary.s-post-summary__ignored .s-user-ca= rd .s-user-card--time { color: var(--_ps-state-fc); } .s-post-summary.s-post-summary__deleted .s-user-card .s-badge, .s-post-summ= ary.s-post-summary__ignored .s-user-card .s-badge { filter: grayscale(100%)= ; } .s-post-summary.s-post-summary__deleted, .s-post-summary.s-post-summary__wa= tched { background-color: var(--_ps-bg); } .s-post-summary.s-post-summary__deleted { --_ps-bg: var(--red-100); --_ps-h= as-accepted-answers-bg: var(--black-200); --_ps-has-accepted-answers-fc: va= r(--black-500); --_ps-meta-tags-tag-bg: var(--black-200); } .s-post-summary.s-post-summary__deleted .is-deleted, .s-post-summary.s-post= -summary__deleted .s-badge__danger.s-badge__filled { background-color: var(= --red-500); } @media (prefers-color-scheme: dark) { body.theme-system .s-post-summary.s-post-summary__deleted .is-deleted, bo= dy.theme-system .s-post-summary.s-post-summary__deleted .s-badge__danger.s-= badge__filled { background-color: var(--red-600); color: var(--white); } } body.theme-dark .s-post-summary.s-post-summary__deleted .is-deleted, body.t= heme-dark .s-post-summary.s-post-summary__deleted .s-badge__danger.s-badge_= _filled, .theme-dark__forced .s-post-summary.s-post-summary__deleted .is-de= leted, .theme-dark__forced .s-post-summary.s-post-summary__deleted .s-badge= __danger.s-badge__filled, body.theme-system .theme-dark__forced .s-post-sum= mary.s-post-summary__deleted .is-deleted, body.theme-system .theme-dark__fo= rced .s-post-summary.s-post-summary__deleted .s-badge__danger.s-badge__fill= ed { background-color: var(--red-600); color: var(--white); } .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.= s-post-summary__ignored) { --_ps-bg: var(--yellow-100); --_ps-stats-fc: var= (--black-400); --_ps-content-title-a-fc: var(--theme-post-title-color, var(= --theme-link-color, var(--theme-secondary-400))); --_ps-content-title-a-fc-= hover: var(--theme-post-title-color-hover, var(--theme-link-color-hover, va= r(--theme-secondary-500))); --_ps-content-title-a-fc-visited: var(--theme-p= ost-title-color-visited, var(--theme-link-color-visited, var(--purple-500))= ); --_ps-content-title-a-fc-hover-visited: var(--theme-post-title-color-hov= er, var(--theme-link-color-hover, var(--purple-600))); } .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.= s-post-summary__ignored) .s-user-card a { color: var(--_ps-content-title-a-= fc); } .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.= s-post-summary__ignored) .s-user-card a:active, .s-post-summary.s-post-summ= ary__watched:not(.s-post-summary__deleted):not(.s-post-summary__ignored) .s= -user-card a:hover { color: var(--_ps-content-title-a-fc-hover); } .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.= s-post-summary__ignored) .s-user-card a:visited { color: var(--_ps-content-= title-a-fc-visited); } .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.= s-post-summary__ignored) .s-user-card a:visited:hover { color: var(--_ps-co= ntent-title-a-fc-hover-visited); } .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.= s-post-summary__ignored) .s-user-card .s-user-card--rep, .s-post-summary.s-= post-summary__watched:not(.s-post-summary__deleted):not(.s-post-summary__ig= nored) .s-user-card .s-user-card--time { color: var(--black-500); } .s-post-summary:last-child { --_ps-bb: none; } .s-post-summary .s-post-summary--answer { margin: var(--su16) 1em 0 1em; pa= dding: .5em 0 .5em calc(1em + var(--su4)); position: relative; } .s-post-summary .s-post-summary--answer + .s-post-summary .s-post-summary--= answer { margin-top: var(--su16); } .s-post-summary .s-post-summary--answer::before { background: var(--black-2= 50); border-radius: var(--su8); bottom: 0px; content: ""; display: block; l= eft: 0px; position: absolute; top: 0px; width: var(--su4); } body.theme-highcontrast .s-post-summary .s-post-summary--answer::before { b= ackground: var(--black-500); } .s-post-summary .s-post-summary--answer-excerpt { display: -webkit-box; -we= bkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; color: = var(--black-500); margin-bottom: var(--su8); } .s-post-summary .s-post-summary--content { flex-grow: 1; max-width: 100%; } .s-post-summary .s-post-summary--content > :not(.s-post-summary--content-me= nu-button):not(.s-post-summary--meta):not(.s-popover) { opacity: var(--_ps-= o); } .s-post-summary .s-post-summary--content-excerpt { display: -webkit-box; -w= ebkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color:= var(--_ps-content-excerpt-fc); font-family: var(--theme-post-body-font-fam= ily, var(--theme-body-font-family)); margin-top: calc(var(--su2) * -1); mar= gin-bottom: var(--su8); word-break: break-word !important; overflow-wrap: b= reak-word !important; hyphens: auto !important; } .s-post-summary .s-post-summary--content-excerpt.s-post-summary--content-ex= cerpt__sm { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient= : vertical; overflow: hidden; } .s-post-summary .s-post-summary--content-excerpt.s-post-summary--content-ex= cerpt__md { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient= : vertical; overflow: hidden; } .s-post-summary .s-post-summary--content-excerpt.s-post-summary--content-ex= cerpt__lg { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient= : vertical; overflow: hidden; } .s-post-summary .s-post-summary--content-menu-button { right: var(--su8); t= op: var(--su8); } .s-post-summary .s-post-summary--content-menu-button .svg-icon { margin: 0p= x !important; } .s-post-summary .s-post-summary--content-menu-button, .s-post-summary .s-po= st-summary--content-menu-button.s-btn { padding: var(--su8); position: abso= lute; } .s-post-summary .s-post-summary--content-title { display: block; font-size:= var(--fs-body3); font-weight: normal; line-height: var(--lh-md); margin-bo= ttom: 0.3846rem; margin-top: -0.15rem; padding-right: var(--su24); word-bre= ak: break-word !important; overflow-wrap: break-word !important; hyphens: a= uto !important; } .s-post-summary .s-post-summary--content-title a { color: var(--_ps-content= -title-a-fc); font-family: var(--theme-post-title-font-family, var(--theme-= body-font-family)); word-break: break-word !important; overflow-wrap: break= -word !important; hyphens: auto !important; } .s-post-summary .s-post-summary--content-title a:active, .s-post-summary .s= -post-summary--content-title a:hover { color: var(--_ps-content-title-a-fc-= hover); } .s-post-summary .s-post-summary--content-title a:visited { color: var(--_ps= -content-title-a-fc-visited); } .s-post-summary .s-post-summary--content-title a:visited:hover { color: var= (--_ps-content-title-a-fc-hover-visited); } .s-post-summary .s-post-summary--content-title .iconShield { color: var(--f= c-light); } .s-post-summary .s-post-summary--content-title .svg-icon { position: relati= ve; top: calc(var(--su1) * -1); vertical-align: text-bottom; } .s-post-summary .s-post-summary--content-type { color: var(--fc-medium); ma= rgin-bottom: var(--su4); } .s-post-summary .s-post-summary--content-type .svg-icon { color: var(--fc-l= ight); margin-left: calc(var(--su2) * -1); } .s-post-summary .s-post-summary--meta { align-items: center; column-gap: va= r(--su6); display: flex; flex-wrap: wrap; justify-content: space-between; r= ow-gap: var(--su8); } .s-post-summary .s-post-summary--meta > :not(.s-post-summary--meta-tags):no= t(.s-user-card) > * { opacity: var(--_ps-o); } .s-post-summary .s-post-summary--meta .s-user-card { flex-wrap: wrap; justi= fy-content: flex-end; margin-left: auto; } .s-post-summary .s-post-summary--meta .s-user-card > :not(.magic-popup) { o= pacity: var(--_ps-o); } .s-post-summary .s-post-summary--meta-tags { display: flex; flex-wrap: wrap= ; gap: var(--su4); } .s-post-summary .s-post-summary--meta-tags > ul > li > a, .s-post-summary .= s-post-summary--meta-tags > a, .s-post-summary .s-post-summary--meta-tags .= post-tag, .s-post-summary .s-post-summary--meta-tags .s-tag { opacity: var(= --_ps-o); } .s-post-summary .s-post-summary--stats { align-items: var(--_ps-stats-ai); = color: var(--_ps-stats-fc); flex-direction: var(--_ps-stats-fd); width: var= (--_ps-stats-w); display: flex; flex-shrink: 0; flex-wrap: wrap; font-size:= var(--fs-body1); gap: var(--su6); margin-bottom: var(--su4); margin-right:= var(--su16); } .s-post-summary .s-post-summary--stats > :not(.s-badge__danger) { opacity: = var(--_ps-o); } .s-post-summary .s-post-summary--stats-item:not(.s-badge) { align-items: ce= nter; border: var(--su1) solid transparent; display: inline-flex; gap: 0.3e= m; justify-content: center; white-space: nowrap; } .s-post-summary .s-post-summary--stats-item:not(.s-badge).is-deleted { colo= r: var(--white); } .s-post-summary .s-post-summary--stats-item.s-badge { font-size: var(--fs-b= ody1); line-height: var(--lh-md); padding: var(--su2) var(--su4); } .s-post-summary .s-post-summary--stats-item.has-answers, .s-post-summary .s= -post-summary--stats-item.has-bounty, .s-post-summary .s-post-summary--stat= s-item.is-archived, .s-post-summary .s-post-summary--stats-item.is-closed, = .s-post-summary .s-post-summary--stats-item.is-deleted, .s-post-summary .s-= post-summary--stats-item.is-draft, .s-post-summary .s-post-summary--stats-i= tem.is-pinned, .s-post-summary .s-post-summary--stats-item.is-published, .s= -post-summary .s-post-summary--stats-item.is-review { border-radius: var(--= br-sm); padding: var(--su2) var(--su4); } .s-post-summary .s-post-summary--stats-item.has-answers { background-color:= var(--_ps-has-answers-bg); border: var(--su1) solid var(--_ps-has-answers-= bc); color: var(--_ps-has-answers-fc); } .s-post-summary .s-post-summary--stats-item.has-answers.has-accepted-answer= { background-color: var(--_ps-has-accepted-answers-bg); border-color: var(= --_ps-has-accepted-answers-bc); color: var(--_ps-has-accepted-answers-fc); = } .s-post-summary .s-post-summary--stats-item.has-bounty { background-color: = var(--blue-500); color: var(--white); } .s-post-summary .s-post-summary--stats-item.is-warm { color: var(--_ps-stat= e-fc, var(--yellow-500)); } .s-post-summary .s-post-summary--stats-item.is-hot { color: var(--_ps-state= -fc, var(--orange-500)); } .s-post-summary .s-post-summary--stats-item.is-supernova { color: var(--_ps= -state-fc, var(--red-500)); } .s-post-summary .s-post-summary--stats-item.is-archived { background-color:= var(--black-225); border-color: var(--black-500); color: var(--black-600);= } .s-post-summary .s-post-summary--stats-item.is-closed { background-color: v= ar(--red-300); border-color: var(--red-500); color: var(--red-600); } .s-post-summary .s-post-summary--stats-item.is-draft { background-color: va= r(--blue-300); border-color: var(--blue-500); color: var(--blue-600); } .s-post-summary .s-post-summary--stats-item.is-pinned { background-color: v= ar(--black-500); color: var(--white); } .s-post-summary .s-post-summary--stats-item.is-published { background-color= : var(--black-150); color: var(--black-600); } .s-post-summary .s-post-summary--stats-item.is-review { background-color: v= ar(--yellow-300); border-color: var(--yellow-500); color: var(--yellow-600)= ; } .s-post-summary .s-post-summary--stats-item__emphasized { color: var(--_ps-= stats-item-emphasized-fc); } .s-post-summary .s-post-summary--stats-item-number { font-weight: 500; } .s-progress { --_pr-bar: var(--br-sm); --_pr-bg: var(--black-300); --_pr-h:= unset; --_pr-size: unset; --_pr-w: 100%; --_pr-hmn: var(--su-static4); --_= pr-bar-bar: var(--br-sm); --_pr-bar-bg: var(--green-400); --_pr-bar-hmn: va= r(--su-static4); --_pr-label-ai: unset; --_pr-label-bc: transparent; --_pr-= label-d: unset; --_pr-label-g: unset; --_pr-label-jc: unset; --_pr-label-px= : unset; background-color: var(--_pr-bg); border-radius: var(--_pr-bar); he= ight: var(--_pr-size, var(--_pr-h)); min-height: var(--_pr-hmn); min-width:= var(--su-static6); position: relative; width: var(--_pr-size, var(--_pr-w)= ); } .s-progress.s-progress__brand { --_pr-bar-bg: var(--orange-400); } .s-progress.s-progress__bronze { --_pr-bar-bg: var(--bronze-100); --_pr-lab= el-bc: var(--bronze-400); } .s-progress.s-progress__gold { --_pr-bar-bg: var(--gold-100); --_pr-label-b= c: var(--gold-400); } .s-progress.s-progress__info { --_pr-bar-bg: var(--blue-400); } .s-progress.s-progress__silver { --_pr-bar-bg: var(--silver-100); --_pr-lab= el-bc: var(--silver-400); } .s-progress.s-progress__badge, .s-progress.s-progress__privilege { --_pr-ba= r: var(--br-md); --_pr-bg: transparent; --_pr-hmn: 2em; --_pr-bar-bar: var(= --br-md); --_pr-bar-hmn: 2em; --_pr-label-d: flex; --_pr-label-g: var(--su4= ); } .s-progress.s-progress__badge { --_pr-label-ai: center; --_pr-label-px: 1em= ; } .s-progress.s-progress__badge .s-progress--label .s-badge--label { flex-gro= w: 1; text-align: center; } .s-progress.s-progress__circular { --_pr-bg: transparent; --_pr-size: var(-= -su-static32); --s-progress-value: 0; } .s-progress.s-progress__circular.s-progress__sm { --_pr-size: var(--su-stat= ic24); } .s-progress.s-progress__circular.s-progress__md { --_pr-size: var(--su-stat= ic48); } .s-progress.s-progress__circular.s-progress__lg { --_pr-size: var(--su-stat= ic64); } .s-progress.s-progress__circular .s-progress-bar { transform: rotate(270deg= ); } .s-progress.s-progress__circular .s-progress-bar circle { fill: none; strok= e-linecap: round; stroke-width: var(--su-static4); } .s-progress.s-progress__circular .s-progress-bar circle:nth-of-type(1) { op= acity: 0.4; stroke: currentcolor; } .s-progress.s-progress__circular .s-progress-bar circle:nth-of-type(2) { st= roke: currentcolor; stroke-dasharray: 87.9646; stroke-dashoffset: calc(((1 = - var(--s-progress-value)) * 87.9645943) * 1px); } .s-progress.s-progress__privilege { --_pr-bar-bg: var(--green-200); --_pr-l= abel-ai: center; --_pr-label-bc: var(--green-400); --_pr-label-jc: center; = } body.theme-highcontrast .s-progress.s-progress__privilege { --_pr-bar-bg: v= ar(--green-300); } .s-progress.s-progress__stepped { background: transparent; display: flex; } .s-progress.s-progress__stepped .s-progress--bar { background: var(--black-= 250); border-radius: 0px; height: var(--su-static6); position: absolute; to= p: calc(var(--su-static8) + var(--su-static1)); z-index: var(--zi-base); } .s-progress.s-progress__stepped .s-progress--bar.s-progress--bar__left { le= ft: 0px; right: 50%; } .s-progress.s-progress__stepped .s-progress--bar.s-progress--bar__right { l= eft: 50%; right: 0px; } .s-progress.s-progress__stepped .s-progress--label { border: 0px; border-ra= dius: 0px; color: var(--black-400); display: block; font-size: var(--fs-bod= y1); height: auto; padding: var(--su12) var(--su6) 0 var(--su6); position: = static; text-align: center; width: auto; z-index: var(--zi-base); } .s-progress.s-progress__stepped .s-progress--step { align-items: center; di= splay: flex; flex: 1 1 0px; flex-direction: column; position: relative; } .s-progress.s-progress__stepped .s-progress--step.is-active .s-progress--ba= r.s-progress--bar__left { background: var(--theme-secondary-400); } .s-progress.s-progress__stepped .s-progress--step.is-active .s-progress--la= bel { color: var(--fc-dark); } .s-progress.s-progress__stepped .s-progress--step.is-active .s-progress--st= op { background: var(--theme-secondary-400); box-shadow: 0 0 0 var(--su-sta= tic6) var(--translucent-secondary); } .s-progress.s-progress__stepped .s-progress--step.is-complete .s-progress--= bar, .s-progress.s-progress__stepped .s-progress--step.is-complete .s-progr= ess--stop { background: var(--theme-secondary-400); } .s-progress.s-progress__stepped .s-progress--step.is-complete .s-progress--= label { color: var(--fc-dark); } .s-progress.s-progress__stepped .s-progress--stop { align-items: center; ba= ckground: var(--black-250); border-radius: 100%; color: var(--_white-static= ); display: flex; height: var(--su-static24); justify-content: center; posi= tion: relative; width: var(--su-static24); z-index: var(--zi-selected); } body.theme-highcontrast .s-progress.s-progress__stepped .s-progress--stop {= color: var(--white); } .s-progress .s-progress--bar { background-color: var(--_pr-bar-bg); border-= radius: var(--_pr-bar); min-height: var(--_pr-hmn); height: 100%; min-width= : var(--su-static6); position: relative; } .s-progress .s-progress--label { align-items: var(--_pr-label-ai); border: = var(--su-static1) solid var(--_pr-label-bc); display: var(--_pr-label-d); g= ap: var(--_pr-label-g); justify-content: var(--_pr-label-jc); padding-left:= var(--_pr-label-px); padding-right: var(--_pr-label-px); border-radius: va= r(--br-md); color: var(--fc-dark); font-size: var(--fs-caption); height: 10= 0%; line-height: var(--lh-xs); position: absolute; width: 100%; z-index: ca= lc(var(--zi-base) + 2); } .s-progress .s-progress--segments { display: flex; height: 100%; justify-co= ntent: space-between; list-style: none; margin: 0px; padding: 0px; position= : absolute; top: 0px; width: 100%; } .s-progress .s-progress--segments li { display: block; padding-top: var(--s= u-static4); position: relative; text-align: center; } .s-progress .s-progress--segments li:not(:first-child):not(:last-child)::be= fore { background-color: var(--white); content: ""; display: block; height:= 100%; left: calc(var(--su-static1) * -1); position: absolute; top: 0px; wi= dth: var(--su-static4); } .s-prose { --_pr-fs: calc(var(--su-static16) - var(--su-static1)); --_pr-lh= : 1.5; --_pr-blockquote-ml: 1em; --_pr-blockquote-mt: 0; --_pr-blockquote-b= efore-bg: var(--black-250); --_pr-code-fs: var(--fs-body1); --_pr-h1-fs: va= r(--fs-headline1); --_pr-h2-fs: var(--fs-title); --_pr-h3-fs: var(--fs-subh= eading); --_pr-h4-fs: var(--fs-body3); --_pr-h5-fs: var(--fs-body2); --_pr-= h6-fs: var(--fs-body1); --_pr-hr-bg: var(--black-225); --_pr-img-mb: 1.1em;= --_pr-kbd-bc: var(--black-300); --_pr-kbd-bs: 0 var(--su-static1) var(--su= -static1) hsla(210,8%,5%,0.15), inset 0 1px 0 0 var(--_white-static); --_pr= -spoiler-cursor: pointer; --_pr-spoiler-after-t: 1em; --_pr-soiler-after-o:= unset; --_pr-soiler-child-o: 0; --_pr-soiler-child-visibility: hidden; --s= -prose-spacing: 1.1em; --s-prose-spacing-condensed: calc(1.1em / 2); font-s= ize: var(--_pr-fs); line-height: var(--_pr-lh); overflow-wrap: break-word; = } @media (prefers-color-scheme: dark) { body.theme-system .s-prose { --_pr-kbd-bc: transparent; --_pr-kbd-btc: va= r(--black-400); --_pr-kbd-bs: 0 var(--su-static1) var(--su-static1) hsla(21= 0,8%,5%,0.8); } } body.theme-dark .s-prose, .theme-dark__forced .s-prose, body.theme-system .= theme-dark__forced .s-prose { --_pr-kbd-bc: transparent; --_pr-kbd-btc: var= (--black-400); --_pr-kbd-bs: 0 var(--su-static1) var(--su-static1) hsla(210= ,8%,5%,0.8); } body.theme-highcontrast .s-prose { --_pr-blockquote-before-bg: var(--black-= 500); --_pr-hr-bg: var(--black-400); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-prose { --_pr-spoil= er-after-t: calc(var(--su8) + var(--su1)); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-prose { --_pr-spoiler-aft= er-t: calc(var(--su8) + var(--su1)); } } .s-prose.s-prose__xs, .s-prose.s-prose__sm, .s-prose.s-prose__md { --_pr-h1= -fs: var(--fs-headline1-relative); --_pr-h2-fs: var(--fs-title-relative); -= -_pr-h3-fs: var(--fs-subheading-relative); --_pr-h4-fs: var(--fs-body3-rela= tive); --_pr-h5-fs: var(--fs-body2-relative); } .s-prose.s-prose__xs { --_pr-fs: var(--fs-caption); --_pr-lh: var(--lh-sm);= } .s-prose.s-prose__sm { --_pr-fs: var(--fs-body1); --_pr-lh: var(--lh-md); } .s-prose.s-prose__md { --_pr-fs: var(--fs-body3); --_pr-lh: var(--lh-xl); } .s-prose :not(.s-code-block) > a code { color: var(--theme-link-color, var(= --theme-secondary-400)); } .s-prose :not(.s-code-block) > code { padding: var(--su2) var(--su4); color= : var(--black-600); background-color: var(--black-200); border-radius: var(= --br-sm); } .s-prose blockquote:last-child, .s-prose dl:last-child, .s-prose h1:last-ch= ild, .s-prose h2:last-child, .s-prose h3:last-child, .s-prose h4:last-child= , .s-prose h5:last-child, .s-prose h6:last-child, .s-prose hr:last-child, .= s-prose img:last-child, .s-prose ol:last-child, .s-prose p:last-child, .s-p= rose pre:last-child, .s-prose table:last-child, .s-prose ul:last-child, .s-= prose .s-link-preview:last-child, .s-prose .s-table-container:last-child, .= s-prose blockquote:only-child, .s-prose dl:only-child, .s-prose h1:only-chi= ld, .s-prose h2:only-child, .s-prose h3:only-child, .s-prose h4:only-child,= .s-prose h5:only-child, .s-prose h6:only-child, .s-prose hr:only-child, .s= -prose img:only-child, .s-prose ol:only-child, .s-prose p:only-child, .s-pr= ose pre:only-child, .s-prose table:only-child, .s-prose ul:only-child, .s-p= rose .s-link-preview:only-child, .s-prose .s-table-container:only-child { m= argin-bottom: 0px; } .s-prose blockquote + h1, .s-prose dd + h1, .s-prose dl + h1, .s-prose img = + h1, .s-prose ol + h1, .s-prose p + h1, .s-prose pre + h1, .s-prose table = + h1, .s-prose ul + h1, .s-prose .s-link-preview + h1, .s-prose .s-table-co= ntainer + h1 { margin-top: 1.5667em; } .s-prose blockquote + h2, .s-prose dd + h2, .s-prose dl + h2, .s-prose img = + h2, .s-prose ol + h2, .s-prose p + h2, .s-prose pre + h2, .s-prose table = + h2, .s-prose ul + h2, .s-prose .s-link-preview + h2, .s-prose .s-table-co= ntainer + h2 { margin-top: 1.667em; } .s-prose blockquote + h3, .s-prose dd + h3, .s-prose dl + h3, .s-prose img = + h3, .s-prose ol + h3, .s-prose p + h3, .s-prose pre + h3, .s-prose table = + h3, .s-prose ul + h3, .s-prose .s-link-preview + h3, .s-prose .s-table-co= ntainer + h3 { margin-top: 1.4667em; } .s-prose blockquote + h4, .s-prose dd + h4, .s-prose dl + h4, .s-prose img = + h4, .s-prose ol + h4, .s-prose p + h4, .s-prose pre + h4, .s-prose table = + h4, .s-prose ul + h4, .s-prose .s-link-preview + h4, .s-prose .s-table-co= ntainer + h4, .s-prose blockquote + h5, .s-prose dd + h5, .s-prose dl + h5,= .s-prose img + h5, .s-prose ol + h5, .s-prose p + h5, .s-prose pre + h5, .= s-prose table + h5, .s-prose ul + h5, .s-prose .s-link-preview + h5, .s-pro= se .s-table-container + h5, .s-prose blockquote + h6, .s-prose dd + h6, .s-= prose dl + h6, .s-prose img + h6, .s-prose ol + h6, .s-prose p + h6, .s-pro= se pre + h6, .s-prose table + h6, .s-prose ul + h6, .s-prose .s-link-previe= w + h6, .s-prose .s-table-container + h6 { margin-top: 1.6667em; } .s-prose h1, .s-prose h2, .s-prose h3, .s-prose h4, .s-prose h5, .s-prose h= 6 { --_pr-code-fs: .9em; margin-bottom: 0.5em; font-weight: bold !important= ; } .s-prose h1 { font-size: var(--_pr-h1-fs); margin-bottom: 0.6em; } .s-prose h2 { font-size: var(--_pr-h2-fs); margin-bottom: 0.7em; } .s-prose h3 { font-size: var(--_pr-h3-fs); margin-bottom: 0.74em; } .s-prose h4 { font-size: var(--_pr-h4-fs); margin-bottom: 1em; } .s-prose h5 { font-size: var(--_pr-h5-fs); } .s-prose h6 { font-size: var(--_pr-h6-fs); } .s-prose blockquote, .s-prose q { quotes: none; } .s-prose dd, .s-prose dl, .s-prose .s-table-container, .s-prose .s-link-pre= view { margin-bottom: 1.1em; } .s-prose ol, .s-prose ul { margin-bottom: 1.1em; margin-top: 0px; } .s-prose ol blockquote:last-child, .s-prose ul blockquote:last-child, .s-pr= ose ol dl:last-child, .s-prose ul dl:last-child, .s-prose ol hr:last-child,= .s-prose ul hr:last-child, .s-prose ol ol:last-child, .s-prose ul ol:last-= child, .s-prose ol p:last-child, .s-prose ul p:last-child, .s-prose ol tabl= e:last-child, .s-prose ul table:last-child, .s-prose ol ul:last-child, .s-p= rose ul ul:last-child, .s-prose ol blockquote:only-child, .s-prose ul block= quote:only-child, .s-prose ol dl:only-child, .s-prose ul dl:only-child, .s-= prose ol hr:only-child, .s-prose ul hr:only-child, .s-prose ol ol:only-chil= d, .s-prose ul ol:only-child, .s-prose ol p:only-child, .s-prose ul p:only-= child, .s-prose ol table:only-child, .s-prose ul table:only-child, .s-prose= ol ul:only-child, .s-prose ul ul:only-child { margin-bottom: 0px; } .s-prose ol blockquote, .s-prose ul blockquote, .s-prose ol dd, .s-prose ul= dd, .s-prose ol dl, .s-prose ul dl, .s-prose ol hr, .s-prose ul hr, .s-pro= se ol li, .s-prose ul li, .s-prose ol ol, .s-prose ul ol, .s-prose ol p, .s= -prose ul p, .s-prose ol table, .s-prose ul table, .s-prose ol ul, .s-prose= ul ul { margin-bottom: calc(0.55em); } .s-prose ol li:last-child, .s-prose ul li:last-child { margin-bottom: 0px; = } .s-prose ol li ol, .s-prose ul li ol, .s-prose ol li ul, .s-prose ul li ul = { margin-top: calc(0.55em); } .s-prose ol pre, .s-prose ul pre { margin-bottom: calc(0.65em); } .s-prose sub, .s-prose sup { --_pr-code-fs: 90%; } .s-prose blockquote { --_pr-img-mb: 0; color: var(--black-500); margin: var= (--_pr-blockquote-mt) 1em 1.1em var(--_pr-blockquote-ml); padding: 0.8em 0.= 8em 0.8em 1em; position: relative; } .s-prose blockquote::before { background: var(--_pr-blockquote-before-bg); = border-radius: var(--su-static8); bottom: 0px; content: ""; display: block;= left: 0px; position: absolute; top: 0px; width: var(--su4); } .s-prose blockquote :last-child { margin-bottom: 0px; } .s-prose blockquote blockquote { --_pr-blockquote-ml: 0; } .s-prose code { font-size: var(--_pr-code-fs); font-family: var(--ff-mono);= } .s-prose dd { margin: 0px; padding: 0px; } .s-prose dd:last-child { margin-bottom: 0px; } .s-prose dl { margin-top: 0px; } .s-prose dt { font-weight: bold; } .s-prose hr { background-color: var(--_pr-hr-bg); color: var(--_pr-hr-bg); = border: 0px; height: var(--su-static1); margin-bottom: 1.1em; } .s-prose img { margin-bottom: var(--_pr-img-mb); max-width: 100%; vertical-= align: bottom; } .s-prose kbd { border-top-style: ; border-top-width: ; border-right-color: = ; border-right-style: ; border-right-width: ; border-bottom-color: ; border= -bottom-style: ; border-bottom-width: ; border-left-color: ; border-left-st= yle: ; border-left-width: ; border-image-source: ; border-image-slice: ; bo= rder-image-width: ; border-image-outset: ; border-image-repeat: ; border-to= p-color: var(--_pr-kbd-btc, var(--_pr-kbd-bc)); box-shadow: var(--_pr-kbd-b= s); background-color: var(--black-200); border-radius: var(--br-sm); color:= var(--black-600); display: inline-block; font-family: var(--ff-sans); font= -size: var(--fs-fine); line-height: var(--_pr-lh); margin: 0px 0.1em; overf= low-wrap: break-word; padding: 0.1em 0.6em; text-shadow: 0 var(--su-static1= ) 0 var(--white); } .s-prose li { --_pr-blockquote-mt: calc(1.1em / 2); --_pr-img-mb: 0; overfl= ow-wrap: break-word; } .s-prose li pre { overflow-wrap: normal; } .s-prose p { --_pr-img-mb: 0; margin-bottom: 1.1em; } .s-prose pre { margin-top: 0px; margin-bottom: calc(1.5em); overflow-wrap: = normal; } .s-prose pre:not(.s-code-block) { scrollbar-color: var(--scrollbar) transpa= rent; background-color: var(--highlight-bg); border-radius: var(--br-md); c= olor: var(--highlight-color); font-size: var(--fs-body1); line-height: var(= --lh-md); max-height: 600px; overflow: auto; padding: var(--su12); width: a= uto; } .s-prose pre:not(.s-code-block) code { background-color: transparent; borde= r-radius: 0px; padding: 0px; } .s-prose pre:not(.s-code-block)::-webkit-scrollbar { width: calc(var(--su-s= tatic12) - var(--su-static2)); height: calc(var(--su-static12) - var(--su-s= tatic2)); background-color: transparent; } .s-prose pre:not(.s-code-block)::-webkit-scrollbar-track { border-radius: c= alc(var(--su-static12) - var(--su-static2)); background-color: transparent;= } .s-prose pre:not(.s-code-block)::-webkit-scrollbar-thumb { border-radius: c= alc(var(--su-static12) - var(--su-static2)); background-color: var(--scroll= bar); } .s-prose pre:not(.s-code-block)::-webkit-scrollbar-corner { background-colo= r: transparent; border-color: transparent; } .s-prose .soundcloud-embed iframe { height: 116px; max-width: 640px; width:= 100%; } .s-prose .spoiler { cursor: var(--_pr-spoiler-cursor); background: var(--bl= ack-150); border-radius: var(--br-md); color: var(--black-600); min-height:= var(--su-static48); } .s-prose .spoiler::after { opacity: var(--_pr-soiler-after-o); top: var(--_= pr-spoiler-after-t); transition: opacity 0.1s ease-in-out; background-image= : url("data:image/svg+xml;,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' aria= -hidden=3D'true' fill=3D'rgb(132, 141, 149)' width=3D'18' height=3D'18' vie= wBox=3D'0 0 18 18'%3E%3Cpath d=3D'M9 17A8 8 0 119 1a8 8 0 010 16zM8 4v6h2V4= H8zm0 8v2h2v-2H8z'%3E%3C/path%3E%3C/svg%3E"); background-position: right ce= nter; background-repeat: no-repeat; color: var(--black-400); content: attr(= data-spoiler) " "; font-size: var(--fs-body1); padding-right: calc(var(--su= 24) - var(--su2)); pointer-events: none; position: absolute; right: 1em; } .s-prose .spoiler.is-visible { --_pr-spoiler-cursor: auto; --_pr-soiler-aft= er-o: 0; --_pr-soiler-child-o: 1; --_pr-soiler-child-visibility: visible; } .s-prose .spoiler > * { opacity: var(--_pr-soiler-child-o); transition: opa= city 0.1s ease-in-out; visibility: var(--_pr-soiler-child-visibility); } .s-prose .youtube-embed { max-width: 640px; position: relative; width: 100%= ; } .s-prose .youtube-embed > div { height: 35px; padding-bottom: 56.25%; posit= ion: relative; width: 100%; } .s-prose .youtube-embed > div iframe { height: 100%; position: absolute; wi= dth: 100%; } .s-select { --_se-arrow-bc: currentColor transparent; --_se-arrow-size: var= (--su-static4); --_se-select-bc: var(--bc-darker); --_se-select-bg: var(--w= hite); --_se-select-br: var(--br-md); --_se-select-fc: var(--black); --_se-= select-px: .7em; --_se-select-py: .6em; --_se-select-fs: var(--fs-body1); c= olor: var(--fc-dark); position: relative; } @supports (-webkit-overflow-scrolling: touch) { .s-select { --_se-select-fs: var(--su-static16); --_se-select-px: .55em; = --_se-select-py: .4em; } } .is-disabled .s-select, .is-readonly .s-select, .has-success .s-select, .ha= s-error .s-select, .has-warning .s-select { position: relative; } .has-error .s-select, .has-success .s-select, .has-warning .s-select { --_s= e-select-bc-focus: var(--_se-select-bc); } .has-error .s-select { --_se-select-bc: var(--red-400); } .has-success .s-select { --_se-select-bc: var(--green-400); } .has-warning .s-select { --_se-select-bc: var(--yellow-500); } .is-disabled .s-select { --_se-arrow-bc: var(--bc-dark) transparent; } .s-select.s-select__sm { --_se-select-fs: var(--fs-caption); } .s-select.s-select__md { --_se-select-fs: var(--fs-body3); --_se-select-br:= calc(var(--br-sm) + var(--su-static1)); --_se-select-py: .5em; } .s-select.s-select__lg { --_se-select-fs: var(--fs-title); --_se-select-br:= calc(var(--br-sm) + var(--su-static1)); --_se-select-px: .6em; --_se-selec= t-py: .45em; } .s-select.s-select__xl { --_se-select-fs: var(--fs-headline1); --_se-select= -br: var(--br-md); --_se-select-px: .5em; --_se-select-py: .4em; } select.s-select:-webkit-autofill, .s-select > select:-webkit-autofill { box= -shadow: 0 0 0 1000px var(--theme-secondary-200) inset; -webkit-text-fill-c= olor: var(--black); border-color: var(--blue-400); transition: background-c= olor 50000s; } select.s-select:-webkit-autofill:focus, .s-select > select:-webkit-autofill= :focus { border-color: var(--blue-400); box-shadow: 0 0 0 1000px var(--blue= -200) inset,0 0 0 var(--su-static4) var(--focus-ring); } select.s-select::-webkit-contacts-auto-fill-button, .s-select > select::-we= bkit-contacts-auto-fill-button { background-color: var(--black); } .s-select::before, .s-select::after { border-color: var(--_se-arrow-bc); bo= rder-style: solid; border-width: var(--_se-arrow-size); content: ""; pointe= r-events: none; position: absolute; right: calc(var(--su-static12) + var(--= su-static1)); z-index: var(--zi-selected); } .s-select::after { border-bottom-width: 0px; top: calc(50% + var(--su-stati= c1)); } .s-select::before { border-top-width: 0px; top: calc(50% - calc(var(--_se-a= rrow-size) + var(--su-static1))); } .s-select > select { background-color: var(--_se-select-bg); border: var(--= su-static1) solid var(--_se-select-bc); border-radius: var(--_se-select-br)= ; color: var(--_se-select-fc); font-size: var(--_se-select-fs); padding-top= : ; padding-bottom: ; padding-left: ; appearance: none; font-family: inheri= t; height: 100%; line-height: var(--lh-sm); outline: 0px; padding-right: va= r(--su32); position: relative; width: 100%; } fieldset[disabled] .s-select > select, .s-select > select[disabled] { curso= r: not-allowed; opacity: var(--_o-disabled-static); } .s-select > select[readonly], .is-readonly .s-select > select { --_se-selec= t-bc: var(--bc-light); --_se-select-bg: var(--black-150); --_se-select-fc: = var(--black-300); cursor: not-allowed; } body.theme-highcontrast .s-select > select[readonly], body.theme-highcontra= st .is-readonly .s-select > select { --_se-select-fc: var(--fc-light); } .s-select > select:focus { box-shadow: 0 0 0 var(--su-static2) var(--focus-= neutral),0 0 0 var(--su-static4) var(--focus-theme); outline: var(--su-stat= ic2) solid transparent !important; } .s-select > select:focus, .s-select > select.focus { color: var(--black); } .s-select .s-input-icon { right: var(--su32); } .s-sidebarwidget { --_sw-bc: var(--bc-medium); --_sw-after-bc: var(--_sw-bc= ); --_sw-content-bc: var(--bc-light); --_sw-header-bc: var(--_sw-content-bc= ); background-color: var(--white); border: var(--su-static1) solid var(--_s= w-bc); border-radius: var(--br-sm); font-size: var(--fs-body1); position: r= elative; } .s-sidebarwidget:not(.s-anchors) a:not(.button):not(.post-tag):not(.s-btn):= not(.s-sidebarwidget--action):not(.s-user-card--link), .s-sidebarwidget:not= (.s-anchors) a:not(.button):not(.post-tag):not(.s-btn):not(.s-sidebarwidget= --action):not(.s-user-card--link):visited { color: var(--black-400); } .s-sidebarwidget.s-sidebarwidget__blue { --_sw-bc: var(--blue-300); backgro= und-color: var(--blue-100); border-color: var(--_sw-bc); } body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__blue { --_sw-bc: = var(--blue-500); } .s-sidebarwidget.s-sidebarwidget__blue::after, .s-sidebarwidget.s-sidebarwi= dget__blue .s-sidebarwidget--content, .s-sidebarwidget.s-sidebarwidget__blu= e .s-sidebarwidget--header { border-color: var(--_sw-bc); } .s-sidebarwidget.s-sidebarwidget__blue .s-sidebarwidget--header { backgroun= d-color: var(--blue-200); color: var(--fc-medium); } .s-sidebarwidget.s-sidebarwidget__yellow { --_sw-bc: var(--yellow-300); bac= kground-color: var(--yellow-100); border-color: var(--_sw-bc); } body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__yellow { --_sw-bc= : var(--yellow-500); } .s-sidebarwidget.s-sidebarwidget__yellow::after, .s-sidebarwidget.s-sidebar= widget__yellow .s-sidebarwidget--content, .s-sidebarwidget.s-sidebarwidget_= _yellow .s-sidebarwidget--header { border-color: var(--_sw-bc); } .s-sidebarwidget.s-sidebarwidget__yellow .s-sidebarwidget--header { backgro= und-color: var(--yellow-200); color: var(--fc-medium); } .s-sidebarwidget.s-sidebarwidget__green { --_sw-bc: var(--green-300); backg= round-color: var(--green-100); border-color: var(--_sw-bc); } body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__green { --_sw-bc:= var(--green-500); } .s-sidebarwidget.s-sidebarwidget__green::after, .s-sidebarwidget.s-sidebarw= idget__green .s-sidebarwidget--content, .s-sidebarwidget.s-sidebarwidget__g= reen .s-sidebarwidget--header { border-color: var(--_sw-bc); } .s-sidebarwidget.s-sidebarwidget__green .s-sidebarwidget--header { backgrou= nd-color: var(--green-200); color: var(--fc-medium); } .s-sidebarwidget .s-sidebarwidget--action { color: var(--blue-400); float: = right; font-size: var(--fs-fine); line-height: calc(var(--fs-body1) * 1.5);= margin: 0 0 var(--su4) var(--su8); } .s-sidebarwidget .s-sidebarwidget--content { border-top: var(--su-static1) = solid var(--_sw-content-bc); margin: 0px; padding: var(--su16) calc(var(--s= u16) - var(--su1)); } .s-sidebarwidget .s-sidebarwidget--content:not(table):not(.s-sidebarwidget_= _items), .s-sidebarwidget .s-sidebarwidget--content:not(table):not(.s-sideb= arwidget__block-items) .s-sidebarwidget--item { display: flex; } .s-sidebarwidget .s-sidebarwidget--content.s-sidebarwidget__items { padding= : calc(var(--su16) - var(--su12)) calc(var(--su16) - var(--su1)); } .s-sidebarwidget .s-sidebarwidget--content.s-sidebarwidget__items, .s-sideb= arwidget .s-sidebarwidget--content.s-sidebarwidget__items.s-sidebarwidget__= block-items .s-sidebarwidget--item { display: block; } .s-sidebarwidget .s-sidebarwidget--content:active { outline: none; } .s-sidebarwidget .s-sidebarwidget--header { background: var(--black-100); b= order-top: var(--su-static1) solid var(--_sw-header-bc); color: var(--black= -500); font-size: var(--fs-body2); font-weight: normal; margin: 0px; paddin= g: var(--su12) calc(var(--su16) - var(--su1)); } .s-sidebarwidget .s-sidebarwidget--header:first-child { border-top-left-rad= ius: var(--br-sm); border-top-right-radius: var(--br-sm); } .s-sidebarwidget .s-sidebarwidget--header.s-sidebarwidget__expanding-contro= l { cursor: pointer; } .s-sidebarwidget .s-sidebarwidget--header.s-sidebarwidget__expanding-contro= l::before { border-top-color: ; border-top-style: ; border-top-width: ; bor= der-right-color: ; border-right-style: ; border-bottom-color: ; border-bott= om-style: ; border-bottom-width: ; border-left-style: ; border-left-width: = ; border-image-source: ; border-image-slice: ; border-image-width: ; border= -image-outset: ; border-image-repeat: ; border-left-color: var(--black-400)= ; border-right-width: 0px; content: ""; float: left; margin-right: var(--su= 12); margin-top: calc(calc(var(--lh-base) * 1em) / 2 - 5px); transition: tr= ansform 0.3s cubic-bezier(0.4, 0.4, 0.6, 1); } .s-sidebarwidget .s-sidebarwidget--header.s-sidebarwidget__expanding-contro= l[aria-expanded=3D"true"]::before { transform: rotate(90deg); } .s-sidebarwidget .s-sidebarwidget--header.s-sidebarwidget__small-bold-text = { font-size: var(--fs-caption); font-weight: bold; } .s-sidebarwidget .s-sidebarwidget--header.s-sidebarwidget__small-bold-text = .s-sidebarwidget--action { font-weight: normal; line-height: calc(var(--lh-= base) * var(--fs-caption)); } .s-sidebarwidget .s-sidebarwidget--header:active { outline: none; } .s-sidebarwidget .s-sidebarwidget--item { margin: var(--su12) 0; } .s-sidebarwidget .s-sidebarwidget--item[aria-current=3D"true"], .s-sidebarw= idget .s-sidebarwidget--item > :first-child[aria-current=3D"true"], .s-side= barwidget .s-sidebarwidget--item[aria-current=3D"page"], .s-sidebarwidget .= s-sidebarwidget--item > :first-child[aria-current=3D"page"] { color: var(--= black); font-weight: bold; position: relative; } .s-sidebarwidget .s-sidebarwidget--item[aria-current=3D"true"]::before, .s-= sidebarwidget .s-sidebarwidget--item > :first-child[aria-current=3D"true"]:= :before, .s-sidebarwidget .s-sidebarwidget--item[aria-current=3D"page"]::be= fore, .s-sidebarwidget .s-sidebarwidget--item > :first-child[aria-current= =3D"page"]::before { border-left-color: var(--theme-primary); border-left-s= tyle: solid; border-left-width: calc(var(--su-static1) * 3); content: ""; h= eight: calc(100% + var(--su12)); left: 0px; margin-left: calc(calc(var(--su= 16) - var(--su1)) * -1 - var(--su-static1)); margin-top: calc(var(--su12) /= 2 * -1); position: absolute; } .s-sidebarwidget .s-sidebarwidget--item[aria-current=3D"true"] a, .s-sideba= rwidget .s-sidebarwidget--item > :first-child[aria-current=3D"true"] a, .s-= sidebarwidget .s-sidebarwidget--item[aria-current=3D"page"] a, .s-sidebarwi= dget .s-sidebarwidget--item > :first-child[aria-current=3D"page"] a, .s-sid= ebarwidget .s-sidebarwidget--item[aria-current=3D"true"] a:visited, .s-side= barwidget .s-sidebarwidget--item > :first-child[aria-current=3D"true"] a:vi= sited, .s-sidebarwidget .s-sidebarwidget--item[aria-current=3D"page"] a:vis= ited, .s-sidebarwidget .s-sidebarwidget--item > :first-child[aria-current= =3D"page"] a:visited { color: inherit; } .s-sidebarwidget .s-sidebarwidget--subnav { list-style-type: none; margin-l= eft: var(--su8); padding-left: 0px; } .s-sidebarwidget .s-sidebarwidget--subnav li { background-image: url("data:= image/svg+xml;,%3C?xml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22?%3E%3= Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%207%2010%22%20xmlns%3D%22ht= tp%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22m0.72153%200.68446%204.133= 6%204.3077-4.1336%204.3077%22%20fill%3D%22none%22%20stroke%3D%22var%28--bla= ck-225%29%22%20stroke-width%3D%222%22/%3E%3C/svg%3E"); background-position:= 0 calc((1.2em - calc(var(--su-static8) + var(--su-static2))) / 2); backgro= und-repeat: no-repeat; background-size: auto calc(var(--su-static8) + var(-= -su-static2)); margin-top: var(--su-static12); padding-left: var(--su-stati= c16); } .s-sidebarwidget .s-sidebarwidget--subnav li[aria-current=3D"page"], .s-sid= ebarwidget .s-sidebarwidget--subnav li[aria-current=3D"true"] { background-= image: url("data:image/svg+xml;,%3C?xml%20version%3D%221.0%22%20encoding%3D= %22UTF-8%22?%3E%3Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%207%2010%2= 2%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22m0.72153%= 200.68446%204.1336%204.3077-4.1336%204.3077%22%20fill%3D%22none%22%20stroke= %3D%22var%28--theme-primary%29%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");= color: var(--black); font-weight: bold; } .s-sidebarwidget .s-sidebarwidget--subnav li[aria-current=3D"page"] a, .s-s= idebarwidget .s-sidebarwidget--subnav li[aria-current=3D"true"] a, .s-sideb= arwidget .s-sidebarwidget--subnav li[aria-current=3D"page"] a:visited, .s-s= idebarwidget .s-sidebarwidget--subnav li[aria-current=3D"true"] a:visited {= color: inherit; } .s-sidebarwidget table.s-sidebarwidget--content.s-sidebarwidget__items { bo= rder-collapse: separate; border-spacing: var(--su12); padding: calc(var(--s= u16) - var(--su12)) calc(calc(var(--su16) - var(--su1)) - var(--su12)); } .s-sidebarwidget table.s-sidebarwidget--content.s-sidebarwidget__items tr.s= -sidebarwidget--item { display: table-row; } .s-sidebarwidget table.s-sidebarwidget--content.s-sidebarwidget__items tr.s= -sidebarwidget--item td { padding: 0px; } .s-sidebarwidget::before { content: ""; display: block; margin-top: calc(va= r(--su-static1) * -1); } .s-sidebarwidget::after { border: var(--su-static1) solid var(--_sw-after-b= c); border-radius: var(--br-sm); clip-path: polygon(0% 0%, 100% 0%, 100% 50= %, 0% 50%); content: ""; height: calc(var(--su-static2) + var(--br-sm)); le= ft: calc(var(--su-static1) * -1); pointer-events: none; position: absolute;= right: calc(var(--su-static1) * -1); top: calc(var(--su-static1) * -1); } .s-spinner { --_sp-baw: calc(var(--su-static1) * 3); --_sp-size: var(--su-s= tatic24); height: var(--_sp-size); width: var(--_sp-size); position: relati= ve; text-align: left; } .s-spinner.s-spinner__xs { --_sp-baw: var(--su-static1); --_sp-size: var(--= su-static12); } .s-spinner.s-spinner__sm { --_sp-baw: var(--su-static2); --_sp-size: var(--= su-static16); } .s-spinner.s-spinner__md { --_sp-baw: var(--su-static4); --_sp-size: var(--= su-static32); } .s-spinner.s-spinner__lg { --_sp-baw: var(--su-static6); --_sp-size: var(--= su-static48); } .s-spinner::after, .s-spinner::before { border: var(--_sp-baw) solid curren= tColor; border-radius: var(--br-circle); content: ""; height: 100%; positio= n: absolute; width: 100%; } .s-spinner::after { border-top-color: transparent; border-right-color: tran= sparent; border-bottom-color: transparent; animation: 0.9s cubic-bezier(0.5= , 0.1, 0.5, 0.9) 0s infinite normal none running s-spinner-rotate; } .s-spinner::before { opacity: 0.25; transform: rotate(90deg); } .is-loading { --_li-offset: .6em; --_il-size: 1.23076923em; padding-left: 2= .2em; position: relative; } .is-loading::after, .is-loading::before { border-radius: var(--br-circle); = border-style: solid; border-width: var(--su-static2); content: ""; height: = var(--_il-size); left: var(--_li-offset); position: absolute; top: calc(50%= - var(--_li-offset)); width: var(--_il-size); } .is-loading::after { animation: 0.9s cubic-bezier(0.5, 0.1, 0.5, 0.9) 0s in= finite normal none running s-spinner-rotate; border-color: transparent tran= sparent transparent currentcolor; filter: invert(0); transform-origin: 50% = 50% var(--su-static1); } .is-loading::before { border-color: currentcolor; opacity: 0.3; } @keyframes s-spinner-rotate {=20 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .s-table { --_ta-tbody-tbody-bc: var(--bc-medium); --_ta-tbody-tbody-bw: va= r(--su-static2); --_ta-tbody-tr-even-bg: unset; --_ta-td-bbw: 0; --_ta-td-b= c: var(--bc-medium); --_ta-td-fs: unset; --_ta-td-fw: unset; --_ta-td-p: va= r(--su8); --_ta-td-ta: left; --_ta-td-va: middle; --_ta-td-w: unset; --_ta-= thead-th-bg: var(--black-100); --_ta-th-bbw: 0; --_ta-th-bc: var(--bc-mediu= m); --_ta-th-fs: unset; --_ta-th-p: var(--su8); --_ta-th-ta: left; --_ta-th= -va: middle; --_ta-th-w: unset; border-collapse: collapse; border-spacing: = 0px; display: table; font-size: var(--fs-body1); max-width: 100%; width: 10= 0%; } .s-table.s-table__stripes { --_ta-tbody-tr-even-bg: var(--black-100); --_ta= -thead-th-bg: var(--black-150); } .s-table.ta-center { --_ta-td-ta: center; --_ta-th-ta: center; } .s-table.ta-left { --_ta-td-ta: left; --_ta-th-ta: left; } .s-table.ta-justify { --_ta-td-ta: justify; --_ta-th-ta: justify; } .s-table.ta-right { --_ta-td-ta: right; --_ta-th-ta: right; } .s-table.va-bottom { --_ta-td-va: bottom; --_ta-th-va: bottom; } .s-table.va-middle { --_ta-td-va: middle; --_ta-th-va: middle; } .s-table.va-top { --_ta-td-va: top; --_ta-th-va: top; } .s-table.s-table__b0 { --_ta-td-bc: transparent; --_ta-th-bc: transparent; = --_ta-tbody-tbody-bc: transparent; --_ta-tbody-tbody-bw: var(--su-static12)= ; --_ta-thead-th-bg: transparent; } .s-table.s-table__b0 thead th { font-size: inherit; text-transform: initial= ; letter-spacing: initial; } .s-table.s-table__bx tr > :not(:first-child) { border-left-color: transpare= nt; } .s-table.s-table__bx tr > :not(:last-child) { border-right-color: transpare= nt; } .s-table.s-table__bx-simple { --_ta-thead-th-bg: transparent; --_ta-foot-td= -bc: transparent; --_ta-foot-th-bc: transparent; } .s-table.s-table__bx-simple td, .s-table.s-table__bx-simple th { border-lef= t-color: transparent; border-right-color: transparent; } .s-table.s-table__bx-simple tbody tr:first-of-type th, .s-table.s-table__bx= -simple tbody tr:first-of-type td { border-top-color: transparent; } .s-table.s-table__bx-simple tbody tr:last-of-type th, .s-table.s-table__bx-= simple tbody tr:last-of-type td { border-bottom-color: transparent; } .s-table.s-table__bx-simple thead th { border-top-color: transparent; borde= r-bottom-color: var(--bc-dark); font-size: inherit; text-transform: initial= ; letter-spacing: initial; } .s-table.s-table__sortable thead th { color: var(--fc-light); cursor: point= er; } .s-table.s-table__sortable thead th a, .s-table.s-table__sortable thead th = button { color: inherit; } .s-table.s-table__sortable thead th button { appearance: none; background-c= olor: transparent; border: 0px; cursor: pointer; display: flex; gap: var(--= su-static4); font-weight: inherit; margin: calc(var(--_ta-th-p) * -1); padd= ing: var(--_ta-th-p); text-align: left; width: calc(100% + calc(var(--_ta-t= h-p) * 2)); } .s-table.s-table__sortable thead th.is-sorted { color: var(--black-600); } .s-table.s-table__sm { --_ta-td-p: var(--su4); --_ta-th-p: var(--su4); } .s-table.s-table__lg { --_ta-td-p: var(--su12); --_ta-th-p: var(--su12); } .s-table .s-table--cell1 { --_ta-td-w: 8.33333333%; --_ta-th-w: 8.33333333%= ; } .s-table .s-table--cell2 { --_ta-td-w: 16.66666667%; --_ta-th-w: 16.6666666= 7%; } .s-table .s-table--cell3 { --_ta-td-w: 25%; --_ta-th-w: 25%; } .s-table .s-table--cell4 { --_ta-td-w: 33.33333333%; --_ta-th-w: 33.3333333= 3%; } .s-table .s-table--cell5 { --_ta-td-w: 41.66666667%; --_ta-th-w: 41.6666666= 7%; } .s-table .s-table--cell6 { --_ta-td-w: 50%; --_ta-th-w: 50%; } .s-table .s-table--cell7 { --_ta-td-w: 58.33333333%; --_ta-th-w: 58.3333333= 3%; } .s-table .s-table--cell8 { --_ta-td-w: 66.66666667%; --_ta-th-w: 66.6666666= 7%; } .s-table .s-table--cell9 { --_ta-td-w: 75%; --_ta-th-w: 75%; } .s-table .s-table--cell10 { --_ta-td-w: 83.33333333%; --_ta-th-w: 83.333333= 33%; } .s-table .s-table--cell11 { --_ta-td-w: 91.66666667%; --_ta-th-w: 91.666666= 67%; } .s-table .s-table--cell12 { --_ta-td-w: 100%; --_ta-th-w: 100%; } .s-table .s-table--totals { --_ta-td-fs: var(--fs-subheading); --_ta-td-pt:= var(--su12); --_ta-td-fw: bold; --_ta-th-fs: var(--fs-subheading); --_ta-t= h-pt: var(--su12); } .s-table tbody + tbody { border-top: var(--_ta-tbody-tbody-bw) solid var(--= _ta-tbody-tbody-bc); } .s-table tbody th { font-weight: normal; } .s-table tbody tr:nth-child(2n) { background-color: var(--_ta-tbody-tr-even= -bg); } .s-table td { border-top-color: ; border-top-style: ; border-right-color: ;= border-right-style: ; border-bottom-color: ; border-bottom-style: ; border= -left-color: ; border-left-style: ; border-image-source: ; border-image-sli= ce: ; border-image-width: ; border-image-outset: ; border-image-repeat: ; b= order-bottom-width: var(--_ta-td-bbw, var(--su-static1)); border-left-width= : var(--_ta-td-blw, var(--su-static1)); border-right-width: var(--_ta-td-br= w, var(--su-static1)); border-top-width: var(--_ta-td-btw, var(--su-static1= )); font-size: var(--_ta-td-fs); font-weight: var(--_ta-td-fw); padding-rig= ht: ; padding-bottom: ; padding-left: var(--_ta-td-pl, var(--_ta-td-p)); pa= dding-top: var(--_ta-td-pt, var(--_ta-td-p)); text-align: var(--_ta-td-ta);= vertical-align: var(--_ta-td-va); width: var(--_ta-td-w); color: var(--fc-= medium); } .s-table td .s-checkbox { display: block; } .s-table td.s-table--bulk { --_ta-td-w: calc(var(--su32) - var(--su2)); } .s-table td.s-table--progress { --_ta-td-ta: right; --_ta-td-brw: 0; } .s-table td.s-table--progress-bar { --_ta-td-blw: 0; --_ta-td-pl: 0; --_ta-= td-w: calc(var(--su-static12) * 10); } .s-table tfoot td { border-bottom-color: var(--_ta-foot-td-bc, var(--_ta-td= -bc)); } .s-table tfoot th { border-bottom-color: var(--_ta-foot-th-bc, var(--_ta-td= -bc)); } .s-table th { border-top-color: ; border-top-style: ; border-right-color: ;= border-right-style: ; border-bottom-color: ; border-bottom-style: ; border= -left-color: ; border-left-style: ; border-image-source: ; border-image-sli= ce: ; border-image-width: ; border-image-outset: ; border-image-repeat: ; b= order-width: var(--su-static1) var(--su-static1) var(--_ta-th-bbw); font-si= ze: var(--_ta-th-fs); padding-right: ; padding-bottom: ; padding-left: ; pa= dding-top: var(--_ta-th-pt, var(--_ta-th-p)); text-align: var(--_ta-th-ta);= vertical-align: var(--_ta-th-va); width: var(--_ta-th-w); color: var(--fc-= dark); font-weight: bold; } .s-table th .s-checkbox { display: block; } .s-table th.s-table--bulk { --_ta-th-w: calc(var(--su32) - var(--su2)); } .s-table thead th { background-color: var(--_ta-thead-th-bg); line-height: = var(--lh-sm); vertical-align: bottom; white-space: nowrap; } .s-table tr:last-of-type { --_ta-td-bbw: var(--su-static1); --_ta-th-bbw: v= ar(--su-static1); } .s-table tr.is-disabled { background-color: var(--black-100); --_ta-tbody-t= r-even-bg: var(--black-100); } .s-table tr.is-disabled th:not(.is-enabled), .s-table tr.is-disabled td:not= (.is-enabled) { opacity: calc(var(--_o-disabled) * .6); } .s-table-container { overflow-x: auto; scrollbar-color: var(--scrollbar) tr= ansparent; } .s-table-container::-webkit-scrollbar { width: calc(var(--su-static12) - va= r(--su-static2)); height: calc(var(--su-static12) - var(--su-static2)); bac= kground-color: transparent; } .s-table-container::-webkit-scrollbar-track { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: transparent; } .s-table-container::-webkit-scrollbar-thumb { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: var(--scrollbar); } .s-table-container::-webkit-scrollbar-corner { background-color: transparen= t; border-color: transparent; } .s-tag { --_ta-bc: var(--theme-tag-border-color, var(--_ta-bg)); --_ta-bg: = var(--theme-tag-background-color, var(--black-150)); --_ta-fc: var(--theme-= tag-color, var(--black-500)); --_ta-bc-hover: var(--theme-tag-hover-border-= color, var(--_ta-bg-hover)); --_ta-bg-hover: var(--theme-tag-hover-backgrou= nd-color, var(--black-200)); --_ta-fc-hover: var(--theme-tag-hover-color, v= ar(--black-600)); --_ta-br: var(--br-sm); --_ta-fs: var(--fs-caption); --_t= a-lh: 1.84615385; --_ta-pl: var(--_ta-px); --_ta-pr: var(--_ta-px); --_ta-p= x: var(--su4); --_ta-dismiss-padding: calc(var(--_ta-px) - var(--su-static1= )); background-color: var(--_ta-bg); border: var(--su-static1) solid var(--= _ta-bc); border-radius: var(--_ta-br); color: var(--_ta-fc); font-size: var= (--_ta-fs); line-height: var(--_ta-lh); padding-left: var(--_ta-pl); paddin= g-right: var(--_ta-pr); align-items: center; display: inline-flex; font-wei= ght: 700; justify-content: center; min-width: 0px; text-decoration: none; v= ertical-align: middle; white-space: nowrap; } body.theme-highcontrast .s-tag:not(body.theme-highcontrast .s-tag__moderato= r):not(body.theme-highcontrast .s-tag__required) { --_ta-bc: var(--theme-ta= g-border-color, var(--black-300)); --_ta-bc-hover: var(--theme-tag-hover-bo= rder-color, var(--black-300)); } .s-tag.s-tag__xs { --_ta-fs: var(--fs-fine); --_ta-lh: 1.4; --_ta-px: var(-= -su2); } .s-tag.s-tag__sm { --_ta-fs: var(--fs-caption); --_ta-lh: 1.5; } .s-tag.s-tag__md { --_ta-px: var(--su6); --_ta-fs: var(--fs-body2); --_ta-l= h: 1.73333333; } .s-tag.s-tag__lg { --_ta-br: calc(var(--br-sm) + var(--su-static1)); --_ta-= fs: var(--fs-subheading); --_ta-lh: 1.68421053; --_ta-px: var(--su6); } .s-tag__ignored, .s-tag.s-tag__ignored, .s-tag__watched, .s-tag.s-tag__watc= hed { --_ta-pl: calc(var(--su-static24) - var(--su-static2)); --_ta-before-= size: calc(var(--su-static16) - var(--su-static2)); position: relative; } .s-tag__ignored::before, .s-tag.s-tag__ignored::before, .s-tag__watched::be= fore, .s-tag.s-tag__watched::before { height: var(--_ta-before-size); width= : var(--_ta-before-size); mask-image: ; -webkit-mask-position-x: ; -webkit-= mask-position-y: ; mask-repeat: ; mask-origin: ; mask-clip: ; mask-composit= e: ; mask-mode: ; background-color: currentcolor; content: ""; display: blo= ck; left: var(--su-static4); margin-right: var(--su2); position: absolute; = top: calc(50% - calc(var(--su-static8) - var(--su-static1))); mask-size: co= ntain; } .s-tag__ignored, .s-tag.s-tag__ignored { --_ta-before-icon: url("data:image= /svg+xml;,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'14' height= =3D'14' viewBox=3D'0 0 14 14'%3E%3Cpath d=3D'M3.52 7.38 1.58 9.26A12.38 12.= 38 0 0 1 0 7s2.63-5.14 7.05-5.14c.66 0 1.28.12 1.86.32L7.44 3.6a3.48 3.48 0= 0 0-3.92 3.78ZM5.3 9.99c.5.28 1.1.44 1.71.44 1.94 0 3.5-1.53 3.5-3.43 0-.6= 2-.17-1.21-.47-1.72L8.7 6.6a1.73 1.73 0 0 1-2.08 2.07L5.29 10Zm6.23-6.19A12= .7 12.7 0 0 1 14 7s-2.63 5.14-6.95 5.14A6.1 6.1 0 0 1 4 11.3L2.27 13l-1.4-1= .36L11.9 1l1.23 1.2-1.6 1.6Z'/%3E%3C/svg%3E"); } .s-tag.s-tag__moderator { --_ta-bc: var(--orange-300); --_ta-bg: var(--oran= ge-100); --_ta-fc: var(--orange-500); --_ta-bc-hover: var(--orange-300); --= _ta-bg-hover: var(--orange-200); --_ta-fc-hover: var(--orange-600); } .s-tag.s-tag__required:not(.s-tag__moderator) { --_ta-bc: var(--theme-tag-r= equired-border-color, var(--theme-tag-border-color, var(--black-400))); --_= ta-bg: var(--theme-tag-required-background-color, var(--theme-tag-backgroun= d-color, var(--black-150))); --_ta-fc: var(--theme-tag-required-color, var(= --theme-tag-color, var(--black-500))); --_ta-bc-hover: var(--theme-tag-requ= ired-hover-border-color, var(--theme-tag-hover-border-color, var(--black-60= 0))); --_ta-bg-hover: var(--theme-tag-required-hover-background-color, var(= --theme-tag-hover-background-color, var(--black-200))); --_ta-fc-hover: var= (--theme-tag-required-hover-color, var(--theme-tag-hover-color, var(--black= -600))); } .s-tag__watched, .s-tag.s-tag__watched { --_ta-before-icon: url("data:image= /svg+xml;,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'14' height= =3D'14' viewBox=3D'0 0 14 14'%3E%3Cpath d=3D'M7.05 1C2.63 1 0 6.5 0 6.5S2.6= 3 12 7.05 12C11.38 12 14 6.5 14 6.5S11.37 1 7.05 1ZM7 10.17A3.59 3.59 0 0 1= 3.5 6.5 3.6 3.6 0 0 1 7 2.83c1.94 0 3.5 1.65 3.5 3.67A3.57 3.57 0 0 1 7 10= .17Zm0-1.84c.97 0 1.75-.81 1.75-1.83S7.97 4.67 7 4.67s-1.75.81-1.75 1.83S6.= 03 8.33 7 8.33Z'/%3E%3C/svg%3E"); } .s-tag button.s-tag--dismiss:not(.s-btn) { all: unset; } .s-tag .s-tag--dismiss, .s-tag button.s-tag--dismiss:not(.s-btn) { align-it= ems: center; align-self: stretch; background-color: transparent; border-rad= ius: var(--br-sm); color: inherit; cursor: pointer; display: flex; justify-= content: center; margin: var(--su-static1) calc(var(--_ta-dismiss-padding) = * -1) var(--su-static1) var(--_ta-dismiss-padding); padding: var(--_ta-dism= iss-padding); } .s-tag .s-tag--dismiss:focus-visible, .s-tag button.s-tag--dismiss:not(.s-b= tn):focus-visible { box-shadow: 0 0 0 var(--su-static2) var(--focus-neutral= ),0 0 0 var(--su-static4) var(--focus-theme); outline: var(--su-static2) so= lid transparent !important; } .s-tag .s-tag--dismiss:hover, .s-tag button.s-tag--dismiss:not(.s-btn):hove= r { background-color: var(--_ta-fc); color: var(--_ta-bg); } body.theme-highcontrast .s-tag .s-tag--dismiss:hover, body.theme-highcontra= st .s-tag button.s-tag--dismiss:not(.s-btn):hover { color: var(--white); } .s-tag .s-tag--sponsor { align-self: center; border-radius: calc(var(--br-s= m) - var(--su-static1)); display: inline-flex; margin: calc(var(--su1) * -1= ) var(--su4) calc(var(--su2) * -1) calc(var(--su2) * -1); max-width: calc(v= ar(--su-static16) + var(--su-static2)); } .s-tag .s-tag--sponsor img, .s-tag .s-tag--sponsor .svg-icon { width: 100%;= height: 100%; } a.s-tag:hover, a.s-tag:active { background-color: var(--_ta-bg-hover); bord= er-color: var(--_ta-bc-hover); color: var(--_ta-fc-hover); } .s-tag:focus-visible { box-shadow: 0 0 0 var(--su-static1) var(--focus-neut= ral),0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focus-theme); = border-color: var(--focus-neutral) !important; outline: var(--su-static2) s= olid transparent !important; } .s-toast { display: flex; justify-content: center; left: var(--su8); opacit= y: 0; pointer-events: none; position: fixed; right: var(--su8); top: var(--= su16); transform: translate3d(0px, -66px, 0px); transition: transform 100ms= var(--te-smooth-slow) 0s,opacity 60ms var(--te-smooth-slow) 0ms,visibility= 0s 150ms; visibility: hidden; z-index: calc(var(--zi-modals) + 1); } @media (prefers-reduced-motion) { .s-toast { transform: none !important; } } .s-toast[aria-hidden=3D"false"] { opacity: 1; transform: translate3d(0px, 0= px, 0px); transition: visibility 0s 0s,opacity 100ms var(--te-smooth) 0s,tr= ansform 100ms var(--te-smooth) 0s; visibility: visible; } .s-toast .s-notice { box-shadow: var(--bs-sm); max-width: 44rem; padding-bo= ttom: var(--su8); padding-top: var(--su8); pointer-events: all; width: 100%= ; } .s-toggle-switch { --_ts-bg: var(--black-350); --_ts-bg-image: url("data:im= age/svg+xml;,%3csvg xmlns=3D'http://www.w3.org/2000/svg' viewBox=3D'-4 -4 8= 8'%3e%3ccircle r=3D'3' fill=3D'hsl(0, 0%, 100%)'/%3e%3c/svg%3e"); --_ts-bg= -ps: left center; --_ts-multiple-bg: unset; --_ts-multiple-fc: var(--black-= 400); } @media (prefers-color-scheme: dark) { body.theme-system .s-toggle-switch { --_ts-bg-image: url("data:image/svg+= xml;,%3csvg xmlns=3D'http://www.w3.org/2000/svg' viewBox=3D'-4 -4 8 8'%3e%3= ccircle r=3D'3' fill=3D'hsl(210, 3.0000000000000027%, 15%)'/%3e%3c/svg%3e")= ; } } body.theme-dark .s-toggle-switch, .theme-dark__forced .s-toggle-switch, bod= y.theme-system .theme-dark__forced .s-toggle-switch { --_ts-bg-image: url("= data:image/svg+xml;,%3csvg xmlns=3D'http://www.w3.org/2000/svg' viewBox=3D'= -4 -4 8 8'%3e%3ccircle r=3D'3' fill=3D'hsl(210, 3.0000000000000027%, 15%)'/= %3e%3c/svg%3e"); } fieldset[disabled] .s-toggle-switch, .s-toggle-switch[disabled], fieldset[d= isabled] .s-toggle-switch label, .s-toggle-switch[disabled] label { cursor:= not-allowed; opacity: var(--_o-disabled-static); } .s-toggle-switch.s-toggle-switch__multiple { align-items: stretch; display:= flex; } .s-toggle-switch.s-toggle-switch__multiple input[type=3D"radio"] { left: -9= 99em; margin: 0px; opacity: 0; position: absolute; } .s-toggle-switch.s-toggle-switch__multiple input[type=3D"radio"]:checked + = label.s-toggle-switch--label-off { --_ts-multiple-bg: var(--black-400); --_= ts-multiple-fc: var(--white); } .s-toggle-switch.s-toggle-switch__multiple input[type=3D"radio"]:checked + = label:not(.s-toggle-switch--label-off) { --_ts-multiple-bg: var(--green-400= ); --_ts-multiple-fc: var(--white); } .s-toggle-switch.s-toggle-switch__multiple input[type=3D"radio"]:focus-visi= ble + label { box-shadow: inset 0 0 0 var(--su-static2) var(--focus-theme),= inset 0 0 0 var(--su-static4) var(--focus-neutral); outline: var(--su-stati= c2) solid transparent !important; } .s-toggle-switch.s-toggle-switch__multiple label { background-color: var(--= _ts-multiple-bg); color: var(--_ts-multiple-fc); border-radius: 1000px; cur= sor: pointer; font-size: var(--fs-body1); font-weight: 400; line-height: 1;= margin: 0px; padding: 0.5em 0.7em; text-align: center; white-space: nowrap= ; width: 100%; user-select: none; } .s-toggle-switch input[type=3D"checkbox"], input[type=3D"checkbox"].s-toggl= e-switch { background-color: var(--_ts-bg); background-position: var(--_ts-= bg-ps); appearance: none; background-image: var(--_ts-bg-image); background= -size: contain; background-repeat: no-repeat; border-radius: 1000px; cursor= : pointer; flex-shrink: 0; height: var(--su-static24); margin: 0px; transit= ion: background-position 0.2s; vertical-align: top; width: calc(var(--su-st= atic48) - var(--su-static4)); } .s-toggle-switch input[type=3D"checkbox"]:checked, input[type=3D"checkbox"]= .s-toggle-switch:checked { --_ts-bg: var(--green-400); --_ts-bg-ps: right c= enter; } .s-toggle-switch input[type=3D"checkbox"]:focus-visible, input[type=3D"chec= kbox"].s-toggle-switch:focus-visible { box-shadow: 0 0 0 var(--su-static2) = var(--focus-neutral),0 0 0 var(--su-static4) var(--focus-theme); outline: v= ar(--su-static2) solid transparent !important; } .s-toggle-switch input[type=3D"checkbox"][disabled], input[type=3D"checkbox= "].s-toggle-switch[disabled] { cursor: default; } .s-topbar { --_tb-bt: var(--theme-topbar-accent-border, 3px solid var(--the= me-primary)); --_tb-h: var(--theme-topbar-height, calc(var(--su-static48) += var(--su-static8))); --_tb-item-bg: unset; --_tb-item-fc: var(--theme-topb= ar-item-color, var(--black-400)); --_tb-item-ai-bs: 0 0 0 var(--su-static2)= var(--theme-topbar-background-color, var(--white)); --_tb-item-ai-t: calc(= 50% - calc(var(--su12) + var(--su2))); --_tb-logo-bg: transparent; --_tb-me= nu-btn-bg: unset; --_tb-menu-btn-bg-hover: unset; --_tb-menu-btn-fc-hover: = unset; --_tb-menu-btn-span-bg: var(--theme-topbar-item-color, var(--black-4= 00)); --_tb-menu-btn-span-fc: unset; --_tb-menu-btn-span-after-t: calc(var(= --su-static6) - var(--su-static1)); --_tb-menu-btn-span-after-rotate: 0deg;= --_tb-menu-btn-span-before-t: calc(var(--su-static1) - var(--su-static6));= --_tb-menu-btn-span-before-rotate: 0deg; --_tb-notice-bg: transparent; --_= tb-notice-fc: var(--theme-topbar-item-color, var(--black-400)); --_tb-notic= e-bg-hover: var(--theme-topbar-item-background-hover, var(--black-200)); --= _tb-notice-fc-hover: var(--theme-topbar-item-color-hover, var(--black-600))= ; --_tb-notice-td: none; --_tb-searchbar-d: flex; --_tb-searchbar-p: 0 var(= --su8); --_tb-searchbar-open-d: unset; --_tb-searchbar-open-mxw: 0; --_tb-s= earchbar-popover-wmn: calc(var(--s-step) * 4); --_tb-searchbar-popover-cont= ent-mxh: calc(100vh - var(--_tb-h) - var(--su16)); align-items: center; bac= kground-color: var(--theme-topbar-background-color, var(--white)); border-b= ottom: var(--theme-topbar-bottom-border, var(--su-static1) solid var(--blac= k-225)); border-top: var(--_tb-bt); display: flex; height: var(--_tb-h); mi= n-width: auto; position: relative; width: 100%; z-index: var(--zi-navigatio= n-fixed); } @media (prefers-color-scheme: dark) { body.theme-system .s-topbar.s-topbar__light { --focus-theme: var(--theme-= dark-secondary-custom-200, var(--blue-200)); } } body.theme-dark .s-topbar.s-topbar__light, .theme-dark__forced .s-topbar.s-= topbar__light, body.theme-system .theme-dark__forced .s-topbar.s-topbar__li= ght { --focus-theme: var(--theme-dark-secondary-custom-200, var(--blue-200)= ); } body.theme-highcontrast .s-topbar { --_tb-notice-td: underline; --theme-top= bar-search-color: var(--theme-topbar-item-color, var(--black-400)); --theme= -topbar-search-background: var(--theme-topbar-background-color, var(--white= )); --theme-topbar-search-placeholder: var(--theme-topbar-item-color, var(-= -black-400)); --theme-topbar-search-border: var(--theme-topbar-item-color, = var(--black-400)); --theme-topbar-select-color: var(--theme-topbar-item-col= or, var(--black-400)); --theme-topbar-select-background: var(--theme-topbar= -background-color, var(--white)); --theme-topbar-item-color: var(--black-60= 0); --theme-topbar-item-color-hover: var(--black-600); --theme-topbar-item-= background-hover: var(--black-300); --theme-topbar-item-color-current: var(= --black); border-bottom: var(--su-static1) solid currentColor; } body.theme-highcontrast .s-topbar.s-topbar__dark { --focus-theme: hsl(210,8= 9%,77%); } body.theme-highcontrast .s-topbar__dark { --theme-topbar-item-color: var(--= _white-static); --theme-topbar-item-color-hover: var(--_white-static); --th= eme-topbar-item-background-hover: hsl(210,8%,25%); --theme-topbar-item-colo= r-current: var(--_white-static); } body.theme-highcontrast .s-topbar__dark .s-badge { border-color: currentcol= or; } body.theme-highcontrast .s-topbar__light { --theme-topbar-item-color: hsl(2= 10,8%,5%); --theme-topbar-item-color-hover: hsl(210,8%,5%); --theme-topbar-= item-background-hover: hsl(210,8%,90%); --theme-topbar-item-color-current: = var(--_black-static); } @media (prefers-color-scheme: dark) { body.theme-highcontrast.theme-system .s-topbar.s-topbar__light { --focus-= theme: var(--blue-200); } } body.theme-highcontrast.theme-dark .s-topbar.s-topbar__light { --focus-them= e: var(--blue-200); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-topbar { --_tb-sear= chbar-d: none; --_tb-searchbar-p: var(--su8) var(--su12); --_tb-searchbar-o= pen-d: flex; --_tb-searchbar-open-mxw: none; --_tb-searchbar-select-w: 25%;= --_tb-searchbar-popover-wmn: initial; --_tb-searchbar-popover-content-mxh:= calc(100vh - var(--_tb-h) - var(--su48) - var(--su12)); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-topbar { --_tb-searchbar-= d: none; --_tb-searchbar-p: var(--su8) var(--su12); --_tb-searchbar-open-d:= flex; --_tb-searchbar-open-mxw: none; --_tb-searchbar-select-w: 25%; --_tb= -searchbar-popover-wmn: initial; --_tb-searchbar-popover-content-mxh: calc(= 100vh - var(--_tb-h) - var(--su48) - var(--su12)); } } .s-topbar.s-topbar__light { --focus-neutral: hsl(0,0%,100%); } .s-topbar.s-topbar__dark { --focus-neutral: hsl(210,8%,5%); --focus-theme: = var(--theme-dark-secondary-custom-400, hsl(210,89%,77%)); } .s-topbar:has(> .s-topbar--skip-link:focus) { border-top: none; display: bl= ock; height: auto; } .s-topbar:has(> .s-topbar--skip-link:focus) .s-topbar--container { height: = var(--_tb-h); } .s-topbar:has(> .s-topbar--skip-link:focus) .s-topbar--skip-link { border-b= ottom: var(--_tb-bt); } .s-topbar a.s-topbar--logo:focus-visible { box-shadow: inset 0 0 0 var(--su= -static2) var(--focus-theme),inset 0 0 0 var(--su-static4) var(--focus-neut= ral); outline: var(--su-static2) solid transparent !important; } .s-topbar a.s-topbar--logo:hover, .s-topbar a.s-topbar--logo.is-selected { = --_tb-logo-bg: var(--theme-topbar-item-background-hover, var(--black-200));= } .s-topbar .s-topbar--container { align-items: center; display: flex; height= : 100%; margin: 0px auto; max-width: 100%; width: var(--s-full); } .s-topbar .s-topbar--content { list-style: none; margin: 0px 0px 0px auto; = padding: 0px; scrollbar-color: var(--scrollbar) transparent; display: flex;= height: 100%; overflow-x: auto; } .s-topbar .s-topbar--content > li { display: inline-flex; } .s-topbar .s-topbar--content::-webkit-scrollbar { width: calc(var(--su-stat= ic12) - var(--su-static2)); height: calc(var(--su-static12) - var(--su-stat= ic2)); background-color: transparent; } .s-topbar .s-topbar--content::-webkit-scrollbar-track { border-radius: calc= (var(--su-static12) - var(--su-static2)); background-color: transparent; } .s-topbar .s-topbar--content::-webkit-scrollbar-thumb { border-radius: calc= (var(--su-static12) - var(--su-static2)); background-color: var(--scrollbar= ); } .s-topbar .s-topbar--content::-webkit-scrollbar-corner { background-color: = transparent; border-color: transparent; } .s-topbar .s-topbar--item:not(.s-topbar--item__unset) { background-color: v= ar(--_tb-item-bg); color: var(--_tb-item-fc); align-items: center; border-r= adius: var(--br-sm); display: inline-flex; padding: 0 calc(var(--su12) - va= r(--su2)); position: relative; text-decoration: none; white-space: nowrap; = } .s-topbar .s-topbar--item:not(.s-topbar--item__unset) .svg-icon { vertical-= align: text-top; } .s-topbar .s-topbar--item:not(.s-topbar--item__unset):focus-visible { box-s= hadow: inset 0 0 0 var(--su-static2) var(--focus-theme),inset 0 0 0 var(--s= u-static4) var(--focus-neutral); outline: var(--su-static2) solid transpare= nt !important; } .s-topbar .s-topbar--item:not(.s-topbar--item__unset):hover, .s-topbar .s-t= opbar--item:not(.s-topbar--item__unset).is-selected, .s-topbar .s-topbar--i= tem:not(.s-topbar--item__unset).is-selected:hover { --_tb-item-bg: var(--th= eme-topbar-item-background-hover, var(--black-200)); --_tb-item-fc: var(--t= heme-topbar-item-color-hover, var(--black-600)); --_tb-item-ai-bs: 0 0 0 va= r(--su-static2) var(--theme-topbar-item-background-hover, var(--black-200))= ; --_tb-item-ai-t: calc(50% - calc(var(--su16) + var(--su2))); outline: non= e; } .s-topbar .s-topbar--item:not(.s-topbar--item__unset) .s-activity-indicator= { box-shadow: var(--_tb-item-ai-bs); top: var(--_tb-item-ai-t); position: = absolute; right: var(--su-static2); transition: top var(--te-smooth) .15s; = } .s-topbar .s-topbar--item.s-topbar--item__unset { align-self: center; paddi= ng-top: var(--su8); padding-bottom: var(--su8); } .s-topbar .s-topbar--logo { background-color: var(--_tb-logo-bg); align-ite= ms: center; border-radius: var(--br-sm); display: flex; height: 100%; paddi= ng: 0 var(--su8); } .s-topbar .s-topbar--menu-btn { background-color: var(--_tb-menu-btn-bg); c= olor: var(--_tb-menu-btn-fc); align-items: center; display: flex; flex-shri= nk: 0; height: 100%; justify-content: center; padding: 0 var(--su16); } .s-topbar .s-topbar--menu-btn.is-selected { --_tb-menu-btn-bg: var(--theme-= topbar-item-background-current); --_tb-menu-btn-bg-hover: var(--theme-topba= r-item-background-hover, var(--black-200)); --_tb-menu-btn-fc: var(--theme-= topbar-item-color-current, var(--black)); --_tb-menu-btn-fc-hover: var(--th= eme-topbar-item-color-hover, var(--black-400)); --_tb-menu-btn-span-bg: tra= nsparent; --_tb-menu-btn-span-after-t: 0; --_tb-menu-btn-span-after-rotate:= 45deg; --_tb-menu-btn-span-before-t: 0; --_tb-menu-btn-span-before-rotate:= -45deg; } .s-topbar .s-topbar--menu-btn:not(.is-selected) span { transition: backgrou= nd-color 0.1s; } .s-topbar .s-topbar--menu-btn span { background-color: var(--_tb-menu-btn-s= pan-bg); } .s-topbar .s-topbar--menu-btn span, .s-topbar .s-topbar--menu-btn span::aft= er, .s-topbar .s-topbar--menu-btn span::before { height: var(--su-static2);= position: relative; width: var(--su-static16); } .s-topbar .s-topbar--menu-btn span::after, .s-topbar .s-topbar--menu-btn sp= an::before { background-color: var(--theme-topbar-item-color, var(--black-4= 00)); content: ""; left: 0px; position: absolute; transition: top 0.1s ease= -in-out, transform; } .s-topbar .s-topbar--menu-btn span::after { top: var(--_tb-menu-btn-span-af= ter-t); transform: rotate(var(--_tb-menu-btn-span-after-rotate)); } .s-topbar .s-topbar--menu-btn span::before { top: var(--_tb-menu-btn-span-b= efore-t); transform: rotate(var(--_tb-menu-btn-span-before-rotate)); } .s-topbar .s-topbar--menu-btn:hover { background-color: var(--_tb-menu-btn-= bg-hover); color: var(--_tb-menu-btn-fc-hover); } .s-topbar .s-topbar--navigation { scrollbar-color: var(--scrollbar) transpa= rent; display: flex; height: 100%; margin-left: auto; overflow-x: auto; } .s-topbar .s-topbar--navigation::-webkit-scrollbar { width: calc(var(--su-s= tatic12) - var(--su-static2)); height: calc(var(--su-static12) - var(--su-s= tatic2)); background-color: transparent; } .s-topbar .s-topbar--navigation::-webkit-scrollbar-track { border-radius: c= alc(var(--su-static12) - var(--su-static2)); background-color: transparent;= } .s-topbar .s-topbar--navigation::-webkit-scrollbar-thumb { border-radius: c= alc(var(--su-static12) - var(--su-static2)); background-color: var(--scroll= bar); } .s-topbar .s-topbar--navigation::-webkit-scrollbar-corner { background-colo= r: transparent; border-color: transparent; } .s-topbar .s-topbar--notice { background-color: var(--_tb-notice-bg); borde= r: var(--su-static1) solid var(--_tb-notice-bg); color: var(--_tb-notice-fc= ); text-decoration: var(--_tb-notice-td); border-radius: var(--br-sm); disp= lay: inline-flex; flex-shrink: 0; font-size: var(--fs-fine); font-weight: 7= 00; margin-left: var(--su8); margin-right: var(--su8); line-height: var(--l= h-xxl); padding: 0 var(--su6); text-transform: uppercase; } .s-topbar .s-topbar--notice.is-unread { --_tb-notice-bg: var(--theme-primar= y-400); --_tb-notice-fc: var(--white); --_tb-notice-bg-hover: var(--theme-p= rimary-500); --_tb-notice-fc-hover: var(--white); } .s-topbar .s-topbar--notice:focus-visible { box-shadow: inset 0 0 0 var(--s= u-static1) var(--focus-theme),inset 0 0 0 calc(var(--su-static4) - var(--su= -static1)) var(--focus-neutral); border-color: var(--focus-theme) !importan= t; outline: var(--su-static2) solid transparent !important; } .s-topbar .s-topbar--notice:hover { background-color: var(--_tb-notice-bg-h= over); border-color: var(--_tb-notice-bg-hover); color: var(--_tb-notice-fc= -hover); } .s-topbar .s-topbar--searchbar { display: var(--_tb-searchbar-d); align-ite= ms: center; flex-grow: 1; flex-shrink: 10000; padding: var(--_tb-searchbar-= p); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-topbar .s-topbar--s= earchbar { background: var(--theme-topbar-item-background-hover, var(--blac= k-200)); left: 0px; max-width: 100%; position: absolute; right: 0px; top: 1= 00%; } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-topbar .s-topbar--searchb= ar { background: var(--theme-topbar-item-background-hover, var(--black-200)= ); left: 0px; max-width: 100%; position: absolute; right: 0px; top: 100%; } } .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group { flex-gro= w: 1; position: relative; } .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input {= background-color: var(--theme-topbar-search-background, var(--white)); bor= der-color: var(--theme-topbar-search-border, var(--black-300)); color: var(= --theme-topbar-search-color, var(--black-500)); display: block; line-height= : var(--lh-sm); } .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input::= placeholder { color: var(--theme-topbar-search-placeholder, var(--black-400= )); font-style: normal; } .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input:n= ot(:focus-visible):not(.focus) { box-shadow: var(--theme-topbar-search-shad= ow); } .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input-i= con { color: var(--theme-topbar-search-placeholder, var(--black-400)); } .s-topbar .s-topbar--searchbar .s-popover { max-width: 100%; min-width: var= (--_tb-searchbar-popover-wmn); padding: 0px; } .s-topbar .s-topbar--searchbar .s-popover .s-popover--content { max-height:= var(--_tb-searchbar-popover-content-mxh); } .s-topbar .s-topbar--searchbar .s-select { align-self: stretch; color: var(= --theme-topbar-select-color, var(--black-500)); margin-right: calc(var(--su= -static1) * -1); max-width: calc(var(--s-step) * 2) !important; } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-topbar .s-topbar--s= earchbar .s-select { width: 25% !important; } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-topbar .s-topbar--searchb= ar .s-select { width: 25% !important; } } .s-topbar .s-topbar--searchbar .s-select > select { background-color: var(-= -theme-topbar-select-background, var(--black-200)); border-color: var(--the= me-topbar-search-border, var(--black-300)); color: var(--theme-topbar-selec= t-color, var(--black-500)); height: 100%; line-height: var(--lh-sm); border= -bottom-right-radius: 0px !important; border-top-right-radius: 0px !importa= nt; } .s-topbar .s-topbar--searchbar .s-select > select:focus-visible, .s-topbar = .s-topbar--searchbar .s-select > select.focus { z-index: var(--zi-selected)= ; } .s-topbar .s-topbar--searchbar .s-select + .s-topbar--searchbar--input-grou= p > .s-input { border-bottom-left-radius: 0px !important; border-top-left-r= adius: 0px !important; } .s-topbar .s-topbar--searchbar .s-select::before, .s-topbar .s-topbar--sear= chbar .s-select::after { z-index: var(--zi-active); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .s-topbar .s-topbar--s= earchbar.s-topbar--searchbar__open { display: var(--_tb-searchbar-open-d); = max-width: var(--_tb-searchbar-open-mxw); } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .s-topbar .s-topbar--searchb= ar.s-topbar--searchbar__open { display: var(--_tb-searchbar-open-d); max-wi= dth: var(--_tb-searchbar-open-mxw); } } .s-topbar .s-topbar--skip-link { background-color: var(--theme-secondary-10= 0); border-bottom: var(--_tb-bt); display: block; outline: none; padding: v= ar(--su12); text-align: center; } .s-topbar .s-navigation .s-navigation--item:not(.is-selected) { color: var(= --theme-topbar-item-color, var(--black-400)); } .s-topbar .s-navigation .s-navigation--item:not(.is-selected):hover { backg= round-color: var(--theme-topbar-item-background-hover, var(--black-200)); c= olor: var(--theme-topbar-item-color-hover, var(--black-400)); } .s-topbar .s-popover .s-navigation .s-navigation--item:not(.is-selected) { = color: var(--black-500); } .s-topbar .s-popover .s-navigation .s-navigation--item:not(.is-selected):ho= ver { background-color: var(--black-200); color: var(--black-600); } .s-topbar__dark { --theme-topbar-background-color: hsl(210,8%,5%); --theme-= topbar-bottom-border: var(--su-static1) solid hsl(210,8%,5%); --theme-topba= r-search-color: hsl(0,0%,100%); --theme-topbar-search-background: hsl(210,8= %,25%); --theme-topbar-search-placeholder: hsl(210,8%,85%); --theme-topbar-= search-border: hsl(210,8%,45%); --theme-topbar-select-color: hsl(210,8%,85%= ); --theme-topbar-select-background: hsl(210,8%,35%); --theme-topbar-item-c= olor: hsl(210,8%,85%); --theme-topbar-item-color-hover: var(--_white-static= ); --theme-topbar-item-background-hover: hsl(210,8%,25%); --theme-topbar-it= em-color-current: var(--_white-static); --theme-topbar-accent-border: none;= --scrollbar: hsla(0,0%,100%,0.2); } .s-topbar__light { --theme-topbar-background-color: var(--_white-static); -= -theme-topbar-bottom-border: var(--su-static1) solid hsl(210,8%,85%); --the= me-topbar-search-color: hsl(210,8%,25%); --theme-topbar-search-background: = var(--_white-static); --theme-topbar-search-placeholder: hsl(210,8%,42%); -= -theme-topbar-search-border: hsl(210,9%,75%); --theme-topbar-select-color: = hsl(210,8%,25%); --theme-topbar-select-background: hsl(210,8%,90%); --theme= -topbar-item-color: hsl(210,8%,42%); --theme-topbar-item-color-hover: hsl(2= 10,8%,25%); --theme-topbar-item-background-hover: hsl(210,8%,90%); --theme-= topbar-item-color-current: var(--_black-static); --scrollbar: hsla(0,0%,0%,= 0.2); } .s-uploader { --_up-bg-b-image: url("data:image/svg+xml;,%3csvg width=3D'10= 0%25' height=3D'100%25' xmlns=3D'http://www.w3.org/2000/svg'%3e%3crect widt= h=3D'100%25' height=3D'100%25' fill=3D'none' rx=3D'5' ry=3D'5' stroke=3D'%2= 3000000' stroke-width=3D'8' stroke-dasharray=3D'7%2c 22' stroke-dashoffset= =3D'0' stroke-linecap=3D'square'/%3e%3c/svg%3e"); --_up-bg: var(--black-100= ); --_up-bg-focus: var(--black-150); --_up-bg-bc: var(--black-250); --_up-f= ocus-ring-color: var(--focus-ring); position: relative; } body.theme-highcontrast .s-uploader { --_up-bg-bc-hc: var(--black-400); } body.theme-highcontrast .s-uploader.has-error { --_up-bg-bc-hc-state: var(-= -red-500); } body.theme-highcontrast .s-uploader.has-success { --_up-bg-bc-hc-state: var= (--green-400); } body.theme-highcontrast .s-uploader.has-warning { --_up-bg-bc-hc-state: var= (--yellow-500); } .s-uploader.has-error .s-link, .s-uploader.has-success .s-link, .s-uploader= .has-warning .s-link { color: var(--_up-link-fc); } .s-uploader.has-error { --_up-bg: var(--red-100); --_up-bg-focus: var(--red= -200); --_up-bg-bc: var(--red-300); --_up-focus-ring-color: var(--focus-rin= g-error); --_up-link-fc: var(--red-500); } .s-uploader.has-success { --_up-bg: var(--green-100); --_up-bg-focus: var(-= -green-200); --_up-bg-bc: var(--green-300); --_up-focus-ring-color: var(--f= ocus-ring-success); --_up-link-fc: var(--green-400); } .s-uploader.has-warning { --_up-bg: var(--yellow-100); --_up-bg-focus: var(= --yellow-200); --_up-bg-bc: var(--yellow-300); --_up-focus-ring-color: var(= --focus-ring-warning); --_up-link-fc: var(--yellow-500); } .s-uploader.is-active { --_up-bg: var(--black-150); --_up-bg-bc: var(--blac= k-300); } .s-uploader.is-disabled { opacity: var(--_o-disabled-static); } .s-uploader .s-uploader--container { align-items: center; background-color:= var(--_up-bg); border-radius: var(--br-lg); display: flex; flex-direction:= column; justify-content: center; min-height: var(--su-static128); padding:= var(--su8) var(--su16); position: relative; text-align: center; } .s-uploader .s-uploader--container::before { mask-image: var(--_up-bg-b-ima= ge); background-color: var(--_up-bg-bc-hc-state, var(--_up-bg-bc-hc, var(--= _up-bg-bc))); border-radius: var(--br-lg); content: ""; display: block; ins= et: 0px; position: absolute; } .s-uploader .s-uploader--input { cursor: pointer; height: 100%; inset: 0px;= opacity: 0; position: absolute; width: 100%; z-index: var(--zi-selected); = } .s-uploader .s-uploader--input:focus:focus-visible + .s-uploader--container= { box-shadow: 0 0 0 var(--su-static2) var(--focus-neutral),0 0 0 var(--su-= static4) var(--focus-theme); outline: var(--su-static2) solid transparent != important; } .s-uploader .s-uploader--input:focus:focus-visible + .s-uploader--container= , .s-uploader .s-uploader--input .s-uploader--container.focus { background-= color: var(--_up-bg-focus); } .s-uploader .s-uploader--preview { max-width: 100%; pointer-events: none; } .s-uploader .s-uploader--preview-thumbnail { background-color: var(--white)= ; border-radius: var(--br-sm); box-shadow: var(--bs-md); max-height: var(--= su-static128); max-width: 100%; overflow: hidden; text-overflow: ellipsis; = white-space: nowrap; } body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail { border= : var(--su-static1) solid var(--black); } .s-uploader .s-uploader--preview-thumbnail:is(img) { object-fit: scale-down= ; object-position: center center; } .s-uploader .s-uploader--preview-thumbnail:not(img) { padding: var(--su16);= } .s-uploader .s-uploader--previews { max-width: 100%; text-align: left; } .s-uploader .s-uploader--previews.has-multiple { display: block; height: au= to; padding: var(--su8) var(--su2); width: 100%; } .s-uploader .s-uploader--previews.has-multiple .s-uploader--preview { align= -items: center; display: flex; padding: var(--su6) 0; width: 100%; } .s-uploader .s-uploader--previews.has-multiple .s-uploader--preview::after = { content: attr(data-filename); display: block; margin-left: var(--su12); m= ax-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: now= rap; } .s-uploader .s-uploader--previews.has-multiple .s-uploader--preview-thumbna= il { color: transparent; height: var(--su-static32); flex-shrink: 0; width:= var(--su-static32); } .s-uploader .s-uploader--previews.has-multiple .s-uploader--preview-thumbna= il:is(img) { object-fit: cover; } .s-uploader .s-uploader--previews.has-multiple .s-uploader--preview-thumbna= il:not(img) { background-image: url("data:image/svg+xml;,%3Csvg xmlns=3D'ht= tp://www.w3.org/2000/svg' aria-hidden=3D'true' fill=3D'%23535A60' width=3D'= 18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath d=3D'M3 3a2 2 0 012-2h6l4= 4v10a2 2 0 01-2 2H5a2 2 0 01-2-2V3zm7-1.5V6h4.5L10 1.5z'%3E%3C/path%3E%3C/= svg%3E"); background-position: center center; background-repeat: no-repeat;= } .s-uploader .s-uploader--previews-heading { color: var(--black-600); font-s= ize: var(--fs-body2); font-weight: 700; padding-bottom: var(--su8); } .s-uploader .s-uploader--reset { position: absolute; right: var(--su8); top= : var(--su8); z-index: var(--zi-active); } .s-uploader input[type=3D"file"]::file-selector-button { cursor: pointer; } .s-user-card { --_uc-ai: center; --_uc-bg: unset; --_uc-bar: unset; --_uc-d= : grid; --_uc-fc: unset; --_uc-g: var(--su4) var(--su8); --_uc-p: var(--su8= ); --_uc-info-ai: unset; --_uc-info-fd: column; --_uc-link-fs: var(--fs-cap= tion); --_uc-link-ws: unset; --_uc-rep-fc: unset; --_uc-time-fc: var(--blac= k-400); --_uc-time-ws: unset; --_uc-type-fc: var(--theme-primary-400); alig= n-items: var(--_uc-ai); background-color: var(--_uc-bg); border-radius: var= (--_uc-bar); color: var(--_uc-fc); display: var(--_uc-d); gap: var(--_uc-g)= ; grid-template-columns: auto 1fr; line-height: 1; padding: var(--_uc-p); } .s-user-card.s-user-card__deleted { --_uc-fc: var(--black-400); } .s-user-card.s-user-card__highlighted { --_uc-bg: var(--theme-secondary-100= ); --_uc-bar: var(--br-md); --_uc-time-fc: var(--black-500); --_uc-type-fc:= var(--black-500); } .s-user-card.s-user-card__minimal, .s-user-card.s-user-card__small { --_uc-= d: flex; --_uc-g: var(--su4); --_uc-p: 0; --_uc-info-ai: center; --_uc-info= -fd: row; } .s-user-card.s-user-card__full { --_uc-ai: flex-start; --_uc-link-fs: var(-= -fs-body2); } .s-user-card.s-user-card__minimal { --_uc-link-ws: nowrap; --_uc-rep-fc: va= r(--black-500); --_uc-time-ws: nowrap; } .s-user-card .s-user-card--location, .s-user-card .s-user-card--role { font= -size: var(--fs-caption); color: var(--black-400); } .s-user-card .s-user-card--awards { list-style: none; margin: 0px; padding:= 0px; align-items: center; display: flex; gap: var(--su6); } .s-user-card .s-user-card--awards li { font-size: var(--fs-caption); } .s-user-card .s-user-card--info { align-items: var(--_uc-info-ai); flex-dir= ection: var(--_uc-info-fd); display: flex; gap: var(--su4); } .s-user-card .s-user-card--link { font-size: var(--_uc-link-fs); white-spac= e: var(--_uc-link-ws); align-items: center; flex-wrap: wrap; min-width: 0px= ; overflow-wrap: break-word; } .s-user-card .s-user-card--rep { color: var(--_uc-rep-fc); font-weight: 700= ; } .s-user-card .s-user-card--tags { align-items: center; min-width: 0px; flex= -wrap: wrap; } .s-user-card .s-user-card--time { color: var(--_uc-time-fc); white-space: v= ar(--_uc-time-ws); font-size: var(--fs-caption); grid-area: 1 / 1 / 2 / 3; = } .s-user-card .s-user-card--type { color: var(--_uc-type-fc); font-size: var= (--fs-caption); grid-column: 1 / 3; } .s-user-card .s-user-card--type a:not(.s-link) { color: inherit !important;= } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI"); asce= nt-override: 95%; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Italic"= ); ascent-override: 95%; font-style: italic; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Semibol= d"); ascent-override: 95%; font-weight: 600; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Semibol= d Italic"); ascent-override: 95%; font-style: italic; font-weight: 600; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Bold");= ascent-override: 90%; font-weight: 700; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Bold It= alic"); ascent-override: 95%; font-style: italic; font-weight: 700; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Black")= ; ascent-override: 95%; font-weight: 800; } @font-face { font-family: "Segoe UI Adjusted"; src: local("Segoe UI Black I= talic"); ascent-override: 95%; font-style: italic; font-weight: 800; } html, body { --ff-sans: -apple-system,BlinkMacSystemFont,"Segoe UI Adjusted= ","Segoe UI","Liberation Sans",sans-serif; --ff-serif: Georgia,Cambria,"Tim= es New Roman",Times,serif; --ff-mono: ui-monospace,"Cascadia Mono","Segoe U= I Mono","Liberation Mono",Menlo,Monaco,Consolas,monospace; --theme-body-fon= t-family: var(--ff-sans); --fs-fine: 11px; --fs-caption: 12px; --fs-body1: = 13px; --fs-body2: 1.15384615rem; --fs-body3: 1.30769231rem; --fs-subheading= : 1.46153846rem; --fs-title: 1.61538462rem; --fs-headline1: 2.07692308rem; = --fs-headline2: 2.61538461rem; --fs-display1: 3.30769231rem; --fs-display2:= 4.23076923rem; --fs-display3: 5.30769231rem; --fs-display4: 7.61538461rem;= --fs-body2-relative: 1.15384615em; --fs-body3-relative: 1.30769231em; --fs= -subheading-relative: 1.46153846em; --fs-title-relative: 1.61538462em; --fs= -headline1-relative: 2.07692308em; --fs-headline2-relative: 2.61538461em; -= -fs-display1-relative: 3.30769231em; --fs-display2-relative: 4.23076923em; = --fs-display3-relative: 5.30769231em; --fs-display4-relative: 7.61538461em;= --fs-base: 13px; --stacks-internals-lh-unit: 13; --lh-xs: 1; --lh-sm: calc= ((var(--stacks-internals-lh-unit) + 2) / var(--stacks-internals-lh-unit)); = --lh-md: calc((var(--stacks-internals-lh-unit) + 4) / var(--stacks-internal= s-lh-unit)); --lh-lg: calc((var(--stacks-internals-lh-unit) + 8) / var(--st= acks-internals-lh-unit)); --lh-xl: calc((var(--stacks-internals-lh-unit) + = 12) / var(--stacks-internals-lh-unit)); --lh-xxl: 2; --lh-base: var(--lh-md= ); --lh-6: ((var(--stacks-internals-lh-unit) + 6) / var(--stacks-internals-= lh-unit)); } body { --zi-hide: -1; --zi-base: 0; --zi-selected: 25; --zi-active: 30; --z= i-dropdown: 1000; --zi-popovers: 2000; --zi-tooltips: 3000; --zi-banners: 4= 000; --zi-navigation: 5000; --zi-navigation-fixed: 5050; --zi-modals-backgr= ound: 8050; --zi-modals: 9000; --br-sm: calc(var(--su-static4)); --br-md: c= alc(var(--su-static6)); --br-lg: calc(var(--su-static8)); --br-circle: 50%;= --te-smooth-slow: cubic-bezier(.25, .46, .45, .94); --te-smooth: cubic-bez= ier(.165, .84, .44, 1); --te-smooth-quick: cubic-bezier(.19, 1, .22, 1); --= te-back-out: cubic-bezier(.175, .885, .32, 1.275); --te-back-in-out: cubic-= bezier(.68, -0.55, .265, 1.55); --te-ease-in: cubic-bezier(.47, 0, .745, .7= 15); --te-ease-in-out: cubic-bezier(.445, .05, .55, .95); --te-ease-out: cu= bic-bezier(.39, .575, .565, 1); --default-transition-duration: .1s; --trans= ition-time: var(--default-transition-duration); --s-full: 97.2307692rem; --= s-step: calc(var(--s-full) / 12); } body { --_o-disabled: .5; --_o-disabled-static: .5; --_black-static: hsl(0,= 0%,0%); --_white-static: hsl(0,0%,100%); } body:not(.theme-dark), body.theme-highcontrast:not(.theme-dark), body:not(.= theme-highcontrast):not(.theme-dark), body.theme-dark .theme-light__forced,= body.theme-highcontrast.theme-dark .theme-light__forced, body:not(.theme-h= ighcontrast).theme-dark .theme-light__forced, body.theme-system .theme-ligh= t__forced, body.theme-highcontrast.theme-system .theme-light__forced, body:= not(.theme-highcontrast).theme-system .theme-light__forced, body.theme-dark= , body.theme-highcontrast.theme-dark, body:not(.theme-highcontrast).theme-d= ark, body:not(.theme-dark) .theme-dark__forced, body.theme-highcontrast:not= (.theme-dark) .theme-dark__forced, body:not(.theme-highcontrast):not(.theme= -dark) .theme-dark__forced { --bg-error: var(--red-400); --bg-danger: var(-= -red-400); --bg-success: var(--green-400); --bg-warning: var(--yellow-500);= --bc-error: var(--red-400); --bc-danger: var(--red-400); --bc-success: var= (--green-400); --bc-warning: var(--yellow-500); --fc-light: var(--black-400= ); --fc-medium: var(--black-500); --fc-dark: var(--black-600); --fc-error: = var(--red-400); --fc-danger: var(--red-400); --fc-success: var(--green-400)= ; --fc-warning: var(--yellow-500); } @media (prefers-color-scheme: dark) { body.theme-system, body.theme-highcontrast.theme-system, body:not(.theme-= highcontrast).theme-system { --bg-error: var(--red-400); --bg-danger: var(-= -red-400); --bg-success: var(--green-400); --bg-warning: var(--yellow-500);= --bc-error: var(--red-400); --bc-danger: var(--red-400); --bc-success: var= (--green-400); --bc-warning: var(--yellow-500); --fc-light: var(--black-400= ); --fc-medium: var(--black-500); --fc-dark: var(--black-600); --fc-error: = var(--red-400); --fc-danger: var(--red-400); --fc-success: var(--green-400)= ; --fc-warning: var(--yellow-500); } } body:not(.theme-highcontrast):not(.theme-dark), body:not(.theme-highcontras= t).theme-dark .theme-light__forced, body:not(.theme-highcontrast).theme-sys= tem .theme-light__forced, body:not(.theme-highcontrast):not(.theme-dark).th= emed, body:not(.theme-highcontrast).theme-dark .theme-light__forced.themed,= body:not(.theme-highcontrast).theme-system .theme-light__forced.themed, bo= dy:not(.theme-highcontrast):not(.theme-dark) .themed, body:not(.theme-highc= ontrast).theme-dark .theme-light__forced .themed, body:not(.theme-highcontr= ast).theme-system .theme-light__forced .themed { --white: hsl(0,0%,100%); -= -black-050: hsl(0,0%,100%); --black-100: hsl(210,8%,98%); --black-150: hsl(= 210,8%,95%); --black-200: hsl(210,8%,90%); --black-225: hsl(210,8%,85%); --= black-250: hsl(210,8%,80%); --black-300: hsl(210,9%,75%); --black-350: hsl(= 210,8%,68%); --black-400: hsl(210,8%,42%); --black-500: hsl(210,8%,25%); --= black-600: hsl(210,8%,5%); --black: hsl(0,0%,0%); --orange-100: hsl(23,87%,= 97%); --orange-200: hsl(27,87%,87%); --orange-300: hsl(27,87%,72%); --orang= e-400: hsl(27,89%,48%); --orange-500: hsl(27,87%,41%); --orange-600: hsl(27= ,87%,27%); --blue-100: hsl(210,80%,96%); --blue-200: hsl(210,80%,91%); --bl= ue-300: hsl(210,78%,76%); --blue-400: hsl(210,77%,46%); --blue-500: hsl(210= ,77%,36%); --blue-600: hsl(210,80%,23%); --green-100: hsl(148,35%,95%); --g= reen-200: hsl(148,35%,88%); --green-300: hsl(148,35%,69%); --green-400: hsl= (148,70%,31%); --green-500: hsl(148,75%,22%); --green-600: hsl(148,75%,15%)= ; --red-100: hsl(0,72%,96%); --red-200: hsl(0,70%,93%); --red-300: hsl(0,66= %,80%); --red-400: hsl(0,60%,49%); --red-500: hsl(0,65%,37%); --red-600: hs= l(0,65%,22%); --yellow-100: hsl(43,85%,95%); --yellow-200: hsl(43,85%,88%);= --yellow-300: hsl(43,85%,72%); --yellow-400: hsl(43,85%,50%); --yellow-500= : hsl(43,85%,33%); --yellow-600: hsl(43,85%,18%); --purple-100: hsl(237,83%= ,98%); --purple-200: hsl(237,78%,93%); --purple-300: hsl(237,60%,83%); --pu= rple-400: hsl(237,55%,57%); --purple-500: hsl(237,50%,45%); --purple-600: h= sl(237,50%,32%); --gold-100: hsl(46,100%,91%); --gold-200: hsl(46,100%,74%)= ; --gold-300: hsl(45,100%,42%); --gold-400: hsl(46,92%,26%); --silver-100: = hsl(0,0%,95%); --silver-200: hsl(0,0%,84%); --silver-300: hsl(210,5%,68%); = --silver-400: hsl(210,2%,40%); --bronze-100: hsl(28,40%,92%); --bronze-200:= hsl(30,47%,83%); --bronze-300: hsl(28,43%,65%); --bronze-400: hsl(28,43%,3= 9%); --bc-lightest: var(--black-100); --bc-lighter: var(--black-150); --bc-= light: var(--black-200); --bc-medium: var(--black-225); --bc-dark: var(--bl= ack-250); --bc-darker: var(--black-300); --bs-sm: 0 1px 2px hsla(0,0%,0%,0.= 05),0 1px 4px hsla(0,0%,0%,0.05),0 2px 8px hsla(0,0%,0%,0.05); --bs-md: 0 1= px 3px hsla(0,0%,0%,0.06),0 2px 6px hsla(0,0%,0%,0.06),0 3px 8px hsla(0,0%,= 0%,0.09); --bs-lg: 0 1px 4px hsla(0,0%,0%,0.09),0 3px 8px hsla(0,0%,0%,0.09= ),0 4px 13px hsla(0,0%,0%,0.13); --bs-xl: 0 10px 24px hsla(0,0%,0%,0.05),0 = 20px 48px hsla(0,0%,0%,0.05),0 1px 4px hsla(0,0%,0%,0.1); --translucent-sec= ondary: var(--theme-secondary-custom-translucent, hsla(206,100%,40%,0.15));= --translucent-success: hsla(140,40%,75%,0.4); --translucent-warning: hsla(= 47,79%,58%,0.4); --translucent-error: hsla(358,62%,47%,0.15); --translucent= -muted: hsla(210,8%,15%,0.1); --focus-neutral: var(--white); --focus-theme:= var(--theme-secondary-400); --focus-ring: var(--theme-secondary-custom-foc= us-ring, hsla(206,100%,40%,0.15)); --focus-ring-success: hsla(140,40%,75%,0= .4); --focus-ring-warning: hsla(47,79%,58%,0.4); --focus-ring-error: hsla(3= 58,62%,47%,0.15); --focus-ring-muted: hsla(210,8%,15%,0.1); --highlight-add= ition: var(--green-500); --highlight-attribute: hsl(206,98.5%,29%); --highl= ight-bg: hsl(0,0%,96.5%); --highlight-color: var(--black-600); --highlight-= comment: hsl(210,8%,43.5%); --highlight-deletion: var(--red-500); --highlig= ht-keyword: hsl(206,98.5%,29%); --highlight-literal: hsl(27,99%,36%); --hig= hlight-namespace: hsl(27,99%,36%); --highlight-punctuation: var(--black-500= ); --highlight-symbol: hsl(306,43%,35%); --highlight-variable: hsl(80,80.5%= ,26.5%); --scrollbar: hsla(0,0%,0%,0.2); --theme-primary: var(--theme-prima= ry-custom, var(--orange-400)); --theme-primary-100: var(--theme-primary-cus= tom-100, var(--orange-100)); --theme-primary-200: var(--theme-primary-custo= m-200, var(--orange-200)); --theme-primary-300: var(--theme-primary-custom-= 300, var(--orange-300)); --theme-primary-400: var(--theme-primary-custom-40= 0, var(--orange-400)); --theme-primary-500: var(--theme-primary-custom-500,= var(--orange-500)); --theme-primary-600: var(--theme-primary-custom-600, v= ar(--orange-600)); --theme-secondary: var(--theme-secondary-custom, var(--b= lue-400)); --theme-secondary-100: var(--theme-secondary-custom-100, var(--b= lue-100)); --theme-secondary-200: var(--theme-secondary-custom-200, var(--b= lue-200)); --theme-secondary-300: var(--theme-secondary-custom-300, var(--b= lue-300)); --theme-secondary-400: var(--theme-secondary-custom-400, var(--b= lue-400)); --theme-secondary-500: var(--theme-secondary-custom-500, var(--b= lue-500)); --theme-secondary-600: var(--theme-secondary-custom-600, var(--b= lue-600)); --theme-primary-custom-100: hsl(var(--theme-base-primary-color-h= ), var(--theme-base-primary-color-s), calc(var(--theme-base-primary-color-l= ) + ((100% - var(--theme-base-primary-color-l)) * .9))); --theme-primary-cu= stom-200: hsl(var(--theme-base-primary-color-h), var(--theme-base-primary-c= olor-s), calc(var(--theme-base-primary-color-l) + ((100% - var(--theme-base= -primary-color-l)) * .75))); --theme-primary-custom-300: hsl(var(--theme-ba= se-primary-color-h), var(--theme-base-primary-color-s), calc(var(--theme-ba= se-primary-color-l) + ((100% - var(--theme-base-primary-color-l)) * .5))); = --theme-primary-custom-400: hsl(var(--theme-base-primary-color-h), var(--th= eme-base-primary-color-s), var(--theme-base-primary-color-l)); --theme-prim= ary-custom-500: hsl(var(--theme-base-primary-color-h), var(--theme-base-pri= mary-color-s), calc(var(--theme-base-primary-color-l) + (var(--theme-base-p= rimary-color-l) * -.3))); --theme-primary-custom-600: hsl(var(--theme-base-= primary-color-h), var(--theme-base-primary-color-s), calc(var(--theme-base-= primary-color-l) + (var(--theme-base-primary-color-l) * -.6))); --theme-pri= mary-custom: var(--theme-primary-custom-400); --theme-secondary-custom-100:= hsl(var(--theme-base-secondary-color-h), var(--theme-base-secondary-color-= s), calc(var(--theme-base-secondary-color-l) + ((100% - var(--theme-base-se= condary-color-l)) * .9))); --theme-secondary-custom-200: hsl(var(--theme-ba= se-secondary-color-h), var(--theme-base-secondary-color-s), calc(var(--them= e-base-secondary-color-l) + ((100% - var(--theme-base-secondary-color-l)) *= .75))); --theme-secondary-custom-300: hsl(var(--theme-base-secondary-color= -h), var(--theme-base-secondary-color-s), calc(var(--theme-base-secondary-c= olor-l) + ((100% - var(--theme-base-secondary-color-l)) * .5))); --theme-se= condary-custom-400: hsl(var(--theme-base-secondary-color-h), var(--theme-ba= se-secondary-color-s), var(--theme-base-secondary-color-l)); --theme-second= ary-custom-500: hsl(var(--theme-base-secondary-color-h), var(--theme-base-s= econdary-color-s), calc(var(--theme-base-secondary-color-l) + (var(--theme-= base-secondary-color-l) * -.3))); --theme-secondary-custom-600: hsl(var(--t= heme-base-secondary-color-h), var(--theme-base-secondary-color-s), calc(var= (--theme-base-secondary-color-l) + (var(--theme-base-secondary-color-l) * -= .6))); --theme-secondary-custom: var(--theme-secondary-custom-400); --theme= -secondary-custom-focus-ring: hsla(var(--theme-base-secondary-color-h), var= (--theme-base-secondary-color-s), var(--theme-base-secondary-color-l), 0.15= ); --theme-secondary-custom-translucent: hsla(var(--theme-base-secondary-co= lor-h), var(--theme-base-secondary-color-s), var(--theme-base-secondary-col= or-l), 0.15); color: var(--theme-body-font-color, var(--black-600)); } body:not(.theme-highcontrast).theme-dark, body:not(.theme-highcontrast):not= (.theme-dark) .theme-dark__forced, body:not(.theme-highcontrast).theme-dark= .themed, body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced= .themed, body:not(.theme-highcontrast).theme-dark .themed, body:not(.theme-= highcontrast):not(.theme-dark) .theme-dark__forced .themed { --white: hsl(2= 10,3%,15%); --black-050: hsl(210,3%,15%); --black-100: hsl(210,3%,18%); --b= lack-150: hsl(210,4%,21%); --black-200: hsl(210,4%,27%); --black-225: hsl(2= 10,4%,30%); --black-250: hsl(210,5%,36%); --black-300: hsl(210,4%,47%); --b= lack-350: hsl(210,8%,70%); --black-400: hsl(210,8%,80%); --black-500: hsl(2= 10,8%,90%); --black-600: hsl(210,11%,98%); --black: hsl(0,0%,100%); --orang= e-100: hsl(27,55%,20%); --orange-200: hsl(27,50%,33%); --orange-300: hsl(27= ,50%,43%); --orange-400: hsl(27,90%,68%); --orange-500: hsl(27,90%,80%); --= orange-600: hsl(27,90%,90%); --blue-100: hsl(210,50%,22%); --blue-200: hsl(= 210,50%,36%); --blue-300: hsl(210,50%,48%); --blue-400: hsl(210,89%,77%); -= -blue-500: hsl(210,89%,84%); --blue-600: hsl(210,89%,92%); --green-100: hsl= (149,51%,15%); --green-200: hsl(149,51%,25%); --green-300: hsl(149,51%,36%)= ; --green-400: hsl(149,50%,62%); --green-500: hsl(149,50%,74%); --green-600= : hsl(149,50%,88%); --red-100: hsl(0,43%,22%); --red-200: hsl(0,43%,41%); -= -red-300: hsl(0,43%,56%); --red-400: hsl(0,90%,81%); --red-500: hsl(0,90%,8= 8%); --red-600: hsl(0,90%,94%); --yellow-100: hsl(43,50%,17%); --yellow-200= : hsl(43,50%,28%); --yellow-300: hsl(43,50%,39%); --yellow-400: hsl(43,90%,= 75%); --yellow-500: hsl(43,90%,82%); --yellow-600: hsl(43,90%,91%); --purpl= e-100: hsl(237,26%,23%); --purple-200: hsl(237,26%,44%); --purple-300: hsl(= 237,26%,56%); --purple-400: hsl(237,98%,87%); --purple-500: hsl(237,98%,92%= ); --purple-600: hsl(237,98%,96%); --gold-100: hsl(45,29%,24%); --gold-200:= hsl(45,47%,37%); --gold-300: hsl(45,92%,62%); --gold-400: hsl(46,93%,78%);= --silver-100: hsl(220,2%,26%); --silver-200: hsl(220,1%,46%); --silver-300= : hsl(216,4%,69%); --silver-400: hsl(214,8%,83%); --bronze-100: hsl(28,13%,= 27%); --bronze-200: hsl(28,27%,45%); --bronze-300: hsl(28,58%,67%); --bronz= e-400: hsl(28,59%,83%); --bc-lightest: var(--black-100); --bc-lighter: var(= --black-150); --bc-light: var(--black-200); --bc-medium: var(--black-225); = --bc-dark: var(--black-250); --bc-darker: var(--black-300); --bs-sm: 0 1px = 2px hsla(0,0%,0%,0.1),0 1px 4px hsla(0,0%,0%,0.1),0 2px 8px hsla(0,0%,0%,0.= 1); --bs-md: 0 1px 3px hsla(0,0%,0%,0.11),0 2px 6px hsla(0,0%,0%,0.11),0 3p= x 8px hsla(0,0%,0%,0.14); --bs-lg: 0 1px 4px hsla(0,0%,0%,0.14),0 3px 8px h= sla(0,0%,0%,0.14),0 4px 13px hsla(0,0%,0%,0.18); --bs-xl: 0 10px 24px hsla(= 0,0%,0%,0.1),0 20px 48px hsla(0,0%,0%,0.1),0 1px 4px hsla(0,0%,0%,0.15); --= translucent-secondary: var(--theme-dark-secondary-custom-translucent, hsla(= 206,100%,40%,0.25)); --translucent-success: hsla(140,40%,75%,0.4); --transl= ucent-warning: hsla(47,79%,58%,0.4); --translucent-error: hsla(358,62%,47%,= 0.15); --translucent-muted: hsla(210,8%,15%,0.1); --focus-neutral: var(--wh= ite); --focus-theme: var(--theme-secondary-400); --focus-ring: var(--theme-= dark-secondary-custom-focus-ring, hsla(206,100%,40%,0.25)); --focus-ring-su= ccess: hsla(140,40%,75%,0.4); --focus-ring-warning: hsla(47,79%,58%,0.4); -= -focus-ring-error: hsla(358,62%,47%,0.15); --focus-ring-muted: hsla(210,8%,= 15%,0.1); --highlight-addition: var(--green-500); --highlight-attribute: va= r(--blue-400); --highlight-bg: hsl(0,2%,11%); --highlight-color: var(--blac= k); --highlight-comment: hsl(0,0%,60%); --highlight-deletion: var(--red-500= ); --highlight-keyword: var(--blue-400); --highlight-literal: hsl(27,95%,65= %); --highlight-namespace: hsl(27,95%,65%); --highlight-punctuation: hsl(0,= 0%,80%); --highlight-symbol: hsl(306,50%,75%); --highlight-variable: hsl(65= .5,39%,57.5%); --scrollbar: hsla(0,0%,100%,0.2); --theme-primary: var(--the= me-dark-primary-custom, var(--orange-400)); --theme-primary-100: var(--them= e-dark-primary-custom-100, var(--orange-100)); --theme-primary-200: var(--t= heme-dark-primary-custom-200, var(--orange-200)); --theme-primary-300: var(= --theme-dark-primary-custom-300, var(--orange-300)); --theme-primary-400: v= ar(--theme-dark-primary-custom-400, var(--orange-400)); --theme-primary-500= : var(--theme-dark-primary-custom-500, var(--orange-500)); --theme-primary-= 600: var(--theme-dark-primary-custom-600, var(--orange-600)); --theme-secon= dary: var(--theme-dark-secondary-custom, var(--blue-400)); --theme-secondar= y-100: var(--theme-dark-secondary-custom-100, var(--blue-100)); --theme-sec= ondary-200: var(--theme-dark-secondary-custom-200, var(--blue-200)); --them= e-secondary-300: var(--theme-dark-secondary-custom-300, var(--blue-300)); -= -theme-secondary-400: var(--theme-dark-secondary-custom-400, var(--blue-400= )); --theme-secondary-500: var(--theme-dark-secondary-custom-500, var(--blu= e-500)); --theme-secondary-600: var(--theme-dark-secondary-custom-600, var(= --blue-600)); --theme-dark-primary-custom-100: hsl(var(--theme-dark-primary= -color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-prima= ry-color-s) * -.6)), calc(var(--theme-dark-primary-color-l) + (var(--theme-= dark-primary-color-l) * -.7))); --theme-dark-primary-custom-200: hsl(var(--= theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(= --theme-dark-primary-color-s) * -.4)), calc(var(--theme-dark-primary-color-= l) + (var(--theme-dark-primary-color-l) * -.5))); --theme-dark-primary-cust= om-300: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primar= y-color-s) + (var(--theme-dark-primary-color-s) * -.3)), calc(var(--theme-d= ark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.2))); --theme= -dark-primary-custom-400: hsl(var(--theme-dark-primary-color-h), var(--them= e-dark-primary-color-s), var(--theme-dark-primary-color-l)); --theme-dark-p= rimary-custom-500: hsl(var(--theme-dark-primary-color-h), var(--theme-dark-= primary-color-s), calc(var(--theme-dark-primary-color-l) + ((100% - var(--t= heme-dark-primary-color-l)) * .5))); --theme-dark-primary-custom-600: hsl(v= ar(--theme-dark-primary-color-h), var(--theme-dark-primary-color-s), calc(v= ar(--theme-dark-primary-color-l) + ((100% - var(--theme-dark-primary-color-= l)) * .8))); --theme-dark-primary-custom: var(--theme-dark-primary-custom-4= 00); --theme-dark-secondary-custom-100: hsl(var(--theme-dark-secondary-colo= r-h), calc(var(--theme-dark-secondary-color-s) + (var(--theme-dark-secondar= y-color-s) * -.6)), calc(var(--theme-dark-secondary-color-l) + (var(--theme= -dark-secondary-color-l) * -.7))); --theme-dark-secondary-custom-200: hsl(v= ar(--theme-dark-secondary-color-h), calc(var(--theme-dark-secondary-color-s= ) + (var(--theme-dark-secondary-color-s) * -.4)), calc(var(--theme-dark-sec= ondary-color-l) + (var(--theme-dark-secondary-color-l) * -.5))); --theme-da= rk-secondary-custom-300: hsl(var(--theme-dark-secondary-color-h), calc(var(= --theme-dark-secondary-color-s) + (var(--theme-dark-secondary-color-s) * -.= 3)), calc(var(--theme-dark-secondary-color-l) + (var(--theme-dark-secondary= -color-l) * -.2))); --theme-dark-secondary-custom-400: hsl(var(--theme-dark= -secondary-color-h), var(--theme-dark-secondary-color-s), var(--theme-dark-= secondary-color-l)); --theme-dark-secondary-custom-500: hsl(var(--theme-dar= k-secondary-color-h), var(--theme-dark-secondary-color-s), calc(var(--theme= -dark-secondary-color-l) + ((100% - var(--theme-dark-secondary-color-l)) * = .5))); --theme-dark-secondary-custom-600: hsl(var(--theme-dark-secondary-co= lor-h), var(--theme-dark-secondary-color-s), calc(var(--theme-dark-secondar= y-color-l) + ((100% - var(--theme-dark-secondary-color-l)) * .8))); --theme= -dark-secondary-custom: var(--theme-dark-secondary-custom-400); --theme-dar= k-secondary-custom-focus-ring: hsla(var(--theme-dark-secondary-color-h), va= r(--theme-dark-secondary-color-s), var(--theme-dark-secondary-color-l), 0.2= 5); --theme-dark-secondary-custom-translucent: hsla(var(--theme-dark-second= ary-color-h), var(--theme-dark-secondary-color-s), var(--theme-dark-seconda= ry-color-l), 0.25); color: var(--theme-body-font-color, var(--black-600)); = } @media (prefers-color-scheme: dark) { body:not(.theme-highcontrast).theme-system, body:not(.theme-highcontrast)= .theme-system.themed, body:not(.theme-highcontrast).theme-system .themed { = --white: hsl(210,3%,15%); --black-050: hsl(210,3%,15%); --black-100: hsl(21= 0,3%,18%); --black-150: hsl(210,4%,21%); --black-200: hsl(210,4%,27%); --bl= ack-225: hsl(210,4%,30%); --black-250: hsl(210,5%,36%); --black-300: hsl(21= 0,4%,47%); --black-350: hsl(210,8%,70%); --black-400: hsl(210,8%,80%); --bl= ack-500: hsl(210,8%,90%); --black-600: hsl(210,11%,98%); --black: hsl(0,0%,= 100%); --orange-100: hsl(27,55%,20%); --orange-200: hsl(27,50%,33%); --oran= ge-300: hsl(27,50%,43%); --orange-400: hsl(27,90%,68%); --orange-500: hsl(2= 7,90%,80%); --orange-600: hsl(27,90%,90%); --blue-100: hsl(210,50%,22%); --= blue-200: hsl(210,50%,36%); --blue-300: hsl(210,50%,48%); --blue-400: hsl(2= 10,89%,77%); --blue-500: hsl(210,89%,84%); --blue-600: hsl(210,89%,92%); --= green-100: hsl(149,51%,15%); --green-200: hsl(149,51%,25%); --green-300: hs= l(149,51%,36%); --green-400: hsl(149,50%,62%); --green-500: hsl(149,50%,74%= ); --green-600: hsl(149,50%,88%); --red-100: hsl(0,43%,22%); --red-200: hsl= (0,43%,41%); --red-300: hsl(0,43%,56%); --red-400: hsl(0,90%,81%); --red-50= 0: hsl(0,90%,88%); --red-600: hsl(0,90%,94%); --yellow-100: hsl(43,50%,17%)= ; --yellow-200: hsl(43,50%,28%); --yellow-300: hsl(43,50%,39%); --yellow-40= 0: hsl(43,90%,75%); --yellow-500: hsl(43,90%,82%); --yellow-600: hsl(43,90%= ,91%); --purple-100: hsl(237,26%,23%); --purple-200: hsl(237,26%,44%); --pu= rple-300: hsl(237,26%,56%); --purple-400: hsl(237,98%,87%); --purple-500: h= sl(237,98%,92%); --purple-600: hsl(237,98%,96%); --gold-100: hsl(45,29%,24%= ); --gold-200: hsl(45,47%,37%); --gold-300: hsl(45,92%,62%); --gold-400: hs= l(46,93%,78%); --silver-100: hsl(220,2%,26%); --silver-200: hsl(220,1%,46%)= ; --silver-300: hsl(216,4%,69%); --silver-400: hsl(214,8%,83%); --bronze-10= 0: hsl(28,13%,27%); --bronze-200: hsl(28,27%,45%); --bronze-300: hsl(28,58%= ,67%); --bronze-400: hsl(28,59%,83%); --bc-lightest: var(--black-100); --bc= -lighter: var(--black-150); --bc-light: var(--black-200); --bc-medium: var(= --black-225); --bc-dark: var(--black-250); --bc-darker: var(--black-300); -= -bs-sm: 0 1px 2px hsla(0,0%,0%,0.1),0 1px 4px hsla(0,0%,0%,0.1),0 2px 8px h= sla(0,0%,0%,0.1); --bs-md: 0 1px 3px hsla(0,0%,0%,0.11),0 2px 6px hsla(0,0%= ,0%,0.11),0 3px 8px hsla(0,0%,0%,0.14); --bs-lg: 0 1px 4px hsla(0,0%,0%,0.1= 4),0 3px 8px hsla(0,0%,0%,0.14),0 4px 13px hsla(0,0%,0%,0.18); --bs-xl: 0 1= 0px 24px hsla(0,0%,0%,0.1),0 20px 48px hsla(0,0%,0%,0.1),0 1px 4px hsla(0,0= %,0%,0.15); --translucent-secondary: var(--theme-dark-secondary-custom-tran= slucent, hsla(206,100%,40%,0.25)); --translucent-success: hsla(140,40%,75%,= 0.4); --translucent-warning: hsla(47,79%,58%,0.4); --translucent-error: hsl= a(358,62%,47%,0.15); --translucent-muted: hsla(210,8%,15%,0.1); --focus-neu= tral: var(--white); --focus-theme: var(--theme-secondary-400); --focus-ring= : var(--theme-dark-secondary-custom-focus-ring, hsla(206,100%,40%,0.25)); -= -focus-ring-success: hsla(140,40%,75%,0.4); --focus-ring-warning: hsla(47,7= 9%,58%,0.4); --focus-ring-error: hsla(358,62%,47%,0.15); --focus-ring-muted= : hsla(210,8%,15%,0.1); --highlight-addition: var(--green-500); --highlight= -attribute: var(--blue-400); --highlight-bg: hsl(0,2%,11%); --highlight-col= or: var(--black); --highlight-comment: hsl(0,0%,60%); --highlight-deletion:= var(--red-500); --highlight-keyword: var(--blue-400); --highlight-literal:= hsl(27,95%,65%); --highlight-namespace: hsl(27,95%,65%); --highlight-punct= uation: hsl(0,0%,80%); --highlight-symbol: hsl(306,50%,75%); --highlight-va= riable: hsl(65.5,39%,57.5%); --scrollbar: hsla(0,0%,100%,0.2); --theme-prim= ary: var(--theme-dark-primary-custom, var(--orange-400)); --theme-primary-1= 00: var(--theme-dark-primary-custom-100, var(--orange-100)); --theme-primar= y-200: var(--theme-dark-primary-custom-200, var(--orange-200)); --theme-pri= mary-300: var(--theme-dark-primary-custom-300, var(--orange-300)); --theme-= primary-400: var(--theme-dark-primary-custom-400, var(--orange-400)); --the= me-primary-500: var(--theme-dark-primary-custom-500, var(--orange-500)); --= theme-primary-600: var(--theme-dark-primary-custom-600, var(--orange-600));= --theme-secondary: var(--theme-dark-secondary-custom, var(--blue-400)); --= theme-secondary-100: var(--theme-dark-secondary-custom-100, var(--blue-100)= ); --theme-secondary-200: var(--theme-dark-secondary-custom-200, var(--blue= -200)); --theme-secondary-300: var(--theme-dark-secondary-custom-300, var(-= -blue-300)); --theme-secondary-400: var(--theme-dark-secondary-custom-400, = var(--blue-400)); --theme-secondary-500: var(--theme-dark-secondary-custom-= 500, var(--blue-500)); --theme-secondary-600: var(--theme-dark-secondary-cu= stom-600, var(--blue-600)); --theme-dark-primary-custom-100: hsl(var(--them= e-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--th= eme-dark-primary-color-s) * -.6)), calc(var(--theme-dark-primary-color-l) += (var(--theme-dark-primary-color-l) * -.7))); --theme-dark-primary-custom-2= 00: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-co= lor-s) + (var(--theme-dark-primary-color-s) * -.4)), calc(var(--theme-dark-= primary-color-l) + (var(--theme-dark-primary-color-l) * -.5))); --theme-dar= k-primary-custom-300: hsl(var(--theme-dark-primary-color-h), calc(var(--the= me-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.3)), calc= (var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -= .2))); --theme-dark-primary-custom-400: hsl(var(--theme-dark-primary-color-= h), var(--theme-dark-primary-color-s), var(--theme-dark-primary-color-l)); = --theme-dark-primary-custom-500: hsl(var(--theme-dark-primary-color-h), var= (--theme-dark-primary-color-s), calc(var(--theme-dark-primary-color-l) + ((= 100% - var(--theme-dark-primary-color-l)) * .5))); --theme-dark-primary-cus= tom-600: hsl(var(--theme-dark-primary-color-h), var(--theme-dark-primary-co= lor-s), calc(var(--theme-dark-primary-color-l) + ((100% - var(--theme-dark-= primary-color-l)) * .8))); --theme-dark-primary-custom: var(--theme-dark-pr= imary-custom-400); --theme-dark-secondary-custom-100: hsl(var(--theme-dark-= secondary-color-h), calc(var(--theme-dark-secondary-color-s) + (var(--theme= -dark-secondary-color-s) * -.6)), calc(var(--theme-dark-secondary-color-l) = + (var(--theme-dark-secondary-color-l) * -.7))); --theme-dark-secondary-cus= tom-200: hsl(var(--theme-dark-secondary-color-h), calc(var(--theme-dark-sec= ondary-color-s) + (var(--theme-dark-secondary-color-s) * -.4)), calc(var(--= theme-dark-secondary-color-l) + (var(--theme-dark-secondary-color-l) * -.5)= )); --theme-dark-secondary-custom-300: hsl(var(--theme-dark-secondary-color= -h), calc(var(--theme-dark-secondary-color-s) + (var(--theme-dark-secondary= -color-s) * -.3)), calc(var(--theme-dark-secondary-color-l) + (var(--theme-= dark-secondary-color-l) * -.2))); --theme-dark-secondary-custom-400: hsl(va= r(--theme-dark-secondary-color-h), var(--theme-dark-secondary-color-s), var= (--theme-dark-secondary-color-l)); --theme-dark-secondary-custom-500: hsl(v= ar(--theme-dark-secondary-color-h), var(--theme-dark-secondary-color-s), ca= lc(var(--theme-dark-secondary-color-l) + ((100% - var(--theme-dark-secondar= y-color-l)) * .5))); --theme-dark-secondary-custom-600: hsl(var(--theme-dar= k-secondary-color-h), var(--theme-dark-secondary-color-s), calc(var(--theme= -dark-secondary-color-l) + ((100% - var(--theme-dark-secondary-color-l)) * = .8))); --theme-dark-secondary-custom: var(--theme-dark-secondary-custom-400= ); --theme-dark-secondary-custom-focus-ring: hsla(var(--theme-dark-secondar= y-color-h), var(--theme-dark-secondary-color-s), var(--theme-dark-secondary= -color-l), 0.25); --theme-dark-secondary-custom-translucent: hsla(var(--the= me-dark-secondary-color-h), var(--theme-dark-secondary-color-s), var(--them= e-dark-secondary-color-l), 0.25); color: var(--theme-body-font-color, var(-= -black-600)); } } body.theme-highcontrast:not(.theme-dark), body.theme-highcontrast.theme-dar= k .theme-light__forced, body.theme-highcontrast.theme-system .theme-light__= forced { --white: hsl(0,0%,100%); --black-050: hsl(0,0%,100%); --black-100:= hsl(210,8%,98%); --black-150: hsl(210,8%,95%); --black-200: hsl(210,8%,90%= ); --black-225: hsl(210,8%,85%); --black-250: hsl(210,8%,80%); --black-300:= hsl(210,9%,75%); --black-350: hsl(210,8%,45%); --black-400: hsl(212,8%,35%= ); --black-500: hsl(210,8%,25%); --black-600: hsl(210,8%,5%); --black: hsl(= 0,0%,0%); --orange-100: hsl(23,87%,97%); --orange-200: hsl(23,87%,97%); --o= range-300: hsl(27,89%,48%); --orange-400: hsl(27,87%,29%); --orange-500: hs= l(27,87%,21%); --orange-600: hsl(27,87%,21%); --blue-100: hsl(210,80%,96%);= --blue-200: hsl(210,80%,96%); --blue-300: hsl(210,70%,48%); --blue-400: hs= l(210,77%,34%); --blue-500: hsl(210,80%,23%); --blue-600: hsl(210,80%,23%);= --green-100: hsl(147,36%,95%); --green-200: hsl(147,36%,95%); --green-300:= hsl(148,70%,31%); --green-400: hsl(148,75%,22%); --green-500: hsl(146,74%,= 15%); --green-600: hsl(146,74%,15%); --red-100: hsl(0,80%,96%); --red-200: = hsl(0,80%,96%); --red-300: hsl(0,60%,49%); --red-400: hsl(0,65%,37%); --red= -500: hsl(0,65%,22%); --red-600: hsl(0,65%,22%); --yellow-100: hsl(41,85%,9= 5%); --yellow-200: hsl(41,85%,95%); --yellow-300: hsl(43,85%,50%); --yellow= -400: hsl(43,85%,50%); --yellow-500: hsl(48,85%,18%); --yellow-600: hsl(48,= 85%,18%); --purple-100: hsl(237,83%,98%); --purple-200: hsl(237,83%,98%); -= -purple-300: hsl(237,55%,57%); --purple-400: hsl(237,55%,57%); --purple-500= : hsl(237,50%,32%); --purple-600: hsl(237,50%,32%); --gold-100: hsl(46,100%= ,91%); --gold-200: hsl(46,100%,91%); --gold-300: hsl(45,100%,42%); --gold-4= 00: hsl(46,92%,26%); --silver-100: hsl(0,0%,95%); --silver-200: hsl(0,0%,95= %); --silver-300: hsl(210,5%,68%); --silver-400: hsl(210,2%,40%); --bronze-= 100: hsl(28,40%,92%); --bronze-200: hsl(28,40%,92%); --bronze-300: hsl(28,4= 3%,65%); --bronze-400: hsl(28,43%,39%); --bc-lightest: var(--black-400); --= bc-lighter: var(--black-400); --bc-light: var(--black-400); --bc-medium: va= r(--black-400); --bc-dark: var(--black-500); --bc-darker: var(--black-600);= --bs-sm: none; --bs-md: none; --bs-lg: none; --bs-xl: none; --translucent-= secondary: hsla(206,100%,40%,0.9); --translucent-success: hsla(140,40%,40%,= 0.9); --translucent-warning: hsla(47,76%,46%,0.9); --translucent-error: hsl= a(358,62%,47%,0.9); --translucent-muted: hsla(210,8%,55%,0.95); --focus-neu= tral: var(--white); --focus-theme: var(--theme-secondary-400); --focus-ring= : hsla(206,100%,40%,0.9); --focus-ring-success: hsla(140,40%,40%,0.9); --fo= cus-ring-warning: hsla(47,76%,46%,0.9); --focus-ring-error: hsla(358,62%,47= %,0.9); --focus-ring-muted: hsla(210,8%,55%,0.95); --highlight-addition: va= r(--green-500); --highlight-attribute: hsl(215,100%,35%); --highlight-bg: h= sl(0,0%,96.5%); --highlight-color: var(--black-600); --highlight-comment: h= sl(213,7%,33%); --highlight-deletion: var(--red-400); --highlight-keyword: = hsl(215,100%,35%); --highlight-literal: hsl(16,94%,31%); --highlight-namesp= ace: hsl(16,94%,31%); --highlight-punctuation: var(--black-500); --highligh= t-symbol: hsl(309,45%,31%); --highlight-variable: hsl(88,100%,18%); --scrol= lbar: var(--black); --theme-primary: var(--orange-400); --theme-primary-100= : var(--orange-100); --theme-primary-200: var(--orange-200); --theme-primar= y-300: var(--orange-300); --theme-primary-400: var(--orange-400); --theme-p= rimary-500: var(--orange-500); --theme-primary-600: var(--orange-600); --th= eme-secondary: var(--blue-400); --theme-secondary-100: var(--blue-100); --t= heme-secondary-200: var(--blue-200); --theme-secondary-300: var(--blue-300)= ; --theme-secondary-400: var(--blue-400); --theme-secondary-500: var(--blue= -500); --theme-secondary-600: var(--blue-600); --_o-disabled: .8; } body.theme-highcontrast.theme-dark, body.theme-highcontrast:not(.theme-dark= ) .theme-dark__forced { --white: hsl(0,0%,0%); --black-050: hsl(210,3%,15%)= ; --black-100: hsl(210,3%,18%); --black-150: hsl(210,4%,21%); --black-200: = hsl(210,4%,27%); --black-225: hsl(210,4%,30%); --black-250: hsl(210,5%,36%)= ; --black-300: hsl(210,4%,47%); --black-350: hsl(210,10%,74%); --black-400:= hsl(210,8%,80%); --black-500: hsl(210,8%,90%); --black-600: hsl(210,11%,98= %); --black: hsl(0,0%,100%); --orange-100: hsl(27,30%,19%); --orange-200: h= sl(27,30%,19%); --orange-300: hsl(27,80%,72%); --orange-400: hsl(27,80%,72%= ); --orange-500: hsl(28,78%,93%); --orange-600: hsl(28,78%,93%); --blue-100= : hsl(209,30%,19%); --blue-200: hsl(209,30%,19%); --blue-300: hsl(210,80%,7= 2%); --blue-400: hsl(210,80%,75%); --blue-500: hsl(210,78%,93%); --blue-600= : hsl(210,78%,93%); --green-100: hsl(147,30%,19%); --green-200: hsl(147,30%= ,19%); --green-300: hsl(148,40%,62%); --green-400: hsl(148,40%,68%); --gree= n-500: hsl(150,39%,93%); --green-600: hsl(150,39%,93%); --red-100: hsl(358,= 30%,19%); --red-200: hsl(358,30%,19%); --red-300: hsl(0,75%,77%); --red-400= : hsl(0,73%,80%); --red-500: hsl(0,76%,95%); --red-600: hsl(0,76%,95%); --y= ellow-100: hsl(43,29%,17%); --yellow-200: hsl(43,29%,17%); --yellow-300: hs= l(43,75%,75%); --yellow-400: hsl(43,75%,75%); --yellow-500: hsl(48,74%,91%)= ; --yellow-600: hsl(44,74%,91%); --purple-100: hsl(237,26%,23%); --purple-2= 00: hsl(237,26%,23%); --purple-300: hsl(237,98%,87%); --purple-400: hsl(237= ,98%,87%); --purple-500: hsl(237,98%,96%); --purple-600: hsl(237,98%,96%); = --gold-100: hsl(45,22%,25%); --gold-200: hsl(45,22%,25%); --gold-300: hsl(4= 5,92%,62%); --gold-400: hsl(46,93%,78%); --silver-100: hsl(220,2%,26%); --s= ilver-200: hsl(220,2%,26%); --silver-300: hsl(220,4%,69%); --silver-400: hs= l(214,8%,83%); --bronze-100: hsl(27,13%,27%); --bronze-200: hsl(27,13%,27%)= ; --bronze-300: hsl(28,58%,67%); --bronze-400: hsl(28,59%,83%); --bc-lighte= st: var(--black-400); --bc-lighter: var(--black-400); --bc-light: var(--bla= ck-400); --bc-medium: var(--black-400); --bc-dark: var(--black-500); --bc-d= arker: var(--black-600); --bs-sm: none; --bs-md: none; --bs-lg: none; --bs-= xl: none; --translucent-secondary: hsla(206,100%,40%,0.9); --translucent-su= ccess: hsla(140,40%,40%,0.9); --translucent-warning: hsla(47,76%,46%,0.9); = --translucent-error: hsla(358,62%,47%,0.9); --translucent-muted: hsla(210,8= %,55%,0.95); --focus-neutral: var(--white); --focus-theme: var(--theme-seco= ndary-400); --focus-ring: hsla(206,100%,40%,0.9); --focus-ring-success: hsl= a(140,40%,40%,0.9); --focus-ring-warning: hsla(47,76%,46%,0.9); --focus-rin= g-error: hsla(358,62%,47%,0.9); --focus-ring-muted: hsla(210,8%,55%,0.95); = --highlight-addition: var(--green-500); --highlight-attribute: hsl(200,57%,= 85%); --highlight-bg: hsl(0,0%,10%); --highlight-color: hsl(0,0%,100%); --h= ighlight-comment: hsl(0,0%,99%); --highlight-deletion: var(--red-500); --hi= ghlight-keyword: hsl(200,57%,85%); --highlight-literal: hsl(36,96%,71%); --= highlight-namespace: hsl(36,96%,71%); --highlight-punctuation: hsl(0,0%,99%= ); --highlight-symbol: hsl(304,39%,85%); --highlight-variable: hsl(62,71%,8= 1%); --scrollbar: var(--black); --theme-primary: var(--orange-400); --theme= -primary-100: var(--orange-100); --theme-primary-200: var(--orange-200); --= theme-primary-300: var(--orange-300); --theme-primary-400: var(--orange-400= ); --theme-primary-500: var(--orange-500); --theme-primary-600: var(--orang= e-600); --theme-secondary: var(--blue-400); --theme-secondary-100: var(--bl= ue-100); --theme-secondary-200: var(--blue-200); --theme-secondary-300: var= (--blue-300); --theme-secondary-400: var(--blue-400); --theme-secondary-500= : var(--blue-500); --theme-secondary-600: var(--blue-600); --_o-disabled: .= 8; } @media (prefers-color-scheme: dark) { body.theme-highcontrast.theme-system { --white: hsl(0,0%,0%); --black-050= : hsl(210,3%,15%); --black-100: hsl(210,3%,18%); --black-150: hsl(210,4%,21= %); --black-200: hsl(210,4%,27%); --black-225: hsl(210,4%,30%); --black-250= : hsl(210,5%,36%); --black-300: hsl(210,4%,47%); --black-350: hsl(210,10%,7= 4%); --black-400: hsl(210,8%,80%); --black-500: hsl(210,8%,90%); --black-60= 0: hsl(210,11%,98%); --black: hsl(0,0%,100%); --orange-100: hsl(27,30%,19%)= ; --orange-200: hsl(27,30%,19%); --orange-300: hsl(27,80%,72%); --orange-40= 0: hsl(27,80%,72%); --orange-500: hsl(28,78%,93%); --orange-600: hsl(28,78%= ,93%); --blue-100: hsl(209,30%,19%); --blue-200: hsl(209,30%,19%); --blue-3= 00: hsl(210,80%,72%); --blue-400: hsl(210,80%,75%); --blue-500: hsl(210,78%= ,93%); --blue-600: hsl(210,78%,93%); --green-100: hsl(147,30%,19%); --green= -200: hsl(147,30%,19%); --green-300: hsl(148,40%,62%); --green-400: hsl(148= ,40%,68%); --green-500: hsl(150,39%,93%); --green-600: hsl(150,39%,93%); --= red-100: hsl(358,30%,19%); --red-200: hsl(358,30%,19%); --red-300: hsl(0,75= %,77%); --red-400: hsl(0,73%,80%); --red-500: hsl(0,76%,95%); --red-600: hs= l(0,76%,95%); --yellow-100: hsl(43,29%,17%); --yellow-200: hsl(43,29%,17%);= --yellow-300: hsl(43,75%,75%); --yellow-400: hsl(43,75%,75%); --yellow-500= : hsl(48,74%,91%); --yellow-600: hsl(44,74%,91%); --purple-100: hsl(237,26%= ,23%); --purple-200: hsl(237,26%,23%); --purple-300: hsl(237,98%,87%); --pu= rple-400: hsl(237,98%,87%); --purple-500: hsl(237,98%,96%); --purple-600: h= sl(237,98%,96%); --gold-100: hsl(45,22%,25%); --gold-200: hsl(45,22%,25%); = --gold-300: hsl(45,92%,62%); --gold-400: hsl(46,93%,78%); --silver-100: hsl= (220,2%,26%); --silver-200: hsl(220,2%,26%); --silver-300: hsl(220,4%,69%);= --silver-400: hsl(214,8%,83%); --bronze-100: hsl(27,13%,27%); --bronze-200= : hsl(27,13%,27%); --bronze-300: hsl(28,58%,67%); --bronze-400: hsl(28,59%,= 83%); --bc-lightest: var(--black-400); --bc-lighter: var(--black-400); --bc= -light: var(--black-400); --bc-medium: var(--black-400); --bc-dark: var(--b= lack-500); --bc-darker: var(--black-600); --bs-sm: none; --bs-md: none; --b= s-lg: none; --bs-xl: none; --translucent-secondary: hsla(206,100%,40%,0.9);= --translucent-success: hsla(140,40%,40%,0.9); --translucent-warning: hsla(= 47,76%,46%,0.9); --translucent-error: hsla(358,62%,47%,0.9); --translucent-= muted: hsla(210,8%,55%,0.95); --focus-neutral: var(--white); --focus-theme:= var(--theme-secondary-400); --focus-ring: hsla(206,100%,40%,0.9); --focus-= ring-success: hsla(140,40%,40%,0.9); --focus-ring-warning: hsla(47,76%,46%,= 0.9); --focus-ring-error: hsla(358,62%,47%,0.9); --focus-ring-muted: hsla(2= 10,8%,55%,0.95); --highlight-addition: var(--green-500); --highlight-attrib= ute: hsl(200,57%,85%); --highlight-bg: hsl(0,0%,10%); --highlight-color: hs= l(0,0%,100%); --highlight-comment: hsl(0,0%,99%); --highlight-deletion: var= (--red-500); --highlight-keyword: hsl(200,57%,85%); --highlight-literal: hs= l(36,96%,71%); --highlight-namespace: hsl(36,96%,71%); --highlight-punctuat= ion: hsl(0,0%,99%); --highlight-symbol: hsl(304,39%,85%); --highlight-varia= ble: hsl(62,71%,81%); --scrollbar: var(--black); --theme-primary: var(--ora= nge-400); --theme-primary-100: var(--orange-100); --theme-primary-200: var(= --orange-200); --theme-primary-300: var(--orange-300); --theme-primary-400:= var(--orange-400); --theme-primary-500: var(--orange-500); --theme-primary= -600: var(--orange-600); --theme-secondary: var(--blue-400); --theme-second= ary-100: var(--blue-100); --theme-secondary-200: var(--blue-200); --theme-s= econdary-300: var(--blue-300); --theme-secondary-400: var(--blue-400); --th= eme-secondary-500: var(--blue-500); --theme-secondary-600: var(--blue-600);= --_o-disabled: .8; } } .ba { border-style: solid !important; border-width: var(--su-static1) !impo= rtant; } .bt { border-top-style: solid !important; border-top-width: var(--su-static= 1) !important; } .br { border-right-style: solid !important; border-right-width: var(--su-st= atic1) !important; } .bb { border-bottom-style: solid !important; border-bottom-width: var(--su-= static1) !important; } .bl { border-left-style: solid !important; border-left-width: var(--su-stat= ic1) !important; } .bx { border-left-style: solid !important; border-right-style: solid !impor= tant; border-right-width: var(--su-static1) !important; border-left-width: = var(--su-static1) !important; } .by { border-top-style: solid !important; border-bottom-style: solid !impor= tant; border-top-width: var(--su-static1) !important; border-bottom-width: = var(--su-static1) !important; } .baw0 { border-width: 0px !important; } .baw1 { border-width: var(--su-static1) !important; } .baw2 { border-width: var(--su-static2) !important; } .baw3 { border-width: var(--su-static4) !important; } .btw0 { border-top-width: 0px !important; } .btw1 { border-top-width: var(--su-static1) !important; } .btw2 { border-top-width: var(--su-static2) !important; } .btw3 { border-top-width: var(--su-static4) !important; } .brw0 { border-right-width: 0px !important; } .brw1 { border-right-width: var(--su-static1) !important; } .brw2 { border-right-width: var(--su-static2) !important; } .brw3 { border-right-width: var(--su-static4) !important; } .bbw0 { border-bottom-width: 0px !important; } .bbw1 { border-bottom-width: var(--su-static1) !important; } .bbw2 { border-bottom-width: var(--su-static2) !important; } .bbw3 { border-bottom-width: var(--su-static4) !important; } .blw0 { border-left-width: 0px !important; } .blw0 { border-left-width: 0px !important; } .blw1 { border-left-width: var(--su-static1) !important; } .blw2 { border-left-width: var(--su-static2) !important; } .blw3 { border-left-width: var(--su-static4) !important; } .byw0 { border-top-width: 0px !important; border-bottom-width: 0px !importa= nt; } .byw1 { border-top-width: var(--su-static1) !important; border-bottom-width= : var(--su-static1) !important; } .byw2 { border-top-width: var(--su-static2) !important; border-bottom-width= : var(--su-static2) !important; } .byw3 { border-top-width: var(--su-static4) !important; border-bottom-width= : var(--su-static4) !important; } .bxw0 { border-right-width: 0px !important; border-left-width: 0px !importa= nt; } .bxw1 { border-right-width: var(--su-static1) !important; border-left-width= : var(--su-static1) !important; } .bxw2 { border-right-width: var(--su-static2) !important; border-left-width= : var(--su-static2) !important; } .bxw3 { border-right-width: var(--su-static4) !important; border-left-width= : var(--su-static4) !important; } .bas-solid { border-style: solid !important; } .bas-dashed { border-style: dashed !important; } .bts-solid { border-top-style: solid !important; } .bts-dashed { border-top-style: dashed !important; } .brs-solid { border-right-style: solid !important; } .brs-dashed { border-right-style: dashed !important; } .bbs-solid { border-bottom-style: solid !important; } .bbs-dashed { border-bottom-style: dashed !important; } .bls-solid { border-left-style: solid !important; } .bls-dashed { border-left-style: dashed !important; } .bar-sm { border-radius: var(--br-sm) !important; } .bar-md { border-radius: var(--br-md) !important; } .bar-lg { border-radius: var(--br-lg) !important; } .bar-circle { border-radius: 100% !important; } .bar-pill { border-radius: 1000px !important; } .btlr0 { border-top-left-radius: 0px !important; } .btlr-sm { border-top-left-radius: var(--br-sm) !important; } .btlr-md { border-top-left-radius: var(--br-md) !important; } .btlr-lg { border-top-left-radius: var(--br-lg) !important; } .btrr0 { border-top-right-radius: 0px !important; } .btrr-sm { border-top-right-radius: var(--br-sm) !important; } .btrr-md { border-top-right-radius: var(--br-md) !important; } .btrr-lg { border-top-right-radius: var(--br-lg) !important; } .bblr0 { border-bottom-left-radius: 0px !important; } .bblr-sm { border-bottom-left-radius: var(--br-sm) !important; } .bblr-md { border-bottom-left-radius: var(--br-md) !important; } .bblr-lg { border-bottom-left-radius: var(--br-lg) !important; } .bbrr0 { border-bottom-right-radius: 0px !important; } .bbrr-sm { border-bottom-right-radius: var(--br-sm) !important; } .bbrr-md { border-bottom-right-radius: var(--br-md) !important; } .bbrr-lg { border-bottom-right-radius: var(--br-lg) !important; } .btr0 { border-top-left-radius: 0px !important; border-top-right-radius: 0p= x !important; } .btr-sm { border-top-left-radius: var(--br-sm) !important; border-top-right= -radius: var(--br-sm) !important; } .btr-md { border-top-left-radius: var(--br-md) !important; border-top-right= -radius: var(--br-md) !important; } .btr-lg { border-top-left-radius: var(--br-lg) !important; border-top-right= -radius: var(--br-lg) !important; } .brr0 { border-top-right-radius: 0px !important; border-bottom-right-radius= : 0px !important; } .brr-sm { border-top-right-radius: var(--br-sm) !important; border-bottom-r= ight-radius: var(--br-sm) !important; } .brr-md { border-top-right-radius: var(--br-md) !important; border-bottom-r= ight-radius: var(--br-md) !important; } .brr-lg { border-top-right-radius: var(--br-lg) !important; border-bottom-r= ight-radius: var(--br-lg) !important; } .bbr0 { border-bottom-left-radius: 0px !important; border-bottom-right-radi= us: 0px !important; } .bbr-sm { border-bottom-left-radius: var(--br-sm) !important; border-bottom= -right-radius: var(--br-sm) !important; } .bbr-md { border-bottom-left-radius: var(--br-md) !important; border-bottom= -right-radius: var(--br-md) !important; } .bbr-lg { border-bottom-left-radius: var(--br-lg) !important; border-bottom= -right-radius: var(--br-lg) !important; } .blr0 { border-top-left-radius: 0px !important; border-bottom-left-radius: = 0px !important; } .blr-sm { border-top-left-radius: var(--br-sm) !important; border-bottom-le= ft-radius: var(--br-sm) !important; } .blr-md { border-top-left-radius: var(--br-md) !important; border-bottom-le= ft-radius: var(--br-md) !important; } .blr-lg { border-top-left-radius: var(--br-lg) !important; border-bottom-le= ft-radius: var(--br-lg) !important; } .bar0 { border-radius: 0px !important; } .bg-white, .h\:bg-white:hover, .f\:bg-white:focus, .f\:bg-white:focus-withi= n { background-color: var(--white) !important; } .bc-white, .h\:bc-white:hover, .f\:bc-white:focus, .f\:bc-white:focus-withi= n { border-color: var(--white) !important; } .fc-white, .h\:fc-white:hover, .f\:fc-white:focus, .f\:fc-white:focus-withi= n { color: var(--white) !important; } .bg-black-050, .h\:bg-black-050:hover, .f\:bg-black-050:focus, .f\:bg-black= -050:focus-within { background-color: var(--black-050) !important; } .bc-black-050, .h\:bc-black-050:hover, .f\:bc-black-050:focus, .f\:bc-black= -050:focus-within { border-color: var(--black-050) !important; } .fc-black-050, .h\:fc-black-050:hover, .f\:fc-black-050:focus, .f\:fc-black= -050:focus-within { color: var(--black-050) !important; } .bg-black-100, .h\:bg-black-100:hover, .f\:bg-black-100:focus, .f\:bg-black= -100:focus-within { background-color: var(--black-100) !important; } .bc-black-100, .h\:bc-black-100:hover, .f\:bc-black-100:focus, .f\:bc-black= -100:focus-within { border-color: var(--black-100) !important; } .fc-black-100, .h\:fc-black-100:hover, .f\:fc-black-100:focus, .f\:fc-black= -100:focus-within { color: var(--black-100) !important; } .bg-black-150, .h\:bg-black-150:hover, .f\:bg-black-150:focus, .f\:bg-black= -150:focus-within { background-color: var(--black-150) !important; } .bc-black-150, .h\:bc-black-150:hover, .f\:bc-black-150:focus, .f\:bc-black= -150:focus-within { border-color: var(--black-150) !important; } .fc-black-150, .h\:fc-black-150:hover, .f\:fc-black-150:focus, .f\:fc-black= -150:focus-within { color: var(--black-150) !important; } .bg-black-200, .h\:bg-black-200:hover, .f\:bg-black-200:focus, .f\:bg-black= -200:focus-within { background-color: var(--black-200) !important; } .bc-black-200, .h\:bc-black-200:hover, .f\:bc-black-200:focus, .f\:bc-black= -200:focus-within { border-color: var(--black-200) !important; } .fc-black-200, .h\:fc-black-200:hover, .f\:fc-black-200:focus, .f\:fc-black= -200:focus-within { color: var(--black-200) !important; } .bg-black-225, .h\:bg-black-225:hover, .f\:bg-black-225:focus, .f\:bg-black= -225:focus-within { background-color: var(--black-225) !important; } .bc-black-225, .h\:bc-black-225:hover, .f\:bc-black-225:focus, .f\:bc-black= -225:focus-within { border-color: var(--black-225) !important; } .fc-black-225, .h\:fc-black-225:hover, .f\:fc-black-225:focus, .f\:fc-black= -225:focus-within { color: var(--black-225) !important; } .bg-black-250, .h\:bg-black-250:hover, .f\:bg-black-250:focus, .f\:bg-black= -250:focus-within { background-color: var(--black-250) !important; } .bc-black-250, .h\:bc-black-250:hover, .f\:bc-black-250:focus, .f\:bc-black= -250:focus-within { border-color: var(--black-250) !important; } .fc-black-250, .h\:fc-black-250:hover, .f\:fc-black-250:focus, .f\:fc-black= -250:focus-within { color: var(--black-250) !important; } .bg-black-300, .h\:bg-black-300:hover, .f\:bg-black-300:focus, .f\:bg-black= -300:focus-within { background-color: var(--black-300) !important; } .bc-black-300, .h\:bc-black-300:hover, .f\:bc-black-300:focus, .f\:bc-black= -300:focus-within { border-color: var(--black-300) !important; } .fc-black-300, .h\:fc-black-300:hover, .f\:fc-black-300:focus, .f\:fc-black= -300:focus-within { color: var(--black-300) !important; } .bg-black-350, .h\:bg-black-350:hover, .f\:bg-black-350:focus, .f\:bg-black= -350:focus-within { background-color: var(--black-350) !important; } .bc-black-350, .h\:bc-black-350:hover, .f\:bc-black-350:focus, .f\:bc-black= -350:focus-within { border-color: var(--black-350) !important; } .fc-black-350, .h\:fc-black-350:hover, .f\:fc-black-350:focus, .f\:fc-black= -350:focus-within { color: var(--black-350) !important; } .bg-black-400, .h\:bg-black-400:hover, .f\:bg-black-400:focus, .f\:bg-black= -400:focus-within { background-color: var(--black-400) !important; } .bc-black-400, .h\:bc-black-400:hover, .f\:bc-black-400:focus, .f\:bc-black= -400:focus-within { border-color: var(--black-400) !important; } .fc-black-400, .h\:fc-black-400:hover, .f\:fc-black-400:focus, .f\:fc-black= -400:focus-within { color: var(--black-400) !important; } .bg-black-500, .h\:bg-black-500:hover, .f\:bg-black-500:focus, .f\:bg-black= -500:focus-within { background-color: var(--black-500) !important; } .bc-black-500, .h\:bc-black-500:hover, .f\:bc-black-500:focus, .f\:bc-black= -500:focus-within { border-color: var(--black-500) !important; } .fc-black-500, .h\:fc-black-500:hover, .f\:fc-black-500:focus, .f\:fc-black= -500:focus-within { color: var(--black-500) !important; } .bg-black-600, .h\:bg-black-600:hover, .f\:bg-black-600:focus, .f\:bg-black= -600:focus-within { background-color: var(--black-600) !important; } .bc-black-600, .h\:bc-black-600:hover, .f\:bc-black-600:focus, .f\:bc-black= -600:focus-within { border-color: var(--black-600) !important; } .fc-black-600, .h\:fc-black-600:hover, .f\:fc-black-600:focus, .f\:fc-black= -600:focus-within { color: var(--black-600) !important; } .bg-black, .h\:bg-black:hover, .f\:bg-black:focus, .f\:bg-black:focus-withi= n { background-color: var(--black) !important; } .bc-black, .h\:bc-black:hover, .f\:bc-black:focus, .f\:bc-black:focus-withi= n { border-color: var(--black) !important; } .fc-black, .h\:fc-black:hover, .f\:fc-black:focus, .f\:fc-black:focus-withi= n { color: var(--black) !important; } .bg-orange-100, .h\:bg-orange-100:hover, .f\:bg-orange-100:focus, .f\:bg-or= ange-100:focus-within { background-color: var(--orange-100) !important; } .bc-orange-100, .h\:bc-orange-100:hover, .f\:bc-orange-100:focus, .f\:bc-or= ange-100:focus-within { border-color: var(--orange-100) !important; } .fc-orange-100, .h\:fc-orange-100:hover, .f\:fc-orange-100:focus, .f\:fc-or= ange-100:focus-within { color: var(--orange-100) !important; } .bg-orange-200, .h\:bg-orange-200:hover, .f\:bg-orange-200:focus, .f\:bg-or= ange-200:focus-within { background-color: var(--orange-200) !important; } .bc-orange-200, .h\:bc-orange-200:hover, .f\:bc-orange-200:focus, .f\:bc-or= ange-200:focus-within { border-color: var(--orange-200) !important; } .fc-orange-200, .h\:fc-orange-200:hover, .f\:fc-orange-200:focus, .f\:fc-or= ange-200:focus-within { color: var(--orange-200) !important; } .bg-orange-300, .h\:bg-orange-300:hover, .f\:bg-orange-300:focus, .f\:bg-or= ange-300:focus-within { background-color: var(--orange-300) !important; } .bc-orange-300, .h\:bc-orange-300:hover, .f\:bc-orange-300:focus, .f\:bc-or= ange-300:focus-within { border-color: var(--orange-300) !important; } .fc-orange-300, .h\:fc-orange-300:hover, .f\:fc-orange-300:focus, .f\:fc-or= ange-300:focus-within { color: var(--orange-300) !important; } .bg-orange-400, .h\:bg-orange-400:hover, .f\:bg-orange-400:focus, .f\:bg-or= ange-400:focus-within { background-color: var(--orange-400) !important; } .bc-orange-400, .h\:bc-orange-400:hover, .f\:bc-orange-400:focus, .f\:bc-or= ange-400:focus-within { border-color: var(--orange-400) !important; } .fc-orange-400, .h\:fc-orange-400:hover, .f\:fc-orange-400:focus, .f\:fc-or= ange-400:focus-within { color: var(--orange-400) !important; } .bg-orange-500, .h\:bg-orange-500:hover, .f\:bg-orange-500:focus, .f\:bg-or= ange-500:focus-within { background-color: var(--orange-500) !important; } .bc-orange-500, .h\:bc-orange-500:hover, .f\:bc-orange-500:focus, .f\:bc-or= ange-500:focus-within { border-color: var(--orange-500) !important; } .fc-orange-500, .h\:fc-orange-500:hover, .f\:fc-orange-500:focus, .f\:fc-or= ange-500:focus-within { color: var(--orange-500) !important; } .bg-orange-600, .h\:bg-orange-600:hover, .f\:bg-orange-600:focus, .f\:bg-or= ange-600:focus-within { background-color: var(--orange-600) !important; } .bc-orange-600, .h\:bc-orange-600:hover, .f\:bc-orange-600:focus, .f\:bc-or= ange-600:focus-within { border-color: var(--orange-600) !important; } .fc-orange-600, .h\:fc-orange-600:hover, .f\:fc-orange-600:focus, .f\:fc-or= ange-600:focus-within { color: var(--orange-600) !important; } .bg-blue-100, .h\:bg-blue-100:hover, .f\:bg-blue-100:focus, .f\:bg-blue-100= :focus-within { background-color: var(--blue-100) !important; } .bc-blue-100, .h\:bc-blue-100:hover, .f\:bc-blue-100:focus, .f\:bc-blue-100= :focus-within { border-color: var(--blue-100) !important; } .fc-blue-100, .h\:fc-blue-100:hover, .f\:fc-blue-100:focus, .f\:fc-blue-100= :focus-within { color: var(--blue-100) !important; } .bg-blue-200, .h\:bg-blue-200:hover, .f\:bg-blue-200:focus, .f\:bg-blue-200= :focus-within { background-color: var(--blue-200) !important; } .bc-blue-200, .h\:bc-blue-200:hover, .f\:bc-blue-200:focus, .f\:bc-blue-200= :focus-within { border-color: var(--blue-200) !important; } .fc-blue-200, .h\:fc-blue-200:hover, .f\:fc-blue-200:focus, .f\:fc-blue-200= :focus-within { color: var(--blue-200) !important; } .bg-blue-300, .h\:bg-blue-300:hover, .f\:bg-blue-300:focus, .f\:bg-blue-300= :focus-within { background-color: var(--blue-300) !important; } .bc-blue-300, .h\:bc-blue-300:hover, .f\:bc-blue-300:focus, .f\:bc-blue-300= :focus-within { border-color: var(--blue-300) !important; } .fc-blue-300, .h\:fc-blue-300:hover, .f\:fc-blue-300:focus, .f\:fc-blue-300= :focus-within { color: var(--blue-300) !important; } .bg-blue-400, .h\:bg-blue-400:hover, .f\:bg-blue-400:focus, .f\:bg-blue-400= :focus-within { background-color: var(--blue-400) !important; } .bc-blue-400, .h\:bc-blue-400:hover, .f\:bc-blue-400:focus, .f\:bc-blue-400= :focus-within { border-color: var(--blue-400) !important; } .fc-blue-400, .h\:fc-blue-400:hover, .f\:fc-blue-400:focus, .f\:fc-blue-400= :focus-within { color: var(--blue-400) !important; } .bg-blue-500, .h\:bg-blue-500:hover, .f\:bg-blue-500:focus, .f\:bg-blue-500= :focus-within { background-color: var(--blue-500) !important; } .bc-blue-500, .h\:bc-blue-500:hover, .f\:bc-blue-500:focus, .f\:bc-blue-500= :focus-within { border-color: var(--blue-500) !important; } .fc-blue-500, .h\:fc-blue-500:hover, .f\:fc-blue-500:focus, .f\:fc-blue-500= :focus-within { color: var(--blue-500) !important; } .bg-blue-600, .h\:bg-blue-600:hover, .f\:bg-blue-600:focus, .f\:bg-blue-600= :focus-within { background-color: var(--blue-600) !important; } .bc-blue-600, .h\:bc-blue-600:hover, .f\:bc-blue-600:focus, .f\:bc-blue-600= :focus-within { border-color: var(--blue-600) !important; } .fc-blue-600, .h\:fc-blue-600:hover, .f\:fc-blue-600:focus, .f\:fc-blue-600= :focus-within { color: var(--blue-600) !important; } .bg-green-100, .h\:bg-green-100:hover, .f\:bg-green-100:focus, .f\:bg-green= -100:focus-within { background-color: var(--green-100) !important; } .bc-green-100, .h\:bc-green-100:hover, .f\:bc-green-100:focus, .f\:bc-green= -100:focus-within { border-color: var(--green-100) !important; } .fc-green-100, .h\:fc-green-100:hover, .f\:fc-green-100:focus, .f\:fc-green= -100:focus-within { color: var(--green-100) !important; } .bg-green-200, .h\:bg-green-200:hover, .f\:bg-green-200:focus, .f\:bg-green= -200:focus-within { background-color: var(--green-200) !important; } .bc-green-200, .h\:bc-green-200:hover, .f\:bc-green-200:focus, .f\:bc-green= -200:focus-within { border-color: var(--green-200) !important; } .fc-green-200, .h\:fc-green-200:hover, .f\:fc-green-200:focus, .f\:fc-green= -200:focus-within { color: var(--green-200) !important; } .bg-green-300, .h\:bg-green-300:hover, .f\:bg-green-300:focus, .f\:bg-green= -300:focus-within { background-color: var(--green-300) !important; } .bc-green-300, .h\:bc-green-300:hover, .f\:bc-green-300:focus, .f\:bc-green= -300:focus-within { border-color: var(--green-300) !important; } .fc-green-300, .h\:fc-green-300:hover, .f\:fc-green-300:focus, .f\:fc-green= -300:focus-within { color: var(--green-300) !important; } .bg-green-400, .h\:bg-green-400:hover, .f\:bg-green-400:focus, .f\:bg-green= -400:focus-within { background-color: var(--green-400) !important; } .bc-green-400, .h\:bc-green-400:hover, .f\:bc-green-400:focus, .f\:bc-green= -400:focus-within { border-color: var(--green-400) !important; } .fc-green-400, .h\:fc-green-400:hover, .f\:fc-green-400:focus, .f\:fc-green= -400:focus-within { color: var(--green-400) !important; } .bg-green-500, .h\:bg-green-500:hover, .f\:bg-green-500:focus, .f\:bg-green= -500:focus-within { background-color: var(--green-500) !important; } .bc-green-500, .h\:bc-green-500:hover, .f\:bc-green-500:focus, .f\:bc-green= -500:focus-within { border-color: var(--green-500) !important; } .fc-green-500, .h\:fc-green-500:hover, .f\:fc-green-500:focus, .f\:fc-green= -500:focus-within { color: var(--green-500) !important; } .bg-green-600, .h\:bg-green-600:hover, .f\:bg-green-600:focus, .f\:bg-green= -600:focus-within { background-color: var(--green-600) !important; } .bc-green-600, .h\:bc-green-600:hover, .f\:bc-green-600:focus, .f\:bc-green= -600:focus-within { border-color: var(--green-600) !important; } .fc-green-600, .h\:fc-green-600:hover, .f\:fc-green-600:focus, .f\:fc-green= -600:focus-within { color: var(--green-600) !important; } .bg-red-100, .h\:bg-red-100:hover, .f\:bg-red-100:focus, .f\:bg-red-100:foc= us-within { background-color: var(--red-100) !important; } .bc-red-100, .h\:bc-red-100:hover, .f\:bc-red-100:focus, .f\:bc-red-100:foc= us-within { border-color: var(--red-100) !important; } .fc-red-100, .h\:fc-red-100:hover, .f\:fc-red-100:focus, .f\:fc-red-100:foc= us-within { color: var(--red-100) !important; } .bg-red-200, .h\:bg-red-200:hover, .f\:bg-red-200:focus, .f\:bg-red-200:foc= us-within { background-color: var(--red-200) !important; } .bc-red-200, .h\:bc-red-200:hover, .f\:bc-red-200:focus, .f\:bc-red-200:foc= us-within { border-color: var(--red-200) !important; } .fc-red-200, .h\:fc-red-200:hover, .f\:fc-red-200:focus, .f\:fc-red-200:foc= us-within { color: var(--red-200) !important; } .bg-red-300, .h\:bg-red-300:hover, .f\:bg-red-300:focus, .f\:bg-red-300:foc= us-within { background-color: var(--red-300) !important; } .bc-red-300, .h\:bc-red-300:hover, .f\:bc-red-300:focus, .f\:bc-red-300:foc= us-within { border-color: var(--red-300) !important; } .fc-red-300, .h\:fc-red-300:hover, .f\:fc-red-300:focus, .f\:fc-red-300:foc= us-within { color: var(--red-300) !important; } .bg-red-400, .h\:bg-red-400:hover, .f\:bg-red-400:focus, .f\:bg-red-400:foc= us-within { background-color: var(--red-400) !important; } .bc-red-400, .h\:bc-red-400:hover, .f\:bc-red-400:focus, .f\:bc-red-400:foc= us-within { border-color: var(--red-400) !important; } .fc-red-400, .h\:fc-red-400:hover, .f\:fc-red-400:focus, .f\:fc-red-400:foc= us-within { color: var(--red-400) !important; } .bg-red-500, .h\:bg-red-500:hover, .f\:bg-red-500:focus, .f\:bg-red-500:foc= us-within { background-color: var(--red-500) !important; } .bc-red-500, .h\:bc-red-500:hover, .f\:bc-red-500:focus, .f\:bc-red-500:foc= us-within { border-color: var(--red-500) !important; } .fc-red-500, .h\:fc-red-500:hover, .f\:fc-red-500:focus, .f\:fc-red-500:foc= us-within { color: var(--red-500) !important; } .bg-red-600, .h\:bg-red-600:hover, .f\:bg-red-600:focus, .f\:bg-red-600:foc= us-within { background-color: var(--red-600) !important; } .bc-red-600, .h\:bc-red-600:hover, .f\:bc-red-600:focus, .f\:bc-red-600:foc= us-within { border-color: var(--red-600) !important; } .fc-red-600, .h\:fc-red-600:hover, .f\:fc-red-600:focus, .f\:fc-red-600:foc= us-within { color: var(--red-600) !important; } .bg-yellow-100, .h\:bg-yellow-100:hover, .f\:bg-yellow-100:focus, .f\:bg-ye= llow-100:focus-within { background-color: var(--yellow-100) !important; } .bc-yellow-100, .h\:bc-yellow-100:hover, .f\:bc-yellow-100:focus, .f\:bc-ye= llow-100:focus-within { border-color: var(--yellow-100) !important; } .fc-yellow-100, .h\:fc-yellow-100:hover, .f\:fc-yellow-100:focus, .f\:fc-ye= llow-100:focus-within { color: var(--yellow-100) !important; } .bg-yellow-200, .h\:bg-yellow-200:hover, .f\:bg-yellow-200:focus, .f\:bg-ye= llow-200:focus-within { background-color: var(--yellow-200) !important; } .bc-yellow-200, .h\:bc-yellow-200:hover, .f\:bc-yellow-200:focus, .f\:bc-ye= llow-200:focus-within { border-color: var(--yellow-200) !important; } .fc-yellow-200, .h\:fc-yellow-200:hover, .f\:fc-yellow-200:focus, .f\:fc-ye= llow-200:focus-within { color: var(--yellow-200) !important; } .bg-yellow-300, .h\:bg-yellow-300:hover, .f\:bg-yellow-300:focus, .f\:bg-ye= llow-300:focus-within { background-color: var(--yellow-300) !important; } .bc-yellow-300, .h\:bc-yellow-300:hover, .f\:bc-yellow-300:focus, .f\:bc-ye= llow-300:focus-within { border-color: var(--yellow-300) !important; } .fc-yellow-300, .h\:fc-yellow-300:hover, .f\:fc-yellow-300:focus, .f\:fc-ye= llow-300:focus-within { color: var(--yellow-300) !important; } .bg-yellow-400, .h\:bg-yellow-400:hover, .f\:bg-yellow-400:focus, .f\:bg-ye= llow-400:focus-within { background-color: var(--yellow-400) !important; } .bc-yellow-400, .h\:bc-yellow-400:hover, .f\:bc-yellow-400:focus, .f\:bc-ye= llow-400:focus-within { border-color: var(--yellow-400) !important; } .fc-yellow-400, .h\:fc-yellow-400:hover, .f\:fc-yellow-400:focus, .f\:fc-ye= llow-400:focus-within { color: var(--yellow-400) !important; } .bg-yellow-500, .h\:bg-yellow-500:hover, .f\:bg-yellow-500:focus, .f\:bg-ye= llow-500:focus-within { background-color: var(--yellow-500) !important; } .bc-yellow-500, .h\:bc-yellow-500:hover, .f\:bc-yellow-500:focus, .f\:bc-ye= llow-500:focus-within { border-color: var(--yellow-500) !important; } .fc-yellow-500, .h\:fc-yellow-500:hover, .f\:fc-yellow-500:focus, .f\:fc-ye= llow-500:focus-within { color: var(--yellow-500) !important; } .bg-yellow-600, .h\:bg-yellow-600:hover, .f\:bg-yellow-600:focus, .f\:bg-ye= llow-600:focus-within { background-color: var(--yellow-600) !important; } .bc-yellow-600, .h\:bc-yellow-600:hover, .f\:bc-yellow-600:focus, .f\:bc-ye= llow-600:focus-within { border-color: var(--yellow-600) !important; } .fc-yellow-600, .h\:fc-yellow-600:hover, .f\:fc-yellow-600:focus, .f\:fc-ye= llow-600:focus-within { color: var(--yellow-600) !important; } .bg-purple-100, .h\:bg-purple-100:hover, .f\:bg-purple-100:focus, .f\:bg-pu= rple-100:focus-within { background-color: var(--purple-100) !important; } .bc-purple-100, .h\:bc-purple-100:hover, .f\:bc-purple-100:focus, .f\:bc-pu= rple-100:focus-within { border-color: var(--purple-100) !important; } .fc-purple-100, .h\:fc-purple-100:hover, .f\:fc-purple-100:focus, .f\:fc-pu= rple-100:focus-within { color: var(--purple-100) !important; } .bg-purple-200, .h\:bg-purple-200:hover, .f\:bg-purple-200:focus, .f\:bg-pu= rple-200:focus-within { background-color: var(--purple-200) !important; } .bc-purple-200, .h\:bc-purple-200:hover, .f\:bc-purple-200:focus, .f\:bc-pu= rple-200:focus-within { border-color: var(--purple-200) !important; } .fc-purple-200, .h\:fc-purple-200:hover, .f\:fc-purple-200:focus, .f\:fc-pu= rple-200:focus-within { color: var(--purple-200) !important; } .bg-purple-300, .h\:bg-purple-300:hover, .f\:bg-purple-300:focus, .f\:bg-pu= rple-300:focus-within { background-color: var(--purple-300) !important; } .bc-purple-300, .h\:bc-purple-300:hover, .f\:bc-purple-300:focus, .f\:bc-pu= rple-300:focus-within { border-color: var(--purple-300) !important; } .fc-purple-300, .h\:fc-purple-300:hover, .f\:fc-purple-300:focus, .f\:fc-pu= rple-300:focus-within { color: var(--purple-300) !important; } .bg-purple-400, .h\:bg-purple-400:hover, .f\:bg-purple-400:focus, .f\:bg-pu= rple-400:focus-within { background-color: var(--purple-400) !important; } .bc-purple-400, .h\:bc-purple-400:hover, .f\:bc-purple-400:focus, .f\:bc-pu= rple-400:focus-within { border-color: var(--purple-400) !important; } .fc-purple-400, .h\:fc-purple-400:hover, .f\:fc-purple-400:focus, .f\:fc-pu= rple-400:focus-within { color: var(--purple-400) !important; } .bg-purple-500, .h\:bg-purple-500:hover, .f\:bg-purple-500:focus, .f\:bg-pu= rple-500:focus-within { background-color: var(--purple-500) !important; } .bc-purple-500, .h\:bc-purple-500:hover, .f\:bc-purple-500:focus, .f\:bc-pu= rple-500:focus-within { border-color: var(--purple-500) !important; } .fc-purple-500, .h\:fc-purple-500:hover, .f\:fc-purple-500:focus, .f\:fc-pu= rple-500:focus-within { color: var(--purple-500) !important; } .bg-purple-600, .h\:bg-purple-600:hover, .f\:bg-purple-600:focus, .f\:bg-pu= rple-600:focus-within { background-color: var(--purple-600) !important; } .bc-purple-600, .h\:bc-purple-600:hover, .f\:bc-purple-600:focus, .f\:bc-pu= rple-600:focus-within { border-color: var(--purple-600) !important; } .fc-purple-600, .h\:fc-purple-600:hover, .f\:fc-purple-600:focus, .f\:fc-pu= rple-600:focus-within { color: var(--purple-600) !important; } .bg-gold-100, .h\:bg-gold-100:hover, .f\:bg-gold-100:focus, .f\:bg-gold-100= :focus-within { background-color: var(--gold-100) !important; } .bc-gold-100, .h\:bc-gold-100:hover, .f\:bc-gold-100:focus, .f\:bc-gold-100= :focus-within { border-color: var(--gold-100) !important; } .fc-gold-100, .h\:fc-gold-100:hover, .f\:fc-gold-100:focus, .f\:fc-gold-100= :focus-within { color: var(--gold-100) !important; } .bg-gold-200, .h\:bg-gold-200:hover, .f\:bg-gold-200:focus, .f\:bg-gold-200= :focus-within { background-color: var(--gold-200) !important; } .bc-gold-200, .h\:bc-gold-200:hover, .f\:bc-gold-200:focus, .f\:bc-gold-200= :focus-within { border-color: var(--gold-200) !important; } .fc-gold-200, .h\:fc-gold-200:hover, .f\:fc-gold-200:focus, .f\:fc-gold-200= :focus-within { color: var(--gold-200) !important; } .bg-gold-300, .h\:bg-gold-300:hover, .f\:bg-gold-300:focus, .f\:bg-gold-300= :focus-within { background-color: var(--gold-300) !important; } .bc-gold-300, .h\:bc-gold-300:hover, .f\:bc-gold-300:focus, .f\:bc-gold-300= :focus-within { border-color: var(--gold-300) !important; } .fc-gold-300, .h\:fc-gold-300:hover, .f\:fc-gold-300:focus, .f\:fc-gold-300= :focus-within { color: var(--gold-300) !important; } .bg-gold-400, .h\:bg-gold-400:hover, .f\:bg-gold-400:focus, .f\:bg-gold-400= :focus-within { background-color: var(--gold-400) !important; } .bc-gold-400, .h\:bc-gold-400:hover, .f\:bc-gold-400:focus, .f\:bc-gold-400= :focus-within { border-color: var(--gold-400) !important; } .fc-gold-400, .h\:fc-gold-400:hover, .f\:fc-gold-400:focus, .f\:fc-gold-400= :focus-within { color: var(--gold-400) !important; } .bg-silver-100, .h\:bg-silver-100:hover, .f\:bg-silver-100:focus, .f\:bg-si= lver-100:focus-within { background-color: var(--silver-100) !important; } .bc-silver-100, .h\:bc-silver-100:hover, .f\:bc-silver-100:focus, .f\:bc-si= lver-100:focus-within { border-color: var(--silver-100) !important; } .fc-silver-100, .h\:fc-silver-100:hover, .f\:fc-silver-100:focus, .f\:fc-si= lver-100:focus-within { color: var(--silver-100) !important; } .bg-silver-200, .h\:bg-silver-200:hover, .f\:bg-silver-200:focus, .f\:bg-si= lver-200:focus-within { background-color: var(--silver-200) !important; } .bc-silver-200, .h\:bc-silver-200:hover, .f\:bc-silver-200:focus, .f\:bc-si= lver-200:focus-within { border-color: var(--silver-200) !important; } .fc-silver-200, .h\:fc-silver-200:hover, .f\:fc-silver-200:focus, .f\:fc-si= lver-200:focus-within { color: var(--silver-200) !important; } .bg-silver-300, .h\:bg-silver-300:hover, .f\:bg-silver-300:focus, .f\:bg-si= lver-300:focus-within { background-color: var(--silver-300) !important; } .bc-silver-300, .h\:bc-silver-300:hover, .f\:bc-silver-300:focus, .f\:bc-si= lver-300:focus-within { border-color: var(--silver-300) !important; } .fc-silver-300, .h\:fc-silver-300:hover, .f\:fc-silver-300:focus, .f\:fc-si= lver-300:focus-within { color: var(--silver-300) !important; } .bg-silver-400, .h\:bg-silver-400:hover, .f\:bg-silver-400:focus, .f\:bg-si= lver-400:focus-within { background-color: var(--silver-400) !important; } .bc-silver-400, .h\:bc-silver-400:hover, .f\:bc-silver-400:focus, .f\:bc-si= lver-400:focus-within { border-color: var(--silver-400) !important; } .fc-silver-400, .h\:fc-silver-400:hover, .f\:fc-silver-400:focus, .f\:fc-si= lver-400:focus-within { color: var(--silver-400) !important; } .bg-bronze-100, .h\:bg-bronze-100:hover, .f\:bg-bronze-100:focus, .f\:bg-br= onze-100:focus-within { background-color: var(--bronze-100) !important; } .bc-bronze-100, .h\:bc-bronze-100:hover, .f\:bc-bronze-100:focus, .f\:bc-br= onze-100:focus-within { border-color: var(--bronze-100) !important; } .fc-bronze-100, .h\:fc-bronze-100:hover, .f\:fc-bronze-100:focus, .f\:fc-br= onze-100:focus-within { color: var(--bronze-100) !important; } .bg-bronze-200, .h\:bg-bronze-200:hover, .f\:bg-bronze-200:focus, .f\:bg-br= onze-200:focus-within { background-color: var(--bronze-200) !important; } .bc-bronze-200, .h\:bc-bronze-200:hover, .f\:bc-bronze-200:focus, .f\:bc-br= onze-200:focus-within { border-color: var(--bronze-200) !important; } .fc-bronze-200, .h\:fc-bronze-200:hover, .f\:fc-bronze-200:focus, .f\:fc-br= onze-200:focus-within { color: var(--bronze-200) !important; } .bg-bronze-300, .h\:bg-bronze-300:hover, .f\:bg-bronze-300:focus, .f\:bg-br= onze-300:focus-within { background-color: var(--bronze-300) !important; } .bc-bronze-300, .h\:bc-bronze-300:hover, .f\:bc-bronze-300:focus, .f\:bc-br= onze-300:focus-within { border-color: var(--bronze-300) !important; } .fc-bronze-300, .h\:fc-bronze-300:hover, .f\:fc-bronze-300:focus, .f\:fc-br= onze-300:focus-within { color: var(--bronze-300) !important; } .bg-bronze-400, .h\:bg-bronze-400:hover, .f\:bg-bronze-400:focus, .f\:bg-br= onze-400:focus-within { background-color: var(--bronze-400) !important; } .bc-bronze-400, .h\:bc-bronze-400:hover, .f\:bc-bronze-400:focus, .f\:bc-br= onze-400:focus-within { border-color: var(--bronze-400) !important; } .fc-bronze-400, .h\:fc-bronze-400:hover, .f\:fc-bronze-400:focus, .f\:fc-br= onze-400:focus-within { color: var(--bronze-400) !important; } .fc-light, .h\:fc-light:hover, .f\:fc-light:focus, .f\:fc-light:focus-withi= n { color: var(--fc-light) !important; } .fc-medium, .h\:fc-medium:hover, .f\:fc-medium:focus, .f\:fc-medium:focus-w= ithin { color: var(--fc-medium) !important; } .fc-dark, .h\:fc-dark:hover, .f\:fc-dark:focus, .f\:fc-dark:focus-within { = color: var(--fc-dark) !important; } .fc-error, .h\:fc-error:hover, .f\:fc-error:focus, .f\:fc-error:focus-withi= n { color: var(--fc-error) !important; } .fc-danger, .h\:fc-danger:hover, .f\:fc-danger:focus, .f\:fc-danger:focus-w= ithin { color: var(--fc-danger) !important; } .fc-success, .h\:fc-success:hover, .f\:fc-success:focus, .f\:fc-success:foc= us-within { color: var(--fc-success) !important; } .fc-warning, .h\:fc-warning:hover, .f\:fc-warning:focus, .f\:fc-warning:foc= us-within { color: var(--fc-warning) !important; } .bg-error, .h\:bg-error:hover, .f\:bg-error:focus, .f\:bg-error:focus-withi= n { background-color: var(--bg-error) !important; } .bg-danger, .h\:bg-danger:hover, .f\:bg-danger:focus, .f\:bg-danger:focus-w= ithin { background-color: var(--bg-danger) !important; } .bg-success, .h\:bg-success:hover, .f\:bg-success:focus, .f\:bg-success:foc= us-within { background-color: var(--bg-success) !important; } .bg-warning, .h\:bg-warning:hover, .f\:bg-warning:focus, .f\:bg-warning:foc= us-within { background-color: var(--bg-warning) !important; } .bc-error, .h\:bc-error:hover, .f\:bc-error:focus, .f\:bc-error:focus-withi= n { border-color: var(--bc-error) !important; } .bc-danger, .h\:bc-danger:hover, .f\:bc-danger:focus, .f\:bc-danger:focus-w= ithin { border-color: var(--bc-danger) !important; } .bc-success, .h\:bc-success:hover, .f\:bc-success:focus, .f\:bc-success:foc= us-within { border-color: var(--bc-success) !important; } .bc-warning, .h\:bc-warning:hover, .f\:bc-warning:focus, .f\:bc-warning:foc= us-within { border-color: var(--bc-warning) !important; } .bg-transparent, .h\:bg-transparent:hover, .f\:bg-transparent:focus, .f\:bg= -transparent:focus-within { background-color: transparent !important; } .bc-transparent, .h\:bc-transparent:hover, .f\:bc-transparent:focus, .f\:bc= -transparent:focus-within { border-color: transparent !important; } .bg-inherit, .h\:bg-inherit:hover, .f\:bg-inherit:focus, .f\:bg-inherit:foc= us-within { background-color: inherit !important; } .bc-inherit, .h\:bc-inherit:hover, .f\:bc-inherit:focus, .f\:bc-inherit:foc= us-within { border-color: inherit !important; } .bg-theme-primary, .h\:bg-theme-primary:hover, .f\:bg-theme-primary:focus, = .f\:bg-theme-primary:focus-within { background-color: var(--theme-primary) = !important; } .bc-theme-primary, .h\:bc-theme-primary:hover, .f\:bc-theme-primary:focus, = .f\:bc-theme-primary:focus-within { border-color: var(--theme-primary) !imp= ortant; } .fc-theme-primary, .h\:fc-theme-primary:hover, .f\:fc-theme-primary:focus, = .f\:fc-theme-primary:focus-within { color: var(--theme-primary) !important;= } .bg-theme-primary-100, .h\:bg-theme-primary-100:hover, .f\:bg-theme-primary= -100:focus, .f\:bg-theme-primary-100:focus-within { background-color: var(-= -theme-primary-100) !important; } .bc-theme-primary-100, .h\:bc-theme-primary-100:hover, .f\:bc-theme-primary= -100:focus, .f\:bc-theme-primary-100:focus-within { border-color: var(--the= me-primary-100) !important; } .fc-theme-primary-100, .h\:fc-theme-primary-100:hover, .f\:fc-theme-primary= -100:focus, .f\:fc-theme-primary-100:focus-within { color: var(--theme-prim= ary-100) !important; } .bg-theme-primary-200, .h\:bg-theme-primary-200:hover, .f\:bg-theme-primary= -200:focus, .f\:bg-theme-primary-200:focus-within { background-color: var(-= -theme-primary-200) !important; } .bc-theme-primary-200, .h\:bc-theme-primary-200:hover, .f\:bc-theme-primary= -200:focus, .f\:bc-theme-primary-200:focus-within { border-color: var(--the= me-primary-200) !important; } .fc-theme-primary-200, .h\:fc-theme-primary-200:hover, .f\:fc-theme-primary= -200:focus, .f\:fc-theme-primary-200:focus-within { color: var(--theme-prim= ary-200) !important; } .bg-theme-primary-300, .h\:bg-theme-primary-300:hover, .f\:bg-theme-primary= -300:focus, .f\:bg-theme-primary-300:focus-within { background-color: var(-= -theme-primary-300) !important; } .bc-theme-primary-300, .h\:bc-theme-primary-300:hover, .f\:bc-theme-primary= -300:focus, .f\:bc-theme-primary-300:focus-within { border-color: var(--the= me-primary-300) !important; } .fc-theme-primary-300, .h\:fc-theme-primary-300:hover, .f\:fc-theme-primary= -300:focus, .f\:fc-theme-primary-300:focus-within { color: var(--theme-prim= ary-300) !important; } .bg-theme-primary-400, .h\:bg-theme-primary-400:hover, .f\:bg-theme-primary= -400:focus, .f\:bg-theme-primary-400:focus-within { background-color: var(-= -theme-primary-400) !important; } .bc-theme-primary-400, .h\:bc-theme-primary-400:hover, .f\:bc-theme-primary= -400:focus, .f\:bc-theme-primary-400:focus-within { border-color: var(--the= me-primary-400) !important; } .fc-theme-primary-400, .h\:fc-theme-primary-400:hover, .f\:fc-theme-primary= -400:focus, .f\:fc-theme-primary-400:focus-within { color: var(--theme-prim= ary-400) !important; } .bg-theme-primary-500, .h\:bg-theme-primary-500:hover, .f\:bg-theme-primary= -500:focus, .f\:bg-theme-primary-500:focus-within { background-color: var(-= -theme-primary-500) !important; } .bc-theme-primary-500, .h\:bc-theme-primary-500:hover, .f\:bc-theme-primary= -500:focus, .f\:bc-theme-primary-500:focus-within { border-color: var(--the= me-primary-500) !important; } .fc-theme-primary-500, .h\:fc-theme-primary-500:hover, .f\:fc-theme-primary= -500:focus, .f\:fc-theme-primary-500:focus-within { color: var(--theme-prim= ary-500) !important; } .bg-theme-primary-600, .h\:bg-theme-primary-600:hover, .f\:bg-theme-primary= -600:focus, .f\:bg-theme-primary-600:focus-within { background-color: var(-= -theme-primary-600) !important; } .bc-theme-primary-600, .h\:bc-theme-primary-600:hover, .f\:bc-theme-primary= -600:focus, .f\:bc-theme-primary-600:focus-within { border-color: var(--the= me-primary-600) !important; } .fc-theme-primary-600, .h\:fc-theme-primary-600:hover, .f\:fc-theme-primary= -600:focus, .f\:fc-theme-primary-600:focus-within { color: var(--theme-prim= ary-600) !important; } .bg-theme-secondary, .h\:bg-theme-secondary:hover, .f\:bg-theme-secondary:f= ocus, .f\:bg-theme-secondary:focus-within { background-color: var(--theme-s= econdary) !important; } .bc-theme-secondary, .h\:bc-theme-secondary:hover, .f\:bc-theme-secondary:f= ocus, .f\:bc-theme-secondary:focus-within { border-color: var(--theme-secon= dary) !important; } .fc-theme-secondary, .h\:fc-theme-secondary:hover, .f\:fc-theme-secondary:f= ocus, .f\:fc-theme-secondary:focus-within { color: var(--theme-secondary) != important; } .bg-theme-secondary-100, .h\:bg-theme-secondary-100:hover, .f\:bg-theme-sec= ondary-100:focus, .f\:bg-theme-secondary-100:focus-within { background-colo= r: var(--theme-secondary-100) !important; } .bc-theme-secondary-100, .h\:bc-theme-secondary-100:hover, .f\:bc-theme-sec= ondary-100:focus, .f\:bc-theme-secondary-100:focus-within { border-color: v= ar(--theme-secondary-100) !important; } .fc-theme-secondary-100, .h\:fc-theme-secondary-100:hover, .f\:fc-theme-sec= ondary-100:focus, .f\:fc-theme-secondary-100:focus-within { color: var(--th= eme-secondary-100) !important; } .bg-theme-secondary-200, .h\:bg-theme-secondary-200:hover, .f\:bg-theme-sec= ondary-200:focus, .f\:bg-theme-secondary-200:focus-within { background-colo= r: var(--theme-secondary-200) !important; } .bc-theme-secondary-200, .h\:bc-theme-secondary-200:hover, .f\:bc-theme-sec= ondary-200:focus, .f\:bc-theme-secondary-200:focus-within { border-color: v= ar(--theme-secondary-200) !important; } .fc-theme-secondary-200, .h\:fc-theme-secondary-200:hover, .f\:fc-theme-sec= ondary-200:focus, .f\:fc-theme-secondary-200:focus-within { color: var(--th= eme-secondary-200) !important; } .bg-theme-secondary-300, .h\:bg-theme-secondary-300:hover, .f\:bg-theme-sec= ondary-300:focus, .f\:bg-theme-secondary-300:focus-within { background-colo= r: var(--theme-secondary-300) !important; } .bc-theme-secondary-300, .h\:bc-theme-secondary-300:hover, .f\:bc-theme-sec= ondary-300:focus, .f\:bc-theme-secondary-300:focus-within { border-color: v= ar(--theme-secondary-300) !important; } .fc-theme-secondary-300, .h\:fc-theme-secondary-300:hover, .f\:fc-theme-sec= ondary-300:focus, .f\:fc-theme-secondary-300:focus-within { color: var(--th= eme-secondary-300) !important; } .bg-theme-secondary-400, .h\:bg-theme-secondary-400:hover, .f\:bg-theme-sec= ondary-400:focus, .f\:bg-theme-secondary-400:focus-within { background-colo= r: var(--theme-secondary-400) !important; } .bc-theme-secondary-400, .h\:bc-theme-secondary-400:hover, .f\:bc-theme-sec= ondary-400:focus, .f\:bc-theme-secondary-400:focus-within { border-color: v= ar(--theme-secondary-400) !important; } .fc-theme-secondary-400, .h\:fc-theme-secondary-400:hover, .f\:fc-theme-sec= ondary-400:focus, .f\:fc-theme-secondary-400:focus-within { color: var(--th= eme-secondary-400) !important; } .bg-theme-secondary-500, .h\:bg-theme-secondary-500:hover, .f\:bg-theme-sec= ondary-500:focus, .f\:bg-theme-secondary-500:focus-within { background-colo= r: var(--theme-secondary-500) !important; } .bc-theme-secondary-500, .h\:bc-theme-secondary-500:hover, .f\:bc-theme-sec= ondary-500:focus, .f\:bc-theme-secondary-500:focus-within { border-color: v= ar(--theme-secondary-500) !important; } .fc-theme-secondary-500, .h\:fc-theme-secondary-500:hover, .f\:fc-theme-sec= ondary-500:focus, .f\:fc-theme-secondary-500:focus-within { color: var(--th= eme-secondary-500) !important; } .bg-theme-secondary-600, .h\:bg-theme-secondary-600:hover, .f\:bg-theme-sec= ondary-600:focus, .f\:bg-theme-secondary-600:focus-within { background-colo= r: var(--theme-secondary-600) !important; } .bc-theme-secondary-600, .h\:bc-theme-secondary-600:hover, .f\:bc-theme-sec= ondary-600:focus, .f\:bc-theme-secondary-600:focus-within { border-color: v= ar(--theme-secondary-600) !important; } .fc-theme-secondary-600, .h\:fc-theme-secondary-600:hover, .f\:fc-theme-sec= ondary-600:focus, .f\:fc-theme-secondary-600:focus-within { color: var(--th= eme-secondary-600) !important; } @media (prefers-color-scheme: dark) { body.theme-system .d\:bg-white { background-color: var(--white) !importan= t; } body.theme-system .d\:fc-white { color: var(--white) !important; } body.theme-system .d\:bg-black-050 { background-color: var(--black-050) != important; } body.theme-system .d\:fc-black-050 { color: var(--black-050) !important; = } body.theme-system .d\:bg-black-100 { background-color: var(--black-100) != important; } body.theme-system .d\:fc-black-100 { color: var(--black-100) !important; = } body.theme-system .d\:bg-black-150 { background-color: var(--black-150) != important; } body.theme-system .d\:fc-black-150 { color: var(--black-150) !important; = } body.theme-system .d\:bg-black-200 { background-color: var(--black-200) != important; } body.theme-system .d\:fc-black-200 { color: var(--black-200) !important; = } body.theme-system .d\:bg-black-225 { background-color: var(--black-225) != important; } body.theme-system .d\:fc-black-225 { color: var(--black-225) !important; = } body.theme-system .d\:bg-black-250 { background-color: var(--black-250) != important; } body.theme-system .d\:fc-black-250 { color: var(--black-250) !important; = } body.theme-system .d\:bg-black-300 { background-color: var(--black-300) != important; } body.theme-system .d\:fc-black-300 { color: var(--black-300) !important; = } body.theme-system .d\:bg-black-350 { background-color: var(--black-350) != important; } body.theme-system .d\:fc-black-350 { color: var(--black-350) !important; = } body.theme-system .d\:bg-black-400 { background-color: var(--black-400) != important; } body.theme-system .d\:fc-black-400 { color: var(--black-400) !important; = } body.theme-system .d\:bg-black-500 { background-color: var(--black-500) != important; } body.theme-system .d\:fc-black-500 { color: var(--black-500) !important; = } body.theme-system .d\:bg-black-600 { background-color: var(--black-600) != important; } body.theme-system .d\:fc-black-600 { color: var(--black-600) !important; = } body.theme-system .d\:bg-black { background-color: var(--black) !importan= t; } body.theme-system .d\:fc-black { color: var(--black) !important; } body.theme-system .d\:bg-orange-100 { background-color: var(--orange-100)= !important; } body.theme-system .d\:fc-orange-100 { color: var(--orange-100) !important= ; } body.theme-system .d\:bg-orange-200 { background-color: var(--orange-200)= !important; } body.theme-system .d\:fc-orange-200 { color: var(--orange-200) !important= ; } body.theme-system .d\:bg-orange-300 { background-color: var(--orange-300)= !important; } body.theme-system .d\:fc-orange-300 { color: var(--orange-300) !important= ; } body.theme-system .d\:bg-orange-400 { background-color: var(--orange-400)= !important; } body.theme-system .d\:fc-orange-400 { color: var(--orange-400) !important= ; } body.theme-system .d\:bg-orange-500 { background-color: var(--orange-500)= !important; } body.theme-system .d\:fc-orange-500 { color: var(--orange-500) !important= ; } body.theme-system .d\:bg-orange-600 { background-color: var(--orange-600)= !important; } body.theme-system .d\:fc-orange-600 { color: var(--orange-600) !important= ; } body.theme-system .d\:bg-blue-100 { background-color: var(--blue-100) !im= portant; } body.theme-system .d\:fc-blue-100 { color: var(--blue-100) !important; } body.theme-system .d\:bg-blue-200 { background-color: var(--blue-200) !im= portant; } body.theme-system .d\:fc-blue-200 { color: var(--blue-200) !important; } body.theme-system .d\:bg-blue-300 { background-color: var(--blue-300) !im= portant; } body.theme-system .d\:fc-blue-300 { color: var(--blue-300) !important; } body.theme-system .d\:bg-blue-400 { background-color: var(--blue-400) !im= portant; } body.theme-system .d\:fc-blue-400 { color: var(--blue-400) !important; } body.theme-system .d\:bg-blue-500 { background-color: var(--blue-500) !im= portant; } body.theme-system .d\:fc-blue-500 { color: var(--blue-500) !important; } body.theme-system .d\:bg-blue-600 { background-color: var(--blue-600) !im= portant; } body.theme-system .d\:fc-blue-600 { color: var(--blue-600) !important; } body.theme-system .d\:bg-green-100 { background-color: var(--green-100) != important; } body.theme-system .d\:fc-green-100 { color: var(--green-100) !important; = } body.theme-system .d\:bg-green-200 { background-color: var(--green-200) != important; } body.theme-system .d\:fc-green-200 { color: var(--green-200) !important; = } body.theme-system .d\:bg-green-300 { background-color: var(--green-300) != important; } body.theme-system .d\:fc-green-300 { color: var(--green-300) !important; = } body.theme-system .d\:bg-green-400 { background-color: var(--green-400) != important; } body.theme-system .d\:fc-green-400 { color: var(--green-400) !important; = } body.theme-system .d\:bg-green-500 { background-color: var(--green-500) != important; } body.theme-system .d\:fc-green-500 { color: var(--green-500) !important; = } body.theme-system .d\:bg-green-600 { background-color: var(--green-600) != important; } body.theme-system .d\:fc-green-600 { color: var(--green-600) !important; = } body.theme-system .d\:bg-red-100 { background-color: var(--red-100) !impo= rtant; } body.theme-system .d\:fc-red-100 { color: var(--red-100) !important; } body.theme-system .d\:bg-red-200 { background-color: var(--red-200) !impo= rtant; } body.theme-system .d\:fc-red-200 { color: var(--red-200) !important; } body.theme-system .d\:bg-red-300 { background-color: var(--red-300) !impo= rtant; } body.theme-system .d\:fc-red-300 { color: var(--red-300) !important; } body.theme-system .d\:bg-red-400 { background-color: var(--red-400) !impo= rtant; } body.theme-system .d\:fc-red-400 { color: var(--red-400) !important; } body.theme-system .d\:bg-red-500 { background-color: var(--red-500) !impo= rtant; } body.theme-system .d\:fc-red-500 { color: var(--red-500) !important; } body.theme-system .d\:bg-red-600 { background-color: var(--red-600) !impo= rtant; } body.theme-system .d\:fc-red-600 { color: var(--red-600) !important; } body.theme-system .d\:bg-yellow-100 { background-color: var(--yellow-100)= !important; } body.theme-system .d\:fc-yellow-100 { color: var(--yellow-100) !important= ; } body.theme-system .d\:bg-yellow-200 { background-color: var(--yellow-200)= !important; } body.theme-system .d\:fc-yellow-200 { color: var(--yellow-200) !important= ; } body.theme-system .d\:bg-yellow-300 { background-color: var(--yellow-300)= !important; } body.theme-system .d\:fc-yellow-300 { color: var(--yellow-300) !important= ; } body.theme-system .d\:bg-yellow-400 { background-color: var(--yellow-400)= !important; } body.theme-system .d\:fc-yellow-400 { color: var(--yellow-400) !important= ; } body.theme-system .d\:bg-yellow-500 { background-color: var(--yellow-500)= !important; } body.theme-system .d\:fc-yellow-500 { color: var(--yellow-500) !important= ; } body.theme-system .d\:bg-yellow-600 { background-color: var(--yellow-600)= !important; } body.theme-system .d\:fc-yellow-600 { color: var(--yellow-600) !important= ; } body.theme-system .d\:bg-purple-100 { background-color: var(--purple-100)= !important; } body.theme-system .d\:fc-purple-100 { color: var(--purple-100) !important= ; } body.theme-system .d\:bg-purple-200 { background-color: var(--purple-200)= !important; } body.theme-system .d\:fc-purple-200 { color: var(--purple-200) !important= ; } body.theme-system .d\:bg-purple-300 { background-color: var(--purple-300)= !important; } body.theme-system .d\:fc-purple-300 { color: var(--purple-300) !important= ; } body.theme-system .d\:bg-purple-400 { background-color: var(--purple-400)= !important; } body.theme-system .d\:fc-purple-400 { color: var(--purple-400) !important= ; } body.theme-system .d\:bg-purple-500 { background-color: var(--purple-500)= !important; } body.theme-system .d\:fc-purple-500 { color: var(--purple-500) !important= ; } body.theme-system .d\:bg-purple-600 { background-color: var(--purple-600)= !important; } body.theme-system .d\:fc-purple-600 { color: var(--purple-600) !important= ; } body.theme-system .d\:bg-gold-100 { background-color: var(--gold-100) !im= portant; } body.theme-system .d\:fc-gold-100 { color: var(--gold-100) !important; } body.theme-system .d\:bg-gold-200 { background-color: var(--gold-200) !im= portant; } body.theme-system .d\:fc-gold-200 { color: var(--gold-200) !important; } body.theme-system .d\:bg-gold-300 { background-color: var(--gold-300) !im= portant; } body.theme-system .d\:fc-gold-300 { color: var(--gold-300) !important; } body.theme-system .d\:bg-gold-400 { background-color: var(--gold-400) !im= portant; } body.theme-system .d\:fc-gold-400 { color: var(--gold-400) !important; } body.theme-system .d\:bg-silver-100 { background-color: var(--silver-100)= !important; } body.theme-system .d\:fc-silver-100 { color: var(--silver-100) !important= ; } body.theme-system .d\:bg-silver-200 { background-color: var(--silver-200)= !important; } body.theme-system .d\:fc-silver-200 { color: var(--silver-200) !important= ; } body.theme-system .d\:bg-silver-300 { background-color: var(--silver-300)= !important; } body.theme-system .d\:fc-silver-300 { color: var(--silver-300) !important= ; } body.theme-system .d\:bg-silver-400 { background-color: var(--silver-400)= !important; } body.theme-system .d\:fc-silver-400 { color: var(--silver-400) !important= ; } body.theme-system .d\:bg-bronze-100 { background-color: var(--bronze-100)= !important; } body.theme-system .d\:fc-bronze-100 { color: var(--bronze-100) !important= ; } body.theme-system .d\:bg-bronze-200 { background-color: var(--bronze-200)= !important; } body.theme-system .d\:fc-bronze-200 { color: var(--bronze-200) !important= ; } body.theme-system .d\:bg-bronze-300 { background-color: var(--bronze-300)= !important; } body.theme-system .d\:fc-bronze-300 { color: var(--bronze-300) !important= ; } body.theme-system .d\:bg-bronze-400 { background-color: var(--bronze-400)= !important; } body.theme-system .d\:fc-bronze-400 { color: var(--bronze-400) !important= ; } body.theme-system .d\:fc-light { color: var(--fc-light) !important; } body.theme-system .d\:fc-medium { color: var(--fc-medium) !important; } body.theme-system .d\:fc-dark { color: var(--fc-dark) !important; } body.theme-system .d\:fc-error { color: var(--fc-error) !important; } body.theme-system .d\:fc-danger { color: var(--fc-danger) !important; } body.theme-system .d\:fc-success { color: var(--fc-success) !important; } body.theme-system .d\:fc-warning { color: var(--fc-warning) !important; } body.theme-system .d\:bg-error { background-color: var(--bg-error) !impor= tant; } body.theme-system .d\:bg-danger { background-color: var(--bg-danger) !imp= ortant; } body.theme-system .d\:bg-success { background-color: var(--bg-success) !i= mportant; } body.theme-system .d\:bg-warning { background-color: var(--bg-warning) !i= mportant; } body.theme-system .bg-transparent, body.theme-system .h\:bg-transparent:h= over, body.theme-system .f\:bg-transparent:focus, body.theme-system .f\:bg-= transparent:focus-within { background-color: transparent !important; } body.theme-system .bc-transparent, body.theme-system .h\:bc-transparent:h= over, body.theme-system .f\:bc-transparent:focus, body.theme-system .f\:bc-= transparent:focus-within { border-color: transparent !important; } body.theme-system .bg-inherit, body.theme-system .h\:bg-inherit:hover, bo= dy.theme-system .f\:bg-inherit:focus, body.theme-system .f\:bg-inherit:focu= s-within { background-color: inherit !important; } body.theme-system .bc-inherit, body.theme-system .h\:bc-inherit:hover, bo= dy.theme-system .f\:bc-inherit:focus, body.theme-system .f\:bc-inherit:focu= s-within { border-color: inherit !important; } } body.theme-dark .d\:bg-white, .theme-dark__forced .d\:bg-white, body.theme-= system .theme-dark__forced .d\:bg-white { background-color: var(--white) !i= mportant; } body.theme-dark .d\:fc-white, .theme-dark__forced .d\:fc-white, body.theme-= system .theme-dark__forced .d\:fc-white { color: var(--white) !important; } body.theme-dark .d\:bg-black-050, .theme-dark__forced .d\:bg-black-050, bod= y.theme-system .theme-dark__forced .d\:bg-black-050 { background-color: var= (--black-050) !important; } body.theme-dark .d\:fc-black-050, .theme-dark__forced .d\:fc-black-050, bod= y.theme-system .theme-dark__forced .d\:fc-black-050 { color: var(--black-05= 0) !important; } body.theme-dark .d\:bg-black-100, .theme-dark__forced .d\:bg-black-100, bod= y.theme-system .theme-dark__forced .d\:bg-black-100 { background-color: var= (--black-100) !important; } body.theme-dark .d\:fc-black-100, .theme-dark__forced .d\:fc-black-100, bod= y.theme-system .theme-dark__forced .d\:fc-black-100 { color: var(--black-10= 0) !important; } body.theme-dark .d\:bg-black-150, .theme-dark__forced .d\:bg-black-150, bod= y.theme-system .theme-dark__forced .d\:bg-black-150 { background-color: var= (--black-150) !important; } body.theme-dark .d\:fc-black-150, .theme-dark__forced .d\:fc-black-150, bod= y.theme-system .theme-dark__forced .d\:fc-black-150 { color: var(--black-15= 0) !important; } body.theme-dark .d\:bg-black-200, .theme-dark__forced .d\:bg-black-200, bod= y.theme-system .theme-dark__forced .d\:bg-black-200 { background-color: var= (--black-200) !important; } body.theme-dark .d\:fc-black-200, .theme-dark__forced .d\:fc-black-200, bod= y.theme-system .theme-dark__forced .d\:fc-black-200 { color: var(--black-20= 0) !important; } body.theme-dark .d\:bg-black-225, .theme-dark__forced .d\:bg-black-225, bod= y.theme-system .theme-dark__forced .d\:bg-black-225 { background-color: var= (--black-225) !important; } body.theme-dark .d\:fc-black-225, .theme-dark__forced .d\:fc-black-225, bod= y.theme-system .theme-dark__forced .d\:fc-black-225 { color: var(--black-22= 5) !important; } body.theme-dark .d\:bg-black-250, .theme-dark__forced .d\:bg-black-250, bod= y.theme-system .theme-dark__forced .d\:bg-black-250 { background-color: var= (--black-250) !important; } body.theme-dark .d\:fc-black-250, .theme-dark__forced .d\:fc-black-250, bod= y.theme-system .theme-dark__forced .d\:fc-black-250 { color: var(--black-25= 0) !important; } body.theme-dark .d\:bg-black-300, .theme-dark__forced .d\:bg-black-300, bod= y.theme-system .theme-dark__forced .d\:bg-black-300 { background-color: var= (--black-300) !important; } body.theme-dark .d\:fc-black-300, .theme-dark__forced .d\:fc-black-300, bod= y.theme-system .theme-dark__forced .d\:fc-black-300 { color: var(--black-30= 0) !important; } body.theme-dark .d\:bg-black-350, .theme-dark__forced .d\:bg-black-350, bod= y.theme-system .theme-dark__forced .d\:bg-black-350 { background-color: var= (--black-350) !important; } body.theme-dark .d\:fc-black-350, .theme-dark__forced .d\:fc-black-350, bod= y.theme-system .theme-dark__forced .d\:fc-black-350 { color: var(--black-35= 0) !important; } body.theme-dark .d\:bg-black-400, .theme-dark__forced .d\:bg-black-400, bod= y.theme-system .theme-dark__forced .d\:bg-black-400 { background-color: var= (--black-400) !important; } body.theme-dark .d\:fc-black-400, .theme-dark__forced .d\:fc-black-400, bod= y.theme-system .theme-dark__forced .d\:fc-black-400 { color: var(--black-40= 0) !important; } body.theme-dark .d\:bg-black-500, .theme-dark__forced .d\:bg-black-500, bod= y.theme-system .theme-dark__forced .d\:bg-black-500 { background-color: var= (--black-500) !important; } body.theme-dark .d\:fc-black-500, .theme-dark__forced .d\:fc-black-500, bod= y.theme-system .theme-dark__forced .d\:fc-black-500 { color: var(--black-50= 0) !important; } body.theme-dark .d\:bg-black-600, .theme-dark__forced .d\:bg-black-600, bod= y.theme-system .theme-dark__forced .d\:bg-black-600 { background-color: var= (--black-600) !important; } body.theme-dark .d\:fc-black-600, .theme-dark__forced .d\:fc-black-600, bod= y.theme-system .theme-dark__forced .d\:fc-black-600 { color: var(--black-60= 0) !important; } body.theme-dark .d\:bg-black, .theme-dark__forced .d\:bg-black, body.theme-= system .theme-dark__forced .d\:bg-black { background-color: var(--black) !i= mportant; } body.theme-dark .d\:fc-black, .theme-dark__forced .d\:fc-black, body.theme-= system .theme-dark__forced .d\:fc-black { color: var(--black) !important; } body.theme-dark .d\:bg-orange-100, .theme-dark__forced .d\:bg-orange-100, b= ody.theme-system .theme-dark__forced .d\:bg-orange-100 { background-color: = var(--orange-100) !important; } body.theme-dark .d\:fc-orange-100, .theme-dark__forced .d\:fc-orange-100, b= ody.theme-system .theme-dark__forced .d\:fc-orange-100 { color: var(--orang= e-100) !important; } body.theme-dark .d\:bg-orange-200, .theme-dark__forced .d\:bg-orange-200, b= ody.theme-system .theme-dark__forced .d\:bg-orange-200 { background-color: = var(--orange-200) !important; } body.theme-dark .d\:fc-orange-200, .theme-dark__forced .d\:fc-orange-200, b= ody.theme-system .theme-dark__forced .d\:fc-orange-200 { color: var(--orang= e-200) !important; } body.theme-dark .d\:bg-orange-300, .theme-dark__forced .d\:bg-orange-300, b= ody.theme-system .theme-dark__forced .d\:bg-orange-300 { background-color: = var(--orange-300) !important; } body.theme-dark .d\:fc-orange-300, .theme-dark__forced .d\:fc-orange-300, b= ody.theme-system .theme-dark__forced .d\:fc-orange-300 { color: var(--orang= e-300) !important; } body.theme-dark .d\:bg-orange-400, .theme-dark__forced .d\:bg-orange-400, b= ody.theme-system .theme-dark__forced .d\:bg-orange-400 { background-color: = var(--orange-400) !important; } body.theme-dark .d\:fc-orange-400, .theme-dark__forced .d\:fc-orange-400, b= ody.theme-system .theme-dark__forced .d\:fc-orange-400 { color: var(--orang= e-400) !important; } body.theme-dark .d\:bg-orange-500, .theme-dark__forced .d\:bg-orange-500, b= ody.theme-system .theme-dark__forced .d\:bg-orange-500 { background-color: = var(--orange-500) !important; } body.theme-dark .d\:fc-orange-500, .theme-dark__forced .d\:fc-orange-500, b= ody.theme-system .theme-dark__forced .d\:fc-orange-500 { color: var(--orang= e-500) !important; } body.theme-dark .d\:bg-orange-600, .theme-dark__forced .d\:bg-orange-600, b= ody.theme-system .theme-dark__forced .d\:bg-orange-600 { background-color: = var(--orange-600) !important; } body.theme-dark .d\:fc-orange-600, .theme-dark__forced .d\:fc-orange-600, b= ody.theme-system .theme-dark__forced .d\:fc-orange-600 { color: var(--orang= e-600) !important; } body.theme-dark .d\:bg-blue-100, .theme-dark__forced .d\:bg-blue-100, body.= theme-system .theme-dark__forced .d\:bg-blue-100 { background-color: var(--= blue-100) !important; } body.theme-dark .d\:fc-blue-100, .theme-dark__forced .d\:fc-blue-100, body.= theme-system .theme-dark__forced .d\:fc-blue-100 { color: var(--blue-100) != important; } body.theme-dark .d\:bg-blue-200, .theme-dark__forced .d\:bg-blue-200, body.= theme-system .theme-dark__forced .d\:bg-blue-200 { background-color: var(--= blue-200) !important; } body.theme-dark .d\:fc-blue-200, .theme-dark__forced .d\:fc-blue-200, body.= theme-system .theme-dark__forced .d\:fc-blue-200 { color: var(--blue-200) != important; } body.theme-dark .d\:bg-blue-300, .theme-dark__forced .d\:bg-blue-300, body.= theme-system .theme-dark__forced .d\:bg-blue-300 { background-color: var(--= blue-300) !important; } body.theme-dark .d\:fc-blue-300, .theme-dark__forced .d\:fc-blue-300, body.= theme-system .theme-dark__forced .d\:fc-blue-300 { color: var(--blue-300) != important; } body.theme-dark .d\:bg-blue-400, .theme-dark__forced .d\:bg-blue-400, body.= theme-system .theme-dark__forced .d\:bg-blue-400 { background-color: var(--= blue-400) !important; } body.theme-dark .d\:fc-blue-400, .theme-dark__forced .d\:fc-blue-400, body.= theme-system .theme-dark__forced .d\:fc-blue-400 { color: var(--blue-400) != important; } body.theme-dark .d\:bg-blue-500, .theme-dark__forced .d\:bg-blue-500, body.= theme-system .theme-dark__forced .d\:bg-blue-500 { background-color: var(--= blue-500) !important; } body.theme-dark .d\:fc-blue-500, .theme-dark__forced .d\:fc-blue-500, body.= theme-system .theme-dark__forced .d\:fc-blue-500 { color: var(--blue-500) != important; } body.theme-dark .d\:bg-blue-600, .theme-dark__forced .d\:bg-blue-600, body.= theme-system .theme-dark__forced .d\:bg-blue-600 { background-color: var(--= blue-600) !important; } body.theme-dark .d\:fc-blue-600, .theme-dark__forced .d\:fc-blue-600, body.= theme-system .theme-dark__forced .d\:fc-blue-600 { color: var(--blue-600) != important; } body.theme-dark .d\:bg-green-100, .theme-dark__forced .d\:bg-green-100, bod= y.theme-system .theme-dark__forced .d\:bg-green-100 { background-color: var= (--green-100) !important; } body.theme-dark .d\:fc-green-100, .theme-dark__forced .d\:fc-green-100, bod= y.theme-system .theme-dark__forced .d\:fc-green-100 { color: var(--green-10= 0) !important; } body.theme-dark .d\:bg-green-200, .theme-dark__forced .d\:bg-green-200, bod= y.theme-system .theme-dark__forced .d\:bg-green-200 { background-color: var= (--green-200) !important; } body.theme-dark .d\:fc-green-200, .theme-dark__forced .d\:fc-green-200, bod= y.theme-system .theme-dark__forced .d\:fc-green-200 { color: var(--green-20= 0) !important; } body.theme-dark .d\:bg-green-300, .theme-dark__forced .d\:bg-green-300, bod= y.theme-system .theme-dark__forced .d\:bg-green-300 { background-color: var= (--green-300) !important; } body.theme-dark .d\:fc-green-300, .theme-dark__forced .d\:fc-green-300, bod= y.theme-system .theme-dark__forced .d\:fc-green-300 { color: var(--green-30= 0) !important; } body.theme-dark .d\:bg-green-400, .theme-dark__forced .d\:bg-green-400, bod= y.theme-system .theme-dark__forced .d\:bg-green-400 { background-color: var= (--green-400) !important; } body.theme-dark .d\:fc-green-400, .theme-dark__forced .d\:fc-green-400, bod= y.theme-system .theme-dark__forced .d\:fc-green-400 { color: var(--green-40= 0) !important; } body.theme-dark .d\:bg-green-500, .theme-dark__forced .d\:bg-green-500, bod= y.theme-system .theme-dark__forced .d\:bg-green-500 { background-color: var= (--green-500) !important; } body.theme-dark .d\:fc-green-500, .theme-dark__forced .d\:fc-green-500, bod= y.theme-system .theme-dark__forced .d\:fc-green-500 { color: var(--green-50= 0) !important; } body.theme-dark .d\:bg-green-600, .theme-dark__forced .d\:bg-green-600, bod= y.theme-system .theme-dark__forced .d\:bg-green-600 { background-color: var= (--green-600) !important; } body.theme-dark .d\:fc-green-600, .theme-dark__forced .d\:fc-green-600, bod= y.theme-system .theme-dark__forced .d\:fc-green-600 { color: var(--green-60= 0) !important; } body.theme-dark .d\:bg-red-100, .theme-dark__forced .d\:bg-red-100, body.th= eme-system .theme-dark__forced .d\:bg-red-100 { background-color: var(--red= -100) !important; } body.theme-dark .d\:fc-red-100, .theme-dark__forced .d\:fc-red-100, body.th= eme-system .theme-dark__forced .d\:fc-red-100 { color: var(--red-100) !impo= rtant; } body.theme-dark .d\:bg-red-200, .theme-dark__forced .d\:bg-red-200, body.th= eme-system .theme-dark__forced .d\:bg-red-200 { background-color: var(--red= -200) !important; } body.theme-dark .d\:fc-red-200, .theme-dark__forced .d\:fc-red-200, body.th= eme-system .theme-dark__forced .d\:fc-red-200 { color: var(--red-200) !impo= rtant; } body.theme-dark .d\:bg-red-300, .theme-dark__forced .d\:bg-red-300, body.th= eme-system .theme-dark__forced .d\:bg-red-300 { background-color: var(--red= -300) !important; } body.theme-dark .d\:fc-red-300, .theme-dark__forced .d\:fc-red-300, body.th= eme-system .theme-dark__forced .d\:fc-red-300 { color: var(--red-300) !impo= rtant; } body.theme-dark .d\:bg-red-400, .theme-dark__forced .d\:bg-red-400, body.th= eme-system .theme-dark__forced .d\:bg-red-400 { background-color: var(--red= -400) !important; } body.theme-dark .d\:fc-red-400, .theme-dark__forced .d\:fc-red-400, body.th= eme-system .theme-dark__forced .d\:fc-red-400 { color: var(--red-400) !impo= rtant; } body.theme-dark .d\:bg-red-500, .theme-dark__forced .d\:bg-red-500, body.th= eme-system .theme-dark__forced .d\:bg-red-500 { background-color: var(--red= -500) !important; } body.theme-dark .d\:fc-red-500, .theme-dark__forced .d\:fc-red-500, body.th= eme-system .theme-dark__forced .d\:fc-red-500 { color: var(--red-500) !impo= rtant; } body.theme-dark .d\:bg-red-600, .theme-dark__forced .d\:bg-red-600, body.th= eme-system .theme-dark__forced .d\:bg-red-600 { background-color: var(--red= -600) !important; } body.theme-dark .d\:fc-red-600, .theme-dark__forced .d\:fc-red-600, body.th= eme-system .theme-dark__forced .d\:fc-red-600 { color: var(--red-600) !impo= rtant; } body.theme-dark .d\:bg-yellow-100, .theme-dark__forced .d\:bg-yellow-100, b= ody.theme-system .theme-dark__forced .d\:bg-yellow-100 { background-color: = var(--yellow-100) !important; } body.theme-dark .d\:fc-yellow-100, .theme-dark__forced .d\:fc-yellow-100, b= ody.theme-system .theme-dark__forced .d\:fc-yellow-100 { color: var(--yello= w-100) !important; } body.theme-dark .d\:bg-yellow-200, .theme-dark__forced .d\:bg-yellow-200, b= ody.theme-system .theme-dark__forced .d\:bg-yellow-200 { background-color: = var(--yellow-200) !important; } body.theme-dark .d\:fc-yellow-200, .theme-dark__forced .d\:fc-yellow-200, b= ody.theme-system .theme-dark__forced .d\:fc-yellow-200 { color: var(--yello= w-200) !important; } body.theme-dark .d\:bg-yellow-300, .theme-dark__forced .d\:bg-yellow-300, b= ody.theme-system .theme-dark__forced .d\:bg-yellow-300 { background-color: = var(--yellow-300) !important; } body.theme-dark .d\:fc-yellow-300, .theme-dark__forced .d\:fc-yellow-300, b= ody.theme-system .theme-dark__forced .d\:fc-yellow-300 { color: var(--yello= w-300) !important; } body.theme-dark .d\:bg-yellow-400, .theme-dark__forced .d\:bg-yellow-400, b= ody.theme-system .theme-dark__forced .d\:bg-yellow-400 { background-color: = var(--yellow-400) !important; } body.theme-dark .d\:fc-yellow-400, .theme-dark__forced .d\:fc-yellow-400, b= ody.theme-system .theme-dark__forced .d\:fc-yellow-400 { color: var(--yello= w-400) !important; } body.theme-dark .d\:bg-yellow-500, .theme-dark__forced .d\:bg-yellow-500, b= ody.theme-system .theme-dark__forced .d\:bg-yellow-500 { background-color: = var(--yellow-500) !important; } body.theme-dark .d\:fc-yellow-500, .theme-dark__forced .d\:fc-yellow-500, b= ody.theme-system .theme-dark__forced .d\:fc-yellow-500 { color: var(--yello= w-500) !important; } body.theme-dark .d\:bg-yellow-600, .theme-dark__forced .d\:bg-yellow-600, b= ody.theme-system .theme-dark__forced .d\:bg-yellow-600 { background-color: = var(--yellow-600) !important; } body.theme-dark .d\:fc-yellow-600, .theme-dark__forced .d\:fc-yellow-600, b= ody.theme-system .theme-dark__forced .d\:fc-yellow-600 { color: var(--yello= w-600) !important; } body.theme-dark .d\:bg-purple-100, .theme-dark__forced .d\:bg-purple-100, b= ody.theme-system .theme-dark__forced .d\:bg-purple-100 { background-color: = var(--purple-100) !important; } body.theme-dark .d\:fc-purple-100, .theme-dark__forced .d\:fc-purple-100, b= ody.theme-system .theme-dark__forced .d\:fc-purple-100 { color: var(--purpl= e-100) !important; } body.theme-dark .d\:bg-purple-200, .theme-dark__forced .d\:bg-purple-200, b= ody.theme-system .theme-dark__forced .d\:bg-purple-200 { background-color: = var(--purple-200) !important; } body.theme-dark .d\:fc-purple-200, .theme-dark__forced .d\:fc-purple-200, b= ody.theme-system .theme-dark__forced .d\:fc-purple-200 { color: var(--purpl= e-200) !important; } body.theme-dark .d\:bg-purple-300, .theme-dark__forced .d\:bg-purple-300, b= ody.theme-system .theme-dark__forced .d\:bg-purple-300 { background-color: = var(--purple-300) !important; } body.theme-dark .d\:fc-purple-300, .theme-dark__forced .d\:fc-purple-300, b= ody.theme-system .theme-dark__forced .d\:fc-purple-300 { color: var(--purpl= e-300) !important; } body.theme-dark .d\:bg-purple-400, .theme-dark__forced .d\:bg-purple-400, b= ody.theme-system .theme-dark__forced .d\:bg-purple-400 { background-color: = var(--purple-400) !important; } body.theme-dark .d\:fc-purple-400, .theme-dark__forced .d\:fc-purple-400, b= ody.theme-system .theme-dark__forced .d\:fc-purple-400 { color: var(--purpl= e-400) !important; } body.theme-dark .d\:bg-purple-500, .theme-dark__forced .d\:bg-purple-500, b= ody.theme-system .theme-dark__forced .d\:bg-purple-500 { background-color: = var(--purple-500) !important; } body.theme-dark .d\:fc-purple-500, .theme-dark__forced .d\:fc-purple-500, b= ody.theme-system .theme-dark__forced .d\:fc-purple-500 { color: var(--purpl= e-500) !important; } body.theme-dark .d\:bg-purple-600, .theme-dark__forced .d\:bg-purple-600, b= ody.theme-system .theme-dark__forced .d\:bg-purple-600 { background-color: = var(--purple-600) !important; } body.theme-dark .d\:fc-purple-600, .theme-dark__forced .d\:fc-purple-600, b= ody.theme-system .theme-dark__forced .d\:fc-purple-600 { color: var(--purpl= e-600) !important; } body.theme-dark .d\:bg-gold-100, .theme-dark__forced .d\:bg-gold-100, body.= theme-system .theme-dark__forced .d\:bg-gold-100 { background-color: var(--= gold-100) !important; } body.theme-dark .d\:fc-gold-100, .theme-dark__forced .d\:fc-gold-100, body.= theme-system .theme-dark__forced .d\:fc-gold-100 { color: var(--gold-100) != important; } body.theme-dark .d\:bg-gold-200, .theme-dark__forced .d\:bg-gold-200, body.= theme-system .theme-dark__forced .d\:bg-gold-200 { background-color: var(--= gold-200) !important; } body.theme-dark .d\:fc-gold-200, .theme-dark__forced .d\:fc-gold-200, body.= theme-system .theme-dark__forced .d\:fc-gold-200 { color: var(--gold-200) != important; } body.theme-dark .d\:bg-gold-300, .theme-dark__forced .d\:bg-gold-300, body.= theme-system .theme-dark__forced .d\:bg-gold-300 { background-color: var(--= gold-300) !important; } body.theme-dark .d\:fc-gold-300, .theme-dark__forced .d\:fc-gold-300, body.= theme-system .theme-dark__forced .d\:fc-gold-300 { color: var(--gold-300) != important; } body.theme-dark .d\:bg-gold-400, .theme-dark__forced .d\:bg-gold-400, body.= theme-system .theme-dark__forced .d\:bg-gold-400 { background-color: var(--= gold-400) !important; } body.theme-dark .d\:fc-gold-400, .theme-dark__forced .d\:fc-gold-400, body.= theme-system .theme-dark__forced .d\:fc-gold-400 { color: var(--gold-400) != important; } body.theme-dark .d\:bg-silver-100, .theme-dark__forced .d\:bg-silver-100, b= ody.theme-system .theme-dark__forced .d\:bg-silver-100 { background-color: = var(--silver-100) !important; } body.theme-dark .d\:fc-silver-100, .theme-dark__forced .d\:fc-silver-100, b= ody.theme-system .theme-dark__forced .d\:fc-silver-100 { color: var(--silve= r-100) !important; } body.theme-dark .d\:bg-silver-200, .theme-dark__forced .d\:bg-silver-200, b= ody.theme-system .theme-dark__forced .d\:bg-silver-200 { background-color: = var(--silver-200) !important; } body.theme-dark .d\:fc-silver-200, .theme-dark__forced .d\:fc-silver-200, b= ody.theme-system .theme-dark__forced .d\:fc-silver-200 { color: var(--silve= r-200) !important; } body.theme-dark .d\:bg-silver-300, .theme-dark__forced .d\:bg-silver-300, b= ody.theme-system .theme-dark__forced .d\:bg-silver-300 { background-color: = var(--silver-300) !important; } body.theme-dark .d\:fc-silver-300, .theme-dark__forced .d\:fc-silver-300, b= ody.theme-system .theme-dark__forced .d\:fc-silver-300 { color: var(--silve= r-300) !important; } body.theme-dark .d\:bg-silver-400, .theme-dark__forced .d\:bg-silver-400, b= ody.theme-system .theme-dark__forced .d\:bg-silver-400 { background-color: = var(--silver-400) !important; } body.theme-dark .d\:fc-silver-400, .theme-dark__forced .d\:fc-silver-400, b= ody.theme-system .theme-dark__forced .d\:fc-silver-400 { color: var(--silve= r-400) !important; } body.theme-dark .d\:bg-bronze-100, .theme-dark__forced .d\:bg-bronze-100, b= ody.theme-system .theme-dark__forced .d\:bg-bronze-100 { background-color: = var(--bronze-100) !important; } body.theme-dark .d\:fc-bronze-100, .theme-dark__forced .d\:fc-bronze-100, b= ody.theme-system .theme-dark__forced .d\:fc-bronze-100 { color: var(--bronz= e-100) !important; } body.theme-dark .d\:bg-bronze-200, .theme-dark__forced .d\:bg-bronze-200, b= ody.theme-system .theme-dark__forced .d\:bg-bronze-200 { background-color: = var(--bronze-200) !important; } body.theme-dark .d\:fc-bronze-200, .theme-dark__forced .d\:fc-bronze-200, b= ody.theme-system .theme-dark__forced .d\:fc-bronze-200 { color: var(--bronz= e-200) !important; } body.theme-dark .d\:bg-bronze-300, .theme-dark__forced .d\:bg-bronze-300, b= ody.theme-system .theme-dark__forced .d\:bg-bronze-300 { background-color: = var(--bronze-300) !important; } body.theme-dark .d\:fc-bronze-300, .theme-dark__forced .d\:fc-bronze-300, b= ody.theme-system .theme-dark__forced .d\:fc-bronze-300 { color: var(--bronz= e-300) !important; } body.theme-dark .d\:bg-bronze-400, .theme-dark__forced .d\:bg-bronze-400, b= ody.theme-system .theme-dark__forced .d\:bg-bronze-400 { background-color: = var(--bronze-400) !important; } body.theme-dark .d\:fc-bronze-400, .theme-dark__forced .d\:fc-bronze-400, b= ody.theme-system .theme-dark__forced .d\:fc-bronze-400 { color: var(--bronz= e-400) !important; } body.theme-dark .d\:fc-light, .theme-dark__forced .d\:fc-light, body.theme-= system .theme-dark__forced .d\:fc-light { color: var(--fc-light) !important= ; } body.theme-dark .d\:fc-medium, .theme-dark__forced .d\:fc-medium, body.them= e-system .theme-dark__forced .d\:fc-medium { color: var(--fc-medium) !impor= tant; } body.theme-dark .d\:fc-dark, .theme-dark__forced .d\:fc-dark, body.theme-sy= stem .theme-dark__forced .d\:fc-dark { color: var(--fc-dark) !important; } body.theme-dark .d\:fc-error, .theme-dark__forced .d\:fc-error, body.theme-= system .theme-dark__forced .d\:fc-error { color: var(--fc-error) !important= ; } body.theme-dark .d\:fc-danger, .theme-dark__forced .d\:fc-danger, body.them= e-system .theme-dark__forced .d\:fc-danger { color: var(--fc-danger) !impor= tant; } body.theme-dark .d\:fc-success, .theme-dark__forced .d\:fc-success, body.th= eme-system .theme-dark__forced .d\:fc-success { color: var(--fc-success) !i= mportant; } body.theme-dark .d\:fc-warning, .theme-dark__forced .d\:fc-warning, body.th= eme-system .theme-dark__forced .d\:fc-warning { color: var(--fc-warning) !i= mportant; } body.theme-dark .d\:bg-error, .theme-dark__forced .d\:bg-error, body.theme-= system .theme-dark__forced .d\:bg-error { background-color: var(--bg-error)= !important; } body.theme-dark .d\:bg-danger, .theme-dark__forced .d\:bg-danger, body.them= e-system .theme-dark__forced .d\:bg-danger { background-color: var(--bg-dan= ger) !important; } body.theme-dark .d\:bg-success, .theme-dark__forced .d\:bg-success, body.th= eme-system .theme-dark__forced .d\:bg-success { background-color: var(--bg-= success) !important; } body.theme-dark .d\:bg-warning, .theme-dark__forced .d\:bg-warning, body.th= eme-system .theme-dark__forced .d\:bg-warning { background-color: var(--bg-= warning) !important; } body.theme-dark .bg-transparent, .theme-dark__forced .bg-transparent, body.= theme-system .theme-dark__forced .bg-transparent, body.theme-dark .h\:bg-tr= ansparent:hover, .theme-dark__forced .h\:bg-transparent:hover, body.theme-s= ystem .theme-dark__forced .h\:bg-transparent:hover, body.theme-dark .f\:bg-= transparent:focus, .theme-dark__forced .f\:bg-transparent:focus, body.theme= -system .theme-dark__forced .f\:bg-transparent:focus, body.theme-dark .f\:b= g-transparent:focus-within, .theme-dark__forced .f\:bg-transparent:focus-wi= thin, body.theme-system .theme-dark__forced .f\:bg-transparent:focus-within= { background-color: transparent !important; } body.theme-dark .bc-transparent, .theme-dark__forced .bc-transparent, body.= theme-system .theme-dark__forced .bc-transparent, body.theme-dark .h\:bc-tr= ansparent:hover, .theme-dark__forced .h\:bc-transparent:hover, body.theme-s= ystem .theme-dark__forced .h\:bc-transparent:hover, body.theme-dark .f\:bc-= transparent:focus, .theme-dark__forced .f\:bc-transparent:focus, body.theme= -system .theme-dark__forced .f\:bc-transparent:focus, body.theme-dark .f\:b= c-transparent:focus-within, .theme-dark__forced .f\:bc-transparent:focus-wi= thin, body.theme-system .theme-dark__forced .f\:bc-transparent:focus-within= { border-color: transparent !important; } body.theme-dark .bg-inherit, .theme-dark__forced .bg-inherit, body.theme-sy= stem .theme-dark__forced .bg-inherit, body.theme-dark .h\:bg-inherit:hover,= .theme-dark__forced .h\:bg-inherit:hover, body.theme-system .theme-dark__f= orced .h\:bg-inherit:hover, body.theme-dark .f\:bg-inherit:focus, .theme-da= rk__forced .f\:bg-inherit:focus, body.theme-system .theme-dark__forced .f\:= bg-inherit:focus, body.theme-dark .f\:bg-inherit:focus-within, .theme-dark_= _forced .f\:bg-inherit:focus-within, body.theme-system .theme-dark__forced = .f\:bg-inherit:focus-within { background-color: inherit !important; } body.theme-dark .bc-inherit, .theme-dark__forced .bc-inherit, body.theme-sy= stem .theme-dark__forced .bc-inherit, body.theme-dark .h\:bc-inherit:hover,= .theme-dark__forced .h\:bc-inherit:hover, body.theme-system .theme-dark__f= orced .h\:bc-inherit:hover, body.theme-dark .f\:bc-inherit:focus, .theme-da= rk__forced .f\:bc-inherit:focus, body.theme-system .theme-dark__forced .f\:= bc-inherit:focus, body.theme-dark .f\:bc-inherit:focus-within, .theme-dark_= _forced .f\:bc-inherit:focus-within, body.theme-system .theme-dark__forced = .f\:bc-inherit:focus-within { border-color: inherit !important; } .flex__fl-shrink0, .flex__fl-shrink0 > .d-flex, .flex__fl-shrink0 > .flex--= item { flex: 0 1 auto; } .flex__fl-equal, .flex__fl-equal > .d-flex, .flex__fl-equal > .flex--item {= flex: 1 1 0%; } .flex__fl-grow1, .flex__fl-grow1 > .d-flex, .flex__fl-grow1 > .flex--item {= flex: 1 1 auto; } .flex--item1 { flex-basis: 8.33333%; } .flex--item2 { flex-basis: 16.6667%; } .flex--item3 { flex-basis: 25%; } .flex--item4 { flex-basis: 33.3333%; } .flex--item5 { flex-basis: 41.6667%; } .flex--item6 { flex-basis: 50%; } .flex--item7 { flex-basis: 58.3333%; } .flex--item8 { flex-basis: 66.6667%; } .flex--item9 { flex-basis: 75%; } .flex--item10 { flex-basis: 83.3333%; } .flex--item11 { flex-basis: 91.6667%; } .flex--item12 { flex-basis: 100%; } .flex__allitems1 > .d-flex, .flex__allitems1 > .flex--item { flex-basis: 8.= 33333%; } .flex__allitems2 > .d-flex, .flex__allitems2 > .flex--item { flex-basis: 16= .6667%; } .flex__allitems3 > .d-flex, .flex__allitems3 > .flex--item { flex-basis: 25= %; } .flex__allitems4 > .d-flex, .flex__allitems4 > .flex--item { flex-basis: 33= .3333%; } .flex__allitems5 > .d-flex, .flex__allitems5 > .flex--item { flex-basis: 41= .6667%; } .flex__allitems6 > .d-flex, .flex__allitems6 > .flex--item { flex-basis: 50= %; } .flex__allitems7 > .d-flex, .flex__allitems7 > .flex--item { flex-basis: 58= .3333%; } .flex__allitems8 > .d-flex, .flex__allitems8 > .flex--item { flex-basis: 66= .6667%; } .flex__allitems9 > .d-flex, .flex__allitems9 > .flex--item { flex-basis: 75= %; } .flex__allitems10 > .d-flex, .flex__allitems10 > .flex--item { flex-basis: = 83.3333%; } .flex__allitems11 > .d-flex, .flex__allitems11 > .flex--item { flex-basis: = 91.6667%; } .flex__allitems12 > .d-flex, .flex__allitems12 > .flex--item { flex-basis: = 100%; } .g0 > .flex--item1, .gx0 > .flex--item1, .gy0 > .flex--item1, .g0.flex__all= items1 > .d-flex, .gx0.flex__allitems1 > .d-flex, .gy0.flex__allitems1 > .d= -flex, .g0.flex__allitems1 > .flex--item, .gx0.flex__allitems1 > .flex--ite= m, .gy0.flex__allitems1 > .flex--item { flex-basis: calc(8.333333333333334%= - (var(--su0) * 0.9166666666666666)); } .g0 > .flex--item2, .gx0 > .flex--item2, .gy0 > .flex--item2, .g0.flex__all= items2 > .d-flex, .gx0.flex__allitems2 > .d-flex, .gy0.flex__allitems2 > .d= -flex, .g0.flex__allitems2 > .flex--item, .gx0.flex__allitems2 > .flex--ite= m, .gy0.flex__allitems2 > .flex--item { flex-basis: calc(16.666666666666668= % - (var(--su0) * 0.8333333333333334)); } .g0 > .flex--item3, .gx0 > .flex--item3, .gy0 > .flex--item3, .g0.flex__all= items3 > .d-flex, .gx0.flex__allitems3 > .d-flex, .gy0.flex__allitems3 > .d= -flex, .g0.flex__allitems3 > .flex--item, .gx0.flex__allitems3 > .flex--ite= m, .gy0.flex__allitems3 > .flex--item { flex-basis: calc(25% - (var(--su0) = * 0.75)); } .g0 > .flex--item4, .gx0 > .flex--item4, .gy0 > .flex--item4, .g0.flex__all= items4 > .d-flex, .gx0.flex__allitems4 > .d-flex, .gy0.flex__allitems4 > .d= -flex, .g0.flex__allitems4 > .flex--item, .gx0.flex__allitems4 > .flex--ite= m, .gy0.flex__allitems4 > .flex--item { flex-basis: calc(33.333333333333336= % - (var(--su0) * 0.6666666666666666)); } .g0 > .flex--item5, .gx0 > .flex--item5, .gy0 > .flex--item5, .g0.flex__all= items5 > .d-flex, .gx0.flex__allitems5 > .d-flex, .gy0.flex__allitems5 > .d= -flex, .g0.flex__allitems5 > .flex--item, .gx0.flex__allitems5 > .flex--ite= m, .gy0.flex__allitems5 > .flex--item { flex-basis: calc(41.666666666666664= % - (var(--su0) * 0.5833333333333334)); } .g0 > .flex--item6, .gx0 > .flex--item6, .gy0 > .flex--item6, .g0.flex__all= items6 > .d-flex, .gx0.flex__allitems6 > .d-flex, .gy0.flex__allitems6 > .d= -flex, .g0.flex__allitems6 > .flex--item, .gx0.flex__allitems6 > .flex--ite= m, .gy0.flex__allitems6 > .flex--item { flex-basis: calc(50% - (var(--su0) = * 0.5)); } .g0 > .flex--item7, .gx0 > .flex--item7, .gy0 > .flex--item7, .g0.flex__all= items7 > .d-flex, .gx0.flex__allitems7 > .d-flex, .gy0.flex__allitems7 > .d= -flex, .g0.flex__allitems7 > .flex--item, .gx0.flex__allitems7 > .flex--ite= m, .gy0.flex__allitems7 > .flex--item { flex-basis: calc(58.333333333333336= % - (var(--su0) * 0.4166666666666667)); } .g0 > .flex--item8, .gx0 > .flex--item8, .gy0 > .flex--item8, .g0.flex__all= items8 > .d-flex, .gx0.flex__allitems8 > .d-flex, .gy0.flex__allitems8 > .d= -flex, .g0.flex__allitems8 > .flex--item, .gx0.flex__allitems8 > .flex--ite= m, .gy0.flex__allitems8 > .flex--item { flex-basis: calc(66.66666666666667%= - (var(--su0) * 0.3333333333333333)); } .g0 > .flex--item9, .gx0 > .flex--item9, .gy0 > .flex--item9, .g0.flex__all= items9 > .d-flex, .gx0.flex__allitems9 > .d-flex, .gy0.flex__allitems9 > .d= -flex, .g0.flex__allitems9 > .flex--item, .gx0.flex__allitems9 > .flex--ite= m, .gy0.flex__allitems9 > .flex--item { flex-basis: calc(75% - (var(--su0) = * 0.25)); } .g0 > .flex--item10, .gx0 > .flex--item10, .gy0 > .flex--item10, .g0.flex__= allitems10 > .d-flex, .gx0.flex__allitems10 > .d-flex, .gy0.flex__allitems1= 0 > .d-flex, .g0.flex__allitems10 > .flex--item, .gx0.flex__allitems10 > .f= lex--item, .gy0.flex__allitems10 > .flex--item { flex-basis: calc(83.333333= 33333333% - (var(--su0) * 0.16666666666666666)); } .g0 > .flex--item11, .gx0 > .flex--item11, .gy0 > .flex--item11, .g0.flex__= allitems11 > .d-flex, .gx0.flex__allitems11 > .d-flex, .gy0.flex__allitems1= 1 > .d-flex, .g0.flex__allitems11 > .flex--item, .gx0.flex__allitems11 > .f= lex--item, .gy0.flex__allitems11 > .flex--item { flex-basis: calc(91.666666= 66666667% - (var(--su0) * 0.08333333333333333)); } .g0 > .flex--item12, .gx0 > .flex--item12, .gy0 > .flex--item12, .g0.flex__= allitems12 > .d-flex, .gx0.flex__allitems12 > .d-flex, .gy0.flex__allitems1= 2 > .d-flex, .g0.flex__allitems12 > .flex--item, .gx0.flex__allitems12 > .f= lex--item, .gy0.flex__allitems12 > .flex--item { flex-basis: calc(100% - (v= ar(--su0) * 0)); } .g1 > .flex--item1, .gx1 > .flex--item1, .gy1 > .flex--item1, .g1.flex__all= items1 > .d-flex, .gx1.flex__allitems1 > .d-flex, .gy1.flex__allitems1 > .d= -flex, .g1.flex__allitems1 > .flex--item, .gx1.flex__allitems1 > .flex--ite= m, .gy1.flex__allitems1 > .flex--item { flex-basis: calc(8.333333333333334%= - (var(--su1) * 0.9166666666666666)); } .g1 > .flex--item2, .gx1 > .flex--item2, .gy1 > .flex--item2, .g1.flex__all= items2 > .d-flex, .gx1.flex__allitems2 > .d-flex, .gy1.flex__allitems2 > .d= -flex, .g1.flex__allitems2 > .flex--item, .gx1.flex__allitems2 > .flex--ite= m, .gy1.flex__allitems2 > .flex--item { flex-basis: calc(16.666666666666668= % - (var(--su1) * 0.8333333333333334)); } .g1 > .flex--item3, .gx1 > .flex--item3, .gy1 > .flex--item3, .g1.flex__all= items3 > .d-flex, .gx1.flex__allitems3 > .d-flex, .gy1.flex__allitems3 > .d= -flex, .g1.flex__allitems3 > .flex--item, .gx1.flex__allitems3 > .flex--ite= m, .gy1.flex__allitems3 > .flex--item { flex-basis: calc(25% - (var(--su1) = * 0.75)); } .g1 > .flex--item4, .gx1 > .flex--item4, .gy1 > .flex--item4, .g1.flex__all= items4 > .d-flex, .gx1.flex__allitems4 > .d-flex, .gy1.flex__allitems4 > .d= -flex, .g1.flex__allitems4 > .flex--item, .gx1.flex__allitems4 > .flex--ite= m, .gy1.flex__allitems4 > .flex--item { flex-basis: calc(33.333333333333336= % - (var(--su1) * 0.6666666666666666)); } .g1 > .flex--item5, .gx1 > .flex--item5, .gy1 > .flex--item5, .g1.flex__all= items5 > .d-flex, .gx1.flex__allitems5 > .d-flex, .gy1.flex__allitems5 > .d= -flex, .g1.flex__allitems5 > .flex--item, .gx1.flex__allitems5 > .flex--ite= m, .gy1.flex__allitems5 > .flex--item { flex-basis: calc(41.666666666666664= % - (var(--su1) * 0.5833333333333334)); } .g1 > .flex--item6, .gx1 > .flex--item6, .gy1 > .flex--item6, .g1.flex__all= items6 > .d-flex, .gx1.flex__allitems6 > .d-flex, .gy1.flex__allitems6 > .d= -flex, .g1.flex__allitems6 > .flex--item, .gx1.flex__allitems6 > .flex--ite= m, .gy1.flex__allitems6 > .flex--item { flex-basis: calc(50% - (var(--su1) = * 0.5)); } .g1 > .flex--item7, .gx1 > .flex--item7, .gy1 > .flex--item7, .g1.flex__all= items7 > .d-flex, .gx1.flex__allitems7 > .d-flex, .gy1.flex__allitems7 > .d= -flex, .g1.flex__allitems7 > .flex--item, .gx1.flex__allitems7 > .flex--ite= m, .gy1.flex__allitems7 > .flex--item { flex-basis: calc(58.333333333333336= % - (var(--su1) * 0.4166666666666667)); } .g1 > .flex--item8, .gx1 > .flex--item8, .gy1 > .flex--item8, .g1.flex__all= items8 > .d-flex, .gx1.flex__allitems8 > .d-flex, .gy1.flex__allitems8 > .d= -flex, .g1.flex__allitems8 > .flex--item, .gx1.flex__allitems8 > .flex--ite= m, .gy1.flex__allitems8 > .flex--item { flex-basis: calc(66.66666666666667%= - (var(--su1) * 0.3333333333333333)); } .g1 > .flex--item9, .gx1 > .flex--item9, .gy1 > .flex--item9, .g1.flex__all= items9 > .d-flex, .gx1.flex__allitems9 > .d-flex, .gy1.flex__allitems9 > .d= -flex, .g1.flex__allitems9 > .flex--item, .gx1.flex__allitems9 > .flex--ite= m, .gy1.flex__allitems9 > .flex--item { flex-basis: calc(75% - (var(--su1) = * 0.25)); } .g1 > .flex--item10, .gx1 > .flex--item10, .gy1 > .flex--item10, .g1.flex__= allitems10 > .d-flex, .gx1.flex__allitems10 > .d-flex, .gy1.flex__allitems1= 0 > .d-flex, .g1.flex__allitems10 > .flex--item, .gx1.flex__allitems10 > .f= lex--item, .gy1.flex__allitems10 > .flex--item { flex-basis: calc(83.333333= 33333333% - (var(--su1) * 0.16666666666666666)); } .g1 > .flex--item11, .gx1 > .flex--item11, .gy1 > .flex--item11, .g1.flex__= allitems11 > .d-flex, .gx1.flex__allitems11 > .d-flex, .gy1.flex__allitems1= 1 > .d-flex, .g1.flex__allitems11 > .flex--item, .gx1.flex__allitems11 > .f= lex--item, .gy1.flex__allitems11 > .flex--item { flex-basis: calc(91.666666= 66666667% - (var(--su1) * 0.08333333333333333)); } .g1 > .flex--item12, .gx1 > .flex--item12, .gy1 > .flex--item12, .g1.flex__= allitems12 > .d-flex, .gx1.flex__allitems12 > .d-flex, .gy1.flex__allitems1= 2 > .d-flex, .g1.flex__allitems12 > .flex--item, .gx1.flex__allitems12 > .f= lex--item, .gy1.flex__allitems12 > .flex--item { flex-basis: calc(100% - (v= ar(--su1) * 0)); } .g2 > .flex--item1, .gx2 > .flex--item1, .gy2 > .flex--item1, .g2.flex__all= items1 > .d-flex, .gx2.flex__allitems1 > .d-flex, .gy2.flex__allitems1 > .d= -flex, .g2.flex__allitems1 > .flex--item, .gx2.flex__allitems1 > .flex--ite= m, .gy2.flex__allitems1 > .flex--item { flex-basis: calc(8.333333333333334%= - (var(--su2) * 0.9166666666666666)); } .g2 > .flex--item2, .gx2 > .flex--item2, .gy2 > .flex--item2, .g2.flex__all= items2 > .d-flex, .gx2.flex__allitems2 > .d-flex, .gy2.flex__allitems2 > .d= -flex, .g2.flex__allitems2 > .flex--item, .gx2.flex__allitems2 > .flex--ite= m, .gy2.flex__allitems2 > .flex--item { flex-basis: calc(16.666666666666668= % - (var(--su2) * 0.8333333333333334)); } .g2 > .flex--item3, .gx2 > .flex--item3, .gy2 > .flex--item3, .g2.flex__all= items3 > .d-flex, .gx2.flex__allitems3 > .d-flex, .gy2.flex__allitems3 > .d= -flex, .g2.flex__allitems3 > .flex--item, .gx2.flex__allitems3 > .flex--ite= m, .gy2.flex__allitems3 > .flex--item { flex-basis: calc(25% - (var(--su2) = * 0.75)); } .g2 > .flex--item4, .gx2 > .flex--item4, .gy2 > .flex--item4, .g2.flex__all= items4 > .d-flex, .gx2.flex__allitems4 > .d-flex, .gy2.flex__allitems4 > .d= -flex, .g2.flex__allitems4 > .flex--item, .gx2.flex__allitems4 > .flex--ite= m, .gy2.flex__allitems4 > .flex--item { flex-basis: calc(33.333333333333336= % - (var(--su2) * 0.6666666666666666)); } .g2 > .flex--item5, .gx2 > .flex--item5, .gy2 > .flex--item5, .g2.flex__all= items5 > .d-flex, .gx2.flex__allitems5 > .d-flex, .gy2.flex__allitems5 > .d= -flex, .g2.flex__allitems5 > .flex--item, .gx2.flex__allitems5 > .flex--ite= m, .gy2.flex__allitems5 > .flex--item { flex-basis: calc(41.666666666666664= % - (var(--su2) * 0.5833333333333334)); } .g2 > .flex--item6, .gx2 > .flex--item6, .gy2 > .flex--item6, .g2.flex__all= items6 > .d-flex, .gx2.flex__allitems6 > .d-flex, .gy2.flex__allitems6 > .d= -flex, .g2.flex__allitems6 > .flex--item, .gx2.flex__allitems6 > .flex--ite= m, .gy2.flex__allitems6 > .flex--item { flex-basis: calc(50% - (var(--su2) = * 0.5)); } .g2 > .flex--item7, .gx2 > .flex--item7, .gy2 > .flex--item7, .g2.flex__all= items7 > .d-flex, .gx2.flex__allitems7 > .d-flex, .gy2.flex__allitems7 > .d= -flex, .g2.flex__allitems7 > .flex--item, .gx2.flex__allitems7 > .flex--ite= m, .gy2.flex__allitems7 > .flex--item { flex-basis: calc(58.333333333333336= % - (var(--su2) * 0.4166666666666667)); } .g2 > .flex--item8, .gx2 > .flex--item8, .gy2 > .flex--item8, .g2.flex__all= items8 > .d-flex, .gx2.flex__allitems8 > .d-flex, .gy2.flex__allitems8 > .d= -flex, .g2.flex__allitems8 > .flex--item, .gx2.flex__allitems8 > .flex--ite= m, .gy2.flex__allitems8 > .flex--item { flex-basis: calc(66.66666666666667%= - (var(--su2) * 0.3333333333333333)); } .g2 > .flex--item9, .gx2 > .flex--item9, .gy2 > .flex--item9, .g2.flex__all= items9 > .d-flex, .gx2.flex__allitems9 > .d-flex, .gy2.flex__allitems9 > .d= -flex, .g2.flex__allitems9 > .flex--item, .gx2.flex__allitems9 > .flex--ite= m, .gy2.flex__allitems9 > .flex--item { flex-basis: calc(75% - (var(--su2) = * 0.25)); } .g2 > .flex--item10, .gx2 > .flex--item10, .gy2 > .flex--item10, .g2.flex__= allitems10 > .d-flex, .gx2.flex__allitems10 > .d-flex, .gy2.flex__allitems1= 0 > .d-flex, .g2.flex__allitems10 > .flex--item, .gx2.flex__allitems10 > .f= lex--item, .gy2.flex__allitems10 > .flex--item { flex-basis: calc(83.333333= 33333333% - (var(--su2) * 0.16666666666666666)); } .g2 > .flex--item11, .gx2 > .flex--item11, .gy2 > .flex--item11, .g2.flex__= allitems11 > .d-flex, .gx2.flex__allitems11 > .d-flex, .gy2.flex__allitems1= 1 > .d-flex, .g2.flex__allitems11 > .flex--item, .gx2.flex__allitems11 > .f= lex--item, .gy2.flex__allitems11 > .flex--item { flex-basis: calc(91.666666= 66666667% - (var(--su2) * 0.08333333333333333)); } .g2 > .flex--item12, .gx2 > .flex--item12, .gy2 > .flex--item12, .g2.flex__= allitems12 > .d-flex, .gx2.flex__allitems12 > .d-flex, .gy2.flex__allitems1= 2 > .d-flex, .g2.flex__allitems12 > .flex--item, .gx2.flex__allitems12 > .f= lex--item, .gy2.flex__allitems12 > .flex--item { flex-basis: calc(100% - (v= ar(--su2) * 0)); } .g4 > .flex--item1, .gx4 > .flex--item1, .gy4 > .flex--item1, .g4.flex__all= items1 > .d-flex, .gx4.flex__allitems1 > .d-flex, .gy4.flex__allitems1 > .d= -flex, .g4.flex__allitems1 > .flex--item, .gx4.flex__allitems1 > .flex--ite= m, .gy4.flex__allitems1 > .flex--item { flex-basis: calc(8.333333333333334%= - (var(--su4) * 0.9166666666666666)); } .g4 > .flex--item2, .gx4 > .flex--item2, .gy4 > .flex--item2, .g4.flex__all= items2 > .d-flex, .gx4.flex__allitems2 > .d-flex, .gy4.flex__allitems2 > .d= -flex, .g4.flex__allitems2 > .flex--item, .gx4.flex__allitems2 > .flex--ite= m, .gy4.flex__allitems2 > .flex--item { flex-basis: calc(16.666666666666668= % - (var(--su4) * 0.8333333333333334)); } .g4 > .flex--item3, .gx4 > .flex--item3, .gy4 > .flex--item3, .g4.flex__all= items3 > .d-flex, .gx4.flex__allitems3 > .d-flex, .gy4.flex__allitems3 > .d= -flex, .g4.flex__allitems3 > .flex--item, .gx4.flex__allitems3 > .flex--ite= m, .gy4.flex__allitems3 > .flex--item { flex-basis: calc(25% - (var(--su4) = * 0.75)); } .g4 > .flex--item4, .gx4 > .flex--item4, .gy4 > .flex--item4, .g4.flex__all= items4 > .d-flex, .gx4.flex__allitems4 > .d-flex, .gy4.flex__allitems4 > .d= -flex, .g4.flex__allitems4 > .flex--item, .gx4.flex__allitems4 > .flex--ite= m, .gy4.flex__allitems4 > .flex--item { flex-basis: calc(33.333333333333336= % - (var(--su4) * 0.6666666666666666)); } .g4 > .flex--item5, .gx4 > .flex--item5, .gy4 > .flex--item5, .g4.flex__all= items5 > .d-flex, .gx4.flex__allitems5 > .d-flex, .gy4.flex__allitems5 > .d= -flex, .g4.flex__allitems5 > .flex--item, .gx4.flex__allitems5 > .flex--ite= m, .gy4.flex__allitems5 > .flex--item { flex-basis: calc(41.666666666666664= % - (var(--su4) * 0.5833333333333334)); } .g4 > .flex--item6, .gx4 > .flex--item6, .gy4 > .flex--item6, .g4.flex__all= items6 > .d-flex, .gx4.flex__allitems6 > .d-flex, .gy4.flex__allitems6 > .d= -flex, .g4.flex__allitems6 > .flex--item, .gx4.flex__allitems6 > .flex--ite= m, .gy4.flex__allitems6 > .flex--item { flex-basis: calc(50% - (var(--su4) = * 0.5)); } .g4 > .flex--item7, .gx4 > .flex--item7, .gy4 > .flex--item7, .g4.flex__all= items7 > .d-flex, .gx4.flex__allitems7 > .d-flex, .gy4.flex__allitems7 > .d= -flex, .g4.flex__allitems7 > .flex--item, .gx4.flex__allitems7 > .flex--ite= m, .gy4.flex__allitems7 > .flex--item { flex-basis: calc(58.333333333333336= % - (var(--su4) * 0.4166666666666667)); } .g4 > .flex--item8, .gx4 > .flex--item8, .gy4 > .flex--item8, .g4.flex__all= items8 > .d-flex, .gx4.flex__allitems8 > .d-flex, .gy4.flex__allitems8 > .d= -flex, .g4.flex__allitems8 > .flex--item, .gx4.flex__allitems8 > .flex--ite= m, .gy4.flex__allitems8 > .flex--item { flex-basis: calc(66.66666666666667%= - (var(--su4) * 0.3333333333333333)); } .g4 > .flex--item9, .gx4 > .flex--item9, .gy4 > .flex--item9, .g4.flex__all= items9 > .d-flex, .gx4.flex__allitems9 > .d-flex, .gy4.flex__allitems9 > .d= -flex, .g4.flex__allitems9 > .flex--item, .gx4.flex__allitems9 > .flex--ite= m, .gy4.flex__allitems9 > .flex--item { flex-basis: calc(75% - (var(--su4) = * 0.25)); } .g4 > .flex--item10, .gx4 > .flex--item10, .gy4 > .flex--item10, .g4.flex__= allitems10 > .d-flex, .gx4.flex__allitems10 > .d-flex, .gy4.flex__allitems1= 0 > .d-flex, .g4.flex__allitems10 > .flex--item, .gx4.flex__allitems10 > .f= lex--item, .gy4.flex__allitems10 > .flex--item { flex-basis: calc(83.333333= 33333333% - (var(--su4) * 0.16666666666666666)); } .g4 > .flex--item11, .gx4 > .flex--item11, .gy4 > .flex--item11, .g4.flex__= allitems11 > .d-flex, .gx4.flex__allitems11 > .d-flex, .gy4.flex__allitems1= 1 > .d-flex, .g4.flex__allitems11 > .flex--item, .gx4.flex__allitems11 > .f= lex--item, .gy4.flex__allitems11 > .flex--item { flex-basis: calc(91.666666= 66666667% - (var(--su4) * 0.08333333333333333)); } .g4 > .flex--item12, .gx4 > .flex--item12, .gy4 > .flex--item12, .g4.flex__= allitems12 > .d-flex, .gx4.flex__allitems12 > .d-flex, .gy4.flex__allitems1= 2 > .d-flex, .g4.flex__allitems12 > .flex--item, .gx4.flex__allitems12 > .f= lex--item, .gy4.flex__allitems12 > .flex--item { flex-basis: calc(100% - (v= ar(--su4) * 0)); } .g6 > .flex--item1, .gx6 > .flex--item1, .gy6 > .flex--item1, .g6.flex__all= items1 > .d-flex, .gx6.flex__allitems1 > .d-flex, .gy6.flex__allitems1 > .d= -flex, .g6.flex__allitems1 > .flex--item, .gx6.flex__allitems1 > .flex--ite= m, .gy6.flex__allitems1 > .flex--item { flex-basis: calc(8.333333333333334%= - (var(--su6) * 0.9166666666666666)); } .g6 > .flex--item2, .gx6 > .flex--item2, .gy6 > .flex--item2, .g6.flex__all= items2 > .d-flex, .gx6.flex__allitems2 > .d-flex, .gy6.flex__allitems2 > .d= -flex, .g6.flex__allitems2 > .flex--item, .gx6.flex__allitems2 > .flex--ite= m, .gy6.flex__allitems2 > .flex--item { flex-basis: calc(16.666666666666668= % - (var(--su6) * 0.8333333333333334)); } .g6 > .flex--item3, .gx6 > .flex--item3, .gy6 > .flex--item3, .g6.flex__all= items3 > .d-flex, .gx6.flex__allitems3 > .d-flex, .gy6.flex__allitems3 > .d= -flex, .g6.flex__allitems3 > .flex--item, .gx6.flex__allitems3 > .flex--ite= m, .gy6.flex__allitems3 > .flex--item { flex-basis: calc(25% - (var(--su6) = * 0.75)); } .g6 > .flex--item4, .gx6 > .flex--item4, .gy6 > .flex--item4, .g6.flex__all= items4 > .d-flex, .gx6.flex__allitems4 > .d-flex, .gy6.flex__allitems4 > .d= -flex, .g6.flex__allitems4 > .flex--item, .gx6.flex__allitems4 > .flex--ite= m, .gy6.flex__allitems4 > .flex--item { flex-basis: calc(33.333333333333336= % - (var(--su6) * 0.6666666666666666)); } .g6 > .flex--item5, .gx6 > .flex--item5, .gy6 > .flex--item5, .g6.flex__all= items5 > .d-flex, .gx6.flex__allitems5 > .d-flex, .gy6.flex__allitems5 > .d= -flex, .g6.flex__allitems5 > .flex--item, .gx6.flex__allitems5 > .flex--ite= m, .gy6.flex__allitems5 > .flex--item { flex-basis: calc(41.666666666666664= % - (var(--su6) * 0.5833333333333334)); } .g6 > .flex--item6, .gx6 > .flex--item6, .gy6 > .flex--item6, .g6.flex__all= items6 > .d-flex, .gx6.flex__allitems6 > .d-flex, .gy6.flex__allitems6 > .d= -flex, .g6.flex__allitems6 > .flex--item, .gx6.flex__allitems6 > .flex--ite= m, .gy6.flex__allitems6 > .flex--item { flex-basis: calc(50% - (var(--su6) = * 0.5)); } .g6 > .flex--item7, .gx6 > .flex--item7, .gy6 > .flex--item7, .g6.flex__all= items7 > .d-flex, .gx6.flex__allitems7 > .d-flex, .gy6.flex__allitems7 > .d= -flex, .g6.flex__allitems7 > .flex--item, .gx6.flex__allitems7 > .flex--ite= m, .gy6.flex__allitems7 > .flex--item { flex-basis: calc(58.333333333333336= % - (var(--su6) * 0.4166666666666667)); } .g6 > .flex--item8, .gx6 > .flex--item8, .gy6 > .flex--item8, .g6.flex__all= items8 > .d-flex, .gx6.flex__allitems8 > .d-flex, .gy6.flex__allitems8 > .d= -flex, .g6.flex__allitems8 > .flex--item, .gx6.flex__allitems8 > .flex--ite= m, .gy6.flex__allitems8 > .flex--item { flex-basis: calc(66.66666666666667%= - (var(--su6) * 0.3333333333333333)); } .g6 > .flex--item9, .gx6 > .flex--item9, .gy6 > .flex--item9, .g6.flex__all= items9 > .d-flex, .gx6.flex__allitems9 > .d-flex, .gy6.flex__allitems9 > .d= -flex, .g6.flex__allitems9 > .flex--item, .gx6.flex__allitems9 > .flex--ite= m, .gy6.flex__allitems9 > .flex--item { flex-basis: calc(75% - (var(--su6) = * 0.25)); } .g6 > .flex--item10, .gx6 > .flex--item10, .gy6 > .flex--item10, .g6.flex__= allitems10 > .d-flex, .gx6.flex__allitems10 > .d-flex, .gy6.flex__allitems1= 0 > .d-flex, .g6.flex__allitems10 > .flex--item, .gx6.flex__allitems10 > .f= lex--item, .gy6.flex__allitems10 > .flex--item { flex-basis: calc(83.333333= 33333333% - (var(--su6) * 0.16666666666666666)); } .g6 > .flex--item11, .gx6 > .flex--item11, .gy6 > .flex--item11, .g6.flex__= allitems11 > .d-flex, .gx6.flex__allitems11 > .d-flex, .gy6.flex__allitems1= 1 > .d-flex, .g6.flex__allitems11 > .flex--item, .gx6.flex__allitems11 > .f= lex--item, .gy6.flex__allitems11 > .flex--item { flex-basis: calc(91.666666= 66666667% - (var(--su6) * 0.08333333333333333)); } .g6 > .flex--item12, .gx6 > .flex--item12, .gy6 > .flex--item12, .g6.flex__= allitems12 > .d-flex, .gx6.flex__allitems12 > .d-flex, .gy6.flex__allitems1= 2 > .d-flex, .g6.flex__allitems12 > .flex--item, .gx6.flex__allitems12 > .f= lex--item, .gy6.flex__allitems12 > .flex--item { flex-basis: calc(100% - (v= ar(--su6) * 0)); } .g8 > .flex--item1, .gx8 > .flex--item1, .gy8 > .flex--item1, .g8.flex__all= items1 > .d-flex, .gx8.flex__allitems1 > .d-flex, .gy8.flex__allitems1 > .d= -flex, .g8.flex__allitems1 > .flex--item, .gx8.flex__allitems1 > .flex--ite= m, .gy8.flex__allitems1 > .flex--item { flex-basis: calc(8.333333333333334%= - (var(--su8) * 0.9166666666666666)); } .g8 > .flex--item2, .gx8 > .flex--item2, .gy8 > .flex--item2, .g8.flex__all= items2 > .d-flex, .gx8.flex__allitems2 > .d-flex, .gy8.flex__allitems2 > .d= -flex, .g8.flex__allitems2 > .flex--item, .gx8.flex__allitems2 > .flex--ite= m, .gy8.flex__allitems2 > .flex--item { flex-basis: calc(16.666666666666668= % - (var(--su8) * 0.8333333333333334)); } .g8 > .flex--item3, .gx8 > .flex--item3, .gy8 > .flex--item3, .g8.flex__all= items3 > .d-flex, .gx8.flex__allitems3 > .d-flex, .gy8.flex__allitems3 > .d= -flex, .g8.flex__allitems3 > .flex--item, .gx8.flex__allitems3 > .flex--ite= m, .gy8.flex__allitems3 > .flex--item { flex-basis: calc(25% - (var(--su8) = * 0.75)); } .g8 > .flex--item4, .gx8 > .flex--item4, .gy8 > .flex--item4, .g8.flex__all= items4 > .d-flex, .gx8.flex__allitems4 > .d-flex, .gy8.flex__allitems4 > .d= -flex, .g8.flex__allitems4 > .flex--item, .gx8.flex__allitems4 > .flex--ite= m, .gy8.flex__allitems4 > .flex--item { flex-basis: calc(33.333333333333336= % - (var(--su8) * 0.6666666666666666)); } .g8 > .flex--item5, .gx8 > .flex--item5, .gy8 > .flex--item5, .g8.flex__all= items5 > .d-flex, .gx8.flex__allitems5 > .d-flex, .gy8.flex__allitems5 > .d= -flex, .g8.flex__allitems5 > .flex--item, .gx8.flex__allitems5 > .flex--ite= m, .gy8.flex__allitems5 > .flex--item { flex-basis: calc(41.666666666666664= % - (var(--su8) * 0.5833333333333334)); } .g8 > .flex--item6, .gx8 > .flex--item6, .gy8 > .flex--item6, .g8.flex__all= items6 > .d-flex, .gx8.flex__allitems6 > .d-flex, .gy8.flex__allitems6 > .d= -flex, .g8.flex__allitems6 > .flex--item, .gx8.flex__allitems6 > .flex--ite= m, .gy8.flex__allitems6 > .flex--item { flex-basis: calc(50% - (var(--su8) = * 0.5)); } .g8 > .flex--item7, .gx8 > .flex--item7, .gy8 > .flex--item7, .g8.flex__all= items7 > .d-flex, .gx8.flex__allitems7 > .d-flex, .gy8.flex__allitems7 > .d= -flex, .g8.flex__allitems7 > .flex--item, .gx8.flex__allitems7 > .flex--ite= m, .gy8.flex__allitems7 > .flex--item { flex-basis: calc(58.333333333333336= % - (var(--su8) * 0.4166666666666667)); } .g8 > .flex--item8, .gx8 > .flex--item8, .gy8 > .flex--item8, .g8.flex__all= items8 > .d-flex, .gx8.flex__allitems8 > .d-flex, .gy8.flex__allitems8 > .d= -flex, .g8.flex__allitems8 > .flex--item, .gx8.flex__allitems8 > .flex--ite= m, .gy8.flex__allitems8 > .flex--item { flex-basis: calc(66.66666666666667%= - (var(--su8) * 0.3333333333333333)); } .g8 > .flex--item9, .gx8 > .flex--item9, .gy8 > .flex--item9, .g8.flex__all= items9 > .d-flex, .gx8.flex__allitems9 > .d-flex, .gy8.flex__allitems9 > .d= -flex, .g8.flex__allitems9 > .flex--item, .gx8.flex__allitems9 > .flex--ite= m, .gy8.flex__allitems9 > .flex--item { flex-basis: calc(75% - (var(--su8) = * 0.25)); } .g8 > .flex--item10, .gx8 > .flex--item10, .gy8 > .flex--item10, .g8.flex__= allitems10 > .d-flex, .gx8.flex__allitems10 > .d-flex, .gy8.flex__allitems1= 0 > .d-flex, .g8.flex__allitems10 > .flex--item, .gx8.flex__allitems10 > .f= lex--item, .gy8.flex__allitems10 > .flex--item { flex-basis: calc(83.333333= 33333333% - (var(--su8) * 0.16666666666666666)); } .g8 > .flex--item11, .gx8 > .flex--item11, .gy8 > .flex--item11, .g8.flex__= allitems11 > .d-flex, .gx8.flex__allitems11 > .d-flex, .gy8.flex__allitems1= 1 > .d-flex, .g8.flex__allitems11 > .flex--item, .gx8.flex__allitems11 > .f= lex--item, .gy8.flex__allitems11 > .flex--item { flex-basis: calc(91.666666= 66666667% - (var(--su8) * 0.08333333333333333)); } .g8 > .flex--item12, .gx8 > .flex--item12, .gy8 > .flex--item12, .g8.flex__= allitems12 > .d-flex, .gx8.flex__allitems12 > .d-flex, .gy8.flex__allitems1= 2 > .d-flex, .g8.flex__allitems12 > .flex--item, .gx8.flex__allitems12 > .f= lex--item, .gy8.flex__allitems12 > .flex--item { flex-basis: calc(100% - (v= ar(--su8) * 0)); } .g12 > .flex--item1, .gx12 > .flex--item1, .gy12 > .flex--item1, .g12.flex_= _allitems1 > .d-flex, .gx12.flex__allitems1 > .d-flex, .gy12.flex__allitems= 1 > .d-flex, .g12.flex__allitems1 > .flex--item, .gx12.flex__allitems1 > .f= lex--item, .gy12.flex__allitems1 > .flex--item { flex-basis: calc(8.3333333= 33333334% - (var(--su12) * 0.9166666666666666)); } .g12 > .flex--item2, .gx12 > .flex--item2, .gy12 > .flex--item2, .g12.flex_= _allitems2 > .d-flex, .gx12.flex__allitems2 > .d-flex, .gy12.flex__allitems= 2 > .d-flex, .g12.flex__allitems2 > .flex--item, .gx12.flex__allitems2 > .f= lex--item, .gy12.flex__allitems2 > .flex--item { flex-basis: calc(16.666666= 666666668% - (var(--su12) * 0.8333333333333334)); } .g12 > .flex--item3, .gx12 > .flex--item3, .gy12 > .flex--item3, .g12.flex_= _allitems3 > .d-flex, .gx12.flex__allitems3 > .d-flex, .gy12.flex__allitems= 3 > .d-flex, .g12.flex__allitems3 > .flex--item, .gx12.flex__allitems3 > .f= lex--item, .gy12.flex__allitems3 > .flex--item { flex-basis: calc(25% - (va= r(--su12) * 0.75)); } .g12 > .flex--item4, .gx12 > .flex--item4, .gy12 > .flex--item4, .g12.flex_= _allitems4 > .d-flex, .gx12.flex__allitems4 > .d-flex, .gy12.flex__allitems= 4 > .d-flex, .g12.flex__allitems4 > .flex--item, .gx12.flex__allitems4 > .f= lex--item, .gy12.flex__allitems4 > .flex--item { flex-basis: calc(33.333333= 333333336% - (var(--su12) * 0.6666666666666666)); } .g12 > .flex--item5, .gx12 > .flex--item5, .gy12 > .flex--item5, .g12.flex_= _allitems5 > .d-flex, .gx12.flex__allitems5 > .d-flex, .gy12.flex__allitems= 5 > .d-flex, .g12.flex__allitems5 > .flex--item, .gx12.flex__allitems5 > .f= lex--item, .gy12.flex__allitems5 > .flex--item { flex-basis: calc(41.666666= 666666664% - (var(--su12) * 0.5833333333333334)); } .g12 > .flex--item6, .gx12 > .flex--item6, .gy12 > .flex--item6, .g12.flex_= _allitems6 > .d-flex, .gx12.flex__allitems6 > .d-flex, .gy12.flex__allitems= 6 > .d-flex, .g12.flex__allitems6 > .flex--item, .gx12.flex__allitems6 > .f= lex--item, .gy12.flex__allitems6 > .flex--item { flex-basis: calc(50% - (va= r(--su12) * 0.5)); } .g12 > .flex--item7, .gx12 > .flex--item7, .gy12 > .flex--item7, .g12.flex_= _allitems7 > .d-flex, .gx12.flex__allitems7 > .d-flex, .gy12.flex__allitems= 7 > .d-flex, .g12.flex__allitems7 > .flex--item, .gx12.flex__allitems7 > .f= lex--item, .gy12.flex__allitems7 > .flex--item { flex-basis: calc(58.333333= 333333336% - (var(--su12) * 0.4166666666666667)); } .g12 > .flex--item8, .gx12 > .flex--item8, .gy12 > .flex--item8, .g12.flex_= _allitems8 > .d-flex, .gx12.flex__allitems8 > .d-flex, .gy12.flex__allitems= 8 > .d-flex, .g12.flex__allitems8 > .flex--item, .gx12.flex__allitems8 > .f= lex--item, .gy12.flex__allitems8 > .flex--item { flex-basis: calc(66.666666= 66666667% - (var(--su12) * 0.3333333333333333)); } .g12 > .flex--item9, .gx12 > .flex--item9, .gy12 > .flex--item9, .g12.flex_= _allitems9 > .d-flex, .gx12.flex__allitems9 > .d-flex, .gy12.flex__allitems= 9 > .d-flex, .g12.flex__allitems9 > .flex--item, .gx12.flex__allitems9 > .f= lex--item, .gy12.flex__allitems9 > .flex--item { flex-basis: calc(75% - (va= r(--su12) * 0.25)); } .g12 > .flex--item10, .gx12 > .flex--item10, .gy12 > .flex--item10, .g12.fl= ex__allitems10 > .d-flex, .gx12.flex__allitems10 > .d-flex, .gy12.flex__all= items10 > .d-flex, .g12.flex__allitems10 > .flex--item, .gx12.flex__allitem= s10 > .flex--item, .gy12.flex__allitems10 > .flex--item { flex-basis: calc(= 83.33333333333333% - (var(--su12) * 0.16666666666666666)); } .g12 > .flex--item11, .gx12 > .flex--item11, .gy12 > .flex--item11, .g12.fl= ex__allitems11 > .d-flex, .gx12.flex__allitems11 > .d-flex, .gy12.flex__all= items11 > .d-flex, .g12.flex__allitems11 > .flex--item, .gx12.flex__allitem= s11 > .flex--item, .gy12.flex__allitems11 > .flex--item { flex-basis: calc(= 91.66666666666667% - (var(--su12) * 0.08333333333333333)); } .g12 > .flex--item12, .gx12 > .flex--item12, .gy12 > .flex--item12, .g12.fl= ex__allitems12 > .d-flex, .gx12.flex__allitems12 > .d-flex, .gy12.flex__all= items12 > .d-flex, .g12.flex__allitems12 > .flex--item, .gx12.flex__allitem= s12 > .flex--item, .gy12.flex__allitems12 > .flex--item { flex-basis: calc(= 100% - (var(--su12) * 0)); } .g16 > .flex--item1, .gx16 > .flex--item1, .gy16 > .flex--item1, .g16.flex_= _allitems1 > .d-flex, .gx16.flex__allitems1 > .d-flex, .gy16.flex__allitems= 1 > .d-flex, .g16.flex__allitems1 > .flex--item, .gx16.flex__allitems1 > .f= lex--item, .gy16.flex__allitems1 > .flex--item { flex-basis: calc(8.3333333= 33333334% - (var(--su16) * 0.9166666666666666)); } .g16 > .flex--item2, .gx16 > .flex--item2, .gy16 > .flex--item2, .g16.flex_= _allitems2 > .d-flex, .gx16.flex__allitems2 > .d-flex, .gy16.flex__allitems= 2 > .d-flex, .g16.flex__allitems2 > .flex--item, .gx16.flex__allitems2 > .f= lex--item, .gy16.flex__allitems2 > .flex--item { flex-basis: calc(16.666666= 666666668% - (var(--su16) * 0.8333333333333334)); } .g16 > .flex--item3, .gx16 > .flex--item3, .gy16 > .flex--item3, .g16.flex_= _allitems3 > .d-flex, .gx16.flex__allitems3 > .d-flex, .gy16.flex__allitems= 3 > .d-flex, .g16.flex__allitems3 > .flex--item, .gx16.flex__allitems3 > .f= lex--item, .gy16.flex__allitems3 > .flex--item { flex-basis: calc(25% - (va= r(--su16) * 0.75)); } .g16 > .flex--item4, .gx16 > .flex--item4, .gy16 > .flex--item4, .g16.flex_= _allitems4 > .d-flex, .gx16.flex__allitems4 > .d-flex, .gy16.flex__allitems= 4 > .d-flex, .g16.flex__allitems4 > .flex--item, .gx16.flex__allitems4 > .f= lex--item, .gy16.flex__allitems4 > .flex--item { flex-basis: calc(33.333333= 333333336% - (var(--su16) * 0.6666666666666666)); } .g16 > .flex--item5, .gx16 > .flex--item5, .gy16 > .flex--item5, .g16.flex_= _allitems5 > .d-flex, .gx16.flex__allitems5 > .d-flex, .gy16.flex__allitems= 5 > .d-flex, .g16.flex__allitems5 > .flex--item, .gx16.flex__allitems5 > .f= lex--item, .gy16.flex__allitems5 > .flex--item { flex-basis: calc(41.666666= 666666664% - (var(--su16) * 0.5833333333333334)); } .g16 > .flex--item6, .gx16 > .flex--item6, .gy16 > .flex--item6, .g16.flex_= _allitems6 > .d-flex, .gx16.flex__allitems6 > .d-flex, .gy16.flex__allitems= 6 > .d-flex, .g16.flex__allitems6 > .flex--item, .gx16.flex__allitems6 > .f= lex--item, .gy16.flex__allitems6 > .flex--item { flex-basis: calc(50% - (va= r(--su16) * 0.5)); } .g16 > .flex--item7, .gx16 > .flex--item7, .gy16 > .flex--item7, .g16.flex_= _allitems7 > .d-flex, .gx16.flex__allitems7 > .d-flex, .gy16.flex__allitems= 7 > .d-flex, .g16.flex__allitems7 > .flex--item, .gx16.flex__allitems7 > .f= lex--item, .gy16.flex__allitems7 > .flex--item { flex-basis: calc(58.333333= 333333336% - (var(--su16) * 0.4166666666666667)); } .g16 > .flex--item8, .gx16 > .flex--item8, .gy16 > .flex--item8, .g16.flex_= _allitems8 > .d-flex, .gx16.flex__allitems8 > .d-flex, .gy16.flex__allitems= 8 > .d-flex, .g16.flex__allitems8 > .flex--item, .gx16.flex__allitems8 > .f= lex--item, .gy16.flex__allitems8 > .flex--item { flex-basis: calc(66.666666= 66666667% - (var(--su16) * 0.3333333333333333)); } .g16 > .flex--item9, .gx16 > .flex--item9, .gy16 > .flex--item9, .g16.flex_= _allitems9 > .d-flex, .gx16.flex__allitems9 > .d-flex, .gy16.flex__allitems= 9 > .d-flex, .g16.flex__allitems9 > .flex--item, .gx16.flex__allitems9 > .f= lex--item, .gy16.flex__allitems9 > .flex--item { flex-basis: calc(75% - (va= r(--su16) * 0.25)); } .g16 > .flex--item10, .gx16 > .flex--item10, .gy16 > .flex--item10, .g16.fl= ex__allitems10 > .d-flex, .gx16.flex__allitems10 > .d-flex, .gy16.flex__all= items10 > .d-flex, .g16.flex__allitems10 > .flex--item, .gx16.flex__allitem= s10 > .flex--item, .gy16.flex__allitems10 > .flex--item { flex-basis: calc(= 83.33333333333333% - (var(--su16) * 0.16666666666666666)); } .g16 > .flex--item11, .gx16 > .flex--item11, .gy16 > .flex--item11, .g16.fl= ex__allitems11 > .d-flex, .gx16.flex__allitems11 > .d-flex, .gy16.flex__all= items11 > .d-flex, .g16.flex__allitems11 > .flex--item, .gx16.flex__allitem= s11 > .flex--item, .gy16.flex__allitems11 > .flex--item { flex-basis: calc(= 91.66666666666667% - (var(--su16) * 0.08333333333333333)); } .g16 > .flex--item12, .gx16 > .flex--item12, .gy16 > .flex--item12, .g16.fl= ex__allitems12 > .d-flex, .gx16.flex__allitems12 > .d-flex, .gy16.flex__all= items12 > .d-flex, .g16.flex__allitems12 > .flex--item, .gx16.flex__allitem= s12 > .flex--item, .gy16.flex__allitems12 > .flex--item { flex-basis: calc(= 100% - (var(--su16) * 0)); } .g24 > .flex--item1, .gx24 > .flex--item1, .gy24 > .flex--item1, .g24.flex_= _allitems1 > .d-flex, .gx24.flex__allitems1 > .d-flex, .gy24.flex__allitems= 1 > .d-flex, .g24.flex__allitems1 > .flex--item, .gx24.flex__allitems1 > .f= lex--item, .gy24.flex__allitems1 > .flex--item { flex-basis: calc(8.3333333= 33333334% - (var(--su24) * 0.9166666666666666)); } .g24 > .flex--item2, .gx24 > .flex--item2, .gy24 > .flex--item2, .g24.flex_= _allitems2 > .d-flex, .gx24.flex__allitems2 > .d-flex, .gy24.flex__allitems= 2 > .d-flex, .g24.flex__allitems2 > .flex--item, .gx24.flex__allitems2 > .f= lex--item, .gy24.flex__allitems2 > .flex--item { flex-basis: calc(16.666666= 666666668% - (var(--su24) * 0.8333333333333334)); } .g24 > .flex--item3, .gx24 > .flex--item3, .gy24 > .flex--item3, .g24.flex_= _allitems3 > .d-flex, .gx24.flex__allitems3 > .d-flex, .gy24.flex__allitems= 3 > .d-flex, .g24.flex__allitems3 > .flex--item, .gx24.flex__allitems3 > .f= lex--item, .gy24.flex__allitems3 > .flex--item { flex-basis: calc(25% - (va= r(--su24) * 0.75)); } .g24 > .flex--item4, .gx24 > .flex--item4, .gy24 > .flex--item4, .g24.flex_= _allitems4 > .d-flex, .gx24.flex__allitems4 > .d-flex, .gy24.flex__allitems= 4 > .d-flex, .g24.flex__allitems4 > .flex--item, .gx24.flex__allitems4 > .f= lex--item, .gy24.flex__allitems4 > .flex--item { flex-basis: calc(33.333333= 333333336% - (var(--su24) * 0.6666666666666666)); } .g24 > .flex--item5, .gx24 > .flex--item5, .gy24 > .flex--item5, .g24.flex_= _allitems5 > .d-flex, .gx24.flex__allitems5 > .d-flex, .gy24.flex__allitems= 5 > .d-flex, .g24.flex__allitems5 > .flex--item, .gx24.flex__allitems5 > .f= lex--item, .gy24.flex__allitems5 > .flex--item { flex-basis: calc(41.666666= 666666664% - (var(--su24) * 0.5833333333333334)); } .g24 > .flex--item6, .gx24 > .flex--item6, .gy24 > .flex--item6, .g24.flex_= _allitems6 > .d-flex, .gx24.flex__allitems6 > .d-flex, .gy24.flex__allitems= 6 > .d-flex, .g24.flex__allitems6 > .flex--item, .gx24.flex__allitems6 > .f= lex--item, .gy24.flex__allitems6 > .flex--item { flex-basis: calc(50% - (va= r(--su24) * 0.5)); } .g24 > .flex--item7, .gx24 > .flex--item7, .gy24 > .flex--item7, .g24.flex_= _allitems7 > .d-flex, .gx24.flex__allitems7 > .d-flex, .gy24.flex__allitems= 7 > .d-flex, .g24.flex__allitems7 > .flex--item, .gx24.flex__allitems7 > .f= lex--item, .gy24.flex__allitems7 > .flex--item { flex-basis: calc(58.333333= 333333336% - (var(--su24) * 0.4166666666666667)); } .g24 > .flex--item8, .gx24 > .flex--item8, .gy24 > .flex--item8, .g24.flex_= _allitems8 > .d-flex, .gx24.flex__allitems8 > .d-flex, .gy24.flex__allitems= 8 > .d-flex, .g24.flex__allitems8 > .flex--item, .gx24.flex__allitems8 > .f= lex--item, .gy24.flex__allitems8 > .flex--item { flex-basis: calc(66.666666= 66666667% - (var(--su24) * 0.3333333333333333)); } .g24 > .flex--item9, .gx24 > .flex--item9, .gy24 > .flex--item9, .g24.flex_= _allitems9 > .d-flex, .gx24.flex__allitems9 > .d-flex, .gy24.flex__allitems= 9 > .d-flex, .g24.flex__allitems9 > .flex--item, .gx24.flex__allitems9 > .f= lex--item, .gy24.flex__allitems9 > .flex--item { flex-basis: calc(75% - (va= r(--su24) * 0.25)); } .g24 > .flex--item10, .gx24 > .flex--item10, .gy24 > .flex--item10, .g24.fl= ex__allitems10 > .d-flex, .gx24.flex__allitems10 > .d-flex, .gy24.flex__all= items10 > .d-flex, .g24.flex__allitems10 > .flex--item, .gx24.flex__allitem= s10 > .flex--item, .gy24.flex__allitems10 > .flex--item { flex-basis: calc(= 83.33333333333333% - (var(--su24) * 0.16666666666666666)); } .g24 > .flex--item11, .gx24 > .flex--item11, .gy24 > .flex--item11, .g24.fl= ex__allitems11 > .d-flex, .gx24.flex__allitems11 > .d-flex, .gy24.flex__all= items11 > .d-flex, .g24.flex__allitems11 > .flex--item, .gx24.flex__allitem= s11 > .flex--item, .gy24.flex__allitems11 > .flex--item { flex-basis: calc(= 91.66666666666667% - (var(--su24) * 0.08333333333333333)); } .g24 > .flex--item12, .gx24 > .flex--item12, .gy24 > .flex--item12, .g24.fl= ex__allitems12 > .d-flex, .gx24.flex__allitems12 > .d-flex, .gy24.flex__all= items12 > .d-flex, .g24.flex__allitems12 > .flex--item, .gx24.flex__allitem= s12 > .flex--item, .gy24.flex__allitems12 > .flex--item { flex-basis: calc(= 100% - (var(--su24) * 0)); } .g32 > .flex--item1, .gx32 > .flex--item1, .gy32 > .flex--item1, .g32.flex_= _allitems1 > .d-flex, .gx32.flex__allitems1 > .d-flex, .gy32.flex__allitems= 1 > .d-flex, .g32.flex__allitems1 > .flex--item, .gx32.flex__allitems1 > .f= lex--item, .gy32.flex__allitems1 > .flex--item { flex-basis: calc(8.3333333= 33333334% - (var(--su32) * 0.9166666666666666)); } .g32 > .flex--item2, .gx32 > .flex--item2, .gy32 > .flex--item2, .g32.flex_= _allitems2 > .d-flex, .gx32.flex__allitems2 > .d-flex, .gy32.flex__allitems= 2 > .d-flex, .g32.flex__allitems2 > .flex--item, .gx32.flex__allitems2 > .f= lex--item, .gy32.flex__allitems2 > .flex--item { flex-basis: calc(16.666666= 666666668% - (var(--su32) * 0.8333333333333334)); } .g32 > .flex--item3, .gx32 > .flex--item3, .gy32 > .flex--item3, .g32.flex_= _allitems3 > .d-flex, .gx32.flex__allitems3 > .d-flex, .gy32.flex__allitems= 3 > .d-flex, .g32.flex__allitems3 > .flex--item, .gx32.flex__allitems3 > .f= lex--item, .gy32.flex__allitems3 > .flex--item { flex-basis: calc(25% - (va= r(--su32) * 0.75)); } .g32 > .flex--item4, .gx32 > .flex--item4, .gy32 > .flex--item4, .g32.flex_= _allitems4 > .d-flex, .gx32.flex__allitems4 > .d-flex, .gy32.flex__allitems= 4 > .d-flex, .g32.flex__allitems4 > .flex--item, .gx32.flex__allitems4 > .f= lex--item, .gy32.flex__allitems4 > .flex--item { flex-basis: calc(33.333333= 333333336% - (var(--su32) * 0.6666666666666666)); } .g32 > .flex--item5, .gx32 > .flex--item5, .gy32 > .flex--item5, .g32.flex_= _allitems5 > .d-flex, .gx32.flex__allitems5 > .d-flex, .gy32.flex__allitems= 5 > .d-flex, .g32.flex__allitems5 > .flex--item, .gx32.flex__allitems5 > .f= lex--item, .gy32.flex__allitems5 > .flex--item { flex-basis: calc(41.666666= 666666664% - (var(--su32) * 0.5833333333333334)); } .g32 > .flex--item6, .gx32 > .flex--item6, .gy32 > .flex--item6, .g32.flex_= _allitems6 > .d-flex, .gx32.flex__allitems6 > .d-flex, .gy32.flex__allitems= 6 > .d-flex, .g32.flex__allitems6 > .flex--item, .gx32.flex__allitems6 > .f= lex--item, .gy32.flex__allitems6 > .flex--item { flex-basis: calc(50% - (va= r(--su32) * 0.5)); } .g32 > .flex--item7, .gx32 > .flex--item7, .gy32 > .flex--item7, .g32.flex_= _allitems7 > .d-flex, .gx32.flex__allitems7 > .d-flex, .gy32.flex__allitems= 7 > .d-flex, .g32.flex__allitems7 > .flex--item, .gx32.flex__allitems7 > .f= lex--item, .gy32.flex__allitems7 > .flex--item { flex-basis: calc(58.333333= 333333336% - (var(--su32) * 0.4166666666666667)); } .g32 > .flex--item8, .gx32 > .flex--item8, .gy32 > .flex--item8, .g32.flex_= _allitems8 > .d-flex, .gx32.flex__allitems8 > .d-flex, .gy32.flex__allitems= 8 > .d-flex, .g32.flex__allitems8 > .flex--item, .gx32.flex__allitems8 > .f= lex--item, .gy32.flex__allitems8 > .flex--item { flex-basis: calc(66.666666= 66666667% - (var(--su32) * 0.3333333333333333)); } .g32 > .flex--item9, .gx32 > .flex--item9, .gy32 > .flex--item9, .g32.flex_= _allitems9 > .d-flex, .gx32.flex__allitems9 > .d-flex, .gy32.flex__allitems= 9 > .d-flex, .g32.flex__allitems9 > .flex--item, .gx32.flex__allitems9 > .f= lex--item, .gy32.flex__allitems9 > .flex--item { flex-basis: calc(75% - (va= r(--su32) * 0.25)); } .g32 > .flex--item10, .gx32 > .flex--item10, .gy32 > .flex--item10, .g32.fl= ex__allitems10 > .d-flex, .gx32.flex__allitems10 > .d-flex, .gy32.flex__all= items10 > .d-flex, .g32.flex__allitems10 > .flex--item, .gx32.flex__allitem= s10 > .flex--item, .gy32.flex__allitems10 > .flex--item { flex-basis: calc(= 83.33333333333333% - (var(--su32) * 0.16666666666666666)); } .g32 > .flex--item11, .gx32 > .flex--item11, .gy32 > .flex--item11, .g32.fl= ex__allitems11 > .d-flex, .gx32.flex__allitems11 > .d-flex, .gy32.flex__all= items11 > .d-flex, .g32.flex__allitems11 > .flex--item, .gx32.flex__allitem= s11 > .flex--item, .gy32.flex__allitems11 > .flex--item { flex-basis: calc(= 91.66666666666667% - (var(--su32) * 0.08333333333333333)); } .g32 > .flex--item12, .gx32 > .flex--item12, .gy32 > .flex--item12, .g32.fl= ex__allitems12 > .d-flex, .gx32.flex__allitems12 > .d-flex, .gy32.flex__all= items12 > .d-flex, .g32.flex__allitems12 > .flex--item, .gx32.flex__allitem= s12 > .flex--item, .gy32.flex__allitems12 > .flex--item { flex-basis: calc(= 100% - (var(--su32) * 0)); } .g48 > .flex--item1, .gx48 > .flex--item1, .gy48 > .flex--item1, .g48.flex_= _allitems1 > .d-flex, .gx48.flex__allitems1 > .d-flex, .gy48.flex__allitems= 1 > .d-flex, .g48.flex__allitems1 > .flex--item, .gx48.flex__allitems1 > .f= lex--item, .gy48.flex__allitems1 > .flex--item { flex-basis: calc(8.3333333= 33333334% - (var(--su48) * 0.9166666666666666)); } .g48 > .flex--item2, .gx48 > .flex--item2, .gy48 > .flex--item2, .g48.flex_= _allitems2 > .d-flex, .gx48.flex__allitems2 > .d-flex, .gy48.flex__allitems= 2 > .d-flex, .g48.flex__allitems2 > .flex--item, .gx48.flex__allitems2 > .f= lex--item, .gy48.flex__allitems2 > .flex--item { flex-basis: calc(16.666666= 666666668% - (var(--su48) * 0.8333333333333334)); } .g48 > .flex--item3, .gx48 > .flex--item3, .gy48 > .flex--item3, .g48.flex_= _allitems3 > .d-flex, .gx48.flex__allitems3 > .d-flex, .gy48.flex__allitems= 3 > .d-flex, .g48.flex__allitems3 > .flex--item, .gx48.flex__allitems3 > .f= lex--item, .gy48.flex__allitems3 > .flex--item { flex-basis: calc(25% - (va= r(--su48) * 0.75)); } .g48 > .flex--item4, .gx48 > .flex--item4, .gy48 > .flex--item4, .g48.flex_= _allitems4 > .d-flex, .gx48.flex__allitems4 > .d-flex, .gy48.flex__allitems= 4 > .d-flex, .g48.flex__allitems4 > .flex--item, .gx48.flex__allitems4 > .f= lex--item, .gy48.flex__allitems4 > .flex--item { flex-basis: calc(33.333333= 333333336% - (var(--su48) * 0.6666666666666666)); } .g48 > .flex--item5, .gx48 > .flex--item5, .gy48 > .flex--item5, .g48.flex_= _allitems5 > .d-flex, .gx48.flex__allitems5 > .d-flex, .gy48.flex__allitems= 5 > .d-flex, .g48.flex__allitems5 > .flex--item, .gx48.flex__allitems5 > .f= lex--item, .gy48.flex__allitems5 > .flex--item { flex-basis: calc(41.666666= 666666664% - (var(--su48) * 0.5833333333333334)); } .g48 > .flex--item6, .gx48 > .flex--item6, .gy48 > .flex--item6, .g48.flex_= _allitems6 > .d-flex, .gx48.flex__allitems6 > .d-flex, .gy48.flex__allitems= 6 > .d-flex, .g48.flex__allitems6 > .flex--item, .gx48.flex__allitems6 > .f= lex--item, .gy48.flex__allitems6 > .flex--item { flex-basis: calc(50% - (va= r(--su48) * 0.5)); } .g48 > .flex--item7, .gx48 > .flex--item7, .gy48 > .flex--item7, .g48.flex_= _allitems7 > .d-flex, .gx48.flex__allitems7 > .d-flex, .gy48.flex__allitems= 7 > .d-flex, .g48.flex__allitems7 > .flex--item, .gx48.flex__allitems7 > .f= lex--item, .gy48.flex__allitems7 > .flex--item { flex-basis: calc(58.333333= 333333336% - (var(--su48) * 0.4166666666666667)); } .g48 > .flex--item8, .gx48 > .flex--item8, .gy48 > .flex--item8, .g48.flex_= _allitems8 > .d-flex, .gx48.flex__allitems8 > .d-flex, .gy48.flex__allitems= 8 > .d-flex, .g48.flex__allitems8 > .flex--item, .gx48.flex__allitems8 > .f= lex--item, .gy48.flex__allitems8 > .flex--item { flex-basis: calc(66.666666= 66666667% - (var(--su48) * 0.3333333333333333)); } .g48 > .flex--item9, .gx48 > .flex--item9, .gy48 > .flex--item9, .g48.flex_= _allitems9 > .d-flex, .gx48.flex__allitems9 > .d-flex, .gy48.flex__allitems= 9 > .d-flex, .g48.flex__allitems9 > .flex--item, .gx48.flex__allitems9 > .f= lex--item, .gy48.flex__allitems9 > .flex--item { flex-basis: calc(75% - (va= r(--su48) * 0.25)); } .g48 > .flex--item10, .gx48 > .flex--item10, .gy48 > .flex--item10, .g48.fl= ex__allitems10 > .d-flex, .gx48.flex__allitems10 > .d-flex, .gy48.flex__all= items10 > .d-flex, .g48.flex__allitems10 > .flex--item, .gx48.flex__allitem= s10 > .flex--item, .gy48.flex__allitems10 > .flex--item { flex-basis: calc(= 83.33333333333333% - (var(--su48) * 0.16666666666666666)); } .g48 > .flex--item11, .gx48 > .flex--item11, .gy48 > .flex--item11, .g48.fl= ex__allitems11 > .d-flex, .gx48.flex__allitems11 > .d-flex, .gy48.flex__all= items11 > .d-flex, .g48.flex__allitems11 > .flex--item, .gx48.flex__allitem= s11 > .flex--item, .gy48.flex__allitems11 > .flex--item { flex-basis: calc(= 91.66666666666667% - (var(--su48) * 0.08333333333333333)); } .g48 > .flex--item12, .gx48 > .flex--item12, .gy48 > .flex--item12, .g48.fl= ex__allitems12 > .d-flex, .gx48.flex__allitems12 > .d-flex, .gy48.flex__all= items12 > .d-flex, .g48.flex__allitems12 > .flex--item, .gx48.flex__allitem= s12 > .flex--item, .gy48.flex__allitems12 > .flex--item { flex-basis: calc(= 100% - (var(--su48) * 0)); } .g64 > .flex--item1, .gx64 > .flex--item1, .gy64 > .flex--item1, .g64.flex_= _allitems1 > .d-flex, .gx64.flex__allitems1 > .d-flex, .gy64.flex__allitems= 1 > .d-flex, .g64.flex__allitems1 > .flex--item, .gx64.flex__allitems1 > .f= lex--item, .gy64.flex__allitems1 > .flex--item { flex-basis: calc(8.3333333= 33333334% - (var(--su64) * 0.9166666666666666)); } .g64 > .flex--item2, .gx64 > .flex--item2, .gy64 > .flex--item2, .g64.flex_= _allitems2 > .d-flex, .gx64.flex__allitems2 > .d-flex, .gy64.flex__allitems= 2 > .d-flex, .g64.flex__allitems2 > .flex--item, .gx64.flex__allitems2 > .f= lex--item, .gy64.flex__allitems2 > .flex--item { flex-basis: calc(16.666666= 666666668% - (var(--su64) * 0.8333333333333334)); } .g64 > .flex--item3, .gx64 > .flex--item3, .gy64 > .flex--item3, .g64.flex_= _allitems3 > .d-flex, .gx64.flex__allitems3 > .d-flex, .gy64.flex__allitems= 3 > .d-flex, .g64.flex__allitems3 > .flex--item, .gx64.flex__allitems3 > .f= lex--item, .gy64.flex__allitems3 > .flex--item { flex-basis: calc(25% - (va= r(--su64) * 0.75)); } .g64 > .flex--item4, .gx64 > .flex--item4, .gy64 > .flex--item4, .g64.flex_= _allitems4 > .d-flex, .gx64.flex__allitems4 > .d-flex, .gy64.flex__allitems= 4 > .d-flex, .g64.flex__allitems4 > .flex--item, .gx64.flex__allitems4 > .f= lex--item, .gy64.flex__allitems4 > .flex--item { flex-basis: calc(33.333333= 333333336% - (var(--su64) * 0.6666666666666666)); } .g64 > .flex--item5, .gx64 > .flex--item5, .gy64 > .flex--item5, .g64.flex_= _allitems5 > .d-flex, .gx64.flex__allitems5 > .d-flex, .gy64.flex__allitems= 5 > .d-flex, .g64.flex__allitems5 > .flex--item, .gx64.flex__allitems5 > .f= lex--item, .gy64.flex__allitems5 > .flex--item { flex-basis: calc(41.666666= 666666664% - (var(--su64) * 0.5833333333333334)); } .g64 > .flex--item6, .gx64 > .flex--item6, .gy64 > .flex--item6, .g64.flex_= _allitems6 > .d-flex, .gx64.flex__allitems6 > .d-flex, .gy64.flex__allitems= 6 > .d-flex, .g64.flex__allitems6 > .flex--item, .gx64.flex__allitems6 > .f= lex--item, .gy64.flex__allitems6 > .flex--item { flex-basis: calc(50% - (va= r(--su64) * 0.5)); } .g64 > .flex--item7, .gx64 > .flex--item7, .gy64 > .flex--item7, .g64.flex_= _allitems7 > .d-flex, .gx64.flex__allitems7 > .d-flex, .gy64.flex__allitems= 7 > .d-flex, .g64.flex__allitems7 > .flex--item, .gx64.flex__allitems7 > .f= lex--item, .gy64.flex__allitems7 > .flex--item { flex-basis: calc(58.333333= 333333336% - (var(--su64) * 0.4166666666666667)); } .g64 > .flex--item8, .gx64 > .flex--item8, .gy64 > .flex--item8, .g64.flex_= _allitems8 > .d-flex, .gx64.flex__allitems8 > .d-flex, .gy64.flex__allitems= 8 > .d-flex, .g64.flex__allitems8 > .flex--item, .gx64.flex__allitems8 > .f= lex--item, .gy64.flex__allitems8 > .flex--item { flex-basis: calc(66.666666= 66666667% - (var(--su64) * 0.3333333333333333)); } .g64 > .flex--item9, .gx64 > .flex--item9, .gy64 > .flex--item9, .g64.flex_= _allitems9 > .d-flex, .gx64.flex__allitems9 > .d-flex, .gy64.flex__allitems= 9 > .d-flex, .g64.flex__allitems9 > .flex--item, .gx64.flex__allitems9 > .f= lex--item, .gy64.flex__allitems9 > .flex--item { flex-basis: calc(75% - (va= r(--su64) * 0.25)); } .g64 > .flex--item10, .gx64 > .flex--item10, .gy64 > .flex--item10, .g64.fl= ex__allitems10 > .d-flex, .gx64.flex__allitems10 > .d-flex, .gy64.flex__all= items10 > .d-flex, .g64.flex__allitems10 > .flex--item, .gx64.flex__allitem= s10 > .flex--item, .gy64.flex__allitems10 > .flex--item { flex-basis: calc(= 83.33333333333333% - (var(--su64) * 0.16666666666666666)); } .g64 > .flex--item11, .gx64 > .flex--item11, .gy64 > .flex--item11, .g64.fl= ex__allitems11 > .d-flex, .gx64.flex__allitems11 > .d-flex, .gy64.flex__all= items11 > .d-flex, .g64.flex__allitems11 > .flex--item, .gx64.flex__allitem= s11 > .flex--item, .gy64.flex__allitems11 > .flex--item { flex-basis: calc(= 91.66666666666667% - (var(--su64) * 0.08333333333333333)); } .g64 > .flex--item12, .gx64 > .flex--item12, .gy64 > .flex--item12, .g64.fl= ex__allitems12 > .d-flex, .gx64.flex__allitems12 > .d-flex, .gy64.flex__all= items12 > .d-flex, .g64.flex__allitems12 > .flex--item, .gx64.flex__allitem= s12 > .flex--item, .gy64.flex__allitems12 > .flex--item { flex-basis: calc(= 100% - (var(--su64) * 0)); } .gs2 { margin: calc(var(--su2) / 2 * -1); } .gs2 > .d-flex, .gs2 > .flex--item { margin: calc(var(--su2) / 2); } .gs2 > .flex--item1 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item1, .gs2.flex__allitems1 > .d-flex, .gs2.flex__allitems1 >= .flex--item { flex-basis: calc(8.333333333333334% - var(--su2)); } .gs2 > .flex--item2 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item2, .gs2.flex__allitems2 > .d-flex, .gs2.flex__allitems2 >= .flex--item { flex-basis: calc(16.666666666666668% - var(--su2)); } .gs2 > .flex--item3 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item3, .gs2.flex__allitems3 > .d-flex, .gs2.flex__allitems3 >= .flex--item { flex-basis: calc(25% - var(--su2)); } .gs2 > .flex--item4 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item4, .gs2.flex__allitems4 > .d-flex, .gs2.flex__allitems4 >= .flex--item { flex-basis: calc(33.333333333333336% - var(--su2)); } .gs2 > .flex--item5 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item5, .gs2.flex__allitems5 > .d-flex, .gs2.flex__allitems5 >= .flex--item { flex-basis: calc(41.666666666666664% - var(--su2)); } .gs2 > .flex--item6 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item6, .gs2.flex__allitems6 > .d-flex, .gs2.flex__allitems6 >= .flex--item { flex-basis: calc(50% - var(--su2)); } .gs2 > .flex--item7 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item7, .gs2.flex__allitems7 > .d-flex, .gs2.flex__allitems7 >= .flex--item { flex-basis: calc(58.333333333333336% - var(--su2)); } .gs2 > .flex--item8 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item8, .gs2.flex__allitems8 > .d-flex, .gs2.flex__allitems8 >= .flex--item { flex-basis: calc(66.66666666666667% - var(--su2)); } .gs2 > .flex--item9 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item9, .gs2.flex__allitems9 > .d-flex, .gs2.flex__allitems9 >= .flex--item { flex-basis: calc(75% - var(--su2)); } .gs2 > .flex--item10 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item10, .gs2.flex__allitems10 > .d-flex, .gs2.flex__allitems1= 0 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su2)); } .gs2 > .flex--item11 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item11, .gs2.flex__allitems11 > .d-flex, .gs2.flex__allitems1= 1 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su2)); } .gs2 > .flex--item12 { margin: calc(var(--su2) / 2); } .gs2 > .flex--item12, .gs2.flex__allitems12 > .d-flex, .gs2.flex__allitems1= 2 > .flex--item { flex-basis: calc(100% - var(--su2)); } .gs4 { margin: calc(var(--su4) / 2 * -1); } .gs4 > .d-flex, .gs4 > .flex--item { margin: calc(var(--su4) / 2); } .gs4 > .flex--item1 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item1, .gs4.flex__allitems1 > .d-flex, .gs4.flex__allitems1 >= .flex--item { flex-basis: calc(8.333333333333334% - var(--su4)); } .gs4 > .flex--item2 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item2, .gs4.flex__allitems2 > .d-flex, .gs4.flex__allitems2 >= .flex--item { flex-basis: calc(16.666666666666668% - var(--su4)); } .gs4 > .flex--item3 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item3, .gs4.flex__allitems3 > .d-flex, .gs4.flex__allitems3 >= .flex--item { flex-basis: calc(25% - var(--su4)); } .gs4 > .flex--item4 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item4, .gs4.flex__allitems4 > .d-flex, .gs4.flex__allitems4 >= .flex--item { flex-basis: calc(33.333333333333336% - var(--su4)); } .gs4 > .flex--item5 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item5, .gs4.flex__allitems5 > .d-flex, .gs4.flex__allitems5 >= .flex--item { flex-basis: calc(41.666666666666664% - var(--su4)); } .gs4 > .flex--item6 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item6, .gs4.flex__allitems6 > .d-flex, .gs4.flex__allitems6 >= .flex--item { flex-basis: calc(50% - var(--su4)); } .gs4 > .flex--item7 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item7, .gs4.flex__allitems7 > .d-flex, .gs4.flex__allitems7 >= .flex--item { flex-basis: calc(58.333333333333336% - var(--su4)); } .gs4 > .flex--item8 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item8, .gs4.flex__allitems8 > .d-flex, .gs4.flex__allitems8 >= .flex--item { flex-basis: calc(66.66666666666667% - var(--su4)); } .gs4 > .flex--item9 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item9, .gs4.flex__allitems9 > .d-flex, .gs4.flex__allitems9 >= .flex--item { flex-basis: calc(75% - var(--su4)); } .gs4 > .flex--item10 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item10, .gs4.flex__allitems10 > .d-flex, .gs4.flex__allitems1= 0 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su4)); } .gs4 > .flex--item11 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item11, .gs4.flex__allitems11 > .d-flex, .gs4.flex__allitems1= 1 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su4)); } .gs4 > .flex--item12 { margin: calc(var(--su4) / 2); } .gs4 > .flex--item12, .gs4.flex__allitems12 > .d-flex, .gs4.flex__allitems1= 2 > .flex--item { flex-basis: calc(100% - var(--su4)); } .gs6 { margin: calc(var(--su6) / 2 * -1); } .gs6 > .d-flex, .gs6 > .flex--item { margin: calc(var(--su6) / 2); } .gs6 > .flex--item1 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item1, .gs6.flex__allitems1 > .d-flex, .gs6.flex__allitems1 >= .flex--item { flex-basis: calc(8.333333333333334% - var(--su6)); } .gs6 > .flex--item2 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item2, .gs6.flex__allitems2 > .d-flex, .gs6.flex__allitems2 >= .flex--item { flex-basis: calc(16.666666666666668% - var(--su6)); } .gs6 > .flex--item3 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item3, .gs6.flex__allitems3 > .d-flex, .gs6.flex__allitems3 >= .flex--item { flex-basis: calc(25% - var(--su6)); } .gs6 > .flex--item4 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item4, .gs6.flex__allitems4 > .d-flex, .gs6.flex__allitems4 >= .flex--item { flex-basis: calc(33.333333333333336% - var(--su6)); } .gs6 > .flex--item5 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item5, .gs6.flex__allitems5 > .d-flex, .gs6.flex__allitems5 >= .flex--item { flex-basis: calc(41.666666666666664% - var(--su6)); } .gs6 > .flex--item6 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item6, .gs6.flex__allitems6 > .d-flex, .gs6.flex__allitems6 >= .flex--item { flex-basis: calc(50% - var(--su6)); } .gs6 > .flex--item7 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item7, .gs6.flex__allitems7 > .d-flex, .gs6.flex__allitems7 >= .flex--item { flex-basis: calc(58.333333333333336% - var(--su6)); } .gs6 > .flex--item8 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item8, .gs6.flex__allitems8 > .d-flex, .gs6.flex__allitems8 >= .flex--item { flex-basis: calc(66.66666666666667% - var(--su6)); } .gs6 > .flex--item9 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item9, .gs6.flex__allitems9 > .d-flex, .gs6.flex__allitems9 >= .flex--item { flex-basis: calc(75% - var(--su6)); } .gs6 > .flex--item10 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item10, .gs6.flex__allitems10 > .d-flex, .gs6.flex__allitems1= 0 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su6)); } .gs6 > .flex--item11 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item11, .gs6.flex__allitems11 > .d-flex, .gs6.flex__allitems1= 1 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su6)); } .gs6 > .flex--item12 { margin: calc(var(--su6) / 2); } .gs6 > .flex--item12, .gs6.flex__allitems12 > .d-flex, .gs6.flex__allitems1= 2 > .flex--item { flex-basis: calc(100% - var(--su6)); } .gs8 { margin: calc(var(--su8) / 2 * -1); } .gs8 > .d-flex, .gs8 > .flex--item { margin: calc(var(--su8) / 2); } .gs8 > .flex--item1 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item1, .gs8.flex__allitems1 > .d-flex, .gs8.flex__allitems1 >= .flex--item { flex-basis: calc(8.333333333333334% - var(--su8)); } .gs8 > .flex--item2 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item2, .gs8.flex__allitems2 > .d-flex, .gs8.flex__allitems2 >= .flex--item { flex-basis: calc(16.666666666666668% - var(--su8)); } .gs8 > .flex--item3 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item3, .gs8.flex__allitems3 > .d-flex, .gs8.flex__allitems3 >= .flex--item { flex-basis: calc(25% - var(--su8)); } .gs8 > .flex--item4 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item4, .gs8.flex__allitems4 > .d-flex, .gs8.flex__allitems4 >= .flex--item { flex-basis: calc(33.333333333333336% - var(--su8)); } .gs8 > .flex--item5 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item5, .gs8.flex__allitems5 > .d-flex, .gs8.flex__allitems5 >= .flex--item { flex-basis: calc(41.666666666666664% - var(--su8)); } .gs8 > .flex--item6 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item6, .gs8.flex__allitems6 > .d-flex, .gs8.flex__allitems6 >= .flex--item { flex-basis: calc(50% - var(--su8)); } .gs8 > .flex--item7 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item7, .gs8.flex__allitems7 > .d-flex, .gs8.flex__allitems7 >= .flex--item { flex-basis: calc(58.333333333333336% - var(--su8)); } .gs8 > .flex--item8 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item8, .gs8.flex__allitems8 > .d-flex, .gs8.flex__allitems8 >= .flex--item { flex-basis: calc(66.66666666666667% - var(--su8)); } .gs8 > .flex--item9 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item9, .gs8.flex__allitems9 > .d-flex, .gs8.flex__allitems9 >= .flex--item { flex-basis: calc(75% - var(--su8)); } .gs8 > .flex--item10 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item10, .gs8.flex__allitems10 > .d-flex, .gs8.flex__allitems1= 0 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su8)); } .gs8 > .flex--item11 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item11, .gs8.flex__allitems11 > .d-flex, .gs8.flex__allitems1= 1 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su8)); } .gs8 > .flex--item12 { margin: calc(var(--su8) / 2); } .gs8 > .flex--item12, .gs8.flex__allitems12 > .d-flex, .gs8.flex__allitems1= 2 > .flex--item { flex-basis: calc(100% - var(--su8)); } .gs12 { margin: calc(var(--su12) / 2 * -1); } .gs12 > .d-flex, .gs12 > .flex--item { margin: calc(var(--su12) / 2); } .gs12 > .flex--item1 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item1, .gs12.flex__allitems1 > .d-flex, .gs12.flex__allitems= 1 > .flex--item { flex-basis: calc(8.333333333333334% - var(--su12)); } .gs12 > .flex--item2 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item2, .gs12.flex__allitems2 > .d-flex, .gs12.flex__allitems= 2 > .flex--item { flex-basis: calc(16.666666666666668% - var(--su12)); } .gs12 > .flex--item3 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item3, .gs12.flex__allitems3 > .d-flex, .gs12.flex__allitems= 3 > .flex--item { flex-basis: calc(25% - var(--su12)); } .gs12 > .flex--item4 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item4, .gs12.flex__allitems4 > .d-flex, .gs12.flex__allitems= 4 > .flex--item { flex-basis: calc(33.333333333333336% - var(--su12)); } .gs12 > .flex--item5 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item5, .gs12.flex__allitems5 > .d-flex, .gs12.flex__allitems= 5 > .flex--item { flex-basis: calc(41.666666666666664% - var(--su12)); } .gs12 > .flex--item6 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item6, .gs12.flex__allitems6 > .d-flex, .gs12.flex__allitems= 6 > .flex--item { flex-basis: calc(50% - var(--su12)); } .gs12 > .flex--item7 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item7, .gs12.flex__allitems7 > .d-flex, .gs12.flex__allitems= 7 > .flex--item { flex-basis: calc(58.333333333333336% - var(--su12)); } .gs12 > .flex--item8 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item8, .gs12.flex__allitems8 > .d-flex, .gs12.flex__allitems= 8 > .flex--item { flex-basis: calc(66.66666666666667% - var(--su12)); } .gs12 > .flex--item9 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item9, .gs12.flex__allitems9 > .d-flex, .gs12.flex__allitems= 9 > .flex--item { flex-basis: calc(75% - var(--su12)); } .gs12 > .flex--item10 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item10, .gs12.flex__allitems10 > .d-flex, .gs12.flex__allite= ms10 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su12)); } .gs12 > .flex--item11 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item11, .gs12.flex__allitems11 > .d-flex, .gs12.flex__allite= ms11 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su12)); } .gs12 > .flex--item12 { margin: calc(var(--su12) / 2); } .gs12 > .flex--item12, .gs12.flex__allitems12 > .d-flex, .gs12.flex__allite= ms12 > .flex--item { flex-basis: calc(100% - var(--su12)); } .gs16 { margin: calc(var(--su16) / 2 * -1); } .gs16 > .d-flex, .gs16 > .flex--item { margin: calc(var(--su16) / 2); } .gs16 > .flex--item1 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item1, .gs16.flex__allitems1 > .d-flex, .gs16.flex__allitems= 1 > .flex--item { flex-basis: calc(8.333333333333334% - var(--su16)); } .gs16 > .flex--item2 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item2, .gs16.flex__allitems2 > .d-flex, .gs16.flex__allitems= 2 > .flex--item { flex-basis: calc(16.666666666666668% - var(--su16)); } .gs16 > .flex--item3 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item3, .gs16.flex__allitems3 > .d-flex, .gs16.flex__allitems= 3 > .flex--item { flex-basis: calc(25% - var(--su16)); } .gs16 > .flex--item4 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item4, .gs16.flex__allitems4 > .d-flex, .gs16.flex__allitems= 4 > .flex--item { flex-basis: calc(33.333333333333336% - var(--su16)); } .gs16 > .flex--item5 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item5, .gs16.flex__allitems5 > .d-flex, .gs16.flex__allitems= 5 > .flex--item { flex-basis: calc(41.666666666666664% - var(--su16)); } .gs16 > .flex--item6 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item6, .gs16.flex__allitems6 > .d-flex, .gs16.flex__allitems= 6 > .flex--item { flex-basis: calc(50% - var(--su16)); } .gs16 > .flex--item7 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item7, .gs16.flex__allitems7 > .d-flex, .gs16.flex__allitems= 7 > .flex--item { flex-basis: calc(58.333333333333336% - var(--su16)); } .gs16 > .flex--item8 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item8, .gs16.flex__allitems8 > .d-flex, .gs16.flex__allitems= 8 > .flex--item { flex-basis: calc(66.66666666666667% - var(--su16)); } .gs16 > .flex--item9 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item9, .gs16.flex__allitems9 > .d-flex, .gs16.flex__allitems= 9 > .flex--item { flex-basis: calc(75% - var(--su16)); } .gs16 > .flex--item10 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item10, .gs16.flex__allitems10 > .d-flex, .gs16.flex__allite= ms10 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su16)); } .gs16 > .flex--item11 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item11, .gs16.flex__allitems11 > .d-flex, .gs16.flex__allite= ms11 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su16)); } .gs16 > .flex--item12 { margin: calc(var(--su16) / 2); } .gs16 > .flex--item12, .gs16.flex__allitems12 > .d-flex, .gs16.flex__allite= ms12 > .flex--item { flex-basis: calc(100% - var(--su16)); } .gs24 { margin: calc(var(--su24) / 2 * -1); } .gs24 > .d-flex, .gs24 > .flex--item { margin: calc(var(--su24) / 2); } .gs24 > .flex--item1 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item1, .gs24.flex__allitems1 > .d-flex, .gs24.flex__allitems= 1 > .flex--item { flex-basis: calc(8.333333333333334% - var(--su24)); } .gs24 > .flex--item2 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item2, .gs24.flex__allitems2 > .d-flex, .gs24.flex__allitems= 2 > .flex--item { flex-basis: calc(16.666666666666668% - var(--su24)); } .gs24 > .flex--item3 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item3, .gs24.flex__allitems3 > .d-flex, .gs24.flex__allitems= 3 > .flex--item { flex-basis: calc(25% - var(--su24)); } .gs24 > .flex--item4 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item4, .gs24.flex__allitems4 > .d-flex, .gs24.flex__allitems= 4 > .flex--item { flex-basis: calc(33.333333333333336% - var(--su24)); } .gs24 > .flex--item5 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item5, .gs24.flex__allitems5 > .d-flex, .gs24.flex__allitems= 5 > .flex--item { flex-basis: calc(41.666666666666664% - var(--su24)); } .gs24 > .flex--item6 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item6, .gs24.flex__allitems6 > .d-flex, .gs24.flex__allitems= 6 > .flex--item { flex-basis: calc(50% - var(--su24)); } .gs24 > .flex--item7 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item7, .gs24.flex__allitems7 > .d-flex, .gs24.flex__allitems= 7 > .flex--item { flex-basis: calc(58.333333333333336% - var(--su24)); } .gs24 > .flex--item8 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item8, .gs24.flex__allitems8 > .d-flex, .gs24.flex__allitems= 8 > .flex--item { flex-basis: calc(66.66666666666667% - var(--su24)); } .gs24 > .flex--item9 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item9, .gs24.flex__allitems9 > .d-flex, .gs24.flex__allitems= 9 > .flex--item { flex-basis: calc(75% - var(--su24)); } .gs24 > .flex--item10 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item10, .gs24.flex__allitems10 > .d-flex, .gs24.flex__allite= ms10 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su24)); } .gs24 > .flex--item11 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item11, .gs24.flex__allitems11 > .d-flex, .gs24.flex__allite= ms11 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su24)); } .gs24 > .flex--item12 { margin: calc(var(--su24) / 2); } .gs24 > .flex--item12, .gs24.flex__allitems12 > .d-flex, .gs24.flex__allite= ms12 > .flex--item { flex-basis: calc(100% - var(--su24)); } .gs32 { margin: calc(var(--su32) / 2 * -1); } .gs32 > .d-flex, .gs32 > .flex--item { margin: calc(var(--su32) / 2); } .gs32 > .flex--item1 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item1, .gs32.flex__allitems1 > .d-flex, .gs32.flex__allitems= 1 > .flex--item { flex-basis: calc(8.333333333333334% - var(--su32)); } .gs32 > .flex--item2 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item2, .gs32.flex__allitems2 > .d-flex, .gs32.flex__allitems= 2 > .flex--item { flex-basis: calc(16.666666666666668% - var(--su32)); } .gs32 > .flex--item3 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item3, .gs32.flex__allitems3 > .d-flex, .gs32.flex__allitems= 3 > .flex--item { flex-basis: calc(25% - var(--su32)); } .gs32 > .flex--item4 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item4, .gs32.flex__allitems4 > .d-flex, .gs32.flex__allitems= 4 > .flex--item { flex-basis: calc(33.333333333333336% - var(--su32)); } .gs32 > .flex--item5 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item5, .gs32.flex__allitems5 > .d-flex, .gs32.flex__allitems= 5 > .flex--item { flex-basis: calc(41.666666666666664% - var(--su32)); } .gs32 > .flex--item6 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item6, .gs32.flex__allitems6 > .d-flex, .gs32.flex__allitems= 6 > .flex--item { flex-basis: calc(50% - var(--su32)); } .gs32 > .flex--item7 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item7, .gs32.flex__allitems7 > .d-flex, .gs32.flex__allitems= 7 > .flex--item { flex-basis: calc(58.333333333333336% - var(--su32)); } .gs32 > .flex--item8 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item8, .gs32.flex__allitems8 > .d-flex, .gs32.flex__allitems= 8 > .flex--item { flex-basis: calc(66.66666666666667% - var(--su32)); } .gs32 > .flex--item9 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item9, .gs32.flex__allitems9 > .d-flex, .gs32.flex__allitems= 9 > .flex--item { flex-basis: calc(75% - var(--su32)); } .gs32 > .flex--item10 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item10, .gs32.flex__allitems10 > .d-flex, .gs32.flex__allite= ms10 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su32)); } .gs32 > .flex--item11 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item11, .gs32.flex__allitems11 > .d-flex, .gs32.flex__allite= ms11 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su32)); } .gs32 > .flex--item12 { margin: calc(var(--su32) / 2); } .gs32 > .flex--item12, .gs32.flex__allitems12 > .d-flex, .gs32.flex__allite= ms12 > .flex--item { flex-basis: calc(100% - var(--su32)); } .gs48 { margin: calc(var(--su48) / 2 * -1); } .gs48 > .d-flex, .gs48 > .flex--item { margin: calc(var(--su48) / 2); } .gs48 > .flex--item1 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item1, .gs48.flex__allitems1 > .d-flex, .gs48.flex__allitems= 1 > .flex--item { flex-basis: calc(8.333333333333334% - var(--su48)); } .gs48 > .flex--item2 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item2, .gs48.flex__allitems2 > .d-flex, .gs48.flex__allitems= 2 > .flex--item { flex-basis: calc(16.666666666666668% - var(--su48)); } .gs48 > .flex--item3 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item3, .gs48.flex__allitems3 > .d-flex, .gs48.flex__allitems= 3 > .flex--item { flex-basis: calc(25% - var(--su48)); } .gs48 > .flex--item4 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item4, .gs48.flex__allitems4 > .d-flex, .gs48.flex__allitems= 4 > .flex--item { flex-basis: calc(33.333333333333336% - var(--su48)); } .gs48 > .flex--item5 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item5, .gs48.flex__allitems5 > .d-flex, .gs48.flex__allitems= 5 > .flex--item { flex-basis: calc(41.666666666666664% - var(--su48)); } .gs48 > .flex--item6 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item6, .gs48.flex__allitems6 > .d-flex, .gs48.flex__allitems= 6 > .flex--item { flex-basis: calc(50% - var(--su48)); } .gs48 > .flex--item7 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item7, .gs48.flex__allitems7 > .d-flex, .gs48.flex__allitems= 7 > .flex--item { flex-basis: calc(58.333333333333336% - var(--su48)); } .gs48 > .flex--item8 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item8, .gs48.flex__allitems8 > .d-flex, .gs48.flex__allitems= 8 > .flex--item { flex-basis: calc(66.66666666666667% - var(--su48)); } .gs48 > .flex--item9 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item9, .gs48.flex__allitems9 > .d-flex, .gs48.flex__allitems= 9 > .flex--item { flex-basis: calc(75% - var(--su48)); } .gs48 > .flex--item10 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item10, .gs48.flex__allitems10 > .d-flex, .gs48.flex__allite= ms10 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su48)); } .gs48 > .flex--item11 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item11, .gs48.flex__allitems11 > .d-flex, .gs48.flex__allite= ms11 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su48)); } .gs48 > .flex--item12 { margin: calc(var(--su48) / 2); } .gs48 > .flex--item12, .gs48.flex__allitems12 > .d-flex, .gs48.flex__allite= ms12 > .flex--item { flex-basis: calc(100% - var(--su48)); } .gs64 { margin: calc(var(--su64) / 2 * -1); } .gs64 > .d-flex, .gs64 > .flex--item { margin: calc(var(--su64) / 2); } .gs64 > .flex--item1 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item1, .gs64.flex__allitems1 > .d-flex, .gs64.flex__allitems= 1 > .flex--item { flex-basis: calc(8.333333333333334% - var(--su64)); } .gs64 > .flex--item2 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item2, .gs64.flex__allitems2 > .d-flex, .gs64.flex__allitems= 2 > .flex--item { flex-basis: calc(16.666666666666668% - var(--su64)); } .gs64 > .flex--item3 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item3, .gs64.flex__allitems3 > .d-flex, .gs64.flex__allitems= 3 > .flex--item { flex-basis: calc(25% - var(--su64)); } .gs64 > .flex--item4 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item4, .gs64.flex__allitems4 > .d-flex, .gs64.flex__allitems= 4 > .flex--item { flex-basis: calc(33.333333333333336% - var(--su64)); } .gs64 > .flex--item5 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item5, .gs64.flex__allitems5 > .d-flex, .gs64.flex__allitems= 5 > .flex--item { flex-basis: calc(41.666666666666664% - var(--su64)); } .gs64 > .flex--item6 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item6, .gs64.flex__allitems6 > .d-flex, .gs64.flex__allitems= 6 > .flex--item { flex-basis: calc(50% - var(--su64)); } .gs64 > .flex--item7 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item7, .gs64.flex__allitems7 > .d-flex, .gs64.flex__allitems= 7 > .flex--item { flex-basis: calc(58.333333333333336% - var(--su64)); } .gs64 > .flex--item8 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item8, .gs64.flex__allitems8 > .d-flex, .gs64.flex__allitems= 8 > .flex--item { flex-basis: calc(66.66666666666667% - var(--su64)); } .gs64 > .flex--item9 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item9, .gs64.flex__allitems9 > .d-flex, .gs64.flex__allitems= 9 > .flex--item { flex-basis: calc(75% - var(--su64)); } .gs64 > .flex--item10 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item10, .gs64.flex__allitems10 > .d-flex, .gs64.flex__allite= ms10 > .flex--item { flex-basis: calc(83.33333333333333% - var(--su64)); } .gs64 > .flex--item11 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item11, .gs64.flex__allitems11 > .d-flex, .gs64.flex__allite= ms11 > .flex--item { flex-basis: calc(91.66666666666667% - var(--su64)); } .gs64 > .flex--item12 { margin: calc(var(--su64) / 2); } .gs64 > .flex--item12, .gs64.flex__allitems12 > .d-flex, .gs64.flex__allite= ms12 > .flex--item { flex-basis: calc(100% - var(--su64)); } .gsx, .gsx > .d-flex, .gsx > [class*=3D"flex--item"] { margin-top: 0px; mar= gin-bottom: 0px; } .gsy, .gsy > .d-flex, .gsy > [class*=3D"flex--item"] { margin-right: 0px; m= argin-left: 0px; } .fd-row { flex-direction: row !important; } .fd-row-reverse { flex-direction: row-reverse !important; } .fd-column { flex-direction: column !important; } .fd-column-reverse { flex-direction: column-reverse !important; } .fw-wrap { flex-wrap: wrap !important; } .fw-reverse { flex-wrap: wrap-reverse !important; } .fw-nowrap { flex-wrap: nowrap !important; } .jc-center { justify-content: center !important; } .jc-end { justify-content: flex-end !important; } .jc-space-around { justify-content: space-around !important; } .jc-space-between { justify-content: space-between !important; } .jc-space-evenly { justify-content: space-evenly !important; } .jc-start { justify-content: flex-start !important; } .ac-center { align-content: center !important; } .ac-end { align-content: flex-end !important; } .ac-space-around { align-content: space-around !important; } .ac-space-between { align-content: space-between !important; } .ac-start { align-content: flex-start !important; } .ac-stretch { align-content: stretch !important; } .ai-baseline { align-items: baseline !important; } .ai-center { align-items: center !important; } .ai-end { align-items: flex-end !important; } .ai-start { align-items: flex-start !important; } .ai-stretch { align-items: stretch !important; } .flex__center { justify-content: center !important; align-items: center !im= portant; } .as-auto { align-self: auto !important; } .as-baseline { align-self: baseline !important; } .as-center { align-self: center !important; } .as-end { align-self: flex-end !important; } .as-start { align-self: flex-start !important; } .as-stretch { align-self: stretch !important; } .fl-grow1 { flex-grow: 1 !important; } .fl-grow0 { flex-grow: 0 !important; } .fl-shrink1 { flex-shrink: 1 !important; } .fl-shrink0 { flex-shrink: 0 !important; } .fl-none { flex: 0 0 auto !important; } .fl-initial { flex: 0 1 auto !important; } .fl-auto { flex: 1 1 auto !important; } .fl-equal { flex: 1 1 0% !important; } .order-first { order: -1 !important; } .order-last { order: 1 !important; } .ff-row-wrap { flex-flow: wrap !important; } .ff-row-nowrap { flex-flow: row !important; } .ff-row-reverse-wrap { flex-flow: row-reverse wrap !important; } .ff-row-reverse-nowrap { flex-flow: row-reverse !important; } .ff-column-wrap { flex-flow: column wrap !important; } .ff-column-nowrap { flex-flow: column !important; } .ff-column-reverse-wrap { flex-flow: column-reverse wrap !important; } .ff-column-reverse-nowrap { flex-flow: column-reverse !important; } .fl0 { flex: 0 1 auto !important; } .fl1 { flex: 1 1 auto !important; } .fl2 { flex: 2 1 auto !important; } .fl3 { flex: 3 1 auto !important; } .fl4 { flex: 4 1 auto !important; } .fl5 { flex: 5 1 auto !important; } .fl-shrink2 { flex-shrink: 2; } .fl-shrink3 { flex-shrink: 3; } .fl-shrink4 { flex-shrink: 4; } .fl-shrink5 { flex-shrink: 5; } .fl-grow2 { flex-grow: 2; } .fl-grow3 { flex-grow: 3; } .fl-grow4 { flex-grow: 4; } .fl-grow5 { flex-grow: 5; } .g0 { --_gap-y: 0; --_gap-x: 0; } .g1 { --_gap-y: var(--su1); --_gap-x: var(--su1); } .g2 { --_gap-y: var(--su2); --_gap-x: var(--su2); } .g4 { --_gap-y: var(--su4); --_gap-x: var(--su4); } .g6 { --_gap-y: var(--su6); --_gap-x: var(--su6); } .g8 { --_gap-y: var(--su8); --_gap-x: var(--su8); } .g12 { --_gap-y: var(--su12); --_gap-x: var(--su12); } .g16 { --_gap-y: var(--su16); --_gap-x: var(--su16); } .g24 { --_gap-y: var(--su24); --_gap-x: var(--su24); } .g32 { --_gap-y: var(--su32); --_gap-x: var(--su32); } .g48 { --_gap-y: var(--su48); --_gap-x: var(--su48); } .g64 { --_gap-y: var(--su64); --_gap-x: var(--su64); } .gx0 { --_gap-x: 0; } .gx1 { --_gap-x: var(--su1); } .gx2 { --_gap-x: var(--su2); } .gx4 { --_gap-x: var(--su4); } .gx6 { --_gap-x: var(--su6); } .gx8 { --_gap-x: var(--su8); } .gx12 { --_gap-x: var(--su12); } .gx16 { --_gap-x: var(--su16); } .gx24 { --_gap-x: var(--su24); } .gx32 { --_gap-x: var(--su32); } .gx48 { --_gap-x: var(--su48); } .gx64 { --_gap-x: var(--su64); } .gy0 { --_gap-y: 0; } .gy1 { --_gap-y: var(--su1); } .gy2 { --_gap-y: var(--su2); } .gy4 { --_gap-y: var(--su4); } .gy6 { --_gap-y: var(--su6); } .gy8 { --_gap-y: var(--su8); } .gy12 { --_gap-y: var(--su12); } .gy16 { --_gap-y: var(--su16); } .gy24 { --_gap-y: var(--su24); } .gy32 { --_gap-y: var(--su32); } .gy48 { --_gap-y: var(--su48); } .gy64 { --_gap-y: var(--su64); } .gx0, .gx1, .gx2, .gx4, .gx6, .gx8, .gx12, .gx16, .gx24, .gx32, .gx48, .gx6= 4, .gy0, .gy1, .gy2, .gy4, .gy6, .gy8, .gy12, .gy16, .gy24, .gy32, .gy48, .= gy64, .g0, .g1, .g2, .g4, .g6, .g8, .g12, .g16, .g24, .g32, .g48, .g64 { ga= p: var(--_gap-y, 0) var(--_gap-x, 0); } .g-af-dense { grid-auto-flow: dense; } .g-af-row { grid-auto-flow: row; } .g-af-column { grid-auto-flow: column; } .grid__1 { grid-template-columns: repeat(1, minmax(0px, 1fr)); } .grid__2 { grid-template-columns: repeat(2, minmax(0px, 1fr)); } .grid__3 { grid-template-columns: repeat(3, minmax(0px, 1fr)); } .grid__4 { grid-template-columns: repeat(4, minmax(0px, 1fr)); } .grid__5 { grid-template-columns: repeat(5, minmax(0px, 1fr)); } .grid__6 { grid-template-columns: repeat(6, minmax(0px, 1fr)); } .grid__7 { grid-template-columns: repeat(7, minmax(0px, 1fr)); } .grid__8 { grid-template-columns: repeat(8, minmax(0px, 1fr)); } .grid__9 { grid-template-columns: repeat(9, minmax(0px, 1fr)); } .grid__10 { grid-template-columns: repeat(10, minmax(0px, 1fr)); } .grid__11 { grid-template-columns: repeat(11, minmax(0px, 1fr)); } .grid__12 { grid-template-columns: repeat(12, minmax(0px, 1fr)); } .grid__auto { grid-template-columns: auto 1fr; } .grid--col-all { grid-column: 1 / -1; } .grid--row-all { grid-row: 1 / -1; } .grid--col1 { grid-column: span 1; } .grid--col2 { grid-column: span 2; } .grid--col3 { grid-column: span 3; } .grid--col4 { grid-column: span 4; } .grid--col5 { grid-column: span 5; } .grid--col6 { grid-column: span 6; } .grid--col7 { grid-column: span 7; } .grid--col8 { grid-column: span 8; } .grid--col9 { grid-column: span 9; } .grid--col10 { grid-column: span 10; } .grid--col11 { grid-column: span 11; } .grid--col12 { grid-column: span 12; } .grid--row1 { grid-row: span 1; } .grid--row2 { grid-row: span 2; } .grid--row3 { grid-row: span 3; } .grid--row4 { grid-row: span 4; } .grid--row5 { grid-row: span 5; } .grid--row6 { grid-row: span 6; } .grid--row7 { grid-row: span 7; } .grid--row8 { grid-row: span 8; } .grid--row9 { grid-row: span 9; } .grid--row10 { grid-row: span 10; } .grid--row11 { grid-row: span 11; } .grid--row12 { grid-row: span 12; } .grid--col-start1 { grid-column-start: 1; } .grid--col-start2 { grid-column-start: 2; } .grid--col-start3 { grid-column-start: 3; } .grid--col-start4 { grid-column-start: 4; } .grid--col-start5 { grid-column-start: 5; } .grid--col-start6 { grid-column-start: 6; } .grid--col-start7 { grid-column-start: 7; } .grid--col-start8 { grid-column-start: 8; } .grid--col-start9 { grid-column-start: 9; } .grid--col-start10 { grid-column-start: 10; } .grid--col-start11 { grid-column-start: 11; } .grid--col-start12 { grid-column-start: 12; } .grid--col-end2 { grid-column-end: 2; } .grid--col-end3 { grid-column-end: 3; } .grid--col-end4 { grid-column-end: 4; } .grid--col-end5 { grid-column-end: 5; } .grid--col-end6 { grid-column-end: 6; } .grid--col-end7 { grid-column-end: 7; } .grid--col-end8 { grid-column-end: 8; } .grid--col-end9 { grid-column-end: 9; } .grid--col-end10 { grid-column-end: 10; } .grid--col-end11 { grid-column-end: 11; } .grid--col-end12 { grid-column-end: 12; } .grid--col-end13 { grid-column-end: 13; } .grid--row-start1 { grid-row-start: 1; } .grid--row-start2 { grid-row-start: 2; } .grid--row-start3 { grid-row-start: 3; } .grid--row-start4 { grid-row-start: 4; } .grid--row-start5 { grid-row-start: 5; } .grid--row-start6 { grid-row-start: 6; } .grid--row-start7 { grid-row-start: 7; } .grid--row-start8 { grid-row-start: 8; } .grid--row-start9 { grid-row-start: 9; } .grid--row-start10 { grid-row-start: 10; } .grid--row-start11 { grid-row-start: 11; } .grid--row-start12 { grid-row-start: 12; } .grid--row-end2 { grid-row-end: 2; } .grid--row-end3 { grid-row-end: 3; } .grid--row-end4 { grid-row-end: 4; } .grid--row-end5 { grid-row-end: 5; } .grid--row-end6 { grid-row-end: 6; } .grid--row-end7 { grid-row-end: 7; } .grid--row-end8 { grid-row-end: 8; } .grid--row-end9 { grid-row-end: 9; } .grid--row-end10 { grid-row-end: 10; } .grid--row-end11 { grid-row-end: 11; } .grid--row-end12 { grid-row-end: 12; } .grid--row-end13 { grid-row-end: 13; } .ji-auto { } .ji-center { justify-items: center !important; } .ji-start { justify-items: start !important; } .ji-end { justify-items: end !important; } .ji-stretch { justify-items: stretch !important; } .ji-unset { justify-items: unset !important; } .js-auto { justify-self: auto !important; } .js-center { justify-self: center !important; } .js-start { justify-self: start !important; } .js-end { justify-self: end !important; } .js-stretch { justify-self: stretch !important; } .js-unset { justify-self: unset !important; } body { --su-base: 1; --su-static0: 0; --su-static1: 1px; --su-static2: 2px;= --su-static4: 4px; --su-static6: 6px; --su-static8: 8px; --su-static12: 12= px; --su-static16: 16px; --su-static24: 24px; --su-static32: 32px; --su-sta= tic48: 48px; --su-static64: 64px; --su-static96: 96px; --su-static128: 128p= x; --su0: var(--su-static0); --su1: clamp(var(--su-static1), calc(var(--su-= static1) * var(--su-base)), calc(var(--su-static1) * var(--su-base))); --su= 2: calc(var(--su-static2) * var(--su-base)); --su4: calc(var(--su-static4) = * var(--su-base)); --su6: calc(var(--su-static6) * var(--su-base)); --su8: = calc(var(--su-static8) * var(--su-base)); --su12: calc(var(--su-static12) *= var(--su-base)); --su16: calc(var(--su-static16) * var(--su-base)); --su24= : calc(var(--su-static24) * var(--su-base)); --su32: calc(var(--su-static32= ) * var(--su-base)); --su48: calc(var(--su-static48) * var(--su-base)); --s= u64: calc(var(--su-static64) * var(--su-base)); --su96: calc(var(--su-stati= c96) * var(--su-base)); --su128: calc(var(--su-static128) * var(--su-base))= ; } .m-auto { margin: auto !important; } .m0 { margin: var(--su0) !important; } .m1 { margin: var(--su1) !important; } .m2 { margin: var(--su2) !important; } .m4 { margin: var(--su4) !important; } .m6 { margin: var(--su6) !important; } .m8 { margin: var(--su8) !important; } .m12 { margin: var(--su12) !important; } .m16 { margin: var(--su16) !important; } .m24 { margin: var(--su24) !important; } .m32 { margin: var(--su32) !important; } .m48 { margin: var(--su48) !important; } .m64 { margin: var(--su64) !important; } .m96 { margin: var(--su96) !important; } .m128 { margin: var(--su128) !important; } .mn1 { margin: calc(var(--su1) * -1) !important; } .mn2 { margin: calc(var(--su2) * -1) !important; } .mn4 { margin: calc(var(--su4) * -1) !important; } .mn6 { margin: calc(var(--su6) * -1) !important; } .mn8 { margin: calc(var(--su8) * -1) !important; } .mn12 { margin: calc(var(--su12) * -1) !important; } .mn16 { margin: calc(var(--su16) * -1) !important; } .mn24 { margin: calc(var(--su24) * -1) !important; } .mn32 { margin: calc(var(--su32) * -1) !important; } .mn48 { margin: calc(var(--su48) * -1) !important; } .mn64 { margin: calc(var(--su64) * -1) !important; } .mn96 { margin: calc(var(--su96) * -1) !important; } .mn128 { margin: calc(var(--su128) * -1) !important; } .m50 { margin: 50% !important; } .m100 { margin: 100% !important; } .mn50 { margin: -50% !important; } .mn100 { margin: -100% !important; } .mt-auto { margin-top: auto !important; } .mt0 { margin-top: var(--su0) !important; } .mt1 { margin-top: var(--su1) !important; } .mt2 { margin-top: var(--su2) !important; } .mt4 { margin-top: var(--su4) !important; } .mt6 { margin-top: var(--su6) !important; } .mt8 { margin-top: var(--su8) !important; } .mt12 { margin-top: var(--su12) !important; } .mt16 { margin-top: var(--su16) !important; } .mt24 { margin-top: var(--su24) !important; } .mt32 { margin-top: var(--su32) !important; } .mt48 { margin-top: var(--su48) !important; } .mt64 { margin-top: var(--su64) !important; } .mt96 { margin-top: var(--su96) !important; } .mt128 { margin-top: var(--su128) !important; } .mtn1 { margin-top: calc(var(--su1) * -1) !important; } .mtn2 { margin-top: calc(var(--su2) * -1) !important; } .mtn4 { margin-top: calc(var(--su4) * -1) !important; } .mtn6 { margin-top: calc(var(--su6) * -1) !important; } .mtn8 { margin-top: calc(var(--su8) * -1) !important; } .mtn12 { margin-top: calc(var(--su12) * -1) !important; } .mtn16 { margin-top: calc(var(--su16) * -1) !important; } .mtn24 { margin-top: calc(var(--su24) * -1) !important; } .mtn32 { margin-top: calc(var(--su32) * -1) !important; } .mtn48 { margin-top: calc(var(--su48) * -1) !important; } .mtn64 { margin-top: calc(var(--su64) * -1) !important; } .mtn96 { margin-top: calc(var(--su96) * -1) !important; } .mtn128 { margin-top: calc(var(--su128) * -1) !important; } .mt50 { margin-top: 50% !important; } .mt100 { margin-top: 100% !important; } .mtn50 { margin-top: -50% !important; } .mtn100 { margin-top: -100% !important; } .mr-auto { margin-right: auto !important; } .mr0 { margin-right: var(--su0) !important; } .mr1 { margin-right: var(--su1) !important; } .mr2 { margin-right: var(--su2) !important; } .mr4 { margin-right: var(--su4) !important; } .mr6 { margin-right: var(--su6) !important; } .mr8 { margin-right: var(--su8) !important; } .mr12 { margin-right: var(--su12) !important; } .mr16 { margin-right: var(--su16) !important; } .mr24 { margin-right: var(--su24) !important; } .mr32 { margin-right: var(--su32) !important; } .mr48 { margin-right: var(--su48) !important; } .mr64 { margin-right: var(--su64) !important; } .mr96 { margin-right: var(--su96) !important; } .mr128 { margin-right: var(--su128) !important; } .mrn1 { margin-right: calc(var(--su1) * -1) !important; } .mrn2 { margin-right: calc(var(--su2) * -1) !important; } .mrn4 { margin-right: calc(var(--su4) * -1) !important; } .mrn6 { margin-right: calc(var(--su6) * -1) !important; } .mrn8 { margin-right: calc(var(--su8) * -1) !important; } .mrn12 { margin-right: calc(var(--su12) * -1) !important; } .mrn16 { margin-right: calc(var(--su16) * -1) !important; } .mrn24 { margin-right: calc(var(--su24) * -1) !important; } .mrn32 { margin-right: calc(var(--su32) * -1) !important; } .mrn48 { margin-right: calc(var(--su48) * -1) !important; } .mrn64 { margin-right: calc(var(--su64) * -1) !important; } .mrn96 { margin-right: calc(var(--su96) * -1) !important; } .mrn128 { margin-right: calc(var(--su128) * -1) !important; } .mr50 { margin-right: 50% !important; } .mr100 { margin-right: 100% !important; } .mrn50 { margin-right: -50% !important; } .mrn100 { margin-right: -100% !important; } .mb-auto { margin-bottom: auto !important; } .mb0 { margin-bottom: var(--su0) !important; } .mb1 { margin-bottom: var(--su1) !important; } .mb2 { margin-bottom: var(--su2) !important; } .mb4 { margin-bottom: var(--su4) !important; } .mb6 { margin-bottom: var(--su6) !important; } .mb8 { margin-bottom: var(--su8) !important; } .mb12 { margin-bottom: var(--su12) !important; } .mb16 { margin-bottom: var(--su16) !important; } .mb24 { margin-bottom: var(--su24) !important; } .mb32 { margin-bottom: var(--su32) !important; } .mb48 { margin-bottom: var(--su48) !important; } .mb64 { margin-bottom: var(--su64) !important; } .mb96 { margin-bottom: var(--su96) !important; } .mb128 { margin-bottom: var(--su128) !important; } .mbn1 { margin-bottom: calc(var(--su1) * -1) !important; } .mbn2 { margin-bottom: calc(var(--su2) * -1) !important; } .mbn4 { margin-bottom: calc(var(--su4) * -1) !important; } .mbn6 { margin-bottom: calc(var(--su6) * -1) !important; } .mbn8 { margin-bottom: calc(var(--su8) * -1) !important; } .mbn12 { margin-bottom: calc(var(--su12) * -1) !important; } .mbn16 { margin-bottom: calc(var(--su16) * -1) !important; } .mbn24 { margin-bottom: calc(var(--su24) * -1) !important; } .mbn32 { margin-bottom: calc(var(--su32) * -1) !important; } .mbn48 { margin-bottom: calc(var(--su48) * -1) !important; } .mbn64 { margin-bottom: calc(var(--su64) * -1) !important; } .mbn96 { margin-bottom: calc(var(--su96) * -1) !important; } .mbn128 { margin-bottom: calc(var(--su128) * -1) !important; } .mb50 { margin-bottom: 50% !important; } .mb100 { margin-bottom: 100% !important; } .mbn50 { margin-bottom: -50% !important; } .mbn100 { margin-bottom: -100% !important; } .ml-auto { margin-left: auto !important; } .ml0 { margin-left: var(--su0) !important; } .ml1 { margin-left: var(--su1) !important; } .ml2 { margin-left: var(--su2) !important; } .ml4 { margin-left: var(--su4) !important; } .ml6 { margin-left: var(--su6) !important; } .ml8 { margin-left: var(--su8) !important; } .ml12 { margin-left: var(--su12) !important; } .ml16 { margin-left: var(--su16) !important; } .ml24 { margin-left: var(--su24) !important; } .ml32 { margin-left: var(--su32) !important; } .ml48 { margin-left: var(--su48) !important; } .ml64 { margin-left: var(--su64) !important; } .ml96 { margin-left: var(--su96) !important; } .ml128 { margin-left: var(--su128) !important; } .mln1 { margin-left: calc(var(--su1) * -1) !important; } .mln2 { margin-left: calc(var(--su2) * -1) !important; } .mln4 { margin-left: calc(var(--su4) * -1) !important; } .mln6 { margin-left: calc(var(--su6) * -1) !important; } .mln8 { margin-left: calc(var(--su8) * -1) !important; } .mln12 { margin-left: calc(var(--su12) * -1) !important; } .mln16 { margin-left: calc(var(--su16) * -1) !important; } .mln24 { margin-left: calc(var(--su24) * -1) !important; } .mln32 { margin-left: calc(var(--su32) * -1) !important; } .mln48 { margin-left: calc(var(--su48) * -1) !important; } .mln64 { margin-left: calc(var(--su64) * -1) !important; } .mln96 { margin-left: calc(var(--su96) * -1) !important; } .mln128 { margin-left: calc(var(--su128) * -1) !important; } .ml50 { margin-left: 50% !important; } .ml100 { margin-left: 100% !important; } .mln50 { margin-left: -50% !important; } .mln100 { margin-left: -100% !important; } .mx-auto { margin-left: auto !important; margin-right: auto !important; } .my-auto { margin-top: auto !important; margin-bottom: auto !important; } .mx0 { margin-left: var(--su0) !important; margin-right: var(--su0) !import= ant; } .mx1 { margin-left: var(--su1) !important; margin-right: var(--su1) !import= ant; } .mx2 { margin-left: var(--su2) !important; margin-right: var(--su2) !import= ant; } .mx4 { margin-left: var(--su4) !important; margin-right: var(--su4) !import= ant; } .mx6 { margin-left: var(--su6) !important; margin-right: var(--su6) !import= ant; } .mx8 { margin-left: var(--su8) !important; margin-right: var(--su8) !import= ant; } .mx12 { margin-left: var(--su12) !important; margin-right: var(--su12) !imp= ortant; } .mx16 { margin-left: var(--su16) !important; margin-right: var(--su16) !imp= ortant; } .mx24 { margin-left: var(--su24) !important; margin-right: var(--su24) !imp= ortant; } .mx32 { margin-left: var(--su32) !important; margin-right: var(--su32) !imp= ortant; } .mx48 { margin-left: var(--su48) !important; margin-right: var(--su48) !imp= ortant; } .mx64 { margin-left: var(--su64) !important; margin-right: var(--su64) !imp= ortant; } .mx96 { margin-left: var(--su96) !important; margin-right: var(--su96) !imp= ortant; } .mx128 { margin-left: var(--su128) !important; margin-right: var(--su128) != important; } .mxn1 { margin-left: calc(var(--su1) * -1) !important; margin-right: calc(v= ar(--su1) * -1) !important; } .mxn2 { margin-left: calc(var(--su2) * -1) !important; margin-right: calc(v= ar(--su2) * -1) !important; } .mxn4 { margin-left: calc(var(--su4) * -1) !important; margin-right: calc(v= ar(--su4) * -1) !important; } .mxn6 { margin-left: calc(var(--su6) * -1) !important; margin-right: calc(v= ar(--su6) * -1) !important; } .mxn8 { margin-left: calc(var(--su8) * -1) !important; margin-right: calc(v= ar(--su8) * -1) !important; } .mxn12 { margin-left: calc(var(--su12) * -1) !important; margin-right: calc= (var(--su12) * -1) !important; } .mxn16 { margin-left: calc(var(--su16) * -1) !important; margin-right: calc= (var(--su16) * -1) !important; } .mxn24 { margin-left: calc(var(--su24) * -1) !important; margin-right: calc= (var(--su24) * -1) !important; } .mxn32 { margin-left: calc(var(--su32) * -1) !important; margin-right: calc= (var(--su32) * -1) !important; } .mxn48 { margin-left: calc(var(--su48) * -1) !important; margin-right: calc= (var(--su48) * -1) !important; } .mxn64 { margin-left: calc(var(--su64) * -1) !important; margin-right: calc= (var(--su64) * -1) !important; } .mxn96 { margin-left: calc(var(--su96) * -1) !important; margin-right: calc= (var(--su96) * -1) !important; } .mxn128 { margin-left: calc(var(--su128) * -1) !important; margin-right: ca= lc(var(--su128) * -1) !important; } .my0 { margin-top: var(--su0) !important; margin-bottom: var(--su0) !import= ant; } .my1 { margin-top: var(--su1) !important; margin-bottom: var(--su1) !import= ant; } .my2 { margin-top: var(--su2) !important; margin-bottom: var(--su2) !import= ant; } .my4 { margin-top: var(--su4) !important; margin-bottom: var(--su4) !import= ant; } .my6 { margin-top: var(--su6) !important; margin-bottom: var(--su6) !import= ant; } .my8 { margin-top: var(--su8) !important; margin-bottom: var(--su8) !import= ant; } .my12 { margin-top: var(--su12) !important; margin-bottom: var(--su12) !imp= ortant; } .my16 { margin-top: var(--su16) !important; margin-bottom: var(--su16) !imp= ortant; } .my24 { margin-top: var(--su24) !important; margin-bottom: var(--su24) !imp= ortant; } .my32 { margin-top: var(--su32) !important; margin-bottom: var(--su32) !imp= ortant; } .my48 { margin-top: var(--su48) !important; margin-bottom: var(--su48) !imp= ortant; } .my64 { margin-top: var(--su64) !important; margin-bottom: var(--su64) !imp= ortant; } .my96 { margin-top: var(--su96) !important; margin-bottom: var(--su96) !imp= ortant; } .my128 { margin-top: var(--su128) !important; margin-bottom: var(--su128) != important; } .myn1 { margin-top: calc(var(--su1) * -1) !important; margin-bottom: calc(v= ar(--su1) * -1) !important; } .myn2 { margin-top: calc(var(--su2) * -1) !important; margin-bottom: calc(v= ar(--su2) * -1) !important; } .myn4 { margin-top: calc(var(--su4) * -1) !important; margin-bottom: calc(v= ar(--su4) * -1) !important; } .myn6 { margin-top: calc(var(--su6) * -1) !important; margin-bottom: calc(v= ar(--su6) * -1) !important; } .myn8 { margin-top: calc(var(--su8) * -1) !important; margin-bottom: calc(v= ar(--su8) * -1) !important; } .myn12 { margin-top: calc(var(--su12) * -1) !important; margin-bottom: calc= (var(--su12) * -1) !important; } .myn16 { margin-top: calc(var(--su16) * -1) !important; margin-bottom: calc= (var(--su16) * -1) !important; } .myn24 { margin-top: calc(var(--su24) * -1) !important; margin-bottom: calc= (var(--su24) * -1) !important; } .myn32 { margin-top: calc(var(--su32) * -1) !important; margin-bottom: calc= (var(--su32) * -1) !important; } .myn48 { margin-top: calc(var(--su48) * -1) !important; margin-bottom: calc= (var(--su48) * -1) !important; } .myn64 { margin-top: calc(var(--su64) * -1) !important; margin-bottom: calc= (var(--su64) * -1) !important; } .myn96 { margin-top: calc(var(--su96) * -1) !important; margin-bottom: calc= (var(--su96) * -1) !important; } .myn128 { margin-top: calc(var(--su128) * -1) !important; margin-bottom: ca= lc(var(--su128) * -1) !important; } .p0 { padding: var(--su0) !important; } .p1 { padding: var(--su1) !important; } .p2 { padding: var(--su2) !important; } .p4 { padding: var(--su4) !important; } .p6 { padding: var(--su6) !important; } .p8 { padding: var(--su8) !important; } .p12 { padding: var(--su12) !important; } .p16 { padding: var(--su16) !important; } .p24 { padding: var(--su24) !important; } .p32 { padding: var(--su32) !important; } .p48 { padding: var(--su48) !important; } .p64 { padding: var(--su64) !important; } .p96 { padding: var(--su96) !important; } .p128 { padding: var(--su128) !important; } .pt0 { padding-top: var(--su0) !important; } .pt1 { padding-top: var(--su1) !important; } .pt2 { padding-top: var(--su2) !important; } .pt4 { padding-top: var(--su4) !important; } .pt6 { padding-top: var(--su6) !important; } .pt8 { padding-top: var(--su8) !important; } .pt12 { padding-top: var(--su12) !important; } .pt16 { padding-top: var(--su16) !important; } .pt24 { padding-top: var(--su24) !important; } .pt32 { padding-top: var(--su32) !important; } .pt48 { padding-top: var(--su48) !important; } .pt64 { padding-top: var(--su64) !important; } .pt96 { padding-top: var(--su96) !important; } .pt128 { padding-top: var(--su128) !important; } .pr0 { padding-right: var(--su0) !important; } .pr1 { padding-right: var(--su1) !important; } .pr2 { padding-right: var(--su2) !important; } .pr4 { padding-right: var(--su4) !important; } .pr6 { padding-right: var(--su6) !important; } .pr8 { padding-right: var(--su8) !important; } .pr12 { padding-right: var(--su12) !important; } .pr16 { padding-right: var(--su16) !important; } .pr24 { padding-right: var(--su24) !important; } .pr32 { padding-right: var(--su32) !important; } .pr48 { padding-right: var(--su48) !important; } .pr64 { padding-right: var(--su64) !important; } .pr96 { padding-right: var(--su96) !important; } .pr128 { padding-right: var(--su128) !important; } .pb0 { padding-bottom: var(--su0) !important; } .pb1 { padding-bottom: var(--su1) !important; } .pb2 { padding-bottom: var(--su2) !important; } .pb4 { padding-bottom: var(--su4) !important; } .pb6 { padding-bottom: var(--su6) !important; } .pb8 { padding-bottom: var(--su8) !important; } .pb12 { padding-bottom: var(--su12) !important; } .pb16 { padding-bottom: var(--su16) !important; } .pb24 { padding-bottom: var(--su24) !important; } .pb32 { padding-bottom: var(--su32) !important; } .pb48 { padding-bottom: var(--su48) !important; } .pb64 { padding-bottom: var(--su64) !important; } .pb96 { padding-bottom: var(--su96) !important; } .pb128 { padding-bottom: var(--su128) !important; } .pl0 { padding-left: var(--su0) !important; } .pl1 { padding-left: var(--su1) !important; } .pl2 { padding-left: var(--su2) !important; } .pl4 { padding-left: var(--su4) !important; } .pl6 { padding-left: var(--su6) !important; } .pl8 { padding-left: var(--su8) !important; } .pl12 { padding-left: var(--su12) !important; } .pl16 { padding-left: var(--su16) !important; } .pl24 { padding-left: var(--su24) !important; } .pl32 { padding-left: var(--su32) !important; } .pl48 { padding-left: var(--su48) !important; } .pl64 { padding-left: var(--su64) !important; } .pl96 { padding-left: var(--su96) !important; } .pl128 { padding-left: var(--su128) !important; } .px0 { padding-left: var(--su0) !important; padding-right: var(--su0) !impo= rtant; } .px1 { padding-left: var(--su1) !important; padding-right: var(--su1) !impo= rtant; } .px2 { padding-left: var(--su2) !important; padding-right: var(--su2) !impo= rtant; } .px4 { padding-left: var(--su4) !important; padding-right: var(--su4) !impo= rtant; } .px6 { padding-left: var(--su6) !important; padding-right: var(--su6) !impo= rtant; } .px8 { padding-left: var(--su8) !important; padding-right: var(--su8) !impo= rtant; } .px12 { padding-left: var(--su12) !important; padding-right: var(--su12) !i= mportant; } .px16 { padding-left: var(--su16) !important; padding-right: var(--su16) !i= mportant; } .px24 { padding-left: var(--su24) !important; padding-right: var(--su24) !i= mportant; } .px32 { padding-left: var(--su32) !important; padding-right: var(--su32) !i= mportant; } .px48 { padding-left: var(--su48) !important; padding-right: var(--su48) !i= mportant; } .px64 { padding-left: var(--su64) !important; padding-right: var(--su64) !i= mportant; } .px96 { padding-left: var(--su96) !important; padding-right: var(--su96) !i= mportant; } .px128 { padding-left: var(--su128) !important; padding-right: var(--su128)= !important; } .py0 { padding-top: var(--su0) !important; padding-bottom: var(--su0) !impo= rtant; } .py1 { padding-top: var(--su1) !important; padding-bottom: var(--su1) !impo= rtant; } .py2 { padding-top: var(--su2) !important; padding-bottom: var(--su2) !impo= rtant; } .py4 { padding-top: var(--su4) !important; padding-bottom: var(--su4) !impo= rtant; } .py6 { padding-top: var(--su6) !important; padding-bottom: var(--su6) !impo= rtant; } .py8 { padding-top: var(--su8) !important; padding-bottom: var(--su8) !impo= rtant; } .py12 { padding-top: var(--su12) !important; padding-bottom: var(--su12) !i= mportant; } .py16 { padding-top: var(--su16) !important; padding-bottom: var(--su16) !i= mportant; } .py24 { padding-top: var(--su24) !important; padding-bottom: var(--su24) !i= mportant; } .py32 { padding-top: var(--su32) !important; padding-bottom: var(--su32) !i= mportant; } .py48 { padding-top: var(--su48) !important; padding-bottom: var(--su48) !i= mportant; } .py64 { padding-top: var(--su64) !important; padding-bottom: var(--su64) !i= mportant; } .py96 { padding-top: var(--su96) !important; padding-bottom: var(--su96) !i= mportant; } .py128 { padding-top: var(--su128) !important; padding-bottom: var(--su128)= !important; } .i0 { inset: var(--su0) !important; } .i1 { inset: var(--su1) !important; } .i2 { inset: var(--su2) !important; } .i4 { inset: var(--su4) !important; } .i6 { inset: var(--su6) !important; } .i8 { inset: var(--su8) !important; } .i12 { inset: var(--su12) !important; } .i16 { inset: var(--su16) !important; } .i24 { inset: var(--su24) !important; } .i32 { inset: var(--su32) !important; } .i48 { inset: var(--su48) !important; } .i64 { inset: var(--su64) !important; } .i96 { inset: var(--su96) !important; } .i128 { inset: var(--su128) !important; } .t0 { top: var(--su0) !important; } .t1 { top: var(--su1) !important; } .t2 { top: var(--su2) !important; } .t4 { top: var(--su4) !important; } .t6 { top: var(--su6) !important; } .t8 { top: var(--su8) !important; } .t12 { top: var(--su12) !important; } .t16 { top: var(--su16) !important; } .t24 { top: var(--su24) !important; } .t32 { top: var(--su32) !important; } .t48 { top: var(--su48) !important; } .t64 { top: var(--su64) !important; } .t96 { top: var(--su96) !important; } .t128 { top: var(--su128) !important; } .tn1 { top: calc(var(--su1) * -1) !important; } .tn2 { top: calc(var(--su2) * -1) !important; } .tn4 { top: calc(var(--su4) * -1) !important; } .tn6 { top: calc(var(--su6) * -1) !important; } .tn8 { top: calc(var(--su8) * -1) !important; } .tn12 { top: calc(var(--su12) * -1) !important; } .tn16 { top: calc(var(--su16) * -1) !important; } .tn24 { top: calc(var(--su24) * -1) !important; } .tn32 { top: calc(var(--su32) * -1) !important; } .tn48 { top: calc(var(--su48) * -1) !important; } .tn64 { top: calc(var(--su64) * -1) !important; } .tn96 { top: calc(var(--su96) * -1) !important; } .tn128 { top: calc(var(--su128) * -1) !important; } .t50 { top: 50% !important; } .t100 { top: 100% !important; } .tn50 { top: -50% !important; } .tn100 { top: -100% !important; } .r0 { right: var(--su0) !important; } .r1 { right: var(--su1) !important; } .r2 { right: var(--su2) !important; } .r4 { right: var(--su4) !important; } .r6 { right: var(--su6) !important; } .r8 { right: var(--su8) !important; } .r12 { right: var(--su12) !important; } .r16 { right: var(--su16) !important; } .r24 { right: var(--su24) !important; } .r32 { right: var(--su32) !important; } .r48 { right: var(--su48) !important; } .r64 { right: var(--su64) !important; } .r96 { right: var(--su96) !important; } .r128 { right: var(--su128) !important; } .rn1 { right: calc(var(--su1) * -1) !important; } .rn2 { right: calc(var(--su2) * -1) !important; } .rn4 { right: calc(var(--su4) * -1) !important; } .rn6 { right: calc(var(--su6) * -1) !important; } .rn8 { right: calc(var(--su8) * -1) !important; } .rn12 { right: calc(var(--su12) * -1) !important; } .rn16 { right: calc(var(--su16) * -1) !important; } .rn24 { right: calc(var(--su24) * -1) !important; } .rn32 { right: calc(var(--su32) * -1) !important; } .rn48 { right: calc(var(--su48) * -1) !important; } .rn64 { right: calc(var(--su64) * -1) !important; } .rn96 { right: calc(var(--su96) * -1) !important; } .rn128 { right: calc(var(--su128) * -1) !important; } .r50 { right: 50% !important; } .r100 { right: 100% !important; } .rn50 { right: -50% !important; } .rn100 { right: -100% !important; } .b0 { bottom: var(--su0) !important; } .b1 { bottom: var(--su1) !important; } .b2 { bottom: var(--su2) !important; } .b4 { bottom: var(--su4) !important; } .b6 { bottom: var(--su6) !important; } .b8 { bottom: var(--su8) !important; } .b12 { bottom: var(--su12) !important; } .b16 { bottom: var(--su16) !important; } .b24 { bottom: var(--su24) !important; } .b32 { bottom: var(--su32) !important; } .b48 { bottom: var(--su48) !important; } .b64 { bottom: var(--su64) !important; } .b96 { bottom: var(--su96) !important; } .b128 { bottom: var(--su128) !important; } .bn1 { bottom: calc(var(--su1) * -1) !important; } .bn2 { bottom: calc(var(--su2) * -1) !important; } .bn4 { bottom: calc(var(--su4) * -1) !important; } .bn6 { bottom: calc(var(--su6) * -1) !important; } .bn8 { bottom: calc(var(--su8) * -1) !important; } .bn12 { bottom: calc(var(--su12) * -1) !important; } .bn16 { bottom: calc(var(--su16) * -1) !important; } .bn24 { bottom: calc(var(--su24) * -1) !important; } .bn32 { bottom: calc(var(--su32) * -1) !important; } .bn48 { bottom: calc(var(--su48) * -1) !important; } .bn64 { bottom: calc(var(--su64) * -1) !important; } .bn96 { bottom: calc(var(--su96) * -1) !important; } .bn128 { bottom: calc(var(--su128) * -1) !important; } .b50 { bottom: 50% !important; } .b100 { bottom: 100% !important; } .bn50 { bottom: -50% !important; } .bn100 { bottom: -100% !important; } .l0 { left: var(--su0) !important; } .l1 { left: var(--su1) !important; } .l2 { left: var(--su2) !important; } .l4 { left: var(--su4) !important; } .l6 { left: var(--su6) !important; } .l8 { left: var(--su8) !important; } .l12 { left: var(--su12) !important; } .l16 { left: var(--su16) !important; } .l24 { left: var(--su24) !important; } .l32 { left: var(--su32) !important; } .l48 { left: var(--su48) !important; } .l64 { left: var(--su64) !important; } .l96 { left: var(--su96) !important; } .l128 { left: var(--su128) !important; } .ln1 { left: calc(var(--su1) * -1) !important; } .ln2 { left: calc(var(--su2) * -1) !important; } .ln4 { left: calc(var(--su4) * -1) !important; } .ln6 { left: calc(var(--su6) * -1) !important; } .ln8 { left: calc(var(--su8) * -1) !important; } .ln12 { left: calc(var(--su12) * -1) !important; } .ln16 { left: calc(var(--su16) * -1) !important; } .ln24 { left: calc(var(--su24) * -1) !important; } .ln32 { left: calc(var(--su32) * -1) !important; } .ln48 { left: calc(var(--su48) * -1) !important; } .ln64 { left: calc(var(--su64) * -1) !important; } .ln96 { left: calc(var(--su96) * -1) !important; } .ln128 { left: calc(var(--su128) * -1) !important; } .l50 { left: 50% !important; } .l100 { left: 100% !important; } .ln50 { left: -50% !important; } .ln100 { left: -100% !important; } h1, h2, h3, h4, h5, h6, p { margin-top: 0px; } .fs-display4 { font-size: var(--fs-display4) !important; } .fs-display3 { font-size: var(--fs-display3) !important; } .fs-display2 { font-size: var(--fs-display2) !important; } .fs-display1 { font-size: var(--fs-display1) !important; } .fs-headline2 { font-size: var(--fs-headline2) !important; } .fs-headline1 { font-size: var(--fs-headline1) !important; } .fs-title { font-size: var(--fs-title) !important; } .fs-subheading { font-size: var(--fs-subheading) !important; } .fs-body3 { font-size: var(--fs-body3) !important; } .fs-body2 { font-size: var(--fs-body2) !important; } .fs-body1 { font-size: var(--fs-body1) !important; } .fs-caption, .fs-category { font-size: var(--fs-caption) !important; } .fs-fine { font-size: var(--fs-fine) !important; } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .fs-display4 { font-si= ze: 3.8rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-display3 { font-si= ze: 3.3rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-display2 { font-si= ze: 3rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-display1 { font-si= ze: 2.6rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-headline2 { font-s= ize: 2.3rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-headline1 { font-s= ize: 2rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-title { font-size:= 1.8rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-subheading { font-= size: 1.6rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-body3 { font-size:= 1.4rem !important; } html.html__responsive:not(.html__unpinned-leftnav) .fs-body2 { font-size:= 1.3rem !important; } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .fs-display4 { font-size: 3.= 8rem !important; } html.html__responsive.html__unpinned-leftnav .fs-display3 { font-size: 3.= 3rem !important; } html.html__responsive.html__unpinned-leftnav .fs-display2 { font-size: 3r= em !important; } html.html__responsive.html__unpinned-leftnav .fs-display1 { font-size: 2.= 6rem !important; } html.html__responsive.html__unpinned-leftnav .fs-headline2 { font-size: 2= .3rem !important; } html.html__responsive.html__unpinned-leftnav .fs-headline1 { font-size: 2= rem !important; } html.html__responsive.html__unpinned-leftnav .fs-title { font-size: 1.8re= m !important; } html.html__responsive.html__unpinned-leftnav .fs-subheading { font-size: = 1.6rem !important; } html.html__responsive.html__unpinned-leftnav .fs-body3 { font-size: 1.4re= m !important; } html.html__responsive.html__unpinned-leftnav .fs-body2 { font-size: 1.3re= m !important; } } .fs-category { font-weight: 700; text-transform: uppercase; } .fs-category.has-border { width: 100%; padding: var(--su4) 0; border-top: v= ar(--su-static1) solid var(--bc-medium); } .lh-xs { line-height: var(--lh-xs) !important; } .lh-sm { line-height: var(--lh-sm) !important; } .lh-md { line-height: var(--lh-md) !important; } .lh-lg { line-height: var(--lh-lg) !important; } .lh-xl { line-height: var(--lh-xl) !important; } .lh-xxl { line-height: var(--lh-xxl) !important; } .lh-unset { line-height: initial !important; } .ff-sans { font-family: var(--ff-sans) !important; } .ff-serif { font-family: var(--ff-serif) !important; } .ff-mono { font-family: var(--ff-mono) !important; } .ff-inherit { font-family: inherit !important; } .fw-normal { font-weight: 400 !important; } .fw-bold { font-weight: 700 !important; } .fs-normal { font-style: normal !important; } .fs-italic { font-style: italic !important; } .fs-unset { font-style: unset !important; } .ta-left { text-align: left !important; } .ta-center { text-align: center !important; } .ta-right { text-align: right !important; } .ta-justify { text-align: justify !important; } .ta-unset { text-align: unset !important; } .td-none { text-decoration: none !important; } .td-underline { text-decoration: underline !important; } .tt-capitalize { text-transform: capitalize !important; } .tt-lowercase { text-transform: lowercase !important; } .tt-uppercase { text-transform: uppercase !important; } .tt-none { text-transform: none !important; } .tt-unset { text-transform: unset !important; } .truncate { overflow: hidden; max-width: 100%; white-space: nowrap; text-ov= erflow: ellipsis !important; } .v-truncate1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-ori= ent: vertical; overflow: hidden; } .v-truncate2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-ori= ent: vertical; overflow: hidden; } .v-truncate3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-ori= ent: vertical; overflow: hidden; } .v-truncate4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-ori= ent: vertical; overflow: hidden; } .v-truncate5 { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-ori= ent: vertical; overflow: hidden; } .v-truncate-fade { overflow: hidden; mask-image: linear-gradient(180deg, #0= 00 calc(var(--lh-md) * 9em), transparent); max-height: calc(var(--lh-md) * = 12em); } .v-truncate-fade.v-truncate-fade__sm { mask-image: linear-gradient(180deg, = #000 calc(var(--lh-md) * 3em), transparent); max-height: calc(var(--lh-md) = * 6em); } .v-truncate-fade.v-truncate-fade__lg { mask-image: linear-gradient(180deg, = #000 calc(var(--lh-md) * 21em), transparent); max-height: calc(var(--lh-md)= * 24em); } .ws-normal { white-space: normal !important; } .ws-nowrap { white-space: nowrap !important; } .ws-pre { white-space: pre !important; } .ws-pre-wrap { white-space: pre-wrap !important; } .ws-pre-line { white-space: pre-line !important; } .ws-unset { white-space: unset !important; } .wb-normal { word-break: normal !important; } .wb-break-all { word-break: break-all !important; } .wb-keep-all { word-break: keep-all !important; } .wb-inherit { word-break: inherit !important; } .wb-initial { word-break: initial !important; } .wb-unset { word-break: unset !important; } .ow-normal { overflow-wrap: normal !important; } .ow-anywhere { overflow-wrap: anywhere !important; } .ow-break-word { overflow-wrap: break-word !important; } .ow-inherit { overflow-wrap: inherit !important; } .ow-initial { overflow-wrap: initial !important; } .ow-unset { overflow-wrap: unset !important; } .hyphens-none { hyphens: none !important; } .hyphens-auto { hyphens: auto !important; } .hyphens-unset { hyphens: unset !important; } .break-word { word-break: break-word !important; overflow-wrap: break-word = !important; hyphens: auto !important; } ul, ol { padding: 0px; margin-left: 2.8em; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0px; } ul { list-style-type: disc; } ol { list-style-type: decimal; } .list-reset { list-style: none; margin: 0px; padding: 0px; } .list-ls-none { list-style: none !important; } .list-ls-disc { list-style-type: disc !important; } .list-ls-decimal { list-style-type: decimal !important; } .list-ls-unset { list-style-type: unset !important; } .list-inside { list-style-position: inside !important; } .list-outside { list-style-position: outside !important; } .d-block { display: block !important; } .d-flex { display: flex !important; } .d-inline-flex { display: inline-flex !important; } .d-grid { display: grid !important; } .d-inline-grid { display: inline-grid !important; } .d-inline { display: inline !important; } .d-inline-block { display: inline-block !important; } .d-table { display: table !important; } .d-table-cell { display: table-cell !important; } .d-none { display: none !important; } .d-unset { display: unset !important; } .bg-bottom { background-position: center bottom !important; } .bg-center { background-position: center center !important; } .bg-left { background-position: left center !important; } .bg-left-bottom { background-position: left bottom !important; } .bg-left-top { background-position: left top !important; } .bg-right { background-position: right center !important; } .bg-right-bottom { background-position: right bottom !important; } .bg-right-top { background-position: right top !important; } .bg-top { background-position: center top !important; } .bg-repeat { background-repeat: repeat !important; } .bg-no-repeat { background-repeat: no-repeat !important; } .bg-repeat-x { background-repeat: repeat-x !important; } .bg-repeat-y { background-repeat: repeat-y !important; } .bg-auto { background-size: auto !important; } .bg-cover { background-size: cover !important; } .bg-contain { background-size: contain !important; } .bg-fixed { background-attachment: fixed !important; } .bg-local { background-attachment: local !important; } .bg-scroll { background-attachment: scroll !important; } .bg-image-none { background-image: none !important; } .bg-confetti-animated { background-repeat: repeat-x; background-position: c= enter top -10px; background-image: url("data:image/svg+xml;,%3Csvg width=3D= '600' height=3D'90' viewBox=3D'0 0 600 90' fill=3D'none' xmlns=3D'http://ww= w.w3.org/2000/svg'%3E%3Crect x=3D'42' y=3D'-10' width=3D'6' height=3D'10'/%= 3E%3Crect x=3D'84' y=3D'-10' width=3D'6' height=3D'10'/%3E%3Crect x=3D'126'= y=3D'-13' width=3D'5' height=3D'13'/%3E%3Crect x=3D'168' y=3D'-13' width= =3D'5' height=3D'13'/%3E%3Crect x=3D'210' y=3D'-10' width=3D'6' height=3D'1= 0'/%3E%3Crect x=3D'252' y=3D'-13' width=3D'5' height=3D'13'/%3E%3Crect x=3D= '294' y=3D'-10' width=3D'6' height=3D'10'/%3E%3Crect x=3D'336' y=3D'-13' wi= dth=3D'5' height=3D'13'/%3E%3Crect x=3D'378' y=3D'-13' width=3D'5' height= =3D'13'/%3E%3Crect x=3D'420' y=3D'-10' width=3D'6' height=3D'10'/%3E%3Crect= x=3D'462' y=3D'-10' width=3D'6' height=3D'10'/%3E%3Crect x=3D'504' y=3D'-1= 3' width=3D'5' height=3D'13'/%3E%3Crect x=3D'546' y=3D'-10' width=3D'6' hei= ght=3D'10'/%3E%3Cstyle type=3D'text/css'%3E rect %7B opacity: 0; %7D rect:n= th-child(1) %7B transform-origin: 45px 5px; transform: rotate(-145deg); ani= mation: blast 700ms infinite ease-out; animation-delay: 88ms; animation-dur= ation: 631ms; %7D rect:nth-child(2) %7B transform-origin: 87px 5px; transfo= rm: rotate(164deg); animation: blast 700ms infinite ease-out; animation-del= ay: 131ms; animation-duration: 442ms; %7D rect:nth-child(3) %7B transform-o= rigin: 128px 6px; transform: rotate(4deg); animation: blast 700ms infinite = ease-out; animation-delay: 92ms; animation-duration: 662ms; %7D rect:nth-ch= ild(4) %7B transform-origin: 170px 6px; transform: rotate(-175deg); animati= on: blast 700ms infinite ease-out; animation-delay: 17ms; animation-duratio= n: 593ms; %7D rect:nth-child(5) %7B transform-origin: 213px 5px; transform:= rotate(-97deg); animation: blast 700ms infinite ease-out; animation-delay:= 122ms; animation-duration: 476ms; %7D rect:nth-child(6) %7B transform-orig= in: 255px 6px; transform: rotate(57deg); animation: blast 700ms infinite ea= se-out; animation-delay: 271ms; animation-duration: 381ms; %7D rect:nth-chi= ld(7) %7B transform-origin: 297px 5px; transform: rotate(-46deg); animation= : blast 700ms infinite ease-out; animation-delay: 131ms; animation-duration= : 619ms; %7D rect:nth-child(8) %7B transform-origin: 338px 6px; transform: = rotate(-65deg); animation: blast 700ms infinite ease-out; animation-delay: = 85ms; animation-duration: 668ms; %7D rect:nth-child(9) %7B transform-origin= : 380px 6px; transform: rotate(13deg); animation: blast 700ms infinite ease= -out; animation-delay: 128ms; animation-duration: 377ms; %7D rect:nth-child= (10) %7B transform-origin: 423px 5px; transform: rotate(176deg); animation:= blast 700ms infinite ease-out; animation-delay: 311ms; animation-duration:= 508ms; %7D rect:nth-child(11) %7B transform-origin: 465px 5px; transform: = rotate(108deg); animation: blast 700ms infinite ease-out; animation-delay: = 108ms; animation-duration: 595ms; %7D rect:nth-child(12) %7B transform-orig= in: 506px 6px; transform: rotate(62deg); animation: blast 700ms infinite ea= se-out; animation-delay: 105ms; animation-duration: 375ms; %7D rect:nth-chi= ld(13) %7B transform-origin: 549px 5px; transform: rotate(16deg); animation= : blast 700ms infinite ease-out; animation-delay: 149ms; animation-duration= : 491ms; %7D rect:nth-child(odd) %7B fill: %2365BB5C; %7D rect:nth-child(ev= en) %7B z-index: 1; fill: %2333AAFF; %7D rect:nth-child(4n) %7B animation-d= uration: 1400ms; fill: %23F23B14; %7D rect:nth-child(3n) %7B animation-dura= tion: 1750ms; animation-delay: 700ms; %7D rect:nth-child(4n-7) %7B fill: %2= 32A2F6A; %7D rect:nth-child(6n) %7B fill: %23FBBA23; %7D @keyframes blast %= 7B from %7B opacity: 0; %7D 20%25 %7B opacity: 1; %7D to %7B transform: tra= nslateY(90px); %7D %7D %3C/style%3E%3C/svg%3E%0A"); } @media (prefers-reduced-motion) { .bg-confetti-animated { background-image: url("data:image/svg+xml;,%3Csvg= width=3D'574' height=3D'60' viewBox=3D'0 0 574 60' fill=3D'none' xmlns=3D'= http://www.w3.org/2000/svg'%3E%3Crect opacity=3D'0.8' x=3D'27.1224' y=3D'20= .0458' width=3D'5' height=3D'13' transform=3D'rotate(-139 27.1224 20.0458)'= fill=3D'%23F23B14'/%3E%3Crect opacity=3D'0.8' x=3D'118.478' y=3D'7.00201' = width=3D'5' height=3D'13' transform=3D'rotate(-38.8114 118.478 7.00201)' fi= ll=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.8' x=3D'504.616' y=3D'25.4479' wid= th=3D'5' height=3D'13' transform=3D'rotate(-60.2734 504.616 25.4479)' fill= =3D'%23F23B14'/%3E%3Crect opacity=3D'0.6' x=3D'538.983' y=3D'45.555' width= =3D'5' height=3D'13' transform=3D'rotate(16.7826 538.983 45.555)' fill=3D'%= 232A2F6A'/%3E%3Crect opacity=3D'0.3' x=3D'470.322' y=3D'2.63625' width=3D'5= ' height=3D'13' transform=3D'rotate(11.295 470.322 2.63625)' fill=3D'%2333A= AFF'/%3E%3Crect opacity=3D'0.3' x=3D'190.295' y=3D'4.58138' width=3D'5' hei= ght=3D'13' transform=3D'rotate(27.5954 190.295 4.58138)' fill=3D'%23F23B14'= /%3E%3Crect opacity=3D'0.8' x=3D'234.303' y=3D'16.3233' width=3D'5' height= =3D'13' transform=3D'rotate(-41.8233 234.303 16.3233)' fill=3D'%2365BB5C'/%= 3E%3Crect opacity=3D'0.6' x=3D'369.702' y=3D'40.9875' width=3D'5' height=3D= '13' transform=3D'rotate(-56.419 369.702 40.9875)' fill=3D'%2333AAFF'/%3E%3= Crect opacity=3D'0.3' x=3D'402.121' y=3D'31.0848' width=3D'5' height=3D'13'= transform=3D'rotate(-17.9234 402.121 31.0848)' fill=3D'%23F23B14'/%3E%3Cre= ct opacity=3D'0.6' x=3D'200.316' y=3D'31.9328' width=3D'5' height=3D'13' tr= ansform=3D'rotate(-15.8896 200.316 31.9328)' fill=3D'%232A2F6A'/%3E%3Crect = opacity=3D'0.6' x=3D'69.6745' y=3D'23.4725' width=3D'6' height=3D'10' trans= form=3D'rotate(70.0266 69.6745 23.4725)' fill=3D'%2365BB5C'/%3E%3Crect opac= ity=3D'0.6' x=3D'291.945' y=3D'7.16931' width=3D'6' height=3D'10' transform= =3D'rotate(30.4258 291.945 7.16931)' fill=3D'%23FBBA23'/%3E%3Crect opacity= =3D'0.3' x=3D'33.7754' y=3D'38.2208' width=3D'6' height=3D'10' transform=3D= 'rotate(38.6056 33.7754 38.2208)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'= 0.8' x=3D'109.752' y=3D'31.1743' width=3D'6' height=3D'10' transform=3D'rot= ate(28.5296 109.752 31.1743)' fill=3D'%2333AAFF'/%3E%3Crect opacity=3D'0.3'= x=3D'278.081' y=3D'37.8695' width=3D'6' height=3D'10' transform=3D'rotate(= -26.5651 278.081 37.8695)' fill=3D'%23F23B14'/%3E%3Crect opacity=3D'0.8' x= =3D'416.294' y=3D'11.5573' width=3D'6' height=3D'10' transform=3D'rotate(-2= 2.8498 416.294 11.5573)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.3' x=3D= '354.667' y=3D'9.32341' width=3D'6' height=3D'10' transform=3D'rotate(17.75= 06 354.667 9.32341)' fill=3D'%232A2F6A'/%3E%3Crect opacity=3D'0.8' x=3D'532= .404' y=3D'16.6372' width=3D'6' height=3D'10' transform=3D'rotate(-75.3432 = 532.404 16.6372)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.6' x=3D'460.46= 3' y=3D'39.3557' width=3D'6' height=3D'10' transform=3D'rotate(45.4982 460.= 463 39.3557)' fill=3D'%2365BB5C'/%3E%3C/svg%3E"); } } .bg-confetti-static { background-repeat: repeat-x; background-position: cen= ter top -10px; background-image: url("data:image/svg+xml;,%3Csvg width=3D'5= 74' height=3D'60' viewBox=3D'0 0 574 60' fill=3D'none' xmlns=3D'http://www.= w3.org/2000/svg'%3E%3Crect opacity=3D'0.8' x=3D'27.1224' y=3D'20.0458' widt= h=3D'5' height=3D'13' transform=3D'rotate(-139 27.1224 20.0458)' fill=3D'%2= 3F23B14'/%3E%3Crect opacity=3D'0.8' x=3D'118.478' y=3D'7.00201' width=3D'5'= height=3D'13' transform=3D'rotate(-38.8114 118.478 7.00201)' fill=3D'%23FB= BA23'/%3E%3Crect opacity=3D'0.8' x=3D'504.616' y=3D'25.4479' width=3D'5' he= ight=3D'13' transform=3D'rotate(-60.2734 504.616 25.4479)' fill=3D'%23F23B1= 4'/%3E%3Crect opacity=3D'0.6' x=3D'538.983' y=3D'45.555' width=3D'5' height= =3D'13' transform=3D'rotate(16.7826 538.983 45.555)' fill=3D'%232A2F6A'/%3E= %3Crect opacity=3D'0.3' x=3D'470.322' y=3D'2.63625' width=3D'5' height=3D'1= 3' transform=3D'rotate(11.295 470.322 2.63625)' fill=3D'%2333AAFF'/%3E%3Cre= ct opacity=3D'0.3' x=3D'190.295' y=3D'4.58138' width=3D'5' height=3D'13' tr= ansform=3D'rotate(27.5954 190.295 4.58138)' fill=3D'%23F23B14'/%3E%3Crect o= pacity=3D'0.8' x=3D'234.303' y=3D'16.3233' width=3D'5' height=3D'13' transf= orm=3D'rotate(-41.8233 234.303 16.3233)' fill=3D'%2365BB5C'/%3E%3Crect opac= ity=3D'0.6' x=3D'369.702' y=3D'40.9875' width=3D'5' height=3D'13' transform= =3D'rotate(-56.419 369.702 40.9875)' fill=3D'%2333AAFF'/%3E%3Crect opacity= =3D'0.3' x=3D'402.121' y=3D'31.0848' width=3D'5' height=3D'13' transform=3D= 'rotate(-17.9234 402.121 31.0848)' fill=3D'%23F23B14'/%3E%3Crect opacity=3D= '0.6' x=3D'200.316' y=3D'31.9328' width=3D'5' height=3D'13' transform=3D'ro= tate(-15.8896 200.316 31.9328)' fill=3D'%232A2F6A'/%3E%3Crect opacity=3D'0.= 6' x=3D'69.6745' y=3D'23.4725' width=3D'6' height=3D'10' transform=3D'rotat= e(70.0266 69.6745 23.4725)' fill=3D'%2365BB5C'/%3E%3Crect opacity=3D'0.6' x= =3D'291.945' y=3D'7.16931' width=3D'6' height=3D'10' transform=3D'rotate(30= .4258 291.945 7.16931)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.3' x=3D'= 33.7754' y=3D'38.2208' width=3D'6' height=3D'10' transform=3D'rotate(38.605= 6 33.7754 38.2208)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.8' x=3D'109.= 752' y=3D'31.1743' width=3D'6' height=3D'10' transform=3D'rotate(28.5296 10= 9.752 31.1743)' fill=3D'%2333AAFF'/%3E%3Crect opacity=3D'0.3' x=3D'278.081'= y=3D'37.8695' width=3D'6' height=3D'10' transform=3D'rotate(-26.5651 278.0= 81 37.8695)' fill=3D'%23F23B14'/%3E%3Crect opacity=3D'0.8' x=3D'416.294' y= =3D'11.5573' width=3D'6' height=3D'10' transform=3D'rotate(-22.8498 416.294= 11.5573)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.3' x=3D'354.667' y=3D= '9.32341' width=3D'6' height=3D'10' transform=3D'rotate(17.7506 354.667 9.3= 2341)' fill=3D'%232A2F6A'/%3E%3Crect opacity=3D'0.8' x=3D'532.404' y=3D'16.= 6372' width=3D'6' height=3D'10' transform=3D'rotate(-75.3432 532.404 16.637= 2)' fill=3D'%23FBBA23'/%3E%3Crect opacity=3D'0.6' x=3D'460.463' y=3D'39.355= 7' width=3D'6' height=3D'10' transform=3D'rotate(45.4982 460.463 39.3557)' = fill=3D'%2365BB5C'/%3E%3C/svg%3E"); } .focus, .f\:focus:focus, .f\:focus:focus-within { box-shadow: 0 0 0 var(--s= u-static2) var(--focus-neutral),0 0 0 var(--su-static4) var(--focus-theme);= outline: var(--su-static2) solid transparent !important; } .focus-inset, .f\:focus-inset:focus, .f\:focus-inset:focus-within { box-sha= dow: inset 0 0 0 var(--su-static2) var(--focus-theme),inset 0 0 0 var(--su-= static4) var(--focus-neutral); outline: var(--su-static2) solid transparent= !important; } .focus-bordered, .f\:focus-bordered:focus, .f\:focus-bordered:focus-within = { box-shadow: 0 0 0 var(--su-static1) var(--focus-neutral),0 0 0 calc(var(-= -su-static4) - var(--su-static1)) var(--focus-theme); border-color: var(--f= ocus-neutral) !important; outline: var(--su-static2) solid transparent !imp= ortant; } .focus-inset-bordered, .f\:focus-inset-bordered:focus, .f\:focus-inset-bord= ered:focus-within { box-shadow: inset 0 0 0 var(--su-static1) var(--focus-t= heme),inset 0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focus-n= eutral); border-color: var(--focus-theme) !important; outline: var(--su-sta= tic2) solid transparent !important; } .of-contain { object-fit: contain !important; } .of-cover { object-fit: cover !important; } .of-fill { object-fit: fill !important; } .of-none { object-fit: none !important; } .of-scale-down { object-fit: scale-down !important; } .op-center { object-position: center center !important; } .c-auto { cursor: auto !important; } .c-default { cursor: default !important; } .c-pointer { cursor: pointer !important; } .c-text { cursor: text !important; } .c-wait { cursor: wait !important; } .c-move { cursor: move !important; } .c-not-allowed { cursor: not-allowed !important; } .c-help { cursor: help !important; } .pe-auto { pointer-events: auto !important; } .pe-none { pointer-events: none !important; } .us-auto { user-select: auto !important; } .us-none { user-select: none !important; } .ud-auto { -webkit-user-drag: auto !important; } .ud-none { -webkit-user-drag: none !important; } .v-visible { visibility: visible !important; } .v-hidden { visibility: hidden !important; } .v-visible-sr, .s-topbar .s-topbar--skip-link:not(:focus) { border: 0px; cl= ip: rect(var(--su-static1), var(--su-static1), var(--su-static1), var(--su-= static1)); clip-path: inset(50%); height: var(--su-static1); margin: calc(v= ar(--su-static1) * -1); overflow: hidden; padding: 0px; position: absolute;= width: var(--su-static1); overflow-wrap: normal; } .float-left { float: left !important; } .float-right { float: right !important; } .float-none { float: none !important; } .clearfix::before, .clearfix::after { content: ""; display: table; } .clearfix::after { clear: both; } .clear-left { clear: left !important; } .clear-right { clear: right !important; } .clear-both { clear: both !important; } .clear-none { clear: none !important; } .box-content { box-sizing: content-box !important; } .box-border { box-sizing: border-box !important; } .box-unset { box-sizing: unset !important; } .va-baseline { vertical-align: baseline !important; } .va-bottom { vertical-align: bottom !important; } .va-middle { vertical-align: middle !important; } .va-sub { vertical-align: sub !important; } .va-super { vertical-align: super !important; } .va-text-bottom { vertical-align: text-bottom !important; } .va-text-top { vertical-align: text-top !important; } .va-top { vertical-align: top !important; } .va-unset { vertical-align: unset !important; } .ps-absolute { position: absolute !important; } .ps-fixed { position: fixed !important; } .ps-relative { position: relative !important; } .ps-static { position: static !important; } .ps-sticky { position: sticky !important; } .ps-unset { position: unset !important; } .overflow-auto { scrollbar-color: var(--scrollbar) transparent; overflow: a= uto !important; } .overflow-auto::-webkit-scrollbar { width: calc(var(--su-static12) - var(--= su-static2)); height: calc(var(--su-static12) - var(--su-static2)); backgro= und-color: transparent; } .overflow-auto::-webkit-scrollbar-track { border-radius: calc(var(--su-stat= ic12) - var(--su-static2)); background-color: transparent; } .overflow-auto::-webkit-scrollbar-thumb { border-radius: calc(var(--su-stat= ic12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-auto::-webkit-scrollbar-corner { background-color: transparent; b= order-color: transparent; } .overflow-x-auto { overflow-x: auto !important; scrollbar-color: var(--scro= llbar) transparent; } .overflow-x-auto::-webkit-scrollbar { width: calc(var(--su-static12) - var(= --su-static2)); height: calc(var(--su-static12) - var(--su-static2)); backg= round-color: transparent; } .overflow-x-auto::-webkit-scrollbar-track { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: transparent; } .overflow-x-auto::-webkit-scrollbar-thumb { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-x-auto::-webkit-scrollbar-corner { background-color: transparent;= border-color: transparent; } .overflow-y-auto { overflow-y: auto !important; scrollbar-color: var(--scro= llbar) transparent; } .overflow-y-auto::-webkit-scrollbar { width: calc(var(--su-static12) - var(= --su-static2)); height: calc(var(--su-static12) - var(--su-static2)); backg= round-color: transparent; } .overflow-y-auto::-webkit-scrollbar-track { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: transparent; } .overflow-y-auto::-webkit-scrollbar-thumb { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-y-auto::-webkit-scrollbar-corner { background-color: transparent;= border-color: transparent; } .overflow-hidden { scrollbar-color: var(--scrollbar) transparent; overflow:= hidden !important; } .overflow-hidden::-webkit-scrollbar { width: calc(var(--su-static12) - var(= --su-static2)); height: calc(var(--su-static12) - var(--su-static2)); backg= round-color: transparent; } .overflow-hidden::-webkit-scrollbar-track { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: transparent; } .overflow-hidden::-webkit-scrollbar-thumb { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-hidden::-webkit-scrollbar-corner { background-color: transparent;= border-color: transparent; } .overflow-x-hidden { overflow-x: hidden !important; scrollbar-color: var(--= scrollbar) transparent; } .overflow-x-hidden::-webkit-scrollbar { width: calc(var(--su-static12) - va= r(--su-static2)); height: calc(var(--su-static12) - var(--su-static2)); bac= kground-color: transparent; } .overflow-x-hidden::-webkit-scrollbar-track { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: transparent; } .overflow-x-hidden::-webkit-scrollbar-thumb { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-x-hidden::-webkit-scrollbar-corner { background-color: transparen= t; border-color: transparent; } .overflow-y-hidden { overflow-y: hidden !important; scrollbar-color: var(--= scrollbar) transparent; } .overflow-y-hidden::-webkit-scrollbar { width: calc(var(--su-static12) - va= r(--su-static2)); height: calc(var(--su-static12) - var(--su-static2)); bac= kground-color: transparent; } .overflow-y-hidden::-webkit-scrollbar-track { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: transparent; } .overflow-y-hidden::-webkit-scrollbar-thumb { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-y-hidden::-webkit-scrollbar-corner { background-color: transparen= t; border-color: transparent; } .overflow-scroll { scrollbar-color: var(--scrollbar) transparent; overflow:= scroll !important; } .overflow-scroll::-webkit-scrollbar { width: calc(var(--su-static12) - var(= --su-static2)); height: calc(var(--su-static12) - var(--su-static2)); backg= round-color: transparent; } .overflow-scroll::-webkit-scrollbar-track { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: transparent; } .overflow-scroll::-webkit-scrollbar-thumb { border-radius: calc(var(--su-st= atic12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-scroll::-webkit-scrollbar-corner { background-color: transparent;= border-color: transparent; } .overflow-x-scroll { overflow-x: scroll !important; scrollbar-color: var(--= scrollbar) transparent; } .overflow-x-scroll::-webkit-scrollbar { width: calc(var(--su-static12) - va= r(--su-static2)); height: calc(var(--su-static12) - var(--su-static2)); bac= kground-color: transparent; } .overflow-x-scroll::-webkit-scrollbar-track { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: transparent; } .overflow-x-scroll::-webkit-scrollbar-thumb { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-x-scroll::-webkit-scrollbar-corner { background-color: transparen= t; border-color: transparent; } .overflow-y-scroll { overflow-y: scroll !important; scrollbar-color: var(--= scrollbar) transparent; } .overflow-y-scroll::-webkit-scrollbar { width: calc(var(--su-static12) - va= r(--su-static2)); height: calc(var(--su-static12) - var(--su-static2)); bac= kground-color: transparent; } .overflow-y-scroll::-webkit-scrollbar-track { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: transparent; } .overflow-y-scroll::-webkit-scrollbar-thumb { border-radius: calc(var(--su-= static12) - var(--su-static2)); background-color: var(--scrollbar); } .overflow-y-scroll::-webkit-scrollbar-corner { background-color: transparen= t; border-color: transparent; } .overflow-visible { overflow: visible !important; } .o0 { opacity: 0 !important; } .h\:o0:hover { opacity: 0 !important; } .o5 { opacity: 0.05 !important; } .h\:o5:hover { opacity: 0.05 !important; } .o10 { opacity: 0.1 !important; } .o20 { opacity: 0.2 !important; } .o30 { opacity: 0.3 !important; } .o40 { opacity: 0.4 !important; } .o50 { opacity: 0.5 !important; } .h\:o50:hover { opacity: 0.5 !important; } .o60 { opacity: 0.6 !important; } .o70 { opacity: 0.7 !important; } .o80 { opacity: 0.8 !important; } .h\:o80:hover { opacity: 0.8 !important; } .o90 { opacity: 0.9 !important; } .o100 { opacity: 1 !important; } .h\:o100:hover { opacity: 1 !important; } .f\:o100:focus, .f\:o100:focus-within { opacity: 1 !important; } .z-hide { z-index: var(--zi-hide) !important; } .z-base { z-index: var(--zi-base) !important; } .z-active { z-index: var(--zi-active) !important; } .z-selected { z-index: var(--zi-selected) !important; } .z-dropdown { z-index: var(--zi-dropdown) !important; } .z-popover { z-index: var(--zi-popovers) !important; } .z-tooltip { z-index: var(--zi-tooltips) !important; } .z-banner { z-index: var(--zi-banners) !important; } .z-nav { z-index: var(--zi-navigation) !important; } .z-nav-fixed { z-index: var(--zi-navigation-fixed) !important; } .z-modal { z-index: var(--zi-modals) !important; } .z-modal-bg { z-index: var(--zi-modals-background) !important; } .outline-none { outline: 0px !important; } .outline-ring { outline: solid var(--su-static4) var(--translucent-secondar= y); } .f\:outline-ring:focus, .f\:outline-ring:focus-within { outline: solid var(= --su-static4) var(--translucent-secondary); } .fill-current { fill: currentcolor !important; } .stroke-current { stroke: currentcolor !important; } .bs-none { box-shadow: none !important; } .bs-sm { box-shadow: var(--bs-sm) !important; } .h\:bs-sm:hover { box-shadow: var(--bs-sm) !important; } .bs-md { box-shadow: var(--bs-md) !important; } .h\:bs-md:hover { box-shadow: var(--bs-md) !important; } .bs-lg { box-shadow: var(--bs-lg) !important; } .h\:bs-lg:hover { box-shadow: var(--bs-lg) !important; } .bs-xl { box-shadow: var(--bs-xl) !important; } .bs-ring { box-shadow: 0 0 0 var(--su-static4) var(--focus-ring); } .h\:bs-ring:hover { box-shadow: 0 0 0 var(--su-static4) var(--focus-ring); = } .f\:bs-ring:focus, .f\:bs-ring:focus-within { box-shadow: 0 0 0 var(--su-st= atic4) var(--focus-ring); } .bs-sm.bs-hover:hover { box-shadow: 0 var(--su-static2) var(--su-static8) h= sl(210,8%,95%) !important; } .bs-md.bs-hover:hover { box-shadow: 0 var(--su-static4) var(--su-static8) h= sl(210,8%,85%) !important; } .bs-lg.bs-hover:hover { box-shadow: 0 var(--su-static4) var(--su-static12) = hsla(210,8%,68%,0.7) !important; } .bs-i-sm.bs-hover:hover { box-shadow: inset 0 var(--su-static1) var(--su-st= atic8) 0 hsla(210,9%,75%,0.75) !important; } .bs-i-md.bs-hover:hover { box-shadow: inset 0 var(--su-static1) var(--su-st= atic8) 0 hsla(210,8%,68%,0.8) !important; } .bs-i-lg.bs-hover:hover { box-shadow: inset 0 var(--su-static1) var(--su-st= atic12) 0 hsl(210,8%,68%) !important; } .t { transition-duration: var(--transition-time); transition-property: all;= transition-timing-function: var(--te-ease-in); transition-delay: 0s; } .t-slow { transition-duration: 0.25s !important; } .t-fast { transition-duration: 0.05s !important; } .t-unset { transition-property: none !important; } .t-bg { transition-property: background-color !important; } .t-opacity { transition-property: opacity !important; } .t-shadow { transition-property: box-shadow !important; } .t-delay { transition-delay: 0.25s !important; } .t-delay-unset { transition-delay: 0s !important; } .tl-fixed { table-layout: fixed !important; } .tl-auto { table-layout: auto !important; } .w0 { width: 0px !important; } .w10 { width: 10% !important; } .w20 { width: 20% !important; } .w25 { width: 25% !important; } .w30 { width: 30% !important; } .w33 { width: 33.3333% !important; } .w40 { width: 40% !important; } .w50 { width: 50% !important; } .w60 { width: 60% !important; } .w66 { width: 66.6667% !important; } .w70 { width: 70% !important; } .w75 { width: 75% !important; } .w80 { width: 80% !important; } .w90 { width: 90% !important; } .w100 { width: 100% !important; } .w-auto { width: auto !important; } .w-screen { width: 100vw !important; } .ws0, .w0 { width: 0px !important; } .ws1 { width: var(--s-step) !important; } .ws2 { width: calc(var(--s-step) * 2) !important; } .ws3 { width: calc(var(--s-step) * 3) !important; } .ws4 { width: calc(var(--s-step) * 4) !important; } .ws5 { width: calc(var(--s-step) * 5) !important; } .ws6 { width: calc(var(--s-step) * 6) !important; } .ws7 { width: calc(var(--s-step) * 7) !important; } .ws8 { width: calc(var(--s-step) * 8) !important; } .ws9 { width: calc(var(--s-step) * 9) !important; } .ws10 { width: calc(var(--s-step) * 10) !important; } .ws11 { width: calc(var(--s-step) * 11) !important; } .ws12 { width: var(--s-full) !important; } .w2 { width: var(--su-static2) !important; } .w4 { width: var(--su-static4) !important; } .w6 { width: var(--su-static6) !important; } .w8 { width: var(--su-static8) !important; } .w12 { width: var(--su-static12) !important; } .w16 { width: var(--su-static16) !important; } .w24 { width: var(--su-static24) !important; } .w32 { width: var(--su-static32) !important; } .w48 { width: var(--su-static48) !important; } .w64 { width: var(--su-static64) !important; } .w96 { width: var(--su-static96) !important; } .w128 { width: var(--su-static128) !important; } .wmx0 { max-width: 0px !important; } .wmx1 { max-width: var(--s-step) !important; } .wmx2 { max-width: calc(var(--s-step) * 2) !important; } .wmx25 { max-width: 25% !important; } .wmx3 { max-width: calc(var(--s-step) * 3) !important; } .wmx4 { max-width: calc(var(--s-step) * 4) !important; } .wmx5 { max-width: calc(var(--s-step) * 5) !important; } .wmx50 { max-width: 50% !important; } .wmx6 { max-width: calc(var(--s-step) * 6) !important; } .wmx7 { max-width: calc(var(--s-step) * 7) !important; } .wmx75 { max-width: 75% !important; } .wmx8 { max-width: calc(var(--s-step) * 8) !important; } .wmx9 { max-width: calc(var(--s-step) * 9) !important; } .wmx10 { max-width: calc(var(--s-step) * 10) !important; } .wmx11 { max-width: calc(var(--s-step) * 11) !important; } .wmx12 { max-width: var(--s-full) !important; } .wmx100 { max-width: 100% !important; } .wmx-initial { max-width: initial !important; } .wmx-screen { max-width: 100vw !important; } .wmn0 { min-width: 0px !important; } .wmn1 { min-width: var(--s-step) !important; } .wmn2 { min-width: calc(var(--s-step) * 2) !important; } .wmn25 { min-width: 25% !important; } .wmn3 { min-width: calc(var(--s-step) * 3) !important; } .wmn4 { min-width: calc(var(--s-step) * 4) !important; } .wmn5 { min-width: calc(var(--s-step) * 5) !important; } .wmn50 { min-width: 50% !important; } .wmn6 { min-width: calc(var(--s-step) * 6) !important; } .wmn7 { min-width: calc(var(--s-step) * 7) !important; } .wmn75 { min-width: 75% !important; } .wmn8 { min-width: calc(var(--s-step) * 8) !important; } .wmn9 { min-width: calc(var(--s-step) * 9) !important; } .wmn10 { min-width: calc(var(--s-step) * 10) !important; } .wmn11 { min-width: calc(var(--s-step) * 11) !important; } .wmn12 { min-width: var(--s-full) !important; } .wmn100 { min-width: 100% !important; } .wmn-initial { min-width: initial !important; } .h0 { height: 0px !important; } .h100 { height: 100% !important; } .h-auto { height: auto !important; } .h-screen { height: 100vh !important; } .hs0, .h0 { height: 0px !important; } .hs1 { height: var(--s-step) !important; } .hs2 { height: calc(var(--s-step) * 2) !important; } .hs3 { height: calc(var(--s-step) * 3) !important; } .hs4 { height: calc(var(--s-step) * 4) !important; } .hs5 { height: calc(var(--s-step) * 5) !important; } .hs6 { height: calc(var(--s-step) * 6) !important; } .hs7 { height: calc(var(--s-step) * 7) !important; } .hs8 { height: calc(var(--s-step) * 8) !important; } .hs9 { height: calc(var(--s-step) * 9) !important; } .hs10 { height: calc(var(--s-step) * 10) !important; } .hs11 { height: calc(var(--s-step) * 11) !important; } .hs12 { height: var(--s-full) !important; } .h2 { height: var(--su-static2) !important; } .h4 { height: var(--su-static4) !important; } .h6 { height: var(--su-static6) !important; } .h8 { height: var(--su-static8) !important; } .h12 { height: var(--su-static12) !important; } .h16 { height: var(--su-static16) !important; } .h24 { height: var(--su-static24) !important; } .h32 { height: var(--su-static32) !important; } .h48 { height: var(--su-static48) !important; } .h64 { height: var(--su-static64) !important; } .h96 { height: var(--su-static96) !important; } .h128 { height: var(--su-static128) !important; } .hmx0 { max-height: 0px !important; } .hmx1 { max-height: var(--s-step) !important; } .hmx2 { max-height: calc(var(--s-step) * 2) !important; } .hmx3 { max-height: calc(var(--s-step) * 3) !important; } .hmx4 { max-height: calc(var(--s-step) * 4) !important; } .hmx5 { max-height: calc(var(--s-step) * 5) !important; } .hmx6 { max-height: calc(var(--s-step) * 6) !important; } .hmx7 { max-height: calc(var(--s-step) * 7) !important; } .hmx8 { max-height: calc(var(--s-step) * 8) !important; } .hmx9 { max-height: calc(var(--s-step) * 9) !important; } .hmx10 { max-height: calc(var(--s-step) * 10) !important; } .hmx11 { max-height: calc(var(--s-step) * 11) !important; } .hmx12 { max-height: var(--s-full) !important; } .hmx100 { max-height: 100% !important; } .hmx-initial { max-height: initial !important; } .hmx-screen { max-height: 100vh !important; } .hmn0 { min-height: 0px !important; } .hmn1 { min-height: var(--s-step) !important; } .hmn2 { min-height: calc(var(--s-step) * 2) !important; } .hmn3 { min-height: calc(var(--s-step) * 3) !important; } .hmn4 { min-height: calc(var(--s-step) * 4) !important; } .hmn5 { min-height: calc(var(--s-step) * 5) !important; } .hmn6 { min-height: calc(var(--s-step) * 6) !important; } .hmn7 { min-height: calc(var(--s-step) * 7) !important; } .hmn8 { min-height: calc(var(--s-step) * 8) !important; } .hmn9 { min-height: calc(var(--s-step) * 9) !important; } .hmn10 { min-height: calc(var(--s-step) * 10) !important; } .hmn11 { min-height: calc(var(--s-step) * 11) !important; } .hmn12 { min-height: var(--s-full) !important; } .hmn100 { min-height: 100% !important; } .hmn-initial { min-height: initial !important; } .hmn-screen { min-height: 100vh !important; } @media (max-width: 1264px) { html.html__responsive:not(.html__unpinned-leftnav) .lg\:ba { border-style= : solid !important; border-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bt { border-top-s= tyle: solid !important; border-top-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:br { border-right= -style: solid !important; border-right-width: var(--su-static1) !important;= } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bb { border-botto= m-style: solid !important; border-bottom-width: var(--su-static1) !importan= t; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bl { border-left-= style: solid !important; border-left-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:baw0 { border-wid= th: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:btw0 { border-top= -width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:brw0 { border-rig= ht-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bbw0 { border-bot= tom-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:blw0 { border-lef= t-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bar0 { border-rad= ius: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fd-row { flex-dir= ection: row !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fd-row-reverse { = flex-direction: row-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fd-column { flex-= direction: column !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fd-column-reverse= { flex-direction: column-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fw-wrap { flex-wr= ap: wrap !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fw-reverse { flex= -wrap: wrap-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fw-nowrap { flex-= wrap: nowrap !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:jc-center { justi= fy-content: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:jc-end { justify-= content: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:jc-space-around {= justify-content: space-around !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:jc-space-between = { justify-content: space-between !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:jc-space-evenly {= justify-content: space-evenly !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:jc-start { justif= y-content: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ai-baseline { ali= gn-items: baseline !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ai-center { align= -items: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ai-end { align-it= ems: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ai-start { align-= items: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ai-stretch { alig= n-items: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:as-auto { align-s= elf: auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:as-baseline { ali= gn-self: baseline !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:as-center { align= -self: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:as-end { align-se= lf: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:as-start { align-= self: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:as-stretch { alig= n-self: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-grow1 { flex-g= row: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-grow0 { flex-g= row: 0 !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-shrink1 { flex= -shrink: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-shrink0 { flex= -shrink: 0 !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-none { flex: 0= 0 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-initial { flex= : 0 1 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-auto { flex: 1= 1 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl-equal { flex: = 1 1 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:order-first { ord= er: -1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:order-last { orde= r: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl0 { flex: 0 1 a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:fl1 { flex: 1 1 a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g0 { --_gap-y: 0;= --_gap-x: 0; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g1 { --_gap-y: va= r(--su1); --_gap-x: var(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g2 { --_gap-y: va= r(--su2); --_gap-x: var(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g4 { --_gap-y: va= r(--su4); --_gap-x: var(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g6 { --_gap-y: va= r(--su6); --_gap-x: var(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g8 { --_gap-y: va= r(--su8); --_gap-x: var(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g12 { --_gap-y: v= ar(--su12); --_gap-x: var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g16 { --_gap-y: v= ar(--su16); --_gap-x: var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g24 { --_gap-y: v= ar(--su24); --_gap-x: var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g32 { --_gap-y: v= ar(--su32); --_gap-x: var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g48 { --_gap-y: v= ar(--su48); --_gap-x: var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g64 { --_gap-y: v= ar(--su64); --_gap-x: var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx0 { --_gap-x: 0= ; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx1 { --_gap-x: v= ar(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx2 { --_gap-x: v= ar(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx4 { --_gap-x: v= ar(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx6 { --_gap-x: v= ar(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx8 { --_gap-x: v= ar(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx12 { --_gap-x: = var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx16 { --_gap-x: = var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx24 { --_gap-x: = var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx32 { --_gap-x: = var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx48 { --_gap-x: = var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gx64 { --_gap-x: = var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy0 { --_gap-y: 0= ; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy1 { --_gap-y: v= ar(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy2 { --_gap-y: v= ar(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy4 { --_gap-y: v= ar(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy6 { --_gap-y: v= ar(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy8 { --_gap-y: v= ar(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy12 { --_gap-y: = var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy16 { --_gap-y: = var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy24 { --_gap-y: = var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy32 { --_gap-y: = var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy48 { --_gap-y: = var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:gy64 { --_gap-y: = var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g-af-dense { grid= -auto-flow: dense; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g-af-row { grid-a= uto-flow: row; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:g-af-column { gri= d-auto-flow: column; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__1 { grid-te= mplate-columns: repeat(1, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__2 { grid-te= mplate-columns: repeat(2, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__3 { grid-te= mplate-columns: repeat(3, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__4 { grid-te= mplate-columns: repeat(4, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__5 { grid-te= mplate-columns: repeat(5, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__6 { grid-te= mplate-columns: repeat(6, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__7 { grid-te= mplate-columns: repeat(7, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__8 { grid-te= mplate-columns: repeat(8, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__9 { grid-te= mplate-columns: repeat(9, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__10 { grid-t= emplate-columns: repeat(10, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__11 { grid-t= emplate-columns: repeat(11, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__12 { grid-t= emplate-columns: repeat(12, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid__auto { grid= -template-columns: auto 1fr; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-all { g= rid-column: 1 / -1; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-all { g= rid-row: 1 / -1; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col1 { grid= -column: span 1; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col2 { grid= -column: span 2; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col3 { grid= -column: span 3; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col4 { grid= -column: span 4; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col5 { grid= -column: span 5; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col6 { grid= -column: span 6; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col7 { grid= -column: span 7; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col8 { grid= -column: span 8; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col9 { grid= -column: span 9; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col10 { gri= d-column: span 10; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col11 { gri= d-column: span 11; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col12 { gri= d-column: span 12; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row1 { grid= -row: span 1; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row2 { grid= -row: span 2; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row3 { grid= -row: span 3; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row4 { grid= -row: span 4; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row5 { grid= -row: span 5; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row6 { grid= -row: span 6; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row7 { grid= -row: span 7; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row8 { grid= -row: span 8; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row9 { grid= -row: span 9; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row10 { gri= d-row: span 10; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row11 { gri= d-row: span 11; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row12 { gri= d-row: span 12; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start1 = { grid-column-start: 1; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start2 = { grid-column-start: 2; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start3 = { grid-column-start: 3; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start4 = { grid-column-start: 4; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start5 = { grid-column-start: 5; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start6 = { grid-column-start: 6; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start7 = { grid-column-start: 7; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start8 = { grid-column-start: 8; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start9 = { grid-column-start: 9; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start10= { grid-column-start: 10; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start11= { grid-column-start: 11; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-start12= { grid-column-start: 12; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end2 { = grid-column-end: 2; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end3 { = grid-column-end: 3; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end4 { = grid-column-end: 4; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end5 { = grid-column-end: 5; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end6 { = grid-column-end: 6; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end7 { = grid-column-end: 7; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end8 { = grid-column-end: 8; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end9 { = grid-column-end: 9; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end10 {= grid-column-end: 10; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end11 {= grid-column-end: 11; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end12 {= grid-column-end: 12; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--col-end13 {= grid-column-end: 13; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start1 = { grid-row-start: 1; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start2 = { grid-row-start: 2; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start3 = { grid-row-start: 3; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start4 = { grid-row-start: 4; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start5 = { grid-row-start: 5; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start6 = { grid-row-start: 6; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start7 = { grid-row-start: 7; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start8 = { grid-row-start: 8; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start9 = { grid-row-start: 9; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start10= { grid-row-start: 10; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start11= { grid-row-start: 11; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-start12= { grid-row-start: 12; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end2 { = grid-row-end: 2; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end3 { = grid-row-end: 3; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end4 { = grid-row-end: 4; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end5 { = grid-row-end: 5; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end6 { = grid-row-end: 6; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end7 { = grid-row-end: 7; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end8 { = grid-row-end: 8; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end9 { = grid-row-end: 9; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end10 {= grid-row-end: 10; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end11 {= grid-row-end: 11; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end12 {= grid-row-end: 12; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:grid--row-end13 {= grid-row-end: 13; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ji-auto { } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ji-center { justi= fy-items: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ji-start { justif= y-items: start !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ji-end { justify-= items: end !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ji-stretch { just= ify-items: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ji-unset { justif= y-items: unset !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:js-auto { justify= -self: auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:js-center { justi= fy-self: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:js-start { justif= y-self: start !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:js-end { justify-= self: end !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:js-stretch { just= ify-self: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:js-unset { justif= y-self: unset !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m0 { margin: var(= --su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m1 { margin: var(= --su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m2 { margin: var(= --su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m4 { margin: var(= --su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m6 { margin: var(= --su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m8 { margin: var(= --su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m12 { margin: var= (--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m16 { margin: var= (--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m24 { margin: var= (--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m32 { margin: var= (--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m48 { margin: var= (--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m64 { margin: var= (--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m96 { margin: var= (--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m128 { margin: va= r(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn1 { margin: cal= c(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn2 { margin: cal= c(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn4 { margin: cal= c(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn6 { margin: cal= c(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn8 { margin: cal= c(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn12 { margin: ca= lc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn16 { margin: ca= lc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn24 { margin: ca= lc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn32 { margin: ca= lc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn48 { margin: ca= lc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn64 { margin: ca= lc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn96 { margin: ca= lc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn128 { margin: c= alc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m50 { margin: 50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:m100 { margin: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn50 { margin: -5= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mn100 { margin: -= 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt0 { margin-top:= var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt1 { margin-top:= var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt2 { margin-top:= var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt4 { margin-top:= var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt6 { margin-top:= var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt8 { margin-top:= var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt12 { margin-top= : var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt16 { margin-top= : var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt24 { margin-top= : var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt32 { margin-top= : var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt48 { margin-top= : var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt64 { margin-top= : var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt96 { margin-top= : var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt128 { margin-to= p: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn1 { margin-top= : calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn2 { margin-top= : calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn4 { margin-top= : calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn6 { margin-top= : calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn8 { margin-top= : calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn12 { margin-to= p: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn16 { margin-to= p: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn24 { margin-to= p: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn32 { margin-to= p: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn48 { margin-to= p: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn64 { margin-to= p: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn96 { margin-to= p: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn128 { margin-t= op: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt50 { margin-top= : 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mt100 { margin-to= p: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn50 { margin-to= p: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mtn100 { margin-t= op: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr0 { margin-righ= t: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr1 { margin-righ= t: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr2 { margin-righ= t: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr4 { margin-righ= t: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr6 { margin-righ= t: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr8 { margin-righ= t: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr12 { margin-rig= ht: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr16 { margin-rig= ht: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr24 { margin-rig= ht: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr32 { margin-rig= ht: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr48 { margin-rig= ht: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr64 { margin-rig= ht: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr96 { margin-rig= ht: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr128 { margin-ri= ght: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn1 { margin-rig= ht: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn2 { margin-rig= ht: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn4 { margin-rig= ht: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn6 { margin-rig= ht: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn8 { margin-rig= ht: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn12 { margin-ri= ght: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn16 { margin-ri= ght: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn24 { margin-ri= ght: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn32 { margin-ri= ght: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn48 { margin-ri= ght: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn64 { margin-ri= ght: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn96 { margin-ri= ght: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn128 { margin-r= ight: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr50 { margin-rig= ht: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mr100 { margin-ri= ght: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn50 { margin-ri= ght: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mrn100 { margin-r= ight: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb0 { margin-bott= om: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb1 { margin-bott= om: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb2 { margin-bott= om: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb4 { margin-bott= om: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb6 { margin-bott= om: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb8 { margin-bott= om: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb12 { margin-bot= tom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb16 { margin-bot= tom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb24 { margin-bot= tom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb32 { margin-bot= tom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb48 { margin-bot= tom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb64 { margin-bot= tom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb96 { margin-bot= tom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb128 { margin-bo= ttom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn1 { margin-bot= tom: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn2 { margin-bot= tom: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn4 { margin-bot= tom: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn6 { margin-bot= tom: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn8 { margin-bot= tom: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn12 { margin-bo= ttom: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn16 { margin-bo= ttom: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn24 { margin-bo= ttom: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn32 { margin-bo= ttom: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn48 { margin-bo= ttom: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn64 { margin-bo= ttom: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn96 { margin-bo= ttom: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn128 { margin-b= ottom: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb50 { margin-bot= tom: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mb100 { margin-bo= ttom: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn50 { margin-bo= ttom: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mbn100 { margin-b= ottom: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml0 { margin-left= : var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml1 { margin-left= : var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml2 { margin-left= : var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml4 { margin-left= : var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml6 { margin-left= : var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml8 { margin-left= : var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml12 { margin-lef= t: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml16 { margin-lef= t: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml24 { margin-lef= t: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml32 { margin-lef= t: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml48 { margin-lef= t: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml64 { margin-lef= t: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml96 { margin-lef= t: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml128 { margin-le= ft: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln1 { margin-lef= t: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln2 { margin-lef= t: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln4 { margin-lef= t: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln6 { margin-lef= t: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln8 { margin-lef= t: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln12 { margin-le= ft: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln16 { margin-le= ft: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln24 { margin-le= ft: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln32 { margin-le= ft: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln48 { margin-le= ft: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln64 { margin-le= ft: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln96 { margin-le= ft: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln128 { margin-l= eft: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml50 { margin-lef= t: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ml100 { margin-le= ft: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln50 { margin-le= ft: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mln100 { margin-l= eft: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx0 { margin-left= : var(--su0) !important; margin-right: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx1 { margin-left= : var(--su1) !important; margin-right: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx2 { margin-left= : var(--su2) !important; margin-right: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx4 { margin-left= : var(--su4) !important; margin-right: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx6 { margin-left= : var(--su6) !important; margin-right: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx8 { margin-left= : var(--su8) !important; margin-right: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx12 { margin-lef= t: var(--su12) !important; margin-right: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx16 { margin-lef= t: var(--su16) !important; margin-right: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx24 { margin-lef= t: var(--su24) !important; margin-right: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx32 { margin-lef= t: var(--su32) !important; margin-right: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx48 { margin-lef= t: var(--su48) !important; margin-right: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx64 { margin-lef= t: var(--su64) !important; margin-right: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx96 { margin-lef= t: var(--su96) !important; margin-right: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mx128 { margin-le= ft: var(--su128) !important; margin-right: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn1 { margin-lef= t: calc(var(--su1) * -1) !important; margin-right: calc(var(--su1) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn2 { margin-lef= t: calc(var(--su2) * -1) !important; margin-right: calc(var(--su2) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn4 { margin-lef= t: calc(var(--su4) * -1) !important; margin-right: calc(var(--su4) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn6 { margin-lef= t: calc(var(--su6) * -1) !important; margin-right: calc(var(--su6) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn8 { margin-lef= t: calc(var(--su8) * -1) !important; margin-right: calc(var(--su8) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn12 { margin-le= ft: calc(var(--su12) * -1) !important; margin-right: calc(var(--su12) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn16 { margin-le= ft: calc(var(--su16) * -1) !important; margin-right: calc(var(--su16) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn24 { margin-le= ft: calc(var(--su24) * -1) !important; margin-right: calc(var(--su24) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn32 { margin-le= ft: calc(var(--su32) * -1) !important; margin-right: calc(var(--su32) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn48 { margin-le= ft: calc(var(--su48) * -1) !important; margin-right: calc(var(--su48) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn64 { margin-le= ft: calc(var(--su64) * -1) !important; margin-right: calc(var(--su64) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn96 { margin-le= ft: calc(var(--su96) * -1) !important; margin-right: calc(var(--su96) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:mxn128 { margin-l= eft: calc(var(--su128) * -1) !important; margin-right: calc(var(--su128) * = -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my0 { margin-top:= var(--su0) !important; margin-bottom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my1 { margin-top:= var(--su1) !important; margin-bottom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my2 { margin-top:= var(--su2) !important; margin-bottom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my4 { margin-top:= var(--su4) !important; margin-bottom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my6 { margin-top:= var(--su6) !important; margin-bottom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my8 { margin-top:= var(--su8) !important; margin-bottom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my12 { margin-top= : var(--su12) !important; margin-bottom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my16 { margin-top= : var(--su16) !important; margin-bottom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my24 { margin-top= : var(--su24) !important; margin-bottom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my32 { margin-top= : var(--su32) !important; margin-bottom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my48 { margin-top= : var(--su48) !important; margin-bottom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my64 { margin-top= : var(--su64) !important; margin-bottom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my96 { margin-top= : var(--su96) !important; margin-bottom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:my128 { margin-to= p: var(--su128) !important; margin-bottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn1 { margin-top= : calc(var(--su1) * -1) !important; margin-bottom: calc(var(--su1) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn2 { margin-top= : calc(var(--su2) * -1) !important; margin-bottom: calc(var(--su2) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn4 { margin-top= : calc(var(--su4) * -1) !important; margin-bottom: calc(var(--su4) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn6 { margin-top= : calc(var(--su6) * -1) !important; margin-bottom: calc(var(--su6) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn8 { margin-top= : calc(var(--su8) * -1) !important; margin-bottom: calc(var(--su8) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn12 { margin-to= p: calc(var(--su12) * -1) !important; margin-bottom: calc(var(--su12) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn16 { margin-to= p: calc(var(--su16) * -1) !important; margin-bottom: calc(var(--su16) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn24 { margin-to= p: calc(var(--su24) * -1) !important; margin-bottom: calc(var(--su24) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn32 { margin-to= p: calc(var(--su32) * -1) !important; margin-bottom: calc(var(--su32) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn48 { margin-to= p: calc(var(--su48) * -1) !important; margin-bottom: calc(var(--su48) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn64 { margin-to= p: calc(var(--su64) * -1) !important; margin-bottom: calc(var(--su64) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn96 { margin-to= p: calc(var(--su96) * -1) !important; margin-bottom: calc(var(--su96) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:myn128 { margin-t= op: calc(var(--su128) * -1) !important; margin-bottom: calc(var(--su128) * = -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p0 { padding: var= (--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p1 { padding: var= (--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p2 { padding: var= (--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p4 { padding: var= (--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p6 { padding: var= (--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p8 { padding: var= (--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p12 { padding: va= r(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p16 { padding: va= r(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p24 { padding: va= r(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p32 { padding: va= r(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p48 { padding: va= r(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p64 { padding: va= r(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p96 { padding: va= r(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:p128 { padding: v= ar(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt0 { padding-top= : var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt1 { padding-top= : var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt2 { padding-top= : var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt4 { padding-top= : var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt6 { padding-top= : var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt8 { padding-top= : var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt12 { padding-to= p: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt16 { padding-to= p: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt24 { padding-to= p: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt32 { padding-to= p: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt48 { padding-to= p: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt64 { padding-to= p: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt96 { padding-to= p: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pt128 { padding-t= op: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr0 { padding-rig= ht: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr1 { padding-rig= ht: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr2 { padding-rig= ht: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr4 { padding-rig= ht: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr6 { padding-rig= ht: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr8 { padding-rig= ht: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr12 { padding-ri= ght: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr16 { padding-ri= ght: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr24 { padding-ri= ght: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr32 { padding-ri= ght: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr48 { padding-ri= ght: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr64 { padding-ri= ght: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr96 { padding-ri= ght: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pr128 { padding-r= ight: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb0 { padding-bot= tom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb1 { padding-bot= tom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb2 { padding-bot= tom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb4 { padding-bot= tom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb6 { padding-bot= tom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb8 { padding-bot= tom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb12 { padding-bo= ttom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb16 { padding-bo= ttom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb24 { padding-bo= ttom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb32 { padding-bo= ttom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb48 { padding-bo= ttom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb64 { padding-bo= ttom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb96 { padding-bo= ttom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pb128 { padding-b= ottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl0 { padding-lef= t: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl1 { padding-lef= t: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl2 { padding-lef= t: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl4 { padding-lef= t: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl6 { padding-lef= t: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl8 { padding-lef= t: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl12 { padding-le= ft: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl16 { padding-le= ft: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl24 { padding-le= ft: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl32 { padding-le= ft: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl48 { padding-le= ft: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl64 { padding-le= ft: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl96 { padding-le= ft: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:pl128 { padding-l= eft: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px0 { padding-lef= t: var(--su0) !important; padding-right: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px1 { padding-lef= t: var(--su1) !important; padding-right: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px2 { padding-lef= t: var(--su2) !important; padding-right: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px4 { padding-lef= t: var(--su4) !important; padding-right: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px6 { padding-lef= t: var(--su6) !important; padding-right: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px8 { padding-lef= t: var(--su8) !important; padding-right: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px12 { padding-le= ft: var(--su12) !important; padding-right: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px16 { padding-le= ft: var(--su16) !important; padding-right: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px24 { padding-le= ft: var(--su24) !important; padding-right: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px32 { padding-le= ft: var(--su32) !important; padding-right: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px48 { padding-le= ft: var(--su48) !important; padding-right: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px64 { padding-le= ft: var(--su64) !important; padding-right: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px96 { padding-le= ft: var(--su96) !important; padding-right: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:px128 { padding-l= eft: var(--su128) !important; padding-right: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py0 { padding-top= : var(--su0) !important; padding-bottom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py1 { padding-top= : var(--su1) !important; padding-bottom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py2 { padding-top= : var(--su2) !important; padding-bottom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py4 { padding-top= : var(--su4) !important; padding-bottom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py6 { padding-top= : var(--su6) !important; padding-bottom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py8 { padding-top= : var(--su8) !important; padding-bottom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py12 { padding-to= p: var(--su12) !important; padding-bottom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py16 { padding-to= p: var(--su16) !important; padding-bottom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py24 { padding-to= p: var(--su24) !important; padding-bottom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py32 { padding-to= p: var(--su32) !important; padding-bottom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py48 { padding-to= p: var(--su48) !important; padding-bottom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py64 { padding-to= p: var(--su64) !important; padding-bottom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py96 { padding-to= p: var(--su96) !important; padding-bottom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:py128 { padding-t= op: var(--su128) !important; padding-bottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i0 { inset: var(-= -su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i1 { inset: var(-= -su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i2 { inset: var(-= -su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i4 { inset: var(-= -su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i6 { inset: var(-= -su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i8 { inset: var(-= -su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i12 { inset: var(= --su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i16 { inset: var(= --su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i24 { inset: var(= --su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i32 { inset: var(= --su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i48 { inset: var(= --su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i64 { inset: var(= --su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i96 { inset: var(= --su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:i128 { inset: var= (--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t0 { top: var(--s= u0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t1 { top: var(--s= u1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t2 { top: var(--s= u2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t4 { top: var(--s= u4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t6 { top: var(--s= u6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t8 { top: var(--s= u8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t12 { top: var(--= su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t16 { top: var(--= su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t24 { top: var(--= su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t32 { top: var(--= su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t48 { top: var(--= su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t64 { top: var(--= su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t96 { top: var(--= su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t128 { top: var(-= -su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn1 { top: calc(v= ar(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn2 { top: calc(v= ar(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn4 { top: calc(v= ar(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn6 { top: calc(v= ar(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn8 { top: calc(v= ar(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn12 { top: calc(= var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn16 { top: calc(= var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn24 { top: calc(= var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn32 { top: calc(= var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn48 { top: calc(= var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn64 { top: calc(= var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn96 { top: calc(= var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn128 { top: calc= (var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t50 { top: 50% !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:t100 { top: 100% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn50 { top: -50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:tn100 { top: -100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r0 { right: var(-= -su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r1 { right: var(-= -su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r2 { right: var(-= -su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r4 { right: var(-= -su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r6 { right: var(-= -su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r8 { right: var(-= -su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r12 { right: var(= --su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r16 { right: var(= --su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r24 { right: var(= --su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r32 { right: var(= --su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r48 { right: var(= --su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r64 { right: var(= --su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r96 { right: var(= --su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r128 { right: var= (--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn1 { right: calc= (var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn2 { right: calc= (var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn4 { right: calc= (var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn6 { right: calc= (var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn8 { right: calc= (var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn12 { right: cal= c(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn16 { right: cal= c(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn24 { right: cal= c(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn32 { right: cal= c(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn48 { right: cal= c(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn64 { right: cal= c(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn96 { right: cal= c(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn128 { right: ca= lc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r50 { right: 50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:r100 { right: 100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn50 { right: -50= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:rn100 { right: -1= 00% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b0 { bottom: var(= --su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b1 { bottom: var(= --su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b2 { bottom: var(= --su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b4 { bottom: var(= --su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b6 { bottom: var(= --su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b8 { bottom: var(= --su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b12 { bottom: var= (--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b16 { bottom: var= (--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b24 { bottom: var= (--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b32 { bottom: var= (--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b48 { bottom: var= (--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b64 { bottom: var= (--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b96 { bottom: var= (--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b128 { bottom: va= r(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn1 { bottom: cal= c(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn2 { bottom: cal= c(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn4 { bottom: cal= c(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn6 { bottom: cal= c(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn8 { bottom: cal= c(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn12 { bottom: ca= lc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn16 { bottom: ca= lc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn24 { bottom: ca= lc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn32 { bottom: ca= lc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn48 { bottom: ca= lc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn64 { bottom: ca= lc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn96 { bottom: ca= lc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn128 { bottom: c= alc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b50 { bottom: 50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:b100 { bottom: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn50 { bottom: -5= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bn100 { bottom: -= 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l0 { left: var(--= su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l1 { left: var(--= su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l2 { left: var(--= su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l4 { left: var(--= su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l6 { left: var(--= su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l8 { left: var(--= su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l12 { left: var(-= -su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l16 { left: var(-= -su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l24 { left: var(-= -su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l32 { left: var(-= -su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l48 { left: var(-= -su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l64 { left: var(-= -su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l96 { left: var(-= -su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l128 { left: var(= --su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln1 { left: calc(= var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln2 { left: calc(= var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln4 { left: calc(= var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln6 { left: calc(= var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln8 { left: calc(= var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln12 { left: calc= (var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln16 { left: calc= (var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln24 { left: calc= (var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln32 { left: calc= (var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln48 { left: calc= (var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln64 { left: calc= (var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln96 { left: calc= (var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln128 { left: cal= c(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l50 { left: 50% != important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:l100 { left: 100%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln50 { left: -50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ln100 { left: -10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ta-left { text-al= ign: left !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ta-center { text-= align: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ta-right { text-a= lign: right !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-block { display= : block !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-flex { display:= flex !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-inline-flex { d= isplay: inline-flex !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-grid { display:= grid !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-inline-grid { d= isplay: inline-grid !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-inline { displa= y: inline !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-inline-block { = display: inline-block !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:d-none { display:= none !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ps-absolute { pos= ition: absolute !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ps-fixed { positi= on: fixed !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ps-relative { pos= ition: relative !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ps-static { posit= ion: static !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:ps-sticky { posit= ion: sticky !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:bs-none { box-sha= dow: none !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w25 { width: 25% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w33 { width: 33.3= 333% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w50 { width: 50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w66 { width: 66.6= 667% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w75 { width: 75% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w100 { width: 100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w-auto { width: a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:w-screen { width:= 100vw !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:wmx100 { max-widt= h: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:wmx-initial { max= -width: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:wmx-screen { max-= width: 100vw !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:wmn100 { min-widt= h: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:wmn-initial { min= -width: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:h100 { height: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:h-auto { height: = auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:h-screen { height= : 100vh !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:hmx100 { max-heig= ht: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:hmx-initial { max= -height: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:hmx-screen { max-= height: 100vh !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:hmn100 { min-heig= ht: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:hmn-initial { min= -height: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .lg\:hmn-screen { min-= height: 100vh !important; } } @media (max-width: 1100px) { html.html__responsive.html__unpinned-leftnav .lg\:ba { border-style: soli= d !important; border-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bt { border-top-style: = solid !important; border-top-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:br { border-right-style= : solid !important; border-right-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bb { border-bottom-styl= e: solid !important; border-bottom-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bl { border-left-style:= solid !important; border-left-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:baw0 { border-width: 0p= x !important; } html.html__responsive.html__unpinned-leftnav .lg\:btw0 { border-top-width= : 0px !important; } html.html__responsive.html__unpinned-leftnav .lg\:brw0 { border-right-wid= th: 0px !important; } html.html__responsive.html__unpinned-leftnav .lg\:bbw0 { border-bottom-wi= dth: 0px !important; } html.html__responsive.html__unpinned-leftnav .lg\:blw0 { border-left-widt= h: 0px !important; } html.html__responsive.html__unpinned-leftnav .lg\:bar0 { border-radius: 0= px !important; } html.html__responsive.html__unpinned-leftnav .lg\:fd-row { flex-direction= : row !important; } html.html__responsive.html__unpinned-leftnav .lg\:fd-row-reverse { flex-d= irection: row-reverse !important; } html.html__responsive.html__unpinned-leftnav .lg\:fd-column { flex-direct= ion: column !important; } html.html__responsive.html__unpinned-leftnav .lg\:fd-column-reverse { fle= x-direction: column-reverse !important; } html.html__responsive.html__unpinned-leftnav .lg\:fw-wrap { flex-wrap: wr= ap !important; } html.html__responsive.html__unpinned-leftnav .lg\:fw-reverse { flex-wrap:= wrap-reverse !important; } html.html__responsive.html__unpinned-leftnav .lg\:fw-nowrap { flex-wrap: = nowrap !important; } html.html__responsive.html__unpinned-leftnav .lg\:jc-center { justify-con= tent: center !important; } html.html__responsive.html__unpinned-leftnav .lg\:jc-end { justify-conten= t: flex-end !important; } html.html__responsive.html__unpinned-leftnav .lg\:jc-space-around { justi= fy-content: space-around !important; } html.html__responsive.html__unpinned-leftnav .lg\:jc-space-between { just= ify-content: space-between !important; } html.html__responsive.html__unpinned-leftnav .lg\:jc-space-evenly { justi= fy-content: space-evenly !important; } html.html__responsive.html__unpinned-leftnav .lg\:jc-start { justify-cont= ent: flex-start !important; } html.html__responsive.html__unpinned-leftnav .lg\:ai-baseline { align-ite= ms: baseline !important; } html.html__responsive.html__unpinned-leftnav .lg\:ai-center { align-items= : center !important; } html.html__responsive.html__unpinned-leftnav .lg\:ai-end { align-items: f= lex-end !important; } html.html__responsive.html__unpinned-leftnav .lg\:ai-start { align-items:= flex-start !important; } html.html__responsive.html__unpinned-leftnav .lg\:ai-stretch { align-item= s: stretch !important; } html.html__responsive.html__unpinned-leftnav .lg\:as-auto { align-self: a= uto !important; } html.html__responsive.html__unpinned-leftnav .lg\:as-baseline { align-sel= f: baseline !important; } html.html__responsive.html__unpinned-leftnav .lg\:as-center { align-self:= center !important; } html.html__responsive.html__unpinned-leftnav .lg\:as-end { align-self: fl= ex-end !important; } html.html__responsive.html__unpinned-leftnav .lg\:as-start { align-self: = flex-start !important; } html.html__responsive.html__unpinned-leftnav .lg\:as-stretch { align-self= : stretch !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-grow1 { flex-grow: 1= !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-grow0 { flex-grow: 0= !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-shrink1 { flex-shrin= k: 1 !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-shrink0 { flex-shrin= k: 0 !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-none { flex: 0 0 aut= o !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-initial { flex: 0 1 = auto !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-auto { flex: 1 1 aut= o !important; } html.html__responsive.html__unpinned-leftnav .lg\:fl-equal { flex: 1 1 0%= !important; } html.html__responsive.html__unpinned-leftnav .lg\:order-first { order: -1= !important; } html.html__responsive.html__unpinned-leftnav .lg\:order-last { order: 1 != important; } html.html__responsive.html__unpinned-leftnav .lg\:fl0 { flex: 0 1 auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:fl1 { flex: 1 1 auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:g0 { --_gap-y: 0; --_ga= p-x: 0; } html.html__responsive.html__unpinned-leftnav .lg\:g1 { --_gap-y: var(--su= 1); --_gap-x: var(--su1); } html.html__responsive.html__unpinned-leftnav .lg\:g2 { --_gap-y: var(--su= 2); --_gap-x: var(--su2); } html.html__responsive.html__unpinned-leftnav .lg\:g4 { --_gap-y: var(--su= 4); --_gap-x: var(--su4); } html.html__responsive.html__unpinned-leftnav .lg\:g6 { --_gap-y: var(--su= 6); --_gap-x: var(--su6); } html.html__responsive.html__unpinned-leftnav .lg\:g8 { --_gap-y: var(--su= 8); --_gap-x: var(--su8); } html.html__responsive.html__unpinned-leftnav .lg\:g12 { --_gap-y: var(--s= u12); --_gap-x: var(--su12); } html.html__responsive.html__unpinned-leftnav .lg\:g16 { --_gap-y: var(--s= u16); --_gap-x: var(--su16); } html.html__responsive.html__unpinned-leftnav .lg\:g24 { --_gap-y: var(--s= u24); --_gap-x: var(--su24); } html.html__responsive.html__unpinned-leftnav .lg\:g32 { --_gap-y: var(--s= u32); --_gap-x: var(--su32); } html.html__responsive.html__unpinned-leftnav .lg\:g48 { --_gap-y: var(--s= u48); --_gap-x: var(--su48); } html.html__responsive.html__unpinned-leftnav .lg\:g64 { --_gap-y: var(--s= u64); --_gap-x: var(--su64); } html.html__responsive.html__unpinned-leftnav .lg\:gx0 { --_gap-x: 0; } html.html__responsive.html__unpinned-leftnav .lg\:gx1 { --_gap-x: var(--s= u1); } html.html__responsive.html__unpinned-leftnav .lg\:gx2 { --_gap-x: var(--s= u2); } html.html__responsive.html__unpinned-leftnav .lg\:gx4 { --_gap-x: var(--s= u4); } html.html__responsive.html__unpinned-leftnav .lg\:gx6 { --_gap-x: var(--s= u6); } html.html__responsive.html__unpinned-leftnav .lg\:gx8 { --_gap-x: var(--s= u8); } html.html__responsive.html__unpinned-leftnav .lg\:gx12 { --_gap-x: var(--= su12); } html.html__responsive.html__unpinned-leftnav .lg\:gx16 { --_gap-x: var(--= su16); } html.html__responsive.html__unpinned-leftnav .lg\:gx24 { --_gap-x: var(--= su24); } html.html__responsive.html__unpinned-leftnav .lg\:gx32 { --_gap-x: var(--= su32); } html.html__responsive.html__unpinned-leftnav .lg\:gx48 { --_gap-x: var(--= su48); } html.html__responsive.html__unpinned-leftnav .lg\:gx64 { --_gap-x: var(--= su64); } html.html__responsive.html__unpinned-leftnav .lg\:gy0 { --_gap-y: 0; } html.html__responsive.html__unpinned-leftnav .lg\:gy1 { --_gap-y: var(--s= u1); } html.html__responsive.html__unpinned-leftnav .lg\:gy2 { --_gap-y: var(--s= u2); } html.html__responsive.html__unpinned-leftnav .lg\:gy4 { --_gap-y: var(--s= u4); } html.html__responsive.html__unpinned-leftnav .lg\:gy6 { --_gap-y: var(--s= u6); } html.html__responsive.html__unpinned-leftnav .lg\:gy8 { --_gap-y: var(--s= u8); } html.html__responsive.html__unpinned-leftnav .lg\:gy12 { --_gap-y: var(--= su12); } html.html__responsive.html__unpinned-leftnav .lg\:gy16 { --_gap-y: var(--= su16); } html.html__responsive.html__unpinned-leftnav .lg\:gy24 { --_gap-y: var(--= su24); } html.html__responsive.html__unpinned-leftnav .lg\:gy32 { --_gap-y: var(--= su32); } html.html__responsive.html__unpinned-leftnav .lg\:gy48 { --_gap-y: var(--= su48); } html.html__responsive.html__unpinned-leftnav .lg\:gy64 { --_gap-y: var(--= su64); } html.html__responsive.html__unpinned-leftnav .lg\:g-af-dense { grid-auto-= flow: dense; } html.html__responsive.html__unpinned-leftnav .lg\:g-af-row { grid-auto-fl= ow: row; } html.html__responsive.html__unpinned-leftnav .lg\:g-af-column { grid-auto= -flow: column; } html.html__responsive.html__unpinned-leftnav .lg\:grid__1 { grid-template= -columns: repeat(1, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__2 { grid-template= -columns: repeat(2, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__3 { grid-template= -columns: repeat(3, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__4 { grid-template= -columns: repeat(4, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__5 { grid-template= -columns: repeat(5, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__6 { grid-template= -columns: repeat(6, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__7 { grid-template= -columns: repeat(7, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__8 { grid-template= -columns: repeat(8, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__9 { grid-template= -columns: repeat(9, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__10 { grid-templat= e-columns: repeat(10, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__11 { grid-templat= e-columns: repeat(11, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__12 { grid-templat= e-columns: repeat(12, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .lg\:grid__auto { grid-templ= ate-columns: auto 1fr; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-all { grid-co= lumn: 1 / -1; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-all { grid-ro= w: 1 / -1; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col1 { grid-colum= n: span 1; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col2 { grid-colum= n: span 2; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col3 { grid-colum= n: span 3; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col4 { grid-colum= n: span 4; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col5 { grid-colum= n: span 5; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col6 { grid-colum= n: span 6; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col7 { grid-colum= n: span 7; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col8 { grid-colum= n: span 8; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col9 { grid-colum= n: span 9; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col10 { grid-colu= mn: span 10; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col11 { grid-colu= mn: span 11; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col12 { grid-colu= mn: span 12; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row1 { grid-row: = span 1; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row2 { grid-row: = span 2; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row3 { grid-row: = span 3; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row4 { grid-row: = span 4; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row5 { grid-row: = span 5; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row6 { grid-row: = span 6; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row7 { grid-row: = span 7; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row8 { grid-row: = span 8; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row9 { grid-row: = span 9; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row10 { grid-row:= span 10; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row11 { grid-row:= span 11; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row12 { grid-row:= span 12; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start1 { grid= -column-start: 1; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start2 { grid= -column-start: 2; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start3 { grid= -column-start: 3; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start4 { grid= -column-start: 4; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start5 { grid= -column-start: 5; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start6 { grid= -column-start: 6; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start7 { grid= -column-start: 7; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start8 { grid= -column-start: 8; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start9 { grid= -column-start: 9; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start10 { gri= d-column-start: 10; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start11 { gri= d-column-start: 11; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-start12 { gri= d-column-start: 12; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end2 { grid-c= olumn-end: 2; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end3 { grid-c= olumn-end: 3; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end4 { grid-c= olumn-end: 4; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end5 { grid-c= olumn-end: 5; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end6 { grid-c= olumn-end: 6; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end7 { grid-c= olumn-end: 7; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end8 { grid-c= olumn-end: 8; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end9 { grid-c= olumn-end: 9; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end10 { grid-= column-end: 10; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end11 { grid-= column-end: 11; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end12 { grid-= column-end: 12; } html.html__responsive.html__unpinned-leftnav .lg\:grid--col-end13 { grid-= column-end: 13; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start1 { grid= -row-start: 1; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start2 { grid= -row-start: 2; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start3 { grid= -row-start: 3; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start4 { grid= -row-start: 4; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start5 { grid= -row-start: 5; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start6 { grid= -row-start: 6; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start7 { grid= -row-start: 7; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start8 { grid= -row-start: 8; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start9 { grid= -row-start: 9; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start10 { gri= d-row-start: 10; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start11 { gri= d-row-start: 11; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-start12 { gri= d-row-start: 12; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end2 { grid-r= ow-end: 2; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end3 { grid-r= ow-end: 3; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end4 { grid-r= ow-end: 4; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end5 { grid-r= ow-end: 5; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end6 { grid-r= ow-end: 6; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end7 { grid-r= ow-end: 7; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end8 { grid-r= ow-end: 8; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end9 { grid-r= ow-end: 9; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end10 { grid-= row-end: 10; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end11 { grid-= row-end: 11; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end12 { grid-= row-end: 12; } html.html__responsive.html__unpinned-leftnav .lg\:grid--row-end13 { grid-= row-end: 13; } html.html__responsive.html__unpinned-leftnav .lg\:ji-auto { } html.html__responsive.html__unpinned-leftnav .lg\:ji-center { justify-ite= ms: center !important; } html.html__responsive.html__unpinned-leftnav .lg\:ji-start { justify-item= s: start !important; } html.html__responsive.html__unpinned-leftnav .lg\:ji-end { justify-items:= end !important; } html.html__responsive.html__unpinned-leftnav .lg\:ji-stretch { justify-it= ems: stretch !important; } html.html__responsive.html__unpinned-leftnav .lg\:ji-unset { justify-item= s: unset !important; } html.html__responsive.html__unpinned-leftnav .lg\:js-auto { justify-self:= auto !important; } html.html__responsive.html__unpinned-leftnav .lg\:js-center { justify-sel= f: center !important; } html.html__responsive.html__unpinned-leftnav .lg\:js-start { justify-self= : start !important; } html.html__responsive.html__unpinned-leftnav .lg\:js-end { justify-self: = end !important; } html.html__responsive.html__unpinned-leftnav .lg\:js-stretch { justify-se= lf: stretch !important; } html.html__responsive.html__unpinned-leftnav .lg\:js-unset { justify-self= : unset !important; } html.html__responsive.html__unpinned-leftnav .lg\:m0 { margin: var(--su0)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:m1 { margin: var(--su1)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:m2 { margin: var(--su2)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:m4 { margin: var(--su4)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:m6 { margin: var(--su6)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:m8 { margin: var(--su8)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:m12 { margin: var(--su1= 2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m16 { margin: var(--su1= 6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m24 { margin: var(--su2= 4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m32 { margin: var(--su3= 2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m48 { margin: var(--su4= 8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m64 { margin: var(--su6= 4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m96 { margin: var(--su9= 6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m128 { margin: var(--su= 128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn1 { margin: calc(var(= --su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn2 { margin: calc(var(= --su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn4 { margin: calc(var(= --su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn6 { margin: calc(var(= --su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn8 { margin: calc(var(= --su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn12 { margin: calc(var= (--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn16 { margin: calc(var= (--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn24 { margin: calc(var= (--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn32 { margin: calc(var= (--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn48 { margin: calc(var= (--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn64 { margin: calc(var= (--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn96 { margin: calc(var= (--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mn128 { margin: calc(va= r(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:m50 { margin: 50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:m100 { margin: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .lg\:mn50 { margin: -50% !im= portant; } html.html__responsive.html__unpinned-leftnav .lg\:mn100 { margin: -100% != important; } html.html__responsive.html__unpinned-leftnav .lg\:mt0 { margin-top: var(-= -su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt1 { margin-top: var(-= -su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt2 { margin-top: var(-= -su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt4 { margin-top: var(-= -su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt6 { margin-top: var(-= -su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt8 { margin-top: var(-= -su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt12 { margin-top: var(= --su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt16 { margin-top: var(= --su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt24 { margin-top: var(= --su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt32 { margin-top: var(= --su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt48 { margin-top: var(= --su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt64 { margin-top: var(= --su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt96 { margin-top: var(= --su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt128 { margin-top: var= (--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn1 { margin-top: calc= (var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn2 { margin-top: calc= (var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn4 { margin-top: calc= (var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn6 { margin-top: calc= (var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn8 { margin-top: calc= (var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn12 { margin-top: cal= c(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn16 { margin-top: cal= c(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn24 { margin-top: cal= c(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn32 { margin-top: cal= c(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn48 { margin-top: cal= c(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn64 { margin-top: cal= c(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn96 { margin-top: cal= c(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn128 { margin-top: ca= lc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt50 { margin-top: 50% = !important; } html.html__responsive.html__unpinned-leftnav .lg\:mt100 { margin-top: 100= % !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn50 { margin-top: -50= % !important; } html.html__responsive.html__unpinned-leftnav .lg\:mtn100 { margin-top: -1= 00% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr0 { margin-right: var= (--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr1 { margin-right: var= (--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr2 { margin-right: var= (--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr4 { margin-right: var= (--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr6 { margin-right: var= (--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr8 { margin-right: var= (--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr12 { margin-right: va= r(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr16 { margin-right: va= r(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr24 { margin-right: va= r(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr32 { margin-right: va= r(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr48 { margin-right: va= r(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr64 { margin-right: va= r(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr96 { margin-right: va= r(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr128 { margin-right: v= ar(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn1 { margin-right: ca= lc(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn2 { margin-right: ca= lc(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn4 { margin-right: ca= lc(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn6 { margin-right: ca= lc(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn8 { margin-right: ca= lc(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn12 { margin-right: c= alc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn16 { margin-right: c= alc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn24 { margin-right: c= alc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn32 { margin-right: c= alc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn48 { margin-right: c= alc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn64 { margin-right: c= alc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn96 { margin-right: c= alc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn128 { margin-right: = calc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr50 { margin-right: 50= % !important; } html.html__responsive.html__unpinned-leftnav .lg\:mr100 { margin-right: 1= 00% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn50 { margin-right: -= 50% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mrn100 { margin-right: = -100% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb0 { margin-bottom: va= r(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb1 { margin-bottom: va= r(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb2 { margin-bottom: va= r(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb4 { margin-bottom: va= r(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb6 { margin-bottom: va= r(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb8 { margin-bottom: va= r(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb12 { margin-bottom: v= ar(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb16 { margin-bottom: v= ar(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb24 { margin-bottom: v= ar(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb32 { margin-bottom: v= ar(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb48 { margin-bottom: v= ar(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb64 { margin-bottom: v= ar(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb96 { margin-bottom: v= ar(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb128 { margin-bottom: = var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn1 { margin-bottom: c= alc(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn2 { margin-bottom: c= alc(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn4 { margin-bottom: c= alc(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn6 { margin-bottom: c= alc(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn8 { margin-bottom: c= alc(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn12 { margin-bottom: = calc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn16 { margin-bottom: = calc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn24 { margin-bottom: = calc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn32 { margin-bottom: = calc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn48 { margin-bottom: = calc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn64 { margin-bottom: = calc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn96 { margin-bottom: = calc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn128 { margin-bottom:= calc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb50 { margin-bottom: 5= 0% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mb100 { margin-bottom: = 100% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn50 { margin-bottom: = -50% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mbn100 { margin-bottom:= -100% !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml0 { margin-left: var(= --su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml1 { margin-left: var(= --su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml2 { margin-left: var(= --su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml4 { margin-left: var(= --su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml6 { margin-left: var(= --su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml8 { margin-left: var(= --su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml12 { margin-left: var= (--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml16 { margin-left: var= (--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml24 { margin-left: var= (--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml32 { margin-left: var= (--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml48 { margin-left: var= (--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml64 { margin-left: var= (--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml96 { margin-left: var= (--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml128 { margin-left: va= r(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln1 { margin-left: cal= c(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln2 { margin-left: cal= c(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln4 { margin-left: cal= c(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln6 { margin-left: cal= c(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln8 { margin-left: cal= c(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln12 { margin-left: ca= lc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln16 { margin-left: ca= lc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln24 { margin-left: ca= lc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln32 { margin-left: ca= lc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln48 { margin-left: ca= lc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln64 { margin-left: ca= lc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln96 { margin-left: ca= lc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln128 { margin-left: c= alc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml50 { margin-left: 50%= !important; } html.html__responsive.html__unpinned-leftnav .lg\:ml100 { margin-left: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln50 { margin-left: -5= 0% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mln100 { margin-left: -= 100% !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx0 { margin-left: var(= --su0) !important; margin-right: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx1 { margin-left: var(= --su1) !important; margin-right: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx2 { margin-left: var(= --su2) !important; margin-right: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx4 { margin-left: var(= --su4) !important; margin-right: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx6 { margin-left: var(= --su6) !important; margin-right: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx8 { margin-left: var(= --su8) !important; margin-right: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx12 { margin-left: var= (--su12) !important; margin-right: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx16 { margin-left: var= (--su16) !important; margin-right: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx24 { margin-left: var= (--su24) !important; margin-right: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx32 { margin-left: var= (--su32) !important; margin-right: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx48 { margin-left: var= (--su48) !important; margin-right: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx64 { margin-left: var= (--su64) !important; margin-right: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx96 { margin-left: var= (--su96) !important; margin-right: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mx128 { margin-left: va= r(--su128) !important; margin-right: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:mxn1 { margin-left: cal= c(var(--su1) * -1) !important; margin-right: calc(var(--su1) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:mxn2 { margin-left: cal= c(var(--su2) * -1) !important; margin-right: calc(var(--su2) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:mxn4 { margin-left: cal= c(var(--su4) * -1) !important; margin-right: calc(var(--su4) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:mxn6 { margin-left: cal= c(var(--su6) * -1) !important; margin-right: calc(var(--su6) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:mxn8 { margin-left: cal= c(var(--su8) * -1) !important; margin-right: calc(var(--su8) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:mxn12 { margin-left: ca= lc(var(--su12) * -1) !important; margin-right: calc(var(--su12) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn16 { margin-left: ca= lc(var(--su16) * -1) !important; margin-right: calc(var(--su16) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn24 { margin-left: ca= lc(var(--su24) * -1) !important; margin-right: calc(var(--su24) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn32 { margin-left: ca= lc(var(--su32) * -1) !important; margin-right: calc(var(--su32) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn48 { margin-left: ca= lc(var(--su48) * -1) !important; margin-right: calc(var(--su48) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn64 { margin-left: ca= lc(var(--su64) * -1) !important; margin-right: calc(var(--su64) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn96 { margin-left: ca= lc(var(--su96) * -1) !important; margin-right: calc(var(--su96) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:mxn128 { margin-left: c= alc(var(--su128) * -1) !important; margin-right: calc(var(--su128) * -1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:my0 { margin-top: var(-= -su0) !important; margin-bottom: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my1 { margin-top: var(-= -su1) !important; margin-bottom: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my2 { margin-top: var(-= -su2) !important; margin-bottom: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my4 { margin-top: var(-= -su4) !important; margin-bottom: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my6 { margin-top: var(-= -su6) !important; margin-bottom: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my8 { margin-top: var(-= -su8) !important; margin-bottom: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my12 { margin-top: var(= --su12) !important; margin-bottom: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my16 { margin-top: var(= --su16) !important; margin-bottom: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my24 { margin-top: var(= --su24) !important; margin-bottom: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my32 { margin-top: var(= --su32) !important; margin-bottom: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my48 { margin-top: var(= --su48) !important; margin-bottom: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my64 { margin-top: var(= --su64) !important; margin-bottom: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my96 { margin-top: var(= --su96) !important; margin-bottom: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:my128 { margin-top: var= (--su128) !important; margin-bottom: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:myn1 { margin-top: calc= (var(--su1) * -1) !important; margin-bottom: calc(var(--su1) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:myn2 { margin-top: calc= (var(--su2) * -1) !important; margin-bottom: calc(var(--su2) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:myn4 { margin-top: calc= (var(--su4) * -1) !important; margin-bottom: calc(var(--su4) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:myn6 { margin-top: calc= (var(--su6) * -1) !important; margin-bottom: calc(var(--su6) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:myn8 { margin-top: calc= (var(--su8) * -1) !important; margin-bottom: calc(var(--su8) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:myn12 { margin-top: cal= c(var(--su12) * -1) !important; margin-bottom: calc(var(--su12) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn16 { margin-top: cal= c(var(--su16) * -1) !important; margin-bottom: calc(var(--su16) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn24 { margin-top: cal= c(var(--su24) * -1) !important; margin-bottom: calc(var(--su24) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn32 { margin-top: cal= c(var(--su32) * -1) !important; margin-bottom: calc(var(--su32) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn48 { margin-top: cal= c(var(--su48) * -1) !important; margin-bottom: calc(var(--su48) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn64 { margin-top: cal= c(var(--su64) * -1) !important; margin-bottom: calc(var(--su64) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn96 { margin-top: cal= c(var(--su96) * -1) !important; margin-bottom: calc(var(--su96) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:myn128 { margin-top: ca= lc(var(--su128) * -1) !important; margin-bottom: calc(var(--su128) * -1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:p0 { padding: var(--su0= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p1 { padding: var(--su1= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p2 { padding: var(--su2= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p4 { padding: var(--su4= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p6 { padding: var(--su6= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p8 { padding: var(--su8= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p12 { padding: var(--su= 12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p16 { padding: var(--su= 16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p24 { padding: var(--su= 24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p32 { padding: var(--su= 32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p48 { padding: var(--su= 48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p64 { padding: var(--su= 64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p96 { padding: var(--su= 96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:p128 { padding: var(--s= u128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt0 { padding-top: var(= --su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt1 { padding-top: var(= --su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt2 { padding-top: var(= --su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt4 { padding-top: var(= --su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt6 { padding-top: var(= --su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt8 { padding-top: var(= --su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt12 { padding-top: var= (--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt16 { padding-top: var= (--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt24 { padding-top: var= (--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt32 { padding-top: var= (--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt48 { padding-top: var= (--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt64 { padding-top: var= (--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt96 { padding-top: var= (--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pt128 { padding-top: va= r(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr0 { padding-right: va= r(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr1 { padding-right: va= r(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr2 { padding-right: va= r(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr4 { padding-right: va= r(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr6 { padding-right: va= r(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr8 { padding-right: va= r(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr12 { padding-right: v= ar(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr16 { padding-right: v= ar(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr24 { padding-right: v= ar(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr32 { padding-right: v= ar(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr48 { padding-right: v= ar(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr64 { padding-right: v= ar(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr96 { padding-right: v= ar(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pr128 { padding-right: = var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb0 { padding-bottom: v= ar(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb1 { padding-bottom: v= ar(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb2 { padding-bottom: v= ar(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb4 { padding-bottom: v= ar(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb6 { padding-bottom: v= ar(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb8 { padding-bottom: v= ar(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb12 { padding-bottom: = var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb16 { padding-bottom: = var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb24 { padding-bottom: = var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb32 { padding-bottom: = var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb48 { padding-bottom: = var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb64 { padding-bottom: = var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb96 { padding-bottom: = var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pb128 { padding-bottom:= var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl0 { padding-left: var= (--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl1 { padding-left: var= (--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl2 { padding-left: var= (--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl4 { padding-left: var= (--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl6 { padding-left: var= (--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl8 { padding-left: var= (--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl12 { padding-left: va= r(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl16 { padding-left: va= r(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl24 { padding-left: va= r(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl32 { padding-left: va= r(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl48 { padding-left: va= r(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl64 { padding-left: va= r(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl96 { padding-left: va= r(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:pl128 { padding-left: v= ar(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px0 { padding-left: var= (--su0) !important; padding-right: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px1 { padding-left: var= (--su1) !important; padding-right: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px2 { padding-left: var= (--su2) !important; padding-right: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px4 { padding-left: var= (--su4) !important; padding-right: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px6 { padding-left: var= (--su6) !important; padding-right: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px8 { padding-left: var= (--su8) !important; padding-right: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px12 { padding-left: va= r(--su12) !important; padding-right: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px16 { padding-left: va= r(--su16) !important; padding-right: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px24 { padding-left: va= r(--su24) !important; padding-right: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px32 { padding-left: va= r(--su32) !important; padding-right: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px48 { padding-left: va= r(--su48) !important; padding-right: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px64 { padding-left: va= r(--su64) !important; padding-right: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px96 { padding-left: va= r(--su96) !important; padding-right: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:px128 { padding-left: v= ar(--su128) !important; padding-right: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py0 { padding-top: var(= --su0) !important; padding-bottom: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py1 { padding-top: var(= --su1) !important; padding-bottom: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py2 { padding-top: var(= --su2) !important; padding-bottom: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py4 { padding-top: var(= --su4) !important; padding-bottom: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py6 { padding-top: var(= --su6) !important; padding-bottom: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py8 { padding-top: var(= --su8) !important; padding-bottom: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py12 { padding-top: var= (--su12) !important; padding-bottom: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py16 { padding-top: var= (--su16) !important; padding-bottom: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py24 { padding-top: var= (--su24) !important; padding-bottom: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py32 { padding-top: var= (--su32) !important; padding-bottom: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py48 { padding-top: var= (--su48) !important; padding-bottom: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py64 { padding-top: var= (--su64) !important; padding-bottom: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py96 { padding-top: var= (--su96) !important; padding-bottom: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .lg\:py128 { padding-top: va= r(--su128) !important; padding-bottom: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i0 { inset: var(--su0) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:i1 { inset: var(--su1) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:i2 { inset: var(--su2) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:i4 { inset: var(--su4) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:i6 { inset: var(--su6) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:i8 { inset: var(--su8) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:i12 { inset: var(--su12= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i16 { inset: var(--su16= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i24 { inset: var(--su24= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i32 { inset: var(--su32= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i48 { inset: var(--su48= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i64 { inset: var(--su64= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i96 { inset: var(--su96= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:i128 { inset: var(--su1= 28) !important; } html.html__responsive.html__unpinned-leftnav .lg\:t0 { top: var(--su0) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:t1 { top: var(--su1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:t2 { top: var(--su2) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:t4 { top: var(--su4) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:t6 { top: var(--su6) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:t8 { top: var(--su8) !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:t12 { top: var(--su12) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t16 { top: var(--su16) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t24 { top: var(--su24) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t32 { top: var(--su32) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t48 { top: var(--su48) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t64 { top: var(--su64) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t96 { top: var(--su96) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:t128 { top: var(--su128= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn1 { top: calc(var(--s= u1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn2 { top: calc(var(--s= u2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn4 { top: calc(var(--s= u4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn6 { top: calc(var(--s= u6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn8 { top: calc(var(--s= u8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn12 { top: calc(var(--= su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn16 { top: calc(var(--= su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn24 { top: calc(var(--= su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn32 { top: calc(var(--= su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn48 { top: calc(var(--= su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn64 { top: calc(var(--= su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn96 { top: calc(var(--= su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:tn128 { top: calc(var(-= -su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:t50 { top: 50% !importa= nt; } html.html__responsive.html__unpinned-leftnav .lg\:t100 { top: 100% !impor= tant; } html.html__responsive.html__unpinned-leftnav .lg\:tn50 { top: -50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .lg\:tn100 { top: -100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .lg\:r0 { right: var(--su0) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:r1 { right: var(--su1) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:r2 { right: var(--su2) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:r4 { right: var(--su4) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:r6 { right: var(--su6) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:r8 { right: var(--su8) = !important; } html.html__responsive.html__unpinned-leftnav .lg\:r12 { right: var(--su12= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r16 { right: var(--su16= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r24 { right: var(--su24= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r32 { right: var(--su32= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r48 { right: var(--su48= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r64 { right: var(--su64= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r96 { right: var(--su96= ) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r128 { right: var(--su1= 28) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn1 { right: calc(var(-= -su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn2 { right: calc(var(-= -su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn4 { right: calc(var(-= -su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn6 { right: calc(var(-= -su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn8 { right: calc(var(-= -su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn12 { right: calc(var(= --su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn16 { right: calc(var(= --su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn24 { right: calc(var(= --su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn32 { right: calc(var(= --su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn48 { right: calc(var(= --su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn64 { right: calc(var(= --su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn96 { right: calc(var(= --su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:rn128 { right: calc(var= (--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:r50 { right: 50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .lg\:r100 { right: 100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .lg\:rn50 { right: -50% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .lg\:rn100 { right: -100% !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:b0 { bottom: var(--su0)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:b1 { bottom: var(--su1)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:b2 { bottom: var(--su2)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:b4 { bottom: var(--su4)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:b6 { bottom: var(--su6)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:b8 { bottom: var(--su8)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:b12 { bottom: var(--su1= 2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b16 { bottom: var(--su1= 6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b24 { bottom: var(--su2= 4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b32 { bottom: var(--su3= 2) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b48 { bottom: var(--su4= 8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b64 { bottom: var(--su6= 4) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b96 { bottom: var(--su9= 6) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b128 { bottom: var(--su= 128) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn1 { bottom: calc(var(= --su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn2 { bottom: calc(var(= --su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn4 { bottom: calc(var(= --su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn6 { bottom: calc(var(= --su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn8 { bottom: calc(var(= --su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn12 { bottom: calc(var= (--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn16 { bottom: calc(var= (--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn24 { bottom: calc(var= (--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn32 { bottom: calc(var= (--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn48 { bottom: calc(var= (--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn64 { bottom: calc(var= (--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn96 { bottom: calc(var= (--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:bn128 { bottom: calc(va= r(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:b50 { bottom: 50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:b100 { bottom: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .lg\:bn50 { bottom: -50% !im= portant; } html.html__responsive.html__unpinned-leftnav .lg\:bn100 { bottom: -100% != important; } html.html__responsive.html__unpinned-leftnav .lg\:l0 { left: var(--su0) != important; } html.html__responsive.html__unpinned-leftnav .lg\:l1 { left: var(--su1) != important; } html.html__responsive.html__unpinned-leftnav .lg\:l2 { left: var(--su2) != important; } html.html__responsive.html__unpinned-leftnav .lg\:l4 { left: var(--su4) != important; } html.html__responsive.html__unpinned-leftnav .lg\:l6 { left: var(--su6) != important; } html.html__responsive.html__unpinned-leftnav .lg\:l8 { left: var(--su8) != important; } html.html__responsive.html__unpinned-leftnav .lg\:l12 { left: var(--su12)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l16 { left: var(--su16)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l24 { left: var(--su24)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l32 { left: var(--su32)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l48 { left: var(--su48)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l64 { left: var(--su64)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l96 { left: var(--su96)= !important; } html.html__responsive.html__unpinned-leftnav .lg\:l128 { left: var(--su12= 8) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln1 { left: calc(var(--= su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln2 { left: calc(var(--= su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln4 { left: calc(var(--= su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln6 { left: calc(var(--= su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln8 { left: calc(var(--= su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln12 { left: calc(var(-= -su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln16 { left: calc(var(-= -su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln24 { left: calc(var(-= -su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln32 { left: calc(var(-= -su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln48 { left: calc(var(-= -su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln64 { left: calc(var(-= -su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln96 { left: calc(var(-= -su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:ln128 { left: calc(var(= --su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .lg\:l50 { left: 50% !import= ant; } html.html__responsive.html__unpinned-leftnav .lg\:l100 { left: 100% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:ln50 { left: -50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .lg\:ln100 { left: -100% !im= portant; } html.html__responsive.html__unpinned-leftnav .lg\:ta-left { text-align: l= eft !important; } html.html__responsive.html__unpinned-leftnav .lg\:ta-center { text-align:= center !important; } html.html__responsive.html__unpinned-leftnav .lg\:ta-right { text-align: = right !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-block { display: bloc= k !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-flex { display: flex = !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-inline-flex { display= : inline-flex !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-grid { display: grid = !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-inline-grid { display= : inline-grid !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-inline { display: inl= ine !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-inline-block { displa= y: inline-block !important; } html.html__responsive.html__unpinned-leftnav .lg\:d-none { display: none = !important; } html.html__responsive.html__unpinned-leftnav .lg\:ps-absolute { position:= absolute !important; } html.html__responsive.html__unpinned-leftnav .lg\:ps-fixed { position: fi= xed !important; } html.html__responsive.html__unpinned-leftnav .lg\:ps-relative { position:= relative !important; } html.html__responsive.html__unpinned-leftnav .lg\:ps-static { position: s= tatic !important; } html.html__responsive.html__unpinned-leftnav .lg\:ps-sticky { position: s= ticky !important; } html.html__responsive.html__unpinned-leftnav .lg\:bs-none { box-shadow: n= one !important; } html.html__responsive.html__unpinned-leftnav .lg\:w25 { width: 25% !impor= tant; } html.html__responsive.html__unpinned-leftnav .lg\:w33 { width: 33.3333% != important; } html.html__responsive.html__unpinned-leftnav .lg\:w50 { width: 50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .lg\:w66 { width: 66.6667% != important; } html.html__responsive.html__unpinned-leftnav .lg\:w75 { width: 75% !impor= tant; } html.html__responsive.html__unpinned-leftnav .lg\:w100 { width: 100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .lg\:w-auto { width: auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .lg\:w-screen { width: 100vw= !important; } html.html__responsive.html__unpinned-leftnav .lg\:wmx100 { max-width: 100= % !important; } html.html__responsive.html__unpinned-leftnav .lg\:wmx-initial { max-width= : initial !important; } html.html__responsive.html__unpinned-leftnav .lg\:wmx-screen { max-width:= 100vw !important; } html.html__responsive.html__unpinned-leftnav .lg\:wmn100 { min-width: 100= % !important; } html.html__responsive.html__unpinned-leftnav .lg\:wmn-initial { min-width= : initial !important; } html.html__responsive.html__unpinned-leftnav .lg\:h100 { height: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .lg\:h-auto { height: auto != important; } html.html__responsive.html__unpinned-leftnav .lg\:h-screen { height: 100v= h !important; } html.html__responsive.html__unpinned-leftnav .lg\:hmx100 { max-height: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .lg\:hmx-initial { max-heigh= t: initial !important; } html.html__responsive.html__unpinned-leftnav .lg\:hmx-screen { max-height= : 100vh !important; } html.html__responsive.html__unpinned-leftnav .lg\:hmn100 { min-height: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .lg\:hmn-initial { min-heigh= t: initial !important; } html.html__responsive.html__unpinned-leftnav .lg\:hmn-screen { min-height= : 100vh !important; } } @media (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .md\:ba { border-style= : solid !important; border-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bt { border-top-s= tyle: solid !important; border-top-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:br { border-right= -style: solid !important; border-right-width: var(--su-static1) !important;= } html.html__responsive:not(.html__unpinned-leftnav) .md\:bb { border-botto= m-style: solid !important; border-bottom-width: var(--su-static1) !importan= t; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bl { border-left-= style: solid !important; border-left-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:baw0 { border-wid= th: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:btw0 { border-top= -width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:brw0 { border-rig= ht-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bbw0 { border-bot= tom-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:blw0 { border-lef= t-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bar0 { border-rad= ius: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fd-row { flex-dir= ection: row !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fd-row-reverse { = flex-direction: row-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fd-column { flex-= direction: column !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fd-column-reverse= { flex-direction: column-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fw-wrap { flex-wr= ap: wrap !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fw-reverse { flex= -wrap: wrap-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fw-nowrap { flex-= wrap: nowrap !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:jc-center { justi= fy-content: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:jc-end { justify-= content: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:jc-space-around {= justify-content: space-around !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:jc-space-between = { justify-content: space-between !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:jc-space-evenly {= justify-content: space-evenly !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:jc-start { justif= y-content: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ai-baseline { ali= gn-items: baseline !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ai-center { align= -items: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ai-end { align-it= ems: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ai-start { align-= items: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ai-stretch { alig= n-items: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:as-auto { align-s= elf: auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:as-baseline { ali= gn-self: baseline !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:as-center { align= -self: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:as-end { align-se= lf: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:as-start { align-= self: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:as-stretch { alig= n-self: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-grow1 { flex-g= row: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-grow0 { flex-g= row: 0 !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-shrink1 { flex= -shrink: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-shrink0 { flex= -shrink: 0 !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-none { flex: 0= 0 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-initial { flex= : 0 1 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-auto { flex: 1= 1 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl-equal { flex: = 1 1 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:order-first { ord= er: -1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:order-last { orde= r: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl0 { flex: 0 1 a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:fl1 { flex: 1 1 a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:g0 { --_gap-y: 0;= --_gap-x: 0; } html.html__responsive:not(.html__unpinned-leftnav) .md\:g1 { --_gap-y: va= r(--su1); --_gap-x: var(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g2 { --_gap-y: va= r(--su2); --_gap-x: var(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g4 { --_gap-y: va= r(--su4); --_gap-x: var(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g6 { --_gap-y: va= r(--su6); --_gap-x: var(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g8 { --_gap-y: va= r(--su8); --_gap-x: var(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g12 { --_gap-y: v= ar(--su12); --_gap-x: var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g16 { --_gap-y: v= ar(--su16); --_gap-x: var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g24 { --_gap-y: v= ar(--su24); --_gap-x: var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g32 { --_gap-y: v= ar(--su32); --_gap-x: var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g48 { --_gap-y: v= ar(--su48); --_gap-x: var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g64 { --_gap-y: v= ar(--su64); --_gap-x: var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx0 { --_gap-x: 0= ; } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx1 { --_gap-x: v= ar(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx2 { --_gap-x: v= ar(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx4 { --_gap-x: v= ar(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx6 { --_gap-x: v= ar(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx8 { --_gap-x: v= ar(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx12 { --_gap-x: = var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx16 { --_gap-x: = var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx24 { --_gap-x: = var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx32 { --_gap-x: = var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx48 { --_gap-x: = var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gx64 { --_gap-x: = var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy0 { --_gap-y: 0= ; } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy1 { --_gap-y: v= ar(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy2 { --_gap-y: v= ar(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy4 { --_gap-y: v= ar(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy6 { --_gap-y: v= ar(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy8 { --_gap-y: v= ar(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy12 { --_gap-y: = var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy16 { --_gap-y: = var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy24 { --_gap-y: = var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy32 { --_gap-y: = var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy48 { --_gap-y: = var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .md\:gy64 { --_gap-y: = var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .md\:g-af-dense { grid= -auto-flow: dense; } html.html__responsive:not(.html__unpinned-leftnav) .md\:g-af-row { grid-a= uto-flow: row; } html.html__responsive:not(.html__unpinned-leftnav) .md\:g-af-column { gri= d-auto-flow: column; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__1 { grid-te= mplate-columns: repeat(1, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__2 { grid-te= mplate-columns: repeat(2, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__3 { grid-te= mplate-columns: repeat(3, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__4 { grid-te= mplate-columns: repeat(4, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__5 { grid-te= mplate-columns: repeat(5, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__6 { grid-te= mplate-columns: repeat(6, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__7 { grid-te= mplate-columns: repeat(7, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__8 { grid-te= mplate-columns: repeat(8, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__9 { grid-te= mplate-columns: repeat(9, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__10 { grid-t= emplate-columns: repeat(10, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__11 { grid-t= emplate-columns: repeat(11, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__12 { grid-t= emplate-columns: repeat(12, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid__auto { grid= -template-columns: auto 1fr; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-all { g= rid-column: 1 / -1; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-all { g= rid-row: 1 / -1; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col1 { grid= -column: span 1; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col2 { grid= -column: span 2; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col3 { grid= -column: span 3; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col4 { grid= -column: span 4; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col5 { grid= -column: span 5; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col6 { grid= -column: span 6; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col7 { grid= -column: span 7; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col8 { grid= -column: span 8; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col9 { grid= -column: span 9; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col10 { gri= d-column: span 10; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col11 { gri= d-column: span 11; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col12 { gri= d-column: span 12; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row1 { grid= -row: span 1; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row2 { grid= -row: span 2; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row3 { grid= -row: span 3; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row4 { grid= -row: span 4; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row5 { grid= -row: span 5; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row6 { grid= -row: span 6; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row7 { grid= -row: span 7; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row8 { grid= -row: span 8; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row9 { grid= -row: span 9; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row10 { gri= d-row: span 10; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row11 { gri= d-row: span 11; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row12 { gri= d-row: span 12; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start1 = { grid-column-start: 1; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start2 = { grid-column-start: 2; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start3 = { grid-column-start: 3; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start4 = { grid-column-start: 4; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start5 = { grid-column-start: 5; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start6 = { grid-column-start: 6; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start7 = { grid-column-start: 7; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start8 = { grid-column-start: 8; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start9 = { grid-column-start: 9; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start10= { grid-column-start: 10; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start11= { grid-column-start: 11; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-start12= { grid-column-start: 12; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end2 { = grid-column-end: 2; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end3 { = grid-column-end: 3; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end4 { = grid-column-end: 4; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end5 { = grid-column-end: 5; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end6 { = grid-column-end: 6; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end7 { = grid-column-end: 7; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end8 { = grid-column-end: 8; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end9 { = grid-column-end: 9; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end10 {= grid-column-end: 10; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end11 {= grid-column-end: 11; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end12 {= grid-column-end: 12; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--col-end13 {= grid-column-end: 13; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start1 = { grid-row-start: 1; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start2 = { grid-row-start: 2; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start3 = { grid-row-start: 3; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start4 = { grid-row-start: 4; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start5 = { grid-row-start: 5; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start6 = { grid-row-start: 6; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start7 = { grid-row-start: 7; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start8 = { grid-row-start: 8; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start9 = { grid-row-start: 9; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start10= { grid-row-start: 10; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start11= { grid-row-start: 11; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-start12= { grid-row-start: 12; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end2 { = grid-row-end: 2; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end3 { = grid-row-end: 3; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end4 { = grid-row-end: 4; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end5 { = grid-row-end: 5; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end6 { = grid-row-end: 6; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end7 { = grid-row-end: 7; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end8 { = grid-row-end: 8; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end9 { = grid-row-end: 9; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end10 {= grid-row-end: 10; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end11 {= grid-row-end: 11; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end12 {= grid-row-end: 12; } html.html__responsive:not(.html__unpinned-leftnav) .md\:grid--row-end13 {= grid-row-end: 13; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ji-auto { } html.html__responsive:not(.html__unpinned-leftnav) .md\:ji-center { justi= fy-items: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ji-start { justif= y-items: start !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ji-end { justify-= items: end !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ji-stretch { just= ify-items: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ji-unset { justif= y-items: unset !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:js-auto { justify= -self: auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:js-center { justi= fy-self: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:js-start { justif= y-self: start !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:js-end { justify-= self: end !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:js-stretch { just= ify-self: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:js-unset { justif= y-self: unset !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m0 { margin: var(= --su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m1 { margin: var(= --su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m2 { margin: var(= --su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m4 { margin: var(= --su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m6 { margin: var(= --su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m8 { margin: var(= --su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m12 { margin: var= (--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m16 { margin: var= (--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m24 { margin: var= (--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m32 { margin: var= (--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m48 { margin: var= (--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m64 { margin: var= (--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m96 { margin: var= (--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m128 { margin: va= r(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn1 { margin: cal= c(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn2 { margin: cal= c(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn4 { margin: cal= c(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn6 { margin: cal= c(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn8 { margin: cal= c(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn12 { margin: ca= lc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn16 { margin: ca= lc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn24 { margin: ca= lc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn32 { margin: ca= lc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn48 { margin: ca= lc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn64 { margin: ca= lc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn96 { margin: ca= lc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn128 { margin: c= alc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m50 { margin: 50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:m100 { margin: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn50 { margin: -5= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mn100 { margin: -= 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt0 { margin-top:= var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt1 { margin-top:= var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt2 { margin-top:= var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt4 { margin-top:= var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt6 { margin-top:= var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt8 { margin-top:= var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt12 { margin-top= : var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt16 { margin-top= : var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt24 { margin-top= : var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt32 { margin-top= : var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt48 { margin-top= : var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt64 { margin-top= : var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt96 { margin-top= : var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt128 { margin-to= p: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn1 { margin-top= : calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn2 { margin-top= : calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn4 { margin-top= : calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn6 { margin-top= : calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn8 { margin-top= : calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn12 { margin-to= p: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn16 { margin-to= p: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn24 { margin-to= p: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn32 { margin-to= p: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn48 { margin-to= p: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn64 { margin-to= p: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn96 { margin-to= p: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn128 { margin-t= op: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt50 { margin-top= : 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mt100 { margin-to= p: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn50 { margin-to= p: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mtn100 { margin-t= op: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr0 { margin-righ= t: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr1 { margin-righ= t: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr2 { margin-righ= t: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr4 { margin-righ= t: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr6 { margin-righ= t: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr8 { margin-righ= t: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr12 { margin-rig= ht: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr16 { margin-rig= ht: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr24 { margin-rig= ht: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr32 { margin-rig= ht: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr48 { margin-rig= ht: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr64 { margin-rig= ht: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr96 { margin-rig= ht: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr128 { margin-ri= ght: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn1 { margin-rig= ht: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn2 { margin-rig= ht: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn4 { margin-rig= ht: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn6 { margin-rig= ht: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn8 { margin-rig= ht: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn12 { margin-ri= ght: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn16 { margin-ri= ght: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn24 { margin-ri= ght: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn32 { margin-ri= ght: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn48 { margin-ri= ght: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn64 { margin-ri= ght: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn96 { margin-ri= ght: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn128 { margin-r= ight: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr50 { margin-rig= ht: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mr100 { margin-ri= ght: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn50 { margin-ri= ght: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mrn100 { margin-r= ight: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb0 { margin-bott= om: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb1 { margin-bott= om: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb2 { margin-bott= om: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb4 { margin-bott= om: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb6 { margin-bott= om: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb8 { margin-bott= om: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb12 { margin-bot= tom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb16 { margin-bot= tom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb24 { margin-bot= tom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb32 { margin-bot= tom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb48 { margin-bot= tom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb64 { margin-bot= tom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb96 { margin-bot= tom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb128 { margin-bo= ttom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn1 { margin-bot= tom: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn2 { margin-bot= tom: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn4 { margin-bot= tom: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn6 { margin-bot= tom: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn8 { margin-bot= tom: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn12 { margin-bo= ttom: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn16 { margin-bo= ttom: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn24 { margin-bo= ttom: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn32 { margin-bo= ttom: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn48 { margin-bo= ttom: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn64 { margin-bo= ttom: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn96 { margin-bo= ttom: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn128 { margin-b= ottom: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb50 { margin-bot= tom: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mb100 { margin-bo= ttom: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn50 { margin-bo= ttom: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mbn100 { margin-b= ottom: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml0 { margin-left= : var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml1 { margin-left= : var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml2 { margin-left= : var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml4 { margin-left= : var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml6 { margin-left= : var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml8 { margin-left= : var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml12 { margin-lef= t: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml16 { margin-lef= t: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml24 { margin-lef= t: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml32 { margin-lef= t: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml48 { margin-lef= t: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml64 { margin-lef= t: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml96 { margin-lef= t: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml128 { margin-le= ft: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln1 { margin-lef= t: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln2 { margin-lef= t: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln4 { margin-lef= t: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln6 { margin-lef= t: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln8 { margin-lef= t: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln12 { margin-le= ft: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln16 { margin-le= ft: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln24 { margin-le= ft: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln32 { margin-le= ft: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln48 { margin-le= ft: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln64 { margin-le= ft: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln96 { margin-le= ft: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln128 { margin-l= eft: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml50 { margin-lef= t: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ml100 { margin-le= ft: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln50 { margin-le= ft: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mln100 { margin-l= eft: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx0 { margin-left= : var(--su0) !important; margin-right: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx1 { margin-left= : var(--su1) !important; margin-right: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx2 { margin-left= : var(--su2) !important; margin-right: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx4 { margin-left= : var(--su4) !important; margin-right: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx6 { margin-left= : var(--su6) !important; margin-right: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx8 { margin-left= : var(--su8) !important; margin-right: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx12 { margin-lef= t: var(--su12) !important; margin-right: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx16 { margin-lef= t: var(--su16) !important; margin-right: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx24 { margin-lef= t: var(--su24) !important; margin-right: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx32 { margin-lef= t: var(--su32) !important; margin-right: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx48 { margin-lef= t: var(--su48) !important; margin-right: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx64 { margin-lef= t: var(--su64) !important; margin-right: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx96 { margin-lef= t: var(--su96) !important; margin-right: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mx128 { margin-le= ft: var(--su128) !important; margin-right: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn1 { margin-lef= t: calc(var(--su1) * -1) !important; margin-right: calc(var(--su1) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn2 { margin-lef= t: calc(var(--su2) * -1) !important; margin-right: calc(var(--su2) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn4 { margin-lef= t: calc(var(--su4) * -1) !important; margin-right: calc(var(--su4) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn6 { margin-lef= t: calc(var(--su6) * -1) !important; margin-right: calc(var(--su6) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn8 { margin-lef= t: calc(var(--su8) * -1) !important; margin-right: calc(var(--su8) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn12 { margin-le= ft: calc(var(--su12) * -1) !important; margin-right: calc(var(--su12) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn16 { margin-le= ft: calc(var(--su16) * -1) !important; margin-right: calc(var(--su16) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn24 { margin-le= ft: calc(var(--su24) * -1) !important; margin-right: calc(var(--su24) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn32 { margin-le= ft: calc(var(--su32) * -1) !important; margin-right: calc(var(--su32) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn48 { margin-le= ft: calc(var(--su48) * -1) !important; margin-right: calc(var(--su48) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn64 { margin-le= ft: calc(var(--su64) * -1) !important; margin-right: calc(var(--su64) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn96 { margin-le= ft: calc(var(--su96) * -1) !important; margin-right: calc(var(--su96) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:mxn128 { margin-l= eft: calc(var(--su128) * -1) !important; margin-right: calc(var(--su128) * = -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my0 { margin-top:= var(--su0) !important; margin-bottom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my1 { margin-top:= var(--su1) !important; margin-bottom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my2 { margin-top:= var(--su2) !important; margin-bottom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my4 { margin-top:= var(--su4) !important; margin-bottom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my6 { margin-top:= var(--su6) !important; margin-bottom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my8 { margin-top:= var(--su8) !important; margin-bottom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my12 { margin-top= : var(--su12) !important; margin-bottom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my16 { margin-top= : var(--su16) !important; margin-bottom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my24 { margin-top= : var(--su24) !important; margin-bottom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my32 { margin-top= : var(--su32) !important; margin-bottom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my48 { margin-top= : var(--su48) !important; margin-bottom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my64 { margin-top= : var(--su64) !important; margin-bottom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my96 { margin-top= : var(--su96) !important; margin-bottom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:my128 { margin-to= p: var(--su128) !important; margin-bottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn1 { margin-top= : calc(var(--su1) * -1) !important; margin-bottom: calc(var(--su1) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn2 { margin-top= : calc(var(--su2) * -1) !important; margin-bottom: calc(var(--su2) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn4 { margin-top= : calc(var(--su4) * -1) !important; margin-bottom: calc(var(--su4) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn6 { margin-top= : calc(var(--su6) * -1) !important; margin-bottom: calc(var(--su6) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn8 { margin-top= : calc(var(--su8) * -1) !important; margin-bottom: calc(var(--su8) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn12 { margin-to= p: calc(var(--su12) * -1) !important; margin-bottom: calc(var(--su12) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn16 { margin-to= p: calc(var(--su16) * -1) !important; margin-bottom: calc(var(--su16) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn24 { margin-to= p: calc(var(--su24) * -1) !important; margin-bottom: calc(var(--su24) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn32 { margin-to= p: calc(var(--su32) * -1) !important; margin-bottom: calc(var(--su32) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn48 { margin-to= p: calc(var(--su48) * -1) !important; margin-bottom: calc(var(--su48) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn64 { margin-to= p: calc(var(--su64) * -1) !important; margin-bottom: calc(var(--su64) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn96 { margin-to= p: calc(var(--su96) * -1) !important; margin-bottom: calc(var(--su96) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:myn128 { margin-t= op: calc(var(--su128) * -1) !important; margin-bottom: calc(var(--su128) * = -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p0 { padding: var= (--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p1 { padding: var= (--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p2 { padding: var= (--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p4 { padding: var= (--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p6 { padding: var= (--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p8 { padding: var= (--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p12 { padding: va= r(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p16 { padding: va= r(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p24 { padding: va= r(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p32 { padding: va= r(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p48 { padding: va= r(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p64 { padding: va= r(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p96 { padding: va= r(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:p128 { padding: v= ar(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt0 { padding-top= : var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt1 { padding-top= : var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt2 { padding-top= : var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt4 { padding-top= : var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt6 { padding-top= : var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt8 { padding-top= : var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt12 { padding-to= p: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt16 { padding-to= p: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt24 { padding-to= p: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt32 { padding-to= p: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt48 { padding-to= p: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt64 { padding-to= p: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt96 { padding-to= p: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pt128 { padding-t= op: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr0 { padding-rig= ht: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr1 { padding-rig= ht: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr2 { padding-rig= ht: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr4 { padding-rig= ht: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr6 { padding-rig= ht: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr8 { padding-rig= ht: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr12 { padding-ri= ght: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr16 { padding-ri= ght: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr24 { padding-ri= ght: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr32 { padding-ri= ght: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr48 { padding-ri= ght: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr64 { padding-ri= ght: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr96 { padding-ri= ght: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pr128 { padding-r= ight: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb0 { padding-bot= tom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb1 { padding-bot= tom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb2 { padding-bot= tom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb4 { padding-bot= tom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb6 { padding-bot= tom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb8 { padding-bot= tom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb12 { padding-bo= ttom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb16 { padding-bo= ttom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb24 { padding-bo= ttom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb32 { padding-bo= ttom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb48 { padding-bo= ttom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb64 { padding-bo= ttom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb96 { padding-bo= ttom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pb128 { padding-b= ottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl0 { padding-lef= t: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl1 { padding-lef= t: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl2 { padding-lef= t: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl4 { padding-lef= t: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl6 { padding-lef= t: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl8 { padding-lef= t: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl12 { padding-le= ft: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl16 { padding-le= ft: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl24 { padding-le= ft: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl32 { padding-le= ft: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl48 { padding-le= ft: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl64 { padding-le= ft: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl96 { padding-le= ft: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:pl128 { padding-l= eft: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px0 { padding-lef= t: var(--su0) !important; padding-right: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px1 { padding-lef= t: var(--su1) !important; padding-right: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px2 { padding-lef= t: var(--su2) !important; padding-right: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px4 { padding-lef= t: var(--su4) !important; padding-right: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px6 { padding-lef= t: var(--su6) !important; padding-right: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px8 { padding-lef= t: var(--su8) !important; padding-right: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px12 { padding-le= ft: var(--su12) !important; padding-right: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px16 { padding-le= ft: var(--su16) !important; padding-right: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px24 { padding-le= ft: var(--su24) !important; padding-right: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px32 { padding-le= ft: var(--su32) !important; padding-right: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px48 { padding-le= ft: var(--su48) !important; padding-right: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px64 { padding-le= ft: var(--su64) !important; padding-right: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px96 { padding-le= ft: var(--su96) !important; padding-right: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:px128 { padding-l= eft: var(--su128) !important; padding-right: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py0 { padding-top= : var(--su0) !important; padding-bottom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py1 { padding-top= : var(--su1) !important; padding-bottom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py2 { padding-top= : var(--su2) !important; padding-bottom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py4 { padding-top= : var(--su4) !important; padding-bottom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py6 { padding-top= : var(--su6) !important; padding-bottom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py8 { padding-top= : var(--su8) !important; padding-bottom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py12 { padding-to= p: var(--su12) !important; padding-bottom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py16 { padding-to= p: var(--su16) !important; padding-bottom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py24 { padding-to= p: var(--su24) !important; padding-bottom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py32 { padding-to= p: var(--su32) !important; padding-bottom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py48 { padding-to= p: var(--su48) !important; padding-bottom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py64 { padding-to= p: var(--su64) !important; padding-bottom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py96 { padding-to= p: var(--su96) !important; padding-bottom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:py128 { padding-t= op: var(--su128) !important; padding-bottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i0 { inset: var(-= -su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i1 { inset: var(-= -su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i2 { inset: var(-= -su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i4 { inset: var(-= -su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i6 { inset: var(-= -su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i8 { inset: var(-= -su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i12 { inset: var(= --su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i16 { inset: var(= --su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i24 { inset: var(= --su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i32 { inset: var(= --su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i48 { inset: var(= --su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i64 { inset: var(= --su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i96 { inset: var(= --su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:i128 { inset: var= (--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t0 { top: var(--s= u0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t1 { top: var(--s= u1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t2 { top: var(--s= u2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t4 { top: var(--s= u4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t6 { top: var(--s= u6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t8 { top: var(--s= u8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t12 { top: var(--= su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t16 { top: var(--= su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t24 { top: var(--= su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t32 { top: var(--= su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t48 { top: var(--= su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t64 { top: var(--= su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t96 { top: var(--= su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t128 { top: var(-= -su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn1 { top: calc(v= ar(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn2 { top: calc(v= ar(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn4 { top: calc(v= ar(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn6 { top: calc(v= ar(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn8 { top: calc(v= ar(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn12 { top: calc(= var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn16 { top: calc(= var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn24 { top: calc(= var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn32 { top: calc(= var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn48 { top: calc(= var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn64 { top: calc(= var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn96 { top: calc(= var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn128 { top: calc= (var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t50 { top: 50% !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .md\:t100 { top: 100% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn50 { top: -50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:tn100 { top: -100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r0 { right: var(-= -su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r1 { right: var(-= -su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r2 { right: var(-= -su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r4 { right: var(-= -su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r6 { right: var(-= -su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r8 { right: var(-= -su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r12 { right: var(= --su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r16 { right: var(= --su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r24 { right: var(= --su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r32 { right: var(= --su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r48 { right: var(= --su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r64 { right: var(= --su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r96 { right: var(= --su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r128 { right: var= (--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn1 { right: calc= (var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn2 { right: calc= (var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn4 { right: calc= (var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn6 { right: calc= (var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn8 { right: calc= (var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn12 { right: cal= c(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn16 { right: cal= c(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn24 { right: cal= c(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn32 { right: cal= c(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn48 { right: cal= c(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn64 { right: cal= c(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn96 { right: cal= c(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn128 { right: ca= lc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r50 { right: 50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:r100 { right: 100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn50 { right: -50= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:rn100 { right: -1= 00% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b0 { bottom: var(= --su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b1 { bottom: var(= --su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b2 { bottom: var(= --su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b4 { bottom: var(= --su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b6 { bottom: var(= --su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b8 { bottom: var(= --su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b12 { bottom: var= (--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b16 { bottom: var= (--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b24 { bottom: var= (--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b32 { bottom: var= (--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b48 { bottom: var= (--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b64 { bottom: var= (--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b96 { bottom: var= (--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b128 { bottom: va= r(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn1 { bottom: cal= c(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn2 { bottom: cal= c(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn4 { bottom: cal= c(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn6 { bottom: cal= c(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn8 { bottom: cal= c(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn12 { bottom: ca= lc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn16 { bottom: ca= lc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn24 { bottom: ca= lc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn32 { bottom: ca= lc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn48 { bottom: ca= lc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn64 { bottom: ca= lc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn96 { bottom: ca= lc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn128 { bottom: c= alc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b50 { bottom: 50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:b100 { bottom: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn50 { bottom: -5= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bn100 { bottom: -= 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l0 { left: var(--= su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l1 { left: var(--= su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l2 { left: var(--= su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l4 { left: var(--= su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l6 { left: var(--= su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l8 { left: var(--= su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l12 { left: var(-= -su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l16 { left: var(-= -su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l24 { left: var(-= -su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l32 { left: var(-= -su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l48 { left: var(-= -su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l64 { left: var(-= -su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l96 { left: var(-= -su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l128 { left: var(= --su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln1 { left: calc(= var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln2 { left: calc(= var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln4 { left: calc(= var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln6 { left: calc(= var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln8 { left: calc(= var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln12 { left: calc= (var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln16 { left: calc= (var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln24 { left: calc= (var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln32 { left: calc= (var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln48 { left: calc= (var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln64 { left: calc= (var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln96 { left: calc= (var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln128 { left: cal= c(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l50 { left: 50% != important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:l100 { left: 100%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln50 { left: -50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ln100 { left: -10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ta-left { text-al= ign: left !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ta-center { text-= align: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ta-right { text-a= lign: right !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-block { display= : block !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-flex { display:= flex !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-inline-flex { d= isplay: inline-flex !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-grid { display:= grid !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-inline-grid { d= isplay: inline-grid !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-inline { displa= y: inline !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-inline-block { = display: inline-block !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:d-none { display:= none !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ps-absolute { pos= ition: absolute !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ps-fixed { positi= on: fixed !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ps-relative { pos= ition: relative !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ps-static { posit= ion: static !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:ps-sticky { posit= ion: sticky !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:bs-none { box-sha= dow: none !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w25 { width: 25% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w33 { width: 33.3= 333% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w50 { width: 50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w66 { width: 66.6= 667% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w75 { width: 75% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w100 { width: 100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w-auto { width: a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:w-screen { width:= 100vw !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:wmx100 { max-widt= h: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:wmx-initial { max= -width: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:wmx-screen { max-= width: 100vw !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:wmn100 { min-widt= h: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:wmn-initial { min= -width: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:h100 { height: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:h-auto { height: = auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:h-screen { height= : 100vh !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:hmx100 { max-heig= ht: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:hmx-initial { max= -height: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:hmx-screen { max-= height: 100vh !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:hmn100 { min-heig= ht: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:hmn-initial { min= -height: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .md\:hmn-screen { min-= height: 100vh !important; } } @media (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .md\:ba { border-style: soli= d !important; border-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bt { border-top-style: = solid !important; border-top-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .md\:br { border-right-style= : solid !important; border-right-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bb { border-bottom-styl= e: solid !important; border-bottom-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bl { border-left-style:= solid !important; border-left-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .md\:baw0 { border-width: 0p= x !important; } html.html__responsive.html__unpinned-leftnav .md\:btw0 { border-top-width= : 0px !important; } html.html__responsive.html__unpinned-leftnav .md\:brw0 { border-right-wid= th: 0px !important; } html.html__responsive.html__unpinned-leftnav .md\:bbw0 { border-bottom-wi= dth: 0px !important; } html.html__responsive.html__unpinned-leftnav .md\:blw0 { border-left-widt= h: 0px !important; } html.html__responsive.html__unpinned-leftnav .md\:bar0 { border-radius: 0= px !important; } html.html__responsive.html__unpinned-leftnav .md\:fd-row { flex-direction= : row !important; } html.html__responsive.html__unpinned-leftnav .md\:fd-row-reverse { flex-d= irection: row-reverse !important; } html.html__responsive.html__unpinned-leftnav .md\:fd-column { flex-direct= ion: column !important; } html.html__responsive.html__unpinned-leftnav .md\:fd-column-reverse { fle= x-direction: column-reverse !important; } html.html__responsive.html__unpinned-leftnav .md\:fw-wrap { flex-wrap: wr= ap !important; } html.html__responsive.html__unpinned-leftnav .md\:fw-reverse { flex-wrap:= wrap-reverse !important; } html.html__responsive.html__unpinned-leftnav .md\:fw-nowrap { flex-wrap: = nowrap !important; } html.html__responsive.html__unpinned-leftnav .md\:jc-center { justify-con= tent: center !important; } html.html__responsive.html__unpinned-leftnav .md\:jc-end { justify-conten= t: flex-end !important; } html.html__responsive.html__unpinned-leftnav .md\:jc-space-around { justi= fy-content: space-around !important; } html.html__responsive.html__unpinned-leftnav .md\:jc-space-between { just= ify-content: space-between !important; } html.html__responsive.html__unpinned-leftnav .md\:jc-space-evenly { justi= fy-content: space-evenly !important; } html.html__responsive.html__unpinned-leftnav .md\:jc-start { justify-cont= ent: flex-start !important; } html.html__responsive.html__unpinned-leftnav .md\:ai-baseline { align-ite= ms: baseline !important; } html.html__responsive.html__unpinned-leftnav .md\:ai-center { align-items= : center !important; } html.html__responsive.html__unpinned-leftnav .md\:ai-end { align-items: f= lex-end !important; } html.html__responsive.html__unpinned-leftnav .md\:ai-start { align-items:= flex-start !important; } html.html__responsive.html__unpinned-leftnav .md\:ai-stretch { align-item= s: stretch !important; } html.html__responsive.html__unpinned-leftnav .md\:as-auto { align-self: a= uto !important; } html.html__responsive.html__unpinned-leftnav .md\:as-baseline { align-sel= f: baseline !important; } html.html__responsive.html__unpinned-leftnav .md\:as-center { align-self:= center !important; } html.html__responsive.html__unpinned-leftnav .md\:as-end { align-self: fl= ex-end !important; } html.html__responsive.html__unpinned-leftnav .md\:as-start { align-self: = flex-start !important; } html.html__responsive.html__unpinned-leftnav .md\:as-stretch { align-self= : stretch !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-grow1 { flex-grow: 1= !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-grow0 { flex-grow: 0= !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-shrink1 { flex-shrin= k: 1 !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-shrink0 { flex-shrin= k: 0 !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-none { flex: 0 0 aut= o !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-initial { flex: 0 1 = auto !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-auto { flex: 1 1 aut= o !important; } html.html__responsive.html__unpinned-leftnav .md\:fl-equal { flex: 1 1 0%= !important; } html.html__responsive.html__unpinned-leftnav .md\:order-first { order: -1= !important; } html.html__responsive.html__unpinned-leftnav .md\:order-last { order: 1 != important; } html.html__responsive.html__unpinned-leftnav .md\:fl0 { flex: 0 1 auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:fl1 { flex: 1 1 auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:g0 { --_gap-y: 0; --_ga= p-x: 0; } html.html__responsive.html__unpinned-leftnav .md\:g1 { --_gap-y: var(--su= 1); --_gap-x: var(--su1); } html.html__responsive.html__unpinned-leftnav .md\:g2 { --_gap-y: var(--su= 2); --_gap-x: var(--su2); } html.html__responsive.html__unpinned-leftnav .md\:g4 { --_gap-y: var(--su= 4); --_gap-x: var(--su4); } html.html__responsive.html__unpinned-leftnav .md\:g6 { --_gap-y: var(--su= 6); --_gap-x: var(--su6); } html.html__responsive.html__unpinned-leftnav .md\:g8 { --_gap-y: var(--su= 8); --_gap-x: var(--su8); } html.html__responsive.html__unpinned-leftnav .md\:g12 { --_gap-y: var(--s= u12); --_gap-x: var(--su12); } html.html__responsive.html__unpinned-leftnav .md\:g16 { --_gap-y: var(--s= u16); --_gap-x: var(--su16); } html.html__responsive.html__unpinned-leftnav .md\:g24 { --_gap-y: var(--s= u24); --_gap-x: var(--su24); } html.html__responsive.html__unpinned-leftnav .md\:g32 { --_gap-y: var(--s= u32); --_gap-x: var(--su32); } html.html__responsive.html__unpinned-leftnav .md\:g48 { --_gap-y: var(--s= u48); --_gap-x: var(--su48); } html.html__responsive.html__unpinned-leftnav .md\:g64 { --_gap-y: var(--s= u64); --_gap-x: var(--su64); } html.html__responsive.html__unpinned-leftnav .md\:gx0 { --_gap-x: 0; } html.html__responsive.html__unpinned-leftnav .md\:gx1 { --_gap-x: var(--s= u1); } html.html__responsive.html__unpinned-leftnav .md\:gx2 { --_gap-x: var(--s= u2); } html.html__responsive.html__unpinned-leftnav .md\:gx4 { --_gap-x: var(--s= u4); } html.html__responsive.html__unpinned-leftnav .md\:gx6 { --_gap-x: var(--s= u6); } html.html__responsive.html__unpinned-leftnav .md\:gx8 { --_gap-x: var(--s= u8); } html.html__responsive.html__unpinned-leftnav .md\:gx12 { --_gap-x: var(--= su12); } html.html__responsive.html__unpinned-leftnav .md\:gx16 { --_gap-x: var(--= su16); } html.html__responsive.html__unpinned-leftnav .md\:gx24 { --_gap-x: var(--= su24); } html.html__responsive.html__unpinned-leftnav .md\:gx32 { --_gap-x: var(--= su32); } html.html__responsive.html__unpinned-leftnav .md\:gx48 { --_gap-x: var(--= su48); } html.html__responsive.html__unpinned-leftnav .md\:gx64 { --_gap-x: var(--= su64); } html.html__responsive.html__unpinned-leftnav .md\:gy0 { --_gap-y: 0; } html.html__responsive.html__unpinned-leftnav .md\:gy1 { --_gap-y: var(--s= u1); } html.html__responsive.html__unpinned-leftnav .md\:gy2 { --_gap-y: var(--s= u2); } html.html__responsive.html__unpinned-leftnav .md\:gy4 { --_gap-y: var(--s= u4); } html.html__responsive.html__unpinned-leftnav .md\:gy6 { --_gap-y: var(--s= u6); } html.html__responsive.html__unpinned-leftnav .md\:gy8 { --_gap-y: var(--s= u8); } html.html__responsive.html__unpinned-leftnav .md\:gy12 { --_gap-y: var(--= su12); } html.html__responsive.html__unpinned-leftnav .md\:gy16 { --_gap-y: var(--= su16); } html.html__responsive.html__unpinned-leftnav .md\:gy24 { --_gap-y: var(--= su24); } html.html__responsive.html__unpinned-leftnav .md\:gy32 { --_gap-y: var(--= su32); } html.html__responsive.html__unpinned-leftnav .md\:gy48 { --_gap-y: var(--= su48); } html.html__responsive.html__unpinned-leftnav .md\:gy64 { --_gap-y: var(--= su64); } html.html__responsive.html__unpinned-leftnav .md\:g-af-dense { grid-auto-= flow: dense; } html.html__responsive.html__unpinned-leftnav .md\:g-af-row { grid-auto-fl= ow: row; } html.html__responsive.html__unpinned-leftnav .md\:g-af-column { grid-auto= -flow: column; } html.html__responsive.html__unpinned-leftnav .md\:grid__1 { grid-template= -columns: repeat(1, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__2 { grid-template= -columns: repeat(2, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__3 { grid-template= -columns: repeat(3, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__4 { grid-template= -columns: repeat(4, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__5 { grid-template= -columns: repeat(5, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__6 { grid-template= -columns: repeat(6, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__7 { grid-template= -columns: repeat(7, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__8 { grid-template= -columns: repeat(8, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__9 { grid-template= -columns: repeat(9, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__10 { grid-templat= e-columns: repeat(10, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__11 { grid-templat= e-columns: repeat(11, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__12 { grid-templat= e-columns: repeat(12, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .md\:grid__auto { grid-templ= ate-columns: auto 1fr; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-all { grid-co= lumn: 1 / -1; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-all { grid-ro= w: 1 / -1; } html.html__responsive.html__unpinned-leftnav .md\:grid--col1 { grid-colum= n: span 1; } html.html__responsive.html__unpinned-leftnav .md\:grid--col2 { grid-colum= n: span 2; } html.html__responsive.html__unpinned-leftnav .md\:grid--col3 { grid-colum= n: span 3; } html.html__responsive.html__unpinned-leftnav .md\:grid--col4 { grid-colum= n: span 4; } html.html__responsive.html__unpinned-leftnav .md\:grid--col5 { grid-colum= n: span 5; } html.html__responsive.html__unpinned-leftnav .md\:grid--col6 { grid-colum= n: span 6; } html.html__responsive.html__unpinned-leftnav .md\:grid--col7 { grid-colum= n: span 7; } html.html__responsive.html__unpinned-leftnav .md\:grid--col8 { grid-colum= n: span 8; } html.html__responsive.html__unpinned-leftnav .md\:grid--col9 { grid-colum= n: span 9; } html.html__responsive.html__unpinned-leftnav .md\:grid--col10 { grid-colu= mn: span 10; } html.html__responsive.html__unpinned-leftnav .md\:grid--col11 { grid-colu= mn: span 11; } html.html__responsive.html__unpinned-leftnav .md\:grid--col12 { grid-colu= mn: span 12; } html.html__responsive.html__unpinned-leftnav .md\:grid--row1 { grid-row: = span 1; } html.html__responsive.html__unpinned-leftnav .md\:grid--row2 { grid-row: = span 2; } html.html__responsive.html__unpinned-leftnav .md\:grid--row3 { grid-row: = span 3; } html.html__responsive.html__unpinned-leftnav .md\:grid--row4 { grid-row: = span 4; } html.html__responsive.html__unpinned-leftnav .md\:grid--row5 { grid-row: = span 5; } html.html__responsive.html__unpinned-leftnav .md\:grid--row6 { grid-row: = span 6; } html.html__responsive.html__unpinned-leftnav .md\:grid--row7 { grid-row: = span 7; } html.html__responsive.html__unpinned-leftnav .md\:grid--row8 { grid-row: = span 8; } html.html__responsive.html__unpinned-leftnav .md\:grid--row9 { grid-row: = span 9; } html.html__responsive.html__unpinned-leftnav .md\:grid--row10 { grid-row:= span 10; } html.html__responsive.html__unpinned-leftnav .md\:grid--row11 { grid-row:= span 11; } html.html__responsive.html__unpinned-leftnav .md\:grid--row12 { grid-row:= span 12; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start1 { grid= -column-start: 1; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start2 { grid= -column-start: 2; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start3 { grid= -column-start: 3; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start4 { grid= -column-start: 4; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start5 { grid= -column-start: 5; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start6 { grid= -column-start: 6; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start7 { grid= -column-start: 7; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start8 { grid= -column-start: 8; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start9 { grid= -column-start: 9; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start10 { gri= d-column-start: 10; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start11 { gri= d-column-start: 11; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-start12 { gri= d-column-start: 12; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end2 { grid-c= olumn-end: 2; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end3 { grid-c= olumn-end: 3; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end4 { grid-c= olumn-end: 4; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end5 { grid-c= olumn-end: 5; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end6 { grid-c= olumn-end: 6; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end7 { grid-c= olumn-end: 7; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end8 { grid-c= olumn-end: 8; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end9 { grid-c= olumn-end: 9; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end10 { grid-= column-end: 10; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end11 { grid-= column-end: 11; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end12 { grid-= column-end: 12; } html.html__responsive.html__unpinned-leftnav .md\:grid--col-end13 { grid-= column-end: 13; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start1 { grid= -row-start: 1; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start2 { grid= -row-start: 2; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start3 { grid= -row-start: 3; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start4 { grid= -row-start: 4; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start5 { grid= -row-start: 5; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start6 { grid= -row-start: 6; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start7 { grid= -row-start: 7; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start8 { grid= -row-start: 8; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start9 { grid= -row-start: 9; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start10 { gri= d-row-start: 10; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start11 { gri= d-row-start: 11; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-start12 { gri= d-row-start: 12; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end2 { grid-r= ow-end: 2; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end3 { grid-r= ow-end: 3; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end4 { grid-r= ow-end: 4; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end5 { grid-r= ow-end: 5; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end6 { grid-r= ow-end: 6; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end7 { grid-r= ow-end: 7; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end8 { grid-r= ow-end: 8; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end9 { grid-r= ow-end: 9; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end10 { grid-= row-end: 10; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end11 { grid-= row-end: 11; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end12 { grid-= row-end: 12; } html.html__responsive.html__unpinned-leftnav .md\:grid--row-end13 { grid-= row-end: 13; } html.html__responsive.html__unpinned-leftnav .md\:ji-auto { } html.html__responsive.html__unpinned-leftnav .md\:ji-center { justify-ite= ms: center !important; } html.html__responsive.html__unpinned-leftnav .md\:ji-start { justify-item= s: start !important; } html.html__responsive.html__unpinned-leftnav .md\:ji-end { justify-items:= end !important; } html.html__responsive.html__unpinned-leftnav .md\:ji-stretch { justify-it= ems: stretch !important; } html.html__responsive.html__unpinned-leftnav .md\:ji-unset { justify-item= s: unset !important; } html.html__responsive.html__unpinned-leftnav .md\:js-auto { justify-self:= auto !important; } html.html__responsive.html__unpinned-leftnav .md\:js-center { justify-sel= f: center !important; } html.html__responsive.html__unpinned-leftnav .md\:js-start { justify-self= : start !important; } html.html__responsive.html__unpinned-leftnav .md\:js-end { justify-self: = end !important; } html.html__responsive.html__unpinned-leftnav .md\:js-stretch { justify-se= lf: stretch !important; } html.html__responsive.html__unpinned-leftnav .md\:js-unset { justify-self= : unset !important; } html.html__responsive.html__unpinned-leftnav .md\:m0 { margin: var(--su0)= !important; } html.html__responsive.html__unpinned-leftnav .md\:m1 { margin: var(--su1)= !important; } html.html__responsive.html__unpinned-leftnav .md\:m2 { margin: var(--su2)= !important; } html.html__responsive.html__unpinned-leftnav .md\:m4 { margin: var(--su4)= !important; } html.html__responsive.html__unpinned-leftnav .md\:m6 { margin: var(--su6)= !important; } html.html__responsive.html__unpinned-leftnav .md\:m8 { margin: var(--su8)= !important; } html.html__responsive.html__unpinned-leftnav .md\:m12 { margin: var(--su1= 2) !important; } html.html__responsive.html__unpinned-leftnav .md\:m16 { margin: var(--su1= 6) !important; } html.html__responsive.html__unpinned-leftnav .md\:m24 { margin: var(--su2= 4) !important; } html.html__responsive.html__unpinned-leftnav .md\:m32 { margin: var(--su3= 2) !important; } html.html__responsive.html__unpinned-leftnav .md\:m48 { margin: var(--su4= 8) !important; } html.html__responsive.html__unpinned-leftnav .md\:m64 { margin: var(--su6= 4) !important; } html.html__responsive.html__unpinned-leftnav .md\:m96 { margin: var(--su9= 6) !important; } html.html__responsive.html__unpinned-leftnav .md\:m128 { margin: var(--su= 128) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn1 { margin: calc(var(= --su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn2 { margin: calc(var(= --su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn4 { margin: calc(var(= --su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn6 { margin: calc(var(= --su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn8 { margin: calc(var(= --su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn12 { margin: calc(var= (--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn16 { margin: calc(var= (--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn24 { margin: calc(var= (--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn32 { margin: calc(var= (--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn48 { margin: calc(var= (--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn64 { margin: calc(var= (--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn96 { margin: calc(var= (--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mn128 { margin: calc(va= r(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:m50 { margin: 50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:m100 { margin: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .md\:mn50 { margin: -50% !im= portant; } html.html__responsive.html__unpinned-leftnav .md\:mn100 { margin: -100% != important; } html.html__responsive.html__unpinned-leftnav .md\:mt0 { margin-top: var(-= -su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt1 { margin-top: var(-= -su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt2 { margin-top: var(-= -su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt4 { margin-top: var(-= -su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt6 { margin-top: var(-= -su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt8 { margin-top: var(-= -su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt12 { margin-top: var(= --su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt16 { margin-top: var(= --su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt24 { margin-top: var(= --su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt32 { margin-top: var(= --su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt48 { margin-top: var(= --su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt64 { margin-top: var(= --su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt96 { margin-top: var(= --su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt128 { margin-top: var= (--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn1 { margin-top: calc= (var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn2 { margin-top: calc= (var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn4 { margin-top: calc= (var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn6 { margin-top: calc= (var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn8 { margin-top: calc= (var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn12 { margin-top: cal= c(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn16 { margin-top: cal= c(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn24 { margin-top: cal= c(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn32 { margin-top: cal= c(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn48 { margin-top: cal= c(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn64 { margin-top: cal= c(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn96 { margin-top: cal= c(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn128 { margin-top: ca= lc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mt50 { margin-top: 50% = !important; } html.html__responsive.html__unpinned-leftnav .md\:mt100 { margin-top: 100= % !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn50 { margin-top: -50= % !important; } html.html__responsive.html__unpinned-leftnav .md\:mtn100 { margin-top: -1= 00% !important; } html.html__responsive.html__unpinned-leftnav .md\:mr0 { margin-right: var= (--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr1 { margin-right: var= (--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr2 { margin-right: var= (--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr4 { margin-right: var= (--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr6 { margin-right: var= (--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr8 { margin-right: var= (--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr12 { margin-right: va= r(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr16 { margin-right: va= r(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr24 { margin-right: va= r(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr32 { margin-right: va= r(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr48 { margin-right: va= r(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr64 { margin-right: va= r(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr96 { margin-right: va= r(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr128 { margin-right: v= ar(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn1 { margin-right: ca= lc(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn2 { margin-right: ca= lc(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn4 { margin-right: ca= lc(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn6 { margin-right: ca= lc(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn8 { margin-right: ca= lc(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn12 { margin-right: c= alc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn16 { margin-right: c= alc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn24 { margin-right: c= alc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn32 { margin-right: c= alc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn48 { margin-right: c= alc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn64 { margin-right: c= alc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn96 { margin-right: c= alc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn128 { margin-right: = calc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mr50 { margin-right: 50= % !important; } html.html__responsive.html__unpinned-leftnav .md\:mr100 { margin-right: 1= 00% !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn50 { margin-right: -= 50% !important; } html.html__responsive.html__unpinned-leftnav .md\:mrn100 { margin-right: = -100% !important; } html.html__responsive.html__unpinned-leftnav .md\:mb0 { margin-bottom: va= r(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb1 { margin-bottom: va= r(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb2 { margin-bottom: va= r(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb4 { margin-bottom: va= r(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb6 { margin-bottom: va= r(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb8 { margin-bottom: va= r(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb12 { margin-bottom: v= ar(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb16 { margin-bottom: v= ar(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb24 { margin-bottom: v= ar(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb32 { margin-bottom: v= ar(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb48 { margin-bottom: v= ar(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb64 { margin-bottom: v= ar(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb96 { margin-bottom: v= ar(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb128 { margin-bottom: = var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn1 { margin-bottom: c= alc(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn2 { margin-bottom: c= alc(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn4 { margin-bottom: c= alc(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn6 { margin-bottom: c= alc(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn8 { margin-bottom: c= alc(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn12 { margin-bottom: = calc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn16 { margin-bottom: = calc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn24 { margin-bottom: = calc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn32 { margin-bottom: = calc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn48 { margin-bottom: = calc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn64 { margin-bottom: = calc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn96 { margin-bottom: = calc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn128 { margin-bottom:= calc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mb50 { margin-bottom: 5= 0% !important; } html.html__responsive.html__unpinned-leftnav .md\:mb100 { margin-bottom: = 100% !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn50 { margin-bottom: = -50% !important; } html.html__responsive.html__unpinned-leftnav .md\:mbn100 { margin-bottom:= -100% !important; } html.html__responsive.html__unpinned-leftnav .md\:ml0 { margin-left: var(= --su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml1 { margin-left: var(= --su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml2 { margin-left: var(= --su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml4 { margin-left: var(= --su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml6 { margin-left: var(= --su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml8 { margin-left: var(= --su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml12 { margin-left: var= (--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml16 { margin-left: var= (--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml24 { margin-left: var= (--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml32 { margin-left: var= (--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml48 { margin-left: var= (--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml64 { margin-left: var= (--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml96 { margin-left: var= (--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml128 { margin-left: va= r(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln1 { margin-left: cal= c(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln2 { margin-left: cal= c(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln4 { margin-left: cal= c(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln6 { margin-left: cal= c(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln8 { margin-left: cal= c(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln12 { margin-left: ca= lc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln16 { margin-left: ca= lc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln24 { margin-left: ca= lc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln32 { margin-left: ca= lc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln48 { margin-left: ca= lc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln64 { margin-left: ca= lc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln96 { margin-left: ca= lc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mln128 { margin-left: c= alc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ml50 { margin-left: 50%= !important; } html.html__responsive.html__unpinned-leftnav .md\:ml100 { margin-left: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .md\:mln50 { margin-left: -5= 0% !important; } html.html__responsive.html__unpinned-leftnav .md\:mln100 { margin-left: -= 100% !important; } html.html__responsive.html__unpinned-leftnav .md\:mx0 { margin-left: var(= --su0) !important; margin-right: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx1 { margin-left: var(= --su1) !important; margin-right: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx2 { margin-left: var(= --su2) !important; margin-right: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx4 { margin-left: var(= --su4) !important; margin-right: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx6 { margin-left: var(= --su6) !important; margin-right: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx8 { margin-left: var(= --su8) !important; margin-right: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx12 { margin-left: var= (--su12) !important; margin-right: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx16 { margin-left: var= (--su16) !important; margin-right: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx24 { margin-left: var= (--su24) !important; margin-right: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx32 { margin-left: var= (--su32) !important; margin-right: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx48 { margin-left: var= (--su48) !important; margin-right: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx64 { margin-left: var= (--su64) !important; margin-right: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx96 { margin-left: var= (--su96) !important; margin-right: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:mx128 { margin-left: va= r(--su128) !important; margin-right: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:mxn1 { margin-left: cal= c(var(--su1) * -1) !important; margin-right: calc(var(--su1) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:mxn2 { margin-left: cal= c(var(--su2) * -1) !important; margin-right: calc(var(--su2) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:mxn4 { margin-left: cal= c(var(--su4) * -1) !important; margin-right: calc(var(--su4) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:mxn6 { margin-left: cal= c(var(--su6) * -1) !important; margin-right: calc(var(--su6) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:mxn8 { margin-left: cal= c(var(--su8) * -1) !important; margin-right: calc(var(--su8) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:mxn12 { margin-left: ca= lc(var(--su12) * -1) !important; margin-right: calc(var(--su12) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn16 { margin-left: ca= lc(var(--su16) * -1) !important; margin-right: calc(var(--su16) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn24 { margin-left: ca= lc(var(--su24) * -1) !important; margin-right: calc(var(--su24) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn32 { margin-left: ca= lc(var(--su32) * -1) !important; margin-right: calc(var(--su32) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn48 { margin-left: ca= lc(var(--su48) * -1) !important; margin-right: calc(var(--su48) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn64 { margin-left: ca= lc(var(--su64) * -1) !important; margin-right: calc(var(--su64) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn96 { margin-left: ca= lc(var(--su96) * -1) !important; margin-right: calc(var(--su96) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:mxn128 { margin-left: c= alc(var(--su128) * -1) !important; margin-right: calc(var(--su128) * -1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:my0 { margin-top: var(-= -su0) !important; margin-bottom: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:my1 { margin-top: var(-= -su1) !important; margin-bottom: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:my2 { margin-top: var(-= -su2) !important; margin-bottom: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:my4 { margin-top: var(-= -su4) !important; margin-bottom: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:my6 { margin-top: var(-= -su6) !important; margin-bottom: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:my8 { margin-top: var(-= -su8) !important; margin-bottom: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:my12 { margin-top: var(= --su12) !important; margin-bottom: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:my16 { margin-top: var(= --su16) !important; margin-bottom: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:my24 { margin-top: var(= --su24) !important; margin-bottom: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:my32 { margin-top: var(= --su32) !important; margin-bottom: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:my48 { margin-top: var(= --su48) !important; margin-bottom: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:my64 { margin-top: var(= --su64) !important; margin-bottom: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:my96 { margin-top: var(= --su96) !important; margin-bottom: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:my128 { margin-top: var= (--su128) !important; margin-bottom: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:myn1 { margin-top: calc= (var(--su1) * -1) !important; margin-bottom: calc(var(--su1) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:myn2 { margin-top: calc= (var(--su2) * -1) !important; margin-bottom: calc(var(--su2) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:myn4 { margin-top: calc= (var(--su4) * -1) !important; margin-bottom: calc(var(--su4) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:myn6 { margin-top: calc= (var(--su6) * -1) !important; margin-bottom: calc(var(--su6) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:myn8 { margin-top: calc= (var(--su8) * -1) !important; margin-bottom: calc(var(--su8) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:myn12 { margin-top: cal= c(var(--su12) * -1) !important; margin-bottom: calc(var(--su12) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn16 { margin-top: cal= c(var(--su16) * -1) !important; margin-bottom: calc(var(--su16) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn24 { margin-top: cal= c(var(--su24) * -1) !important; margin-bottom: calc(var(--su24) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn32 { margin-top: cal= c(var(--su32) * -1) !important; margin-bottom: calc(var(--su32) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn48 { margin-top: cal= c(var(--su48) * -1) !important; margin-bottom: calc(var(--su48) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn64 { margin-top: cal= c(var(--su64) * -1) !important; margin-bottom: calc(var(--su64) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn96 { margin-top: cal= c(var(--su96) * -1) !important; margin-bottom: calc(var(--su96) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:myn128 { margin-top: ca= lc(var(--su128) * -1) !important; margin-bottom: calc(var(--su128) * -1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:p0 { padding: var(--su0= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:p1 { padding: var(--su1= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:p2 { padding: var(--su2= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:p4 { padding: var(--su4= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:p6 { padding: var(--su6= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:p8 { padding: var(--su8= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:p12 { padding: var(--su= 12) !important; } html.html__responsive.html__unpinned-leftnav .md\:p16 { padding: var(--su= 16) !important; } html.html__responsive.html__unpinned-leftnav .md\:p24 { padding: var(--su= 24) !important; } html.html__responsive.html__unpinned-leftnav .md\:p32 { padding: var(--su= 32) !important; } html.html__responsive.html__unpinned-leftnav .md\:p48 { padding: var(--su= 48) !important; } html.html__responsive.html__unpinned-leftnav .md\:p64 { padding: var(--su= 64) !important; } html.html__responsive.html__unpinned-leftnav .md\:p96 { padding: var(--su= 96) !important; } html.html__responsive.html__unpinned-leftnav .md\:p128 { padding: var(--s= u128) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt0 { padding-top: var(= --su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt1 { padding-top: var(= --su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt2 { padding-top: var(= --su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt4 { padding-top: var(= --su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt6 { padding-top: var(= --su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt8 { padding-top: var(= --su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt12 { padding-top: var= (--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt16 { padding-top: var= (--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt24 { padding-top: var= (--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt32 { padding-top: var= (--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt48 { padding-top: var= (--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt64 { padding-top: var= (--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt96 { padding-top: var= (--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:pt128 { padding-top: va= r(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr0 { padding-right: va= r(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr1 { padding-right: va= r(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr2 { padding-right: va= r(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr4 { padding-right: va= r(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr6 { padding-right: va= r(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr8 { padding-right: va= r(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr12 { padding-right: v= ar(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr16 { padding-right: v= ar(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr24 { padding-right: v= ar(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr32 { padding-right: v= ar(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr48 { padding-right: v= ar(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr64 { padding-right: v= ar(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr96 { padding-right: v= ar(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:pr128 { padding-right: = var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb0 { padding-bottom: v= ar(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb1 { padding-bottom: v= ar(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb2 { padding-bottom: v= ar(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb4 { padding-bottom: v= ar(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb6 { padding-bottom: v= ar(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb8 { padding-bottom: v= ar(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb12 { padding-bottom: = var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb16 { padding-bottom: = var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb24 { padding-bottom: = var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb32 { padding-bottom: = var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb48 { padding-bottom: = var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb64 { padding-bottom: = var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb96 { padding-bottom: = var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:pb128 { padding-bottom:= var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl0 { padding-left: var= (--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl1 { padding-left: var= (--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl2 { padding-left: var= (--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl4 { padding-left: var= (--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl6 { padding-left: var= (--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl8 { padding-left: var= (--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl12 { padding-left: va= r(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl16 { padding-left: va= r(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl24 { padding-left: va= r(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl32 { padding-left: va= r(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl48 { padding-left: va= r(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl64 { padding-left: va= r(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl96 { padding-left: va= r(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:pl128 { padding-left: v= ar(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:px0 { padding-left: var= (--su0) !important; padding-right: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:px1 { padding-left: var= (--su1) !important; padding-right: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:px2 { padding-left: var= (--su2) !important; padding-right: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:px4 { padding-left: var= (--su4) !important; padding-right: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:px6 { padding-left: var= (--su6) !important; padding-right: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:px8 { padding-left: var= (--su8) !important; padding-right: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:px12 { padding-left: va= r(--su12) !important; padding-right: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:px16 { padding-left: va= r(--su16) !important; padding-right: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:px24 { padding-left: va= r(--su24) !important; padding-right: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:px32 { padding-left: va= r(--su32) !important; padding-right: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:px48 { padding-left: va= r(--su48) !important; padding-right: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:px64 { padding-left: va= r(--su64) !important; padding-right: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:px96 { padding-left: va= r(--su96) !important; padding-right: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:px128 { padding-left: v= ar(--su128) !important; padding-right: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:py0 { padding-top: var(= --su0) !important; padding-bottom: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .md\:py1 { padding-top: var(= --su1) !important; padding-bottom: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .md\:py2 { padding-top: var(= --su2) !important; padding-bottom: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .md\:py4 { padding-top: var(= --su4) !important; padding-bottom: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .md\:py6 { padding-top: var(= --su6) !important; padding-bottom: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .md\:py8 { padding-top: var(= --su8) !important; padding-bottom: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .md\:py12 { padding-top: var= (--su12) !important; padding-bottom: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .md\:py16 { padding-top: var= (--su16) !important; padding-bottom: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .md\:py24 { padding-top: var= (--su24) !important; padding-bottom: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .md\:py32 { padding-top: var= (--su32) !important; padding-bottom: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .md\:py48 { padding-top: var= (--su48) !important; padding-bottom: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .md\:py64 { padding-top: var= (--su64) !important; padding-bottom: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .md\:py96 { padding-top: var= (--su96) !important; padding-bottom: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .md\:py128 { padding-top: va= r(--su128) !important; padding-bottom: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .md\:i0 { inset: var(--su0) = !important; } html.html__responsive.html__unpinned-leftnav .md\:i1 { inset: var(--su1) = !important; } html.html__responsive.html__unpinned-leftnav .md\:i2 { inset: var(--su2) = !important; } html.html__responsive.html__unpinned-leftnav .md\:i4 { inset: var(--su4) = !important; } html.html__responsive.html__unpinned-leftnav .md\:i6 { inset: var(--su6) = !important; } html.html__responsive.html__unpinned-leftnav .md\:i8 { inset: var(--su8) = !important; } html.html__responsive.html__unpinned-leftnav .md\:i12 { inset: var(--su12= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i16 { inset: var(--su16= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i24 { inset: var(--su24= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i32 { inset: var(--su32= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i48 { inset: var(--su48= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i64 { inset: var(--su64= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i96 { inset: var(--su96= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:i128 { inset: var(--su1= 28) !important; } html.html__responsive.html__unpinned-leftnav .md\:t0 { top: var(--su0) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:t1 { top: var(--su1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:t2 { top: var(--su2) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:t4 { top: var(--su4) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:t6 { top: var(--su6) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:t8 { top: var(--su8) !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:t12 { top: var(--su12) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t16 { top: var(--su16) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t24 { top: var(--su24) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t32 { top: var(--su32) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t48 { top: var(--su48) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t64 { top: var(--su64) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t96 { top: var(--su96) = !important; } html.html__responsive.html__unpinned-leftnav .md\:t128 { top: var(--su128= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn1 { top: calc(var(--s= u1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn2 { top: calc(var(--s= u2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn4 { top: calc(var(--s= u4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn6 { top: calc(var(--s= u6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn8 { top: calc(var(--s= u8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn12 { top: calc(var(--= su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn16 { top: calc(var(--= su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn24 { top: calc(var(--= su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn32 { top: calc(var(--= su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn48 { top: calc(var(--= su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn64 { top: calc(var(--= su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn96 { top: calc(var(--= su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:tn128 { top: calc(var(-= -su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:t50 { top: 50% !importa= nt; } html.html__responsive.html__unpinned-leftnav .md\:t100 { top: 100% !impor= tant; } html.html__responsive.html__unpinned-leftnav .md\:tn50 { top: -50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .md\:tn100 { top: -100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .md\:r0 { right: var(--su0) = !important; } html.html__responsive.html__unpinned-leftnav .md\:r1 { right: var(--su1) = !important; } html.html__responsive.html__unpinned-leftnav .md\:r2 { right: var(--su2) = !important; } html.html__responsive.html__unpinned-leftnav .md\:r4 { right: var(--su4) = !important; } html.html__responsive.html__unpinned-leftnav .md\:r6 { right: var(--su6) = !important; } html.html__responsive.html__unpinned-leftnav .md\:r8 { right: var(--su8) = !important; } html.html__responsive.html__unpinned-leftnav .md\:r12 { right: var(--su12= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r16 { right: var(--su16= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r24 { right: var(--su24= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r32 { right: var(--su32= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r48 { right: var(--su48= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r64 { right: var(--su64= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r96 { right: var(--su96= ) !important; } html.html__responsive.html__unpinned-leftnav .md\:r128 { right: var(--su1= 28) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn1 { right: calc(var(-= -su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn2 { right: calc(var(-= -su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn4 { right: calc(var(-= -su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn6 { right: calc(var(-= -su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn8 { right: calc(var(-= -su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn12 { right: calc(var(= --su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn16 { right: calc(var(= --su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn24 { right: calc(var(= --su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn32 { right: calc(var(= --su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn48 { right: calc(var(= --su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn64 { right: calc(var(= --su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn96 { right: calc(var(= --su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:rn128 { right: calc(var= (--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:r50 { right: 50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .md\:r100 { right: 100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .md\:rn50 { right: -50% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .md\:rn100 { right: -100% !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:b0 { bottom: var(--su0)= !important; } html.html__responsive.html__unpinned-leftnav .md\:b1 { bottom: var(--su1)= !important; } html.html__responsive.html__unpinned-leftnav .md\:b2 { bottom: var(--su2)= !important; } html.html__responsive.html__unpinned-leftnav .md\:b4 { bottom: var(--su4)= !important; } html.html__responsive.html__unpinned-leftnav .md\:b6 { bottom: var(--su6)= !important; } html.html__responsive.html__unpinned-leftnav .md\:b8 { bottom: var(--su8)= !important; } html.html__responsive.html__unpinned-leftnav .md\:b12 { bottom: var(--su1= 2) !important; } html.html__responsive.html__unpinned-leftnav .md\:b16 { bottom: var(--su1= 6) !important; } html.html__responsive.html__unpinned-leftnav .md\:b24 { bottom: var(--su2= 4) !important; } html.html__responsive.html__unpinned-leftnav .md\:b32 { bottom: var(--su3= 2) !important; } html.html__responsive.html__unpinned-leftnav .md\:b48 { bottom: var(--su4= 8) !important; } html.html__responsive.html__unpinned-leftnav .md\:b64 { bottom: var(--su6= 4) !important; } html.html__responsive.html__unpinned-leftnav .md\:b96 { bottom: var(--su9= 6) !important; } html.html__responsive.html__unpinned-leftnav .md\:b128 { bottom: var(--su= 128) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn1 { bottom: calc(var(= --su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn2 { bottom: calc(var(= --su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn4 { bottom: calc(var(= --su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn6 { bottom: calc(var(= --su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn8 { bottom: calc(var(= --su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn12 { bottom: calc(var= (--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn16 { bottom: calc(var= (--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn24 { bottom: calc(var= (--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn32 { bottom: calc(var= (--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn48 { bottom: calc(var= (--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn64 { bottom: calc(var= (--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn96 { bottom: calc(var= (--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:bn128 { bottom: calc(va= r(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:b50 { bottom: 50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:b100 { bottom: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .md\:bn50 { bottom: -50% !im= portant; } html.html__responsive.html__unpinned-leftnav .md\:bn100 { bottom: -100% != important; } html.html__responsive.html__unpinned-leftnav .md\:l0 { left: var(--su0) != important; } html.html__responsive.html__unpinned-leftnav .md\:l1 { left: var(--su1) != important; } html.html__responsive.html__unpinned-leftnav .md\:l2 { left: var(--su2) != important; } html.html__responsive.html__unpinned-leftnav .md\:l4 { left: var(--su4) != important; } html.html__responsive.html__unpinned-leftnav .md\:l6 { left: var(--su6) != important; } html.html__responsive.html__unpinned-leftnav .md\:l8 { left: var(--su8) != important; } html.html__responsive.html__unpinned-leftnav .md\:l12 { left: var(--su12)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l16 { left: var(--su16)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l24 { left: var(--su24)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l32 { left: var(--su32)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l48 { left: var(--su48)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l64 { left: var(--su64)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l96 { left: var(--su96)= !important; } html.html__responsive.html__unpinned-leftnav .md\:l128 { left: var(--su12= 8) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln1 { left: calc(var(--= su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln2 { left: calc(var(--= su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln4 { left: calc(var(--= su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln6 { left: calc(var(--= su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln8 { left: calc(var(--= su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln12 { left: calc(var(-= -su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln16 { left: calc(var(-= -su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln24 { left: calc(var(-= -su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln32 { left: calc(var(-= -su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln48 { left: calc(var(-= -su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln64 { left: calc(var(-= -su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln96 { left: calc(var(-= -su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:ln128 { left: calc(var(= --su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .md\:l50 { left: 50% !import= ant; } html.html__responsive.html__unpinned-leftnav .md\:l100 { left: 100% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:ln50 { left: -50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .md\:ln100 { left: -100% !im= portant; } html.html__responsive.html__unpinned-leftnav .md\:ta-left { text-align: l= eft !important; } html.html__responsive.html__unpinned-leftnav .md\:ta-center { text-align:= center !important; } html.html__responsive.html__unpinned-leftnav .md\:ta-right { text-align: = right !important; } html.html__responsive.html__unpinned-leftnav .md\:d-block { display: bloc= k !important; } html.html__responsive.html__unpinned-leftnav .md\:d-flex { display: flex = !important; } html.html__responsive.html__unpinned-leftnav .md\:d-inline-flex { display= : inline-flex !important; } html.html__responsive.html__unpinned-leftnav .md\:d-grid { display: grid = !important; } html.html__responsive.html__unpinned-leftnav .md\:d-inline-grid { display= : inline-grid !important; } html.html__responsive.html__unpinned-leftnav .md\:d-inline { display: inl= ine !important; } html.html__responsive.html__unpinned-leftnav .md\:d-inline-block { displa= y: inline-block !important; } html.html__responsive.html__unpinned-leftnav .md\:d-none { display: none = !important; } html.html__responsive.html__unpinned-leftnav .md\:ps-absolute { position:= absolute !important; } html.html__responsive.html__unpinned-leftnav .md\:ps-fixed { position: fi= xed !important; } html.html__responsive.html__unpinned-leftnav .md\:ps-relative { position:= relative !important; } html.html__responsive.html__unpinned-leftnav .md\:ps-static { position: s= tatic !important; } html.html__responsive.html__unpinned-leftnav .md\:ps-sticky { position: s= ticky !important; } html.html__responsive.html__unpinned-leftnav .md\:bs-none { box-shadow: n= one !important; } html.html__responsive.html__unpinned-leftnav .md\:w25 { width: 25% !impor= tant; } html.html__responsive.html__unpinned-leftnav .md\:w33 { width: 33.3333% != important; } html.html__responsive.html__unpinned-leftnav .md\:w50 { width: 50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .md\:w66 { width: 66.6667% != important; } html.html__responsive.html__unpinned-leftnav .md\:w75 { width: 75% !impor= tant; } html.html__responsive.html__unpinned-leftnav .md\:w100 { width: 100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .md\:w-auto { width: auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .md\:w-screen { width: 100vw= !important; } html.html__responsive.html__unpinned-leftnav .md\:wmx100 { max-width: 100= % !important; } html.html__responsive.html__unpinned-leftnav .md\:wmx-initial { max-width= : initial !important; } html.html__responsive.html__unpinned-leftnav .md\:wmx-screen { max-width:= 100vw !important; } html.html__responsive.html__unpinned-leftnav .md\:wmn100 { min-width: 100= % !important; } html.html__responsive.html__unpinned-leftnav .md\:wmn-initial { min-width= : initial !important; } html.html__responsive.html__unpinned-leftnav .md\:h100 { height: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .md\:h-auto { height: auto != important; } html.html__responsive.html__unpinned-leftnav .md\:h-screen { height: 100v= h !important; } html.html__responsive.html__unpinned-leftnav .md\:hmx100 { max-height: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .md\:hmx-initial { max-heigh= t: initial !important; } html.html__responsive.html__unpinned-leftnav .md\:hmx-screen { max-height= : 100vh !important; } html.html__responsive.html__unpinned-leftnav .md\:hmn100 { min-height: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .md\:hmn-initial { min-heigh= t: initial !important; } html.html__responsive.html__unpinned-leftnav .md\:hmn-screen { min-height= : 100vh !important; } } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav) .sm\:ba { border-style= : solid !important; border-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bt { border-top-s= tyle: solid !important; border-top-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:br { border-right= -style: solid !important; border-right-width: var(--su-static1) !important;= } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bb { border-botto= m-style: solid !important; border-bottom-width: var(--su-static1) !importan= t; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bl { border-left-= style: solid !important; border-left-width: var(--su-static1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:baw0 { border-wid= th: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:btw0 { border-top= -width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:brw0 { border-rig= ht-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bbw0 { border-bot= tom-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:blw0 { border-lef= t-width: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bar0 { border-rad= ius: 0px !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fd-row { flex-dir= ection: row !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fd-row-reverse { = flex-direction: row-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fd-column { flex-= direction: column !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fd-column-reverse= { flex-direction: column-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fw-wrap { flex-wr= ap: wrap !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fw-reverse { flex= -wrap: wrap-reverse !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fw-nowrap { flex-= wrap: nowrap !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:jc-center { justi= fy-content: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:jc-end { justify-= content: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:jc-space-around {= justify-content: space-around !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:jc-space-between = { justify-content: space-between !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:jc-space-evenly {= justify-content: space-evenly !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:jc-start { justif= y-content: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ai-baseline { ali= gn-items: baseline !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ai-center { align= -items: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ai-end { align-it= ems: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ai-start { align-= items: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ai-stretch { alig= n-items: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:as-auto { align-s= elf: auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:as-baseline { ali= gn-self: baseline !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:as-center { align= -self: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:as-end { align-se= lf: flex-end !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:as-start { align-= self: flex-start !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:as-stretch { alig= n-self: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-grow1 { flex-g= row: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-grow0 { flex-g= row: 0 !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-shrink1 { flex= -shrink: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-shrink0 { flex= -shrink: 0 !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-none { flex: 0= 0 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-initial { flex= : 0 1 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-auto { flex: 1= 1 auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl-equal { flex: = 1 1 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:order-first { ord= er: -1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:order-last { orde= r: 1 !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl0 { flex: 0 1 a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:fl1 { flex: 1 1 a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g0 { --_gap-y: 0;= --_gap-x: 0; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g1 { --_gap-y: va= r(--su1); --_gap-x: var(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g2 { --_gap-y: va= r(--su2); --_gap-x: var(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g4 { --_gap-y: va= r(--su4); --_gap-x: var(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g6 { --_gap-y: va= r(--su6); --_gap-x: var(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g8 { --_gap-y: va= r(--su8); --_gap-x: var(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g12 { --_gap-y: v= ar(--su12); --_gap-x: var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g16 { --_gap-y: v= ar(--su16); --_gap-x: var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g24 { --_gap-y: v= ar(--su24); --_gap-x: var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g32 { --_gap-y: v= ar(--su32); --_gap-x: var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g48 { --_gap-y: v= ar(--su48); --_gap-x: var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g64 { --_gap-y: v= ar(--su64); --_gap-x: var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx0 { --_gap-x: 0= ; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx1 { --_gap-x: v= ar(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx2 { --_gap-x: v= ar(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx4 { --_gap-x: v= ar(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx6 { --_gap-x: v= ar(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx8 { --_gap-x: v= ar(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx12 { --_gap-x: = var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx16 { --_gap-x: = var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx24 { --_gap-x: = var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx32 { --_gap-x: = var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx48 { --_gap-x: = var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gx64 { --_gap-x: = var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy0 { --_gap-y: 0= ; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy1 { --_gap-y: v= ar(--su1); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy2 { --_gap-y: v= ar(--su2); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy4 { --_gap-y: v= ar(--su4); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy6 { --_gap-y: v= ar(--su6); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy8 { --_gap-y: v= ar(--su8); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy12 { --_gap-y: = var(--su12); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy16 { --_gap-y: = var(--su16); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy24 { --_gap-y: = var(--su24); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy32 { --_gap-y: = var(--su32); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy48 { --_gap-y: = var(--su48); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:gy64 { --_gap-y: = var(--su64); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g-af-dense { grid= -auto-flow: dense; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g-af-row { grid-a= uto-flow: row; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:g-af-column { gri= d-auto-flow: column; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__1 { grid-te= mplate-columns: repeat(1, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__2 { grid-te= mplate-columns: repeat(2, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__3 { grid-te= mplate-columns: repeat(3, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__4 { grid-te= mplate-columns: repeat(4, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__5 { grid-te= mplate-columns: repeat(5, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__6 { grid-te= mplate-columns: repeat(6, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__7 { grid-te= mplate-columns: repeat(7, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__8 { grid-te= mplate-columns: repeat(8, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__9 { grid-te= mplate-columns: repeat(9, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__10 { grid-t= emplate-columns: repeat(10, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__11 { grid-t= emplate-columns: repeat(11, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__12 { grid-t= emplate-columns: repeat(12, minmax(0px, 1fr)); } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid__auto { grid= -template-columns: auto 1fr; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-all { g= rid-column: 1 / -1; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-all { g= rid-row: 1 / -1; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col1 { grid= -column: span 1; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col2 { grid= -column: span 2; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col3 { grid= -column: span 3; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col4 { grid= -column: span 4; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col5 { grid= -column: span 5; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col6 { grid= -column: span 6; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col7 { grid= -column: span 7; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col8 { grid= -column: span 8; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col9 { grid= -column: span 9; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col10 { gri= d-column: span 10; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col11 { gri= d-column: span 11; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col12 { gri= d-column: span 12; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row1 { grid= -row: span 1; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row2 { grid= -row: span 2; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row3 { grid= -row: span 3; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row4 { grid= -row: span 4; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row5 { grid= -row: span 5; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row6 { grid= -row: span 6; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row7 { grid= -row: span 7; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row8 { grid= -row: span 8; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row9 { grid= -row: span 9; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row10 { gri= d-row: span 10; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row11 { gri= d-row: span 11; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row12 { gri= d-row: span 12; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start1 = { grid-column-start: 1; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start2 = { grid-column-start: 2; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start3 = { grid-column-start: 3; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start4 = { grid-column-start: 4; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start5 = { grid-column-start: 5; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start6 = { grid-column-start: 6; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start7 = { grid-column-start: 7; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start8 = { grid-column-start: 8; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start9 = { grid-column-start: 9; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start10= { grid-column-start: 10; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start11= { grid-column-start: 11; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-start12= { grid-column-start: 12; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end2 { = grid-column-end: 2; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end3 { = grid-column-end: 3; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end4 { = grid-column-end: 4; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end5 { = grid-column-end: 5; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end6 { = grid-column-end: 6; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end7 { = grid-column-end: 7; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end8 { = grid-column-end: 8; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end9 { = grid-column-end: 9; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end10 {= grid-column-end: 10; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end11 {= grid-column-end: 11; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end12 {= grid-column-end: 12; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--col-end13 {= grid-column-end: 13; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start1 = { grid-row-start: 1; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start2 = { grid-row-start: 2; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start3 = { grid-row-start: 3; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start4 = { grid-row-start: 4; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start5 = { grid-row-start: 5; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start6 = { grid-row-start: 6; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start7 = { grid-row-start: 7; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start8 = { grid-row-start: 8; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start9 = { grid-row-start: 9; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start10= { grid-row-start: 10; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start11= { grid-row-start: 11; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-start12= { grid-row-start: 12; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end2 { = grid-row-end: 2; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end3 { = grid-row-end: 3; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end4 { = grid-row-end: 4; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end5 { = grid-row-end: 5; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end6 { = grid-row-end: 6; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end7 { = grid-row-end: 7; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end8 { = grid-row-end: 8; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end9 { = grid-row-end: 9; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end10 {= grid-row-end: 10; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end11 {= grid-row-end: 11; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end12 {= grid-row-end: 12; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:grid--row-end13 {= grid-row-end: 13; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ji-auto { } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ji-center { justi= fy-items: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ji-start { justif= y-items: start !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ji-end { justify-= items: end !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ji-stretch { just= ify-items: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ji-unset { justif= y-items: unset !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:js-auto { justify= -self: auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:js-center { justi= fy-self: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:js-start { justif= y-self: start !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:js-end { justify-= self: end !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:js-stretch { just= ify-self: stretch !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:js-unset { justif= y-self: unset !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m0 { margin: var(= --su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m1 { margin: var(= --su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m2 { margin: var(= --su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m4 { margin: var(= --su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m6 { margin: var(= --su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m8 { margin: var(= --su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m12 { margin: var= (--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m16 { margin: var= (--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m24 { margin: var= (--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m32 { margin: var= (--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m48 { margin: var= (--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m64 { margin: var= (--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m96 { margin: var= (--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m128 { margin: va= r(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn1 { margin: cal= c(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn2 { margin: cal= c(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn4 { margin: cal= c(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn6 { margin: cal= c(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn8 { margin: cal= c(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn12 { margin: ca= lc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn16 { margin: ca= lc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn24 { margin: ca= lc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn32 { margin: ca= lc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn48 { margin: ca= lc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn64 { margin: ca= lc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn96 { margin: ca= lc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn128 { margin: c= alc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m50 { margin: 50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:m100 { margin: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn50 { margin: -5= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mn100 { margin: -= 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt0 { margin-top:= var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt1 { margin-top:= var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt2 { margin-top:= var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt4 { margin-top:= var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt6 { margin-top:= var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt8 { margin-top:= var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt12 { margin-top= : var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt16 { margin-top= : var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt24 { margin-top= : var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt32 { margin-top= : var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt48 { margin-top= : var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt64 { margin-top= : var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt96 { margin-top= : var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt128 { margin-to= p: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn1 { margin-top= : calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn2 { margin-top= : calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn4 { margin-top= : calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn6 { margin-top= : calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn8 { margin-top= : calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn12 { margin-to= p: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn16 { margin-to= p: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn24 { margin-to= p: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn32 { margin-to= p: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn48 { margin-to= p: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn64 { margin-to= p: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn96 { margin-to= p: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn128 { margin-t= op: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt50 { margin-top= : 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mt100 { margin-to= p: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn50 { margin-to= p: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mtn100 { margin-t= op: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr0 { margin-righ= t: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr1 { margin-righ= t: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr2 { margin-righ= t: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr4 { margin-righ= t: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr6 { margin-righ= t: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr8 { margin-righ= t: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr12 { margin-rig= ht: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr16 { margin-rig= ht: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr24 { margin-rig= ht: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr32 { margin-rig= ht: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr48 { margin-rig= ht: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr64 { margin-rig= ht: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr96 { margin-rig= ht: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr128 { margin-ri= ght: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn1 { margin-rig= ht: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn2 { margin-rig= ht: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn4 { margin-rig= ht: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn6 { margin-rig= ht: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn8 { margin-rig= ht: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn12 { margin-ri= ght: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn16 { margin-ri= ght: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn24 { margin-ri= ght: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn32 { margin-ri= ght: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn48 { margin-ri= ght: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn64 { margin-ri= ght: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn96 { margin-ri= ght: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn128 { margin-r= ight: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr50 { margin-rig= ht: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mr100 { margin-ri= ght: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn50 { margin-ri= ght: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mrn100 { margin-r= ight: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb0 { margin-bott= om: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb1 { margin-bott= om: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb2 { margin-bott= om: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb4 { margin-bott= om: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb6 { margin-bott= om: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb8 { margin-bott= om: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb12 { margin-bot= tom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb16 { margin-bot= tom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb24 { margin-bot= tom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb32 { margin-bot= tom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb48 { margin-bot= tom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb64 { margin-bot= tom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb96 { margin-bot= tom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb128 { margin-bo= ttom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn1 { margin-bot= tom: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn2 { margin-bot= tom: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn4 { margin-bot= tom: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn6 { margin-bot= tom: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn8 { margin-bot= tom: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn12 { margin-bo= ttom: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn16 { margin-bo= ttom: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn24 { margin-bo= ttom: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn32 { margin-bo= ttom: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn48 { margin-bo= ttom: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn64 { margin-bo= ttom: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn96 { margin-bo= ttom: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn128 { margin-b= ottom: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb50 { margin-bot= tom: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mb100 { margin-bo= ttom: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn50 { margin-bo= ttom: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mbn100 { margin-b= ottom: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml0 { margin-left= : var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml1 { margin-left= : var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml2 { margin-left= : var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml4 { margin-left= : var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml6 { margin-left= : var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml8 { margin-left= : var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml12 { margin-lef= t: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml16 { margin-lef= t: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml24 { margin-lef= t: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml32 { margin-lef= t: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml48 { margin-lef= t: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml64 { margin-lef= t: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml96 { margin-lef= t: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml128 { margin-le= ft: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln1 { margin-lef= t: calc(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln2 { margin-lef= t: calc(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln4 { margin-lef= t: calc(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln6 { margin-lef= t: calc(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln8 { margin-lef= t: calc(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln12 { margin-le= ft: calc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln16 { margin-le= ft: calc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln24 { margin-le= ft: calc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln32 { margin-le= ft: calc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln48 { margin-le= ft: calc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln64 { margin-le= ft: calc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln96 { margin-le= ft: calc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln128 { margin-l= eft: calc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml50 { margin-lef= t: 50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ml100 { margin-le= ft: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln50 { margin-le= ft: -50% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mln100 { margin-l= eft: -100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx0 { margin-left= : var(--su0) !important; margin-right: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx1 { margin-left= : var(--su1) !important; margin-right: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx2 { margin-left= : var(--su2) !important; margin-right: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx4 { margin-left= : var(--su4) !important; margin-right: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx6 { margin-left= : var(--su6) !important; margin-right: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx8 { margin-left= : var(--su8) !important; margin-right: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx12 { margin-lef= t: var(--su12) !important; margin-right: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx16 { margin-lef= t: var(--su16) !important; margin-right: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx24 { margin-lef= t: var(--su24) !important; margin-right: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx32 { margin-lef= t: var(--su32) !important; margin-right: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx48 { margin-lef= t: var(--su48) !important; margin-right: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx64 { margin-lef= t: var(--su64) !important; margin-right: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx96 { margin-lef= t: var(--su96) !important; margin-right: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mx128 { margin-le= ft: var(--su128) !important; margin-right: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn1 { margin-lef= t: calc(var(--su1) * -1) !important; margin-right: calc(var(--su1) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn2 { margin-lef= t: calc(var(--su2) * -1) !important; margin-right: calc(var(--su2) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn4 { margin-lef= t: calc(var(--su4) * -1) !important; margin-right: calc(var(--su4) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn6 { margin-lef= t: calc(var(--su6) * -1) !important; margin-right: calc(var(--su6) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn8 { margin-lef= t: calc(var(--su8) * -1) !important; margin-right: calc(var(--su8) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn12 { margin-le= ft: calc(var(--su12) * -1) !important; margin-right: calc(var(--su12) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn16 { margin-le= ft: calc(var(--su16) * -1) !important; margin-right: calc(var(--su16) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn24 { margin-le= ft: calc(var(--su24) * -1) !important; margin-right: calc(var(--su24) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn32 { margin-le= ft: calc(var(--su32) * -1) !important; margin-right: calc(var(--su32) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn48 { margin-le= ft: calc(var(--su48) * -1) !important; margin-right: calc(var(--su48) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn64 { margin-le= ft: calc(var(--su64) * -1) !important; margin-right: calc(var(--su64) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn96 { margin-le= ft: calc(var(--su96) * -1) !important; margin-right: calc(var(--su96) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:mxn128 { margin-l= eft: calc(var(--su128) * -1) !important; margin-right: calc(var(--su128) * = -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my0 { margin-top:= var(--su0) !important; margin-bottom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my1 { margin-top:= var(--su1) !important; margin-bottom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my2 { margin-top:= var(--su2) !important; margin-bottom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my4 { margin-top:= var(--su4) !important; margin-bottom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my6 { margin-top:= var(--su6) !important; margin-bottom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my8 { margin-top:= var(--su8) !important; margin-bottom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my12 { margin-top= : var(--su12) !important; margin-bottom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my16 { margin-top= : var(--su16) !important; margin-bottom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my24 { margin-top= : var(--su24) !important; margin-bottom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my32 { margin-top= : var(--su32) !important; margin-bottom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my48 { margin-top= : var(--su48) !important; margin-bottom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my64 { margin-top= : var(--su64) !important; margin-bottom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my96 { margin-top= : var(--su96) !important; margin-bottom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:my128 { margin-to= p: var(--su128) !important; margin-bottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn1 { margin-top= : calc(var(--su1) * -1) !important; margin-bottom: calc(var(--su1) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn2 { margin-top= : calc(var(--su2) * -1) !important; margin-bottom: calc(var(--su2) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn4 { margin-top= : calc(var(--su4) * -1) !important; margin-bottom: calc(var(--su4) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn6 { margin-top= : calc(var(--su6) * -1) !important; margin-bottom: calc(var(--su6) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn8 { margin-top= : calc(var(--su8) * -1) !important; margin-bottom: calc(var(--su8) * -1) !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn12 { margin-to= p: calc(var(--su12) * -1) !important; margin-bottom: calc(var(--su12) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn16 { margin-to= p: calc(var(--su16) * -1) !important; margin-bottom: calc(var(--su16) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn24 { margin-to= p: calc(var(--su24) * -1) !important; margin-bottom: calc(var(--su24) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn32 { margin-to= p: calc(var(--su32) * -1) !important; margin-bottom: calc(var(--su32) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn48 { margin-to= p: calc(var(--su48) * -1) !important; margin-bottom: calc(var(--su48) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn64 { margin-to= p: calc(var(--su64) * -1) !important; margin-bottom: calc(var(--su64) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn96 { margin-to= p: calc(var(--su96) * -1) !important; margin-bottom: calc(var(--su96) * -1)= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:myn128 { margin-t= op: calc(var(--su128) * -1) !important; margin-bottom: calc(var(--su128) * = -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p0 { padding: var= (--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p1 { padding: var= (--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p2 { padding: var= (--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p4 { padding: var= (--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p6 { padding: var= (--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p8 { padding: var= (--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p12 { padding: va= r(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p16 { padding: va= r(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p24 { padding: va= r(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p32 { padding: va= r(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p48 { padding: va= r(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p64 { padding: va= r(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p96 { padding: va= r(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:p128 { padding: v= ar(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt0 { padding-top= : var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt1 { padding-top= : var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt2 { padding-top= : var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt4 { padding-top= : var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt6 { padding-top= : var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt8 { padding-top= : var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt12 { padding-to= p: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt16 { padding-to= p: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt24 { padding-to= p: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt32 { padding-to= p: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt48 { padding-to= p: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt64 { padding-to= p: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt96 { padding-to= p: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pt128 { padding-t= op: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr0 { padding-rig= ht: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr1 { padding-rig= ht: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr2 { padding-rig= ht: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr4 { padding-rig= ht: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr6 { padding-rig= ht: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr8 { padding-rig= ht: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr12 { padding-ri= ght: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr16 { padding-ri= ght: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr24 { padding-ri= ght: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr32 { padding-ri= ght: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr48 { padding-ri= ght: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr64 { padding-ri= ght: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr96 { padding-ri= ght: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pr128 { padding-r= ight: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb0 { padding-bot= tom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb1 { padding-bot= tom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb2 { padding-bot= tom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb4 { padding-bot= tom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb6 { padding-bot= tom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb8 { padding-bot= tom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb12 { padding-bo= ttom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb16 { padding-bo= ttom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb24 { padding-bo= ttom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb32 { padding-bo= ttom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb48 { padding-bo= ttom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb64 { padding-bo= ttom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb96 { padding-bo= ttom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pb128 { padding-b= ottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl0 { padding-lef= t: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl1 { padding-lef= t: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl2 { padding-lef= t: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl4 { padding-lef= t: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl6 { padding-lef= t: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl8 { padding-lef= t: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl12 { padding-le= ft: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl16 { padding-le= ft: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl24 { padding-le= ft: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl32 { padding-le= ft: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl48 { padding-le= ft: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl64 { padding-le= ft: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl96 { padding-le= ft: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:pl128 { padding-l= eft: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px0 { padding-lef= t: var(--su0) !important; padding-right: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px1 { padding-lef= t: var(--su1) !important; padding-right: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px2 { padding-lef= t: var(--su2) !important; padding-right: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px4 { padding-lef= t: var(--su4) !important; padding-right: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px6 { padding-lef= t: var(--su6) !important; padding-right: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px8 { padding-lef= t: var(--su8) !important; padding-right: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px12 { padding-le= ft: var(--su12) !important; padding-right: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px16 { padding-le= ft: var(--su16) !important; padding-right: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px24 { padding-le= ft: var(--su24) !important; padding-right: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px32 { padding-le= ft: var(--su32) !important; padding-right: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px48 { padding-le= ft: var(--su48) !important; padding-right: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px64 { padding-le= ft: var(--su64) !important; padding-right: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px96 { padding-le= ft: var(--su96) !important; padding-right: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:px128 { padding-l= eft: var(--su128) !important; padding-right: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py0 { padding-top= : var(--su0) !important; padding-bottom: var(--su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py1 { padding-top= : var(--su1) !important; padding-bottom: var(--su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py2 { padding-top= : var(--su2) !important; padding-bottom: var(--su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py4 { padding-top= : var(--su4) !important; padding-bottom: var(--su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py6 { padding-top= : var(--su6) !important; padding-bottom: var(--su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py8 { padding-top= : var(--su8) !important; padding-bottom: var(--su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py12 { padding-to= p: var(--su12) !important; padding-bottom: var(--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py16 { padding-to= p: var(--su16) !important; padding-bottom: var(--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py24 { padding-to= p: var(--su24) !important; padding-bottom: var(--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py32 { padding-to= p: var(--su32) !important; padding-bottom: var(--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py48 { padding-to= p: var(--su48) !important; padding-bottom: var(--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py64 { padding-to= p: var(--su64) !important; padding-bottom: var(--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py96 { padding-to= p: var(--su96) !important; padding-bottom: var(--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:py128 { padding-t= op: var(--su128) !important; padding-bottom: var(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i0 { inset: var(-= -su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i1 { inset: var(-= -su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i2 { inset: var(-= -su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i4 { inset: var(-= -su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i6 { inset: var(-= -su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i8 { inset: var(-= -su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i12 { inset: var(= --su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i16 { inset: var(= --su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i24 { inset: var(= --su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i32 { inset: var(= --su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i48 { inset: var(= --su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i64 { inset: var(= --su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i96 { inset: var(= --su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:i128 { inset: var= (--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t0 { top: var(--s= u0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t1 { top: var(--s= u1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t2 { top: var(--s= u2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t4 { top: var(--s= u4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t6 { top: var(--s= u6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t8 { top: var(--s= u8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t12 { top: var(--= su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t16 { top: var(--= su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t24 { top: var(--= su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t32 { top: var(--= su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t48 { top: var(--= su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t64 { top: var(--= su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t96 { top: var(--= su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t128 { top: var(-= -su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn1 { top: calc(v= ar(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn2 { top: calc(v= ar(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn4 { top: calc(v= ar(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn6 { top: calc(v= ar(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn8 { top: calc(v= ar(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn12 { top: calc(= var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn16 { top: calc(= var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn24 { top: calc(= var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn32 { top: calc(= var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn48 { top: calc(= var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn64 { top: calc(= var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn96 { top: calc(= var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn128 { top: calc= (var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t50 { top: 50% !i= mportant; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:t100 { top: 100% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn50 { top: -50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:tn100 { top: -100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r0 { right: var(-= -su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r1 { right: var(-= -su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r2 { right: var(-= -su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r4 { right: var(-= -su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r6 { right: var(-= -su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r8 { right: var(-= -su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r12 { right: var(= --su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r16 { right: var(= --su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r24 { right: var(= --su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r32 { right: var(= --su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r48 { right: var(= --su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r64 { right: var(= --su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r96 { right: var(= --su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r128 { right: var= (--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn1 { right: calc= (var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn2 { right: calc= (var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn4 { right: calc= (var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn6 { right: calc= (var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn8 { right: calc= (var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn12 { right: cal= c(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn16 { right: cal= c(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn24 { right: cal= c(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn32 { right: cal= c(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn48 { right: cal= c(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn64 { right: cal= c(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn96 { right: cal= c(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn128 { right: ca= lc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r50 { right: 50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:r100 { right: 100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn50 { right: -50= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:rn100 { right: -1= 00% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b0 { bottom: var(= --su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b1 { bottom: var(= --su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b2 { bottom: var(= --su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b4 { bottom: var(= --su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b6 { bottom: var(= --su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b8 { bottom: var(= --su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b12 { bottom: var= (--su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b16 { bottom: var= (--su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b24 { bottom: var= (--su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b32 { bottom: var= (--su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b48 { bottom: var= (--su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b64 { bottom: var= (--su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b96 { bottom: var= (--su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b128 { bottom: va= r(--su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn1 { bottom: cal= c(var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn2 { bottom: cal= c(var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn4 { bottom: cal= c(var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn6 { bottom: cal= c(var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn8 { bottom: cal= c(var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn12 { bottom: ca= lc(var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn16 { bottom: ca= lc(var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn24 { bottom: ca= lc(var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn32 { bottom: ca= lc(var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn48 { bottom: ca= lc(var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn64 { bottom: ca= lc(var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn96 { bottom: ca= lc(var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn128 { bottom: c= alc(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b50 { bottom: 50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:b100 { bottom: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn50 { bottom: -5= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bn100 { bottom: -= 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l0 { left: var(--= su0) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l1 { left: var(--= su1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l2 { left: var(--= su2) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l4 { left: var(--= su4) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l6 { left: var(--= su6) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l8 { left: var(--= su8) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l12 { left: var(-= -su12) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l16 { left: var(-= -su16) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l24 { left: var(-= -su24) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l32 { left: var(-= -su32) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l48 { left: var(-= -su48) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l64 { left: var(-= -su64) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l96 { left: var(-= -su96) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l128 { left: var(= --su128) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln1 { left: calc(= var(--su1) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln2 { left: calc(= var(--su2) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln4 { left: calc(= var(--su4) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln6 { left: calc(= var(--su6) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln8 { left: calc(= var(--su8) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln12 { left: calc= (var(--su12) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln16 { left: calc= (var(--su16) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln24 { left: calc= (var(--su24) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln32 { left: calc= (var(--su32) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln48 { left: calc= (var(--su48) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln64 { left: calc= (var(--su64) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln96 { left: calc= (var(--su96) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln128 { left: cal= c(var(--su128) * -1) !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l50 { left: 50% != important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:l100 { left: 100%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln50 { left: -50%= !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ln100 { left: -10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ta-left { text-al= ign: left !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ta-center { text-= align: center !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ta-right { text-a= lign: right !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-block { display= : block !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-flex { display:= flex !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-inline-flex { d= isplay: inline-flex !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-grid { display:= grid !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-inline-grid { d= isplay: inline-grid !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-inline { displa= y: inline !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-inline-block { = display: inline-block !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:d-none { display:= none !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ps-absolute { pos= ition: absolute !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ps-fixed { positi= on: fixed !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ps-relative { pos= ition: relative !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ps-static { posit= ion: static !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:ps-sticky { posit= ion: sticky !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:bs-none { box-sha= dow: none !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w25 { width: 25% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w33 { width: 33.3= 333% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w50 { width: 50% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w66 { width: 66.6= 667% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w75 { width: 75% = !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w100 { width: 100= % !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w-auto { width: a= uto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:w-screen { width:= 100vw !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:wmx100 { max-widt= h: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:wmx-initial { max= -width: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:wmx-screen { max-= width: 100vw !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:wmn100 { min-widt= h: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:wmn-initial { min= -width: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:h100 { height: 10= 0% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:h-auto { height: = auto !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:h-screen { height= : 100vh !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:hmx100 { max-heig= ht: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:hmx-initial { max= -height: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:hmx-screen { max-= height: 100vh !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:hmn100 { min-heig= ht: 100% !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:hmn-initial { min= -height: initial !important; } html.html__responsive:not(.html__unpinned-leftnav) .sm\:hmn-screen { min-= height: 100vh !important; } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav .sm\:ba { border-style: soli= d !important; border-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bt { border-top-style: = solid !important; border-top-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:br { border-right-style= : solid !important; border-right-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bb { border-bottom-styl= e: solid !important; border-bottom-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bl { border-left-style:= solid !important; border-left-width: var(--su-static1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:baw0 { border-width: 0p= x !important; } html.html__responsive.html__unpinned-leftnav .sm\:btw0 { border-top-width= : 0px !important; } html.html__responsive.html__unpinned-leftnav .sm\:brw0 { border-right-wid= th: 0px !important; } html.html__responsive.html__unpinned-leftnav .sm\:bbw0 { border-bottom-wi= dth: 0px !important; } html.html__responsive.html__unpinned-leftnav .sm\:blw0 { border-left-widt= h: 0px !important; } html.html__responsive.html__unpinned-leftnav .sm\:bar0 { border-radius: 0= px !important; } html.html__responsive.html__unpinned-leftnav .sm\:fd-row { flex-direction= : row !important; } html.html__responsive.html__unpinned-leftnav .sm\:fd-row-reverse { flex-d= irection: row-reverse !important; } html.html__responsive.html__unpinned-leftnav .sm\:fd-column { flex-direct= ion: column !important; } html.html__responsive.html__unpinned-leftnav .sm\:fd-column-reverse { fle= x-direction: column-reverse !important; } html.html__responsive.html__unpinned-leftnav .sm\:fw-wrap { flex-wrap: wr= ap !important; } html.html__responsive.html__unpinned-leftnav .sm\:fw-reverse { flex-wrap:= wrap-reverse !important; } html.html__responsive.html__unpinned-leftnav .sm\:fw-nowrap { flex-wrap: = nowrap !important; } html.html__responsive.html__unpinned-leftnav .sm\:jc-center { justify-con= tent: center !important; } html.html__responsive.html__unpinned-leftnav .sm\:jc-end { justify-conten= t: flex-end !important; } html.html__responsive.html__unpinned-leftnav .sm\:jc-space-around { justi= fy-content: space-around !important; } html.html__responsive.html__unpinned-leftnav .sm\:jc-space-between { just= ify-content: space-between !important; } html.html__responsive.html__unpinned-leftnav .sm\:jc-space-evenly { justi= fy-content: space-evenly !important; } html.html__responsive.html__unpinned-leftnav .sm\:jc-start { justify-cont= ent: flex-start !important; } html.html__responsive.html__unpinned-leftnav .sm\:ai-baseline { align-ite= ms: baseline !important; } html.html__responsive.html__unpinned-leftnav .sm\:ai-center { align-items= : center !important; } html.html__responsive.html__unpinned-leftnav .sm\:ai-end { align-items: f= lex-end !important; } html.html__responsive.html__unpinned-leftnav .sm\:ai-start { align-items:= flex-start !important; } html.html__responsive.html__unpinned-leftnav .sm\:ai-stretch { align-item= s: stretch !important; } html.html__responsive.html__unpinned-leftnav .sm\:as-auto { align-self: a= uto !important; } html.html__responsive.html__unpinned-leftnav .sm\:as-baseline { align-sel= f: baseline !important; } html.html__responsive.html__unpinned-leftnav .sm\:as-center { align-self:= center !important; } html.html__responsive.html__unpinned-leftnav .sm\:as-end { align-self: fl= ex-end !important; } html.html__responsive.html__unpinned-leftnav .sm\:as-start { align-self: = flex-start !important; } html.html__responsive.html__unpinned-leftnav .sm\:as-stretch { align-self= : stretch !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-grow1 { flex-grow: 1= !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-grow0 { flex-grow: 0= !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-shrink1 { flex-shrin= k: 1 !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-shrink0 { flex-shrin= k: 0 !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-none { flex: 0 0 aut= o !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-initial { flex: 0 1 = auto !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-auto { flex: 1 1 aut= o !important; } html.html__responsive.html__unpinned-leftnav .sm\:fl-equal { flex: 1 1 0%= !important; } html.html__responsive.html__unpinned-leftnav .sm\:order-first { order: -1= !important; } html.html__responsive.html__unpinned-leftnav .sm\:order-last { order: 1 != important; } html.html__responsive.html__unpinned-leftnav .sm\:fl0 { flex: 0 1 auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:fl1 { flex: 1 1 auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:g0 { --_gap-y: 0; --_ga= p-x: 0; } html.html__responsive.html__unpinned-leftnav .sm\:g1 { --_gap-y: var(--su= 1); --_gap-x: var(--su1); } html.html__responsive.html__unpinned-leftnav .sm\:g2 { --_gap-y: var(--su= 2); --_gap-x: var(--su2); } html.html__responsive.html__unpinned-leftnav .sm\:g4 { --_gap-y: var(--su= 4); --_gap-x: var(--su4); } html.html__responsive.html__unpinned-leftnav .sm\:g6 { --_gap-y: var(--su= 6); --_gap-x: var(--su6); } html.html__responsive.html__unpinned-leftnav .sm\:g8 { --_gap-y: var(--su= 8); --_gap-x: var(--su8); } html.html__responsive.html__unpinned-leftnav .sm\:g12 { --_gap-y: var(--s= u12); --_gap-x: var(--su12); } html.html__responsive.html__unpinned-leftnav .sm\:g16 { --_gap-y: var(--s= u16); --_gap-x: var(--su16); } html.html__responsive.html__unpinned-leftnav .sm\:g24 { --_gap-y: var(--s= u24); --_gap-x: var(--su24); } html.html__responsive.html__unpinned-leftnav .sm\:g32 { --_gap-y: var(--s= u32); --_gap-x: var(--su32); } html.html__responsive.html__unpinned-leftnav .sm\:g48 { --_gap-y: var(--s= u48); --_gap-x: var(--su48); } html.html__responsive.html__unpinned-leftnav .sm\:g64 { --_gap-y: var(--s= u64); --_gap-x: var(--su64); } html.html__responsive.html__unpinned-leftnav .sm\:gx0 { --_gap-x: 0; } html.html__responsive.html__unpinned-leftnav .sm\:gx1 { --_gap-x: var(--s= u1); } html.html__responsive.html__unpinned-leftnav .sm\:gx2 { --_gap-x: var(--s= u2); } html.html__responsive.html__unpinned-leftnav .sm\:gx4 { --_gap-x: var(--s= u4); } html.html__responsive.html__unpinned-leftnav .sm\:gx6 { --_gap-x: var(--s= u6); } html.html__responsive.html__unpinned-leftnav .sm\:gx8 { --_gap-x: var(--s= u8); } html.html__responsive.html__unpinned-leftnav .sm\:gx12 { --_gap-x: var(--= su12); } html.html__responsive.html__unpinned-leftnav .sm\:gx16 { --_gap-x: var(--= su16); } html.html__responsive.html__unpinned-leftnav .sm\:gx24 { --_gap-x: var(--= su24); } html.html__responsive.html__unpinned-leftnav .sm\:gx32 { --_gap-x: var(--= su32); } html.html__responsive.html__unpinned-leftnav .sm\:gx48 { --_gap-x: var(--= su48); } html.html__responsive.html__unpinned-leftnav .sm\:gx64 { --_gap-x: var(--= su64); } html.html__responsive.html__unpinned-leftnav .sm\:gy0 { --_gap-y: 0; } html.html__responsive.html__unpinned-leftnav .sm\:gy1 { --_gap-y: var(--s= u1); } html.html__responsive.html__unpinned-leftnav .sm\:gy2 { --_gap-y: var(--s= u2); } html.html__responsive.html__unpinned-leftnav .sm\:gy4 { --_gap-y: var(--s= u4); } html.html__responsive.html__unpinned-leftnav .sm\:gy6 { --_gap-y: var(--s= u6); } html.html__responsive.html__unpinned-leftnav .sm\:gy8 { --_gap-y: var(--s= u8); } html.html__responsive.html__unpinned-leftnav .sm\:gy12 { --_gap-y: var(--= su12); } html.html__responsive.html__unpinned-leftnav .sm\:gy16 { --_gap-y: var(--= su16); } html.html__responsive.html__unpinned-leftnav .sm\:gy24 { --_gap-y: var(--= su24); } html.html__responsive.html__unpinned-leftnav .sm\:gy32 { --_gap-y: var(--= su32); } html.html__responsive.html__unpinned-leftnav .sm\:gy48 { --_gap-y: var(--= su48); } html.html__responsive.html__unpinned-leftnav .sm\:gy64 { --_gap-y: var(--= su64); } html.html__responsive.html__unpinned-leftnav .sm\:g-af-dense { grid-auto-= flow: dense; } html.html__responsive.html__unpinned-leftnav .sm\:g-af-row { grid-auto-fl= ow: row; } html.html__responsive.html__unpinned-leftnav .sm\:g-af-column { grid-auto= -flow: column; } html.html__responsive.html__unpinned-leftnav .sm\:grid__1 { grid-template= -columns: repeat(1, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__2 { grid-template= -columns: repeat(2, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__3 { grid-template= -columns: repeat(3, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__4 { grid-template= -columns: repeat(4, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__5 { grid-template= -columns: repeat(5, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__6 { grid-template= -columns: repeat(6, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__7 { grid-template= -columns: repeat(7, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__8 { grid-template= -columns: repeat(8, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__9 { grid-template= -columns: repeat(9, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__10 { grid-templat= e-columns: repeat(10, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__11 { grid-templat= e-columns: repeat(11, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__12 { grid-templat= e-columns: repeat(12, minmax(0px, 1fr)); } html.html__responsive.html__unpinned-leftnav .sm\:grid__auto { grid-templ= ate-columns: auto 1fr; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-all { grid-co= lumn: 1 / -1; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-all { grid-ro= w: 1 / -1; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col1 { grid-colum= n: span 1; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col2 { grid-colum= n: span 2; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col3 { grid-colum= n: span 3; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col4 { grid-colum= n: span 4; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col5 { grid-colum= n: span 5; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col6 { grid-colum= n: span 6; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col7 { grid-colum= n: span 7; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col8 { grid-colum= n: span 8; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col9 { grid-colum= n: span 9; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col10 { grid-colu= mn: span 10; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col11 { grid-colu= mn: span 11; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col12 { grid-colu= mn: span 12; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row1 { grid-row: = span 1; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row2 { grid-row: = span 2; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row3 { grid-row: = span 3; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row4 { grid-row: = span 4; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row5 { grid-row: = span 5; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row6 { grid-row: = span 6; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row7 { grid-row: = span 7; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row8 { grid-row: = span 8; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row9 { grid-row: = span 9; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row10 { grid-row:= span 10; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row11 { grid-row:= span 11; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row12 { grid-row:= span 12; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start1 { grid= -column-start: 1; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start2 { grid= -column-start: 2; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start3 { grid= -column-start: 3; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start4 { grid= -column-start: 4; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start5 { grid= -column-start: 5; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start6 { grid= -column-start: 6; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start7 { grid= -column-start: 7; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start8 { grid= -column-start: 8; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start9 { grid= -column-start: 9; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start10 { gri= d-column-start: 10; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start11 { gri= d-column-start: 11; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-start12 { gri= d-column-start: 12; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end2 { grid-c= olumn-end: 2; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end3 { grid-c= olumn-end: 3; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end4 { grid-c= olumn-end: 4; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end5 { grid-c= olumn-end: 5; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end6 { grid-c= olumn-end: 6; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end7 { grid-c= olumn-end: 7; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end8 { grid-c= olumn-end: 8; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end9 { grid-c= olumn-end: 9; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end10 { grid-= column-end: 10; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end11 { grid-= column-end: 11; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end12 { grid-= column-end: 12; } html.html__responsive.html__unpinned-leftnav .sm\:grid--col-end13 { grid-= column-end: 13; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start1 { grid= -row-start: 1; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start2 { grid= -row-start: 2; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start3 { grid= -row-start: 3; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start4 { grid= -row-start: 4; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start5 { grid= -row-start: 5; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start6 { grid= -row-start: 6; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start7 { grid= -row-start: 7; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start8 { grid= -row-start: 8; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start9 { grid= -row-start: 9; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start10 { gri= d-row-start: 10; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start11 { gri= d-row-start: 11; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-start12 { gri= d-row-start: 12; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end2 { grid-r= ow-end: 2; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end3 { grid-r= ow-end: 3; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end4 { grid-r= ow-end: 4; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end5 { grid-r= ow-end: 5; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end6 { grid-r= ow-end: 6; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end7 { grid-r= ow-end: 7; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end8 { grid-r= ow-end: 8; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end9 { grid-r= ow-end: 9; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end10 { grid-= row-end: 10; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end11 { grid-= row-end: 11; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end12 { grid-= row-end: 12; } html.html__responsive.html__unpinned-leftnav .sm\:grid--row-end13 { grid-= row-end: 13; } html.html__responsive.html__unpinned-leftnav .sm\:ji-auto { } html.html__responsive.html__unpinned-leftnav .sm\:ji-center { justify-ite= ms: center !important; } html.html__responsive.html__unpinned-leftnav .sm\:ji-start { justify-item= s: start !important; } html.html__responsive.html__unpinned-leftnav .sm\:ji-end { justify-items:= end !important; } html.html__responsive.html__unpinned-leftnav .sm\:ji-stretch { justify-it= ems: stretch !important; } html.html__responsive.html__unpinned-leftnav .sm\:ji-unset { justify-item= s: unset !important; } html.html__responsive.html__unpinned-leftnav .sm\:js-auto { justify-self:= auto !important; } html.html__responsive.html__unpinned-leftnav .sm\:js-center { justify-sel= f: center !important; } html.html__responsive.html__unpinned-leftnav .sm\:js-start { justify-self= : start !important; } html.html__responsive.html__unpinned-leftnav .sm\:js-end { justify-self: = end !important; } html.html__responsive.html__unpinned-leftnav .sm\:js-stretch { justify-se= lf: stretch !important; } html.html__responsive.html__unpinned-leftnav .sm\:js-unset { justify-self= : unset !important; } html.html__responsive.html__unpinned-leftnav .sm\:m0 { margin: var(--su0)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:m1 { margin: var(--su1)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:m2 { margin: var(--su2)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:m4 { margin: var(--su4)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:m6 { margin: var(--su6)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:m8 { margin: var(--su8)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:m12 { margin: var(--su1= 2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m16 { margin: var(--su1= 6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m24 { margin: var(--su2= 4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m32 { margin: var(--su3= 2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m48 { margin: var(--su4= 8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m64 { margin: var(--su6= 4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m96 { margin: var(--su9= 6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m128 { margin: var(--su= 128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn1 { margin: calc(var(= --su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn2 { margin: calc(var(= --su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn4 { margin: calc(var(= --su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn6 { margin: calc(var(= --su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn8 { margin: calc(var(= --su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn12 { margin: calc(var= (--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn16 { margin: calc(var= (--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn24 { margin: calc(var= (--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn32 { margin: calc(var= (--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn48 { margin: calc(var= (--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn64 { margin: calc(var= (--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn96 { margin: calc(var= (--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mn128 { margin: calc(va= r(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:m50 { margin: 50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:m100 { margin: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .sm\:mn50 { margin: -50% !im= portant; } html.html__responsive.html__unpinned-leftnav .sm\:mn100 { margin: -100% != important; } html.html__responsive.html__unpinned-leftnav .sm\:mt0 { margin-top: var(-= -su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt1 { margin-top: var(-= -su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt2 { margin-top: var(-= -su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt4 { margin-top: var(-= -su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt6 { margin-top: var(-= -su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt8 { margin-top: var(-= -su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt12 { margin-top: var(= --su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt16 { margin-top: var(= --su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt24 { margin-top: var(= --su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt32 { margin-top: var(= --su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt48 { margin-top: var(= --su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt64 { margin-top: var(= --su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt96 { margin-top: var(= --su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt128 { margin-top: var= (--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn1 { margin-top: calc= (var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn2 { margin-top: calc= (var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn4 { margin-top: calc= (var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn6 { margin-top: calc= (var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn8 { margin-top: calc= (var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn12 { margin-top: cal= c(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn16 { margin-top: cal= c(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn24 { margin-top: cal= c(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn32 { margin-top: cal= c(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn48 { margin-top: cal= c(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn64 { margin-top: cal= c(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn96 { margin-top: cal= c(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn128 { margin-top: ca= lc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt50 { margin-top: 50% = !important; } html.html__responsive.html__unpinned-leftnav .sm\:mt100 { margin-top: 100= % !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn50 { margin-top: -50= % !important; } html.html__responsive.html__unpinned-leftnav .sm\:mtn100 { margin-top: -1= 00% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr0 { margin-right: var= (--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr1 { margin-right: var= (--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr2 { margin-right: var= (--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr4 { margin-right: var= (--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr6 { margin-right: var= (--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr8 { margin-right: var= (--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr12 { margin-right: va= r(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr16 { margin-right: va= r(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr24 { margin-right: va= r(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr32 { margin-right: va= r(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr48 { margin-right: va= r(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr64 { margin-right: va= r(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr96 { margin-right: va= r(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr128 { margin-right: v= ar(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn1 { margin-right: ca= lc(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn2 { margin-right: ca= lc(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn4 { margin-right: ca= lc(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn6 { margin-right: ca= lc(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn8 { margin-right: ca= lc(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn12 { margin-right: c= alc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn16 { margin-right: c= alc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn24 { margin-right: c= alc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn32 { margin-right: c= alc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn48 { margin-right: c= alc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn64 { margin-right: c= alc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn96 { margin-right: c= alc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn128 { margin-right: = calc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr50 { margin-right: 50= % !important; } html.html__responsive.html__unpinned-leftnav .sm\:mr100 { margin-right: 1= 00% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn50 { margin-right: -= 50% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mrn100 { margin-right: = -100% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb0 { margin-bottom: va= r(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb1 { margin-bottom: va= r(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb2 { margin-bottom: va= r(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb4 { margin-bottom: va= r(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb6 { margin-bottom: va= r(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb8 { margin-bottom: va= r(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb12 { margin-bottom: v= ar(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb16 { margin-bottom: v= ar(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb24 { margin-bottom: v= ar(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb32 { margin-bottom: v= ar(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb48 { margin-bottom: v= ar(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb64 { margin-bottom: v= ar(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb96 { margin-bottom: v= ar(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb128 { margin-bottom: = var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn1 { margin-bottom: c= alc(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn2 { margin-bottom: c= alc(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn4 { margin-bottom: c= alc(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn6 { margin-bottom: c= alc(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn8 { margin-bottom: c= alc(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn12 { margin-bottom: = calc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn16 { margin-bottom: = calc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn24 { margin-bottom: = calc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn32 { margin-bottom: = calc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn48 { margin-bottom: = calc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn64 { margin-bottom: = calc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn96 { margin-bottom: = calc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn128 { margin-bottom:= calc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb50 { margin-bottom: 5= 0% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mb100 { margin-bottom: = 100% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn50 { margin-bottom: = -50% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mbn100 { margin-bottom:= -100% !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml0 { margin-left: var(= --su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml1 { margin-left: var(= --su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml2 { margin-left: var(= --su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml4 { margin-left: var(= --su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml6 { margin-left: var(= --su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml8 { margin-left: var(= --su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml12 { margin-left: var= (--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml16 { margin-left: var= (--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml24 { margin-left: var= (--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml32 { margin-left: var= (--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml48 { margin-left: var= (--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml64 { margin-left: var= (--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml96 { margin-left: var= (--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml128 { margin-left: va= r(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln1 { margin-left: cal= c(var(--su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln2 { margin-left: cal= c(var(--su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln4 { margin-left: cal= c(var(--su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln6 { margin-left: cal= c(var(--su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln8 { margin-left: cal= c(var(--su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln12 { margin-left: ca= lc(var(--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln16 { margin-left: ca= lc(var(--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln24 { margin-left: ca= lc(var(--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln32 { margin-left: ca= lc(var(--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln48 { margin-left: ca= lc(var(--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln64 { margin-left: ca= lc(var(--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln96 { margin-left: ca= lc(var(--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln128 { margin-left: c= alc(var(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml50 { margin-left: 50%= !important; } html.html__responsive.html__unpinned-leftnav .sm\:ml100 { margin-left: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln50 { margin-left: -5= 0% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mln100 { margin-left: -= 100% !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx0 { margin-left: var(= --su0) !important; margin-right: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx1 { margin-left: var(= --su1) !important; margin-right: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx2 { margin-left: var(= --su2) !important; margin-right: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx4 { margin-left: var(= --su4) !important; margin-right: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx6 { margin-left: var(= --su6) !important; margin-right: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx8 { margin-left: var(= --su8) !important; margin-right: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx12 { margin-left: var= (--su12) !important; margin-right: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx16 { margin-left: var= (--su16) !important; margin-right: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx24 { margin-left: var= (--su24) !important; margin-right: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx32 { margin-left: var= (--su32) !important; margin-right: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx48 { margin-left: var= (--su48) !important; margin-right: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx64 { margin-left: var= (--su64) !important; margin-right: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx96 { margin-left: var= (--su96) !important; margin-right: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mx128 { margin-left: va= r(--su128) !important; margin-right: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:mxn1 { margin-left: cal= c(var(--su1) * -1) !important; margin-right: calc(var(--su1) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:mxn2 { margin-left: cal= c(var(--su2) * -1) !important; margin-right: calc(var(--su2) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:mxn4 { margin-left: cal= c(var(--su4) * -1) !important; margin-right: calc(var(--su4) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:mxn6 { margin-left: cal= c(var(--su6) * -1) !important; margin-right: calc(var(--su6) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:mxn8 { margin-left: cal= c(var(--su8) * -1) !important; margin-right: calc(var(--su8) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:mxn12 { margin-left: ca= lc(var(--su12) * -1) !important; margin-right: calc(var(--su12) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn16 { margin-left: ca= lc(var(--su16) * -1) !important; margin-right: calc(var(--su16) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn24 { margin-left: ca= lc(var(--su24) * -1) !important; margin-right: calc(var(--su24) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn32 { margin-left: ca= lc(var(--su32) * -1) !important; margin-right: calc(var(--su32) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn48 { margin-left: ca= lc(var(--su48) * -1) !important; margin-right: calc(var(--su48) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn64 { margin-left: ca= lc(var(--su64) * -1) !important; margin-right: calc(var(--su64) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn96 { margin-left: ca= lc(var(--su96) * -1) !important; margin-right: calc(var(--su96) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:mxn128 { margin-left: c= alc(var(--su128) * -1) !important; margin-right: calc(var(--su128) * -1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:my0 { margin-top: var(-= -su0) !important; margin-bottom: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my1 { margin-top: var(-= -su1) !important; margin-bottom: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my2 { margin-top: var(-= -su2) !important; margin-bottom: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my4 { margin-top: var(-= -su4) !important; margin-bottom: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my6 { margin-top: var(-= -su6) !important; margin-bottom: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my8 { margin-top: var(-= -su8) !important; margin-bottom: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my12 { margin-top: var(= --su12) !important; margin-bottom: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my16 { margin-top: var(= --su16) !important; margin-bottom: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my24 { margin-top: var(= --su24) !important; margin-bottom: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my32 { margin-top: var(= --su32) !important; margin-bottom: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my48 { margin-top: var(= --su48) !important; margin-bottom: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my64 { margin-top: var(= --su64) !important; margin-bottom: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my96 { margin-top: var(= --su96) !important; margin-bottom: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:my128 { margin-top: var= (--su128) !important; margin-bottom: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:myn1 { margin-top: calc= (var(--su1) * -1) !important; margin-bottom: calc(var(--su1) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:myn2 { margin-top: calc= (var(--su2) * -1) !important; margin-bottom: calc(var(--su2) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:myn4 { margin-top: calc= (var(--su4) * -1) !important; margin-bottom: calc(var(--su4) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:myn6 { margin-top: calc= (var(--su6) * -1) !important; margin-bottom: calc(var(--su6) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:myn8 { margin-top: calc= (var(--su8) * -1) !important; margin-bottom: calc(var(--su8) * -1) !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:myn12 { margin-top: cal= c(var(--su12) * -1) !important; margin-bottom: calc(var(--su12) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn16 { margin-top: cal= c(var(--su16) * -1) !important; margin-bottom: calc(var(--su16) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn24 { margin-top: cal= c(var(--su24) * -1) !important; margin-bottom: calc(var(--su24) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn32 { margin-top: cal= c(var(--su32) * -1) !important; margin-bottom: calc(var(--su32) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn48 { margin-top: cal= c(var(--su48) * -1) !important; margin-bottom: calc(var(--su48) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn64 { margin-top: cal= c(var(--su64) * -1) !important; margin-bottom: calc(var(--su64) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn96 { margin-top: cal= c(var(--su96) * -1) !important; margin-bottom: calc(var(--su96) * -1) !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:myn128 { margin-top: ca= lc(var(--su128) * -1) !important; margin-bottom: calc(var(--su128) * -1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:p0 { padding: var(--su0= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p1 { padding: var(--su1= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p2 { padding: var(--su2= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p4 { padding: var(--su4= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p6 { padding: var(--su6= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p8 { padding: var(--su8= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p12 { padding: var(--su= 12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p16 { padding: var(--su= 16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p24 { padding: var(--su= 24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p32 { padding: var(--su= 32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p48 { padding: var(--su= 48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p64 { padding: var(--su= 64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p96 { padding: var(--su= 96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:p128 { padding: var(--s= u128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt0 { padding-top: var(= --su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt1 { padding-top: var(= --su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt2 { padding-top: var(= --su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt4 { padding-top: var(= --su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt6 { padding-top: var(= --su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt8 { padding-top: var(= --su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt12 { padding-top: var= (--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt16 { padding-top: var= (--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt24 { padding-top: var= (--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt32 { padding-top: var= (--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt48 { padding-top: var= (--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt64 { padding-top: var= (--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt96 { padding-top: var= (--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pt128 { padding-top: va= r(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr0 { padding-right: va= r(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr1 { padding-right: va= r(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr2 { padding-right: va= r(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr4 { padding-right: va= r(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr6 { padding-right: va= r(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr8 { padding-right: va= r(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr12 { padding-right: v= ar(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr16 { padding-right: v= ar(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr24 { padding-right: v= ar(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr32 { padding-right: v= ar(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr48 { padding-right: v= ar(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr64 { padding-right: v= ar(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr96 { padding-right: v= ar(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pr128 { padding-right: = var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb0 { padding-bottom: v= ar(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb1 { padding-bottom: v= ar(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb2 { padding-bottom: v= ar(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb4 { padding-bottom: v= ar(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb6 { padding-bottom: v= ar(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb8 { padding-bottom: v= ar(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb12 { padding-bottom: = var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb16 { padding-bottom: = var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb24 { padding-bottom: = var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb32 { padding-bottom: = var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb48 { padding-bottom: = var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb64 { padding-bottom: = var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb96 { padding-bottom: = var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pb128 { padding-bottom:= var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl0 { padding-left: var= (--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl1 { padding-left: var= (--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl2 { padding-left: var= (--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl4 { padding-left: var= (--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl6 { padding-left: var= (--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl8 { padding-left: var= (--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl12 { padding-left: va= r(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl16 { padding-left: va= r(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl24 { padding-left: va= r(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl32 { padding-left: va= r(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl48 { padding-left: va= r(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl64 { padding-left: va= r(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl96 { padding-left: va= r(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:pl128 { padding-left: v= ar(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px0 { padding-left: var= (--su0) !important; padding-right: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px1 { padding-left: var= (--su1) !important; padding-right: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px2 { padding-left: var= (--su2) !important; padding-right: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px4 { padding-left: var= (--su4) !important; padding-right: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px6 { padding-left: var= (--su6) !important; padding-right: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px8 { padding-left: var= (--su8) !important; padding-right: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px12 { padding-left: va= r(--su12) !important; padding-right: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px16 { padding-left: va= r(--su16) !important; padding-right: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px24 { padding-left: va= r(--su24) !important; padding-right: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px32 { padding-left: va= r(--su32) !important; padding-right: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px48 { padding-left: va= r(--su48) !important; padding-right: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px64 { padding-left: va= r(--su64) !important; padding-right: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px96 { padding-left: va= r(--su96) !important; padding-right: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:px128 { padding-left: v= ar(--su128) !important; padding-right: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py0 { padding-top: var(= --su0) !important; padding-bottom: var(--su0) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py1 { padding-top: var(= --su1) !important; padding-bottom: var(--su1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py2 { padding-top: var(= --su2) !important; padding-bottom: var(--su2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py4 { padding-top: var(= --su4) !important; padding-bottom: var(--su4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py6 { padding-top: var(= --su6) !important; padding-bottom: var(--su6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py8 { padding-top: var(= --su8) !important; padding-bottom: var(--su8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py12 { padding-top: var= (--su12) !important; padding-bottom: var(--su12) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py16 { padding-top: var= (--su16) !important; padding-bottom: var(--su16) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py24 { padding-top: var= (--su24) !important; padding-bottom: var(--su24) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py32 { padding-top: var= (--su32) !important; padding-bottom: var(--su32) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py48 { padding-top: var= (--su48) !important; padding-bottom: var(--su48) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py64 { padding-top: var= (--su64) !important; padding-bottom: var(--su64) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py96 { padding-top: var= (--su96) !important; padding-bottom: var(--su96) !important; } html.html__responsive.html__unpinned-leftnav .sm\:py128 { padding-top: va= r(--su128) !important; padding-bottom: var(--su128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i0 { inset: var(--su0) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:i1 { inset: var(--su1) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:i2 { inset: var(--su2) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:i4 { inset: var(--su4) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:i6 { inset: var(--su6) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:i8 { inset: var(--su8) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:i12 { inset: var(--su12= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i16 { inset: var(--su16= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i24 { inset: var(--su24= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i32 { inset: var(--su32= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i48 { inset: var(--su48= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i64 { inset: var(--su64= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i96 { inset: var(--su96= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:i128 { inset: var(--su1= 28) !important; } html.html__responsive.html__unpinned-leftnav .sm\:t0 { top: var(--su0) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:t1 { top: var(--su1) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:t2 { top: var(--su2) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:t4 { top: var(--su4) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:t6 { top: var(--su6) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:t8 { top: var(--su8) !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:t12 { top: var(--su12) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t16 { top: var(--su16) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t24 { top: var(--su24) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t32 { top: var(--su32) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t48 { top: var(--su48) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t64 { top: var(--su64) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t96 { top: var(--su96) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:t128 { top: var(--su128= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn1 { top: calc(var(--s= u1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn2 { top: calc(var(--s= u2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn4 { top: calc(var(--s= u4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn6 { top: calc(var(--s= u6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn8 { top: calc(var(--s= u8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn12 { top: calc(var(--= su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn16 { top: calc(var(--= su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn24 { top: calc(var(--= su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn32 { top: calc(var(--= su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn48 { top: calc(var(--= su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn64 { top: calc(var(--= su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn96 { top: calc(var(--= su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:tn128 { top: calc(var(-= -su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:t50 { top: 50% !importa= nt; } html.html__responsive.html__unpinned-leftnav .sm\:t100 { top: 100% !impor= tant; } html.html__responsive.html__unpinned-leftnav .sm\:tn50 { top: -50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .sm\:tn100 { top: -100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .sm\:r0 { right: var(--su0) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:r1 { right: var(--su1) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:r2 { right: var(--su2) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:r4 { right: var(--su4) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:r6 { right: var(--su6) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:r8 { right: var(--su8) = !important; } html.html__responsive.html__unpinned-leftnav .sm\:r12 { right: var(--su12= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r16 { right: var(--su16= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r24 { right: var(--su24= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r32 { right: var(--su32= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r48 { right: var(--su48= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r64 { right: var(--su64= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r96 { right: var(--su96= ) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r128 { right: var(--su1= 28) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn1 { right: calc(var(-= -su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn2 { right: calc(var(-= -su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn4 { right: calc(var(-= -su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn6 { right: calc(var(-= -su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn8 { right: calc(var(-= -su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn12 { right: calc(var(= --su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn16 { right: calc(var(= --su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn24 { right: calc(var(= --su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn32 { right: calc(var(= --su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn48 { right: calc(var(= --su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn64 { right: calc(var(= --su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn96 { right: calc(var(= --su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:rn128 { right: calc(var= (--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:r50 { right: 50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .sm\:r100 { right: 100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .sm\:rn50 { right: -50% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .sm\:rn100 { right: -100% !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:b0 { bottom: var(--su0)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:b1 { bottom: var(--su1)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:b2 { bottom: var(--su2)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:b4 { bottom: var(--su4)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:b6 { bottom: var(--su6)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:b8 { bottom: var(--su8)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:b12 { bottom: var(--su1= 2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b16 { bottom: var(--su1= 6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b24 { bottom: var(--su2= 4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b32 { bottom: var(--su3= 2) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b48 { bottom: var(--su4= 8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b64 { bottom: var(--su6= 4) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b96 { bottom: var(--su9= 6) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b128 { bottom: var(--su= 128) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn1 { bottom: calc(var(= --su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn2 { bottom: calc(var(= --su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn4 { bottom: calc(var(= --su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn6 { bottom: calc(var(= --su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn8 { bottom: calc(var(= --su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn12 { bottom: calc(var= (--su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn16 { bottom: calc(var= (--su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn24 { bottom: calc(var= (--su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn32 { bottom: calc(var= (--su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn48 { bottom: calc(var= (--su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn64 { bottom: calc(var= (--su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn96 { bottom: calc(var= (--su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:bn128 { bottom: calc(va= r(--su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:b50 { bottom: 50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:b100 { bottom: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .sm\:bn50 { bottom: -50% !im= portant; } html.html__responsive.html__unpinned-leftnav .sm\:bn100 { bottom: -100% != important; } html.html__responsive.html__unpinned-leftnav .sm\:l0 { left: var(--su0) != important; } html.html__responsive.html__unpinned-leftnav .sm\:l1 { left: var(--su1) != important; } html.html__responsive.html__unpinned-leftnav .sm\:l2 { left: var(--su2) != important; } html.html__responsive.html__unpinned-leftnav .sm\:l4 { left: var(--su4) != important; } html.html__responsive.html__unpinned-leftnav .sm\:l6 { left: var(--su6) != important; } html.html__responsive.html__unpinned-leftnav .sm\:l8 { left: var(--su8) != important; } html.html__responsive.html__unpinned-leftnav .sm\:l12 { left: var(--su12)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l16 { left: var(--su16)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l24 { left: var(--su24)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l32 { left: var(--su32)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l48 { left: var(--su48)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l64 { left: var(--su64)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l96 { left: var(--su96)= !important; } html.html__responsive.html__unpinned-leftnav .sm\:l128 { left: var(--su12= 8) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln1 { left: calc(var(--= su1) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln2 { left: calc(var(--= su2) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln4 { left: calc(var(--= su4) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln6 { left: calc(var(--= su6) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln8 { left: calc(var(--= su8) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln12 { left: calc(var(-= -su12) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln16 { left: calc(var(-= -su16) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln24 { left: calc(var(-= -su24) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln32 { left: calc(var(-= -su32) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln48 { left: calc(var(-= -su48) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln64 { left: calc(var(-= -su64) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln96 { left: calc(var(-= -su96) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:ln128 { left: calc(var(= --su128) * -1) !important; } html.html__responsive.html__unpinned-leftnav .sm\:l50 { left: 50% !import= ant; } html.html__responsive.html__unpinned-leftnav .sm\:l100 { left: 100% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:ln50 { left: -50% !impo= rtant; } html.html__responsive.html__unpinned-leftnav .sm\:ln100 { left: -100% !im= portant; } html.html__responsive.html__unpinned-leftnav .sm\:ta-left { text-align: l= eft !important; } html.html__responsive.html__unpinned-leftnav .sm\:ta-center { text-align:= center !important; } html.html__responsive.html__unpinned-leftnav .sm\:ta-right { text-align: = right !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-block { display: bloc= k !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-flex { display: flex = !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-inline-flex { display= : inline-flex !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-grid { display: grid = !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-inline-grid { display= : inline-grid !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-inline { display: inl= ine !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-inline-block { displa= y: inline-block !important; } html.html__responsive.html__unpinned-leftnav .sm\:d-none { display: none = !important; } html.html__responsive.html__unpinned-leftnav .sm\:ps-absolute { position:= absolute !important; } html.html__responsive.html__unpinned-leftnav .sm\:ps-fixed { position: fi= xed !important; } html.html__responsive.html__unpinned-leftnav .sm\:ps-relative { position:= relative !important; } html.html__responsive.html__unpinned-leftnav .sm\:ps-static { position: s= tatic !important; } html.html__responsive.html__unpinned-leftnav .sm\:ps-sticky { position: s= ticky !important; } html.html__responsive.html__unpinned-leftnav .sm\:bs-none { box-shadow: n= one !important; } html.html__responsive.html__unpinned-leftnav .sm\:w25 { width: 25% !impor= tant; } html.html__responsive.html__unpinned-leftnav .sm\:w33 { width: 33.3333% != important; } html.html__responsive.html__unpinned-leftnav .sm\:w50 { width: 50% !impor= tant; } html.html__responsive.html__unpinned-leftnav .sm\:w66 { width: 66.6667% != important; } html.html__responsive.html__unpinned-leftnav .sm\:w75 { width: 75% !impor= tant; } html.html__responsive.html__unpinned-leftnav .sm\:w100 { width: 100% !imp= ortant; } html.html__responsive.html__unpinned-leftnav .sm\:w-auto { width: auto !i= mportant; } html.html__responsive.html__unpinned-leftnav .sm\:w-screen { width: 100vw= !important; } html.html__responsive.html__unpinned-leftnav .sm\:wmx100 { max-width: 100= % !important; } html.html__responsive.html__unpinned-leftnav .sm\:wmx-initial { max-width= : initial !important; } html.html__responsive.html__unpinned-leftnav .sm\:wmx-screen { max-width:= 100vw !important; } html.html__responsive.html__unpinned-leftnav .sm\:wmn100 { min-width: 100= % !important; } html.html__responsive.html__unpinned-leftnav .sm\:wmn-initial { min-width= : initial !important; } html.html__responsive.html__unpinned-leftnav .sm\:h100 { height: 100% !im= portant; } html.html__responsive.html__unpinned-leftnav .sm\:h-auto { height: auto != important; } html.html__responsive.html__unpinned-leftnav .sm\:h-screen { height: 100v= h !important; } html.html__responsive.html__unpinned-leftnav .sm\:hmx100 { max-height: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .sm\:hmx-initial { max-heigh= t: initial !important; } html.html__responsive.html__unpinned-leftnav .sm\:hmx-screen { max-height= : 100vh !important; } html.html__responsive.html__unpinned-leftnav .sm\:hmn100 { min-height: 10= 0% !important; } html.html__responsive.html__unpinned-leftnav .sm\:hmn-initial { min-heigh= t: initial !important; } html.html__responsive.html__unpinned-leftnav .sm\:hmn-screen { min-height= : 100vh !important; } } @media print { .print\:d-block { display: block !important; } .print\:d-none { display: none !important; } } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: https://cdn.sstatic.net/Sites/serverfault/primary.css?v=93b363770a38 @charset "utf-8"; body.unified-theme, body.unified-theme * { --theme-base-primary-color-h: 0;= --theme-base-primary-color-s: 65%; --theme-base-primary-color-l: 37%; --th= eme-primary-custom-100: hsl(var(--theme-base-primary-color-h), var(--theme-= base-primary-color-s), calc(var(--theme-base-primary-color-l) + ((100% - va= r(--theme-base-primary-color-l)) * .9))); --theme-primary-custom-200: hsl(v= ar(--theme-base-primary-color-h), var(--theme-base-primary-color-s), calc(v= ar(--theme-base-primary-color-l) + ((100% - var(--theme-base-primary-color-= l)) * .75))); --theme-primary-custom-300: hsl(var(--theme-base-primary-colo= r-h), var(--theme-base-primary-color-s), calc(var(--theme-base-primary-colo= r-l) + ((100% - var(--theme-base-primary-color-l)) * .5))); --theme-primary= -custom-400: hsl(var(--theme-base-primary-color-h), var(--theme-base-primar= y-color-s), var(--theme-base-primary-color-l)); --theme-primary-custom-500:= hsl(var(--theme-base-primary-color-h), var(--theme-base-primary-color-s), = calc(var(--theme-base-primary-color-l) + (var(--theme-base-primary-color-l)= * -.3))); --theme-primary-custom-600: hsl(var(--theme-base-primary-color-h= ), var(--theme-base-primary-color-s), calc(var(--theme-base-primary-color-l= ) + (var(--theme-base-primary-color-l) * -.6))); --theme-primary-custom: va= r(--theme-primary-custom-400); --theme-button-color: var(--theme-primary); = --theme-button-hover-color: var(--theme-primary-400); --theme-button-hover-= background-color: var(--theme-primary-100); --theme-button-active-backgroun= d-color: var(--theme-primary-200); --theme-button-selected-color: var(--the= me-primary-600); --theme-button-selected-background-color: var(--theme-prim= ary-300); --theme-button-outlined-border-color: var(--theme-primary-400); -= -theme-button-outlined-selected-border-color: var(--theme-primary-500); --t= heme-button-primary-color: var(--white); --theme-button-primary-active-colo= r: var(--white); --theme-button-primary-hover-color: var(--white); --theme-= button-primary-selected-color: var(--white); --theme-button-primary-backgro= und-color: var(--theme-primary-400); --theme-button-primary-active-backgrou= nd-color: var(--theme-primary-600); --theme-button-primary-hover-background= -color: var(--theme-primary-500); --theme-button-primary-selected-backgroun= d-color: var(--theme-primary-600); --theme-background-color: var(--white); = --theme-background-position: top left; --theme-background-repeat: repeat; -= -theme-background-size: auto; --theme-background-attachment: auto; --theme-= content-background-color: var(--white); --theme-content-border-color: var(-= -black-225); --theme-header-background-color: #F4F4F4; --theme-header-backg= round-position: center left; --theme-header-background-repeat: repeat; --th= eme-header-background-size: auto; --theme-header-background-border-bottom: = 0; --theme-header-link-color: var(--theme-primary); --theme-header-sponsore= d-color: hsl(210,8%,25%); --theme-header-foreground-color: transparent; --t= heme-header-foreground-position: bottom right; --theme-header-foreground-re= peat: no-repeat; --theme-header-foreground-size: auto; --theme-footer-backg= round-color: hsl(210,8%,5%); --theme-footer-background-position: top left; = --theme-footer-background-repeat: no-repeat; --theme-footer-background-size= : auto; --theme-footer-background-border-top: 0; --theme-footer-title-color= : hsl(0,0%,100%); --theme-footer-text-color: hsl(210,8%,68%); --theme-foote= r-link-color: hsl(210,9%,75%); --theme-footer-link-color-hover: hsl(210,8%,= 85%); --theme-footer-divider-color: hsl(210,8%,25%); --theme-footer-padding= -top: 0; --theme-footer-padding-bottom: 0; --theme-link-color: var(--theme-= primary); --theme-link-color-hover: var(--theme-primary-500); --theme-link-= color-visited: var(--theme-primary-600); --theme-tag-background-color: #ede= ac6; --theme-tag-border-color: #d6d2a6; --theme-tag-color: #373737; --theme= -tag-hover-background-color: #e7e3b3; --theme-tag-hover-border-color: #cec9= 95; --theme-tag-hover-color: #2a2a2a; --theme-tag-required-border-color: #3= 73737; --theme-tag-required-hover-border-color: #2a2a2a; --theme-body-font-= family: var(--ff-sans); --theme-body-font-color: var(--black-600); --theme-= post-title-font-family: var(--ff-sans); --theme-post-title-color: var(--the= me-link-color); --theme-post-title-color-hover: var(--theme-link-color-hove= r); --theme-post-title-color-visited: var(--theme-link-color-visited); --th= eme-post-body-font-family: var(--ff-sans); --theme-post-owner-background-co= lor: var(--theme-primary-100); --theme-post-owner-new-background-color: var= (--theme-primary-200); --theme-topbar-bottom-border: none; } html, body { color: var(--theme-body-font-color, var(--black-600)); font-fa= mily: var(--theme-body-font-family); font-size: var(--fs-base); line-height= : var(--lh-base); } @media (max-width: 640px) { html.html__responsive:not(.html__unpinned-leftnav), html.html__responsive= :not(.html__unpinned-leftnav) body { font-size: 11px; } } @media (max-width: 640px) { html.html__responsive.html__unpinned-leftnav, html.html__responsive.html_= _unpinned-leftnav body { font-size: 11px; } } body { box-sizing: border-box; min-height: 100%; background-color: var(--th= eme-background-color, var(--white)); } body *, body ::before, body ::after { box-sizing: inherit; } .row { max-width: 1080px; width: 100%; } .row::before, .row::after { display: table; content: " "; } .row::after { clear: both; } .col-1 { width: 8.33333%; float: left; } .col-1.with-padding { padding-left: 10px; padding-right: 10px; } .col-1.with-padding:first-child { padding-left: 0px; } .col-1.with-padding:last-child { padding-right: 0px; } .col-2 { width: 16.6667%; float: left; } .col-2.with-padding { padding-left: 10px; padding-right: 10px; } .col-2.with-padding:first-child { padding-left: 0px; } .col-2.with-padding:last-child { padding-right: 0px; } .col-3 { width: 25%; float: left; } .col-3.with-padding { padding-left: 10px; padding-right: 10px; } .col-3.with-padding:first-child { padding-left: 0px; } .col-3.with-padding:last-child { padding-right: 0px; } .col-4 { width: 33.3333%; float: left; } .col-4.with-padding { padding-left: 10px; padding-right: 10px; } .col-4.with-padding:first-child { padding-left: 0px; } .col-4.with-padding:last-child { padding-right: 0px; } .col-5 { width: 41.6667%; float: left; } .col-5.with-padding { padding-left: 10px; padding-right: 10px; } .col-5.with-padding:first-child { padding-left: 0px; } .col-5.with-padding:last-child { padding-right: 0px; } .col-6 { width: 50%; float: left; } .col-6.with-padding { padding-left: 10px; padding-right: 10px; } .col-6.with-padding:first-child { padding-left: 0px; } .col-6.with-padding:last-child { padding-right: 0px; } .col-7 { width: 58.3333%; float: left; } .col-7.with-padding { padding-left: 10px; padding-right: 10px; } .col-7.with-padding:first-child { padding-left: 0px; } .col-7.with-padding:last-child { padding-right: 0px; } .col-8 { width: 66.6667%; float: left; } .col-8.with-padding { padding-left: 10px; padding-right: 10px; } .col-8.with-padding:first-child { padding-left: 0px; } .col-8.with-padding:last-child { padding-right: 0px; } .col-9 { width: 75%; float: left; } .col-9.with-padding { padding-left: 10px; padding-right: 10px; } .col-9.with-padding:first-child { padding-left: 0px; } .col-9.with-padding:last-child { padding-right: 0px; } .col-10 { width: 83.3333%; float: left; } .col-10.with-padding { padding-left: 10px; padding-right: 10px; } .col-10.with-padding:first-child { padding-left: 0px; } .col-10.with-padding:last-child { padding-right: 0px; } .col-11 { width: 91.6667%; float: left; } .col-11.with-padding { padding-left: 10px; padding-right: 10px; } .col-11.with-padding:first-child { padding-left: 0px; } .col-11.with-padding:last-child { padding-right: 0px; } .col-12 { width: 100%; float: left; } .col-12.with-padding { padding-left: 10px; padding-right: 10px; } .col-12.with-padding:first-child { padding-left: 0px; } .col-12.with-padding:last-child { padding-right: 0px; } .svg-icon { vertical-align: bottom; } .svg-icon:not(.native) * { fill: currentcolor; } .icon-site, .icon-location, .icon-github, .icon-twitter, .icon-external-lin= k, .icon-settings-off { background-image: url("../../Img/user-profile-sprit= e.svg?v=3Dd88bb7069e3d"), none; display: inline-block; width: 12px; height:= 14px; vertical-align: middle; } .icon-site { background-position: 0px -80px; } .icon-location { background-position: 0px -97px; } .icon-github { background-position: 0px -114px; } .icon-twitter { background-position: 0px -131px; } .icon-settings-off { height: 12px; width: 11px; background-position: 0px -3= 55px; } .icon-settings-off.hover:hover { background-position: 0px -370px; } .icon-external-link { width: 14px; height: 14px; background-position: -49px= -369px; } .input-icon { position: relative; } .input-icon .svg-icon { position: absolute; top: 8px; left: 8px; z-index: 9= 9; pointer-events: none; } .input-icon .icon { position: absolute; z-index: 99; pointer-events: none; = top: 50%; margin-top: -7px; left: 12px; } .input-icon input { padding-left: 30px !important; } .icon-check-on, .icon-check-off, .item-select-table .item input[type=3D"che= ckbox"]:checked + .check, .item-select-table .item .check { background-imag= e: url("../../Img/developer-story/timeline.svg?v=3Dd0477cf4f5f4"), none; wi= dth: 16px; height: 16px; display: inline-block; } .icon-check-off, .item-select-table .item .check { background-position: -51= px -58px; } .icon-check-on, .item-select-table .item input[type=3D"checkbox"]:checked += .check { background-position: -74px -58px; } .icon-check-small-on, .icon-check-small-off { background-image: url("../../= Img/developer-story/timeline.svg?v=3Dd0477cf4f5f4"), none; width: 13px; hei= ght: 10px; display: inline-block; } .icon-check-small-on { background-position: -51px -40px; } .icon-check-small-off { background-position: -74px -40px; } .icon-privacy-public, .icon-privacy-private, .icon-privacy-public-btn, .ico= n-privacy-private-btn { background-image: url("../../Img/developer-story/ti= meline.svg?v=3Dd0477cf4f5f4"), none; width: 11px; height: 11px; display: in= line-block; } .icon-privacy-public { background-position: -52px 0px; } .icon-privacy-private { background-position: -76px 0px; } .icon-privacy-public-btn { background-position: -52px -20px; } .icon-privacy-private-btn { background-position: -76px -20px; } .icon-i, .icon-i-orange { background-image: url("../../Img/developer-story/= timeline.svg?v=3Dd0477cf4f5f4"), none; width: 14px; height: 14px; display: = inline-block; background-position: -54px -94px; } .icon-i-orange { background-position: -54px -134px; width: 12px; height: 12= px; } .icon-warning-orange, .icon-warning-label::before { background-image: url("= ../../Img/developer-story/timeline.svg?v=3Dd0477cf4f5f4"), none; width: 13p= x; height: 11px; display: inline-block; } .icon-warning-orange, .icon-warning-label::before { background-position: -5= 5px -114px; } .icon-warning-label { display: inline-block; background: rgb(250, 238, 214)= ; border-radius: 3px; padding: 2px 4px; cursor: pointer; } .icon-warning-label::before { content: ""; } #location-home-item, .needs-visa { position: relative; padding-left: 1.8em = !important; } #location-home-item .visa-icon, .needs-visa .visa-icon, #location-home-item= .home-icon, .needs-visa .home-icon { position: absolute; left: 0.4em; top:= 50%; transform: translate(0%, -50%); } .home-icon { background-image: url("../../Img/developer-story/timeline.svg?= v=3Dd0477cf4f5f4"), none; width: 12px; height: 12px; display: inline-block;= background-position: -76px -132px; } .visa-icon { background-image: url("../../Img/developer-story/timeline.svg?= v=3Dd0477cf4f5f4"), none; width: 12px; height: 12px; display: inline-block;= background-position: -76px -114px; } .geo-tag .visa-icon { display: none; } .geo-tag.needs-visa .visa-icon { display: inline-block; } .icon-image-upload { background-image: url("../../Img/developer-story/timel= ine.svg?v=3Dd0477cf4f5f4"), none; width: 20px; height: 19px; display: inlin= e-block; background-position: 0px -360px; } .icon-external-link { background-image: url("../../Img/developer-story/time= line.svg?v=3Dd0477cf4f5f4"), none; width: 12px; height: 10px; display: inli= ne-block; background-position: 0px -430px; } .icon-play-white { background-image: url("../../Img/share-sprite-new.svg?v= =3D0e11bfd41fbc"), none; width: 12px; height: 12px; display: inline-block; = background-position: 0px -258px; } .btn .icon-play-white { position: relative; top: 1px; } .icon-print { background-image: url("../../Img/developer-story/timeline.svg= ?v=3Dd0477cf4f5f4"), none; width: 12px; height: 11px; display: inline-block= ; background-position: 0px -488px; } .badge, .badge-tag { padding: 0.4em 0.8em 0.4em 0.4em; margin: 0px 3px 3px = 0px; color: rgb(255, 255, 255); line-height: 1; text-decoration: none; whit= e-space: nowrap; font-size: var(--fs-caption); background-color: rgb(59, 64= , 69); border: 1px solid transparent; display: inline-block; border-radius:= 4px; } @media (prefers-color-scheme: dark) { body.theme-system .badge, body.theme-system .badge-tag { background-color= : rgb(12, 13, 14); } } body.theme-dark .badge, body.theme-dark .badge-tag, .theme-dark__forced .ba= dge, .theme-dark__forced .badge-tag, body.theme-system .theme-dark__forced = .badge, body.theme-system .theme-dark__forced .badge-tag { background-color= : rgb(12, 13, 14); } .badge:hover, .badge-tag:hover { color: rgb(255, 255, 255); text-decoration= : none; background-color: rgb(12, 13, 14); } @media (prefers-color-scheme: dark) { body.theme-system .badge:hover, body.theme-system .badge-tag:hover { back= ground-color: rgb(0, 0, 0); } } body.theme-dark .badge:hover, body.theme-dark .badge-tag:hover, .theme-dark= __forced .badge:hover, .theme-dark__forced .badge-tag:hover, body.theme-sys= tem .theme-dark__forced .badge:hover, body.theme-system .theme-dark__forced= .badge-tag:hover { background-color: rgb(0, 0, 0); } body.theme-highcontrast .badge { border-color: rgb(12, 13, 14); } .badge-tag { color: var(--black-500); background-color: var(--black-150); b= order-color: var(--black-225); } body.theme-highcontrast .badge-tag { border-color: currentcolor; } .badge-tag:hover { color: var(--black-500); background-color: var(--black-2= 00); border-color: var(--black-250); } .badgecount { font-size: var(--fs-caption); font-weight: bold; padding-left= : 2px; color: var(--black-400); } .badge1, .badge2, .badge3 { display: inline-block; overflow: hidden; line-h= eight: inherit; vertical-align: text-bottom; width: 14px; height: 14px; } .badge1 { background-position: -97px -398px; } .badge2 { background-position: -77px -398px; } .badge3 { background-position: -57px -398px; } select, input, button, .button, a.button:link, .btn, [class*=3D"btn-"] { fo= nt-size: 100%; } input[type=3D"text"]:not(.s-input):not(.s-textarea), input[type=3D"password= "]:not(.s-input):not(.s-textarea), input[type=3D"number"]:not(.s-input):not= (.s-textarea), input[type=3D"email"]:not(.s-input):not(.s-textarea), input[= type=3D"url"]:not(.s-input):not(.s-textarea), input[type=3D"search"]:not(.s= -input):not(.s-textarea), input[type=3D"tel"]:not(.s-input):not(.s-textarea= ), input[type=3D"datetime"]:not(.s-input):not(.s-textarea), input[type=3D"d= atetime-local"]:not(.s-input):not(.s-textarea), input[type=3D"date"]:not(.s= -input):not(.s-textarea), textarea:not(.s-input):not(.s-textarea) { padding= : 8px 10px; font-family: var(--theme-body-font-family); font-size: var(--fs= -body2); color: rgb(59, 64, 69); background: rgb(255, 255, 255); border: 1p= x solid rgb(200, 204, 208); } input[type=3D"text"]:not(.s-input):not(.s-textarea)[disabled], input[type= =3D"password"]:not(.s-input):not(.s-textarea)[disabled], input[type=3D"numb= er"]:not(.s-input):not(.s-textarea)[disabled], input[type=3D"email"]:not(.s= -input):not(.s-textarea)[disabled], input[type=3D"url"]:not(.s-input):not(.= s-textarea)[disabled], input[type=3D"search"]:not(.s-input):not(.s-textarea= )[disabled], input[type=3D"tel"]:not(.s-input):not(.s-textarea)[disabled], = input[type=3D"datetime"]:not(.s-input):not(.s-textarea)[disabled], input[ty= pe=3D"datetime-local"]:not(.s-input):not(.s-textarea)[disabled], input[type= =3D"date"]:not(.s-input):not(.s-textarea)[disabled], textarea:not(.s-input)= :not(.s-textarea)[disabled] { background: rgba(167, 173, 180, 0.1); cursor:= not-allowed; } input[type=3D"text"]:not(.s-input):not(.s-textarea)::-webkit-input-placehol= der, input[type=3D"password"]:not(.s-input):not(.s-textarea)::-webkit-input= -placeholder, input[type=3D"number"]:not(.s-input):not(.s-textarea)::-webki= t-input-placeholder, input[type=3D"email"]:not(.s-input):not(.s-textarea)::= -webkit-input-placeholder, input[type=3D"url"]:not(.s-input):not(.s-textare= a)::-webkit-input-placeholder, input[type=3D"search"]:not(.s-input):not(.s-= textarea)::-webkit-input-placeholder, input[type=3D"tel"]:not(.s-input):not= (.s-textarea)::-webkit-input-placeholder, input[type=3D"datetime"]:not(.s-i= nput):not(.s-textarea)::-webkit-input-placeholder, input[type=3D"datetime-l= ocal"]:not(.s-input):not(.s-textarea)::-webkit-input-placeholder, input[typ= e=3D"date"]:not(.s-input):not(.s-textarea)::-webkit-input-placeholder, text= area:not(.s-input):not(.s-textarea)::-webkit-input-placeholder { color: rgb= (167, 173, 180); } input[type=3D"text"]:not(.s-input):not(.s-textarea)::placeholder, input[typ= e=3D"password"]:not(.s-input):not(.s-textarea)::placeholder, input[type=3D"= number"]:not(.s-input):not(.s-textarea)::placeholder, input[type=3D"email"]= :not(.s-input):not(.s-textarea)::placeholder, input[type=3D"url"]:not(.s-in= put):not(.s-textarea)::placeholder, input[type=3D"search"]:not(.s-input):no= t(.s-textarea)::placeholder, input[type=3D"tel"]:not(.s-input):not(.s-texta= rea)::placeholder, input[type=3D"datetime"]:not(.s-input):not(.s-textarea):= :placeholder, input[type=3D"datetime-local"]:not(.s-input):not(.s-textarea)= ::placeholder, input[type=3D"date"]:not(.s-input):not(.s-textarea)::placeho= lder, textarea:not(.s-input):not(.s-textarea)::placeholder { color: rgb(167= , 173, 180); } textarea.custom-reason-text { width: 600px; } input { margin: 5px 0px; } input[type=3D"checkbox"]:not(.s-checkbox), input[type=3D"radio"]:not(.s-rad= io) { border: none; margin-right: 5px; } .form-submit { display: block; padding: 10px 0px 15px; } .form-submit input:hover { cursor: pointer; } .form-submit input:active { position: relative; top: 1px; } .privacy-wrapper { position: relative; } .privacy-wrapper .privacy-checkbox { display: none; width: auto; padding: 3= px 6px; border-radius: 3px 3px 0px 0px; position: absolute; top: -8px; righ= t: 0px; font-size: var(--fs-fine); color: white; background: rgb(27, 117, 2= 08); } .privacy-wrapper .privacy-checkbox input[type=3D"checkbox"] { position: rel= ative; z-index: 1; margin-right: 8px; } .privacy-wrapper .privacy-checkbox:focus { outline: 0px; } .privacy-wrapper .privacy-checkbox::before { content: ""; display: inline-b= lock; position: absolute; left: 0px; top: 0px; bottom: 0px; width: 24px; ba= ckground: rgb(20, 87, 153); z-index: 0; border-radius: 3px 0px 0px; } .has-error .textarea-with-counter textarea:not(:focus) { border-top-color: = rgb(200, 50, 50); border-right-color: rgb(200, 50, 50); border-left-color: = rgb(200, 50, 50); border-bottom: 0px; } .has-error .textarea-with-counter textarea:not(:focus) + .-counter { border= -color: rgb(200, 50, 50); } .textarea-with-counter { margin: 5px 0px; } .textarea-with-counter + .help-text { display: block; margin-bottom: 5px !i= mportant; } .textarea-with-counter textarea { border-bottom: 0px; display: block; margi= n: 0px !important; } .textarea-with-counter textarea:focus { border-bottom: 0px; } .textarea-with-counter textarea:focus + .-counter { border-color: rgb(27, 1= 17, 208); } .textarea-with-counter .-counter { display: flex; align-items: center; back= ground: rgb(214, 232, 250); padding: 4px; color: rgb(99, 107, 116); font-si= ze: var(--fs-fine); border-bottom: 1px solid rgb(200, 204, 208); border-lef= t: 1px solid rgb(200, 204, 208); border-right: 1px solid rgb(200, 204, 208)= ; } .textarea-with-counter .-counter.-fail .-dot, .textarea-with-counter .-coun= ter.-success .-dot { display: inline-block; } .textarea-with-counter .-counter.-fail .-dot { background: rgb(231, 112, 13= ); } .textarea-with-counter .-counter.-success { color: var(--green-400); } .textarea-with-counter .-counter.-success .-dot { background: rgb(24, 134, = 75); } .textarea-with-counter .-dot { display: none; width: 8px; height: 8px; marg= in-right: 4px; border-radius: 50%; } .label-required { display: inline-block; margin-left: 2px; color: rgb(99, 1= 07, 116); } .double-input::before, .double-input::after { content: ""; display: table; = } .double-input::after { clear: both; } .double-input input[type=3D"text"], .double-input input[type=3D"password"],= .double-input input[type=3D"email"], .double-input .separator { float: lef= t; display: inline-block; width: auto; max-width: 155px; } .double-input .separator { background: rgb(241, 242, 243); color: rgb(99, 1= 07, 116); font-size: var(--fs-body1); padding: 8px 10px; margin: 5px 0px; b= order-top: 1px solid rgb(200, 204, 208); border-bottom: 1px solid rgb(200, = 204, 208); min-width: 12px; text-align: center; } .double-input.disabled { pointer-events: none; cursor: not-allowed; opacity= : 0.4; } .double-input.flex { display: flex; margin-bottom: 18px; } .double-input.flex .separator { float: none; flex-shrink: 0; margin: 5px 0p= x 0px; } .double-input.flex input[type=3D"text"], .double-input.flex input[type=3D"p= assword"], .double-input.flex input[type=3D"email"] { float: none; flex-gro= w: 1; max-width: none; margin-bottom: 0px !important; } .switcher { margin: 5px auto 8px; display: inline-block; border: 1px solid = rgb(227, 230, 232); border-radius: 3px; overflow: hidden; } .switcher::before, .switcher::after { content: ""; display: table; } .switcher::after { clear: both; } .switcher input[type=3D"radio"] { display: none; } .switcher label { background: rgb(255, 255, 255); transition: background 30= 0ms; text-align: center; color: rgb(99, 107, 116); display: inline-block; p= adding: 10px 8px; min-width: 98px; float: left; cursor: pointer; border-rig= ht: 1px solid rgb(227, 230, 232); margin-top: 0px; } .switcher label:last-of-type { border-right: 0px; } .switcher label:hover { background: rgb(244, 248, 251); } .switcher input[type=3D"radio"]:checked + label { background: rgb(225, 236,= 244); color: rgb(59, 64, 69); pointer-events: none; } .switcher.three-choices label { width: 30.5%; } .switcher.flex { display: flex; overflow: inherit; } .switcher.flex label { min-width: 0px; flex-grow: 1; } .switcher.flex.three label { width: 34%; } .switcher.flex .informative-tooltip { width: 200px; } .disabled-area { opacity: 0.5; pointer-events: none; } label.block, input.block, textarea.block { display: block; width: 100%; } label > input[type=3D"checkbox"] { vertical-align: middle; margin: 0px 3px = 3px 0px; } label > input[type=3D"radio"] { margin: 0px 3px 4px 0px; } input[type=3D"radio"], input[type=3D"checkbox"] { vertical-align: middle; } .container .chosen-container .chosen-choices { border: 1px solid rgb(200, 2= 04, 208); box-shadow: rgba(12, 13, 14, 0.1) 0px 1px 2px inset; background: = rgb(255, 255, 255); } .input-loader { position: relative; } .input-loader.loading::before { content: ""; top: 50%; margin-top: -7px; ri= ght: 7px; position: absolute !important; } .f-label, label.f-label { display: inline-flex; margin: 0px; font-size: var= (--fs-body1); line-height: var(--lh-lg); font-weight: 700; color: var(--bla= ck-500); cursor: pointer; } .f-label._muted, label.f-label._muted { color: var(--black-400); } .f-label._small, label.f-label._small { font-size: calc(var(--fs-body1) - 2= px); } .f-label._medium, label.f-label._medium { font-size: calc(var(--fs-body1) += 4px); } .f-label._large, label.f-label._large { font-size: calc(var(--fs-body1) + 8= px); } .f-label._medium, label.f-label._medium, .f-label._large, label.f-label._la= rge { font-weight: 400; } .f-label .is-required, label.f-label .is-required, .f-label .is-optional, l= abel.f-label .is-optional { display: inline-flex; align-self: flex-end; mar= gin-bottom: var(--su2); margin-left: var(--su8); font-size: 86%; font-style= : italic; font-weight: 400; } p.is-required, span.is-required { color: rgb(200, 50, 50); } p.is-optional, span.is-optional { color: rgb(99, 107, 116); } .t-help { margin-top: var(--su6); margin-bottom: var(--su12); color: rgb(99= , 107, 116); font-size: calc(var(--fs-body1) - 2px); line-height: var(--lh-= md); } .t-help._medium { font-size: var(--fs-body1); } .f-input, textarea.f-input, input[type=3D"text"].f-input, input[type=3D"pas= sword"].f-input, input[type=3D"number"].f-input, input[type=3D"email"].f-in= put, input[type=3D"url"].f-input, input[type=3D"search"].f-input, input[typ= e=3D"tel"].f-input, input[type=3D"datetime"].f-input { box-sizing: border-b= ox; flex: 1 1 auto; margin: 0px; padding: var(--su8) var(--su16); min-heigh= t: auto; vertical-align: middle; border: 1px solid rgb(200, 204, 208); bord= er-radius: 0px; box-shadow: rgba(167, 173, 180, 0.2) 0px 0px 1px inset, rgb= a(255, 255, 255, 0) 0px 0px 0px; font-size: var(--fs-body1); line-height: v= ar(--lh-lg); color: rgb(59, 64, 69); background-color: rgb(255, 255, 255); = transition: all 600ms var(--te-smooth); } .f-input::-webkit-input-placeholder, textarea.f-input::-webkit-input-placeh= older, input[type=3D"text"].f-input::-webkit-input-placeholder, input[type= =3D"password"].f-input::-webkit-input-placeholder, input[type=3D"number"].f= -input::-webkit-input-placeholder, input[type=3D"email"].f-input::-webkit-i= nput-placeholder, input[type=3D"url"].f-input::-webkit-input-placeholder, i= nput[type=3D"search"].f-input::-webkit-input-placeholder, input[type=3D"tel= "].f-input::-webkit-input-placeholder, input[type=3D"datetime"].f-input::-w= ebkit-input-placeholder { color: rgb(200, 204, 208); } .f-input::placeholder, textarea.f-input::placeholder, input[type=3D"text"].= f-input::placeholder, input[type=3D"password"].f-input::placeholder, input[= type=3D"number"].f-input::placeholder, input[type=3D"email"].f-input::place= holder, input[type=3D"url"].f-input::placeholder, input[type=3D"search"].f-= input::placeholder, input[type=3D"tel"].f-input::placeholder, input[type=3D= "datetime"].f-input::placeholder { color: rgb(200, 204, 208); } .f-input:hover, textarea.f-input:hover, input[type=3D"text"].f-input:hover,= input[type=3D"password"].f-input:hover, input[type=3D"number"].f-input:hov= er, input[type=3D"email"].f-input:hover, input[type=3D"url"].f-input:hover,= input[type=3D"search"].f-input:hover, input[type=3D"tel"].f-input:hover, i= nput[type=3D"datetime"].f-input:hover { border-color: rgba(27, 117, 208, 0.= 5); box-shadow: rgb(214, 217, 220) 0px 0px 2px inset, rgba(27, 117, 208, 0.= 2) 0px 0px 2px; } .f-input:focus, textarea.f-input:focus, input[type=3D"text"].f-input:focus,= input[type=3D"password"].f-input:focus, input[type=3D"number"].f-input:foc= us, input[type=3D"email"].f-input:focus, input[type=3D"url"].f-input:focus,= input[type=3D"search"].f-input:focus, input[type=3D"tel"].f-input:focus, i= nput[type=3D"datetime"].f-input:focus { border-color: rgb(27, 117, 208); bo= x-shadow: rgb(241, 242, 243) 0px 0px 4px inset, rgba(27, 117, 208, 0.5) 0px= 0px 5px; outline: 0px; } .f-input[disabled], textarea.f-input[disabled], input[type=3D"text"].f-inpu= t[disabled], input[type=3D"password"].f-input[disabled], input[type=3D"numb= er"].f-input[disabled], input[type=3D"email"].f-input[disabled], input[type= =3D"url"].f-input[disabled], input[type=3D"search"].f-input[disabled], inpu= t[type=3D"tel"].f-input[disabled], input[type=3D"datetime"].f-input[disable= d], .f-input.is-disabled, textarea.f-input.is-disabled, input[type=3D"text"= ].f-input.is-disabled, input[type=3D"password"].f-input.is-disabled, input[= type=3D"number"].f-input.is-disabled, input[type=3D"email"].f-input.is-disa= bled, input[type=3D"url"].f-input.is-disabled, input[type=3D"search"].f-inp= ut.is-disabled, input[type=3D"tel"].f-input.is-disabled, input[type=3D"date= time"].f-input.is-disabled, .f-input[read-only], textarea.f-input[read-only= ], input[type=3D"text"].f-input[read-only], input[type=3D"password"].f-inpu= t[read-only], input[type=3D"number"].f-input[read-only], input[type=3D"emai= l"].f-input[read-only], input[type=3D"url"].f-input[read-only], input[type= =3D"search"].f-input[read-only], input[type=3D"tel"].f-input[read-only], in= put[type=3D"datetime"].f-input[read-only], .f-input.is-readonly, textarea.f= -input.is-readonly, input[type=3D"text"].f-input.is-readonly, input[type=3D= "password"].f-input.is-readonly, input[type=3D"number"].f-input.is-readonly= , input[type=3D"email"].f-input.is-readonly, input[type=3D"url"].f-input.is= -readonly, input[type=3D"search"].f-input.is-readonly, input[type=3D"tel"].= f-input.is-readonly, input[type=3D"datetime"].f-input.is-readonly { border-= color: rgb(227, 230, 232); box-shadow: rgba(167, 173, 180, 0.1) 0px 0px 3px= inset; background-color: rgb(241, 242, 243); color: rgb(99, 107, 116); } .f-input[disabled], textarea.f-input[disabled], input[type=3D"text"].f-inpu= t[disabled], input[type=3D"password"].f-input[disabled], input[type=3D"numb= er"].f-input[disabled], input[type=3D"email"].f-input[disabled], input[type= =3D"url"].f-input[disabled], input[type=3D"search"].f-input[disabled], inpu= t[type=3D"tel"].f-input[disabled], input[type=3D"datetime"].f-input[disable= d], .f-input.is-disabled, textarea.f-input.is-disabled, input[type=3D"text"= ].f-input.is-disabled, input[type=3D"password"].f-input.is-disabled, input[= type=3D"number"].f-input.is-disabled, input[type=3D"email"].f-input.is-disa= bled, input[type=3D"url"].f-input.is-disabled, input[type=3D"search"].f-inp= ut.is-disabled, input[type=3D"tel"].f-input.is-disabled, input[type=3D"date= time"].f-input.is-disabled { background-image: url("../../Img/forms/icon-di= sabled.svg?v=3D363cfdd5fd7d"), none; background-repeat: no-repeat; backgrou= nd-position: right var(--su12) center; cursor: not-allowed; } .f-input._large, textarea.f-input._large, input[type=3D"text"].f-input._lar= ge, input[type=3D"password"].f-input._large, input[type=3D"number"].f-input= ._large, input[type=3D"email"].f-input._large, input[type=3D"url"].f-input.= _large, input[type=3D"search"].f-input._large, input[type=3D"tel"].f-input.= _large, input[type=3D"datetime"].f-input._large { padding-top: var(--su16);= padding-bottom: var(--su16); font-size: calc(var(--fs-body1) + 11px); } .f-input._medium, textarea.f-input._medium, input[type=3D"text"].f-input._m= edium, input[type=3D"password"].f-input._medium, input[type=3D"number"].f-i= nput._medium, input[type=3D"email"].f-input._medium, input[type=3D"url"].f-= input._medium, input[type=3D"search"].f-input._medium, input[type=3D"tel"].= f-input._medium, input[type=3D"datetime"].f-input._medium { font-size: calc= (var(--fs-body1) + 4px); } .f-input._small, textarea.f-input._small, input[type=3D"text"].f-input._sma= ll, input[type=3D"password"].f-input._small, input[type=3D"number"].f-input= ._small, input[type=3D"email"].f-input._small, input[type=3D"url"].f-input.= _small, input[type=3D"search"].f-input._small, input[type=3D"tel"].f-input.= _small, input[type=3D"datetime"].f-input._small { padding-left: var(--su12)= ; padding-right: var(--su12); font-size: calc(var(--fs-body1) - 2px); } textarea.f-input { padding: var(--su12); height: auto; resize: vertical; } .f-select { position: relative; color: rgb(59, 64, 69); } .f-select::before, .f-select::after { content: ""; position: absolute; righ= t: 0.75em; pointer-events: none; border-width: 3px; border-style: solid; bo= rder-color: currentcolor transparent; } .f-select::before { top: calc(50% - 6px); border-top-width: 0px; border-bot= tom-width: 5px; } .f-select::after { top: calc(50% + 1px); border-top-width: 5px; border-bott= om-width: 0px; } .f-select > select { appearance: none; flex: 1 1 auto; padding-top: ; paddi= ng-bottom: ; padding-left: ; padding-right: var(--su32); font-size: var(--f= s-body1); font-family: var(--theme-body-font-family); line-height: var(--lh= -lg); color: inherit; background-color: rgb(255, 255, 255); border: 1px sol= id rgb(200, 204, 208); border-radius: var(--br-sm); transition: color 600ms= var(--te-smooth),border-color 600ms var(--te-smooth),box-shadow 600ms var(= --te-smooth),background-color 600ms var(--te-smooth); } .f-select > select:hover { border-color: rgba(27, 117, 208, 0.5); box-shado= w: rgb(214, 217, 220) 0px 0px 2px inset, rgba(27, 117, 208, 0.2) 0px 0px 2p= x; } .f-select > select:focus { border-color: rgb(27, 117, 208); box-shadow: rgb= (241, 242, 243) 0px 0px 4px inset, rgba(27, 117, 208, 0.5) 0px 0px 5px; out= line: 0px; } .f-select.is-disabled::before, .f-select.is-disabled::after { opacity: 0.3;= } .f-select.is-disabled select { color: rgb(172, 179, 185); background-color:= rgb(241, 242, 243); border-color: rgb(227, 230, 232); } .f-select.is-disabled select:hover { border-color: rgb(227, 230, 232); box-= shadow: none; } .f-checkbox input[type=3D"radio"], .f-radio input[type=3D"radio"], .f-check= box input[type=3D"checkbox"], .f-radio input[type=3D"checkbox"] { margin: 0= px; } .f-checkbox > .-input, .f-radio > .-input { flex: 0 0 auto; padding-right: = var(--su8); } .f-checkbox > .-input > input, .f-radio > .-input > input { margin: 0px; } .f-checkbox > .-input > input[type=3D"checkbox"], .f-radio > .-input > inpu= t[type=3D"checkbox"] { margin-top: var(--su2); } .f-checkbox > .-input > input:focus, .f-radio > .-input > input:focus { out= line: 0px; } .f-checkbox .f-label, .f-radio .f-label { font-weight: 400; } .f-checkbox .t-help, .f-radio .t-help { margin: var(--su2) 0; padding-right= : 1em; } .f-checkbox + .f-checkbox, .f-checkbox + .f-radio, .f-radio + .f-checkbox, = .f-radio + .f-radio { margin-top: var(--su8); } .f-checkbox.is-disabled, .f-radio.is-disabled { opacity: 0.5; } .f-checkbox.is-disabled, .f-radio.is-disabled, .f-checkbox.is-disabled labe= l, .f-radio.is-disabled label, .f-checkbox.is-disabled .label, .f-radio.is-= disabled .label { cursor: not-allowed; } .input-group { box-sizing: border-box; } .input-group .message { display: block; margin-bottom: 0px; padding-top: va= r(--su8); padding-bottom: var(--su8); } .input-group.has-warning .f-input, .input-group.has-error .f-input, .input-= group.is-success .f-input, .input-group.has-warning .tag-editor, .input-gro= up.has-error .tag-editor, .input-group.is-success .tag-editor, .input-group= .has-warning .autocomplete input, .input-group.has-error .autocomplete inpu= t, .input-group.is-success .autocomplete input, .input-group.has-warning .f= -select select, .input-group.has-error .f-select select, .input-group.is-su= ccess .f-select select { background-position: right var(--su-static12) cent= er; background-repeat: no-repeat; } .input-group.has-warning .f-select select, .input-group.has-error .f-select= select, .input-group.is-success .f-select select { background-position: ri= ght var(--su-static24) center; } .input-group.has-warning .f-input, .input-group.has-warning .f-select selec= t { border-color: rgb(216, 135, 16); background-image: url("../../Img/forms= /icon-warning.svg?v=3D982eba4202d6"), none; } .input-group.has-warning .f-input:hover, .input-group.has-warning .f-select= select:hover { border-color: rgb(239, 160, 44); box-shadow: rgb(214, 217, = 220) 0px 0px 1px inset, rgb(244, 210, 123) 0px 0px 2px; } .input-group.has-warning .f-input:focus, .input-group.has-warning .f-select= select:focus { border-color: rgb(227, 137, 5); box-shadow: rgb(241, 242, 2= 43) 0px 0px 4px inset, rgb(244, 210, 123) 0px 0px 4px; } .input-group.has-warning .message { color: rgb(216, 135, 16); } .input-group.has-error .f-input, .input-group.has-error .tag-editor, .input= -group.has-error .autocomplete input, .input-group.has-error .f-select sele= ct { border-color: rgb(200, 50, 50); background-image: url("../../Img/forms= /icon-error.svg?v=3D7912aa2ddbe0"), none; } .input-group.has-error .f-input:hover, .input-group.has-error .tag-editor:h= over, .input-group.has-error .autocomplete input:hover, .input-group.has-er= ror .f-select select:hover { border-color: rgb(200, 50, 50); box-shadow: rg= b(214, 217, 220) 0px 0px 1px inset, rgb(238, 170, 170) 0px 0px 2px; } .input-group.has-error .f-input:focus, .input-group.has-error .tag-editor:f= ocus, .input-group.has-error .autocomplete input:focus, .input-group.has-er= ror .f-select select:focus { border-color: rgb(200, 50, 50); box-shadow: rg= b(241, 242, 243) 0px 0px 4px inset, rgb(238, 170, 170) 0px 0px 4px; } .input-group.has-error .message { color: var(--red-400); } .input-group.is-success .f-input, .input-group.is-success .f-select select = { border-color: var(--green-400); background-image: url("../../Img/forms/ic= on-success.svg?v=3D4012387047df"), none; } .input-group.is-success .f-input:hover, .input-group.is-success .f-select s= elect:hover { border-color: rgb(24, 134, 75); box-shadow: rgb(214, 217, 220= ) 0px 0px 1px inset, rgb(148, 204, 174) 0px 0px 2px; } .input-group.is-success .f-input:focus, .input-group.is-success .f-select s= elect:focus { border-color: var(--green-400); box-shadow: rgb(241, 242, 243= ) 0px 0px 4px inset, rgb(148, 204, 174) 0px 0px 4px; } .input-group.is-success .message { color: rgb(20, 113, 63); } .input-group.is-disabled { opacity: 0.5; cursor: not-allowed; } .input-group, .button-group { position: relative; display: flex; } .input-group *, .button-group *, .input-group ::before, .button-group ::bef= ore, .input-group ::after, .button-group ::after { box-sizing: border-box; = } .input-group { flex-flow: column; margin-bottom: var(--su-static24); } .input-group > .input-group { margin-bottom: 0px; } .input-group > .f-label + * { margin-top: var(--su6); } .input-group > .f-label + .t-help { margin-top: var(--su-static2); } .input-group > .f-label + .input-group { margin-top: var(--su-static16); } .input-group._clusters .input-group { margin-bottom: 0px; } .input-group._clusters .input-group .f-label { font-weight: 400; } .input-group .-fill { flex: 0 0 auto; align-items: center; padding: var(--s= u8) var(--su16); color: rgb(59, 64, 69); background-color: rgb(241, 242, 24= 3); border-width: 1px 0px; border-style: solid; border-color: rgb(200, 204,= 208); border-image: initial; } .input-group .-fill > label { font-size: inherit; line-height: inherit; } .input-group .-fill._clean { border-color: transparent; background-color: t= ransparent; } .input-group .-fill.is-first { order: -1; border-left-width: 1px; } .input-group .-fill.is-last { order: 99; border-right-width: 1px; } .input-group [class^=3D"btn"].is-last { order: 100; margin-left: -1px; bord= er-top-left-radius: 0px; border-bottom-left-radius: 0px; } .button-group [class^=3D"btn"] + [class^=3D"btn"] { margin-left: var(--su2)= ; } .button-group .t-help { margin-top: var(--su12); margin-bottom: 0px; } .button-group.has-border { padding-top: calc(var(--su16) + var(--su8)); bor= der-top: 1px solid rgb(214, 217, 220); } .f-radio-toggle .f-label { flex: 1 1 auto; justify-content: center; padding= : var(--su8) var(--su16); margin-left: -1px; margin-right: -1px; border: 1p= x solid rgb(200, 204, 208); background-color: var(--white); font-weight: 40= 0; line-height: var(--lh-lg); color: rgb(59, 64, 69); text-align: center; t= ransition: all 600ms var(--te-smooth); cursor: pointer; } .f-radio-toggle .f-label:hover, .f-radio-toggle .f-label:focus, .f-radio-to= ggle .f-label:active { color: rgb(35, 38, 41); background-color: var(--blue= -200); border-color: var(--blue-300); z-index: 1; } .f-radio-toggle input[type=3D"radio"] { position: absolute; left: -9999em; = opacity: 0; } .f-radio-toggle input[type=3D"radio"]:checked + .f-label { color: var(--whi= te); background-color: var(--blue-400); border-color: var(--blue-400); poin= ter-events: none; position: relative; z-index: 2; } .f-radio-toggle._muted .f-label { border: 1px solid var(--black-250); backg= round-color: var(--white); color: var(--black-400); } .f-radio-toggle._muted .f-label:hover, .f-radio-toggle._muted .f-label:focu= s, .f-radio-toggle._muted .f-label:active { color: var(--black-500); backgr= ound-color: var(--black-150); border-color: var(--black-300); } .f-radio-toggle._muted input[type=3D"radio"]:checked + .f-label { color: va= r(--white); background-color: var(--green-400); border-color: var(--green-4= 00); } .f-radio-toggle._muted input[type=3D"radio"]._off:checked + .f-label { colo= r: var(--black-400); background-color: var(--black-225); border-color: var(= --black-300); } .container .chosen-container { margin-top: 0px; } .container .chosen-container.chosen-container-active { border-width: 0px; } .container .chosen-container.chosen-container-active .chosen-choices { bord= er-color: rgb(27, 117, 208); box-shadow: rgb(241, 242, 243) 0px 0px 4px ins= et, rgba(27, 117, 208, 0.5) 0px 0px 5px; } .container .chosen-container .chosen-choices { display: flex; padding: 0px = 1px; min-height: 38px; background-image: none; border-radius: var(--br-sm);= border-color: rgb(200, 204, 208); } .container .chosen-container .chosen-choices:hover { border-color: rgba(27,= 117, 208, 0.5); box-shadow: rgb(214, 217, 220) 0px 0px 2px inset, rgba(27,= 117, 208, 0.2) 0px 0px 2px; } .container .chosen-container .chosen-choices li.search-choice, .container .= chosen-container .chosen-choices li.search-field { display: inline-flex; al= ign-items: center; margin: var(--su4) var(--su1); padding: var(--su2) var(-= -su6); } .container .chosen-container .chosen-choices li.search-choice { float: none= ; box-shadow: none; background-image: none; font-family: var(--ff-sans); fo= nt-size: var(--fs-caption); color: var(--blue-500); background-color: var(-= -blue-300); border-color: transparent; border-radius: var(--br-sm); } .container .chosen-container .chosen-choices li.search-choice:first-child {= margin-left: 3px; } .container .chosen-container .chosen-choices li.search-choice .search-choic= e-close { position: relative; top: 0px; right: -1px; margin-left: var(--su-= static4); transition: none; } .container .chosen-container li.search-field > input[type=3D"text"] { paddi= ng: 0px; margin: 0px; } ul, ol, li { margin: 0px; padding: 0px; } ul, ol { margin-left: 30px; margin-bottom: 1em; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0px; } ul { list-style-type: disc; } ol { list-style-type: decimal; } .caption { padding-top: 13px; padding-bottom: 13px; text-align: left; } table { border-spacing: 0px; border-collapse: collapse; } .table { margin-bottom: 15px; width: 100%; max-width: 100%; background-colo= r: transparent; border-width: 0px; } .table th { text-align: left; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > t= h, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr = > td { padding: 13px 13px 13px 0px; vertical-align: top; } .table > thead > tr > th small, .table > tbody > tr > th small, .table > tf= oot > tr > th small, .table > thead > tr > td small, .table > tbody > tr > = td small, .table > tfoot > tr > td small { font-size: var(--fs-fine); } .table > thead > tr > th { vertical-align: bottom; } .table > tfoot > tr > td { vertical-align: top; } .table > caption + thead > tr:first-child > th, .table > .caption + thead >= tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .tab= le > .colgroup + thead > tr:first-child > th, .table > thead:first-child > = tr:first-child > th, .table > caption + thead > tr:first-child > td, .table= > .caption + thead > tr:first-child > td, .table > colgroup + thead > tr:f= irst-child > td, .table > .colgroup + thead > tr:first-child > td, .table >= thead:first-child > tr:first-child > td { border-top: 0px; } .table ._textLeft { text-align: left; } .table ._textCenter { text-align: center; } .table ._textRight { text-align: right; } .table col[class*=3D"-col"] { position: static; float: none; display: table= -column; } .table td[class*=3D"-col"], .table th[class*=3D"-col"] { position: static; = float: none; display: table-cell; } .table td.-col1, .table th.-col1 { width: 8.33333%; } .table td.-col2, .table th.-col2 { width: 16.6667%; } .table td.-col3, .table th.-col3 { width: 25%; } .table td.-col4, .table th.-col4 { width: 33.3333%; } .table td.-col5, .table th.-col5 { width: 41.6667%; } .table td.-col6, .table th.-col6 { width: 50%; } .table td.-col7, .table th.-col7 { width: 58.3333%; } .table td.-col8, .table th.-col8 { width: 66.6667%; } .table td.-col9, .table th.-col9 { width: 75%; } .table td.-col10, .table th.-col10 { width: 83.3333%; } .table td.-col11, .table th.-col11 { width: 91.6667%; } .table td.-col12, .table th.-col12 { width: 100%; } .table._hover > tbody > tr:hover { background-color: rgb(247, 247, 247); } .table._hover > tbody > tr:hover > td { box-shadow: rgb(255, 255, 255) 0px = 2px 0px inset, rgb(255, 255, 255) 0px -2px 0px inset; } .table._condensed > thead > tr > th, .table._condensed > tbody > tr > th, .= table._condensed > tfoot > tr > th, .table._condensed > thead > tr > td, .t= able._condensed > tbody > tr > td, .table._condensed > tfoot > tr > td { pa= dding: 7px 7px 7px 0px; } .table._condensed input[type=3D"radio"], .table._condensed input[type=3D"ch= eckbox"] { margin-top: 0px; } .table._borders > thead > tr > th, .table._borders > tbody > tr > th, .tabl= e._borders > tfoot > tr > th, .table._borders > thead > tr > td, .table._bo= rders > tbody > tr > td, .table._borders > tfoot > tr > td { border-top: 1p= x solid var(--black-200); } .table._borders > thead > tr > th { border-bottom: 1px solid var(--black-20= 0); } .table._borders > tbody + tbody { border-top: 2px solid var(--black-200); } .table tfoot.-totals > tr > td { font-size: var(--fs-subheading); } .table tfoot.-totals:hover { background-color: transparent; transition: non= e; } .table .js-tableToggle { display: none; } .table._whiteBg { background: rgb(255, 255, 255); } .table._whiteBg > thead > tr > th, .table._whiteBg > tbody > tr > th, .tabl= e._whiteBg > tfoot > tr > th, .table._whiteBg > thead > tr > td, .table._wh= iteBg > tbody > tr > td, .table._whiteBg > tfoot > tr > td { padding: 10px;= } .table._verticalCenter > thead > tr > th, .table._verticalCenter > tbody > = tr > th, .table._verticalCenter > tfoot > tr > th, .table._verticalCenter >= thead > tr > td, .table._verticalCenter > tbody > tr > td, .table._vertica= lCenter > tfoot > tr > td { vertical-align: middle; } .table th.-checkbox, .table td.-checkbox { width: 2em; } .table td.empty { font-style: italic; opacity: 0.75; } .edit-table { border: 1px solid var(--black-225); margin-top: 5px; } .edit-table._short { max-height: 150px; overflow-y: auto; } .edit-table._medium { max-height: 250px; overflow-y: auto; } .edit-table > table, .edit-table > .table { margin-bottom: 0px; } .item-select-table { display: flex; justify-content: flex-start; flex-wrap:= wrap; background: var(--white); border-right: 1px solid var(--black-225); = border-bottom: 1px solid var(--black-225); margin-bottom: 20px; } .item-select-table.limit-height-300 { max-height: 300px; overflow: hidden a= uto; } .item-select-table.columns-3 .item { width: 33.3%; } .item-select-table.tag-table .item { display: flex; align-items: center; } .item-select-table.tag-table .s-tag.post-tag { max-width: 110px; white-spac= e: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 4px; } .item-select-table label.item { cursor: pointer; } .item-select-table .item { border: 1px solid var(--black-225); padding: 10p= x; position: relative; flex-grow: 1; text-align: center; margin-right: -1px= ; margin-bottom: -1px; } .item-select-table .item:hover { background: var(--black-150); } .item-select-table .item input[type=3D"checkbox"] { display: none; } .item-select-table .item .check { position: absolute; top: 4px; right: 4px;= } table.sorter { margin: 10px 0pt 15px; text-align: left; border-bottom: soli= d 1px var(--black-225); } table.sorter > thead > tr .headerSortDown, table.sorter > thead > tr .heade= rSortUp { background-color: var(--orange-400); color: rgb(255, 255, 255); } table.sorter > thead > tr .headerSortUp span::after { content: "=E2=96=B4";= } table.sorter > thead > tr .headerSortDown span::after { content: "=E2=96=BE= "; } table.sorter > thead > tr .header { background-repeat: no-repeat; backgroun= d-position: right center; cursor: pointer; } table.sorter > thead > tr span::after { padding-left: 5px; } table.sorter > thead > tr > th { text-align: center; } table.sorter > thead > tr > th, table.sorter > tfoot > tr > td { background= -color: var(--black-400); color: var(--white); border: 1px solid var(--whit= e); font-size: 110%; padding: 5px; } table.sorter > tbody > tr > td { padding: 5px 10px; background-color: var(-= -white); vertical-align: top; } table.sorter > tbody > tr.odd > td { background-color: var(--black-150); } table.sorter > tbody > tr > td.mod-ip-banned { background-color: var(--red-= 300); } table.sorter > tbody > tr > td.mod-ip-hobbled { background-color: var(--ora= nge-300); } table.sorter > tbody .row-data { text-align: right; } .s-tag.post-tag { margin: var(--su2) var(--su2) var(--su2) 0; } .s-tag.post-tag.s-tag__ignored, .s-tag.post-tag.s-tag__watched { align-item= s: center; display: inline-flex; padding-left: calc(var(--su-static24) - va= r(--su-static2)); } a { color: var(--theme-link-color, var(--theme-secondary-400)); text-decora= tion: none; cursor: pointer; } a:hover, a:active { color: var(--theme-link-color-hover, var(--theme-second= ary-500)); text-decoration: none; } a.comment-user { display: inline-block; white-space: nowrap; padding: 0px; = } a.comment-user.owner { padding: 1px 5px; } body.theme-highcontrast a.comment-user.owner { background-color: var(--them= e-link-color, var(--theme-secondary-400)); color: var(--theme-post-owner-ba= ckground-color); } body.theme-highcontrast a.comment-user.owner:hover { color: var(--theme-pos= t-owner-background-color); } .s-prose a:not(.s-tag):not(.post-tag):not(.badge-tag):not(.s-link__visited)= :not(.s-btn):not(.s-editor-btn), .comment-copy a { text-decoration: underli= ne; } .s-prose a:not(.s-tag):not(.post-tag):not(.badge-tag):not(.s-link__visited)= :not(.s-btn):not(.s-editor-btn):visited, .comment-copy a:visited { color: v= ar(--theme-link-color-visited, var(--purple-500)); } a .mathjax { width: 115px; height: 55px; background-image: url("../../Img/s= hare-sprite.png?v=3D0734e5a54af0"); background-position: -190px 5px; } .external { position: relative; display: inline-block; padding-left: 20px; = } .external > .-icon { position: relative; display: inline-block; width: 9px;= height: 9px; overflow: hidden; background-image: url("../../Img/share-spri= te-new.svg?v=3D0e11bfd41fbc"), none; background-position: 0px -220px; backg= round-repeat: no-repeat; } .external:visited { color: var(--theme-link-color, var(--theme-secondary-40= 0)); } .external:hover, .external:active { text-decoration: none; } .external:hover > .-icon, .external:active > .-icon { background-position: = -13px -220px; } .question-hyperlink { font-size: var(--fs-body3); font-weight: 400; } .question-hyperlink, .answer-hyperlink { color: var(--theme-post-title-colo= r, var(--theme-link-color, var(--theme-secondary-400))); line-height: 1.3; = margin-bottom: 1.2em; } body.theme-highcontrast .question-hyperlink:hover, body.theme-highcontrast = .answer-hyperlink:hover, body.theme-highcontrast .question-hyperlink:focus,= body.theme-highcontrast .answer-hyperlink:focus { text-decoration: underli= ne; } .question-hyperlink:visited:not(:hover), .answer-hyperlink:visited:not(:hov= er) { color: var(--theme-post-title-color-hover, var(--theme-link-color-vis= ited, var(--purple-500))); } .question-hyperlink:hover, .answer-hyperlink:hover, .question-hyperlink:act= ive, .answer-hyperlink:active { color: var(--theme-post-title-color-hover, = var(--theme-link-color-hover, var(--theme-secondary-500))); } b, strong { font-weight: bold; } i, em { font-style: italic; } sup, sub { font-size: 80%; } ins { text-decoration: none; } del, s, del .s-tag, s .s-tag { text-decoration: line-through; } kbd { display: inline-block; margin: 0px 0.1em; padding: 0.1em 0.6em; font-= family: var(--theme-body-font-family); font-size: var(--fs-fine); line-heig= ht: 1.4; color: var(--black-600); text-shadow: 0 1px 0 var(--white); backgr= ound-color: var(--black-200); border: 1px solid var(--black-350); border-ra= dius: 3px; box-shadow: 0 1px 1px hsla(210,8%,5%,0.15),inset 0 1px 0 0 var(-= -white); white-space: nowrap; } @media (prefers-color-scheme: dark) { body.theme-system kbd { box-shadow: rgba(12, 13, 14, 0.75) 0px 1px 2px; } } body.theme-dark kbd, .theme-dark__forced kbd, body.theme-system .theme-dark= __forced kbd { box-shadow: rgba(12, 13, 14, 0.75) 0px 1px 2px; } .placeholder-text { color: var(--black-350); } .help-text { color: var(--black-500); font-size: var(--fs-fine); } p { clear: both; margin-bottom: 1em; margin-top: 0px; } p code { padding: 1px 5px; } code { font-family: var(--ff-mono); background-color: var(--black-200); } pre { margin-bottom: 1em; padding: var(--su12); width: auto; max-height: 60= 0px; overflow: auto; font-family: var(--ff-mono); font-size: var(--fs-body1= ); background-color: var(--black-150); border-radius: var(--br-sm); scrollb= ar-color: var(--scrollbar) transparent; } pre code { background-color: transparent; } pre::-webkit-scrollbar { width: calc(var(--su-static12) - var(--su-static2)= ); height: calc(var(--su-static12) - var(--su-static2)); background-color: = transparent; } pre::-webkit-scrollbar-track { border-radius: calc(var(--su-static12) - var= (--su-static2)); background-color: transparent; } pre::-webkit-scrollbar-thumb { border-radius: calc(var(--su-static12) - var= (--su-static2)); background-color: var(--scrollbar); } pre::-webkit-scrollbar-corner { background-color: transparent; border-color= : transparent; } li pre { margin: 0.5em 0px 1em; } h1, h2, h3 { line-height: 1.3; margin: 0px 0px 1em; } h1 { font-size: var(--fs-title); } h2 { font-size: var(--fs-subheading); } h3 { font-size: var(--fs-body2); } .s-prose, .comment-copy, .question-status, .excerpt { font-family: var(--th= eme-post-body-font-family, var(--theme-body-font-family)); } blockquote, q { quotes: none; } blockquote { position: relative; margin-bottom: 1em; padding: var(--su12) v= ar(--su12) var(--su12) var(--su16); } blockquote::before { content: ""; display: block; position: absolute; top: = 0px; bottom: 0px; left: 0px; width: var(--su-static4); border-radius: var(-= -br-lg); background: var(--black-250); } blockquote :last-child { margin-bottom: 0px; } li blockquote { margin: 0.5em 0px 1em; } .favicon { width: 16px; height: 16px; background-color: transparent; backgr= ound-repeat: no-repeat; background-size: 16px; background-image: url("../..= /Img/favicons-sprite16.png?v=3Deb322c33ef18"); } body.theme-dark .favicon { background-image: url("../../Img/favicons-sprite= 16-dark.png?v=3Dcb8caafb70ff"); } @media (prefers-color-scheme: dark) { body.theme-system .favicon { background-image: url("../../Img/favicons-sp= rite16-dark.png?v=3Dcb8caafb70ff"); } } div.favicon { display: inline-block; } @media only screen and (min--moz-device-pixel-ratio:1.5), only screen and (= -o-min-device-pixel-ratio:3/2), only screen and (-webkit-min-device-pixel-r= atio: 1.5), only screen and (min-device-pixel-ratio:1.5) { .favicon { background-image: url("../../Img/favicons-sprite32.png?v=3D5e4= ac8ad40e1"); } body.theme-dark .favicon { background-image: url("../../Img/favicons-spri= te32-dark.png?v=3De9d8ef7da8ff"); } } @media only screen and (min--moz-device-pixel-ratio:1.5) and (prefers-color= -scheme: dark), only screen and (-o-min-device-pixel-ratio:3/2) and (prefer= s-color-scheme: dark), only screen and (-webkit-min-device-pixel-ratio: 1.5= ) and (prefers-color-scheme: dark), only screen and (min-device-pixel-ratio= :1.5) and (prefers-color-scheme: dark) { body.theme-system .favicon { background-image: url("../../Img/favicons-sp= rite32-dark.png?v=3De9d8ef7da8ff"); } } @media only screen and (min--moz-device-pixel-ratio:1.5), only screen and (= -o-min-device-pixel-ratio:3/2), only screen and (-webkit-min-device-pixel-r= atio: 1.5), only screen and (min-device-pixel-ratio:1.5) { .favicon { background-size: 16px 7110px; } } .favicon-3dprinting { background-position: 0px 0px; } .favicon-3dprintingmeta { background-position: 0px -18px; } .favicon-academia { background-position: 0px -36px; } .favicon-academiameta { background-position: 0px -54px; } .favicon-ai { background-position: 0px -72px; } .favicon-aimeta { background-position: 0px -90px; } .favicon-alcohol { background-position: 0px -108px; } .favicon-alcoholmeta { background-position: 0px -126px; } .favicon-android { background-position: 0px -144px; } .favicon-androidmeta { background-position: 0px -162px; } .favicon-anime { background-position: 0px -180px; } .favicon-animemeta { background-position: 0px -198px; } .favicon-apple { background-position: 0px -216px; } .favicon-applemeta { background-position: 0px -234px; } .favicon-arabic { background-position: 0px -252px; } .favicon-arabicmeta { background-position: 0px -270px; } .favicon-arduino { background-position: 0px -288px; } .favicon-arduinometa { background-position: 0px -306px; } .favicon-area51 { background-position: 0px -324px; } .favicon-area51discuss { background-position: 0px -342px; } .favicon-askubuntu { background-position: 0px -360px; } .favicon-askubuntumeta { background-position: 0px -378px; } .favicon-astronomy { background-position: 0px -396px; } .favicon-astronomymeta { background-position: 0px -414px; } .favicon-augur { background-position: 0px -432px; } .favicon-augurmeta { background-position: 0px -450px; } .favicon-aviation { background-position: 0px -468px; } .favicon-aviationmeta { background-position: 0px -486px; } .favicon-avp { background-position: 0px -504px; } .favicon-avpmeta { background-position: 0px -522px; } .favicon-beta { background-position: 0px -540px; } .favicon-betameta { background-position: 0px -558px; } .favicon-bicycles { background-position: 0px -576px; } .favicon-bicyclesmeta { background-position: 0px -594px; } .favicon-bioacoustics { background-position: 0px -612px; } .favicon-bioacousticsmeta { background-position: 0px -630px; } .favicon-bioinformatics { background-position: 0px -648px; } .favicon-bioinformaticsmeta { background-position: 0px -666px; } .favicon-biology { background-position: 0px -684px; } .favicon-biologymeta { background-position: 0px -702px; } .favicon-bitcoin { background-position: 0px -720px; } .favicon-bitcoinmeta { background-position: 0px -738px; } .favicon-blender { background-position: 0px -756px; } .favicon-blendermeta { background-position: 0px -774px; } .favicon-boardgames { background-position: 0px -792px; } .favicon-boardgamesmeta { background-position: 0px -810px; } .favicon-br { background-position: 0px -828px; } .favicon-bricks { background-position: 0px -846px; } .favicon-bricksmeta { background-position: 0px -864px; } .favicon-brmeta { background-position: 0px -882px; } .favicon-buddhism { background-position: 0px -900px; } .favicon-buddhismmeta { background-position: 0px -918px; } .favicon-cardano { background-position: 0px -936px; } .favicon-cardanometa { background-position: 0px -954px; } .favicon-careers { background-position: 0px -972px; } .favicon-channels { background-position: 0px -990px; } .favicon-chemistry { background-position: 0px -1008px; } .favicon-chemistrymeta { background-position: 0px -1026px; } .favicon-chess { background-position: 0px -1044px; } .favicon-chessmeta { background-position: 0px -1062px; } .favicon-chinese { background-position: 0px -1080px; } .favicon-chinesemeta { background-position: 0px -1098px; } .favicon-christianity { background-position: 0px -1116px; } .favicon-christianitymeta { background-position: 0px -1134px; } .favicon-civicrm { background-position: 0px -1152px; } .favicon-civicrmmeta { background-position: 0px -1170px; } .favicon-codegolf { background-position: 0px -1188px; } .favicon-codegolfmeta { background-position: 0px -1206px; } .favicon-codereview { background-position: 0px -1224px; } .favicon-codereviewmeta { background-position: 0px -1242px; } .favicon-coffee { background-position: 0px -1260px; } .favicon-coffeemeta { background-position: 0px -1278px; } .favicon-communitybuilding { background-position: 0px -1296px; } .favicon-communitybuildingmeta { background-position: 0px -1314px; } .favicon-computergraphics { background-position: 0px -1332px; } .favicon-computergraphicsmeta { background-position: 0px -1350px; } .favicon-conlang { background-position: 0px -1368px; } .favicon-conlangmeta { background-position: 0px -1386px; } .favicon-cooking { background-position: 0px -1404px; } .favicon-cookingmeta { background-position: 0px -1422px; } .favicon-craftcms { background-position: 0px -1440px; } .favicon-craftcmsmeta { background-position: 0px -1458px; } .favicon-crafts { background-position: 0px -1476px; } .favicon-craftsmeta { background-position: 0px -1494px; } .favicon-crypto { background-position: 0px -1512px; } .favicon-cryptometa { background-position: 0px -1530px; } .favicon-cs { background-position: 0px -1548px; } .favicon-cs50 { background-position: 0px -1566px; } .favicon-cs50meta { background-position: 0px -1584px; } .favicon-cseducators { background-position: 0px -1602px; } .favicon-cseducatorsmeta { background-position: 0px -1620px; } .favicon-csmeta { background-position: 0px -1638px; } .favicon-cstheory { background-position: 0px -1656px; } .favicon-cstheorymeta { background-position: 0px -1674px; } .favicon-datascience { background-position: 0px -1692px; } .favicon-datasciencemeta { background-position: 0px -1710px; } .favicon-dba { background-position: 0px -1728px; } .favicon-dbameta { background-position: 0px -1746px; } .favicon-deepweb { background-position: 0px -1764px; } .favicon-deepwebmeta { background-position: 0px -1782px; } .favicon-devops { background-position: 0px -1800px; } .favicon-devopsmeta { background-position: 0px -1818px; } .favicon-diy { background-position: 0px -1836px; } .favicon-diymeta { background-position: 0px -1854px; } .favicon-drones { background-position: 0px -1872px; } .favicon-dronesmeta { background-position: 0px -1890px; } .favicon-drupal { background-position: 0px -1908px; } .favicon-drupalmeta { background-position: 0px -1926px; } .favicon-dsp { background-position: 0px -1944px; } .favicon-dspmeta { background-position: 0px -1962px; } .favicon-earthscience { background-position: 0px -1980px; } .favicon-earthsciencemeta { background-position: 0px -1998px; } .favicon-ebooks { background-position: 0px -2016px; } .favicon-ebooksmeta { background-position: 0px -2034px; } .favicon-economics { background-position: 0px -2052px; } .favicon-economicsmeta { background-position: 0px -2070px; } .favicon-edx-cs169-1x { background-position: 0px -2088px; } .favicon-edx-cs169-1xmeta { background-position: 0px -2106px; } .favicon-electronics { background-position: 0px -2124px; } .favicon-electronicsmeta { background-position: 0px -2142px; } .favicon-elementaryos { background-position: 0px -2160px; } .favicon-elementaryosmeta { background-position: 0px -2178px; } .favicon-ell { background-position: 0px -2196px; } .favicon-ellmeta { background-position: 0px -2214px; } .favicon-emacs { background-position: 0px -2232px; } .favicon-emacsmeta { background-position: 0px -2250px; } .favicon-embedded { background-position: 0px -2268px; } .favicon-embeddedmeta { background-position: 0px -2286px; } .favicon-engineering { background-position: 0px -2304px; } .favicon-engineeringmeta { background-position: 0px -2322px; } .favicon-english { background-position: 0px -2340px; } .favicon-englishmeta { background-position: 0px -2358px; } .favicon-eosio { background-position: 0px -2376px; } .favicon-eosiometa { background-position: 0px -2394px; } .favicon-es { background-position: 0px -2412px; } .favicon-esmeta { background-position: 0px -2430px; } .favicon-esperanto { background-position: 0px -2448px; } .favicon-esperantometa { background-position: 0px -2466px; } .favicon-ethereum { background-position: 0px -2484px; } .favicon-ethereummeta { background-position: 0px -2502px; } .favicon-expatriates { background-position: 0px -2520px; } .favicon-expatriatesmeta { background-position: 0px -2538px; } .favicon-expressionengine { background-position: 0px -2556px; } .favicon-expressionenginemeta { background-position: 0px -2574px; } .favicon-fitness { background-position: 0px -2592px; } .favicon-fitnessmeta { background-position: 0px -2610px; } .favicon-freelancing { background-position: 0px -2628px; } .favicon-freelancingmeta { background-position: 0px -2646px; } .favicon-french { background-position: 0px -2664px; } .favicon-frenchmeta { background-position: 0px -2682px; } .favicon-gamedev { background-position: 0px -2700px; } .favicon-gamedevmeta { background-position: 0px -2718px; } .favicon-gamification { background-position: 0px -2736px; } .favicon-gamificationmeta { background-position: 0px -2754px; } .favicon-gaming { background-position: 0px -2772px; } .favicon-gamingmeta { background-position: 0px -2790px; } .favicon-gardening { background-position: 0px -2808px; } .favicon-gardeningmeta { background-position: 0px -2826px; } .favicon-genai { background-position: 0px -2844px; } .favicon-genaimeta { background-position: 0px -2862px; } .favicon-genealogy { background-position: 0px -2880px; } .favicon-genealogymeta { background-position: 0px -2898px; } .favicon-german { background-position: 0px -2916px; } .favicon-germanmeta { background-position: 0px -2934px; } .favicon-gis { background-position: 0px -2952px; } .favicon-gismeta { background-position: 0px -2970px; } .favicon-graphicdesign { background-position: 0px -2988px; } .favicon-graphicdesignmeta { background-position: 0px -3006px; } .favicon-ham { background-position: 0px -3024px; } .favicon-hammeta { background-position: 0px -3042px; } .favicon-hardwarerecs { background-position: 0px -3060px; } .favicon-hardwarerecsmeta { background-position: 0px -3078px; } .favicon-hermeneutics { background-position: 0px -3096px; } .favicon-hermeneuticsmeta { background-position: 0px -3114px; } .favicon-hinduism { background-position: 0px -3132px; } .favicon-hinduismmeta { background-position: 0px -3150px; } .favicon-history { background-position: 0px -3168px; } .favicon-historymeta { background-position: 0px -3186px; } .favicon-homebrew { background-position: 0px -3204px; } .favicon-homebrewmeta { background-position: 0px -3222px; } .favicon-hsm { background-position: 0px -3240px; } .favicon-hsmmeta { background-position: 0px -3258px; } .favicon-i2p { background-position: 0px -3276px; } .favicon-i2pmeta { background-position: 0px -3294px; } .favicon-interpersonal { background-position: 0px -3312px; } .favicon-interpersonalmeta { background-position: 0px -3330px; } .favicon-iot { background-position: 0px -3348px; } .favicon-iota { background-position: 0px -3366px; } .favicon-iotameta { background-position: 0px -3384px; } .favicon-iotmeta { background-position: 0px -3402px; } .favicon-islam { background-position: 0px -3420px; } .favicon-islammeta { background-position: 0px -3438px; } .favicon-italian { background-position: 0px -3456px; } .favicon-italianmeta { background-position: 0px -3474px; } .favicon-ja { background-position: 0px -3492px; } .favicon-jameta { background-position: 0px -3510px; } .favicon-japanese { background-position: 0px -3528px; } .favicon-japanesemeta { background-position: 0px -3546px; } .favicon-joomla { background-position: 0px -3564px; } .favicon-joomlameta { background-position: 0px -3582px; } .favicon-judaism { background-position: 0px -3600px; } .favicon-judaismmeta { background-position: 0px -3618px; } .favicon-korean { background-position: 0px -3636px; } .favicon-koreanmeta { background-position: 0px -3654px; } .favicon-langdev { background-position: 0px -3672px; } .favicon-langdevmeta { background-position: 0px -3690px; } .favicon-languagelearning { background-position: 0px -3708px; } .favicon-languagelearningmeta { background-position: 0px -3726px; } .favicon-latin { background-position: 0px -3744px; } .favicon-latinmeta { background-position: 0px -3762px; } .favicon-law { background-position: 0px -3780px; } .favicon-lawmeta { background-position: 0px -3798px; } .favicon-lifehacks { background-position: 0px -3816px; } .favicon-lifehacksmeta { background-position: 0px -3834px; } .favicon-linguistics { background-position: 0px -3852px; } .favicon-linguisticsmeta { background-position: 0px -3870px; } .favicon-literature { background-position: 0px -3888px; } .favicon-literaturemeta { background-position: 0px -3906px; } .favicon-magento { background-position: 0px -3924px; } .favicon-magentometa { background-position: 0px -3942px; } .favicon-martialarts { background-position: 0px -3960px; } .favicon-martialartsmeta { background-position: 0px -3978px; } .favicon-math { background-position: 0px -3996px; } .favicon-matheducators { background-position: 0px -4014px; } .favicon-matheducatorsmeta { background-position: 0px -4032px; } .favicon-mathematica { background-position: 0px -4050px; } .favicon-mathematicameta { background-position: 0px -4068px; } .favicon-mathmeta { background-position: 0px -4086px; } .favicon-mathoverflow { background-position: 0px -4104px; } .favicon-mathoverflowmeta { background-position: 0px -4122px; } .favicon-mattermodeling { background-position: 0px -4140px; } .favicon-mattermodelingmeta { background-position: 0px -4158px; } .favicon-mechanics { background-position: 0px -4176px; } .favicon-mechanicsmeta { background-position: 0px -4194px; } .favicon-medicalsciences { background-position: 0px -4212px; } .favicon-medicalsciencesmeta { background-position: 0px -4230px; } .favicon-monero { background-position: 0px -4248px; } .favicon-monerometa { background-position: 0px -4266px; } .favicon-money { background-position: 0px -4284px; } .favicon-moneymeta { background-position: 0px -4302px; } .favicon-movies { background-position: 0px -4320px; } .favicon-moviesmeta { background-position: 0px -4338px; } .favicon-music { background-position: 0px -4356px; } .favicon-musicfans { background-position: 0px -4374px; } .favicon-musicfansmeta { background-position: 0px -4392px; } .favicon-musicmeta { background-position: 0px -4410px; } .favicon-mythology { background-position: 0px -4428px; } .favicon-mythologymeta { background-position: 0px -4446px; } .favicon-neo { background-position: 0px -4464px; } .favicon-neometa { background-position: 0px -4482px; } .favicon-networkengineering { background-position: 0px -4500px; } .favicon-networkengineeringmeta { background-position: 0px -4518px; } .favicon-opendata { background-position: 0px -4536px; } .favicon-opendatameta { background-position: 0px -4554px; } .favicon-openscience { background-position: 0px -4572px; } .favicon-opensciencemeta { background-position: 0px -4590px; } .favicon-opensource { background-position: 0px -4608px; } .favicon-opensourcemeta { background-position: 0px -4626px; } .favicon-or { background-position: 0px -4644px; } .favicon-ormeta { background-position: 0px -4662px; } .favicon-outdoors { background-position: 0px -4680px; } .favicon-outdoorsmeta { background-position: 0px -4698px; } .favicon-parenting { background-position: 0px -4716px; } .favicon-parentingmeta { background-position: 0px -4734px; } .favicon-patents { background-position: 0px -4752px; } .favicon-patentsmeta { background-position: 0px -4770px; } .favicon-pets { background-position: 0px -4788px; } .favicon-petsmeta { background-position: 0px -4806px; } .favicon-philosophy { background-position: 0px -4824px; } .favicon-philosophymeta { background-position: 0px -4842px; } .favicon-photo { background-position: 0px -4860px; } .favicon-photometa { background-position: 0px -4878px; } .favicon-physics { background-position: 0px -4896px; } .favicon-physicsmeta { background-position: 0px -4914px; } .favicon-pm { background-position: 0px -4932px; } .favicon-pmmeta { background-position: 0px -4950px; } .favicon-poker { background-position: 0px -4968px; } .favicon-pokermeta { background-position: 0px -4986px; } .favicon-politics { background-position: 0px -5004px; } .favicon-politicsmeta { background-position: 0px -5022px; } .favicon-portuguese { background-position: 0px -5040px; } .favicon-portuguesemeta { background-position: 0px -5058px; } .favicon-productivity { background-position: 0px -5076px; } .favicon-productivitymeta { background-position: 0px -5094px; } .favicon-proofassistants { background-position: 0px -5112px; } .favicon-proofassistantsmeta { background-position: 0px -5130px; } .favicon-psychology { background-position: 0px -5148px; } .favicon-psychologymeta { background-position: 0px -5166px; } .favicon-puzzling { background-position: 0px -5184px; } .favicon-puzzlingmeta { background-position: 0px -5202px; } .favicon-quant { background-position: 0px -5220px; } .favicon-quantmeta { background-position: 0px -5238px; } .favicon-quantumcomputing { background-position: 0px -5256px; } .favicon-quantumcomputingmeta { background-position: 0px -5274px; } .favicon-raspberrypi { background-position: 0px -5292px; } .favicon-raspberrypimeta { background-position: 0px -5310px; } .favicon-retrocomputing { background-position: 0px -5328px; } .favicon-retrocomputingmeta { background-position: 0px -5346px; } .favicon-reverseengineering { background-position: 0px -5364px; } .favicon-reverseengineeringmeta { background-position: 0px -5382px; } .favicon-robotics { background-position: 0px -5400px; } .favicon-roboticsmeta { background-position: 0px -5418px; } .favicon-rpg { background-position: 0px -5436px; } .favicon-rpgmeta { background-position: 0px -5454px; } .favicon-ru { background-position: 0px -5472px; } .favicon-rumeta { background-position: 0px -5490px; } .favicon-rus { background-position: 0px -5508px; } .favicon-rusmeta { background-position: 0px -5526px; } .favicon-russian { background-position: 0px -5544px; } .favicon-russianmeta { background-position: 0px -5562px; } .favicon-salesforce { background-position: 0px -5580px; } .favicon-salesforcemeta { background-position: 0px -5598px; } .favicon-scicomp { background-position: 0px -5616px; } .favicon-scicompmeta { background-position: 0px -5634px; } .favicon-scifi { background-position: 0px -5652px; } .favicon-scifimeta { background-position: 0px -5670px; } .favicon-security { background-position: 0px -5688px; } .favicon-securitymeta { background-position: 0px -5706px; } .favicon-serverfault { background-position: 0px -5724px; } .favicon-serverfaultmeta { background-position: 0px -5742px; } .favicon-sharepoint { background-position: 0px -5760px; } .favicon-sharepointmeta { background-position: 0px -5778px; } .favicon-sitecore { background-position: 0px -5796px; } .favicon-sitecoremeta { background-position: 0px -5814px; } .favicon-skeptics { background-position: 0px -5832px; } .favicon-skepticsmeta { background-position: 0px -5850px; } .favicon-softwareengineering { background-position: 0px -5868px; } .favicon-softwareengineeringmeta { background-position: 0px -5886px; } .favicon-softwarerecs { background-position: 0px -5904px; } .favicon-softwarerecsmeta { background-position: 0px -5922px; } .favicon-solana { background-position: 0px -5940px; } .favicon-solanameta { background-position: 0px -5958px; } .favicon-sound { background-position: 0px -5976px; } .favicon-soundmeta { background-position: 0px -5994px; } .favicon-space { background-position: 0px -6012px; } .favicon-spacemeta { background-position: 0px -6030px; } .favicon-spanish { background-position: 0px -6048px; } .favicon-spanishmeta { background-position: 0px -6066px; } .favicon-sports { background-position: 0px -6084px; } .favicon-sportsmeta { background-position: 0px -6102px; } .favicon-sqa { background-position: 0px -6120px; } .favicon-sqameta { background-position: 0px -6138px; } .favicon-stackapps { background-position: 0px -6156px; } .favicon-stackexchange { background-position: 0px -6174px; } .favicon-stackexchangemeta { background-position: 0px -6192px; } .favicon-stackoverflow { background-position: 0px -6210px; } .favicon-stackoverflowmeta { background-position: 0px -6228px; } .favicon-stats { background-position: 0px -6246px; } .favicon-statsmeta { background-position: 0px -6264px; } .favicon-stellar { background-position: 0px -6282px; } .favicon-stellarmeta { background-position: 0px -6300px; } .favicon-substrate { background-position: 0px -6318px; } .favicon-substratemeta { background-position: 0px -6336px; } .favicon-superuser { background-position: 0px -6354px; } .favicon-superusermeta { background-position: 0px -6372px; } .favicon-sustainability { background-position: 0px -6390px; } .favicon-sustainabilitymeta { background-position: 0px -6408px; } .favicon-techcomm { background-position: 0px -6426px; } .favicon-techcommmeta { background-position: 0px -6444px; } .favicon-tex { background-position: 0px -6462px; } .favicon-texmeta { background-position: 0px -6480px; } .favicon-tezos { background-position: 0px -6498px; } .favicon-tezosmeta { background-position: 0px -6516px; } .favicon-tor { background-position: 0px -6534px; } .favicon-tormeta { background-position: 0px -6552px; } .favicon-travel { background-position: 0px -6570px; } .favicon-travelmeta { background-position: 0px -6588px; } .favicon-tridion { background-position: 0px -6606px; } .favicon-tridionmeta { background-position: 0px -6624px; } .favicon-ukrainian { background-position: 0px -6642px; } .favicon-ukrainianmeta { background-position: 0px -6660px; } .favicon-unix { background-position: 0px -6678px; } .favicon-unixmeta { background-position: 0px -6696px; } .favicon-ux { background-position: 0px -6714px; } .favicon-uxmeta { background-position: 0px -6732px; } .favicon-vegetarianism { background-position: 0px -6750px; } .favicon-vegetarianismmeta { background-position: 0px -6768px; } .favicon-vi { background-position: 0px -6786px; } .favicon-vimeta { background-position: 0px -6804px; } .favicon-webapps { background-position: 0px -6822px; } .favicon-webappsmeta { background-position: 0px -6840px; } .favicon-webmasters { background-position: 0px -6858px; } .favicon-webmastersmeta { background-position: 0px -6876px; } .favicon-windowsphone { background-position: 0px -6894px; } .favicon-windowsphonemeta { background-position: 0px -6912px; } .favicon-woodworking { background-position: 0px -6930px; } .favicon-woodworkingmeta { background-position: 0px -6948px; } .favicon-wordpress { background-position: 0px -6966px; } .favicon-wordpressmeta { background-position: 0px -6984px; } .favicon-workplace { background-position: 0px -7002px; } .favicon-workplacemeta { background-position: 0px -7020px; } .favicon-worldbuilding { background-position: 0px -7038px; } .favicon-worldbuildingmeta { background-position: 0px -7056px; } .favicon-writing { background-position: 0px -7074px; } .favicon-writingmeta { background-position: 0px -7092px; } .autocomplete { position: relative; } .autocomplete .autocomplete-suggestions-list { background: rgb(255, 255, 25= 5); border: 1px solid rgb(200, 204, 208); color: rgb(99, 107, 116); positio= n: absolute; z-index: 999; bottom: 6px; left: 0px; right: 0px; transform: t= ranslate(0px, 100%); box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 6px; max-height= : 350px; overflow: auto; } .autocomplete .autocomplete-suggestions-list a { color: rgb(99, 107, 116); = } .autocomplete .autocomplete-suggestions-list .autocomplete-category-name, .= autocomplete .autocomplete-suggestions-list .autocomplete-suggestion, .auto= complete .autocomplete-suggestions-list .autocomplete-default, .autocomplet= e .autocomplete-suggestions-list .autocomplete-default { padding: 10px; } .autocomplete .autocomplete-suggestions-list .autocomplete-category-name { = background: rgb(246, 246, 247); font-size: var(--fs-fine); text-transform: = uppercase; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion { cur= sor: pointer; display: flex; align-items: center; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion.child= { padding-left: 26px; margin-top: -5px; position: relative; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion.child= ::before { content: ""; display: inline-block; width: 12px; height: 12px; b= order-left: 1px solid rgb(185, 193, 197); border-bottom: 1px solid rgb(185,= 193, 197); position: relative; top: -6px; left: -6px; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion:hover= , .autocomplete .autocomplete-suggestions-list .autocomplete-default:hover = { background: rgb(238, 238, 240); color: rgb(12, 13, 14); } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion-item = { max-width: 90%; overflow-wrap: break-word; overflow: hidden; flex-grow: 1= ; margin-left: 6px; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion-image= { width: 20px; height: 20px; overflow: hidden; flex-shrink: 0; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion-image= img { max-width: 100%; height: auto; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion-match= { color: rgb(12, 13, 14); font-weight: 700; } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion-url {= font-size: var(--fs-fine); color: rgb(186, 191, 197); } .autocomplete .autocomplete-suggestions-list .autocomplete-suggestion-count= { font-size: var(--fs-body1); color: rgb(167, 173, 180); } .autocomplete .autocomplete-suggestions-list .autocomplete-default { border= -top: 1px solid rgb(200, 204, 208); display: block; } #tabs, .tabs { float: right; } #tabs a, .tabs a { float: left; margin-right: 8px; padding: 12px 8px 14px; = color: var(--black-400); line-height: 1; text-decoration: none; border-bott= om: 2px solid transparent; } #tabs a:last-child, .tabs a:last-child { margin-right: 0px; } #tabs a:focus, .tabs a:focus { outline: none; } #tabs a:hover, .tabs a:hover { color: var(--black-400); border-bottom-color= : var(--black-400); } #tabs a.youarehere, .tabs a.youarehere { font-weight: 700; color: var(--bla= ck-600); border-bottom-color: var(--black-600); } #tabs .mod-flag-indicator, .tabs .mod-flag-indicator { margin-left: -4px; } #tabs .bounty-indicator-tab, .tabs .bounty-indicator-tab { margin-right: 0p= x; padding: 0.4em 0.5em 0.3em; vertical-align: middle; line-height: 1; } .subtabs, .filter { box-sizing: border-box; float: right; margin: 0px; } .subtabs a, .filter a { display: block; margin: 0 0 0 var(--su2); padding: = var(--su8); border-bottom: 1px solid transparent; color: var(--black-400); = font-size: var(--fs-caption); line-height: var(--lh-xl); text-decoration: n= one; transition: all 150ms var(--te-smooth-quick); } .subtabs a.youarehere, .filter a.youarehere, .subtabs a.active, .filter a.a= ctive, .subtabs a:hover, .filter a:hover { border-color: var(--theme-primar= y); color: var(--black-500); text-decoration: none; } .subtabs a.youarehere, .filter a.youarehere, .subtabs a.active, .filter a.a= ctive { border-color: var(--theme-primary); font-weight: 700; } .subtabs a.youarehere:hover, .filter a.youarehere:hover, .subtabs a.active:= hover, .filter a.active:hover { border-color: var(--theme-primary-400); col= or: var(--black-600); } .subtabs a { float: right; } .subtabs.filters.tag-synonyms { width: auto; } .filter { margin: 0px; } .filter a { display: inline-flex; padding-left: var(--su4); padding-right: = var(--su4); border-bottom-width: 2px; } [class*=3D"gravatar-wrapper-"] { padding: 0px; overflow: hidden; } [class*=3D"gravatar-wrapper-"] img { margin: 0px auto; } .gravatar-wrapper-256, .gravatar-wrapper-164, .gravatar-wrapper-128, .grava= tar-wrapper-256 img, .gravatar-wrapper-164 img, .gravatar-wrapper-128 img {= border-radius: 4px; } .gravatar-wrapper-64, .gravatar-wrapper-50, .gravatar-wrapper-48, .gravatar= -wrapper-64 img, .gravatar-wrapper-50 img, .gravatar-wrapper-48 img { borde= r-radius: 2px; } .gravatar-wrapper-256, .gravatar-wrapper-256 img { width: 256px; height: 25= 6px; } .gravatar-wrapper-164, .gravatar-wrapper-164 img { width: 164px; height: 16= 4px; } .gravatar-wrapper-128, .gravatar-wrapper-128 img { width: 128px; height: 12= 8px; } .gravatar-wrapper-64, .gravatar-wrapper-64 img { width: 64px; height: 64px;= } .gravatar-wrapper-50, .gravatar-wrapper-50 img { width: 50px; height: 50px;= } .gravatar-wrapper-48, .gravatar-wrapper-48 img { width: 48px; height: 48px;= } .gravatar-wrapper-42, .gravatar-wrapper-42 img { width: 42px; height: 42px;= } .gravatar-wrapper-40, .gravatar-wrapper-40 img { width: 40px; height: 40px;= } .gravatar-wrapper-32, .gravatar-wrapper-32 img { width: 32px; height: 32px;= } .gravatar-wrapper-25, .gravatar-wrapper-25 img { width: 25px; height: 25px;= } .dropdown.left::before { left: 4px; } .dropdown.right::before { right: 4px; } .dropdown { top: 25px; z-index: 100; box-shadow: rgba(0, 0, 0, 0.3) 0px 2px= 5px; border-radius: 2px; background-color: var(--white); margin: 0px; posi= tion: absolute !important; } .dropdown::before { position: absolute; z-index: 101; content: ""; width: 1= 6px; height: 16px; top: -11px; right: 4px; background: url("../../Img/filte= r-sprites.svg?v=3Dd1e85fbf5198") -16px 0px no-repeat; } .dropdown ul { margin: 0px; } .dropdown li { text-align: left; white-space: nowrap; position: relative; b= order-bottom: 1px solid var(--black-150); line-height: 12px; display: block= ; background-color: var(--white); height: auto; margin-bottom: 0px; transit= ion: 0.2s; } .dropdown li:hover { background-color: var(--black-100); } .dropdown li:active { background-color: var(--black-150); } .dropdown li a.selected { background-color: rgb(241, 242, 243); color: rgb(= 167, 173, 180); } .dropdown li:first-child { border-top: 1px solid var(--black-150); } .dropdown li .bounty-indicator-tab { margin-left: 10px; } .dropdown li .bounty-indicator-tab a:hover { text-decoration: none; } .dropdown li a { box-sizing: border-box; width: 100%; padding: 10px; displa= y: inline-block; } .dropdown li a#edit-favorite-tags { width: auto; font-size: var(--fs-fine);= } .-is-active .-frequency-menu { max-height: 40em; } @keyframes spinnerRotate {=20 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } a.loading::before { content: ""; position: relative; display: inline-block;= top: 1px; left: -4px; width: 8px; height: 8px; border-radius: 50%; border-= width: 2px; border-style: solid; border-color: rgb(146, 194, 242) rgb(146, = 194, 242) rgb(146, 194, 242) rgb(27, 117, 208); border-image: initial; tran= sform: translateZ(0px); animation: 0.8s linear 0s infinite normal none runn= ing spinnerRotate; } .modal { max-width: min(700px, 90%); max-height: 900px; min-width: min(400p= x, 100%); background-color: var(--white); border-radius: 3px; z-index: 9999= ; overflow: hidden; position: fixed !important; } @media (prefers-color-scheme: dark) { body.theme-system .modal { background-image: var(--black-225); } } body.theme-dark .modal, .theme-dark__forced .modal, body.theme-system .them= e-dark__forced .modal { background-image: var(--black-225); } .modal * { box-sizing: border-box; } .modal.auto-center { transform: translate(-50%, -50%); left: 50% !important= ; top: 50% !important; } .modal.wmd-prompt-dialog { padding: 0px; border: 0px; } .modal:focus { outline: none; } .modal .modal-close { position: absolute; top: 4px; right: 4px; z-index: 2;= font-family: var(--ff-sans); color: var(--black-300); font-size: var(--fs-= body3); font-weight: 600; line-height: 1; width: 30px; height: 30px; text-a= lign: center; padding-top: 7px; border-radius: 50%; cursor: pointer; } .modal .modal-close:hover { color: var(--black-500); background: var(--blac= k-150); } .modal .modal-content, .modal .modal-footer { padding: 30px; } .modal .modal-footer { background: rgb(59, 64, 69); color: rgb(255, 255, 25= 5); } .modal .modal-footer a { color: inherit; text-decoration: underline; } .modal .modal-footer a:hover { color: rgb(255, 255, 255); } .modal-overlay { position: fixed; inset: 0px; background: rgba(0, 0, 0, 0.5= ); z-index: 1001; } .modal.image-upload .modal-content { text-align: center; } .modal.image-upload .modal-options { padding: 24px 0px 9px; color: var(--bl= ack-500); } .modal.image-upload .modal-options p { margin-bottom: 0px; } .modal.image-upload .modal-options .ajax-loader { margin-left: 10px; } .modal.image-upload .modal-options-separator { margin: 0px 6px; } .modal.image-upload .modal-dropzone-default, .modal.image-upload .modal-dro= pzone-preview { border: 2px dashed var(--black-200); height: 260px; border-= radius: 3px; padding: 15px; width: 620px; max-width: 100%; position: relati= ve; } .modal.image-upload .modal-dropzone-default { background: var(--black-150);= cursor: pointer; transition: background 300ms, border 300ms; } .modal.image-upload .modal-dropzone-default:hover, .modal.image-upload .mod= al-dropzone-default.hover { background: var(--black-200); border-color: var= (--black-225); } .modal.image-upload .modal-dropzone-default:hover .modal-dropzone-img::befo= re, .modal.image-upload .modal-dropzone-default.hover .modal-dropzone-img::= before { top: -50px; } .modal.image-upload .modal-dropzone-default:hover .modal-dropzone-img::afte= r, .modal.image-upload .modal-dropzone-default.hover .modal-dropzone-img::a= fter { top: -76px; } .modal.image-upload .modal-dropzone-default > * { pointer-events: none; } .modal.image-upload .modal-dropzone-default .modal-dropzone-img { backgroun= d-image: url("../../Img/img-upload.svg?v=3D16d9e4614ece"), none; background= -position: 0px 0px; width: 86px; height: 78px; position: absolute; top: 88p= x; left: 50%; margin-left: -43px; } .modal.image-upload .modal-dropzone-default .modal-dropzone-img::before, .m= odal.image-upload .modal-dropzone-default .modal-dropzone-img::after { posi= tion: absolute; background-image: url("../../Img/img-upload.svg?v=3D16d9e46= 14ece"), none; display: block; content: ""; transition: 0.15s; } .modal.image-upload .modal-dropzone-default .modal-dropzone-img::before { b= ackground-position: -120px -21px; width: 156px; height: 65px; top: -44px; l= eft: -33px; } .modal.image-upload .modal-dropzone-default .modal-dropzone-img::after { ba= ckground-position: -130px -90px; width: 53px; height: 61px; top: -66px; lef= t: 18px; } .modal.image-upload .modal-dropzone-default p { margin-top: 166px; margin-b= ottom: 0px; color: var(--black-350); font-size: var(--fs-body3); } .modal.image-upload .modal-dropzone-default p b { font-size: var(--fs-headl= ine1); color: var(--black-400); font-weight: 700; display: block; margin-bo= ttom: 10px; } .modal.image-upload .modal-options-error-message { color: var(--red-400); f= ont-weight: bold; } .modal.image-upload .modal-footer p { padding-top: 12px; } .modal.wmd-prompt-dialog.insert-link { padding: 20px; width: 470px; overflo= w: visible; } .modal.wmd-prompt-dialog.insert-link .tabs { margin-bottom: 20px; float: le= ft; width: 100%; height: 41px; border-bottom: 1px solid var(--black-150); } .modal.wmd-prompt-dialog.insert-link .notes { padding: 5px; } .modal.wmd-prompt-dialog.insert-link form { padding: 0px; margin: 0px; floa= t: left; width: 100%; position: relative; } .modal.wmd-prompt-dialog.insert-link form input[type=3D"text"] { display: b= lock; width: 100%; margin: 0px auto; } .modal.wmd-prompt-dialog.insert-link form input[type=3D"button"] { margin: = 20px 10px 0px 0px; display: inline; } .modal.wmd-prompt-dialog.insert-link form input[type=3D"button"].insert-hyp= erlink { width: 5em; } .popup { z-index: var(--zi-popovers); display: none; position: absolute; pa= dding: var(--su16); box-shadow: var(--bs-sm); background-color: var(--white= ); border: solid 1px var(--black-350); } @media (prefers-color-scheme: dark) { body.theme-system .popup { background-color: var(--black-225); } } body.theme-dark .popup, .theme-dark__forced .popup, body.theme-system .them= e-dark__forced .popup { background-color: var(--black-225); } .popup .already-flagged { display: inline-block; margin-left: 23px; margin-= top: 8px; color: var(--red-500); font-weight: 700; } .popup .disabled-action { cursor: default !important; } .popup .disabled-action .action-desc, .popup .disabled-action .action-name = { opacity: 0.6; cursor: default !important; } .popup textarea { width: 100%; } .popup .subheader { margin-bottom: 10px !important; margin-top: 25px !impor= tant; } .popup .popup-title-container { margin-bottom: 10px; } .popup .popup-title-container .popup-breadcrumbs .breadcrumb .arrow { paddi= ng: 0px 6px; } .popup #search-text, .popup .close-as-duplicate-pane .actual-edit-overlay {= width: 755px !important; } .popup .question-summary { border: 0px; } .message.message-config, .contributor-dropdown, .ask-confirmation-popup { b= order-radius: 5px; border: 0px; box-shadow: var(--bs-sm); } .message.message-config .message-close, .contributor-dropdown .message-clos= e, .ask-confirmation-popup .message-close, .message.message-config .popup-c= lose a, .contributor-dropdown .popup-close a, .ask-confirmation-popup .popu= p-close a { margin: 0px; padding: 0px; position: absolute; z-index: 2; top:= 11px; right: 10px; border: 0px; font-size: var(--fs-body3); cursor: pointe= r; font-weight: 600; color: var(--black-300) !important; } .message.message-config .message-close:hover, .contributor-dropdown .messag= e-close:hover, .ask-confirmation-popup .message-close:hover, .message.messa= ge-config .popup-close a:hover, .contributor-dropdown .popup-close a:hover,= .ask-confirmation-popup .popup-close a:hover { color: var(--black-500) !im= portant; } .message.message-config .popup-close a, .contributor-dropdown .popup-close = a, .ask-confirmation-popup .popup-close a { background: none; right: 22px; = } .ask-confirmation-popup .popup-close a { top: var(--su16); right: var(--su1= 6); } .ask-confirmation-popup .popup-title { padding-right: 32px; } .ask-confirmation-popup .popup-actions { display: flex; justify-content: ce= nter; align-items: center; margin-top: var(--su8); } .ask-confirmation-popup .popup-actions-cancel { margin-right: var(--su16); = } .message.message-config .message-tip .popup-title { font-weight: 700 !impor= tant; } .message.message-config .message-tip.message-tip-top-right::before, .messag= e.message-config .message-tip.message-tip-top-left::before { width: 0px; he= ight: 0px; border-left: 6px solid transparent; border-right: 6px solid tran= sparent; border-bottom: 6px solid var(--white); top: -12px; } .message.message-config .message-tip.message-tip-top-right::before { right:= 12px; } .message.message-config .message-tip.message-tip-top-left::before { left: 1= 2px; } .message.message-config h1, .message.message-config h2, .message.message-co= nfig h3, .message.message-config h4 { color: var(--black-600); margin-botto= m: 1em; } .message.message-config h4 { text-align: left; letter-spacing: 0px; margin-= right: var(--su16); } .message.message-config h4.popup-nav-title { text-align: center; margin: 0p= x 15px 15px 10px; } .message.message-config .actions { margin: 20px -20px -20px; padding: 0px 1= 5px; background: rgb(59, 64, 69); height: 48px; border-radius: 0px 0px 3px = 3px; } .message.message-config .actions::before, .message.message-config .actions:= :after { content: ""; display: table; } .message.message-config .actions::after { clear: both; } .message.message-config .actions .rep-number, .message.message-config .acti= ons .button { text-align: center; font-size: var(--fs-caption); } .message.message-config .actions .rep-number { float: left; display: inline= -block; color: rgb(255, 255, 255); font-weight: 700; padding-top: 16px; } .message.message-config .actions .button { float: right; padding: 8px 16px;= margin-top: 10px; text-decoration: none; display: inline-block; font-weigh= t: 600; background: var(--blue-400); border: 0px; border-radius: 3px; color= : rgb(255, 255, 255) !important; box-shadow: none !important; } .message.message-config .actions .button:hover { background: var(--blue-500= ); } .message.message-config .actions .button::after { content: " "; display: in= line-block; background-image: url("../../Img/user-profile-sprite.svg?v=3Dd8= 8bb7069e3d"), none; background-position: -15px -409px; width: 7px; height: = 10px; position: relative; top: 2px; left: 4px; } .message.message-config .message-text { border-radius: 6px; position: relat= ive; z-index: 1; padding: 20px !important; } .message.message-config .message-text .question-hyperlink, .message.message= -config .message-text .answer-hyperlink { font-size: var(--fs-body1); text-= decoration: none; color: var(--theme-post-title-color, var(--theme-link-col= or, var(--theme-secondary-400))); } .message.message-config .message-text .question-hyperlink:hover, .message.m= essage-config .message-text .answer-hyperlink:hover { color: var(--theme-po= st-title-color-hover, var(--theme-link-color-hover, var(--theme-secondary-5= 00))); } .message.message-config .popup-nav { list-style: none; margin: 0px -20px -2= 0px; padding: 0px; text-align: center; } .message.message-config .popup-nav li { margin: 0px; padding: 0px; border-b= ottom: 1px solid var(--black-150); } .message.message-config .popup-nav li:last-child { border-bottom: 0px; } .message.message-config .popup-nav li:first-child { border-top: 1px solid v= ar(--black-150); } .message.message-config .popup-nav li a { transition: color 0.3s, backgroun= d 0.3s; text-decoration: none; color: var(--black-400); font-size: var(--fs= -body1); display: block; padding: 10px 15px; } .message.message-config .popup-nav li a:hover, .message.message-config .pop= up-nav li a.active, .message.message-config .popup-nav li a.youarehere { ba= ckground: var(--blue-500); color: var(--white); } .message.message-config .unstyled { padding: 0px; list-style: none; text-al= ign: center; margin: 0px -20px -20px; } .message.message-config .unstyled li { border-bottom: 1px solid var(--black= -150); padding: 10px; } .message.message-config .unstyled li .badge { text-decoration: none; } .message.message-config .unstyled li:first-child { border-top: 1px solid va= r(--black-150); } .message.message-config .unstyled li:last-child { border-bottom: 0px; } .message.message-config.tooltip { border-radius: 3px; pointer-events: none;= } .message.message-config.tooltip .message-inner::before { display: none; } .message.message-config.tooltip .message-text { font-weight: 500; font-size= : var(--fs-fine); color: var(--black-600); border-radius: 3px; padding: 3px= 8px !important; } .message.message-config .no-cta p { margin-bottom: 0px; } .message.message-config .no-cta .bars-wrapper { margin-top: 10px; } .envelope-on, .envelope-off, .vote-up-off, .vote-up-on, .vote-down-off, .vo= te-down-on, .feed-icon, .vote-accepted-off, .vote-accepted-on, .vote-accept= ed-bounty, .badge-earned-check, .delete-tag, .grippie, .expander-arrow-hide= , .expander-arrow-show, .expander-arrow-small-hide, .expander-arrow-small-s= how, .anonymous-gravatar, .badge1, .badge2, .badge3 { background-image: url= ("../../Img/unified/sprites.svg?v=3Dfcc0ea44ba27"), none; background-size: = initial; background-repeat: no-repeat; overflow: hidden; } .vote-up-off, .vote-up-on, .vote-down-off, .vote-down-on, .vote-accepted-of= f, .vote-accepted-on { display: block; margin: 0px auto 2px; text-indent: -= 999em; width: 40px; height: 40px; } .vote-up-off, .vote-down-off, .vote-accepted-off { cursor: pointer; } .vote-up-off, .vote-up-on, .vote-down-off, .vote-down-on, .vote-accepted-of= f, .vote-accepted-on { text-indent: -9999em; font-size: 1px; } .vote-up-off { background-position: 0px -170px; } .vote-up-on { background-position: -40px -170px; } .vote-down-off { background-position: 0px -220px; margin-bottom: 8px; } .vote-down-on { background-position: -40px -220px; margin-bottom: 8px; } .vote-accepted-off { background-position: 0px -270px; } .vote-accepted-on { background-position: -40px -270px; } .migrated.to, .migrated.from { background-repeat: no-repeat; overflow: hidd= en; background-color: transparent; background-image: url("../../Img/unified= /sprites.png?v=3D0786b22b9381") !important; } .icon-bg { display: inline-block; border: none; height: 18px; width: 18px; = padding: 0px; } .icon-bg::after { content: ""; height: 100%; width: 100%; display: inline-b= lock; background-color: currentcolor; mask-image: ; -webkit-mask-position-x= : ; -webkit-mask-position-y: ; mask-repeat: ; mask-origin: ; mask-clip: ; m= ask-composite: ; mask-mode: ; mask-size: contain; } .icon-bg.native::after { background-color: unset; mask: none; background-im= age: var(--bg-icon); background-size: contain; background-repeat: no-repeat= ; background-position: center center; } .icon-bg.iconAchievements { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns= =3D'http://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon icon= Achievements' width=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath d= =3D'M15 2V1H3v1H0v4c0 1.6 1.4 3 3 3v1c.4 1.5 3 2.6 5 3v2H5s-1 1.5-1 2h10c0-= .4-1-2-1-2h-3v-2c2-.4 4.6-1.5 5-3V9c1.6-.2 3-1.4 3-3V2h-3zM3 7c-.5 0-1-.5-1= -1V4h1v3zm8.4 2.5L9 8 6.6 9.4l1-2.7L5 5h3l1-2.7L10 5h2.8l-2.3 1.8 1 2.7h-.1= zM16 6c0 .5-.5 1-1 1V4h1v2z'/%3E%3C/svg%3E"); } .icon-bg.iconFaceMindBlown { --bg-icon: url("data:image/svg+xml,%3Csvg xmln= s=3D'http://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon ico= nFaceMindBlown' width=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath = opacity=3D'.4' d=3D'M1.06 8a8 8 0 1015.88 0H16l-1 .5-1-.5h-1.5l-1.5.5L9 8l-= .5.5-1-.5H6l-1 .5-.5-.5h-1l-.5.5L2 8h-.94z' fill=3D'%23FFAA3B'/%3E%3Cpath o= pacity=3D'.3' d=3D'M3.5 8h.41a11.5 11.5 0 0010.38 7A8 8 0 011.06 8H2l1 .5.5= -.5z' fill=3D'%23FF9700'/%3E%3Cpath d=3D'M6.07 14.68a.7.7 0 00.67.28c1.5-.1= 6 3.01-.16 4.51 0a.71.71 0 00.67-.28.7.7 0 00.06-.72A3.23 3.23 0 009 12.36a= 3.3 3.3 0 00-3 1.6.7.7 0 00.07.72z' fill=3D'var(--black-600)'/%3E%3Cpath d= =3D'M7.36 4.37c.18.23.4.42.68.55a2.19 2.19 0 001.95 0c.26-.13.48-.31.65-.53= .15.93.36 2.29.36 2.61 0 .5-4 .5-4 0 0-.32.21-1.7.36-2.63z' fill=3D'%23F75D= 37'/%3E%3Cpath opacity=3D'.67' d=3D'M15.33 2.43a2.8 2.8 0 00-1.73-.53c-.06-= .4-.28-.76-.64-1.05-.35-.26-.8-.44-1.27-.5-.49-.06-.98 0-1.42.16A2.9 2.9 0 = 008.4.08c-.39.05-.75.17-1.06.36A3.04 3.04 0 006.02.37c-.8.13-1.48.6-1.72 1.= 2-.11.27-.13.55-.07.83-.77.07-1.47.45-1.8.99-.6.98.26 2.4 1.6 2.6.97.14 2.1= 3-.15 2.63-.79.22-.27.33-.58.34-.9.21.26.5.47.86.62a2.92 2.92 0 002.28 0c.3= 5-.15.64-.37.85-.63.04.43.27.83.65 1.14a2.93 2.93 0 003.03.25c.81-.42 1.42-= 1.42 1.32-2.16-.05-.41-.28-.8-.66-1.09z' fill=3D'%23FFC166'/%3E%3Cpath opac= ity=3D'.78' d=3D'M7.4 2c1.19 0 2.3-.2 3.26-.55.9 1.2 2.88 2.13 5.32 2.44A2.= 61 2.61 0 0113.1 6a2.68 2.68 0 01-1.45-.56A1.65 1.65 0 0111 4.3c-.2.26-.5.4= 8-.85.63a2.92 2.92 0 01-2.28 0A2.21 2.21 0 017 4.3c0 .32-.12.63-.34.9-.5.64= -1.66.93-2.62.78-1.35-.2-2.22-1.6-1.6-2.6a2.36 2.36 0 011.79-.98 1.4 1.4 0 = 01.1-.88c.9.3 1.95.48 3.07.48z' fill=3D'%23FFC166'/%3E%3Cpath opacity=3D'.5= 2' d=3D'M11.09 3.47a7.43 7.43 0 01-5.43.05c-1 .27-2.17.44-3.42.47-.06.88.71= 1.83 1.8 2 .96.14 2.12-.15 2.62-.79.22-.27.33-.58.34-.9.21.26.5.47.86.62a2= .92 2.92 0 002.28 0c.35-.15.64-.37.85-.63.04.43.27.83.65 1.14a2.93 2.93 0 0= 03.03.25c.35-.18.66-.47.9-.8a11.57 11.57 0 01-4.48-1.4z' fill=3D'%23F75D37'= /%3E%3Ccircle cx=3D'11' cy=3D'10.5' r=3D'1.35' fill=3D'var(--black-600)'/%3= E%3Ccircle cx=3D'7' cy=3D'10.5' r=3D'1.35' fill=3D'var(--black-600)'/%3E%3C= circle opacity=3D'.6' cx=3D'3.5' cy=3D'6.5' r=3D'.5'/%3E%3Ccircle opacity= =3D'.6' cx=3D'14.5' cy=3D'.5' r=3D'.5'/%3E%3Ccircle opacity=3D'.6' cx=3D'14= .5' cy=3D'6.5' r=3D'.5'/%3E%3Ccircle opacity=3D'.6' cx=3D'16.5' cy=3D'4.5' = r=3D'.5'/%3E%3Ccircle opacity=3D'.6' cx=3D'3.5' cy=3D'.5' r=3D'.5'/%3E%3Cci= rcle opacity=3D'.6' cx=3D'1.5' cy=3D'3.5' r=3D'.5'/%3E%3C/svg%3E"); } .icon-bg.iconWave { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D'http= ://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconWave' wi= dth=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath d=3D'M10.7 17c-2.3= 0-3.9-2.05-5.07-3.54l-.49-.6c-.67-.8-1.59-1.63-2.4-2.36A10.91 10.91 0 011.= 1 8.87a.79.79 0 01-.09-.56c.04-.19.14-.34.27-.4.14-.07.29-.1.45-.1.35 0 .67= .18.87.34l3.5 2.75c.04.03.1.03.13 0a.09.09 0 00.02-.13l-.02-.02c-.57-.8-3.4= 2-4.77-3.71-5.15-.21-.27-.3-.58-.24-.84.05-.2.2-.37.4-.48.18-.09.35-.13.52-= .13.44 0 .76.28.96.51l3.6 4.42c.04.04.07.06.14.02.05-.02.06-.07.03-.12L4.41= 2.96a.94.94 0 01-.1-.73.92.92 0 01.47-.57 1.06 1.06 0 011.4.39l3.8 6.14c.0= 3.04.07.07.14.04.04-.03.06-.07.04-.13A153.8 153.8 0 008.1 2.54c-.31-.68-.2-= 1.14.36-1.42.52-.27 1.14-.07 1.47.48l3.69 8.3c.02.04.05.05.1.06a.1.1 0 00.0= 9-.07l.66-2.28c.1-.3.31-.56.62-.72.3-.15.65-.18.98-.1.7.2 1.09.87.89 1.52-.= 1.37-.46 1.73-.99 3.43l-.1.33c-.58 1.86-1.03 3.33-3.11 4.4-.7.35-1.38.53-2.= 05.53z' fill=3D'%23FFC166'/%3E%3Cpath d=3D'M14 .37a.5.5 0 00-.88.45l1.96 3.= 9a.5.5 0 00.9-.45L14 .37zm-1.17 2.17a.5.5 0 00-.91.42l.84 1.87a.5.5 0 10.91= -.41l-.84-1.88zm-10.6 9.74a.5.5 0 01.7-.02l1.7 1.6a.5.5 0 01-.7.72l-1.68-1.= 6a.5.5 0 01-.02-.7zm-1.39.98a.5.5 0 10-.68.73l3.03 2.84a.5.5 0 00.68-.73L.8= 4 13.26z' opacity=3D'.4'/%3E%3C/svg%3E"); } .icon-bg.iconFire { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D'http= ://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconFire' wi= dth=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath opacity=3D'.6' d= =3D'M13.18 9c-.8.33-1.46.6-1.97 1.3A9.21 9.21 0 0010 13.89a10 10 0 001.32-.= 8 2.53 2.53 0 01-.63 2.91h.78a3 3 0 001.66-.5 4.15 4.15 0 001.26-1.61c.4-.9= 6.47-1.7.55-2.73.05-1.24-.1-2.49-.46-3.68a2 2 0 01-.4.91 2.1 2.1 0 01-.9.62= z' fill=3D'%23FF6700'/%3E%3Cpath d=3D'M10.4 12.11a7.1 7.1 0 01.78-1.76c.3-.= 47.81-.8 1.37-1.08 0 0-.05-3.27-1.55-5.27-1.5-2-3.37-2.75-4.95-2.61 0 0 3.7= 3 2.42.72 5.15C4.63 8.45 3.59 10.87 4.13 13a4.14 4.14 0 003.1 3 4.05 4.05 0= 011.08-3.89C9.42 10.92 8 9.79 8 9.79c.67.02 1.3.28 1.81.72a2 2 0 01.58 1.6= z' fill=3D'%23EF2E2E'/%3E%3C/svg%3E"); } .icon-bg.iconHeart { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D'htt= p://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconHeart' = width=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath d=3D'M5.25 2c-1.= 5 0-2.35.5-3.15 1.36C.5 5 .5 8.2 2.1 10l6 5.87c.2.2.6.2.8 0l6-5.87c1.6-1.8 = 1.6-5 0-6.64A3.86 3.86 0 0011.75 2C10.2 2 9 3 8.5 3.9 8 3 6.5 2 5.25 2zm8.6= 4.85l-2 2a.5.5 0 01-.7-.7l2-2a.5.5 0 01.7.7z' fill=3D'%23F75D37'/%3E%3C/sv= g%3E"); } .icon-bg.iconClap { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D'http= ://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconClap' wi= dth=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath d=3D'M12.5 3a.5.5 = 0 01-.5-.5v-2a.5.5 0 011 0v2a.5.5 0 01-.5.5zM14 4.5c0-.28.22-.5.5-.5h2a.5.5= 0 010 1h-2a.5.5 0 01-.5-.5zm-.35-1.85a.5.5 0 00.7.7l1.5-1.5a.5.5 0 00-.7-.= 7l-1.5 1.5z' opacity=3D'.4'/%3E%3Cpath d=3D'M2.58 8.69c.33.45.73.8 1.15 1.0= 6L5.8 6c.17-.29.4-.56.68-.74.44-.28.99-.26 1.4-.02h.02c.32-.04 1.6-.06 2.73= -.08a41.5 41.5 0 001.77-.04c.49-.04.68-.3.65-.75-.02-.46-.44-.65-.9-.6l-6.7= 6.36c-.05.01-.1-.07-.07-.11l1.03-1.36c.3-.4.16-.97-.21-1.26a.87.87 0 00-1.2= 5.13C4.3 2.26 3.74 3 3.19 3.76c-1.08 1.47-1.83 3.29-.61 4.93zm10.1.41h-.75c= .11-.23.18-.47.17-.73 0-.19-.06-.37-.15-.53l.73.01c.41.03.68.35.68.6 0 .24-= .23.66-.68.65zM10.9 7.15l2.6-.02a.66.66 0 00.6-.77c-.08-.41-.47-.64-.87-.64= l-2.66.04c.35.37.48.9.33 1.4zM5.52 17c-2.04 0-3.15-1.78-3.7-3.52a53.2 53.2 = 0 01-.77-2.7c-.15-.46.14-.94.63-1.07.47-.13 1 .1 1.15.58l.47 1.63c.02.06.11= .06.14 0l3.01-5.54c.24-.4.6-.73.97-.54.4.2.47.54.25 1.02-.08.18-.33.66-.63 = 1.22-.51.96-1.15 2.16-1.26 2.49-.01.04-.03.21.08.29.1.07.28-.06.3-.09l2.71-= 4.14c.2-.34.63-.66.98-.48.34.18.46.6.26.93L7.37 11.2c-.02.03-.14.32.05.43.1= 9.12.4-.04.42-.07L10.2 8.3c.27-.31.51-.51.9-.32.34.18.33.61.06.97-.45.6-.8 = 1.13-1.16 1.64-.4.58-.8 1.15-1.28 1.8-.02.03-.13.23 0 .37.12.13.27 0 .27 0l= 1.9-2.3c.23-.3.48-.42.8-.25.28.14.22.58.09.8-.53.91-1.2 1.72-1.86 2.53C8.75= 14.94 7.55 17 5.52 17z' fill=3D'%23FFC166'/%3E%3C/svg%3E"); } .icon-bg.iconFaceSmile { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D= 'http://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconFac= eSmile' width=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Ccircle opacit= y=3D'.4' cx=3D'9' cy=3D'9' r=3D'8' fill=3D'%23FFAA3B'/%3E%3Cpath opacity=3D= '.3' d=3D'M8.41 17a10 10 0 01.38-15.75c.1-.08.2-.16.28-.25a8 8 0 00-.66 16z= ' fill=3D'%23FF9700'/%3E%3Cpath d=3D'M6.5 8a1.5 1.5 0 100-3 1.5 1.5 0 000 3= zm2.6 6a7.37 7.37 0 01-4.79-2.06 1.1 1.1 0 010-1.54c.42-.51 1.15-.51 1.67-.= 1.31.3 3.23 2.88 6.14 0a1.06 1.06 0 011.57.1 1.1 1.1 0 010 1.54C12.13 13.38= 10.56 14 9.1 14zM13 6.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z' fill=3D'var(--b= lack-600)'/%3E%3C/svg%3E"); } .icon-bg.iconTada { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D'http= ://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconTada' wi= dth=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath opacity=3D'.4' d= =3D'M10.38 7.48c-2.9-2.9-5.4-3.73-5.51-3.38l-3.8 11.45c-.14.4-.03.86.27 1.1= 5.3.3.78.38 1.17.22l11.42-3.31c.3-.15-.64-3.22-3.54-6.13z' fill=3D'%23FF970= 0'/%3E%3Cpath d=3D'M6.8 11.07a18.02 18.02 0 01-2.93-3.96l1-3C5.47 6.15 6.65= 8 8.25 9.4a21.72 21.72 0 005.59 4.22l-2.86.83a31.19 31.19 0 01-4.17-3.39zM= 3.6 14.2a4.26 4.26 0 01-1.33-2.24l.91-2.74c.5 1.27 1.25 2.43 2.2 3.4.95.95 = 2 1.81 3.1 2.57l-2.57.74a9.03 9.03 0 01-2.31-1.72z' opacity=3D'.6' fill=3D'= %23FF9700'/%3E%3Cpath d=3D'M15.85 2.15c.2.2.2.5 0 .7l-4 4a.5.5 0 01-.7-.7l4= -4c.2-.2.5-.2.7 0z' fill=3D'%23F75D37'/%3E%3Cpath d=3D'M10 1.5a.5.5 0 00-1 = 0v3a.5.5 0 001 0v-3zM13.5 8a.5.5 0 000 1h3a.5.5 0 000-1h-3z' fill=3D'%2307C= '/%3E%3Cpath d=3D'M7.5 3a.5.5 0 100-1 .5.5 0 000 1zm5 0a.5.5 0 100-1 .5.5 0= 000 1zM16 5.5a.5.5 0 11-1 0 .5.5 0 011 0zm-.5 5.5a.5.5 0 100-1 .5.5 0 000 = 1z' opacity=3D'.6' fill=3D'%2307C'/%3E%3C/svg%3E"); } .icon-bg.iconSmileyAdd { --bg-icon: url("data:image/svg+xml,%3Csvg xmlns=3D= 'http://www.w3.org/2000/svg' aria-hidden=3D'true' class=3D'svg-icon iconSmi= leyAdd' width=3D'18' height=3D'18' viewBox=3D'0 0 18 18'%3E%3Cpath d=3D'M13= 0h2v3h3v2h-3v3h-2V5h-3V3h3V0zM6.44 2.15A8 8 0 018 2v2a6 6 0 106 6h2a8 8 0 = 11-9.56-7.85zM8.1 14.22a5.51 5.51 0 01-3.72-1.6.88.88 0 011.24-1.24 3.24 3.= 24 0 004.76 0 .88.88 0 011.24 1.24 4.9 4.9 0 01-3.52 1.6zM7.25 8a1.25 1.25 = 0 11-2.5 0 1.25 1.25 0 012.5 0zM10 9.25a1.25 1.25 0 100-2.5 1.25 1.25 0 000= 2.5z'/%3E%3C/svg%3E"); } .informative-tooltip { position: absolute; padding: 0.8em; max-width: 200px= ; z-index: var(--zi-tooltips); border-radius: var(--br-sm); background: rgb= (71, 71, 71); font-size: var(--fs-caption); color: rgb(255, 255, 255); } .informative-tooltip.arrow::before { position: absolute; content: ""; width= : 0px; height: 0px; } .informative-tooltip.arrow.up-left::before, .informative-tooltip.arrow.up-c= enter::before, .informative-tooltip.arrow.up-right::before { top: -4px; bor= der-left: 5px solid transparent; border-right: 5px solid transparent; borde= r-bottom: 5px solid rgb(71, 71, 71); } .informative-tooltip.arrow.up-center::before { left: 50%; margin-left: -5px= ; } .informative-tooltip.arrow.up-left::before { left: 10px; } .informative-tooltip.arrow.up-right::before { right: 10px; } .informative-tooltip.arrow.down-left::before, .informative-tooltip.arrow.do= wn-center::before, .informative-tooltip.arrow.down-right::before { bottom: = -4px; border-left: 5px solid transparent; border-right: 5px solid transpare= nt; border-top: 5px solid rgb(71, 71, 71); } .informative-tooltip.arrow.down-center::before { left: 50%; margin-left: -5= px; } .informative-tooltip.arrow.down-left::before { left: 10px; } .informative-tooltip.arrow.down-right::before { right: 10px; } .informative-tooltip.arrow.left-top::before, .informative-tooltip.arrow.lef= t-center::before, .informative-tooltip.arrow.left-bottom::before { left: -4= px; border-top: 5px solid transparent; border-bottom: 5px solid transparent= ; border-right: 5px solid rgb(71, 71, 71); } .informative-tooltip.arrow.left-center::before { top: 50%; margin-top: -5px= ; } .informative-tooltip.arrow.left-top::before { top: 10px; } .informative-tooltip.arrow.left-bottom::before { bottom: 10px; } .informative-tooltip.arrow.right-top::before, .informative-tooltip.arrow.ri= ght-center::before, .informative-tooltip.arrow.right-bottom::before { right= : -4px; border-top: 5px solid transparent; border-bottom: 5px solid transpa= rent; border-left: 5px solid rgb(71, 71, 71); } .informative-tooltip.arrow.right-center::before { top: 50%; margin-top: -5p= x; } .informative-tooltip.arrow.right-top::before { top: 10px; } .informative-tooltip.arrow.right-bottom::before { bottom: 10px; } .informative-tooltip.error { background: rgb(200, 50, 50); color: white; } .informative-tooltip.display-above, .informative-tooltip.display-right { to= p: 0px; max-width: none; } .informative-tooltip.display-above::before, .informative-tooltip.display-ri= ght::before { content: ""; position: absolute; width: 0px; height: 0px; bor= der-width: 5px; border-style: solid; border-color: transparent; } .informative-tooltip.display-above.size-200, .informative-tooltip.display-r= ight.size-200 { width: 200px; } .informative-tooltip.display-above.error::before, .informative-tooltip.disp= lay-right.error::before { border-top-color: rgb(200, 50, 50); } .informative-tooltip.display-above { left: 50%; transform: translate(-50%, = -110%); } .informative-tooltip.display-above::before { bottom: -4px; left: 50%; margi= n-left: -5px; border-bottom-width: 0px; border-top-color: rgb(71, 71, 71); = } .informative-tooltip.display-right { right: 50%; transform: translate(115%,= 0%); } .informative-tooltip.display-right::before { left: -4px; top: 50%; margin-t= op: -5px; border-left-width: 0px; border-right-color: rgb(71, 71, 71); } .has-tooltip { position: relative; } .has-tooltip .informative-tooltip { opacity: 0; visibility: hidden; transit= ion: opacity 300ms, transform 300ms; } .has-tooltip:hover .informative-tooltip { opacity: 1; visibility: visible; = } .has-tooltip.on-hover .tooltip-above.arrow.down-right { right: -6px; top: -= 10px; transform: translate(0px, -80%); } .has-tooltip.on-hover:hover .tooltip-above.arrow.down-right { transform: tr= anslate(0px, -100%); } .has-tooltip .informative-tooltip.display-above { transform: translate(-50%= , -80%); } .has-tooltip:hover .informative-tooltip.display-above { transform: translat= e(-50%, -110%); } .has-tooltip .informative-tooltip.display-right { transform: translate(120%= , 0%); } .has-tooltip:hover .informative-tooltip.display-right { transform: translat= e(115%, 0%); } .css-tooltip { position: relative; } .css-tooltip[data-title]:hover::after { content: attr(data-title); backgrou= nd: rgb(71, 71, 71); padding: 0.8em; margin-left: 5px; max-width: 200px; co= lor: rgb(255, 255, 255); font-size: var(--fs-caption); border-radius: 3px; = position: absolute; z-index: 1031; left: 0px; top: 100%; } .users-grid { margin-bottom: 30px; display: flex; flex-wrap: wrap; } .users-grid .-user { border: 1px solid var(--black-150); border-radius: 3px= ; padding: 20px 10px 20px 20px; margin: 0px 20px 20px 0px; width: calc(33.3= 333% - 13.3333px); display: flex; flex-wrap: nowrap; align-items: center; } .users-grid .-user .-details { padding-left: 15px; max-width: calc(100% - 6= 4px); flex-grow: 2; } .users-grid .-user .-details > :not(:last-child) { margin-bottom: 4px; } .users-grid .-user .-details h3, .users-grid .-user .-details p { max-width= : 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .users-grid .-user .-details h3 { font-weight: 400; font-size: var(--fs-bod= y3); } .users-grid .-user .-details p { margin-bottom: 0px; color: var(--black-400= ); } .users-grid .-user .-details p:last-child { margin-bottom: 0px; } .users-grid .-user:nth-child(3n) { margin-right: 0px; } .users-grid .-user .-avatar { width: 64px; height: 64px; } .users-grid .-user .-avatar img { max-width: 100%; height: auto; } .users-grid .-user.-private .-avatar { background-image: ; background-posit= ion-x: ; background-position-y: ; background-repeat: ; background-attachmen= t: ; background-origin: ; background-clip: ; background-color: ; background= -size: 50%; } .users-grid .-user.-private .-details h3 { margin-bottom: 0px; } .list-card { position: absolute; z-index: var(--zi-tooltips); background: v= ar(--white); width: 395px; padding: 20px; border-radius: 3px; box-shadow: r= gba(0, 0, 0, 0.15) 0px 1px 25px; transform: translate(0%, -110%); align-ite= ms: center; border: 1px solid var(--black-200); } .list-card::before { content: ""; width: 0px; height: 0px; border-left: 12p= x solid transparent; border-right: 12px solid transparent; border-top: 9px = solid var(--white); position: absolute; bottom: -7px; left: 20px; } .list-card .-avatar { width: 100px; height: 100px; align-self: flex-start; = background: var(--white); padding: 6px; border: 1px solid var(--black-200);= border-radius: 3px; display: flex; align-items: center; margin-right: 15px= ; flex: 0 0 auto; } .list-card .-avatar img { border-radius: 3px; max-width: 100%; height: auto= ; width: 100%; } .list-card .-avatar .logo-blank { background-color: var(--black-150); color= : var(--black-350); max-width: 100%; width: 100%; height: 100%; border-radi= us: 3px; } .list-card .-details { color: var(--black-400); font-weight: 400; font-size= : var(--fs-body1); width: 100%; } .list-card .-details .-name { color: var(--black-500); font-weight: 700; fo= nt-size: var(--fs-body3); margin-bottom: 0px; } .list-card .-details .-users-list { display: flex; flex-wrap: wrap; margin:= 5px 0px; } .list-card .-details .-users-list .-user:not(:last-child) { margin-right: 4= px; } .list-card .-details .-users-list .avatar { width: 26px; height: 26px; over= flow: hidden; } .list-card .-details .-users-list .avatar img { max-width: 100%; height: au= to; width: 100%; } .list-card .-details .-users-list .avatar.-private { background-image: ; ba= ckground-position-x: ; background-position-y: ; background-repeat: ; backgr= ound-attachment: ; background-origin: ; background-clip: ; background-color= : ; background-size: 50%; } .list-card .-details .more { display: inline-block; margin-top: 2px; } .modal.auto-center.snippet-modal { position: fixed; right: 0px; bottom: 0px= ; display: flex; justify-content: center; align-items: center; pointer-even= ts: none; transform: translateZ(0px) !important; width: 100% !important; he= ight: 100% !important; top: 0px !important; left: 0px !important; backgroun= d: none !important; } @media (prefers-color-scheme: dark) { body.theme-system .modal.auto-center.snippet-modal { background-color: va= r(--black-150); } } body.theme-dark .modal.auto-center.snippet-modal, .theme-dark__forced .moda= l.auto-center.snippet-modal, body.theme-system .theme-dark__forced .modal.a= uto-center.snippet-modal { background-color: var(--black-150); } .modal.auto-center.snippet-modal .snippet-holder { background: var(--white)= ; border-radius: 3px; width: 95%; height: 95%; overflow: hidden; pointer-ev= ents: auto; } .snippet-modal * { box-sizing: border-box; } .snippet-modal.modal { max-width: none; max-height: none; } .snippet-box-edit { box-sizing: border-box; position: absolute; top: 0px; l= eft: 0px; width: 100%; height: 100%; border: 0px; margin: 0px; resize: none= ; background: var(--white); overflow: auto; } .snippet-box-result { background-color: rgb(255, 255, 255); } textarea.snippet-box-edit { background-color: var(--white); background-imag= e: linear-gradient(to bottom, var(--white) 0%, var(--black-100) 69%, var(--= black-150) 100%); } .snippet-box-label { position: absolute; top: 10px; right: 20px; padding: 3= px; border: 1px solid var(--black-350); font-size: var(--fs-fine); color: v= ar(--black-400); } .snippet-footer { text-align: center; padding: 5px; } .snippet-code { border: 1px solid var(--black-225); border-radius: var(--br= -md); padding: var(--su12); } .snippet-code .snippet-ctas { font-size: var(--fs-body1); } .snippet-code .snippet-ctas > :not(:last-child) { margin-right: 6px; } .snippet-code .snippet-ctas .icon-play-white { position: relative; top: 1px= ; margin-right: 2px; } .snippet-code .hideResults::before { content: ""; display: inline-block; ba= ckground: url("../../Img/share-sprite-new.svg?v=3D0e11bfd41fbc") 0px -238px= no-repeat; width: 12px; height: 12px; margin-right: 6px; position: relativ= e; top: 1px; } .snippet-code .snippet-result .snippet-result-code { padding-top: 20px; mar= gin-top: 20px; height: 200px; position: relative; } .snippet-code .popin, .snippet-code .popout, .snippet-code .popout-code { f= ont-size: var(--fs-body1); right: 0px; } .snippet-code .popout { position: absolute; top: -48px; } .ask-mainbar .snippet-code .popout { top: -43px; } .snippet-code .popout-code { display: inline; margin-left: 10px; } .snippet-code .popout::before, .snippet-code .popout-code::before { content= : ""; display: inline-block; background: url("../../Img/share-sprite-new.sv= g?v=3D0e11bfd41fbc") 0px -220px no-repeat; width: 9px; height: 9px; margin-= right: 6px; } .snippet-code .popin { position: fixed; background: var(--blue-100); paddin= g: 4px 6px; right: 0px; top: 0px; z-index: calc(var(--zi-modals) + 1); } div.snippet-hidden div.snippet-currently-hidden { display: none; } a.snippet-show-link-chevron, a.snippet-show-link-chevron:hover { border-bot= tom: 0px; text-decoration: none; } .expanded-snippet { position: absolute; top: 0px; left: 0px; margin: 5px; w= idth: 99%; z-index: 900; } .CodeMirror { font-family: monospace; color: var(--black); top: 0px; left: = 0px; width: 100%; height: 100%; position: absolute !important; } .CodeMirror-lines { padding: 4px 0px; } .CodeMirror pre { padding: 0px 4px; } .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { background-color:= var(--white); } .CodeMirror-gutters { border-right: 1px solid var(--black-225); background-= color: var(--black-100); white-space: nowrap; } .CodeMirror-linenumber { padding: 0px 3px 0px 5px; min-width: 20px; text-al= ign: right; color: var(--black-350); white-space: nowrap; } .CodeMirror-guttermarker { color: var(--black); } .CodeMirror-guttermarker-subtle { color: var(--black-350); } .CodeMirror-cursor { border-left: 1px solid var(--black); border-right: non= e; width: 0px; } .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver;= } .cm-fat-cursor .CodeMirror-cursor { width: auto; background: rgb(119, 238, = 119); border: 0px !important; } .cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } .cm-animate-fat-cursor { width: auto; border: 0px; animation: 1.06s steps(1= ) 0s infinite normal none running blink; background-color: rgb(119, 238, 11= 9); } @keyframes blink {=20 50% { background-color: transparent; } } .cm-tab { display: inline-block; text-decoration: inherit; } .CodeMirror-rulers { position: absolute; inset: -50px 0px -20px; overflow: = hidden; } .CodeMirror-ruler { border-left: 1px solid var(--black-250); top: 0px; bott= om: 0px; position: absolute; } .cm-s-default .cm-header { color: var(--blue-600); } .cm-s-default .cm-quote { color: var(--green-500); } .cm-negative { color: var(--red-400); } .cm-positive { color: var(--green-500); } .cm-header, .cm-strong { font-weight: bold; } .cm-em { font-style: italic; } .cm-link { text-decoration: underline; } .cm-strikethrough { text-decoration: line-through; } .cm-s-default .cm-keyword { color: var(--blue-500); } .cm-s-default .cm-atom { color: var(--blue-600); } .cm-s-default .cm-number { color: var(--green-500); } .cm-s-default .cm-def { color: var(--blue-500); } .cm-s-default .cm-variable-2 { color: var(--blue-600); } .cm-s-default .cm-variable-3 { color: var(--green-500); } .cm-s-default .cm-comment { color: var(--orange-600); } .cm-s-default .cm-string { color: var(--red-500); } .cm-s-default .cm-string-2 { color: var(--orange-400); } .cm-s-default .cm-meta { color: var(--black-500); } .cm-s-default .cm-qualifier { color: var(--black-500); } .cm-s-default .cm-builtin { color: var(--blue-500); } .cm-s-default .cm-bracket { color: var(--black-350); } .cm-s-default .cm-tag { color: var(--green-500); } .cm-s-default .cm-attribute { color: var(--blue-600); } .cm-s-default .cm-hr { color: var(--black-350); } .cm-s-default .cm-link { color: var(--blue-600); } .cm-s-default .cm-error { color: var(--red-400); } .cm-invalidchar { color: var(--red-400); } .CodeMirror-composing { border-bottom: 2px solid; } div.CodeMirror span.CodeMirror-matchingbracket { color: rgb(0, 255, 0); } div.CodeMirror span.CodeMirror-nonmatchingbracket { color: var(--red-400); = } .CodeMirror-matchingtag { background: rgba(255, 150, 0, 0.3); } .CodeMirror-activeline-background { background: var(--blue-300); } .CodeMirror { position: relative; overflow: hidden; background: var(--white= ); } .CodeMirror-scroll { margin-bottom: -30px; margin-right: -30px; padding-bot= tom: 30px; height: 100%; outline: none; position: relative; overflow: scrol= l !important; } .CodeMirror-sizer { position: relative; border-right: 30px solid transparen= t; } .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-fille= r, .CodeMirror-gutter-filler { position: absolute; z-index: 6; display: non= e; } .CodeMirror-vscrollbar { right: 0px; top: 0px; overflow: hidden scroll; } .CodeMirror-hscrollbar { bottom: 0px; left: 0px; overflow: scroll hidden; } .CodeMirror-scrollbar-filler { right: 0px; bottom: 0px; } .CodeMirror-gutter-filler { left: 0px; bottom: 0px; } .CodeMirror-gutters { position: absolute; left: 0px; top: 0px; min-height: = 100%; z-index: 3; padding-bottom: 30px; } .CodeMirror-gutter { white-space: normal; height: 100%; display: inline-blo= ck; vertical-align: top; margin-bottom: -30px; } .CodeMirror-gutter-wrapper { position: absolute; z-index: 4; background: no= ne !important; border: none !important; } .CodeMirror-gutter-background { position: absolute; top: 0px; bottom: 0px; = z-index: 4; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-gutter-wrapper { user-select: none; } .CodeMirror-lines { cursor: text; min-height: 1px; } .CodeMirror pre { border-radius: 0px; border-width: 0px; background: transp= arent; font-family: inherit; font-size: inherit; margin: 0px; white-space: = pre; overflow-wrap: normal; line-height: inherit; color: inherit; z-index: = 2; position: relative; overflow: visible; -webkit-tap-highlight-color: tran= sparent; font-variant-ligatures: none; } .CodeMirror-wrap pre { overflow-wrap: break-word; white-space: pre-wrap; wo= rd-break: normal; } .CodeMirror-linebackground { position: absolute; inset: 0px; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; } .CodeMirror-code { outline: none; } .CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutt= ers, .CodeMirror-linenumber { box-sizing: content-box; } .CodeMirror-measure { position: absolute; width: 100%; height: 0px; overflo= w: hidden; visibility: hidden; } .CodeMirror-cursor { position: absolute; pointer-events: none; } .CodeMirror-measure pre { position: static; } div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3= ; } div.CodeMirror-dragcursors { visibility: visible; } .CodeMirror-focused div.CodeMirror-cursors { visibility: visible; } .CodeMirror-selected { background: var(--black-225); } .CodeMirror-focused .CodeMirror-selected { background: rgb(215, 212, 240); = } .CodeMirror-crosshair { cursor: crosshair; } .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirro= r-line > span > span::selection { background: var(--blue-300); } .cm-searching { background: rgba(255, 255, 0, 0.4); } .cm-force-border { padding-right: 0.1px; } @media print { .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } .cm-tab-wrap-hack::after { content: ""; } span.CodeMirror-selectedtext { background: none; } .post-layout { display: grid; grid-template-columns: max-content 1fr; } .post-layout--left { grid-column: 1; width: auto; } .post-layout--left, .post-layout--left.votecell { width: auto; padding-righ= t: var(--su16); } .post-layout--right { padding-right: var(--su16); grid-column: 2; width: au= to; min-width: 0px; } .post-layout--right .s-prose, .post-layout--right .comments { width: 100%; = } .post-layout--full { grid-column: 1 / 3; } .wmd-container { width: 100%; box-sizing: border-box; } .wmd-button-bar { clear: both; background-color: transparent; margin: 10px = 0px 0px; padding: 0px; width: 100%; border-top-color: ; border-top-style: ;= border-top-width: ; border-right-color: ; border-right-style: ; border-rig= ht-width: ; border-left-color: ; border-left-style: ; border-left-width: ; = border-image-source: ; border-image-slice: ; border-image-width: ; border-i= mage-outset: ; border-image-repeat: ; border-bottom: 0px; min-height: 44px;= overflow: hidden; z-index: 2; position: relative; } textarea.wmd-input, textarea#wmd-input { padding: 10px; margin: -1px 0px 0p= x; height: 200px; line-height: 1.3; width: 100%; font-family: var(--ff-mono= ); font-size: var(--fs-body2); tab-size: 4; } .wmd-button-row { padding: 0 var(--su4) 0 var(--su8); margin: 0px; display:= flex; list-style: none; flex-wrap: wrap; justify-content: flex-end; height= : 44px; border-bottom: 1px solid var(--bc-darker); } .wmd-spacer { height: 44px; flex: 1 0 4px; max-width: 27px; display: flex; = flex-wrap: wrap; overflow: hidden; position: relative; left: 4px; } .wmd-spacer::before, .wmd-spacer::after { flex: 0 0 auto; justify-content: = center; content: ""; position: relative; top: -44px; background: var(--gree= n-500); } .wmd-spacer::before { width: 9px; height: 44px; } .wmd-spacer::after { background: var(--black-300); width: 1px; height: 43px= ; margin-top: 1px; } .wmd-spacer-max { max-width: none; } .wmd-button { max-width: 28px; height: 44px; flex: 10 0 23px; padding: 12px= 0px 0px; text-align: center; cursor: pointer; } .wmd-button > span { background-repeat: no-repeat; background-position: 0px= 0px; width: 20px; height: 20px; display: inline-block; } .wmd-prompt-background { background-color: var(--black); z-index: var(--zi-= modals-background); } .wmd-prompt-dialog { padding: 15px; box-shadow: var(--bs-sm); background-co= lor: var(--white); border: solid 1px var(--black-350); } .wmd-button > span { background-image: url("../../Img/unified/wmd-buttons.s= vg?v=3Dc26278fc22d9"); background-size: initial !important; } @media (prefers-color-scheme: dark) { body.theme-system .wmd-button > span { background-image: url("../../Img/u= nified/wmd-buttons-dark.svg?v=3D41498242bcce"); } } body.theme-dark .wmd-button > span, .theme-dark__forced .wmd-button > span,= body.theme-system .theme-dark__forced .wmd-button > span { background-imag= e: url("../../Img/unified/wmd-buttons-dark.svg?v=3D41498242bcce"); } .wmd-snippet-button span { background-position: -260px 0px !important; } .wmd-snippet-button span:hover { background-position: -260px -40px !importa= nt; } .wmd-schematic-button span { background-position: -320px 0px !important; } .wmd-schematic-button span:hover { background-position: -320px -40px !impor= tant; } .wmd-virtual-keyboard-button span { background-position: -280px 0px !import= ant; } .wmd-virtual-keyboard-button span:hover, .wmd-virtual-keyboard-button span.= enabled { background-position: -280px -40px !important; } .wmd-mockup-button span { background-position: -300px 0px !important; } .wmd-mockup-button span:hover { background-position: -300px -40px !importan= t; } .wmd-cite-button span { background-position: -340px 0px !important; } .wmd-cite-button span:hover { background-position: -340px -40px !important;= } .wmd-inline-dialog { border-right-color: ; border-right-style: ; border-rig= ht-width: ; border-bottom-color: ; border-bottom-style: ; border-bottom-wid= th: ; border-left-color: ; border-left-style: ; border-left-width: ; border= -image-source: ; border-image-slice: ; border-image-width: ; border-image-o= utset: ; border-image-repeat: ; border-top: none; position: absolute; width= : 100%; z-index: 1; padding: var(--su16); background-color: var(--white); b= ox-shadow: var(--bs-sm); } .wmd-button__active { border-left: 1px solid var(--bc-darker); border-right= : 1px solid var(--bc-darker); border-bottom: 1px solid var(--white); backgr= ound-color: var(--white); } .wmd-button__active > span { background-position-y: -40px !important; } .wmd-button-bar.has-active-button .wmd-button:not(.wmd-button__active) { cu= rsor: not-allowed; pointer-events: none; opacity: 0.3; } .wmd-help-button.active-help { background-color: var(--black-150); } .mdhelp { background-color: var(--black-150); color: var(--fc-black-600); b= order-right: 1px solid var(--bc-darker); border-left: 1px solid var(--bc-da= rker); } .mdhelp-tabs { background-color: var(--black-150); list-style-type: none; m= argin: 0px; padding: 3px 0px 0px 3px; overflow: hidden; } .mdhelp-tabs li { display: inline-block; padding: 3px 6px 6px; margin: 0px = 2px; cursor: pointer; } .mdhelp-tabs li.selected { background-color: var(--yellow-200); } .mdhelp-tab { padding: 10px; display: none; line-height: 1.2; } .mdhelp-tab pre { background-color: var(--yellow-300); border: none !import= ant; } .mdhelp-tab--content { display: flex; flex-wrap: wrap; justify-content: spa= ce-between; margin-left: -2%; } .mdhelp-tab--content .col1, .mdhelp-tab--content .col2 { min-width: 150px; = flex-grow: 1; } .mdhelp-tab--content > :not(ol) { margin-left: 2%; } .mdhelp-tab--content > p, .mdhelp-tab--content > pre { width: 100%; } .grippie { background-position: calc(50% + 34px) -364px; border-top-color: = ; border-top-style: ; border-right-color: ; border-right-style: ; border-bo= ttom-color: ; border-bottom-style: ; border-left-color: ; border-left-style= : ; border-image-source: ; border-image-slice: ; border-image-width: ; bord= er-image-outset: ; border-image-repeat: ; border-width: 0px 1px 1px; cursor= : s-resize; height: 11px; overflow: hidden; background-color: var(--black-1= 50); } .wmd-button-bar.btr-sm ~ .grippie { border-bottom-left-radius: var(--br-sm)= ; border-bottom-right-radius: var(--br-sm); } .user-page .grippie { margin-bottom: 3px; } .grippie { margin-top: -4px; } .wmd-preview.s-prose { clear: both; width: 100%; } @media (hover: none), (pointer: coarse) { .vk\:d-inline-flex { display: inline-flex !important; } } .s-editor-shadow { transform-style: preserve-3d; } .s-editor-shadow::after { background: radial-gradient(50% 50% at 50% 45%, r= gba(0, 0, 0, 0.8) -200%, transparent 115%); content: ""; height: 62px; left= : 0px; opacity: 0; pointer-events: none; position: absolute; right: 0px; to= p: -112px; transform: translateZ(-1px); transition: top 1s, opacity 1.5s; } @media not all and (min-resolution: 0.001dpcm) { @supports (-webkit-appearance:none) and (stroke-color:transparent) { .s-editor-shadow::after { transition: none; } } } .s-editor-shadow.is-stuck::after { opacity: 1; top: 0px; transition: top 0.= 2s, opacity 0.1s; } .s-btn.s-editor-btn { border-radius: var(--br-sm); color: var(--black-500);= padding: var(--su2); } .s-btn.s-editor-btn:hover { color: var(--black-600) !important; } .s-btn.s-editor-btn:not(.s-btn__link):not(.s-btn__unset):focus-visible { bo= rder-color: transparent !important; box-shadow: 0 0 0 var(--su-static2) var= (--theme-secondary-400) !important; color: var(--black-500) !important; out= line: var(--su-static2) solid transparent !important; } .s-btn.s-editor-btn:not(.s-btn__link):not(.s-btn__unset):not(.is-selected):= not(:hover):focus-visible { background-color: transparent !important; } .s-btn.s-editor-btn.is-selected, .s-btn.s-editor-btn:active { background-co= lor: var(--theme-secondary-200) !important; color: var(--theme-secondary-60= 0) !important; } .s-btn.s-editor-btn.is-selected:hover { color: var(--theme-secondary-500) != important; } .s-btn.s-editor-btn.s-btn__dropdown { padding-right: var(--su12); } .s-btn.s-editor-btn.s-btn__dropdown::after { right: var(--su2); } .s-editor--dropdown-item { padding: var(--su4) var(--su12); } .s-editor--dropdown-item:hover { background-color: var(--black-150); } .s-editor--dropdown-item.is-selected { background-color: var(--theme-second= ary-200); color: var(--theme-secondary-600); font-weight: 400; } .s-editor--dropdown-item[disabled] { opacity: 0.5; } .s-editor-resizable { max-height: calc(var(--s-step) * 6); resize: vertical= ; } .s-editor-resizable[style*=3D"height"] { max-height: none; } .ProseMirror { min-height: inherit; overflow-wrap: break-word; font-variant= -ligatures: none; white-space: break-spaces; } .ProseMirror [data-placeholder] { position: relative; } .ProseMirror .s-code-block.markdown[data-placeholder] { overflow: visible; = } .ProseMirror [data-placeholder]::before { color: var(--fc-light); content: = attr(data-placeholder); pointer-events: none; position: absolute; } [readonly] :is(.ProseMirror [data-placeholder])::before { color: inherit; } .ProseMirror .ProseMirror-hideselection ::selection { background: transpare= nt; } .ProseMirror .ProseMirror-hideselection { caret-color: transparent; } .ProseMirror .ProseMirror-selectednode { box-shadow: 0 0 0 4px var(--focus-= ring); } .ProseMirror .ProseMirror-widget { overflow-wrap: normal; white-space: norm= al; } .ProseMirror .ProseMirror-widget .ProseMirror-contentdom { overflow-wrap: b= reak-word; white-space: break-spaces; } .ProseMirror img { max-width: 100%; } .ProseMirror.s-markdown-preview img { pointer-events: none; } .ProseMirror.s-prose .spoiler * { visibility: visible; } .ProseMirror.s-prose div { margin-bottom: var(--s-prose-spacing); } .ProseMirror.s-prose div:last-child, .ProseMirror.s-prose div:only-child { = margin-bottom: 0px; } .ProseMirror.s-prose ol div, .ProseMirror.s-prose ul div { margin-bottom: v= ar(--s-prose-spacing-condensed); } .ProseMirror code, .ProseMirror pre { overflow-wrap: break-word; white-spac= e: pre-wrap; } .ProseMirror > code, .ProseMirror > pre { background-color: inherit; border= -radius: 0px; margin: 0px; max-height: unset; padding: 0px; width: auto; } .ProseMirror[contenteditable=3D"true"] p > a[href] { cursor: inherit; } .ProseMirror[contenteditable=3D"false"]:not(.s-markdown-preview) code, .Pro= seMirror[contenteditable=3D"false"]:not(.s-markdown-preview) pre { opacity:= 0.8; } .ProseMirror[contenteditable=3D"false"]:not(.s-markdown-preview) .ProseMirr= or-widget, .ProseMirror[contenteditable=3D"false"]:not(.s-markdown-preview)= .ProseMirror-widget * { background-color: inherit; } .svg-icon-bg { border: none; display: inline-block; height: 18px; padding: = 0px; vertical-align: bottom; width: 18px; } .svg-icon-bg::after { background-color: currentcolor; content: ""; display:= inline-block; height: 100%; mask-image: ; -webkit-mask-position-x: ; -webk= it-mask-position-y: ; mask-repeat: ; mask-origin: ; mask-clip: ; mask-compo= site: ; mask-mode: ; mask-size: contain; width: 100%; } @media (forced-colors: active) { .svg-icon-bg::after { background-color: canvastext; } } .svg-icon-bg.native::after { background-color: unset; background-image: var= (--bg-icon); background-position: 50% center; background-repeat: no-repeat;= background-size: contain; mask: none; } .svg-icon-bg.iconAchievements { --bg-icon: url("data:image/svg+xml;charset= =3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D= '18' fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M15 2V1H3v1H0v4c0 1.6 1.4= 3 3 3v1c.4 1.5 3 2.6 5 3v2H5s-1 1.5-1 2h10c0-.4-1-2-1-2h-3v-2c2-.4 4.6-1.5= 5-3V9c1.6-.2 3-1.4 3-3V2zM3 7c-.5 0-1-.5-1-1V4h1zm8.4 2.5L9 8 6.6 9.4l1-2.= 7L5 5h3l1-2.7L10 5h2.8l-2.3 1.8 1 2.7zM16 6c0 .5-.5 1-1 1V4h1z'/%3E%3C/svg%= 3E"); } .svg-icon-bg.iconBold { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M13 6c0-1.5-1.57-3-3.5-3H4v12h6.25= c1.79 0 3.25-1.71 3.25-3.5 0-1.3-.9-2.48-2-3 .83-.58 1.5-1 1.5-2.5M6.5 5H9a= 1.5 1.5 0 0 1 0 3H6.5zm3 8h-3v-3h3a1.5 1.5 0 1 1 0 3'/%3E%3C/svg%3E"); } .svg-icon-bg.iconClap { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cg fill=3D'%23000' opacity=3D'.4'%3E%3Cpath d=3D'M12.5 3a.5.5= 0 0 1-.5-.5v-2a.5.5 0 0 1 1 0v2a.5.5 0 0 1-.5.5M14 4.5a.5.5 0 0 1 .5-.5h2a= .5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5M13.646 2.646a.5.5 0 0 0 .708.708l1.5-1.5= a.5.5 0 0 0-.708-.708z'/%3E%3C/g%3E%3Cpath fill=3D'%23FFC166' d=3D'M2.578 8= .687c.335.452.727.8 1.152 1.064l2.072-3.748c.173-.29.393-.558.679-.743.44-.= 283.986-.262 1.408-.015l.01-.003c.326-.043 1.608-.064 2.732-.082a51 51 0 0 = 0 1.771-.043c.489-.039.678-.297.653-.75s-.441-.648-.898-.603l-6.762.365c-.0= 6.013-.112-.065-.074-.114l1.03-1.35c.29-.4.162-.972-.215-1.269-.402-.315-.9= 58-.258-1.246.136a53 53 0 0 0-1.7 2.226c-1.078 1.472-1.83 3.288-.612 4.93M1= 2.68 9.102q-.375-.007-.75-.007c.112-.224.179-.466.168-.726a1.2 1.2 0 0 0-.1= 5-.533l.732.016c.413.028.68.349.68.593 0 .245-.232.665-.68.657'/%3E%3Cpath = fill=3D'%23FFC166' d=3D'm10.896 7.153 2.606-.023a.66.66 0 0 0 .591-.768c-.0= 69-.417-.459-.643-.863-.643l-2.661.045c.352.366.477.9.327 1.389M5.52 17.003= c-2.043 0-3.153-1.78-3.694-3.524a53 53 0 0 1-.776-2.69c-.145-.467.14-.948.6= 33-1.082.462-.127.998.11 1.146.582l.472 1.632c.017.06.111.064.136.008l3.016= -5.554c.236-.394.598-.72.969-.531.396.202.472.534.25 1.015-.083.18-.337.66-= .633 1.22-.51.961-1.144 2.161-1.258 2.491-.013.04-.03.214.078.29.11.074.28-= .058.297-.086l2.719-4.141c.2-.341.627-.66.974-.482a.66.66 0 0 1 .264.932l-2= .742 4.116c-.018.031-.137.317.05.434.188.117.4-.047.42-.072l2.35-3.256c.269= -.315.513-.516.895-.32.345.175.336.605.062.96a65 65 0 0 0-1.16 1.643 51 51 = 0 0 1-1.283 1.802c-.02.028-.123.235 0 .368s.28 0 .28 0l1.898-2.305c.228-.28= 4.48-.409.798-.247.283.145.217.586.086.81-.53.906-1.195 1.712-1.86 2.52-1.1= 52 1.4-2.356 3.467-4.386 3.467'/%3E%3C/svg%3E"); } .svg-icon-bg.iconCode { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M8 4.41 6.59 3l-6 6 6 6L8 13.59 3.= 41 9zM10 4.41 11.41 3l6 6-6 6L10 13.59 14.59 9z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconCodeblock { --bg-icon: url("data:image/svg+xml;charset=3Du= tf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18'= fill=3D'none'%3E%3Cpath fill=3D'%23000' fill-rule=3D'evenodd' d=3D'M1 3a2 = 2 0 0 1 2-2h10l4 4v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm9.71 2L9.3 6.41 11.89 = 9 9.3 11.59 10.71 13l4-4zM8.714 6.41 7.303 5l-4 4 4 4 1.41-1.41L6.123 9z' c= lip-rule=3D'evenodd'/%3E%3C/svg%3E"); } .svg-icon-bg.iconCodeblockAlt { --bg-icon: url("data:image/svg+xml;charset= =3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D= '18' fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M9.257 6.41 10.493 5 14 9= l-3.507 4-1.236-1.41L11.527 9zM7.507 5l1.236 1.41L6.473 9l2.27 2.59L7.507 1= 3 4 9z'/%3E%3Cpath fill=3D'%23000' d=3D'M3 1h10l4 4v10a2 2 0 0 1-2 2H3a2 2 = 0 0 1-2-2V3a2 2 0 0 1 2-2m0 2v12h12V5.828L12.172 3z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconFaceMindBlown { --bg-icon: url("data:image/svg+xml;charset= =3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D= '18' fill=3D'none'%3E%3Cpath fill=3D'%23FFAA3B' fill-rule=3D'evenodd' d=3D'= M1.062 8Q1 8.492 1 9a8 8 0 1 0 15.938-1H16l-1 .5-1-.5h-1.5l-1.5.5L9 8l-.5.5= -1-.5H6l-1 .5-.5-.5h-1l-.5.5L2 8z' clip-rule=3D'evenodd' opacity=3D'.4'/%3E= %3Cpath fill=3D'%23FF9700' d=3D'M3.5 8h.414c1.726 4.055 5.714 6.916 10.38 6= .998A8 8 0 0 1 1.062 8H2l1 .5z' opacity=3D'.3'/%3E%3Cpath fill=3D'%231A1104= ' d=3D'M6.066 14.68a.7.7 0 0 0 .675.283c1.5-.163 3.012-.163 4.512 0a.71.71 = 0 0 0 .668-.288.7.7 0 0 0 .063-.716 3.23 3.23 0 0 0-1.266-1.218 3.3 3.3 0 0= 0-1.726-.385 3.3 3.3 0 0 0-1.726.385A3.23 3.23 0 0 0 6 13.96a.7.7 0 0 0 .0= 66.72'/%3E%3Cpath fill=3D'%23F75D37' fill-rule=3D'evenodd' d=3D'M7.359 4.36= 9c.176.23.41.419.681.554.299.149.635.226.976.225.342 0 .677-.08.975-.23.259= -.13.482-.31.654-.526C10.793 5.319 11 6.678 11 7c0 .5-4 .5-4 0 0-.325.21-1.= 704.359-2.631' clip-rule=3D'evenodd'/%3E%3Cpath fill=3D'%23FFC166' d=3D'M15= .332 2.431c-.455-.348-1.094-.542-1.736-.527-.054-.395-.277-.765-.635-1.051a= 2.66 2.66 0 0 0-1.274-.5 3 3 0 0 0-1.416.16C9.764.17 9.068.009 8.401.079a2.= 7 2.7 0 0 0-1.062.36A3 3 0 0 0 6.018.366C5.22.5 4.542.969 4.299 1.568a1.4 1= .4 0 0 0-.072.832c-.767.066-1.464.449-1.795.985-.61.99.26 2.4 1.607 2.6.957= .142 2.122-.148 2.623-.783.215-.273.331-.584.339-.902.212.26.506.475.856.62= 3S8.6 5.15 9 5.148c.4 0 .792-.08 1.14-.23.35-.15.643-.366.853-.627.034.428.= 264.832.648 1.142.385.31.9.506 1.453.552s1.11-.06 1.572-.299c.815-.422 1.42= -1.424 1.325-2.17-.052-.41-.284-.792-.658-1.085' opacity=3D'.67'/%3E%3Cpath= fill=3D'%23FFC166' fill-rule=3D'evenodd' d=3D'M7.395 2c1.193 0 2.31-.202 3= .268-.553.894 1.212 2.879 2.138 5.32 2.444-.097.678-.634 1.441-1.318 1.795a= 2.93 2.93 0 0 1-1.572.299c-.554-.046-1.068-.242-1.453-.552-.384-.31-.614-.7= 14-.648-1.142-.21.261-.503.477-.852.627s-.741.23-1.14.23c-.4.001-.793-.076-= 1.143-.225a2.2 2.2 0 0 1-.856-.623c-.008.318-.124.63-.34.902-.5.635-1.665.9= 25-2.622.783-1.348-.2-2.217-1.61-1.607-2.6.331-.536 1.028-.92 1.795-.985a1.= 4 1.4 0 0 1 .095-.885A9.6 9.6 0 0 0 7.395 2' clip-rule=3D'evenodd' opacity= =3D'.78'/%3E%3Cpath fill=3D'%23F75D37' fill-rule=3D'evenodd' d=3D'M11.089 3= .471A7.4 7.4 0 0 1 8.307 4a7.4 7.4 0 0 1-2.653-.478c-.997.268-2.163.436-3.4= 17.471-.062.88.714 1.83 1.802 1.992.957.142 2.122-.148 2.623-.783.215-.273.= 331-.584.339-.902.212.26.506.475.856.623S8.6 5.15 9 5.148c.4 0 .792-.08 1.1= 4-.23.35-.15.643-.366.853-.627.034.428.264.832.648 1.142.385.31.9.506 1.453= .552s1.11-.06 1.572-.299a2.6 2.6 0 0 0 .898-.802c-1.764-.216-3.318-.72-4.47= 5-1.413' clip-rule=3D'evenodd' opacity=3D'.52'/%3E%3Ccircle cx=3D'11' cy=3D= '10.5' r=3D'1.35' fill=3D'%231A1104'/%3E%3Ccircle cx=3D'7.003' cy=3D'10.502= ' r=3D'1.35' fill=3D'%231A1104'/%3E%3Ccircle cx=3D'3.5' cy=3D'6.5' r=3D'.5'= fill=3D'%23000' opacity=3D'.6'/%3E%3Ccircle cx=3D'14.5' cy=3D'.5' r=3D'.5'= fill=3D'%23000' opacity=3D'.6'/%3E%3Ccircle cx=3D'14.5' cy=3D'6.5' r=3D'.5= ' fill=3D'%23000' opacity=3D'.6'/%3E%3Ccircle cx=3D'16.5' cy=3D'4.5' r=3D'.= 5' fill=3D'%23000' opacity=3D'.6'/%3E%3Ccircle cx=3D'3.5' cy=3D'.5' r=3D'.5= ' fill=3D'%23000' opacity=3D'.6'/%3E%3Ccircle cx=3D'1.5' cy=3D'3.5' r=3D'.5= ' fill=3D'%23000' opacity=3D'.6'/%3E%3C/svg%3E"); } .svg-icon-bg.iconFaceSmile { --bg-icon: url("data:image/svg+xml;charset=3Du= tf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18'= fill=3D'none'%3E%3Ccircle cx=3D'9' cy=3D'9' r=3D'8' fill=3D'%23FFAA3B' opa= city=3D'.4'/%3E%3Cpath fill=3D'%23FF9700' d=3D'M8.41 17a10 10 0 0 1 .38-15.= 75q.15-.113.28-.25a8 8 0 0 0-5.73 13.66A7.93 7.93 0 0 0 8.41 17' opacity=3D= '.3'/%3E%3Cpath fill=3D'%231A1104' d=3D'M6.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 = 0 0 0 3M9.104 14c-1.979 0-3.854-1.132-4.791-2.057a1.11 1.11 0 0 1 0-1.543c.= 416-.515 1.145-.515 1.666-.103.313.308 3.23 2.88 6.146 0a1.057 1.057 0 0 1 = 1.563.103 1.11 1.11 0 0 1 0 1.543C12.125 13.383 10.562 14 9.104 14M13 6.5a1= .5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0'/%3E%3C/svg%3E"); } .svg-icon-bg.iconFire { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23FF6700' d=3D'M13.18 9.008c-.801.32-1.464.59-= 1.97 1.289-.558.774-1.043 2.344-1.21 3.593q.69-.349 1.32-.8a2.53 2.53 0 0 1= -.63 2.91h.78a3 3 0 0 0 1.657-.504c.491-.327 1.035-1.062 1.264-1.606.392-.9= 57.47-1.7.549-2.73a11.3 11.3 0 0 0-.46-3.68 2 2 0 0 1-.404.915c-.21.266-.50= 6.457-.896.613' opacity=3D'.6'/%3E%3Cpath fill=3D'%23EF2E2E' d=3D'M10.395 1= 2.11c.268-.772.424-1.221.78-1.762.308-.467.817-.805 1.372-1.079C12.547 9.27= 12.5 6 11 4S7.63 1.252 6.05 1.39c0 0 4.19 2.943 1.18 5.674C5.086 8.977 3.5= 94 10.875 4.125 13s2.511 2.943 3.105 3a4.05 4.05 0 0 1 1.08-3.89C9.42 10.92= 8 9.79 8 9.79a2.88 2.88 0 0 1 1.81.72 2 2 0 0 1 .472.73c.102.274.137.578.1= 13.87'/%3E%3C/svg%3E"); } .svg-icon-bg.iconHeader { --bg-icon: url("data:image/svg+xml;charset=3Dutf-= 8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fi= ll=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M13.62 10.08 12.1 4.66h-.06l-1.5= 5.42zM5.7 11.13 4.53 7.02h-.08l-1.13 4.11zM17.31 15h-2.25l-.95-3.25h-4.07L= 9.09 15H6.84l-.69-2.33H2.87L2.17 15H0l3.3-9.59h2.5l2.17 6.34L10.86 3h2.52l3= .94 12z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconHeart { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8= ,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fil= l=3D'none'%3E%3Cpath fill=3D'%23F75D37' fill-rule=3D'evenodd' d=3D'M5.25 2c= -1.5 0-2.35.5-3.15 1.36C.5 5 .5 8.2 2.1 10l6 5.871c.2.2.6.2.8 0l6-5.871c1.6= -1.8 1.6-5 0-6.64C14.1 2.5 13.25 2 11.75 2 10.204 2 9 3 8.5 3.898 8 3 6.5 2= 5.25 2m8.604 4.854-2 2a.5.5 0 0 1-.708-.708l2-2a.5.5 0 0 1 .708.708' clip-= rule=3D'evenodd'/%3E%3C/svg%3E"); } .svg-icon-bg.iconHelp { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M9 1C4.643 1 1 4.643 1 9s3.643 8 8= 8 8-3.643 8-8-3.643-8-8-8m.81 12.13c-.02.71-.55 1.15-1.24 1.13-.66-.02-1.1= 7-.49-1.15-1.2.02-.72.56-1.18 1.22-1.16.7.03 1.2.51 1.17 1.23M11.77 8c-.586= .663-1.778 1.085-2.05 1.97a4 4 0 0 0-.09.75c0 .05-.03.16-.18.16H7.88c-.16 0= -.18-.1-.18-.15.062-1.353.66-2.199 1.83-2.88.387-.29.693-.747.698-1.241.015= -1.24-1.636-1.819-2.348-.719-.21.33-.18.73-.18 1.1H5.75c0-1.97 1.027-3.26 3= .03-3.26 1.755 0 3.47.874 3.47 2.83 0 .57-.2 1.05-.48 1.44'/%3E%3C/svg%3E")= ; } .svg-icon-bg.iconHorizontalRule { --bg-icon: url("data:image/svg+xml;charse= t=3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height= =3D'18' fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M2 8h14v2H2z'/%3E%3Cpa= th fill=3D'%23000' d=3D'M2 2h14v1H2zm0 3h14v1H2zm0 7h14v1H2zm0 3h14v1H2z' o= pacity=3D'.4'/%3E%3C/svg%3E"); } .svg-icon-bg.iconImage { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8= ,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fil= l=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M1 3c0-1.1.9-2 2-2h12c1.09 0 2 .9= 1 2 2v12c0 1.09-.91 2-2 2H3c-1.09 0-2-.91-2-2zm4.5 7.5L2 15h14l-4.5-6L8 13.= 51zm0-4.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3'/%3E%3C/svg%3E"); } .svg-icon-bg.iconItalic { --bg-icon: url("data:image/svg+xml;charset=3Dutf-= 8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fi= ll=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M7 3v2h2.58l-3.66 8H3v2h8v-2H8.4= 2l3.66-8H15V3z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconLink { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M7.223 11.831c.489.36 1.032.646 1.= 614.845l.616-1.798a4.1 4.1 0 1 1 4.04-.803l1.256 1.426a6 6 0 0 0 1.41-7.161= 6 6 0 1 0-8.936 7.491'/%3E%3Cpath fill=3D'%23000' d=3D'M10.646 6.235A6 6 0= 0 0 9.05 5.36l-.65 1.786a4.1 4.1 0 1 1-4.053.729l-1.23-1.449a6 6 0 1 0 7.5= 3-.192'/%3E%3C/svg%3E"); } .svg-icon-bg.iconMarkdown { --bg-icon: url("data:image/svg+xml;charset=3Dut= f-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'21' height=3D'18' = fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M21 14a2 2 0 0 1-2 2H2.001a2 2= 0 0 1-2-2V4a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2zM4.308 13V8.345L6.5 11.23l2.192= -2.885V13H11V5H8.692L6.5 7.885 4.308 5H2v8zM19.5 9H17V5h-1.995v4H12.5l3.5 4= .5z'/%3E%3C/svg%3E"); width: 21px; } .svg-icon-bg.iconOrderedList { --bg-icon: url("data:image/svg+xml;charset= =3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D= '18' fill=3D'none'%3E%3Cpath fill=3D'%23000' fill-rule=3D'evenodd' d=3D'M3 = 6h1V2H2v1h1zm.8 2H2V7h3v.9L3.2 10H5v1H2v-.9zM2 13v-1h3v4H2v-1h2v-.5H3v-1h1V= 13zm5-8V3h9v2zm0 10h9v-2H7zm9-5H7V8h9z' clip-rule=3D'evenodd'/%3E%3C/svg%3E= "); } .svg-icon-bg.iconPencilSm { --bg-icon: url("data:image/svg+xml;charset=3Dut= f-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'14' height=3D'14' = fill=3D'none'%3E%3Cpath fill=3D'%23F1B600' d=3D'm2 10.12 6.37-6.426 1.877 1= .876L3.88 12H2z'/%3E%3Cpath fill=3D'%23E87C87' d=3D'm11.094 1.71 1.14 1.12c= .2.2.2.51 0 .71L11.09 4.704l-1.88-1.84 1.174-1.153c.2-.2.51-.2.71 0'/%3E%3C= /svg%3E"); height: 14px; width: 14px; } .svg-icon-bg.iconPlay { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'17' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M3 2.869a1 1 0 0 1 1.555-.833l9.19= 7 6.132a1 1 0 0 1 0 1.664l-9.197 6.131A1 1 0 0 1 3 15.133z'/%3E%3C/svg%3E")= ; } .svg-icon-bg.iconQuote { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8= ,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'17' height=3D'18' fil= l=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M0 4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 = 2v9l-1.75 3H4l1.75-3H2a2 2 0 0 1-2-2zM9 4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v9l-= 1.75 3H13l1.75-3H11a2 2 0 0 1-2-2z'/%3E%3C/svg%3E"); width: 17px; } .svg-icon-bg.iconRefresh { --bg-icon: url("data:image/svg+xml;charset=3Dutf= -8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' f= ill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M14.649 3.35A7.97 7.97 0 0 0 8.= 995 1 7.99 7.99 0 0 0 1 9c0 4.42 3.572 8 7.995 8 3.732 0 6.844-2.55 7.735-6= h-2.081c-.821 2.33-3.042 4-5.654 4a6.007 6.007 0 0 1-6.004-6c0-3.31 2.692-6= 6.004-6 1.661 0 3.142.69 4.223 1.78L9.996 8H17V1z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconShare { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8= ,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fil= l=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M2.994 1H8v2H3v12h12v-5h2v5.006A1= .995 1.995 0 0 1 15.006 17H2.994A1.995 1.995 0 0 1 1 15.006V2.994C1 1.893 1= .895 1 2.994 1'/%3E%3Cpath fill=3D'%23000' d=3D'M17 1h-7v2h3.5L6 10.5 7.5 1= 2 15 4.5V8h2z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconSmileyAdd { --bg-icon: url("data:image/svg+xml;charset=3Du= tf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18'= fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M13 0h2v3h3v2h-3v3h-2V5h-3V3h= 3z'/%3E%3Cpath fill=3D'%23000' d=3D'M6.44 2.154A8 8 0 0 1 8 2v2a6 6 0 1 0 6= 6h2a8 8 0 1 1-9.56-7.846'/%3E%3Cpath fill=3D'%23000' d=3D'M8.1 14.22a5.5 5= .5 0 0 1-3.72-1.6.88.88 0 0 1 1.24-1.24 3.24 3.24 0 0 0 4.76 0 .88.88 0 0 1= 1.24 1.24 4.9 4.9 0 0 1-3.52 1.6M7.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 = 0 1 2.5 0M10 9.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5'/%3E%3C/svg%3= E"); } .svg-icon-bg.iconStrikethrough { --bg-icon: url("data:image/svg+xml;charset= =3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D= '18' fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M11.957 6.2a2.8 2.8 0 0 0= -.435-.319 4.3 4.3 0 0 0-.754-.385 5.6 5.6 0 0 0-.955-.335 4.2 4.2 0 0 0-1.= 055-.134q-.956 0-1.424.352-.47.351-.47.988 0 .369.168.62l.01.013H4.494a4 4 = 0 0 1-.008-.264q0-.905.335-1.608t.921-1.173a4.2 4.2 0 0 1 1.39-.704A5.5 5.5= 0 0 1 8.826 3q1.256 0 2.311.402a8.4 8.4 0 0 1 1.843.921zM3 8v2h5.02q.606.1= 73 1.106.32.57.168.972.37.402.2.62.468t.217.654q0 1.223-1.91 1.223-.686 0-1= .34-.168a8 8 0 0 1-1.189-.402 12 12 0 0 1-.938-.486 3.6 3.6 0 0 1-.536-.402= L4 13.57a8.2 8.2 0 0 0 2.345 1.14 9 9 0 0 0 2.647.402q.87 0 1.659-.185a4.3 = 4.3 0 0 0 1.407-.62q.62-.419.971-1.088.369-.687.369-1.642 0-.82-.268-1.374a= 3 3 0 0 0-.106-.203H15V8z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconTable { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8= ,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fil= l=3D'none'%3E%3Cpath fill=3D'%23000' fill-rule=3D'evenodd' d=3D'M1 3a2 2 0 = 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm7 4V3H3v4zm0 4V9= H3v2zm7-2h-5v2h5zm0 6v-2h-5v2zm-7-2H3v2h5zm7-10h-5v4h5z' clip-rule=3D'eveno= dd'/%3E%3C/svg%3E"); } .svg-icon-bg.iconTada { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23FF9700' d=3D'M10.385 7.48C7.477 4.571 4.987 = 3.746 4.867 4.105L1.073 15.547c-.142.396-.032.863.272 1.154.303.291.775.381= 1.164.223l11.419-3.316c.311-.144-.635-3.22-3.543-6.128' opacity=3D'.4'/%3E= %3Cg fill=3D'%23FF9700' opacity=3D'.6'%3E%3Cpath d=3D'M6.806 11.07a18 18 0 = 0 1-2.935-3.957l.996-3.008a11.47 11.47 0 0 0 3.387 5.314c1.657 1.702 3.48 3= .109 5.582 4.214l-2.856.828a31 31 0 0 1-4.174-3.39M3.599 14.207a4.26 4.26 0= 0 1-1.329-2.25l.91-2.741c.5 1.271 1.25 2.43 2.202 3.41.952.948 1.99 1.806 = 3.1 2.562l-2.572.746A9 9 0 0 1 3.6 14.207'/%3E%3C/g%3E%3Cpath fill=3D'%23F7= 5D37' fill-rule=3D'evenodd' d=3D'M15.854 2.146a.5.5 0 0 1 0 .708l-4 4a.5.5 = 0 0 1-.708-.708l4-4a.5.5 0 0 1 .708 0' clip-rule=3D'evenodd'/%3E%3Cpath fil= l=3D'%2307C' d=3D'M10 1.5a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0zM13.5 8a.5.5 0 0 = 0 0 1h3a.5.5 0 0 0 0-1z'/%3E%3Cg fill=3D'%2307C' opacity=3D'.6'%3E%3Cpath d= =3D'M7.5 3a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M12.5 3a.5.5 0 1 0 0-1 .5.5 0 0 0 0= 1M16 5.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M15.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0= 1'/%3E%3C/g%3E%3C/svg%3E"); } .svg-icon-bg.iconTrashSm { --bg-icon: url("data:image/svg+xml;charset=3Dutf= -8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'14' height=3D'14' f= ill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M11 2a1 1 0 0 1 1 1v1H2V3a1 1 0= 0 1 1-1h2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1zM11 5H3v6a2 2 0 0 0 2 2h4a2 2 0 0 = 0 2-2z'/%3E%3C/svg%3E"); height: 14px; width: 14px; } .svg-icon-bg.iconUndo { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M3.351 3.35A7.992 7.992 0 0 1 17 9= c0 4.42-3.572 8-7.995 8-3.732 0-6.844-2.55-7.735-6h2.081c.821 2.33 3.042 4 = 5.654 4a6.007 6.007 0 0 0 6.004-6c0-3.31-2.692-6-6.004-6-1.661 0-3.142.69-4= .223 1.78L8.004 8H1V1z'/%3E%3C/svg%3E"); } .svg-icon-bg.iconUnorderedList { --bg-icon: url("data:image/svg+xml;charset= =3Dutf-8,%3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'17' height=3D= '18' fill=3D'none'%3E%3Cpath fill=3D'%23000' d=3D'M4.25 4a1.25 1.25 0 1 1-2= .5 0 1.25 1.25 0 0 1 2.5 0M15 5H6V3h9zM15 15H6v-2h9zM6 10h9V8H6zM4.25 14a1.= 25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M3 10.25a1.25 1.25 0 1 0 0-2.5 1.2= 5 1.25 0 0 0 0 2.5'/%3E%3C/svg%3E"); } .svg-icon-bg.iconWave { --bg-icon: url("data:image/svg+xml;charset=3Dutf-8,= %3Csvg xmlns=3D'http://www.w3.org/2000/svg' width=3D'18' height=3D'18' fill= =3D'none'%3E%3Cpath fill=3D'%23FFC166' fill-rule=3D'evenodd' d=3D'M10.696 1= 6.995c-2.293 0-3.896-2.041-5.067-3.532a23 23 0 0 0-.486-.608c-.67-.794-1.59= -1.62-2.405-2.351-.733-.657-1.425-1.278-1.633-1.633-.167-.285-.159-.792.176= -.962.443-.226.946-.053 1.317.237L6.113 10.9c.105.083.199-.056.13-.147-.568= -.793-3.42-4.768-3.715-5.15-.486-.63-.17-1.452.681-1.452.437 0 .764.276.964= .51l3.604 4.425c.071.083.227 0 .166-.103l-3.528-6.02C3.774 1.87 5.536.956 6= .179 2.054l3.806 6.137c.062.1.216.025.178-.088-.252-.73-1.762-4.885-2.076-5= .566-.31-.672-.192-1.137.362-1.42.518-.264 1.144-.071 1.473.48l3.687 8.305c= .016.036.051.048.1.058a.1.1 0 0 0 .09-.07l.66-2.28c.206-.66.956-.991 1.602-= .814.69.188 1.088.86.885 1.512a75 75 0 0 1-1.085 3.76c-.577 1.86-1.032 3.33= -3.11 4.393-.695.354-1.386.534-2.055.534' clip-rule=3D'evenodd'/%3E%3Cg fil= l=3D'%23000' opacity=3D'.4'%3E%3Cpath d=3D'M14.009.369a.5.5 0 0 0-.893.45l1= .969 3.906a.5.5 0 0 0 .893-.45zM12.831 2.545a.5.5 0 0 0-.912.41l.844 1.875a= .5.5 0 1 0 .912-.41zM2.23 12.282a.5.5 0 0 1 .707-.02l1.688 1.593a.5.5 0 0 1= -.687.727L2.25 12.988a.5.5 0 0 1-.02-.706M.842 13.26a.5.5 0 1 0-.684.73l3.0= 31 2.843a.5.5 0 0 0 .684-.729z'/%3E%3C/g%3E%3C/svg%3E"); } .svg-icon-bg.iconRichText { width: 21px; --bg-icon: url("data:image/svg+xml= ,%3csvg width=3D'21' height=3D'18' viewBox=3D'0 0 21 18' fill=3D'none' xmln= s=3D'http://www.w3.org/2000/svg'%3e %3cpath fill-rule=3D'evenodd' clip-rule= =3D'evenodd' d=3D'M2 2C0.895431 2 0 2.89543 0 4V14C0 15.1046 0.89543 16 2 1= 6H19C20.1046 16 21 15.1046 21 14V4C21 2.89543 20.1046 2 19 2H2ZM8 4H2V6H8V4= ZM2 8H19V10H2V8ZM19 12H2V14H19V12Z' fill=3D'%230C0D0E'/%3e %3c/svg%3e"); } .svg-icon-bg.iconMarkdownPreview { width: 21px; --bg-icon: url("data:image/= svg+xml,%3csvg width=3D'21' height=3D'18' viewBox=3D'0 0 21 18' fill=3D'non= e' xmlns=3D'http://www.w3.org/2000/svg'%3e %3cpath d=3D'M6.76941 8.70588H7.= 26941V8.20588V7.03482L7.56739 7.45427L7.975 8.02805L8.38261 7.45427L8.68059= 7.03482V8.20588V8.70588H9.18059H10.45H10.95V8.20588V5.73997L11.246 6.14701= L13.171 8.79407L13.5754 9.35013L13.9798 8.79407L15.9048 6.14701L16.4822 5.3= 5294H15.5004H14.6254V3.5V3H14.1254H13.0284H12.5284V3.5V5.35294H11.6504H10.9= 5V3.5V3H10.45H9.18059H8.92247L8.77298 3.21043L7.975 4.33371L7.17702 3.21043= L7.02753 3H6.76941H5.5H5V3.5V8.20588V8.70588H5.5H6.76941ZM1.5 11.5H19.5V12.= 5H1.5V11.5ZM1.5 14.5H19.5V15.5H1.5V14.5ZM0.5 4C0.5 3.17157 1.17157 2.5 2 2.= 5H19C19.8284 2.5 20.5 3.17157 20.5 4V8C20.5 8.82843 19.8284 9.5 19 9.5H2C1.= 17157 9.5 0.5 8.82843 0.5 8V4Z' fill=3D'%230C0D0E' stroke=3D'%230C0D0E'/%3e= %3c/svg%3e"); } .svg-icon-bg.iconEllipsisHorizontal { --bg-icon: url("data:image/svg+xml,%3= csvg width=3D'17' height=3D'18' viewBox=3D'0 0 17 18' fill=3D'none' xmlns= =3D'http://www.w3.org/2000/svg'%3e %3cpath fill-rule=3D'evenodd' clip-rule= =3D'evenodd' d=3D'M3.5 10C2.67157 10 2 9.32843 2 8.5C2 7.67157 2.67157 7 3.= 5 7C4.32843 7 5 7.67157 5 8.5C5 9.32843 4.32843 10 3.5 10ZM8.5 10C7.67157 1= 0 7 9.32843 7 8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5C10 = 9.32843 9.32843 10 8.5 10ZM12 8.5C12 9.32843 12.6716 10 13.5 10C14.3284 10 = 15 9.32843 15 8.5C15 7.67157 14.3284 7 13.5 7C12.6716 7 12 7.67157 12 8.5Z'= fill=3D'black'/%3e %3c/svg%3e"); } .s-code-block.markdown .hljs-section { font-size: var(--fs-body2); font-wei= ght: 700; color: var(--black-600) !important; } .s-code-block.markdown .hljs-quote, .s-code-block.markdown .hljs-string, .s= -code-block.markdown .hljs-symbol, .s-code-block.markdown .hljs-tag { color= : var(--black-500) !important; } .s-code-block.markdown .hljs-link { text-decoration: underline; color: var(= --blue-500) !important; } .s-code-block.markdown .tok-strike { text-decoration: line-through; } .uql-nav .uql-nav--collapsed-item { display: none !important; } @media screen and (max-width: 1111px) and (min-width: 980.1px) { html.html__responsive:not(.html__unpinned-leftnav) .uql-nav .uql-nav--exp= anded-item { display: none !important; } html.html__responsive:not(.html__unpinned-leftnav) .uql-nav .uql-nav--col= lapsed-item { display: flex !important; } } @media screen and (max-width: 947px) and (min-width: 816.1px) { html.html__responsive.html__unpinned-leftnav .uql-nav .uql-nav--expanded-= item { display: none !important; } html.html__responsive.html__unpinned-leftnav .uql-nav .uql-nav--collapsed= -item { display: flex !important; } } @media screen and (max-width: 771px) and (min-width: 640.1px) { html.html__responsive:not(.html__unpinned-leftnav) .uql-nav .uql-nav--exp= anded-item { display: none !important; } html.html__responsive:not(.html__unpinned-leftnav) .uql-nav .uql-nav--col= lapsed-item { display: flex !important; } } @media screen and (max-width: 607px) and (min-width: 640.1px) { html.html__responsive.html__unpinned-leftnav .uql-nav .uql-nav--expanded-= item { display: none !important; } html.html__responsive.html__unpinned-leftnav .uql-nav .uql-nav--collapsed= -item { display: flex !important; } } @media screen and (max-width: 607px) { html.html__responsive .uql-nav .uql-nav--expanded-item { display: none !i= mportant; } html.html__responsive .uql-nav .uql-nav--collapsed-item { display: flex != important; } } @media print { .uql-nav .uql-nav--expanded-item { display: none !important; } .uql-nav .uql-nav--collapsed-item { display: flex !important; } } .uql-nav .uql-item { margin: var(--su8) 0; display: flex; } .uql-nav .uql-item.uql-item__separator { height: 1px; margin-left: calc(var= (--su12) * -1); margin-right: calc(var(--su12) * -1); } .topbar-dialog { font-family: var(--ff-sans); color: var(--black-500); font= -size: var(--fs-caption); background-color: var(--white); box-shadow: var(-= -bs-sm); z-index: 999; position: absolute; text-align: left; border-left: 1= px solid var(--black-200); border-right: 1px solid var(--black-200); border= -bottom: 1px solid var(--black-200); } .topbar-dialog .left-sidebar .s-navigation .s-navigation--item:not(.is-sele= cted) { color: var(--black-500); } .topbar-dialog .left-sidebar .s-navigation .s-navigation--item:hover, .topb= ar-dialog .left-sidebar .s-navigation .s-navigation--item:active { backgrou= nd-color: var(--_na-item-bg-hover); color: var(--_na-item-fc-hover); } .topbar-dialog .child-content-loading { text-align: center; padding-top: 10= px; } .topbar-dialog a:not(.s-btn):not(.nav-links--link):not(.s-navigation--item)= :not(.s-link) { color: var(--blue-500); text-decoration: none; } .topbar-dialog a:not(.s-btn):not(.nav-links--link):not(.s-navigation--item)= :not(.s-link):visited { color: var(--blue-500); } .topbar-dialog a:not(.s-btn):not(.nav-links--link):not(.s-navigation--item)= :not(.s-link):hover { color: var(--blue-400); text-decoration: none; } .topbar-dialog .related-links { color: var(--black-400); white-space: nowra= p; } .topbar-dialog .related-links a, .topbar-dialog .related-links a:visited { = margin-left: 10px; color: var(--blue-500); } .topbar-dialog.siteSwitcher-dialog { width: 375px; overflow: hidden scroll;= min-height: 390px; max-height: 390px; scrollbar-color: var(--scrollbar) tr= ansparent; } .topbar-dialog.siteSwitcher-dialog::-webkit-scrollbar { width: calc(var(--s= u-static12) - var(--su-static2)); height: calc(var(--su-static12) - var(--s= u-static2)); background-color: transparent; } .topbar-dialog.siteSwitcher-dialog::-webkit-scrollbar-track { border-radius= : calc(var(--su-static12) - var(--su-static2)); background-color: transpare= nt; } .topbar-dialog.siteSwitcher-dialog::-webkit-scrollbar-thumb { border-radius= : calc(var(--su-static12) - var(--su-static2)); background-color: var(--scr= ollbar); } .topbar-dialog.siteSwitcher-dialog::-webkit-scrollbar-corner { background-c= olor: transparent; border-color: transparent; } .topbar-dialog.siteSwitcher-dialog .call-to-login { padding: 7px 0px; text-= align: center; line-height: 1.3; } .topbar-dialog.siteSwitcher-dialog .modal-content { padding: 0px; } .topbar-dialog.siteSwitcher-dialog .modal-content li:first-child { padding-= top: 2px; } .topbar-dialog.siteSwitcher-dialog .modal-content li:last-child { padding-b= ottom: 2px; } .topbar-dialog.siteSwitcher-dialog .modal-content li { padding-left: 7px; p= adding-right: 7px; } .topbar-dialog.siteSwitcher-dialog .modal-content .pinned-site-candidate { = padding-top: 6px; padding-bottom: 6px; } .topbar-dialog.siteSwitcher-dialog .modal-content#your-communities-section = { max-height: none; } .topbar-dialog.siteSwitcher-dialog .other-sites { min-height: 345px; } .topbar-dialog.siteSwitcher-dialog .current-site .current-site-link { font-= weight: bold; } .topbar-dialog.siteSwitcher-dialog .current-site li { border: none; } .topbar-dialog.siteSwitcher-dialog .current-site li:hover { background-colo= r: var(--blue-300); } .topbar-dialog.siteSwitcher-dialog .site-desc { margin-bottom: 0px; margin-= left: 25px; color: var(--black-400); font-size: var(--fs-caption); padding-= right: 4px; } .topbar-dialog.siteSwitcher-dialog .L-shaped-icon-container { float: left; = padding: 0px; margin: 8px 6px 0px 15px; } .topbar-dialog.siteSwitcher-dialog .L-shaped-icon { width: 10px; height: 10= px; border-style: solid; border-color: rgb(185, 193, 197); border-image: in= itial; border-width: 0px 0px 1px 1px; display: inline-block; } .topbar-dialog.inbox-dialog .modal-content .message-text, .topbar-dialog.mo= dInbox-dialog .modal-content .message-text { width: 313px; } .topbar-dialog.inbox-dialog button { border: none; cursor: pointer; } .topbar-dialog.inbox-dialog, .topbar-dialog.modInbox-dialog, .topbar-dialog= .achievements-dialog { width: 375px; max-height: 505px; } .topbar-dialog.inbox-dialog .modal-content, .topbar-dialog.modInbox-dialog = .modal-content, .topbar-dialog.achievements-dialog .modal-content { min-hei= ght: 390px; max-height: 390px; overflow: hidden auto; scrollbar-color: var(= --scrollbar) transparent; } .topbar-dialog.inbox-dialog .modal-content::-webkit-scrollbar, .topbar-dial= og.modInbox-dialog .modal-content::-webkit-scrollbar, .topbar-dialog.achiev= ements-dialog .modal-content::-webkit-scrollbar { width: calc(var(--su-stat= ic12) - var(--su-static2)); height: calc(var(--su-static12) - var(--su-stat= ic2)); background-color: transparent; } .topbar-dialog.inbox-dialog .modal-content::-webkit-scrollbar-track, .topba= r-dialog.modInbox-dialog .modal-content::-webkit-scrollbar-track, .topbar-d= ialog.achievements-dialog .modal-content::-webkit-scrollbar-track { border-= radius: calc(var(--su-static12) - var(--su-static2)); background-color: tra= nsparent; } .topbar-dialog.inbox-dialog .modal-content::-webkit-scrollbar-thumb, .topba= r-dialog.modInbox-dialog .modal-content::-webkit-scrollbar-thumb, .topbar-d= ialog.achievements-dialog .modal-content::-webkit-scrollbar-thumb { border-= radius: calc(var(--su-static12) - var(--su-static2)); background-color: var= (--scrollbar); } .topbar-dialog.inbox-dialog .modal-content::-webkit-scrollbar-corner, .topb= ar-dialog.modInbox-dialog .modal-content::-webkit-scrollbar-corner, .topbar= -dialog.achievements-dialog .modal-content::-webkit-scrollbar-corner { back= ground-color: transparent; border-color: transparent; } .topbar-dialog.inbox-dialog .modal-content .timestamp, .topbar-dialog.modIn= box-dialog .modal-content .timestamp, .topbar-dialog.achievements-dialog .m= odal-content .timestamp { color: var(--black-350); } .topbar-dialog.inbox-dialog .inbox-item, .topbar-dialog.modInbox-dialog .in= box-item, .topbar-dialog.achievements-dialog .inbox-item { position: relati= ve; } .topbar-dialog.inbox-dialog .inbox-item .mail-button, .topbar-dialog.modInb= ox-dialog .inbox-item .mail-button, .topbar-dialog.achievements-dialog .inb= ox-item .mail-button { position: absolute; right: 5px; top: 5px; } .topbar-dialog.inbox-dialog .inbox-item .margin-for-mail-buttons, .topbar-d= ialog.modInbox-dialog .inbox-item .margin-for-mail-buttons, .topbar-dialog.= achievements-dialog .inbox-item .margin-for-mail-buttons { margin-right: 25= px; } .topbar-dialog.inbox-dialog .inbox-item .item-content .item-header, .topbar= -dialog.modInbox-dialog .inbox-item .item-content .item-header, .topbar-dia= log.achievements-dialog .inbox-item .item-content .item-header { color: var= (--black-500); } .topbar-dialog.inbox-dialog .inbox-item .item-content .item-creation, .topb= ar-dialog.modInbox-dialog .inbox-item .item-content .item-creation, .topbar= -dialog.achievements-dialog .inbox-item .item-content .item-creation { floa= t: right; } .topbar-dialog.inbox-dialog .inbox-item .item-content .item-location, .topb= ar-dialog.modInbox-dialog .inbox-item .item-content .item-location, .topbar= -dialog.achievements-dialog .inbox-item .item-content .item-location { marg= in: 4px 0px; } .topbar-dialog.inbox-dialog .inbox-item .item-content .item-summary, .topba= r-dialog.modInbox-dialog .inbox-item .item-content .item-summary, .topbar-d= ialog.achievements-dialog .inbox-item .item-content .item-summary { color: = var(--black-500); } .topbar-dialog.inbox-dialog.anon, .topbar-dialog.achievements-dialog.anon {= width: 275px; } .topbar-dialog.inbox-dialog.anon .modal-content, .topbar-dialog.achievement= s-dialog.anon .modal-content { min-height: 200px; padding: 13px 20px; } .topbar-dialog.inbox-dialog.anon .huge-button-container, .topbar-dialog.ach= ievements-dialog.anon .huge-button-container { text-align: center; } .topbar-dialog.inbox-dialog.anon .huge-button, .topbar-dialog.achievements-= dialog.anon .huge-button { width: 35%; padding: 3% 0px; } .topbar-dialog.help-dialog { width: 215px; } .topbar-dialog.help-dialog .modal-content { max-height: none; } .topbar-dialog.help-dialog .item-summary { display: block; color: var(--bla= ck-500); margin-top: 4px; } .topbar-dialog.help-dialog a { display: block; } .topbar-dialog.review-dialog .modal-content { max-height: none; } .topbar-dialog.review-dialog .modal-content .timestamp { color: var(--black= -350); } .topbar-dialog.review-dialog .modal-content li { display: block; } .topbar-dialog.review-dialog .modal-content li > a { display: flex; align-i= tems: center; flex-flow: row; } .topbar-dialog.review-dialog .modal-content li > a:visited { color: var(--b= lue-400); } .topbar-dialog.review-dialog .modal-content li > a .-title { flex-grow: 2; = } .topbar-dialog.review-dialog .modal-content li > a .-indicator { font-size:= var(--fs-fine); display: inline-block; padding: 3px 5px; background: rgba(= 0, 0, 0, 0.05); color: var(--black-400); border-radius: var(--br-sm); } .topbar-dialog.review-dialog .modal-content .suspension-notice .notice-cont= ent .notice-header { color: var(--black-400); } .topbar-dialog.review-dialog .modal-content .suspension-notice .notice-cont= ent .notice-creation { float: right; } .topbar-dialog.review-dialog .modal-content .suspension-notice .notice-cont= ent .notice-location { margin: 4px 0px; } .topbar-dialog.review-dialog .modal-content .suspension-notice .notice-cont= ent .notice-summary { color: var(--black-500); } .topbar-dialog.review-dialog.danger-dialog .-item a { padding-left: 32px; p= osition: relative; } .topbar-dialog.review-dialog.danger-dialog .-item a::before { content: ""; = width: 10px; height: 10px; position: absolute; left: 10px; top: 50%; margin= -top: -5px; border-radius: 50%; background: transparent; } .topbar-dialog.review-dialog.danger-dialog .-item.danger-urgent .-title { f= ont-weight: bold; } .topbar-dialog.review-dialog.danger-dialog .-item.danger-urgent a::before {= background: var(--red-400); box-shadow: rgba(200, 50, 50, 0.2) 0px 0px 5px= ; } .topbar-dialog.review-dialog.danger-dialog .-item.danger-active a::before {= background: var(--black-225); } .topbar-dialog.feature-notice-dialog .s-popover--arrow__tl::before, .topbar= -dialog.feature-notice-dialog .s-popover--arrow__tl::after { left: 20px; } .topbar-dialog.network-logo-dialog { width: 320px; border: 1px solid var(--= black-300); border-radius: var(--br-sm); font-size: var(--fs-body1); box-sh= adow: var(--bs-sm); } .topbar-dialog.network-logo-dialog .dialog-content { padding: var(--su16); = background: var(--white); border-radius: var(--br-md); } .topbar-dialog.network-logo-dialog h4 { margin-bottom: var(--su12); } .topbar-dialog.network-logo-dialog a { font-weight: normal; } .topbar-dialog ul { padding-left: 0px; margin-left: 0px; margin-bottom: 0px= ; } .topbar-dialog ul li { list-style: none; margin-left: 0px; line-height: 1.3= ; } .topbar-dialog .header { background-color: var(--black-150); width: 100%; b= ox-sizing: border-box; position: relative; clear: both; display: flex; just= ify-content: space-between; align-items: center; padding: 8px 10px; } .topbar-dialog .header h3 { font-family: var(--ff-sans); color: var(--black= -500); font-weight: bold; text-transform: uppercase; font-size: var(--fs-fi= ne); margin-bottom: 0px; display: inline-block; } .topbar-dialog .header h3 a { font-size: inherit; color: inherit; font-fami= ly: var(--ff-sans); } .topbar-dialog .header .-right { color: var(--black-350); } .topbar-dialog .header .-right a { color: var(--blue-400); } .topbar-dialog #edit-pinned-sites, .topbar-dialog #cancel-pinned-sites { fl= oat: right; } .topbar-dialog .modal-content { width: 100%; max-height: 300px; position: r= elative; } .topbar-dialog .modal-content li { border-bottom: 1px solid var(--black-150= ); margin-bottom: 0px; } .topbar-dialog .modal-content li .rep-score { float: right; color: var(--bl= ack-400); font-size: var(--fs-caption); } .topbar-dialog .modal-content li:hover { background-color: var(--black-200)= ; } .topbar-dialog .modal-content li:hover .site-desc { color: var(--black-500)= ; } .topbar-dialog .modal-content li > * { padding: var(--su8); } .topbar-dialog .modal-content li > a > * { white-space: normal; } .topbar-dialog .modal-content li > a.pinned-site-link { display: inline-blo= ck; } .topbar-dialog .modal-content li:last-child { border-bottom: none; } .topbar-dialog .modal-content .message-text { display: inline-block; } .topbar-dialog .modal-content .message-text h4 { margin-bottom: 0px; font-s= ize: 100%; font-weight: normal; font-family: var(--ff-sans); color: inherit= ; } .topbar-dialog .read-item { font-weight: normal; background-color: var(--bl= ack-150); border-top: 1px solid var(--black-300); } .topbar-dialog .read-item:nth-last-child(2) { border-bottom: 1px solid var(= --black-300); } .topbar-dialog .read-item .item-location { color: var(--black-500); } .topbar-dialog li.unread-item { background-color: var(--blue-200); } .topbar-dialog li.unread-item.new-unread-notification-style { border-top: 1= px solid var(--black-300); background-color: var(--white); } .topbar-dialog li.unread-item.new-unread-notification-style:hover { backgro= und-color: var(--black-200); } .topbar-dialog li.unread-item.new-unread-notification-style:nth-last-child(= 2) { border-bottom: 1px solid var(--black-300); } .topbar-dialog li.unread-item .unread-bold { font-weight: bold; color: var(= --blue-500); } .topbar-dialog .site-icon { width: 16px; height: 16px; vertical-align: top;= flex: 0 0 auto; } .topbar-dialog .site-title, .topbar-dialog .site-title:visited { color: var= (--black-500); } .topbar-dialog .pinned-site-editor-container { width: 100%; } .topbar-dialog .pinned-site-editor-container .site-filter-input { width: 10= 0%; } .topbar-dialog .pinned-site-editor-container .found-sites { position: absol= ute; background-color: var(--white); border: 1px solid var(--black-200); } .topbar-dialog .pinned-site-editor-container .found-sites li:hover { font-w= eight: bold; cursor: pointer; } .topbar-dialog .pinned-site-editor-container .found-sites li.already-pinned= -site { font-weight: normal; background-color: var(--blue-200); cursor: def= ault; } .topbar-dialog .pinned-site-editor-container .remove-pinned-site-link { flo= at: right; } .topbar-dialog .pinned-site-editor-container .remove-pinned-site-link a { p= adding: 0px 5px 2px; font-weight: bold; color: var(--black-350); background= -color: var(--black-150); font-family: var(--ff-sans); line-height: 1; bord= er-radius: 15px; } .topbar-dialog .pinned-site-editor-container .remove-pinned-site-link a:hov= er { color: var(--white); background-color: var(--black-400); } .topbar-dialog .pinned-site-editor-container .sortable li { cursor: move; } .achievements-dialog { width: 450px; max-height: 505px; font-size: var(--fs= -caption); } .achievements-dialog .utc-clock { font-size: var(--fs-fine); font-weight: n= ormal; display: inline-block; padding-left: 5px; font-variant: small-caps; = } .achievements-dialog .date-group .date-group-toggle { display: inline-block= ; width: 10px; height: 10px; background-position: 2px -94px; } .achievements-dialog .date-group .date-group-toggle.toggle-hidden { backgro= und-position: -17px -94px; } .achievements-dialog ul { margin-bottom: 10px; } .achievements-dialog .rep-change { vertical-align: top; text-align: right; = font-size: var(--fs-fine); display: inline-block; white-space: nowrap; } .achievements-dialog .rep-up { color: var(--green-400); } .achievements-dialog .rep-down { color: var(--red-400); } .achievements-dialog .rep-site-container { margin: 10px 0px; width: 100%; c= ursor: default; } .achievements-dialog .rep-site-container .rep-site { width: 30px; display: = inline-block; text-align: center; } .achievements-dialog .rep-site-container .rep-site img { display: block; ma= rgin: 0px auto 4px; } .achievements-dialog .date-header, .achievements-dialog .single-rep-site-co= ntainer { font-weight: bold; margin: 3px 0px 4px; display: inline-block; fo= nt-size: var(--fs-caption); } .achievements-dialog .date-header .rep-change, .achievements-dialog .single= -rep-site-container .rep-change { font-size: var(--fs-caption); } .achievements-dialog .date-header { padding: var(--su8); color: var(--black= -400); } .achievements-dialog .single-rep-site-container { margin-left: 2px; } .achievements-dialog .message-text { margin-left: 2px; width: 278px; } .achievements-dialog .achievements-badge { text-align: right; } .achievements-dialog .achievements-privilege-category .icon { vertical-alig= n: top; margin: 0px; width: 18px; } .achievements-dialog .modal-content.short { min-height: 297px; max-height: = 297px; } .achievements-dialog .modal-content.tiny { min-height: 197px; max-height: 1= 97px; } .self-actions { width: 200px; max-height: 505px; left: 535px; } .autocomplete-enter-btn { display: none; } a:focus:not(:active) .autocomplete-enter-btn { display: block; } html { --top-bar-allocated-space: 56px; } .s-topbar ~ .container, .s-topbar ~ #announcement-banner { margin-top: var(= --topbar-height); } .s-topbar ~ #announcement-banner ~ .container { margin-top: 0px; } .s-topbar { --theme-topbar-height: 56px; --theme-topbar-background-color: h= sl(210,8%,5%); --theme-topbar-bottom-border: var(--su-static1) solid hsl(21= 0,8%,5%); --theme-topbar-search-color: hsl(0,0%,100%); --theme-topbar-searc= h-background: hsl(210,8%,25%); --theme-topbar-search-placeholder: hsl(210,8= %,85%); --theme-topbar-search-border: hsl(210,8%,45%); --theme-topbar-selec= t-color: hsl(210,8%,85%); --theme-topbar-select-background: hsl(210,8%,35%)= ; --theme-topbar-item-color-hover: var(--_white-static); --theme-topbar-ite= m-background-hover: hsl(210,8%,25%); --theme-topbar-item-color-current: var= (--_white-static); --theme-topbar-accent-border: none; --scrollbar: hsla(0,= 0%,100%,0.2); --theme-topbar-item-color: hsl(210,8%,85%); } .s-topbar, .s-topbar * { box-sizing: border-box; } .s-topbar .s-topbar--content .s-btn { --theme-button-color: var(--theme-pri= mary-100); --theme-button-hover-color: var(--theme-primary-100); --theme-bu= tton-outlined-border-color: var(--theme-primary-100); --theme-button-hover-= background-color: var(--theme-primary-600); --theme-button-primary-backgrou= nd-color: var(--theme-primary-100); --theme-button-primary-hover-background= -color: var(--theme-primary-200); --theme-button-primary-active-background-= color: var(--theme-primary-300); --theme-button-primary-color: var(--theme-= primary-500); --theme-button-primary-hover-color: var(--theme-primary-600);= --theme-button-primary-active-color: var(--theme-primary-600); } .s-topbar .s-topbar--content .topbar-dialog .s-btn { --theme-button-color: = var(--theme-primary); --theme-button-hover-color: var(--theme-primary-400);= --theme-button-outlined-border-color: var(--theme-primary-400); --theme-bu= tton-hover-background-color: var(--theme-primary-100); --theme-button-prima= ry-background-color: var(--theme-primary-400); --theme-button-primary-hover= -background-color: var(--theme-primary-500); --theme-button-primary-active-= background-color: var(--theme-primary-600); --theme-button-primary-color: v= ar(--white); --theme-button-primary-hover-color: var(--white); --theme-butt= on-primary-active-color: var(--white); } .s-topbar .s-user-card .-badges .badge1 + .badgecount { color: var(--gold-2= 00) !important; } .s-topbar .s-user-card .-badges .badge2 + .badgecount { color: var(--silver= -200) !important; } .s-topbar .s-user-card .-badges .badge3 + .badgecount { color: var(--bronze= -200) !important; } .s-topbar .s-topbar--logo .-img { display: inline-block; text-indent: -9999= em; height: 30px; width: 146px; margin-top: -4px; margin-left: 0px; backgro= und-position: 0px -500px; } .s-topbar .s-topbar--logo .-img._glyph { margin-left: 0px; width: 150px; he= ight: 30px; margin-top: -4px; } @media screen and (max-width: 640px) { html.html__responsive .s-topbar .s-topbar--logo .-img._glyph { width: 25p= x; margin-top: 0px; } } @media print { .s-topbar .s-topbar--logo .-img._glyph { width: 25px; margin-top: 0px; } } body.theme-highcontrast .s-topbar .s-topbar--logo .-img { filter: brightnes= s(0); } @media (prefers-color-scheme: dark) { body.theme-system .s-topbar .s-topbar--logo .-img { filter: invert(0.5) b= rightness(2); } } body.theme-dark .s-topbar .s-topbar--logo .-img, .theme-dark__forced .s-top= bar .s-topbar--logo .-img, body.theme-system .theme-dark__forced .s-topbar = .s-topbar--logo .-img { filter: invert(0.5) brightness(2); } @media screen and (max-width: 640px) { html.html__responsive .s-topbar .s-topbar--logo.network-logo { width: 41p= x; overflow: hidden; display: block; } html.html__responsive .s-topbar .s-topbar--logo.network-logo .svg-icon { = transform: scale(2); transform-origin: 0px -10px; } } @media print { .s-topbar .s-topbar--logo.network-logo { width: 41px; overflow: hidden; d= isplay: block; } .s-topbar .s-topbar--logo.network-logo .svg-icon { transform: scale(2); t= ransform-origin: 0px -10px; } } .s-topbar .topbar-dialog.leftnav-dialog { width: auto; right: auto; } .s-topbar .topbar-dialog.leftnav-dialog .left-sidebar:not(:empty) { width: = 240px; } @media screen and (max-width: 640px) { html.html__responsive .s-topbar .topbar-dialog:not(.leftnav-dialog), html= .html__responsive .s-topbar .topbar-dialog.review-dialog.review-dialog-mod = { width: 100%; left: 0px; right: 0px; } html.html__responsive .s-topbar .topbar-dialog.feature-notice-dialog .s-p= opover--arrow__tl::before, html.html__responsive .s-topbar .topbar-dialog.f= eature-notice-dialog .s-popover--arrow__tl::after { left: 105px; } } @media print { .s-topbar .topbar-dialog:not(.leftnav-dialog), .s-topbar .topbar-dialog.r= eview-dialog.review-dialog-mod { width: 100%; left: 0px; right: 0px; } .s-topbar .topbar-dialog.feature-notice-dialog .s-popover--arrow__tl::bef= ore, .s-topbar .topbar-dialog.feature-notice-dialog .s-popover--arrow__tl::= after { left: 105px; } } .s-topbar .s-topbar--menu-btn { display: none; } @media screen and (max-width: 640px) { html.html__responsive .s-topbar .s-topbar--menu-btn { display: flex; } } @media print { .s-topbar .s-topbar--menu-btn { display: flex; } } html.html__unpinned-leftnav .s-topbar .s-topbar--menu-btn { display: flex; = } .s-topbar .s-user-card .-badges { font-size: inherit; color: var(--black-15= 0); } .s-topbar .s-user-card .-badges > span + span { padding-left: var(--su6); } .s-topbar .s-user-card .-badges .badge1, .s-topbar .s-user-card .-badges .b= adge2, .s-topbar .s-user-card .-badges .badge3 { text-indent: -9999em; } .s-topbar .s-user-card .-badges .badgecount { font-weight: normal; } .s-topbar .s-user-card .-badges .badge1 + .badgecount { color: var(--gold-4= 00); } .s-topbar .s-user-card .-badges .badge2 + .badgecount { color: var(--silver= -400); } .s-topbar .s-user-card .-badges .badge3 + .badgecount { color: var(--bronze= -400); } .s-topbar .topbar-dialog { --scrollbar: var(--hack-topbar-scrollbar-fallbac= k); } body { --hack-topbar-scrollbar-fallback: var(--scrollbar); } .site-footer, .site-footer *, .site-footer ::before, .site-footer ::after {= box-sizing: border-box; } .site-footer .-list { margin: 0px; list-style: none; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .site-footer .-list:no= t(.-social) { display: flex; flex-wrap: wrap; column-gap: var(--su12); row-= gap: var(--su8); } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .site-footer .-list:not(.-so= cial) { display: flex; flex-wrap: wrap; column-gap: var(--su12); row-gap: v= ar(--su8); } } @media print { .site-footer .-list:not(.-social) { display: flex; flex-wrap: wrap; colum= n-gap: var(--su12); row-gap: var(--su8); } } .site-footer .-link { color: var(--theme-footer-link-color); padding: var(-= -su4) 0; line-height: var(--lh-md); display: inline-block; text-decoration:= none; } .site-footer .-link:hover { color: var(--theme-footer-link-color-hover); } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .site-footer .-link { = padding: 0px; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .site-footer .-link { paddin= g: 0px; } } @media print { .site-footer .-link { padding: 0px; } } .site-footer .-title { text-transform: uppercase; font-weight: bold; margin= -bottom: var(--su12); color: var(--theme-footer-title-color); line-height: = var(--lh-md); } .site-footer .-title a, .site-footer .-title a:visited { text-decoration: n= one; color: var(--theme-footer-title-color) !important; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .site-footer .-title {= margin-bottom: var(--su8); } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .site-footer .-title { margi= n-bottom: var(--su8); } } @media print { .site-footer .-title { margin-bottom: var(--su8); } } .site-footer { background-color: var(--theme-footer-background-color); back= ground-image: none; background-position: var(--theme-footer-background-posi= tion); background-repeat: var(--theme-footer-background-repeat); border-top= : var(--theme-footer-background-border-top); background-size: var(--theme-f= ooter-background-size); padding-top: var(--theme-footer-padding-top); paddi= ng-bottom: var(--theme-footer-padding-bottom); color: var(--theme-footer-te= xt-color) !important; } body.theme-highcontrast .site-footer { --theme-footer-background-color: hsl= (0,0%,0%); --theme-footer-background-border-top: hsl(0,0%,100%); --theme-fo= oter-title-color: hsl(0,0%,100%); --theme-footer-text-color: hsl(0,0%,100%)= ; --theme-footer-link-color: hsl(0,0%,100%); --theme-footer-link-color-hove= r: hsl(0,0%,100%); --theme-footer-divider-color: hsl(0,0%,100%); border-top= : 1px solid var(--black); background-image: none !important; } body.theme-highcontrast .site-footer a:hover, body.theme-highcontrast .site= -footer a:focus { color: rgb(255, 255, 255); text-decoration: underline; } .site-footer .site-footer--container, .site-footer .site-footer--extra { ma= x-width: 1264px; width: 100%; margin: 0px auto; padding: var(--su32) var(--= su12) var(--su12) var(--su12); display: flex; flex-flow: wrap; } @media screen and (max-width: 980px) and (min-width: 640.1px) { html.html__responsive:not(.html__unpinned-leftnav) .site-footer .site-foo= ter--container, html.html__responsive:not(.html__unpinned-leftnav) .site-fo= oter .site-footer--extra { padding: var(--su24); } } @media screen and (max-width: 816px) and (min-width: 640.1px) { html.html__responsive.html__unpinned-leftnav .site-footer .site-footer--c= ontainer, html.html__responsive.html__unpinned-leftnav .site-footer .site-f= ooter--extra { padding: var(--su24); } } @media screen and (max-width: 640px) { html.html__responsive .site-footer .site-footer--container, html.html__re= sponsive .site-footer .site-footer--extra { padding: var(--su16); } } @media print { .site-footer .site-footer--container, .site-footer .site-footer--extra { = padding: var(--su16); } } .site-footer .site-footer--extra { padding: var(--su32) var(--su12); border= -top: 1px solid var(--theme-footer-divider-color); } .site-footer .site-footer--logo { flex: 0 0 64px; margin: calc(var(--su12) = * -1) 0 var(--su32) 0; } @media screen and (max-width: 640px) { html.html__responsive .site-footer .site-footer--logo { display: none; } } @media print { .site-footer .site-footer--logo { display: none; } } .site-footer .site-footer--nav { display: flex; flex: 2 1 auto; flex-wrap: = wrap; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .site-footer .site-foo= ter--nav { flex-direction: column; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .site-footer .site-footer--n= av { flex-direction: column; } } @media print { .site-footer .site-footer--nav { flex-direction: column; } } .site-footer .site-footer--col { padding: 0 var(--su12) var(--su24) 0; flex= : 1 0 auto; } .site-footer .site-footer--copyright { flex: 1 1 150px; display: flex; flex= -direction: column; } .site-footer .site-footer--copyright ul { display: flex; list-style: none; = margin: 0px; padding: 0px; } .site-footer .site-footer--copyright ul li + li { margin-left: var(--su12);= } .site-footer .site-footer--copyright p { margin-top: auto; margin-bottom: v= ar(--su24); } .site-footer .site-footer--copyright p a, .site-footer .site-footer--copyri= ght p a:visited { line-height: inherit; color: var(--theme-footer-link-colo= r); padding: 0px; } .message.error, .message.success, .message.regular, .message.incomplete, .m= essage.gray { display: inline-block; padding: 12px; margin: 10px 0px; borde= r-radius: 3px; } .message.error.text-only, .message.success.text-only, .message.regular.text= -only, .message.incomplete.text-only, .message.gray.text-only { background:= none; border: 0px; padding: 0px; margin: 0px 0px 10px; color: var(--black-= 400); } .message.error.text-only i[class^=3D"icon-"], .message.success.text-only i[= class^=3D"icon-"], .message.regular.text-only i[class^=3D"icon-"], .message= .incomplete.text-only i[class^=3D"icon-"], .message.gray.text-only i[class^= =3D"icon-"], .message.error.text-only span[class^=3D"icon-"], .message.succ= ess.text-only span[class^=3D"icon-"], .message.regular.text-only span[class= ^=3D"icon-"], .message.incomplete.text-only span[class^=3D"icon-"], .messag= e.gray.text-only span[class^=3D"icon-"] { margin-right: 4px; } .message.error.centered, .message.success.centered, .message.regular.center= ed, .message.incomplete.centered, .message.gray.centered { text-align: cent= er; } .message.error.centered-block, .message.success.centered-block, .message.re= gular.centered-block, .message.incomplete.centered-block, .message.gray.cen= tered-block { display: block; margin: 10px auto; } .message.error.left-block, .message.success.left-block, .message.regular.le= ft-block, .message.incomplete.left-block, .message.gray.left-block { displa= y: block; margin: 10px auto; } .message.error .message-ctas, .message.success .message-ctas, .message.regu= lar .message-ctas, .message.incomplete .message-ctas, .message.gray .messag= e-ctas { display: flex; justify-content: space-between; align-items: center= ; margin-top: 10px; } .message.error .message-cta, .message.success .message-cta, .message.regula= r .message-cta, .message.incomplete .message-cta, .message.gray .message-ct= a { margin-top: 10px; } .message.error .message-title, .message.success .message-title, .message.re= gular .message-title, .message.incomplete .message-title, .message.gray .me= ssage-title { text-align: center; font-weight: 700; padding: 10px 0px; marg= in: -12px -12px 10px; border-radius: 3px 3px 0px 0px; } .message.error .message-title [class^=3D"icon"], .message.success .message-= title [class^=3D"icon"], .message.regular .message-title [class^=3D"icon"],= .message.incomplete .message-title [class^=3D"icon"], .message.gray .messa= ge-title [class^=3D"icon"] { margin-right: 4px; vertical-align: middle; } .message.error .message-title [class*=3D"icon-warning"], .message.success .= message-title [class*=3D"icon-warning"], .message.regular .message-title [c= lass*=3D"icon-warning"], .message.incomplete .message-title [class*=3D"icon= -warning"], .message.gray .message-title [class*=3D"icon-warning"] { positi= on: relative; top: -1px; } .message.inline-message { display: block; } .message.inline-message::before, .message.inline-message::after { content: = ""; display: table; } .message.inline-message::after { clear: both; } .message.inline-message .message-title { display: inline-block; margin: 0px= 12px 0px 0px; color: var(--orange-400); } .message.inline-message .inline-message-cta { float: right; } .message.regular { background: var(--yellow-200); color: var(--yellow-600);= border: 1px solid var(--yellow-300); } .message.error { color: var(--red-600); background: var(--red-200); border:= 1px solid var(--red-300); } .message.error.text-only { color: var(--red-400); } .message.error.text-only::before { top: 3px; background-position: -72px -33= 0px; } .message.success { color: var(--green-600); background: var(--green-200); b= order: 1px solid var(--green-300); } .message.success.text-only { color: var(--green-400); } .message.success.text-only::before { background-position: -95px -330px; } .message.incomplete { color: var(--black-600); background: var(--orange-200= ); border: 1px solid var(--orange-300); } .message.incomplete .message-title { color: var(--orange-400); background: = var(--orange-300); padding: 10px 0px; margin: -12px -12px 10px; } .message.gray { background: rgb(246, 246, 247); color: rgb(12, 13, 14); bor= der: 1px solid rgb(227, 230, 232); } .message.gray .message-title { background: rgb(227, 230, 232); padding: 10p= x 0px; } .job-requirements { padding: 15px; } .job-requirements input[type=3D"submit"].dno { display: none; } .message.job-improve .message-title { background: rgb(227, 230, 232); paddi= ng: 10px 0px; } .message.label.regular { font-size: var(--fs-caption); padding: 6px; margin= : 0px; } .message.label.regular.has-tooltip { cursor: default; } h1 .message.label, h2 .message.label, h3 .message.label { position: relativ= e; top: -1px; } .top-notification { background: rgb(27, 117, 208); color: rgb(255, 255, 255= ); font-size: var(--fs-caption); margin-bottom: 20px; padding: 10px 20px; } .top-notification .container { width: 100%; max-width: 1050px; margin: 0px = auto; min-height: 30px; align-items: center; } .top-notification a { color: rgb(255, 255, 255); } .top-notification .-content p:last-child { margin-bottom: 0px; } .top-notification .-content .btn { background: rgb(244, 128, 36); box-shado= w: rgba(255, 255, 255, 0.4) 0px 1px 0px inset; margin-left: 10px; } .top-notification .-actions { text-align: right; } .comments { width: 660px; padding-bottom: 10px; } .comments > table { width: 100%; } .comments-link { padding: 0px 3px 2px; } a.comments-link:hover { padding: 0px 3px 2px; text-decoration: none; } tr.comment > td { padding: 6px 6px 6px 0px; vertical-align: top; line-heigh= t: 1.3; border-bottom: 1px solid var(--black-150); } .comment img { vertical-align: middle; } .comment:not([style*=3D"background-color"]) { transition: background-color = 3s linear; } .comment-actions { padding-left: 3px; width: 15px; } .comment-score span { font-size: var(--fs-body1); font-weight: normal; padd= ing-right: 4px; } .comment-text, .comment-form { padding: 0px 6px 0px 7px; vertical-align: te= xt-top; } .comment-text code { padding: 1px 5px; } .comment-text .comment-edited { margin-top: 3px; margin-left: 2px; vertical= -align: top; } .comment-form > form textarea, .comment-form > form div[contenteditable=3D"= true"] { margin-bottom: 4px; height: 5em; width: 100%; resize: vertical; ov= erflow: auto; } .comment-date { color: var(--black-400); } .text-counter { margin-right: 20px; } .comment-text .hover-only-label, .hover-only-container .hover-only-label { = visibility: hidden; } .comment-text:hover .hover-only-label, .hover-only-container:hover .hover-o= nly-label { visibility: visible; } .comment-text:focus-within .hover-only-label, .hover-only-container:focus-w= ithin .hover-only-label { visibility: visible; } .comment-text button:focus .hover-only-label, .hover-only-container button:= focus .hover-only-label { visibility: visible; } @media (hover: none) { .comment-text .hover-only-label, .hover-only-container .hover-only-label = { visibility: visible; } } .comment__highlight:not([style*=3D"background-color"]) { transition: none; = background-color: var(--yellow-200); } .threadable-comment { --comment-threadline-width: .5px; } .threadable-comment .threadable-comment__threadline { border-left-width: va= r(--comment-threadline-width) !important; } .threadable-comment ul .threadable-comment__threadline { display: none; } .threadable-comment:last-child > * > .threadable-comment__threadline { posi= tion: relative; } .threadable-comment:last-child > * > .threadable-comment__threadline::after= { --comment-line-stop-size: calc(var(--comment-threadline-width) * 5); con= tent: ""; border-left: var(--comment-line-stop-size) solid transparent; bor= der-right: var(--comment-line-stop-size) solid transparent; border-bottom: = calc(2 * var(--comment-line-stop-size) * .866) solid var(--black-400); posi= tion: absolute; bottom: 0px; transform: translate(calc(-50% - .5*var(--comm= ent-threadline-width))); } .threadable-comment:last-child > .threadable-comment__body { margin-bottom:= 0px !important; } .threadable-comment--deleted { margin-left: -40px !important; padding-left:= 40px !important; } ul.comments-list { list-style-type: none; margin: 0px; } ul.comments-list .comment { display: flex; } ul.comments-list .comment-score { width: 2ch; padding-right: 4px; } ul.comments-list .comment-score > span { float: right; padding-right: 0px; = min-width: 2ch; } ul.comments-list .comment-text { flex-grow: 1; } ul.comments-list .comment-voting, ul.comments-list .comment-flagging { widt= h: 20px; } ul.comments-list .comment > * { border-bottom: 1px solid var(--black-150); = } ul.comments-list .comment-text, ul.comments-list comment-form, ul.comments-= list .comment-actions { padding: 6px 0px; } ul.comments-list .comment-text { min-width: 0px; flex-basis: 0px; padding-l= eft: 6px; padding-right: 6px; } ul.comments-list .comment-body { overflow-wrap: break-word; } ul.comments-list .comment-actions { padding-right: 2px; } ul.comments-list .comment-text, ul.comments-list .comment-actions { transit= ion: background-color 3s ease-out; } ul.comments-list .deleted-comment { background-color: transparent; } ul.comments-list .deleted-comment .comment-text, ul.comments-list .deleted-= comment .comment-actions { background-color: var(--red-100); } ul.comments-list .comment__highlight { background-color: transparent; } ul.comments-list .comment__highlight .comment-text { transition: none; back= ground-color: var(--yellow-200); } ul.comments-list .comment-actions { width: 38px; flex-shrink: 0; } ul.comments-list .comment-score { display: inline-block; } ul.comments-list .comment-voting, ul.comments-list .comment-flagging { floa= t: right; } @supports (display: grid) { ul.comments-list .comment-actions { display: grid; grid-template-columns:= repeat(2, max-content); align-content: flex-start; width: calc(2ch + 22px)= ; } ul.comments-list .comment-flagging:nth-child(3) { grid-column: 2; } } @supports (display: grid) and (display: contents) and (not (-apple-trailing= -word: auto)) { body:not(.no-grid-comments) ul.comments-list { display: grid; grid-templa= te-columns: max-content 1fr; } body:not(.no-grid-comments) ul.comments-list .comment-score { width: auto= ; min-width: var(--su-static16); } body:not(.no-grid-comments) ul.comments-list .comment-score > span { min-= width: 0px; float: none; } body:not(.no-grid-comments) ul.comments-list .comment-actions { width: au= to; } body:not(.no-grid-comments) ul.comments-list .comment { display: contents= ; } body:not(.no-grid-comments) ul.comments-list .comment__highlight .comment= -actions { transition: none; background-color: var(--yellow-200); } } .message.message-config.unsubscribe-all-popup { z-index: var(--zi-popovers)= ; } .col-6.with-padding:first-child { padding-right: 10px; } .col-6.with-padding:last-child { padding-left: 10px; } .profile-section-title { font-weight: 700; color: var(--fc-black-600); } .profile-section-title span { font-weight: 400; color: var(--fc-black-400);= } #mod-content { margin-top: 25px; } #mod-content .mod-sidebar { padding-right: 30px; } #mod-content .mod-sidebar .account-details { margin-bottom: 20px; } .mod-quick-links { margin-bottom: 30px; } .mod-links li { margin-bottom: 5px; } .account-info .row.mod-section { padding-bottom: 20px; margin-bottom: 20px;= border-bottom: 1px solid rgb(241, 242, 243); } #mod-content .row h3 { margin-bottom: 10px; } .row.mod-credentials { margin-top: 20px; margin-bottom: 0px; } .account-info dl { float: right; font-size: 0.8em; } .account-info dl dt { display: inline-block; font-weight: bold; } .account-info dl dd { display: inline-block; font-style: italic; } .ui-datepicker.ui-widget { color: var(--fc-black-500); } @media (prefers-color-scheme: dark) { body.theme-system .ui-datepicker.ui-widget { background-color: var(--blac= k-225); border-color: transparent; box-shadow: var(--bs-lg); } } body.theme-dark .ui-datepicker.ui-widget, .theme-dark__forced .ui-datepicke= r.ui-widget, body.theme-system .theme-dark__forced .ui-datepicker.ui-widget= { background-color: var(--black-225); border-color: transparent; box-shado= w: var(--bs-lg); } .ui-datepicker table.ui-datepicker-calendar .ui-state-default { color: inhe= rit; background: none; border: 0px; } .ui-datepicker table.ui-datepicker-calendar .ui-state-hover, .ui-datepicker= .ui-datepicker-header .ui-state-hover { background-color: var(--theme-butt= on-hover-background-color, var(--theme-secondary-200)); } .ui-datepicker table.ui-datepicker-calendar .ui-state-active { background: = var(--theme-button-primary-background-color, var(--theme-secondary-400)); c= olor: rgb(255, 255, 255); } .ui-datepicker .ui-datepicker-header { color: inherit; background: none; bo= rder: 0px; } @media (prefers-color-scheme: dark) { body.theme-system .ui-datepicker .ui-datepicker-header .ui-icon { filter:= invert(1); } } body.theme-dark .ui-datepicker .ui-datepicker-header .ui-icon, .theme-dark_= _forced .ui-datepicker .ui-datepicker-header .ui-icon, body.theme-system .t= heme-dark__forced .ui-datepicker .ui-datepicker-header .ui-icon { filter: i= nvert(1); } .ui-datepicker .ui-datepicker-header.ui-widget-header .ui-state-hover { bac= kground: none; border-color: var(--black-300); } .ui-datepicker table.ui-datepicker-calendar .ui-state-highlight { font-weig= ht: bold; } .block { display: block; } .fw { margin-bottom: 4px; width: 100%; } .relative { position: relative; } .cp { cursor: pointer; } .help-text { color: var(--black-400); } .bold { font-weight: 700; } .help-text.has-icon, .message.text-only.has-icon { display: flex; } .help-text.has-icon [class^=3D"icon"], .message.text-only.has-icon [class^= =3D"icon"], .help-text.has-icon .svg-icon, .message.text-only.has-icon .svg= -icon { flex-shrink: 0; margin-top: -3px; margin-right: 5px; } .help-text.has-icon .icon-i-orange, .message.text-only.has-icon .icon-i-ora= nge { position: relative; top: 2px; } .success-text { color: var(--green-400); } .error-text { color: var(--red-400); } .hidden, .dno, ._hidden { display: none; } .hidden-important { display: none !important; } .stop-scrolling { height: 100%; overflow: hidden; } ._blocked { overflow: hidden; position: fixed; } html { height: 100%; min-width: 1264px; } body { min-height: 100%; display: flex; flex-direction: column; background-= color: var(--theme-background-color); background-image: none; background-po= sition: var(--theme-background-position); background-repeat: var(--theme-ba= ckground-repeat); background-size: var(--theme-background-size); background= -attachment: var(--theme-background-attachment); min-width: 1279px; --mp-al= t-row-color: var(--black-150); --mp-critical-color: var(--red-500); --mp-du= ration-color: var(--black-600); --mp-gap-bg-color: var(--black-100); --mp-g= ap-font-color: var(--black-500); --mp-highlight-default-color: var(--fc-bla= ck-600); --mp-highlight-fade-color: var(--yellow-400); --mp-highlight-keywo= rd-color: var(--blue-500); --mp-highlight-literal-color: var(--green-400); = --mp-label-color: var(--black-500); --mp-link-color: var(--blue-500); --mp-= main-bg-color: var(--white); --mp-muted-color: var(--black-350); --mp-popup= -shadow: var(--bs-sm); --mp-query-border-color: var(--black-225); --mp-resu= lt-border: solid .5px var(--black-350); --mp-warning-color: var(--red-500);= } body.read-only .askquestion, body.read-only .login-link, body.read-only .bo= okmark-off, body.read-only .vote-down-off, body.read-only .vote-up-off { op= acity: 0.3; } body.read-only .bookmark-off, body.read-only .vote-down-off, body.read-only= .vote-up-off { cursor: not-allowed; } .container { position: relative; width: 100%; flex: 1 0 auto; margin: 0px a= uto; text-align: left; } #content { box-sizing: content-box; margin: 0px auto; padding: 15px; width:= 1264px; background-color: rgb(255, 255, 255); } #content::before, #content::after { content: ""; display: table; } #content::after { clear: both; } .ask-page:not(.wizard) #content { min-height: 750px; overflow: visible; } body:not(.unified-theme) .container._full #content { padding: 0px; width: 1= 00%; } body:not(.unified-theme) .container._full #content .inner-content { box-siz= ing: content-box; margin: 0px auto; padding: 15px; width: 1264px; } body:not(.unified-theme) .container._full #content .inner-content::before, = body:not(.unified-theme) .container._full #content .inner-content::after { = content: ""; display: table; } body:not(.unified-theme) .container._full #content .inner-content::after { = clear: both; } .main-columns { display: flex; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .main-columns { flex-d= irection: column; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .main-columns { flex-directi= on: column; } } @media print { .main-columns { flex-direction: column; } } .main-columns #mainbar, .main-columns .mainbar { float: none; } .main-columns #sidebar, .main-columns .sidebar { float: none; margin-left: = 24px; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .main-columns #sidebar= , html.html__responsive:not(.html__unpinned-leftnav) .main-columns .sidebar= { margin-left: auto; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .main-columns #sidebar, html= .html__responsive.html__unpinned-leftnav .main-columns .sidebar { margin-le= ft: auto; } } @media print { .main-columns #sidebar, .main-columns .sidebar { margin-left: auto; } } .container__full { max-width: 100%; } .container__full .left-sidebar { display: none; } .container__full #content { padding: 0px; max-width: 100%; width: 100%; } .container .container--inner { max-width: 1264px; padding: 0 var(--su24); m= argin: 0px auto; } #header { margin: 0px auto; width: 1264px; height: 96px; padding: 0px 15px;= box-sizing: content-box; position: relative; } #questions, #answers { clear: both; width: 728px; } #questions { float: left; margin-bottom: 20px; } #question-header .question-hyperlink { font-size: var(--fs-headline1); font= -family: var(--theme-post-title-font-family, var(--theme-body-font-family))= ; line-height: 1.35; font-weight: normal; margin-bottom: 0px; } .question-summary { overflow: hidden; padding: 15px 0px; float: left; width= : 728px; border-bottom: 1px solid var(--black-150); } body.theme-highcontrast .question-summary { border-bottom-color: currentcol= or; } .question-summary .question-hyperlink { font-family: var(--theme-post-title= -font-family, var(--theme-body-font-family)); } .stats { margin: 0px; width: 58px; } .statscontainer { width: 78px; float: left; margin-right: 8px; margin-left:= 8px; color: var(--black-400); font-size: var(--fs-fine); } .statscontainer .views { width: 58px; } .statscontainer .status { padding: 7px 0px 5px; border-radius: var(--br-sm)= ; } .statscontainer .status strong { font-size: var(--fs-title); font-weight: n= ormal; } .narrow .status { display: inline-block; margin: 0px 3px 0px 0px; min-width= : 44px; height: auto; font-size: var(--fs-fine); padding: 6px; border: 1px = solid transparent; border-radius: var(--br-sm); } .narrow .started { width: auto; padding-top: 4px; white-space: nowrap; } .narrow .votes { display: inline-block; height: 38px; min-width: 38px; marg= in: 0px 3px 0px 0px; font-size: var(--fs-fine); color: var(--black-400); pa= dding: 6px; } .narrow .stats { background: none; margin: 0px 0px 0px 7px; padding: 0px; w= idth: auto; height: 48px; display: inline-block; } .narrow .views { display: inline-block; height: 38px; min-width: 40px; marg= in: 0px 7px 0px 0px; font-size: var(--fs-fine); color: var(--black-400); pa= dding: 7px 6px; } .narrow .summary { width: 530px; padding: 0px; float: left; } .narrow .summary h3 { margin-bottom: 0.35em; line-height: 1.3; } .narrow .cp { vertical-align: top; float: left; margin-right: 10px; } .narrow .mini-counts { font-size: var(--fs-body3); margin-bottom: 4px; } .votes { padding: 0px; margin-bottom: 8px; text-align: center; } .vote-count-post { display: block; font-size: var(--fs-title); } .vote-count-post strong { font-weight: normal; } .status { padding: 0px; margin-bottom: 8px; text-align: center; } .status strong { display: block; } .vote-count-separator { border-top: 1px solid var(--black-150); width: 36px= ; margin-top: 5px; margin-bottom: 5px; } .views { padding-top: 4px; text-align: center; } .views strong { display: block; } #question-suggestions { overflow: hidden; padding-bottom: 2px; font-size: v= ar(--fs-body2); } #question-suggestions .answer-hyperlink, #question-suggestions .question-hy= perlink { font-size: var(--fs-body1); } #question-suggestions .answer-votes { font-size: var(--fs-fine); line-heigh= t: 1.3; padding: 1px 0px 2px; font-weight: normal; } #question-suggestions label { margin: 10px 0px; } #question-suggestions .answer-summary { overflow: auto; display: flex; } .question-originals-of-duplicate.question-status { width: auto; margin: 10p= x 0px; padding: 10px; background-image: none; } .question-originals-of-duplicate p { margin: 0px; font-weight: bold; } .question-originals-of-duplicate ul { margin: 0px; } .question-originals-of-duplicate ul li { list-style-type: none; margin: 0px= ; } .question-originals-of-duplicate .question-originals-answer-count { font-st= yle: italic; padding-left: 5px; } .question-originals-of-duplicate #edit-or-approve-duplicate { margin: 15px = 0px 5px; } .question-originals-of-duplicate #edit-or-approve-duplicate #got-my-answer = { margin: 0px; } .question-originals-of-duplicate #edit-or-approve-duplicate > div { line-he= ight: 33px; } .question-status { margin-top: 15px; margin-bottom: 10px; padding: 15px 8px= 1px 60px; background-color: var(--black-150); border: var(--black-200); cl= ear: both; } .question-status h2 { font-size: var(--fs-body2); line-height: 18px; margin= -bottom: 10px; } .question-status p { font-size: var(--fs-body1); overflow-wrap: break-word;= } .question-status .site-specific-close-reason-status-list { margin-bottom: 0= px; } .question-status .close-status-suffix { display: block; margin-top: 10px; } .question-status .voter-history .badge1 { vertical-align: middle; } #answers { padding-top: 10px; } #answers-header { margin-top: 10px; width: 728px; } .question { clear: both; } .question .postcell { vertical-align: top; } .question-page #answers .answer { border-bottom: 1px solid var(--black-200)= ; } hr { border: 0px; color: var(--black-350); background-color: var(--black-35= 0); height: 1px; margin-bottom: 20px; } .date { text-align: right; width: 70px; white-space: nowrap; color: var(--b= lack-350); height: 35px; font-size: var(--fs-subheading); } .date_brick { float: right; width: 45px; color: var(--black-350); text-alig= n: center; line-height: 1.4; font-size: var(--fs-body1); margin-left: 10px;= padding-top: 5px; letter-spacing: 0px; overflow: hidden; } .revcell1 { width: 25px; cursor: pointer; text-align: right; } .revcell2 { width: 50px; cursor: pointer; font-size: 250%; font-weight: bol= d; color: var(--black-400); text-align: left; } .revcell3 { vertical-align: middle; width: 660px; padding-top: 8px; padding= -bottom: 5px; } .revcell4 { padding: 5px; width: 185px; } .revcell5 { margin-top: 10px; margin-left: 10px; } .unanswered .mini-counts span { color: var(--black-600); } .votecell { vertical-align: top; padding-right: 15px; } .votecell .vote-count-post { margin: 8px 0px; } .votecell .vote { min-width: 46px; } body.theme-highcontrast .votecell button, body.theme-highcontrast .votecell= a { color: var(--black-350); } body.theme-highcontrast .votecell button:hover, body.theme-highcontrast .vo= tecell a:hover, body.theme-highcontrast .votecell button:focus, body.theme-= highcontrast .votecell a:focus { color: var(--black-600); } #scroller { margin-top: 5px; } .answer { padding-bottom: var(--su16); padding-top: var(--su16); } .post-signature { text-align: left; vertical-align: top; width: 200px; } .owner { border-radius: var(--br-sm); background-color: var(--theme-post-ow= ner-background-color); } .new-contributor-indicator { background-color: var(--theme-post-owner-new-b= ackground-color); } .ai-content-policy-notice { background-color: var(--theme-post-owner-backgr= ound-color); } .affiliate-badge { color: var(--orange-400); } .owner .affiliate-badge { color: var(--black-500); } .downvoted-answer .comment-body, .downvoted-answer .post-signature, .downvo= ted-answer .s-prose, .downvoted-answer .vote > * { opacity: 0.5; transition= : opacity 0.5s; } .downvoted-answer .vote .message { opacity: 1; } .downvoted-answer:hover .comment-body, .downvoted-answer:hover .post-signat= ure, .downvoted-answer:hover .s-prose, .downvoted-answer:hover .vote > * { = opacity: 1; } .item-multiplier { margin-right: 4px; color: var(--black-400); } .reputation-score { font-weight: bold; font-size: var(--fs-caption); margin= -right: 2px; } .relativetime { text-decoration: none; } #notify-container { font-size: var(--fs-body3); text-align: center; positio= n: fixed; left: 0px; top: 0px; width: 100%; height: 0px; z-index: calc(var(= --zi-navigation-fixed) + 1); } #notify-container span.notify-close { float: right; margin-right: 20px; tex= t-decoration: none; display: block; cursor: pointer; } #notify-container span.notify-close a { text-decoration: none; font-size: v= ar(--fs-body3); font-weight: bold; color: rgb(255, 255, 255); } #notify-container div { color: rgb(255, 255, 255); padding: 9px 0px; backgr= ound: rgb(255, 153, 0); } .summarycount { text-align: center; font-size: var(--fs-headline1); line-he= ight: 1; } .summarycount + p { margin-bottom: 0px; } .lsep { margin: 0px 2px; color: rgb(27, 64, 114); font-size: 1px; visibilit= y: hidden; } .post-taglist { margin-bottom: 10px; clear: both; } .post-menu { padding-top: 2px; } .post-menu > a { padding: 0px 1px; color: var(--black-400); } .post-menu > a:hover { color: var(--black-500); text-decoration: none; } .post-menu .lsep { margin: 0px; padding: 0px; } .post-menu > :not(.s-popover) { display: inline-block; } .edit-tags-wrapper { padding-right: 40px; } .edit-tags-wrapper > a.s-tag.post-tag { margin-right: 6px; } .inline-tag-edit-link { padding: 0px 3px 2px; color: var(--black-400); } .inline-tag-edit-link:hover { color: var(--black-500); text-decoration: non= e; } .deleted-post { color: var(--red-500) !important; font-weight: bold !import= ant; } .deleted-post:hover { color: var(--white) !important; background-color: var= (--red-500) !important; } .search-highlight { color: var(--black-600); background-color: var(--yellow= -200); font-weight: bold; } .page-description { margin: 10px 0px; } .page-description:not(.s-prose) { font-size: var(--fs-body2); line-height: = 18px; } .content-page { padding: 20px 0px; } .content-page h2 { margin-bottom: 10px; font-size: 140%; font-weight: bold;= } .content-page h3 { margin-bottom: 10px; font-size: 120%; font-weight: bold;= } .user-info { box-sizing: border-box; padding: 5px 6px 7px 7px; color: var(-= -black-400); } .user-info::before, .user-info::after { content: ""; display: table; } .user-info::after { clear: both; } .user-info .user-gravatar32 { float: left; width: 32px; height: 32px; borde= r-radius: 1px; } .user-info .user-gravatar32 img { border-radius: 1px; } .user-info .user-gravatar32 ~ .user-details { margin-left: 8px; width: calc= (100% - 40px); } .user-info .user-gravatar48 ~ .user-details { margin-left: 8px; width: calc= (100% - 48px); } .user-info .user-gravatar64 ~ .user-details { margin-left: 8px; width: calc= (100% - 64px); } .user-info .user-action-time { margin-top: 1px; margin-bottom: 4px; font-si= ze: var(--fs-caption); } .user-info .user-details { float: left; width: 100%; } .user-info .-flair { display: block; } .user-info-td .user-info { padding: 0px; } .user-details { line-height: 17px; overflow-wrap: break-word; } .user-details .badgecount { font-weight: 400; font-size: var(--fs-caption);= } .user-details td { color: var(--black); padding: 4px 0px; } .revision td { background-color: var(--black-150); } .owner-revision td { background-color: var(--blue-300); } .revision-comment { color: var(--black-600); padding: 0px; } .answer-votes { color: var(--black-500); text-align: center; float: left; p= adding: 3px; min-width: 36px; min-height: 15px; text-decoration: none; bord= er-radius: 2px; } #mainbar h2, .mainbar h2, #mainbar h3, .mainbar h3, #mainbar h4, .mainbar h= 4 { font-weight: 400; } .answer-link { float: left; width: 700px; padding-left: 10px; color: var(--= black-500); } .answer-summary { padding: 3px; clear: both; } .bounty-indicator { float: left; color: var(--white); font-size: var(--fs-f= ine); padding: 0.2em 0.5em 0.25em; line-height: 1.3; background-color: var(= --blue-500); margin-right: 5px; border-radius: 2px; } .bounty-indicator-tab { color: var(--white); display: inline; background-co= lor: var(--blue-500); padding: 0.2em 0.5em 0.25em; margin-right: 5px; font-= size: var(--fs-fine); line-height: 1.3; border-radius: 2px; } .bounty p { margin-top: 10px; } #bounty-submit { box-shadow: var(--bs-sm); background-color: var(--red-500)= ; border-color: var(--red-400) var(--red-600) var(--red-600) var(--red-400)= ; border-style: solid; border-width: 1px 2px 2px 1px; color: rgb(255, 255, = 255); font-size: var(--fs-body2); font-weight: bold; margin: 3px; padding: = 4px; } .history-table { line-height: 180%; } .history-table .answer-hyperlink, .history-table .question-hyperlink { font= -size: var(--fs-body1); } .history-table span.revision-comment { line-height: 180%; } .history-table .comments { border-top: none; } .history-table p { margin-bottom: 10px; margin-top: 3px; } #noscript-warning { font-family: sans-serif; position: fixed; top: 0px; lef= t: 0px; width: 100%; z-index: var(--zi-navigation-fixed); text-align: cente= r; font-weight: bold; font-size: 120%; color: rgb(255, 255, 255); backgroun= d-color: var(--red-500); padding: 5px 0px; } #noscript-warning a { color: rgb(255, 255, 255); text-decoration: underline= ; } .nav ul { margin: 0px; } .nav ul li { display: inline-block; margin-left: 15px; } .nav ul li a { text-decoration: none; display: block; } .top-banner-message-container { width: 1264px; margin: 0px auto 14px; paddi= ng: 0px; box-sizing: content-box; position: relative; } .top-banner-message-container .message { width: 100%; } #sidebar, .sidebar { float: right; width: 300px; margin: 0px 0px 15px; } #sidebar .badge, .sidebar .badge, #sidebar .badge-tag, .sidebar .badge-tag,= #sidebar .s-tag.post-tag, .sidebar .s-tag.post-tag { margin-bottom: 0.5em;= } #sidebar h4, .sidebar h4 { margin-bottom: 1em; } #sidebar.ask-sidebar { width: 365px; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) #sidebar.ask-sidebar {= width: 300px; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav #sidebar.ask-sidebar { width= : 300px; } } @media print { #sidebar.ask-sidebar { width: 300px; } } #mainbar, .mainbar { float: left; width: 728px; margin: 0px; padding: 0px; = } #mainbar-full, .mainbar-full { width: 100%; padding: 0px; } #mainbar-full::before, .mainbar-full::before, #mainbar-full::after, .mainba= r-full::after { content: ""; display: table; } #mainbar-full::after, .mainbar-full::after { clear: both; } div.form-error { color: var(--red-500); font-weight: bold; font-size: 130%;= } .subheader { clear: both; margin-bottom: 10px; height: 40px; border-bottom:= 1px solid var(--black-200); } body.theme-highcontrast .subheader { border-color: currentcolor; } .subheader h1, .subheader h2 { float: left; margin-bottom: 0px; font-weight= : normal; } .subheader h1 { color: var(--black-500); font-size: var(--fs-subheading); l= ine-height: 2.22; } .subheader h2 { color: var(--black-500); font-size: var(--fs-subheading); } .subheader.tools-rev { margin-bottom: 10px; } .subheader a.link { color: var(--theme-link-color, var(--theme-secondary-40= 0)); } body.home-page .subheader, body.questions-page .subheader { margin-bottom: = 0px; } .cool, .mini-counts.cool { color: var(--black-400); } .coolbg { background-color: var(--black-400); color: var(--white); } .mini-counts.warm, .warm { color: var(--orange-600); } .hot, .mini-counts.hot { color: var(--orange-500); } .hotbg { background-color: var(--orange-500); color: var(--white) !importan= t; } .mini-counts.supernova, .supernova { color: var(--orange-400); } .supernovabg { background: var(--orange-400); } .answered, .answered .mini-counts, .answered strong { color: var(--green-40= 0); } .answered strong { font-weight: normal; font-size: var(--fs-title); } .answered-accepted { background-color: var(--green-400); } .answered-accepted, .answered-accepted .mini-counts, .answered-accepted .mi= nicounts span { color: rgb(255, 255, 255); } body.theme-highcontrast .answered-accepted, body.theme-highcontrast .answer= ed-accepted .mini-counts, body.theme-highcontrast .answered-accepted .minic= ounts span { color: var(--white); } .summary { float: left; width: 630px; } .summary h3 { font-size: var(--fs-body2); line-height: 1.4; margin-bottom: = 0.5em; } .excerpt { padding: 0px 0px 5px; margin: 0px; } .excerpt .started { float: right; width: 185px; height: 55px; margin-top: 5= px; } .excerpt p { margin-bottom: 3px; } .excerpt .tags { width: 410px; margin-top: 5px; } .tags { line-height: 18px; float: left; } .tags a:hover { text-decoration: none; } .started { width: 200px; float: right; line-height: 18px; } .started img { vertical-align: baseline; } .started .user-action-time { margin-bottom: 2px; } .started .reputation-score, .started .user-info { color: var(--black-400); = } .started .mod-flair, .started a:not(.started-link) { font-size: var(--fs-ca= ption); color: var(--theme-link-color, var(--theme-secondary-400)); } .started .mod-flair:hover, .started a:not(.started-link):hover { color: var= (--theme-link-color-hover, var(--theme-secondary-400)); } .started-link { font-size: var(--fs-caption); color: var(--black-350); } .started-link:hover { color: var(--theme-link-color, var(--theme-secondary-= 400)); } .mod-flair { color: var(--theme-link-color, var(--theme-secondary-400)); ma= rgin-left: 3px; font-weight: bold; font-size: var(--fs-body2); line-height:= 1; } .module { margin-bottom: 1.5em; } .module:not(.s-sidebarwidget) .spacer { margin-bottom: 8px; } .module:not(.s-sidebarwidget) ul { margin-left: 15px; list-style-type: squa= re; margin-right: 30px; line-height: 120%; } .module:not(.s-sidebarwidget) li { margin-bottom: 4px; } .module:not(.s-sidebarwidget) h4 { font-size: var(--fs-body2); color: var(-= -black-500); font-weight: normal; } .newuser { padding: 15px 15px 10px; background-color: rgb(255, 248, 220); b= order: 1px solid rgb(224, 220, 191); font-size: var(--fs-body2); } .vote { text-align: center; } .vote span { display: block; color: var(--black-400); } .s-prose .s-tag.post-tag { margin-bottom: 0px !important; } @media screen { .diffs .spoiler > *, .body-diffs .spoiler > * { opacity: 0.3; } .diffs .spoiler > :hover, .body-diffs .spoiler > :hover { opacity: 1; } } .form-item { padding: 10px 0px 15px; } .form-item label:not(.s-label) { display: block; font-weight: bold; padding= -bottom: 3px; } span.feed-icon { display: inline-block; text-decoration: none; vertical-ali= gn: middle; background-position: -79px -320px; width: 24px; height: 16px; } span.form-error { color: rgb(153, 0, 0); font-weight: bold; margin-left: 5p= x; font-size: 90%; } .post-editor { margin-top: 10px; width: 660px; box-sizing: border-box; } .edit-block { display: none; } .page-sizer, .pager { margin: 20px 0px; } .page-sizer a, .pager a, .page-sizer a:hover, .pager a:hover { text-decorat= ion: none; } .leftcol { width: 390px; padding-top: 20px; } .rightcol { padding-top: 20px; } .system-alert { padding: 10px; font-weight: bold; margin-bottom: 10px; marg= in-top: 5px; border: 1px dotted rgb(174, 0, 0); } #popup-flag-post textarea { width: 590px; max-width: 100%; } #start-bounty-popup { width: 500px; } #start-bounty-popup textarea { width: 550px; max-width: 100%; } .edit-tags { padding: 5px 0px 0px 15px; } .close-reasons input { border: none; cursor: pointer; } .close-reasons li { list-style-type: none; } .close-reasons li td.close-desc { color: rgb(99, 107, 116); padding-top: 2p= x; padding-bottom: 8px; line-height: 130%; } .close-reasons tr td:last-child { cursor: pointer; padding-left: 0.5em; } .close-reasons span.close-reason { font-weight: bold; } .item-multiplier-count { font-size: var(--fs-fine); color: var(--black-400)= ; } span.diff-delete { text-decoration: line-through; color: var(--red-600); ba= ckground-color: var(--red-300); } body.theme-highcontrast span.diff-delete { background-color: var(--red-200)= ; } img.diff-delete { border: 2px solid var(--red-400); opacity: 0.5; } span.diff-add { background: var(--green-300); color: var(--green-600); } body.theme-highcontrast span.diff-add { background-color: var(--green-200);= } img.diff-add { border: 2px solid var(--green-400); } .tagged-ignored { opacity: 0.35; background: transparent; } .tagged-ignored-hidden { display: none !important; } .tagged-interesting { background-color: var(--yellow-200); } @media (prefers-color-scheme: dark) { body.theme-system .tagged-interesting { background-color: var(--black-100= ); } } body.theme-dark .tagged-interesting, .theme-dark__forced .tagged-interestin= g, body.theme-system .theme-dark__forced .tagged-interesting { background-c= olor: var(--black-100); } .s-post-summary__watched { background-color: var(--yellow-200); } @media (prefers-color-scheme: dark) { body.theme-system .s-post-summary__watched { background-color: var(--blac= k-100); } } body.theme-dark .s-post-summary__watched, .theme-dark__forced .s-post-summa= ry__watched, body.theme-system .theme-dark__forced .s-post-summary__watched= { background-color: var(--black-100); } #interestingTag { font-size: var(--fs-caption); margin-right: 5px; } #ignoredTag { font-size: var(--fs-caption); margin-right: 5px; } .everyoneloves__top-leaderboard, .everyoneloves__mid-leaderboard, .everyone= loves__mid-second-leaderboard, .everyoneloves__bot-mid-leaderboard, .everyo= neloves__tag-sponsorship { width: 728px; } .everyoneloves__inline-sidebar { display: none; } .zone-container-responsive { display: none; } .welovestackoverflow { padding: 10px; line-height: 1.3; overflow: hidden; m= argin-bottom: 8px; border: 2px solid var(--black-200); } .welovestackoverflow a { color: var(--theme-link-color, var(--theme-seconda= ry-400)); } .tagged { margin-top: 5px; } .related { line-height: 1.3; font-size: var(--fs-caption); } .related a { font-size: var(--fs-caption); font-weight: normal; } .linked { line-height: 1.3; font-size: var(--fs-caption); } .linked a { font-size: var(--fs-caption); font-weight: normal; } .space { padding-top: 20px; } .label-key { color: var(--black-350); font-size: var(--fs-body2); } .label-key b, .label-key strong { color: var(--black-500); font-weight: nor= mal; } .bottom-notice { margin-top: 15px; font-weight: normal; padding: 0px 10px 0= px 0px; line-height: 1.4; font-size: var(--fs-body3); } #question-mini-list { margin-bottom: 30px; } .tag-col { width: 184px; } .accept-reminder { clear: both; text-align: center; margin: 0px 0px 8px; co= lor: maroon; } .pager-answers { padding-top: 10px; overflow: hidden; clear: both; } .ac_results { padding: 0px; border: 1px solid var(--black-400); background-= color: var(--white); overflow: hidden; z-index: 10000; text-align: left; } .ac_results ul { width: 100%; list-style: none; padding: 0px; margin: 0px; = } .ac_results li { margin: 0px; padding: 2px 5px; cursor: default; display: b= lock; line-height: 16px; overflow: hidden; } .ac_highlight { font-weight: bold; text-decoration: underline; } .ac_loading { background: url("../../Img/progress-dots.gif?v=3D679ddd617b7d= ") right center no-repeat rgb(255, 255, 255); } .ac_over { color: rgb(255, 255, 255); background-color: var(--theme-primary= ); } @media print { * { position: relative; } .site-footer, #header, #hlinks, #nav, #sidebar, #tabs, #feed-link, .bount= y-link, .comments-link, .notify, .post-comments, .post-menu, .s-topbar, .ta= bs, div.vote, form, h2.bottom-notice, td.votecell { display: none; } .container, body { height: auto; font-size: 10pt !important; overflow: vi= sible !important; } .container { width: 710px; } #answers, #content, #mainbar, #question-header, .container, .s-prose, .qu= estion { width: 100%; float: none !important; overflow: visible !important;= } pre { max-height: none; display: block; width: 600px; height: auto; overf= low-x: auto; white-space: pre-wrap; overflow-wrap: break-word; clear: both;= } code, pre { font-size: 9pt !important; } #answers-header { clear: both; break-after: avoid; } .comments { font-size: 9pt; width: 650px; } #mainbar { margin: 0px; } .s-prose { width: 90%; } #content { width: auto; height: 100%; overflow: auto; border: none; } .answer { width: 700px; overflow-y: auto; } } .comment-up-off, .comment-flag-off { color: var(--black-350); opacity: 0.4;= cursor: pointer; } .comment-up-off:hover, .comment-up-on { color: var(--theme-primary); cursor= : pointer; opacity: 1; } .comment-flag-on, .comment-flag:hover, .flag-on { color: var(--red-400); } .delete-tag { width: 14px; height: 14px; vertical-align: middle; display: i= nline-block; background-position: -40px -319px; cursor: pointer; margin-lef= t: 3px; margin-top: -2px; margin-bottom: -1px; } .delete-tag-active, .delete-tag:hover { background-position: -40px -340px; = } .badge-earned-check { width: 20px; display: inline-block; background-positi= on: -20px -322px; height: 10px; position: relative; top: 1px; } .vote-accepted-bounty, .vote-accepted-off, .vote-accepted-on { display: blo= ck; margin: 0px auto; } .expander-arrow-hide { display: inline-block; width: 20px; height: 15px; ba= ckground-position: 0px -380px; } .expander-arrow-show { display: inline-block; width: 20px; height: 15px; ba= ckground-position: -20px -380px; } .expander-arrow-small-hide { display: inline-block; width: 8px; height: 13p= x; background-position: 0px -380px; } .expander-arrow-small-show { display: inline-block; width: 13px; height: 8p= x; background-position: -20px -383px; } .anonymous-gravatar { display: inline-block; width: 32px; height: 32px; bac= kground-position: 0px -400px; } .vcard { margin-top: 10px; } .mod-flag-indicator { color: var(--white); display: inline; margin-right: 5= px; font-size: var(--fs-fine); line-height: 1; border-radius: 2px; padding:= 0.2em 0.5em 0.25em !important; } .tag-popup { width: 390px; padding: var(--su12); } @media screen and (max-width: 398px) { html.html__responsive .tag-popup { width: 100vw; min-width: 320px; } } @media print { .tag-popup { width: 100vw; min-width: 320px; } } .tag-popup .-container { position: relative; background-color: var(--white)= ; border: 1px solid var(--black-300); border-radius: var(--br-md); padding:= var(--su16); font-size: var(--fs-body1); box-shadow: var(--bs-md); } .tag-popup .-arrow { position: absolute; display: none; left: 50%; } .tag-popup .-arrow::before { position: absolute; content: ""; background: v= ar(--white); border-top-color: ; border-top-style: ; border-top-width: ; bo= rder-left-color: ; border-left-style: ; border-left-width: ; border-image-s= ource: ; border-image-slice: ; border-image-width: ; border-image-outset: ;= border-image-repeat: ; border-bottom: none; border-right: none; top: -6px;= left: -6px; width: var(--su-static12); height: var(--su-static12); } .tag-popup .-arrow.-top { display: block; transform: rotate(45deg); top: -1= px; } .tag-popup .-arrow.-bottom { display: block; transform: rotate(225deg); bot= tom: -1px; } body.theme-dark .tag-popup .-container { background-color: var(--black-200)= ; border-color: transparent; box-shadow: var(--bs-lg); } body.theme-dark .tag-popup .-arrow::before { background: var(--black-200); = border-color: transparent; } @media (prefers-color-scheme: dark) { body.theme-system .tag-popup .-container { background-color: var(--black-= 200); border-color: transparent; box-shadow: var(--bs-lg); } body.theme-system .tag-popup .-arrow::before { background: var(--black-20= 0); border-color: transparent; } } #user-menu { border-radius: 2px; border: 1px solid var(--black-600); backgr= ound-color: var(--black-500); color: var(--black-200); text-align: left; pa= dding: 10px; box-shadow: var(--bs-sm); font-family: var(--ff-sans); z-index= : 320; position: relative; width: 300px; font-size: var(--fs-fine); line-he= ight: 1.2; } #user-menu .um-gravatar { float: left; margin-right: 0.8em; margin-bottom: = 0.75em; } #user-menu .um-header-info .mod-flair, #user-menu .um-header-info .um-user-= link { font-size: var(--fs-subheading); color: var(--black-200) !important;= } #user-menu .um-header-info .um-flair .badgecount, #user-menu .um-header-inf= o .um-flair .reputation-score { color: var(--black-200); } #user-menu .um-about-me { clear: both; font-size: var(--fs-fine); margin: 5= px 0px; overflow: hidden; } #user-menu .um-links a { margin-right: 8px; font-size: var(--fs-fine); } #user-menu a, #user-menu a:visited { color: var(--blue-400); text-decoratio= n: none; } #user-menu a:hover { color: var(--blue-300); } .ask-mainbar, #mainbar.ask-mainbar { width: 665px; } .ask-mainbar #excerpt, #mainbar.ask-mainbar #excerpt { box-sizing: border-b= ox; } td.answercell { vertical-align: top; } .nowrap { white-space: nowrap; } code { white-space: pre-wrap; padding: 1px 5px; } pre code { white-space: inherit; padding: 0px; } .user-timeline-deleted-action { display: block; color: rgb(99, 107, 116); f= ont-size: var(--fs-fine); } .expandable-question-summary { float: none; } .expandable-question-summary:not(.is-expanded) { position: relative; } .expandable-question-summary:not(.is-expanded) .expandable-question-summary= __body { height: 100px; overflow: hidden; position: relative; } .expandable-question-summary:not(.is-expanded) .expandable-question-summary= __body::after { content: ""; display: block; position: absolute; height: 50= %; left: 0px; bottom: 0px; right: 0px; background: linear-gradient(rgba(255= , 255, 255, 0), rgb(255, 255, 255)) left center repeat; } .tag-sponsorship { height: 135px; overflow: hidden; width: 100%; padding-bo= ttom: 5px; } .disabled-link { color: rgb(99, 107, 116); opacity: 0.6; padding: 0px 3px 2= px; } .disabled-button { opacity: 0.6; cursor: default !important; } .show-votes .sidebar-linked .spacer, .show-votes .sidebar-related .spacer {= margin-bottom: 12px; display: flex; } .show-votes .sidebar-linked .spacer > a:first-child, .show-votes .sidebar-r= elated .spacer > a:first-child { padding-right: 10px; } .show-votes .sidebar-linked .spacer > a:first-child .answer-votes, .show-vo= tes .sidebar-related .spacer > a:first-child .answer-votes { margin-top: 3p= x; padding: 3px 0px; white-space: nowrap; width: 38px; text-align: center; = box-sizing: border-box; height: auto; float: none; border-radius: 2px; font= -size: 90%; background-color: var(--black-150); color: var(--black-500); tr= ansform: translateY(-1px); } .show-votes .sidebar-linked .spacer > a:first-child .answer-votes.answered-= accepted, .show-votes .sidebar-related .spacer > a:first-child .answer-vote= s.answered-accepted { color: var(--white); background-color: var(--green-40= 0); } .show-votes .sidebar-linked .spacer > a:first-child .answer-votes.extra-lar= ge, .show-votes .sidebar-related .spacer > a:first-child .answer-votes.extr= a-large, .show-votes .sidebar-linked .spacer > a:first-child .answer-votes.= large, .show-votes .sidebar-related .spacer > a:first-child .answer-votes.l= arge { padding: 3px 0px; min-width: 16px; } .show-votes .sidebar-linked .spacer > a.question-hyperlink, .show-votes .si= debar-related .spacer > a.question-hyperlink { display: inline-block; width= : calc(100% - 48px); margin-bottom: 0px; } .comments .deleted-comment, .comments .deleted-comment:hover { background-c= olor: var(--red-100); } .comments .deleted-comment .deleted-comment-info { color: rgb(182, 84, 84);= display: block; text-align: right; } .comments .deleted-comment .deleted-comment-info a { text-decoration: none;= border-bottom: 0px; } .highlighted-post { animation: 3s ease-out 0s 1 normal none running highlig= hted-post-fade; } @keyframes highlighted-post-fade {=20 0% { background-color: var(--yellow-200); } 100% { background-color: rgba(0, 0, 0, 0); } } .deleted-answer { margin-left: calc(var(--su24) * -1); padding-left: var(--= su24); margin-top: -1px; background-color: var(--red-100); border-top: 1px = solid var(--red-300); width: auto !important; } .deleted-answer pre, .deleted-answer pre code { background-color: inherit; = } .deleted-answer .hidden-deleted-answer a, .deleted-answer .hidden-deleted-q= uestion a { font-weight: bold; text-decoration: underline; } .deleted-answer .comments .comment:hover { background-color: var(--red-100)= ; } .deleted-answer .comments .deleted-comment, .deleted-answer .comments .dele= ted-comment:hover { background-color: var(--red-100); } .deleted-answer .comments .deleted-comment .undelete-comment, .deleted-answ= er .comments .deleted-comment:hover .undelete-comment { display: none; } .deleted-answer-info { color: rgb(182, 84, 84); margin-top: 10px; margin-le= ft: 3px; } .comment-date, .comment-date > a, .comment-date > a:hover { border-bottom: = none; color: var(--black-350); } .existing-flag-count::before { content: "("; } .existing-flag-count::after { content: ")"; } .popup-submit { float: right; } .popup-cancel { float: left; } .popup-close { float: right; } .popup-close a { padding: 3px 6px 2px; font-size: var(--fs-body3); font-wei= ght: normal; background-color: rgb(12, 13, 14); font-family: Arial, Helveti= ca, sans-serif; line-height: 1; color: rgb(255, 255, 255) !important; } .popup-close a:hover { text-decoration: none; } #popup-close-question { width: 800px; } #popup-close-question #close-question-form { overflow: hidden; } #popup-close-question #close-question-form.close-question-voted label span = { cursor: default !important; } #popup-close-question #close-question-form.close-question-voted input[type= =3D"submit"] { visibility: hidden; } #popup-close-question .action-list > li { width: auto; } #popup-close-question .popup-pane, #popup-close-question .popup-subpane { m= in-height: 430px; } #popup-close-question .bounty-indicator-tab { margin-left: 3px; } #popup-close-question .popup-actions { text-align: right; margin-bottom: 2p= x; } #popup-close-question .popup-actions .last-flag-details { display: inline-b= lock; line-height: 17px; text-align: left; } #popup-close-question .popup-actions .popup-submit { float: none; } .close-as-duplicate-pane .search-prompt { font-weight: bold; } .close-as-duplicate-pane .search-errors { color: var(--red-600); text-align= : left; font-weight: bold; font-size: var(--fs-body1); height: 13px; margin= : 4px 0px; } .close-as-duplicate-pane .original-display { margin: 13px 0px; } .close-as-duplicate-pane .original-display .navi-container { font-weight: b= old; color: var(--black-600); margin-bottom: 7px; } .close-as-duplicate-pane .original-display .navi-container .navi { display:= inline-block; margin-right: 5px; } .close-as-duplicate-pane .original-display .preview { height: 310px; overfl= ow-y: auto; border: 1px solid var(--black-350); padding: 7px 0px; } .close-as-duplicate-pane .original-display .preview .show-original .show-ti= tle { font-size: var(--fs-body3); margin: 3px 0px 10px; } .close-as-duplicate-pane .original-display .preview .show-original .answer-= count { font-size: var(--fs-body2); font-weight: bold; border-bottom: 1px s= olid var(--black-350); padding: 5px; margin: 0px 3px 0px 5px; } .close-as-duplicate-pane .original-display .preview .show-original .answer = { border-bottom-color: var(--black-250); } .close-as-duplicate-pane .original-display .list-originals { height: 310px;= overflow-y: auto; border: 1px solid var(--black-350); padding: 7px 0px; } .close-as-duplicate-pane .original-display .list-originals .list { padding:= 0px 8px; } .close-as-duplicate-pane .original-display .list-originals .list .item { fl= oat: left; padding: 9px 5px 9px 0px; border-bottom: 1px solid var(--black-2= 25); cursor: pointer; } .close-as-duplicate-pane .original-display .list-originals .list .item:last= -child { border-bottom: 0px; } .close-as-duplicate-pane .original-display .list-originals .list .item .sta= ts { float: left; margin: 0px 10px 0px 0px; padding: 4px 7px 6px; width: 58= px; } .close-as-duplicate-pane .original-display .list-originals .list .item .sum= mary { width: 605px; float: left; } .close-as-duplicate-pane .original-display .list-originals .list .item .pos= t-link { font-weight: bold; font-size: var(--fs-body2); margin-bottom: 5px;= } .close-as-duplicate-pane .original-display .list-originals .list .item .pos= t-link a:hover { border-bottom: 0px; text-decoration: none !important; } .close-as-duplicate-pane .original-display .list-originals .list .item .bou= nty-indicator-tab { margin-left: 3px; } .close-as-duplicate-pane .original-display .list-originals .list .item .pos= t-type-abbr { font-weight: bold; } .close-as-duplicate-pane .original-display .list-originals .list .item .vot= es-and-usages { color: var(--black-350); } .close-as-duplicate-pane .original-display .list-originals .list .item .bod= y-summary { line-height: 15px; color: var(--black-600); } .close-as-duplicate-pane .original-display .list-originals .list .item.hove= r { background-color: var(--black-200); } .migration-pane .migration-targets td { vertical-align: middle; } .migration-pane .migration-targets .target-icon { min-width: 58px; min-heig= ht: 58px; } .migration-pane .migration-targets .target-icon img { width: 58px; height: = 58px; } .popup-tab-content { clear: both; } .action-list:not(.popup-condensed) { margin-right: 5px; margin-left: 5px !i= mportant; margin-bottom: 10px !important; } .action-list:not(.popup-condensed) > li { width: 650px; max-width: 100%; } .action-list:not(.popup-condensed) li { list-style-type: none; padding: 6px= ; } .action-list:not(.popup-condensed) li > label { display: block; margin: 5px= 0px; } .popup._hidden-descriptions .action-list:not(.popup-condensed) li > label {= margin: 0px; } .action-list:not(.popup-condensed) input[type=3D"radio"] { margin-right: 1p= x; margin-top: 1px; } .action-list:not(.popup-condensed) .action-desc, .action-list:not(.popup-co= ndensed) .action-name { cursor: pointer; margin-left: 5px; } .action-list:not(.popup-condensed) .action-disabled-reason-muted { color: v= ar(--black-400); margin-left: 18px; } .action-list:not(.popup-condensed) .action-name { font-weight: bold; font-s= ize: 105%; vertical-align: top; } .action-list:not(.popup-condensed) .action-desc { display: block; color: va= r(--black-400); line-height: 115%; padding: 0px 0px 0px 18px; margin-top: -= 17px; } .action-list:not(.popup-condensed) .action-desc p:last-child { margin-botto= m: 0px; } .action-list:not(.popup-condensed) .action-subform p:last-child { margin-bo= ttom: 1em; } .action-list:not(.popup-condensed) .action-name ~ .action-desc { padding-to= p: 23px; } .action-list:not(.popup-condensed) .action-disabled span { color: var(--bla= ck-350); font-weight: normal; cursor: default !important; } .action-list:not(.popup-condensed) .action-selected { background-color: var= (--black-200); } .action-list:not(.popup-condensed) .action-subform { display: none; margin:= 15px auto; width: 535px; max-width: 100%; } .action-list:not(.popup-condensed) .action-subform .wide { width: 400px; } .action-list:not(.popup-condensed) h4 { margin-bottom: 5px; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .responsively-horizont= ally-centered-legacy-popup { width: 800px; margin: 0px auto; max-width: 90v= w !important; left: 0px !important; right: 0px !important; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .responsively-horizontally-c= entered-legacy-popup { width: 800px; margin: 0px auto; max-width: 90vw !imp= ortant; left: 0px !important; right: 0px !important; } } @media print { .responsively-horizontally-centered-legacy-popup { width: 800px; margin: = 0px auto; max-width: 90vw !important; left: 0px !important; right: 0px !imp= ortant; } } #tags-table .answer-votes { margin-right: 5px; width: 25px; margin-top: 2px= ; display: inline-block; float: none; } #tags-browser { width: 100%; } #overlay-header { opacity: 0; display: none; background: var(--black-150); = font-size: var(--fs-body3); font-weight: normal; text-align: center; left: = 0px; padding: 0.5em 10%; position: fixed; top: 0px; width: 100%; z-index: c= alc(var(--zi-navigation-fixed) + 2); box-shadow: var(--bs-sm); } #overlay-header .close-overlay { color: var(--black-350); cursor: pointer; = font-size: var(--fs-caption); font-weight: normal; } .mod-post-actions { padding: 2px; line-height: 20px; } .bounty-indicator-tab.flagbg { background-color: var(--red-400) !important;= } .answer-votes { cursor: pointer; } .answer-votes.large { font-size: 90%; padding-top: 4px; padding-bottom: 2px= ; } .answer-votes.extra-large { font-size: 90%; padding-top: 4px; padding-botto= m: 2px; min-width: 32px; } .quality-score { font-size: 80%; margin-right: 10px; } .revision-comment.blur { color: rgb(167, 173, 180); } .revision-comment { line-height: 20px; } .full-diff { table-layout: fixed; width: 100%; } .full-diff .content { font-family: var(--ff-mono); font-size: var(--fs-capt= ion); } .full-diff td { vertical-align: top; margin-right: 5px; border-left: 4px so= lid var(--white); border-right: 4px solid var(--white); } .full-diff td.content { width: 50%; max-width: 50%; overflow-wrap: break-wo= rd; white-space: pre-wrap; color: var(--black-350); } .full-diff .deleted > div { background-color: var(--red-100); } .full-diff .inserted > div { background-color: var(--green-100); } .full-diff td.content.deleted, .full-diff td.content.inserted { background-= color: transparent; color: inherit; } .full-diff .skip { text-align: center; padding: 10px; background-color: var= (--black-150); color: var(--black-350); border-top: 4px solid var(--white);= border-bottom: 4px solid var(--white); } .suggested-edit { width: 960px; } .suggested-edit .summary { width: 910px; } .suggested-edit .score { display: block; background: rgb(241, 242, 243); pa= dding: 8px 8px 6px; color: rgb(59, 64, 69); font-size: 120%; font-weight: b= old; margin-bottom: 30px; text-decoration: none; text-align: center; width:= 15px; } .suggested-edit .revision { display: block; margin-bottom: 8px; } .suggested-edit .revision-comment { padding-right: 8px; } .suggested-edit .body-diffs { margin-top: 18px; } .suggested-edit .body-diffs td { vertical-align: top; } .suggested-edit .body-diffs table { table-layout: fixed; width: 900px; } .suggested-edit .body-diffs .full-diff { width: 900px; } .suggested-edit .body-diffs .full-diff td.content { width: 435px; max-width= : 435px; } .suggested-edit .body-diffs .full-html-diff .s-prose { width: 435px; max-wi= dth: 435px; } .suggested-edit .body-diffs .full-html-diff .s-prose img { max-width: 430px= ; } .suggested-edit .body-diffs .full-html-diff .gutter { width: 30px; max-widt= h: 30px; } .suggested-edit .body-diffs .full-html-diff th { color: var(--black-350); p= adding: 6px 0px 4px; } .suggested-edit .user-info-actions { width: 900px; } .suggested-edit .user-info-actions .started { float: none !important; } .suggested-edit .user-info-actions .current-owner { width: 445px; } .suggested-edit .user-info-actions .gutter { width: 7px; } .suggested-edit .user-info-actions .actions { text-align: right; } .suggested-edit .user-info-actions .form-error { padding: 15px 0px 5px; dis= play: none; } .lightbox { display: none; background: rgb(0, 0, 0); opacity: 0.7; position= : absolute; top: 0px; left: 0px; min-width: 100%; z-index: var(--zi-modals-= background); } .lightbox-panel { display: none; z-index: 1001; border: 0px !important; } div.form-field-error.form-error { font-size: var(--fs-caption); display: bl= ock; margin-top: -15px; } #hot-network-questions h4 a { font-weight: inherit; font-size: inherit; wid= th: inherit; } #hot-network-questions ul { margin: 0px; } #hot-network-questions li { list-style-type: none; white-space: nowrap; mar= gin-bottom: 10px; margin-left: 0px; } #hot-network-questions .favicon, #hot-network-questions a, #hot-network-que= stions img { display: inline-block; vertical-align: top; } #hot-network-questions .favicon, #hot-network-questions img { margin: 2px 6= px 0px 0px; } #hot-network-questions a { font-weight: normal; font-size: var(--fs-caption= ); white-space: normal; width: 90%; } #hot-network-questions .show-more { margin-left: 22px; } .questions-page .show-more, .tagged-questions-page .show-more, .tags-page .= show-more { display: block; margin: 5px 0px; } .more-arrow { display: block; margin-top: 5px; } .tag-editor { cursor: text; background-color: var(--white); position: relat= ive; overflow: hidden; white-space: normal; height: auto !important; min-he= ight: 37px !important; padding-top: var(--su2) !important; padding-bottom: = var(--su2) !important; } .tag-editor .rendered-element { margin: 2px; font-size: var(--fs-caption); = } .tag-editor input { margin: 0px 3px; height: 25px; border: none !important;= box-shadow: none !important; outline: 0px !important; padding: 0px !import= ant; background-color: transparent !important; } .tag-editor input[type=3D"text"] { margin: 0px; height: 29px; box-sizing: c= ontent-box; } .tag-editor input[type=3D"text"]:not([placeholder=3D""]) { min-width: 100%;= } .tag-editor:not(.s-input) { border: 1px solid var(--black-250); } .tag-editor:not(.s-input) span:not(:empty) + input { padding-left: var(--su= 4) !important; } .tag-editor:not(.s-input) input[type=3D"text"]:not([placeholder=3D""]) { fo= nt-size: var(--fs-body1); } .tag-editor.s-input { padding-left: 2px !important; } .tag-editor.s-input input { padding-left: calc(0.7em - 2px) !important; } .tag-editor.s-input span:not(:empty) + input { padding-left: var(--su4) !im= portant; } .tag-editor.s-input:focus-within { box-shadow: 0 0 0 var(--su-static2) var(= --white),0 0 0 var(--su-static4) var(--theme-secondary-400); } #tagnames { width: 100%; } .tag-suggestions { background-color: var(--white); border: 1px solid var(--= black-250); padding: var(--su4); z-index: 300; border-radius: var(--br-md);= box-shadow: var(--bs-md); display: flex; flex-wrap: wrap; } .tag-suggestions > div { padding: var(--su8); width: 200px; overflow: hidde= n; position: relative; border-radius: var(--br-sm); cursor: pointer; } .tag-suggestions > div:focus { background-color: var(--black-200); } .tag-suggestions > div:focus .more-info { background-color: var(--black-200= ); } .tag-suggestions > div:hover { background-color: var(--black-150); } .tag-suggestions > div:hover .more-info { background-color: var(--black-150= ); } .tag-suggestions > div p { font-size: var(--fs-fine); line-height: var(--lh= -sm); } .tag-suggestions > div p.more-info { visibility: hidden; position: absolute= ; margin-bottom: 0px; right: 5px; top: 7px; padding: 3px; } .tag-suggestions > div p.more-info a { text-indent: -9999em; width: 16px; h= eight: 16px; border: 1px solid rgb(99, 107, 116); box-sizing: border-box; b= order-radius: 50%; display: inline-block; position: relative; transition: n= one; } .tag-suggestions > div p.more-info a::after, .tag-suggestions > div p.more-= info a::before { content: ""; width: 2px; height: 2px; position: absolute; = left: 6px; top: 3px; display: inline-block; background-color: rgb(99, 107, = 116); } .tag-suggestions > div p.more-info a::after { top: 6px; height: 5px; } .tag-suggestions > div p.more-info a:hover { border-color: var(--theme-link= -color, var(--theme-secondary-400)); } .tag-suggestions > div p.more-info a:hover::after, .tag-suggestions > div p= .more-info a:hover::before { background-color: var(--theme-link-color, var(= --theme-secondary-400)); } .tag-suggestions > div:focus p.more-info, .tag-suggestions > div:hover p.mo= re-info { visibility: visible; } .tag-suggestions .match { font-weight: bold; text-decoration: underline; } .search-prompt { padding-right: 3px; } .tools-rev-dim-link { color: rgb(167, 173, 180) !important; } .tools-rev h1 .lsep { color: rgb(214, 217, 220); visibility: visible; font-= size: 100%; margin-left: 5px; margin-right: 5px; } .diff-skipped > div { border-bottom: 2px dotted rgb(208, 208, 208); } .diff-skipped { padding: 4px 0px 8px; cursor: pointer; } a.bounty-link { padding: 0px 3px 2px; } .comment-form form { position: relative; } #tabcomplete { position: absolute; top: -17px; margin-left: 5px; } #tabcomplete li { display: inline; background-color: rgb(255, 255, 255); co= lor: rgb(0, 0, 0); padding: 2px; margin-right: 5px; border: 1px solid rgb(9= 9, 107, 116); cursor: pointer; } #tabcomplete li.chosen { font-weight: bold; } .comments { -webkit-tap-highlight-color: rgba(255, 255, 255, 0); } span.highlight { background-color: rgb(255, 255, 119); } textarea { resize: none; } .new-post-activity, .new-answer-activity { background-color: var(--black-15= 0); } .post-section-title { font-weight: bold; font-size: 120%; } .title-search-float { border: 1px solid rgb(0, 0, 0); z-index: 99; backgrou= nd: rgb(255, 255, 255); } .title-search-container { max-height: 150px; overflow: hidden scroll; } .title-float-selected { background-color: rgb(0, 255, 255); height: 24px; } .title-loading { background-image: url("../../Img/progress-dots.gif?v=3D679= ddd617b7d"); background-repeat: no-repeat; background-position: right cente= r; } #show-editor-button { margin-bottom: 8px; } .ask-page .privacy-policy-agreement, .question-page .privacy-policy-agreeme= nt { margin-top: 15px; } .newsletter-popup .privacy-policy-agreement { margin-top: 15px; font-size: = 90%; } .privacy-policy-agreement { font-style: italic; } body.read-only .login-link { opacity: 0.3; } body.read-only #question-header .btn, body.read-only #questions-count .btn,= body.read-only .askquestion { opacity: 0.3; } body.read-only .bookmark-off, body.read-only .vote-down-off, body.read-only= .vote-up-off { opacity: 0.3; cursor: not-allowed; } .review-post-author-guidance { background: var(--black-150); border: var(--= black-200); padding: 10px; } .review-post-author-guidance p:last-child { margin-bottom: 0px; } .facebook-login, .facebook-login:hover { color: rgb(255, 255, 255); backgro= und-color: rgb(57, 86, 151); } .module { overflow-wrap: break-word; } .module p.took-ms { font-size: 0.9em; } .module p.side-desc { margin-bottom: 0.1em; } #tag-suggestions { min-height: 30px; margin-bottom: 10px; } #tag-suggestions .s-tag.post-tag { margin-right: 6px; } #tag-suggestions span.s-tag.post-tag { opacity: 0.5; } .general-error { color: rgb(192, 72, 72); font-weight: bold; margin-bottom:= 10px; } .general-success { color: rgb(68, 180, 73); font-weight: bold; margin-botto= m: 10px; } .validation-error { border-color: rgb(192, 72, 72) !important; } .val-message { margin: var(--su24) auto; padding: var(--su32); width: 100%;= max-width: 640px; border: 1px solid transparent; color: rgb(12, 13, 14); t= ext-align: center; } .val-message p { margin-bottom: 0.5em; padding-left: var(--su12); padding-r= ight: var(--su12); font-size: var(--fs-body2); line-height: var(--lh-md); } .val-message p:last-of-type { margin-bottom: 0px; } .val-message .val--title { margin-bottom: 0.57em; font-size: var(--fs-subhe= ading); line-height: var(--lh-md); } .val-message .val--icon { width: 36px; height: 36px; color: var(--green-400= ); } .val-textemphasis { font-weight: 700; margin-top: var(--su12); } .val-success { background-color: rgb(238, 247, 242); border-color: rgb(24, = 134, 75); } .val-success .val--title { color: var(--green-400); } .val-error { background-color: rgb(250, 225, 225); border-color: rgb(200, 5= 0, 50); } .val-info { background-color: rgb(250, 236, 198); border-color: rgb(236, 17= 4, 19); } .message.message-error { z-index: var(--zi-tooltips); display: none; color:= var(--red-200); background-color: var(--red-500); text-align: left; width:= auto; font-family: var(--theme-body-font-family); font-size: var(--fs-body= 1); line-height: var(--lh-md); } .message.message-error.message-dismissable { cursor: pointer; } .message.message-error a:not(.badge-tag):not(.button):not(.btn):not(.s-tag)= :not(.post-tag):not(.s-btn) { color: var(--white); text-decoration: underli= ne; } .message.message-error ul { margin: 0px 0px 0px 15px; padding: 0px; } .message.message-error ul li { margin: 0px 0px 5px; padding: 0px; } .message.message-error ul li:last-child { margin-bottom: 0px; } .message.message-error code { background: transparent; } .message.message-error .message-inner { position: relative; } .message.message-error .message-tip::before { content: ""; position: absolu= te; border-width: 9px; border-style: solid; border-color: transparent; } .message.message-error .message-tip-top-center::before { top: -9px; left: 5= 0%; border-top-width: 0px; border-bottom-color: var(--red-500); } .message.message-error .message-tip-left-top::before { top: 0px; left: -9px= ; border-bottom-width: 0px; border-right-width: 0px; border-top-color: var(= --red-500); } .message.message-error .message-tip-top-left::before { top: -9px; left: 0px= ; border-bottom-width: 0px; border-right-width: 0px; border-left-color: var= (--red-500); } .message.message-error .message-tip-left-bottom::before { bottom: 0px; left= : -9px; border-bottom-width: 0px; border-left-width: 0px; border-right-colo= r: var(--red-500); } .message.message-error .message-tip-bottom-left::before { top: 100%; left: = 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-color: va= r(--red-500); } .message.message-error .message-tip-right-top::before { top: 0px; left: 100= %; border-bottom-width: 0px; border-left-width: 0px; border-top-color: var(= --red-500); } .message.message-error .message-tip-top-right::before { top: -9px; right: 0= px; border-bottom-width: 0px; border-left-width: 0px; border-right-color: v= ar(--red-500); } .message.message-error .message-tip-right-bottom::before { bottom: 0px; lef= t: 100%; border-bottom-width: 0px; border-right-width: 0px; border-left-col= or: var(--red-500); } .message.message-error .message-tip-bottom-right::before { top: 100%; right= : 0px; border-bottom-width: 0px; border-right-width: 0px; border-top-color:= var(--red-500); } .message.message-error .message-tip-bottom-center::before { top: 100%; left= : 50%; border-bottom-width: 0px; border-top-color: var(--red-500); } .message.message-error .message-text { padding: var(--su12); } .message.message-error .message-close { box-sizing: border-box; float: righ= t; margin-top: var(--su8); margin-right: var(--su8); width: 24px; height: 2= 4px; background-color: transparent; text-align: center; font-family: var(--= ff-sans); font-size: var(--fs-body3); line-height: 24px; font-weight: 700; = transition: all 600ms var(--te-smooth); color: var(--white) !important; } .message.message-error .message-close:hover { background-color: var(--white= ); border-color: var(--white); color: var(--red-500) !important; } .message.message-error .popup-title-award { text-overflow: ellipsis; overfl= ow: hidden; display: block; } .message.message-info { z-index: var(--zi-tooltips); display: none; color: = var(--blue-200); background-color: var(--blue-500); text-align: left; width= : auto; font-family: var(--theme-body-font-family); font-size: var(--fs-bod= y1); line-height: var(--lh-md); } .message.message-info.message-dismissable { cursor: pointer; } .message.message-info a:not(.badge-tag):not(.button):not(.btn):not(.s-tag):= not(.post-tag):not(.s-btn) { color: var(--white); text-decoration: underlin= e; } .message.message-info ul { margin: 0px 0px 0px 15px; padding: 0px; } .message.message-info ul li { margin: 0px 0px 5px; padding: 0px; } .message.message-info ul li:last-child { margin-bottom: 0px; } .message.message-info code { background: transparent; } .message.message-info .message-inner { position: relative; } .message.message-info .message-tip::before { content: ""; position: absolut= e; border-width: 9px; border-style: solid; border-color: transparent; } .message.message-info .message-tip-top-center::before { top: -9px; left: 50= %; border-top-width: 0px; border-bottom-color: var(--blue-500); } .message.message-info .message-tip-left-top::before { top: 0px; left: -9px;= border-bottom-width: 0px; border-right-width: 0px; border-top-color: var(-= -blue-500); } .message.message-info .message-tip-top-left::before { top: -9px; left: 0px;= border-bottom-width: 0px; border-right-width: 0px; border-left-color: var(= --blue-500); } .message.message-info .message-tip-left-bottom::before { bottom: 0px; left:= -9px; border-bottom-width: 0px; border-left-width: 0px; border-right-color= : var(--blue-500); } .message.message-info .message-tip-bottom-left::before { top: 100%; left: 0= px; border-bottom-width: 0px; border-left-width: 0px; border-top-color: var= (--blue-500); } .message.message-info .message-tip-right-top::before { top: 0px; left: 100%= ; border-bottom-width: 0px; border-left-width: 0px; border-top-color: var(-= -blue-500); } .message.message-info .message-tip-top-right::before { top: -9px; right: 0p= x; border-bottom-width: 0px; border-left-width: 0px; border-right-color: va= r(--blue-500); } .message.message-info .message-tip-right-bottom::before { bottom: 0px; left= : 100%; border-bottom-width: 0px; border-right-width: 0px; border-left-colo= r: var(--blue-500); } .message.message-info .message-tip-bottom-right::before { top: 100%; right:= 0px; border-bottom-width: 0px; border-right-width: 0px; border-top-color: = var(--blue-500); } .message.message-info .message-tip-bottom-center::before { top: 100%; left:= 50%; border-bottom-width: 0px; border-top-color: var(--blue-500); } .message.message-info .message-text { padding: var(--su12); } .message.message-info .message-close { box-sizing: border-box; float: right= ; margin-top: var(--su8); margin-right: var(--su8); width: 24px; height: 24= px; background-color: transparent; text-align: center; font-family: var(--f= f-sans); font-size: var(--fs-body3); line-height: 24px; font-weight: 700; t= ransition: all 600ms var(--te-smooth); color: var(--white) !important; } .message.message-info .message-close:hover { background-color: var(--white)= ; border-color: var(--white); color: var(--blue-500) !important; } .message.message-info .popup-title-award { text-overflow: ellipsis; overflo= w: hidden; display: block; } .message.message-warning { z-index: var(--zi-tooltips); display: none; colo= r: var(--yellow-600); background-color: var(--yellow-400); text-align: left= ; width: auto; font-family: var(--theme-body-font-family); font-size: var(-= -fs-body1); line-height: var(--lh-md); } .message.message-warning.message-dismissable { cursor: pointer; } .message.message-warning a:not(.badge-tag):not(.button):not(.btn):not(.s-ta= g):not(.post-tag):not(.s-btn) { color: var(--blue-500); text-decoration: un= derline; } .message.message-warning ul { margin: 0px 0px 0px 15px; padding: 0px; } .message.message-warning ul li { margin: 0px 0px 5px; padding: 0px; } .message.message-warning ul li:last-child { margin-bottom: 0px; } .message.message-warning code { background: transparent; } .message.message-warning .message-inner { position: relative; } .message.message-warning .message-tip::before { content: ""; position: abso= lute; border-width: 9px; border-style: solid; border-color: transparent; } .message.message-warning .message-tip-top-center::before { top: -9px; left:= 50%; border-top-width: 0px; border-bottom-color: var(--yellow-400); } .message.message-warning .message-tip-left-top::before { top: 0px; left: -9= px; border-bottom-width: 0px; border-right-width: 0px; border-top-color: va= r(--yellow-400); } .message.message-warning .message-tip-top-left::before { top: -9px; left: 0= px; border-bottom-width: 0px; border-right-width: 0px; border-left-color: v= ar(--yellow-400); } .message.message-warning .message-tip-left-bottom::before { bottom: 0px; le= ft: -9px; border-bottom-width: 0px; border-left-width: 0px; border-right-co= lor: var(--yellow-400); } .message.message-warning .message-tip-bottom-left::before { top: 100%; left= : 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-color: = var(--yellow-400); } .message.message-warning .message-tip-right-top::before { top: 0px; left: 1= 00%; border-bottom-width: 0px; border-left-width: 0px; border-top-color: va= r(--yellow-400); } .message.message-warning .message-tip-top-right::before { top: -9px; right:= 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-color:= var(--yellow-400); } .message.message-warning .message-tip-right-bottom::before { bottom: 0px; l= eft: 100%; border-bottom-width: 0px; border-right-width: 0px; border-left-c= olor: var(--yellow-400); } .message.message-warning .message-tip-bottom-right::before { top: 100%; rig= ht: 0px; border-bottom-width: 0px; border-right-width: 0px; border-top-colo= r: var(--yellow-400); } .message.message-warning .message-tip-bottom-center::before { top: 100%; le= ft: 50%; border-bottom-width: 0px; border-top-color: var(--yellow-400); } .message.message-warning .message-text { padding: var(--su12); } .message.message-warning .message-close { box-sizing: border-box; float: ri= ght; margin-top: var(--su8); margin-right: var(--su8); width: 24px; height:= 24px; background-color: transparent; text-align: center; font-family: var(= --ff-sans); font-size: var(--fs-body3); line-height: 24px; font-weight: 700= ; transition: all 600ms var(--te-smooth); color: var(--blue-500) !important= ; } .message.message-warning .message-close:hover { background-color: var(--blu= e-500); border-color: var(--blue-500); color: var(--yellow-400) !important;= } .message.message-warning .popup-title-award { text-overflow: ellipsis; over= flow: hidden; display: block; } .message.message-config, .message.message-info.contributor-dropdown { z-ind= ex: var(--zi-tooltips); display: none; color: var(--black-500); background-= color: var(--white); text-align: left; width: auto; font-family: var(--them= e-body-font-family); font-size: var(--fs-body1); line-height: var(--lh-md);= } .message.message-config.message-dismissable, .message.message-info.contribu= tor-dropdown.message-dismissable { cursor: pointer; } .message.message-config a:not(.badge-tag):not(.button):not(.btn):not(.s-tag= ):not(.post-tag):not(.s-btn), .message.message-info.contributor-dropdown a:= not(.badge-tag):not(.button):not(.btn):not(.s-tag):not(.post-tag):not(.s-bt= n) { color: var(--black-600); text-decoration: underline; } .message.message-config ul, .message.message-info.contributor-dropdown ul {= margin: 0px 0px 0px 15px; padding: 0px; } .message.message-config ul li, .message.message-info.contributor-dropdown u= l li { margin: 0px 0px 5px; padding: 0px; } .message.message-config ul li:last-child, .message.message-info.contributor= -dropdown ul li:last-child { margin-bottom: 0px; } .message.message-config code, .message.message-info.contributor-dropdown co= de { background: transparent; } .message.message-config .message-inner, .message.message-info.contributor-d= ropdown .message-inner { position: relative; } .message.message-config .message-tip::before, .message.message-info.contrib= utor-dropdown .message-tip::before { content: ""; position: absolute; borde= r-width: 9px; border-style: solid; border-color: transparent; } .message.message-config .message-tip-top-center::before, .message.message-i= nfo.contributor-dropdown .message-tip-top-center::before { top: -9px; left:= 50%; border-top-width: 0px; border-bottom-color: var(--white); } .message.message-config .message-tip-left-top::before, .message.message-inf= o.contributor-dropdown .message-tip-left-top::before { top: 0px; left: -9px= ; border-bottom-width: 0px; border-right-width: 0px; border-top-color: var(= --white); } .message.message-config .message-tip-top-left::before, .message.message-inf= o.contributor-dropdown .message-tip-top-left::before { top: -9px; left: 0px= ; border-bottom-width: 0px; border-right-width: 0px; border-left-color: var= (--white); } .message.message-config .message-tip-left-bottom::before, .message.message-= info.contributor-dropdown .message-tip-left-bottom::before { bottom: 0px; l= eft: -9px; border-bottom-width: 0px; border-left-width: 0px; border-right-c= olor: var(--white); } .message.message-config .message-tip-bottom-left::before, .message.message-= info.contributor-dropdown .message-tip-bottom-left::before { top: 100%; lef= t: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-color:= var(--white); } .message.message-config .message-tip-right-top::before, .message.message-in= fo.contributor-dropdown .message-tip-right-top::before { top: 0px; left: 10= 0%; border-bottom-width: 0px; border-left-width: 0px; border-top-color: var= (--white); } .message.message-config .message-tip-top-right::before, .message.message-in= fo.contributor-dropdown .message-tip-top-right::before { top: -9px; right: = 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-color: = var(--white); } .message.message-config .message-tip-right-bottom::before, .message.message= -info.contributor-dropdown .message-tip-right-bottom::before { bottom: 0px;= left: 100%; border-bottom-width: 0px; border-right-width: 0px; border-left= -color: var(--white); } .message.message-config .message-tip-bottom-right::before, .message.message= -info.contributor-dropdown .message-tip-bottom-right::before { top: 100%; r= ight: 0px; border-bottom-width: 0px; border-right-width: 0px; border-top-co= lor: var(--white); } .message.message-config .message-tip-bottom-center::before, .message.messag= e-info.contributor-dropdown .message-tip-bottom-center::before { top: 100%;= left: 50%; border-bottom-width: 0px; border-top-color: var(--white); } .message.message-config .message-text, .message.message-info.contributor-dr= opdown .message-text { padding: var(--su12); } .message.message-config .message-close, .message.message-info.contributor-d= ropdown .message-close { box-sizing: border-box; float: right; margin-top: = var(--su8); margin-right: var(--su8); width: 24px; height: 24px; background= -color: transparent; text-align: center; font-family: var(--ff-sans); font-= size: var(--fs-body3); line-height: 24px; font-weight: 700; transition: all= 600ms var(--te-smooth); color: var(--black-600) !important; } .message.message-config .message-close:hover, .message.message-info.contrib= utor-dropdown .message-close:hover { background-color: var(--black-600); bo= rder-color: var(--black-600); color: var(--white) !important; } .message.message-config .popup-title-award, .message.message-info.contribut= or-dropdown .popup-title-award { text-overflow: ellipsis; overflow: hidden;= display: block; } .message.message-config .message-close, .message.message-info.contributor-d= ropdown .message-close { margin-top: var(--su2); margin-right: var(--su2); = } .message.message-success { z-index: var(--zi-tooltips); display: none; colo= r: var(--green-100); background-color: var(--green-400); text-align: left; = width: auto; font-family: var(--theme-body-font-family); font-size: var(--f= s-body1); line-height: var(--lh-md); } .message.message-success.message-dismissable { cursor: pointer; } .message.message-success a:not(.badge-tag):not(.button):not(.btn):not(.s-ta= g):not(.post-tag):not(.s-btn) { color: var(--white); text-decoration: under= line; } .message.message-success ul { margin: 0px 0px 0px 15px; padding: 0px; } .message.message-success ul li { margin: 0px 0px 5px; padding: 0px; } .message.message-success ul li:last-child { margin-bottom: 0px; } .message.message-success code { background: transparent; } .message.message-success .message-inner { position: relative; } .message.message-success .message-tip::before { content: ""; position: abso= lute; border-width: 9px; border-style: solid; border-color: transparent; } .message.message-success .message-tip-top-center::before { top: -9px; left:= 50%; border-top-width: 0px; border-bottom-color: var(--green-400); } .message.message-success .message-tip-left-top::before { top: 0px; left: -9= px; border-bottom-width: 0px; border-right-width: 0px; border-top-color: va= r(--green-400); } .message.message-success .message-tip-top-left::before { top: -9px; left: 0= px; border-bottom-width: 0px; border-right-width: 0px; border-left-color: v= ar(--green-400); } .message.message-success .message-tip-left-bottom::before { bottom: 0px; le= ft: -9px; border-bottom-width: 0px; border-left-width: 0px; border-right-co= lor: var(--green-400); } .message.message-success .message-tip-bottom-left::before { top: 100%; left= : 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-color: = var(--green-400); } .message.message-success .message-tip-right-top::before { top: 0px; left: 1= 00%; border-bottom-width: 0px; border-left-width: 0px; border-top-color: va= r(--green-400); } .message.message-success .message-tip-top-right::before { top: -9px; right:= 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-color:= var(--green-400); } .message.message-success .message-tip-right-bottom::before { bottom: 0px; l= eft: 100%; border-bottom-width: 0px; border-right-width: 0px; border-left-c= olor: var(--green-400); } .message.message-success .message-tip-bottom-right::before { top: 100%; rig= ht: 0px; border-bottom-width: 0px; border-right-width: 0px; border-top-colo= r: var(--green-400); } .message.message-success .message-tip-bottom-center::before { top: 100%; le= ft: 50%; border-bottom-width: 0px; border-top-color: var(--green-400); } .message.message-success .message-text { padding: var(--su12); } .message.message-success .message-close { box-sizing: border-box; float: ri= ght; margin-top: var(--su8); margin-right: var(--su8); width: 24px; height:= 24px; background-color: transparent; text-align: center; font-family: var(= --ff-sans); font-size: var(--fs-body3); line-height: 24px; font-weight: 700= ; transition: all 600ms var(--te-smooth); color: var(--white) !important; } .message.message-success .message-close:hover { background-color: var(--whi= te); border-color: var(--white); color: var(--green-400) !important; } .message.message-success .popup-title-award { text-overflow: ellipsis; over= flow: hidden; display: block; } .message.toast { position: fixed; top: 20px; right: 30px; z-index: calc(var= (--zi-navigation-fixed) + 1); } #newsletter-ad ul { margin: 1em 0px 1em 1.5em; } #newsletter-ad ul li { margin-bottom: 5px; } #newsletter-email-input { width: 200px; } #custom-header { display: none; } .privilege-icon { display: inline-block; width: 20px; height: 16px; backgro= und-image: url("../../Img/share-sprite-new.svg?v=3D0e11bfd41fbc"), none; ba= ckground-repeat: no-repeat; background-color: transparent; overflow: hidden= ; text-indent: -999em; outline: none; background-position-x: 50px; margin-b= ottom: -3px; margin-right: 6px; } .privilege-icon.icon-milestone { background-position: -60px 0px; } .privilege-icon.icon-moderation { background-position: -80px 0px; } .privilege-icon.icon-communication { background-position: -100px 0px; } .privilege-icon.icon-creation { background-position: -120px 0px; } .privilege-icon.icon-documentation { background-position: -140px 0px; } .tools-index-subtabs { width: 600px; } .migrated.to { width: 48px; height: 48px; background-image: url("../../Img/= fatarrows.png?v=3Dae7d0b13a3f3"); display: inline-block; background-repeat:= no-repeat; overflow: hidden; background-position: -48px 0px; } #mainbar-full h2.title { margin: 20px 0px; } #rep-page-container #master-graph rect { stroke: none; } sub sub sub sub, sup sup sup sup { font-size: 101%; position: initial; } .quality-warning { font-weight: bold; padding-top: 15px; } .tm-links .review-indicator span { color: var(--white); font-size: var(--fs= -fine); padding: 0.2em 0.5em 0.25em; line-height: 1.3; border-radius: 2px; = float: right; background-color: rgb(207, 119, 33); margin-right: 0px; } .review-indicator span { color: var(--white); display: inline; padding: 0.2= em 0.5em 0.25em; font-size: var(--fs-fine); line-height: 1.3; border-radius= : 2px; background-color: rgb(207, 119, 33); margin: 0px; } .migrated.from { background-position: 0px -464px !important; } .migrated.to { background-position: -34px -464px !important; } .migrated.from, .migrated.to { margin-right: 15px; width: 30px !important; = height: 28px !important; } .mod-page #tabs-interval { width: 400px; } h4#h-linked { margin-top: 15px; } .flagged-post .answer-link { width: 650px; } #additional-notices { clear: both; } #large-user-info::after { content: ""; display: table; clear: both; } .tools.close-stats h1 { padding-top: 15px; } .tools.close-stats .header { font-weight: bold; } .tools.close-stats .row { padding: 3px 0px; } .tools.close-stats .row .col-4 { width: 30%; padding-right: 10px; } .tools.close-stats .close-reasons .inactive, .tools.close-stats .close-reas= ons .inactive a { opacity: 0.5; } .tools.close-stats .closure-stats .row:nth-child(2n+1), .tools.close-stats = .custom-reasons .row:nth-child(2n+1) { background-color: var(--black-100); = } .container.edit-tag-wiki .input-section { margin-bottom: 15px; } .container.edit-tag-wiki .input-section h3 { margin-bottom: 8px; } .container.edit-tag-wiki .input-section .text-counter { display: block; hei= ght: 15px; margin-top: 5px; } .convert-image-to-link { width: 250px; } .home-page #qlist-wrapper { clear: both; } .dupe-hammer-message-hover { margin-left: 4px; cursor: pointer; } .dupe-hammer-message-hover .badge-tag { vertical-align: middle; } .dupe-hammer-message { display: block; max-width: 430px; line-height: 22px;= } .realtime-post-deleted-notification { z-index: 100; text-align: center; } .realtime-post-deleted-notification p { margin-top: 30px; padding: 15px; fo= nt-size: var(--fs-body2); background-color: var(--red-100); } .upload-image-warning { text-align: center; background-color: rgb(252, 248,= 227); padding: 10px 10px 5px; border: 1px solid rgb(251, 238, 213); margin= -bottom: 15px; border-radius: 3px; color: rgb(192, 152, 83); font-size: var= (--fs-body1); line-height: 1.3; } .oauth-authorizebody { background: rgb(239, 240, 241); } .oauth-authorize.app-has-icon .app-icon-container { margin-top: 18px; } .oauth-authorize.app-has-icon .icons-container { margin-bottom: 4px !import= ant; } .oauth-authorize .root { text-align: center; padding: 40px; } .oauth-authorize .root .app-authorization { display: inline-block; margin: = auto; text-align: left; padding: 40px; border: 1px solid rgb(214, 216, 219)= ; border-radius: 2px; background: rgb(255, 255, 255); } .oauth-authorize .root .app-authorization .icons-container { margin-bottom:= 25px; position: relative; } .oauth-authorize .root .app-authorization .icons-container .enterprise-sub-= icon { position: absolute; bottom: -7px; left: 29px; } .oauth-authorize .root .app-authorization .icons-container .app-icon-contai= ner { display: flex; flex-direction: row; justify-content: flex-start; } .oauth-authorize .root .app-authorization .icons-container .app-icon-contai= ner .app-icon-large { height: 50px; vertical-align: top; } .oauth-authorize .root .app-authorization .icons-container .app-icon-contai= ner .no-icon { visibility: hidden; } .oauth-authorize .root .app-authorization .authorize-text { font-size: var(= --fs-body3); margin-bottom: 0.5em; } .oauth-authorize .root .app-authorization .authorize-text .app-name { font-= weight: bold; } .oauth-authorize .root .app-authorization .authorizing-scopes { margin-bott= om: 0px; font-size: var(--fs-body2); } .oauth-authorize .root .app-authorization .authorizing-scopes li { margin: = 12px 0px; } .oauth-authorize .root .app-authorization .authorizing-scopes li .channel-n= ame { text-decoration: underline; } .oauth-authorize .root .app-authorization .auth-buttons { margin-top: 20px;= } .dropdown-questions-filters { top: 42px; right: 6px; } .MathJax_SVG_Display, .MathJax_Display { overflow: auto hidden; } .post-notice blockquote { position: relative; padding: 6px 12px 6px 16px; b= ackground-color: inherit; margin-bottom: 0px; border-left: none; margin-top= : 4px; } .post-notice blockquote::before { content: ""; display: block; position: ab= solute; top: 0px; bottom: 0px; left: 0px; width: 4px; border-radius: 8px; b= ackground: var(--blue-400); } .post-notice blockquote div { margin-bottom: 8px; } .post-notice blockquote :last-child { margin-bottom: 0px; } .blink { animation-name: blinking; animation-duration: 3.5s; } @keyframes blinking {=20 0% { background: rgb(244, 168, 61); } 100% { background: rgba(244, 168, 61, 0); } } .community-wiki-link a { display: flex; gap: var(--su4); } .community-wiki-link br { content: ""; white-space: pre; margin-left: -4px;= } body .mp-results { top: var(--top-bar-allocated-space); } body .mp-results .mp-unit { color: var(--black-400); } .post-tag:not(.s-tag) { --_ta-bc: var(--theme-tag-border-color, var(--_ta-b= g)); --_ta-bg: var(--theme-tag-background-color, var(--black-150)); --_ta-f= c: var(--theme-tag-color, var(--black-500)); --_ta-bc-hover: var(--theme-ta= g-hover-border-color, var(--_ta-bg-hover)); --_ta-bg-hover: var(--theme-tag= -hover-background-color, var(--black-200)); --_ta-fc-hover: var(--theme-tag= -hover-color, var(--black-600)); --_ta-br: var(--br-sm); --_ta-fs: var(--fs= -caption); --_ta-lh: 1.84615385; --_ta-pl: var(--_ta-px); --_ta-pr: var(--_= ta-px); --_ta-px: var(--su4); --_ta-dismiss-padding: calc(var(--_ta-px) - v= ar(--su-static1)); background-color: var(--_ta-bg); border: var(--su-static= 1) solid var(--_ta-bc); border-radius: var(--_ta-br); color: var(--_ta-fc);= font-size: var(--_ta-fs); line-height: var(--_ta-lh); padding-left: var(--= _ta-pl); padding-right: var(--_ta-pr); align-items: center; display: inline= -flex; font-weight: 700; justify-content: center; min-width: 0px; text-deco= ration: none; vertical-align: middle; white-space: nowrap; } a.post-tag:not(.s-tag):hover, a.post-tag:not(.s-tag):active { background-co= lor: var(--_ta-bg-hover); border-color: var(--_ta-bc-hover); color: var(--_= ta-fc-hover); } .post-tag:not(.s-tag):focus-visible { box-shadow: 0 0 0 var(--su-static1) v= ar(--focus-neutral),0 0 0 calc(var(--su-static4) - var(--su-static1)) var(-= -focus-theme); border-color: var(--focus-neutral) !important; outline: var(= --su-static2) solid transparent !important; } .post-tag:not(.s-tag).moderator-tag { --_ta-bc: var(--orange-300); --_ta-bg= : var(--orange-100); --_ta-fc: var(--orange-500); --_ta-bc-hover: var(--ora= nge-300); --_ta-bg-hover: var(--orange-200); --_ta-fc-hover: var(--orange-6= 00); } .post-tag:not(.s-tag).required-tag:not(.moderator-tag) { --_ta-bc: var(--th= eme-tag-required-border-color, var(--theme-tag-border-color, var(--black-40= 0))); --_ta-bg: var(--theme-tag-required-background-color, var(--theme-tag-= background-color, var(--black-150))); --_ta-fc: var(--theme-tag-required-co= lor, var(--theme-tag-color, var(--black-500))); --_ta-bc-hover: var(--theme= -tag-required-hover-border-color, var(--theme-tag-hover-border-color, var(-= -black-600))); --_ta-bg-hover: var(--theme-tag-required-hover-background-co= lor, var(--theme-tag-hover-background-color, var(--black-200))); --_ta-fc-h= over: var(--theme-tag-required-hover-color, var(--theme-tag-hover-color, va= r(--black-600))); } .vote-up-off, .vote-up-on, .vote-down-off, .vote-down-on { height: 30px; } .vote-down-off, .vote-down-on { margin-bottom: 10px; } .s-topbar .s-topbar--logo .-img { background-image: url("../../Img/unified/= sprites.svg?v=3Dfcc0ea44ba27"); } #tabs a, .tabs a { position: relative; padding: 13px 10px; background-color= : var(--theme-content-background-color); border: 1px solid transparent; fon= t-size: var(--fs-caption); } #tabs a::before, .tabs a::before { content: ""; position: absolute; top: -1= px; left: -1px; right: -1px; height: 2px; background-color: transparent; } #tabs a:focus, .tabs a:focus { background-color: var(--black-100); border-b= ottom-color: transparent; } #tabs a:hover:not(.youarehere), .tabs a:hover:not(.youarehere), #tabs a:foc= us:not(.youarehere), .tabs a:focus:not(.youarehere) { border-top-color: ; b= order-right-color: ; border-left-color: ; border-bottom-color: transparent;= } #tabs a.youarehere, .tabs a.youarehere { padding-bottom: 14px; font-weight:= 400; border-top-color: ; border-right-color: ; border-left-color: ; border= -bottom-color: transparent; cursor: default; } #tabs a.youarehere::before, .tabs a.youarehere::before { background-color: = var(--theme-primary); } #tabs a.external, .tabs a.external { color: var(--theme-link-color); } #tabs a.external:hover, .tabs a.external:hover { color: var(--theme-link-co= lor-hover); border-top-color: transparent; border-right-color: transparent;= border-left-color: transparent; border-bottom-color: var(--theme-primary);= background-color: var(--black-100); box-shadow: rgb(255, 255, 255) 0px -1p= x 0px 0px inset; } #tabs #tab-switch { display: inline-block; color: rgb(99, 107, 116); border= : 1px solid rgb(214, 217, 220); font-size: var(--fs-caption); padding: 3px = 6px; border-radius: 2px; margin: 7px auto 5px 5px; background-color: transp= arent; transition: all, 0.15s, all; } #tabs #tab-switch:hover { border-color: rgb(189, 205, 215); } #sidebar h4 { color: var(--black-500); font-size: var(--fs-subheading); fon= t-weight: 400; } #sidebar .related, #sidebar .linked { font-size: var(--fs-body1); } #sidebar .related a, #sidebar .linked a { font-size: var(--fs-body1); } #sidebar .aside-cta { margin-bottom: 1em; text-align: right; } #sidebar #questions-count { display: flex; flex-flow: row; justify-content:= space-between; } #sidebar #questions-count .-main-cta { padding-left: 20px; } #sidebar #questions-count .-main-cta .btn { white-space: nowrap; } .-flair > span:not(.reputation-score) { margin-right: 3px; margin-left: 2px= ; } .badge { transition: background var(--default-transition-duration) ease; } .badge1, .badge2, .badge3 { margin-right: 3px; margin-left: 2px; width: 6px= ; } .badge1 { background-position: -102px -398px; } .badge2 { background-position: -82px -398px; } .badge3 { background-position: -62px -398px; } .badgecount { padding-left: 0px; } body:not(.unified-theme) .narrow .mini-counts { margin-bottom: 2px; } body:not(.unified-theme) .narrow .votes, body:not(.unified-theme) .narrow .= status, body:not(.unified-theme) .narrow .views { padding: 8px 5px; line-he= ight: 1; } .narrow .status { color: var(--black-400); } .answered, .answered-accepted { border: 1px solid transparent; } .status.answered { border-color: var(--green-400); } .status.answered, .status.answered .mini-counts, .status.answered strong { = color: var(--green-400); } .status.answered-accepted, .status.answered-accepted .mini-counts, .status.= answered-accepted .minicounts span { color: rgb(255, 255, 255); } .status.unanswered .mini-counts span { color: inherit; } body:not(.unified-theme) .question-summary { padding: 12px 0px; border-bott= om: 1px solid var(--black-200); } #question-header { display: flex; flex-flow: row; justify-content: space-be= tween; } #question-header .-main-cta { padding-left: 20px; } #question-header .-main-cta .btn { white-space: nowrap; } #question-header .question-hyperlink { color: var(--black-500); } .comment-text, .flag-action-card-text { font-size: var(--fs-body1); line-he= ight: 1.4; } input[type=3D"text"]:not(.s-input):not(.s-textarea):focus, input[type=3D"em= ail"]:not(.s-input):not(.s-textarea):focus, input[type=3D"password"]:not(.s= -input):not(.s-textarea):focus, textarea:not(.s-input):not(.s-textarea):foc= us { outline: 0px; border: 1px solid rgb(27, 117, 208); } input[type=3D"text"]:not(.s-input), textarea:not(.wmd-input):not(.s-textare= a), input[type=3D"url"], input[type=3D"datetime"], input[type=3D"datetime-l= ocal"], input[type=3D"date"], .tag-editor:not(.s-input) { box-shadow: rgba(= 12, 13, 14, 0.1) 0px 1px 2px inset; } .error-page h1 { margin-bottom: var(--su24); } .error-page p { font-size: var(--fs-body2); } @media (prefers-color-scheme: dark) { } @media (prefers-color-scheme: dark) { } html, body { min-width: 1264px; } html.html__unpinned-leftnav, html.html__unpinned-leftnav body { min-width: = 1100px; } html.html__responsive, html.html__responsive body { min-width: auto; } body { padding-top: 56px; } @media print { body { padding-top: 0px; } } body .s-topbar ~ .container, body .s-topbar ~ #announcement-banner { margin= -top: 0px; } body > .container { max-width: 1264px; width: 100%; background: none; displ= ay: flex; justify-content: space-between; margin: 0px auto; } html.html__unpinned-leftnav body > .container { max-width: 1100px; } body > .container::after, body > .container::before { display: none; } body.floating-content > .container { justify-content: center; margin: 0px; = background-color: transparent; } body.floating-content > .container, html.html__unpinned-leftnav body.floati= ng-content > .container { max-width: 100%; } body.floating-content > .container #left-sidebar { display: none; } body.theme-highcontrast.floating-content > .container { background-color: v= ar(--black-050); } #content { max-width: 1100px; width: calc(100% - 164px); background-color: = var(--theme-content-background-color); border-radius: 0px; border-top-color= : ; border-top-style: ; border-right-color: ; border-right-style: ; border-= bottom-color: ; border-bottom-style: ; border-left-color: ; border-left-sty= le: ; border-image-source: ; border-image-slice: ; border-image-width: ; bo= rder-image-outset: ; border-image-repeat: ; border-width: 0px 0px 0px 1px; = padding: var(--su24); box-sizing: border-box; } @media screen and (max-width: 640px) { html.html__responsive #content { border-left: 0px; border-right: 0px; } } @media print { #content { border-left: 0px; border-right: 0px; } } body.theme-highcontrast #content { border-left: 1px solid currentcolor; } html.html__unpinned-leftnav #content { width: 100%; } html.html__unpinned-leftnav #content { border-left-width: 0px; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) #content { padding-lef= t: var(--su16); padding-right: var(--su16); } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav #content { padding-left: var= (--su16); padding-right: var(--su16); } } @media print { #content { padding-left: var(--su16); padding-right: var(--su16); } } @media screen and (max-width: 640px) { html.html__responsive #content { padding-left: var(--su12); padding-right= : var(--su12); width: 100%; } } @media print { #content { padding-left: var(--su12); padding-right: var(--su12); width: = 100%; } } body.floating-content #content { width: 100%; max-width: 1264px; margin: 0p= x; background-color: transparent; border-left: 0px; border-right: 0px; } #sidebar, .sidebar { margin-left: var(--su24); } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) #sidebar, html.html__r= esponsive:not(.html__unpinned-leftnav) .sidebar { float: none; clear: both;= margin: 0px auto; width: 100%; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav #sidebar, html.html__respons= ive.html__unpinned-leftnav .sidebar { float: none; clear: both; margin: 0px= auto; width: 100%; } } @media print { #sidebar, .sidebar { float: none; clear: both; margin: 0px auto; width: 1= 00%; } } .site-footer.site-footer--container, .site-footer.site-footer--extra { max-= width: 1264px; } body > .container.container__full { max-width: 100%; } body > .container.container__full .left-sidebar { display: none; } body > .container.container__full #content { padding: 0px; max-width: 100%;= } body > .container .container--inner { max-width: 1264px; padding: 0 var(--s= u24); margin: 0px auto; } #mainbar, .mainbar { width: calc(100% - 300px - var(--su-static24)); } #mainbar.ask-mainbar, .mainbar.ask-mainbar { width: calc(100% - 365px - var= (--su-static24)); } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) #mainbar, html.html__r= esponsive:not(.html__unpinned-leftnav) .mainbar { width: 100%; float: none;= } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav #mainbar, html.html__respons= ive.html__unpinned-leftnav .mainbar { width: 100%; float: none; } } @media print { #mainbar, .mainbar { width: 100%; float: none; } } #questions, #answers { width: auto; float: none; } .answer, .post-editor, #answers-header { width: 100%; } .subheader { box-sizing: content-box; } .site-header { box-sizing: border-box; background-color: var(--theme-header= -background-color); background-image: none; background-position: var(--them= e-header-background-position); background-repeat: var(--theme-header-backgr= ound-repeat); background-size: var(--theme-header-background-size); border-= bottom: var(--theme-header-background-border-bottom); } .site-header .site-header--container { width: 100%; min-height: 70px; max-w= idth: 1264px; margin: 0px auto; padding: 0 var(--su8); display: flex; align= -items: center; justify-content: space-between; background-color: var(--the= me-header-foreground-color); background-image: none; background-position: v= ar(--theme-header-foreground-position); background-repeat: var(--theme-head= er-foreground-repeat); background-size: var(--theme-header-foreground-size)= ; } html.html__unpinned-leftnav .site-header .site-header--container { max-widt= h: 1100px; } body.floating-content .site-header .site-header--container, html.html__unpi= nned-leftnav body.floating-content .site-header .site-header--container { m= ax-width: 1264px; } @media screen and (max-width: 640px) { html.html__responsive .site-header .site-header--container { background-i= mage: none; } } @media print { .site-header .site-header--container { background-image: none; } } .site-header .site-header--link { color: var(--theme-header-link-color); } .site-header .site-header--sponsored { color: var(--theme-header-sponsored-= color); font-size: 10px; } .s-banner button, .s-banner a { text-decoration: underline; } .s-banner button:hover, .s-banner a:hover { text-decoration: underline; } .s-banner__danger button, .s-banner__danger a { color: white; } .s-banner__danger button:hover, .s-banner__danger a:hover { color: white; } .left-sidebar { width: 164px; flex-shrink: 0; z-index: var(--zi-dropdown); = box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px; transition: box-shadow 0.1s ea= se-in-out, transform 0.1s ease-in-out; transform: translateZ(0px); } .left-sidebar, .left-sidebar *, .left-sidebar ::after, .left-sidebar ::befo= re { box-sizing: border-box; } .left-sidebar .nav { position: sticky; top: var(--su24); padding-bottom: va= r(--su12); } .left-sidebar .-label { font-weight: bold; padding-left: var(--su12); color= : var(--black-400); padding-bottom: var(--su4); font-size: var(--fs-caption= ); } .left-sidebar--sticky-container { position: fixed; width: 164px; padding-to= p: var(--su24); } @supports (position: sticky) or (position: -webkit-sticky) { .left-sidebar--sticky-container:not(.left-sidebar__fake-sticky) { positio= n: sticky; width: auto; margin-bottom: var(--su8); overflow-y: auto; scroll= bar-color: var(--scrollbar) transparent; top: var(--top-bar-allocated-space= ); max-height: calc(100vh - var(--top-bar-allocated-space)); } .left-sidebar--sticky-container:not(.left-sidebar__fake-sticky)::-webkit-= scrollbar { width: calc(var(--su-static12) - var(--su-static2)); height: ca= lc(var(--su-static12) - var(--su-static2)); background-color: transparent; = } .left-sidebar--sticky-container:not(.left-sidebar__fake-sticky)::-webkit-= scrollbar-track { border-radius: calc(var(--su-static12) - var(--su-static2= )); background-color: transparent; } .left-sidebar--sticky-container:not(.left-sidebar__fake-sticky)::-webkit-= scrollbar-thumb { border-radius: calc(var(--su-static12) - var(--su-static2= )); background-color: var(--scrollbar); } .left-sidebar--sticky-container:not(.left-sidebar__fake-sticky)::-webkit-= scrollbar-corner { background-color: transparent; border-color: transparent= ; } html.html__unpinned-leftnav .left-sidebar--sticky-container:not(.left-sid= ebar__fake-sticky) { max-height: calc(-56px + 100vh); } } .leftnav-dialog .left-sidebar--sticky-container { position: static; width: = auto; } html.html__unpinned-leftnav .container .left-sidebar { display: none; } .activity-indicator { width: 10px; height: 10px; } .nav-links { padding: 0px; margin: 0 0 var(--su12); list-style: none; } .nav-links .nav-links--link { display: block; padding-top: ; padding-right:= ; padding-bottom: ; padding-left: 30px; line-height: var(--lh-xxl); font-s= ize: var(--fs-body1); } .nav-links .nav-links--link, .nav-links .nav-links--link:visited { color: v= ar(--black-500); } .nav-links .nav-links--link:hover, .nav-links .nav-links--link:focus, .nav-= links .nav-links--link:active { color: var(--black-600); background: var(--= black-100); border-bottom-left-radius: 6px; border-top-left-radius: 6px; } .nav-links .nav-links--link.-link__with-icon { display: flex; padding: 8px = 8px 8px 0px; } .nav-links .nav-links--link.-link__with-icon .svg-icon { flex-shrink: 0; ma= rgin-top: -1px; color: var(--black-500); } .nav-links .nav-links--link.-link__with-icon:hover .svg-icon, .nav-links .n= av-links--link.-link__with-icon:focus .svg-icon, .nav-links .nav-links--lin= k.-link__with-icon:active .svg-icon { color: var(--black-600); background: = var(--black-100); border-bottom-left-radius: 6px; border-top-left-radius: 6= px; } .nav-links .nav-links--link .-link--channel-name { line-height: var(--lh-md= ); } .nav-links .youarehere .nav-links--link { font-weight: bold; background: va= r(--black-150); color: var(--black-600); border-bottom-left-radius: 6px; bo= rder-top-left-radius: 6px; } .nav-links .youarehere .nav-links--link .svg-icon { color: var(--black-600)= ; } .left-sidebar-improvements .nav-links .nav-links--link { padding-left: 30px= ; } .left-sidebar-toggle { display: none; padding-top: 3px; height: 100%; width= : 44px; flex-shrink: 0; } .left-sidebar-toggle span { width: 18px; height: 2px; background-color: var= (--black-400); } .left-sidebar-toggle span::before, .left-sidebar-toggle span::after { posit= ion: absolute; content: ""; width: 18px; height: 2px; left: 0px; background= : var(--black-400); top: -5px; transition: 0.1s ease-in-out; } .left-sidebar-toggle span::after { top: 5px; } @media screen and (max-width: 640px) { html.html__responsive .left-sidebar-toggle { display: flex; } } @media print { .left-sidebar-toggle { display: flex; } } html.html__unpinned-leftnav .left-sidebar-toggle { display: flex; } .left-sidebar-toggle.topbar-icon-on span { background-color: transparent; } .left-sidebar-toggle.topbar-icon-on span::before, .left-sidebar-toggle.topb= ar-icon-on span::after { top: 0px; transform: rotate(-45deg); } .left-sidebar-toggle.topbar-icon-on span::after { transform: rotate(45deg);= } .flush-left { margin-left: -24px; border-top: 1px solid var(--black-225); } body.theme-highcontrast .flush-left { border-top-color: currentcolor; } .flush-left .question-summary { width: 100%; padding-left: 8px; box-sizing:= border-box; } .flush-left .flush-left, .flush-left .mixed-question-list { border-top: non= e; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .flush-left { margin-l= eft: calc(var(--su16) * -1); margin-right: calc(var(--su16) * -1); width: c= alc(100% + var(--su2) * var(--su16)); } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .flush-left { margin-left: c= alc(var(--su16) * -1); margin-right: calc(var(--su16) * -1); width: calc(10= 0% + var(--su2) * var(--su16)); } } @media print { .flush-left { margin-left: calc(var(--su16) * -1); margin-right: calc(var= (--su16) * -1); width: calc(100% + var(--su2) * var(--su16)); } } @media screen and (max-width: 640px) { html.html__responsive .flush-left { margin-left: calc(var(--su12) * -1); = margin-right: calc(var(--su12) * -1); width: calc(100% + 2 * var(--su12)); = } } @media print { .flush-left { margin-left: calc(var(--su12) * -1); margin-right: calc(var= (--su12) * -1); width: calc(100% + 2 * var(--su12)); } } .question-summary { display: flex; padding: var(--su12) var(--su8); float: = none; width: 100%; } .question-summary .stats, .question-summary .stats + .views { margin-left: = 0px; } .question-summary h3, .question-summary .excerpt { overflow-wrap: break-wor= d; word-break: break-word; } .statscontainer { margin-right: 16px; width: 58px; float: none; } .summary, .narrow .summary { flex: 1 1 auto; width: auto; float: none; marg= in: 0px; overflow: hidden; } .cp, .narrow .cp { float: none; display: flex; flex-wrap: nowrap; align-ite= ms: flex-start; margin-right: 0px; padding: 0 var(--su8) 0 0; box-sizing: c= ontent-box; flex-shrink: 0; } .narrow .started { white-space: normal; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) #tabs a, html.html__re= sponsive:not(.html__unpinned-leftnav) .tabs a { margin-right: 0px; padding-= left: var(--su8); padding-right: var(--su8); } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav #tabs a, html.html__responsi= ve.html__unpinned-leftnav .tabs a { margin-right: 0px; padding-left: var(--= su8); padding-right: var(--su8); } } @media print { #tabs a, .tabs a { margin-right: 0px; padding-left: var(--su8); padding-r= ight: var(--su8); } } ._with-left-nav ~ .container .col-sidebar { margin-right: 32px; } .user-page ._with-left-nav ~ .container .settings-page { margin: 0px 0px 0p= x 32px !important; } #add-login-page, #login-page, #signup-page { box-sizing: content-box; } .fc-theme-body-font { color: var(--theme-body-font-color, var(--black-600))= !important; } .timeline-wrapper .timeline { width: 798px; } .timeline-wrapper .timeline-sidebar { margin-left: var(--su24); } .user-page .row { max-width: 1100px; } #profile-side { margin-right: var(--su24); } [data-can-be] { display: none; } @media screen and (max-width: 640px) { html.html__responsive [data-is-here-when]:not([data-is-here-when~=3D"sm"]= ) { display: none; } } @media print { [data-is-here-when]:not([data-is-here-when~=3D"sm"]) { display: none; } } @media screen and (max-width: 980px) and (min-width: 640.1px) { html.html__responsive:not(.html__unpinned-leftnav) [data-is-here-when]:no= t([data-is-here-when~=3D"md"]) { display: none; } } @media screen and (max-width: 816px) and (min-width: 640.1px) { html.html__responsive.html__unpinned-leftnav [data-is-here-when]:not([dat= a-is-here-when~=3D"md"]) { display: none; } } @media screen and (min-width: 980.1px) { html.html__responsive:not(.html__unpinned-leftnav) [data-is-here-when]:no= t([data-is-here-when~=3D"lg"]) { display: none; } } @media screen and (min-width: 816.1px) { html.html__responsive.html__unpinned-leftnav [data-is-here-when]:not([dat= a-is-here-when~=3D"lg"]) { display: none; } } @media screen and (max-width: 640px) { html.html__responsive .statscontainer { margin-left: 0px; margin-right: v= ar(--su12); } html.html__responsive .question-summary { padding-left: var(--su12) !impo= rtant; padding-right: var(--su12) !important; } html.html__responsive .question-summary.narrow { flex-direction: column; = } html.html__responsive .narrow .cp { width: 100%; float: none; padding-bot= tom: var(--su8) !important; padding-left: 0px !important; padding-right: 0p= x !important; } html.html__responsive .narrow .votes, html.html__responsive .narrow .stat= us, html.html__responsive .narrow .views { padding: var(--su4) 0; line-heig= ht: 1; box-sizing: border-box; width: auto; height: auto; border-radius: va= r(--br-sm); min-width: auto; text-align: left; margin: 0 var(--su4) 0 0; } html.html__responsive .narrow .votes > div, html.html__responsive .narrow= .status > div, html.html__responsive .narrow .views > div { display: inlin= e-block; font-size: var(--fs-caption); margin-bottom: 0px; } html.html__responsive .narrow .votes > div.mini-counts, html.html__respon= sive .narrow .status > div.mini-counts, html.html__responsive .narrow .view= s > div.mini-counts { font-weight: bold; } html.html__responsive .narrow .status { margin-top: -1px; padding: var(--= su4) var(--su8); } html.html__responsive .narrow .summary { width: 100%; float: none; } } @media print { .statscontainer { margin-left: 0px; margin-right: var(--su12); } .question-summary { padding-left: var(--su12) !important; padding-right: = var(--su12) !important; } .question-summary.narrow { flex-direction: column; } .narrow .cp { width: 100%; float: none; padding-bottom: var(--su8) !impor= tant; padding-left: 0px !important; padding-right: 0px !important; } .narrow .votes, .narrow .status, .narrow .views { padding: var(--su4) 0; = line-height: 1; box-sizing: border-box; width: auto; height: auto; border-r= adius: var(--br-sm); min-width: auto; text-align: left; margin: 0 var(--su4= ) 0 0; } .narrow .votes > div, .narrow .status > div, .narrow .views > div { displ= ay: inline-block; font-size: var(--fs-caption); margin-bottom: 0px; } .narrow .votes > div.mini-counts, .narrow .status > div.mini-counts, .nar= row .views > div.mini-counts { font-weight: bold; } .narrow .status { margin-top: -1px; padding: var(--su4) var(--su8); } .narrow .summary { width: 100%; float: none; } } html.html__responsive .everyoneloves__top-leaderboard, html.html__responsiv= e .everyoneloves__mid-leaderboard, html.html__responsive .everyoneloves__mi= d-second-leaderboard, html.html__responsive .everyoneloves__bot-mid-leaderb= oard, html.html__responsive .everyoneloves__tag-sponsorship { margin-left: = 0px; } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves__inline= -sidebar { display: block; width: 300px; } html.html__responsive:not(.html__unpinned-leftnav) .zone-container-respon= sive { display: block; } html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves__top-si= debar { display: none; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .everyoneloves__inline-sideb= ar { display: block; width: 300px; } html.html__responsive.html__unpinned-leftnav .zone-container-responsive {= display: block; } html.html__responsive.html__unpinned-leftnav .everyoneloves__top-sidebar = { display: none; } } @media print { .everyoneloves__inline-sidebar { display: block; width: 300px; } .zone-container-responsive { display: block; } .everyoneloves__top-sidebar { display: none; } } @media screen and (max-width: 1280px) { html.html__responsive:not(.html__unpinned-leftnav) .zone-container-main, = html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves__top-lead= erboard, html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves_= _mid-leaderboard, html.html__responsive:not(.html__unpinned-leftnav) .every= oneloves__mid-second-leaderboard, html.html__responsive:not(.html__unpinned= -leftnav) .everyoneloves__bot-mid-leaderboard, html.html__responsive:not(.h= tml__unpinned-leftnav) .everyoneloves__tag-sponsorship { display: none; } } @media screen and (max-width: 1116px) { html.html__responsive.html__unpinned-leftnav .zone-container-main, html.h= tml__responsive.html__unpinned-leftnav .everyoneloves__top-leaderboard, htm= l.html__responsive.html__unpinned-leftnav .everyoneloves__mid-leaderboard, = html.html__responsive.html__unpinned-leftnav .everyoneloves__mid-second-lea= derboard, html.html__responsive.html__unpinned-leftnav .everyoneloves__bot-= mid-leaderboard, html.html__responsive.html__unpinned-leftnav .everyonelove= s__tag-sponsorship { display: none; } } @media print { .zone-container-main, .everyoneloves__top-leaderboard, .everyoneloves__mi= d-leaderboard, .everyoneloves__mid-second-leaderboard, .everyoneloves__bot-= mid-leaderboard, .everyoneloves__tag-sponsorship { display: none; } } @media screen and (max-width: 980px) { html.html__responsive:not(.html__unpinned-leftnav) .zone-container-main, = html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves__top-lead= erboard, html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves_= _mid-leaderboard, html.html__responsive:not(.html__unpinned-leftnav) .every= oneloves__sec-mid-leaderboard, html.html__responsive:not(.html__unpinned-le= ftnav) .everyoneloves__bot-mid-leaderboard, html.html__responsive:not(.html= __unpinned-leftnav) .everyoneloves__tag-sponsorship { display: block; } } @media screen and (max-width: 816px) { html.html__responsive.html__unpinned-leftnav .zone-container-main, html.h= tml__responsive.html__unpinned-leftnav .everyoneloves__top-leaderboard, htm= l.html__responsive.html__unpinned-leftnav .everyoneloves__mid-leaderboard, = html.html__responsive.html__unpinned-leftnav .everyoneloves__sec-mid-leader= board, html.html__responsive.html__unpinned-leftnav .everyoneloves__bot-mid= -leaderboard, html.html__responsive.html__unpinned-leftnav .everyoneloves__= tag-sponsorship { display: block; } } @media print { .zone-container-main, .everyoneloves__top-leaderboard, .everyoneloves__mi= d-leaderboard, .everyoneloves__sec-mid-leaderboard, .everyoneloves__bot-mid= -leaderboard, .everyoneloves__tag-sponsorship { display: block; } } @media screen and (max-width: 940px) { html.html__responsive:not(.html__unpinned-leftnav) .zone-container-main, = html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves__top-lead= erboard, html.html__responsive:not(.html__unpinned-leftnav) .everyoneloves_= _mid-leaderboard, html.html__responsive:not(.html__unpinned-leftnav) .every= oneloves__sec-mid-leaderboard, html.html__responsive:not(.html__unpinned-le= ftnav) .everyoneloves__bot-mid-leaderboard, html.html__responsive:not(.html= __unpinned-leftnav) .everyoneloves__tag-sponsorship { display: none; } } @media screen and (max-width: 776px) { html.html__responsive.html__unpinned-leftnav .zone-container-main, html.h= tml__responsive.html__unpinned-leftnav .everyoneloves__top-leaderboard, htm= l.html__responsive.html__unpinned-leftnav .everyoneloves__mid-leaderboard, = html.html__responsive.html__unpinned-leftnav .everyoneloves__sec-mid-leader= board, html.html__responsive.html__unpinned-leftnav .everyoneloves__bot-mid= -leaderboard, html.html__responsive.html__unpinned-leftnav .everyoneloves__= tag-sponsorship { display: none; } } @media print { .zone-container-main, .everyoneloves__top-leaderboard, .everyoneloves__mi= d-leaderboard, .everyoneloves__sec-mid-leaderboard, .everyoneloves__bot-mid= -leaderboard, .everyoneloves__tag-sponsorship { display: none; } } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/png Content-Transfer-Encoding: base64 Content-Location: https://cdn.sstatic.net/Img/favicons-sprite32.png?v=5e4ac8ad40e1 iVBORw0KGgoAAAANSUhEUgAAACAAADeMCAYAAABwYDC9AACAAElEQVR42uydd3iUVdr/P+eZlkIq CSUECB0iVYogKEQgFlRAAVlsiIqrvgLu+lMsq7GsKKsrltVdFERXWQXUYJciRRQElJ7QhAAhEBIg PZn2nN8fM/NkJjOTzKThu+/c15UrM+c5z7m/5z73ad85ReAmt356uJVB0T0NchKIBBpVZCGIFdJi e/LdKd0KXKHC9WHmJzltbTq5GejYuIq95JjeLoYtvDHlFIDiCrUqcl4zKAfo6NSFBwAhmNgMyr10 KW7h0c0FwF2X0pBUGkNCAPSBRuwYayTSoCOnyEyFVdXCEyP1JEYYtO8FFVYKym2NC+DPl7YmNTEc gAqryoqs82zIKQVgUFIkk1LjPOIXlNt4a/sZjhVZ6ky7ziK4ulsMqYnhfHOomJd/yqfconopBFiR dZ6Xf8pnRdZ5EiP13DuoVeNYYHteOceKLJrpjxWbGZQU6RXvWJGFrIJKsgoqSYzQMzIlio6xxjqt UCeAgnKbVqaTUuNITQwnq6Cy9ncqHPEjDbqGW8Bdru4WA0BWQVUwr9UqQVXDO1fmsD2vnEmpcSRG BoW9/gCu7hbDny9tTYTBETXHWabuVa+mpCaGAY4qWZfUmY0Kq0pqYji3929JTpGFa7rFUGFVvfxg UFIEHWONpCaGaX4SSHtQJ4ANOaVEGBSu6RbDoKRIjhVZeG9XoVe8kSlRGuANOaWsyDofUBFoA5IZ mUdlQG80kiye0EnA76AvCAFwB6DWO5Xgxe4NQPJLs6mX/OoFQCg82Vz63XVpABaN7/StlPJWoLgJ dRdLKW9dNL7TtxqYxkrZTztSCeK5xRNSnvf3XuP0KL6lRCKufndCyk+1RWqiaigLhZRj61LeVBY4 oyLHLJnYZU8gkRsbwEkh7KOWjO96ONAXGhWAsMvhi27seqyRMxWS/3LxaAn79u3bCnhaVdVJQjQu RySlLFQUZYVOp3tyx44d3hxRr1692hoMhs1SyialaYQQx6xW67Ds7GxPjkiv189rauVOS3TU6/Xe HBE0H0fkrivEEYUABNwZpaamEh0dTVZWFiUlJVp4cnIyycnJ2vfc3Fxyc3MbF8DChQsZOnQoACUl JSxYsIAVK1YAkJ6ezpw5czzi5+bm8tBDD5GVlVVn2nUWwYwZMxg6dCiLFy9m5syZlJSUeCkEWLBg ATNnzmTBggUkJyfz0ksvNY4FVq1aRVZWlmb6rKws0tPTveJlZWWxZcsWtmzZQnJyMpMmTSI1NbVO K9QJwL1M58yZw9ChQ9myZUud7wBER9fdtAQ1IpoxYwZAnQCCkaCqYd++fVm1ahVz5szx8PwmBTBj xgwWLlyomdNVprUBcNWYQKpjnUVQUlLC0KFDefLJJ8nKymLGjBmUlJR4FUN6ejqpqakMHTpU85NG AbBixQqio6OZMWMG6enpZGVl8cwzz3jFmzRpkgZ4xYoVLFiwIKAi0AYkffr0aVaOaM+ePSGO6PcH 4AJzRDQjR4QvjkiI5uOI3HRpvyjk5+cfbtWq1W9CiNFAWBPpLpZS3r1nz55PNTCNlbKfdqRSCPHc 7t27LxBHJOXVe/bsaX6OyDkPHLt3794LwxEJIcbs2rXrwnBEdrt9VFZW1oXhiGw22/Ds7OwQRxSS kPzvEgGwbMuWgShiKdBdwk96Vd5049ChuQDf5+TMkIK/IWU0iH/HFBbeM2jQIOsyuUx30ZFWb0gh ZwBVoDzWu/PIfwDszbivhc4sTL3m/eNsYAC2/nwA6O4W/tmUIZfc8F1OTie94BBu3TZC3je6Q6e3 9h5dNx0p3nV7R0pFXBT21rKJCJmBRI/gc31YxdROGUv8/t7v6oy61wjvD6AXoreHckBIMRAA1RHH /ZHuQE4aQv4VMCAQwHibOfKPtVnAd28oHeFSqD6WQEi/zbdy5mxb7+hycvAA6ilql5RD1BzcSobt f/h/kpoFgK1tXAnwg0egQCiK/fpmAQAgpPzEO0zc0HwAsK/0EZi298E745sFQJcXFx5HyO01gvWm sLBxzQIAAMmnXmGq9FkMTQJAFbrPvAIFV53MmBnRLAB6zHtjP5BdIzisvEq5ulkAAEi8i0GgeP0m 0WQAFORnPoKv2z5zpsEzXhNJ1xfe+gU4USM4OjZeP7pZAADgo1FSJROaDYCqSG8/EEyUGRma3iYF 0P3w2Z+AghrBrQ6aTw9vFgBi+XI7SK+mWVF1E5oFAIBAePmBFNWtYpMDkOW6dUCJe5iAlEOP3X9x swDo9vrrZglfeQGT6sRmAQAghI9WUYoJ/gEIx7BKSMXu42Hgy6adYjbxLVBzZNzbHcDBGg93Atik 3IsbqQgghXTwiYojjscjoRzwBaB3xptlEjyaZgnbqgGocpoLhISfdKqcBXBlSspRIZkJnENKG5J3 Y86cfQcgK6Xg30LyT5AWkCUgHuiTMjIbPyKEbjaSTIk8B2zQ2e03B2vJkIQkJCH57xQB8Oabbw5E VZfiYEp+sqnqTbNmzcoFWPnppzNUIf4mIBop/51fUHDPPffcY122bJmuU8eObwAzgCop5WNDhg79 B0BGRkYLs9lsmjdvXp0ckbMv0JQDXKpTlNcAPv/8805SiIUC4gE9QtzRqlWruwBSUlJuBf4IGIFo IcTrv2ze3OvxRx99zGY2n1OkLPjL3LmZGRkZYXUD8MMR2e12b44IBgIoqtq/pjVP5OamCfgrYBBC CCnEeKvZHDxHJKrDvTgiWQvFf6642IsjEs3JESUlJXlxRBKGZTz8cPNwRAktW3pxREIIYVeU5uOI EN7DcFU0I0ekt3tzRALSMjIymocjynjxxeOAF0dkNZubkyPyMSmF5uOI7EL4IieuysjIaB6OaN68 efsRwosjslZVNR9HhC+OSIjm44iEqvrkiGY2F0f07Asv+OSIWsXHNx9HJMGrUUI4JqXNAkDx4QfA xIzm4oj2Hz7skyOym83NwxEtX77cLoVY6ePRhGYBACBU1btzcmsVmxxAcXm5T47oscceax6O6PXX XzfjgyPSSdl8HBE+aoN0+oFPALJ6WOXFEQkImiPSm0z144h0Op03R+Rcc6Yqys6auIWq+uSIMjIy yqjBEeHBESmKxhEBP9lVdRbA9ddff1RIOVPCOcCGlO+eOXPmHYCcnJx/A/8ELDgWLT0wcNgwvxyR HWYDmUgHR4ROF+KIQhKSkPw+xGNNaavIES9IwSNNqlDy4pnyTXNd3zUCojmUO7M8ooWhQ3i59fga DwskthgR8Or6vvE9ANh97oDH52CkoGxT/VbX943vwQsJ13t9rr9BgrBAl1l/Z9zOPO37VacFcws/ 13IfjDVcFqhzTWnSyBsBCO+njaRZv/cLAF5zU+SyxtzCz4MCU6cFXAAS9uzVEksaeSOTZCfNCi75 to30CHO3jj8LBFQEfeN7UNint6a0prgs4m6BunIfMICkkTcS3m84lbt+1IqictePJOzZq8UZ1fu6 oP0hYB8I7zecyA/+xW/nDpA08kZN+aje13lYwOUPsy5/yKMI+sb3qNUSAS1sdiXgAlPYpzcrOEre hupJj+aEez9nvTOsZpEEDaDLrL9rpnc54+5zB+jS7x4iP/gXuDkjwNy9n2uKv20j4XTdjZXfhsil MG/DJ/SN70F4v+H89tqftMTKb7lHM7+7E7pyfdVpwTUH/1ZnY+XXAi6FLmWRH/xL+1y560fC+w0n b8MnTLr8oWogNUzv8ofaqqNPAC5nc//sckKXVO760fFdOpS7O+W3SF6g2h9qc8KA+wJXdYz84F/V uZedNOXuRbF+7xdarl0+4Cq6gAG4e7jre+WuH7XicFljVO/rWCGOsvvcAQ2Ie5nPuvwhj84rIADu yt37APcGaZLsxGsbX9LiuxJ3lf/ucweY5fSPuYWf+3VEvxboMuvvdJn1d48icEn5Lffw2saXPMJc lsBZ5i7lr218iVG9r/PriAF3x+69oqt2dJn1d61hclnF5Qejel/Haxtf0uLUVB70gCS833DNCV3K K3f9SGGf3oT3G671De6+4N54+ZOAmmKXMpdvuL67fCLyg39pSt1bPa3FrEWCHhO6+4W7Q7rK3905 a5OgxgM1lbty7y7jduaxQhz1KIpAAATVEFXu+lFzQBeQyA/+ReWuH1khjjJJdvJoEQOReg3LfYED 78YrEAtoE5MWhg7hCEbUB0DpsWxKj2UHHF9IXnRNTDQA5dbjaxoCIhjl7lOzkIQkJCFxFyPwApAH yCb6y3PqMPoC8EITKq7594IvAAHnvF+/frJfv35en4O0hJcErHzbtm0yPT1dpqeny8OHD9cHgNbz ihoA/Eq/fv2YNWsWffv2Zffu3bRs2RKAp556il27dmlxAO17HRIYP5Cens6YMWNIS0sDYPfu3axe vZpNmzZ5HPORnp7Om2++yY033hgUmDotMHXqVACys7O1xGbPnk3fvn1p2bIlUVFR2iEpu3fv5uzZ s3Tv3p3evXtz44031gZABATA3Qrdu3enXbt2nDx5krNnz5KSkkJOTg4ff/wx8fHxPPfcc7z++utk Z2eTlZVV10EogRXB7Nmzuf7663n77bc5efIk119/PR999BHnzp3T4owZM4YbbriB++67j1WrVmmg W7ZsGag/aBbw+tu2bZvm5YsWLZJTp06V/fr1k2vXrpWZmZly/vz5curUqTI5OVkmJyfL+fPny8OH D8tt27ZpcamlFtQKIDk5WR4+fFj7npmZKfv16yfnz58vZ8+e7REvPT1dZmZmytmzZ8v09HSP6lpv AK4EATl16lSZmZnpYZX58+fLtWvXym3btsn58+fLfv36aW3D/Pnztfh+GqvaAcyfP18uWrTIo/FJ Tk72Mr9L6ezZs2VmZqZcu3atnDp1qkf8w4cP+7KEfwAu07vK1T0Bl1VcCjIzMz18w6V86tSpcvbs 2fLw4cNy6tSpwbWEs2fPpl27djz88MMen+fPn0/Lli3ZvXu3Vh3btWvHhx9+yM0338zAgQMpLS3V Ely3bh2ffPKJv+rof2rmStz9c3p6OmlpaXz88cfccsstvPbaa6SlpbFmzRreeecdfv31V95++20A PvroI5566ileffVVcnNzSU9P11rGgKqhy4sBOXv2bDl79mwP87qXucv8gFb+7h2Uq1r6qJKBVcNF ixZpNcGlfOrUqXLt2rUyOTlZbtu2TQPtckKXvyxatEjOnz9fpqene7Qn7gD8zo63bdvG+vXrAcjP zyc9PV0rlj//+c/cfvvtjBgxgt27dwNw3333sW7dOkpLS1m1ahWzZ8/m7NmzfPjhhzzyyCPcdddd dbaKXrl3/z579mw5f/58LSeu3LvaA1e1dRVfZmamTE5O9rCIr1rg1wLunpucnExaWhoDBw7UcvLG G2/wwQcfcPPNN9OyZUvWrFkDOI6SmzVrFh999BGpqamaRQIRv6OXbdu2eTS9Ludbu3atXLRokdY4 uRzVvcWsqykOeETkkrVr12r9/8svv0zr1q255ZZb+OCDD2jXrh0DBw7k9ttvJzc3l379+jXOeAAc I5x33nmHkpISPv/8c66//no6dqw+VXTDhg3s3r2b7Oxs8vPzA+mGgwMwdepUzp07x6pVq5g6dSpT p05l3bp1ZGdn06tXLy33OTk5vPbaa/UCkAe0reutmpKcnMysWbM4efJkbc1uTTkFeK03v+ATkws+ NQtJSP5viscqmtC9Zs2gHEL3mtXQ9bs6o/L/JoCgD8eLNip0izN5hB06b6bEUr9DPoMG0C3OxH1D W3uFb/itmPf3nm96AC7ZdryMbXnlAExIjWNklxi2nqxg/3lz8wAorLDyS77jWqlOsUaSoo1EGoN3 qXoD6J4YziTn57QuMVRZVQ4FmfsGAejSMowuLav3s+49XVEvR6w3gG/2n2fFAce9O5N6xHB1zziu 6RzF10dKg0qnUdoB1/VhrrvPmsUC7j4wtIPjSrG9Z4K/cq5RfCCvxML3e84GXQXrBeCX/EruXJlT X9xecsH7ghCA39GZ1aF7zUL3mjW+hO41C91rFpKQBCShe81C95qFOKIQgKA7ozZt2jBkyBCPsK1b t3L69OnmATBkyBCee+45r/AvvviCxx9/vOkBuGTdunWsXbsWgLvvvpvrrruO7777jo0bNzYPgFOn TvH5546dVampqXTs2JHY2Njms0D//v2ZO9exQnvChAlUVFSwdevW5gOQmppKamqq9n3btm31csR6 V8OlS5fSt29f+vbty9KlSxk8eDD3339/8wFwF9fSjqioqKDfbRQfcF2299NPdU4DGg+Auw8cO3aM Tz75JOgqCKF7zUIAflccUehes9C9Zo0voXvNQveahSQkAYnflvA/m4Yn2XX2r+PPx11yzTXfBP17 3NdfX206F1u0Racq4/4w4sc8f/H8NkSOl5SNZ+POP12fnJ2NO/+0EGyqTTnUUQ3LDea5kVbjLx/+ eOnKm4f/tBng3z8N66oI2VcVor2AcAmVipQnVCl233rp5sMAH/546TAp5YQyo+XieheBSz7YMnwo qrpECj4RcDO1L3Y6JuFDIbkRRZl+y9Af67waulYA/9o+MCLCYnxaCB7Ex+nNtYgd+Hu5wZJxz6Bf KuoFYOlPw3qqkImgB/WX/dKuTLh1xI9+N6L7BLD0p2EDVFiFIAEgKiwZIXSUVNajlZUUAlfcculm n52TVy14/+chndyVt4oewHX9P+K6fv+hXVztm7IVxcCoHvOZMOBT2sYMcWUxAfj+/Z+H+DzKxwPA smWTdYqq+8ilHCA+sjvCGS0+sju1SWKLPrSLG0GkqQ092k5xt3OCour+s2zZZC8/8qiGluTc2wEP BupIwVcktOiNIgwcys+sFcD5ikOUm08TaWpD7rkfaj6+xJn+YvdAzQcyJErXLcMOAF1pgChCj0Hf ArO1yNfjw4eHbu6RIarnIFoRdP350jENVQ6gSps/5QBdnXqqAWumUOU1DVUeiNTUo/mAVMTXQqo7 mxqAVJS8hqfSmBZxffhg87BmIyhuGbZZ03shpuceGXVfQVHUTOo9bnWoBiDk/mYBIPDomNwt8GOz AACP6ZoGQCI+DT6tehhAssLTIG7ywU/DdiC87i9tPJHsvOXSzQN8WgBAhXoNQAPOvaJ4/aLhAeC2 Szdn4n2ucGPlfsXNQ3/8ulYAAMKmuxMIeHYboBwyGi13+XrgBeDmyzad1yHHIjnSOBnnN4R6xZRB v/hcn+SzJfzDsC05ilAvBbmuYerFap3BMvSWoT/73f9V67DcMUgZOhMpnnUfpgUgZ0A8cXjoT4vc Bx9BA3DJsp+GhVuEuAUpp0oYLgSmWqIXq4p9wG2XbD0akI2CNerXX19tOtuytCeoydIuDTohy6QU ExDcD5QglCsDmRHVG4Av+XDzsNclTFYV5drbLvlxezDvNgpHJJHFdptuyO2X/Xi8MdILyf8t8VsL MjIykoCv4+PjL5k1a1bQHNFrr71mOnfu3BZgXEZGRvAckfOljefOnatXF+18b1NtyqHuajgX+OWZ Z55Z+eSTT252AusK9BVCtJdShgshKqWUJ4DdGRkZhwGeeeaZYXa7fYIQouEc0VNPPTUUWCKE+ERK ebMQwi9HJKU8JoT4UEp5IzD96aefrrNFrJX3ycjIiBBC3AeME0KMFELE1pobx/PLgDghRNGoUaN+ XL9+vbVeFsjIyOgppcwUQjSII9LpdBP+8pe/BMcRPfPMMwNUVV0Fji44Pj4eRVEoLCysD4hCRVGu ePLJJ31yRF5F8Oyzz3ZSVXWjS3nHjh2ZOXMmQ4YM4dSpU5w96/+6Op1Ox0033cTo0aMpKCjg/Pnz ABFSysmjR49esW7duqKa79TgiJbp7Hb7Ry7lAG3btkUIoX2uTdq3b0+PHj2IjY1l6NCh7o8S7Hb7 f5YtW1Y7R5SVleXFEe3cuZPk5GR0Oh3bt9fe054+fZqioiJiY2PZv99rpneJM30/HJHjip+Gc0SK QlhYGBUVPgnSw0CPjIwMb45IStk4HJGq+lMO0NWppxqwZgohmocjqqGnmiOS8mshxM6mBiCl/J1y RBkZGc3GEWVkZPweOSKaiSPCH0cEzcMR4YcjklJeWI5IiObhiKSU/jmijIyMHdCEHBHszMjI8M8R 0cQcEVA7R5SRkZFJU3FEsCIjI6NujshkMjU6RySlPBQWFhYYR/Too4+eB8ZC43BEwG/AFXPnzg2c I8rIyMgxGAyXAg3kiFgNDH366af9ckR+m+LHH388HxgD3AsEOxo9I4SYieNmz1rfDYgh+fvf/x5e Wlp6i5RyKjAcaueIdDrdgL/85S9NwxG99tprpqKiop5SymQppQEow3FP3f04Vk9dGciMqN4AfElG RsbrwGTg2oyMjObniHDs0hySkZER4ohCEpKgJah24DMYBUwQMBJIAWKdj4qAnRJ2AZkT0W6VaRwA n8F0AU85lQYiOQIyxsN7DQLwGaQIxwClv1vwemdOdwI5zrAUoL/TMu5xcySkTayOFziAlXC7hAVU m3mJhFcnOm8ArQ00kCHgdmdQkYQ7JkJmwAA+c5Sza2iW40xgvdvz2IluE5nPnCBrhI0S8K7TOgiY 7qtIhA/lKQJ2OHPuYUJnok85zZwzAQZ8BrECjjrjL5HwtFv8FOEY1KQ4LTGgZnEoPhCt86U8E15x PhvlfL7TLdeunE8XcHSlAyQTnWk4n8cKHwNeDwCfwXSqPb3ITflnwBxn+HoJaRPgDtd7E6CTdOyi zAGQkJHpMD/ONFy57r+y2je8iyDTYcoUzyBinbnG6QtLqEU+czjgU86vO525H+UWJWcCaMu6hNuL o0Qtg1AJDzoBuRLLcTmms4FyAV8PzBGOq2X9pZXmetd9QDLBlbBTWX+3nCyZCAvcPNsF+kEFYiRk uCV+B47v412gJLwKZDp9INapaz24T06hnzPySmedXeKWqM8WTcBs6WlewOGYTqUuyZjo8J33nO+N dD1wd8L+zgBXMbhMWuTWBux0L0sc7f8xPKuW63OmW1hKjfdd3z0AxAKo1adwaABq5Gyi03zrJ8DE iTBdwgYcOXzQBbZGfe9fI61YXwACEsWxqLXIPRHh5H0UN/7nM08lrvPCimqm5+6ErkRdOXflIMXV 9H4GKc7+AaAoE15xfh6F49moz2CX0wquXNdqVXcLuBS6XtzpFmlkjQRcZpzgjO8e7vo83S3MlZav tB3iLEetNjib2PXOZxm+ikPCSgleN7s7+wAX6CWuTsoV5uzOcYZpL2kNkbPT2FmjcVogHQzKBJfF /DVE7mMICZ0mQo4T1FFnWNpEX6OmTDiaCTLTs7FZ4AyTmfCKu3P5ynkmrHPF/8zNcp/BEme4x6RV 1Ehguqulc0f5GSxxG2DkCFigOsyY41buE5xxYp3vvzfR6Qfulqw5LvAaD2Q6xgL98R4LLKitfa/h G69OdPaeNcYEHh0R+GgHnA1NEc4XnUMsJsIc6eh2/Q00i3B21X6UFznHBh7ib0imFYXTEhPdx4JO P+iPZxObU9uQzJlGZkAAnAlMcCYQ6wzyGG7V8t4oHBlwH5Q+6G8cEciw3GVCl+x0thk78R6W98Oz d9zpzLlf0L/viYkf805w5rQ/nlOzHKdlgpqahSQkIQlJsDIKx6B0B46RrutQ/PM4muwF+JioNIZM xzGSCfSU/qPUmAX7k7qa4hR8cET44YjwwRHhGAPkUA+5HU8zv0tgvymm4Oh63YtnQrDKJ9Qw56ga z2N9fK8ZNgrPYguoSFw5cOW8JmExCoezncfhiC7lrvjv4j1JcYE4T4DdueuFmspfwdPR3vXxjuvv Kbdn7hnaQR0y3S0R98ifuYW7iKqaMqEGEHeAOwItipo5+cyp0PV9egAWzKiRiXV4V1GfMora6/Yc pzmnO/9G1XjXFZ6Co0GqLS1fFtReOuo0p3tO3nVTVBPUUzXCpuNwTHdrLnC+e97tu5esq/EwxQfi mgCO+jCxq5jmuIXF1sik5l9eHBE+OCJq4YhoIEfkzpC4UPplM5yfJ+KYI+ZQzZYucX5f6QbWHVR/ qklLd131WkfkxRFRzQ1JtzD35w3jiJzhRVR7uCu+B0fk/L+LGhwRDeWIaA6OCCdHhJMjwtP5MvAt K/HBETlBaByRW45dYT5vWxpFdbXp7yPsFWeup1N3Q+Te9LoskkIdDRFUNx7u7fgCHyD8SQqe7YK7 5ZZQR1MMnp3RKB8vuxKYTbXjpVA9VnQfwCzxY906xwU73BSluIW7W6KuvwU1rOLexdcpKfgfkKTU sIb7n2tkPKpG/KAHJDWL4ijeY8FYPB2vP3UPySYEqtwlE/AelAaSg1F4D0qn+4scyLDciyPCD0eE D44It1/TGiLTaaKJSbAyCoeHu0bG7mbeQRNOzUISkpD894pHU7x9+/aI6OjYfxhNhmF6nS5aUXSN svpeVe2qzW4vsZitm0tKiu4fNGiQ9x6Q7du3Rxw6dHh3VVWVbCqpqqqShw4d3r19+/YILwAHDx5+ tymVu4M4ePCwNuTTTGw0GYaZTLWtVW0cMZlMGE2GYV4A9Dpds53a7a5Lmxn5c7hz5Va+3nWGQ6fL sEtISQjn6r6taBfneYhjWZWNr3efIetkGVa7SnJ8OFf2SaRzondxu+uqdVHruXIrC747QrlZO1ST 7LwyDueX88crUkhJCAeg3GzntdU5nC2zaPEO55dz5Ew5d1zWntR2/g/RrbWafbkzn3KzndYxJu4f k8KDV3ama+tIrHbJJ9tOafFW7y3gbJmF+EgD96R15KGrO9O3fTSqhBXbTqFK6gfgwKkyACYNakvn xAiS48O45dJ2AOQVVVFW5bhK6uBpx/1m1w1oTfc2kbSNDePmYe0w6RWKK22cKTHXD4DdCT3M7b6y qDA9Yc67qyx26fzv2LvWskX1Ba46RaBTHO2cze7fBLUC6JjgcKCvd52h0mInUFGl5Js9Z6iw2DEZ FNrE+K/eWlOcl3fqdNu2bTwurTt+tpI31uRgVyVCgEnvwFtldeTYZFAQgNmqInE8FwKsdqlZb8LA NlzWPd5D6alTp/OTktq2qdMCHVqGM3NUB1pHm5DSodilHKfiKqdyALPN8d2uSiJNOm4c1NZLeU2p c21519aRPDyuCyWVNkqdTvePNTmYbSp3jexAdLiedzYcp6TSxq3Dk0mMMhJu0BEbaUAJ4HfZgBe3 R4friQ53RHduQaV1jIn4SIPmbIlRRq8GqsEAys121uwr4ODpcsw2VTM9wBurj6IoguIKx97mdzYc 17w/OS6Msb0Ta3XAOgGUVtl4bfVRzpX53jxdXGnz+F7i9r2w1MK+k6Xck9aRTj6a44AAfL3rDOfK rMRHGhjXvzWJUY56XpcPlJvtrN5bwJGCCv6zJY9Hr+vqdxJaK4B9Jx039U0ekkT3NpFaeCA+0LFl OE9+doCzZRYKSsy0ivZdFLVWQ1dZu5wPwKZKLDZHxXN5ueJEVGWtbqxMBsWr3QgaQHK8Izdr9xVi VyXS+VmVkhYmHdHhBgCS4lzxzmrKfjx0jnKzHb1O0LoWR6y1CK7s04qF64/x67FisvJK0SlC65qv 7NNKs8DYixLIOlnKgdNlPP3ZQUwGRWszruiVoFkiaAt0bxPJrZcm08Kko8qqUm62Y9QrjL+4NZd2 i9PitYsL466RHYiNMGCxq5RW2dApgvTeiaT3SSQgyc3NzfM3kLTZVXn8bIXMKaiQZpvd74DTrkp5 8nylPFpQList/uPl5uZqe4+1IrDZ7SX4uXpepwjax4fXmQlFQFJs3S2hU5dnEVjM1s1mc/A3NAYr ZrMZi9m62QtASUnR/SdO5O5pShBms5kTJ3L3lJQUaVc9/H6mZiEJSUj+z4qPhij6H0ajcZher49W FKWRGiJVtdlsJRaLZXNJSUltHNGhZuCIDvnjiA42I0d00AdHZDQ2H0dkNPrgiPT65uOI3HS5cUS+ Ha6srIydO3dy+vRpVFUlMTGRfv36ER/vOemsqqpi586dnDx5EpvNRsuWLenbty+tWrXyStNdV62D 0rKyMr755hvcxwgnT57k9OnTjBkzhsREx3jPbDbz3XffUVpafeP36dOnyc/PZ+TIkSQnJ/vVUWs1 27FjB2azmZiYGNLT07nmmmto06YNdrvd4wKtPXv2UFpaSosWLRg9ejTjxo2jQ4cOSCnZunUrUtaT IcnLc4wdL7nkElq1akV8fDzDhw8H4Pz581RVOW75PnXKQVhdfPHFtG3blri4OIYPH47BYKCiooLi 4uL6AVBVxyTDYDBoYeHh4dp3m83m8b9Fixbu5YyrqF3pBA3AVcY7d+7EYrEQqKiqyq5duzCbzRgM BmJiYvzGdeOI8k63bdvWgyMqLCxk1apVqKqKEAK93uGzVqvVwzI2mw0ppfbdbrdruR40aBA9e/b0 UHrq1Kn8pKSkujmihIQErrjiCmJiYpBSYrVaNeUuIFarVXMy13dVVTGZTAwZMsRLeU2pkyFp06YN 1113HZWVlVRWVgKwevVqrFYraWlphIeHs27dOiorK7nsssuIiorCaDQSGRmpHSfWIAAuCQ8PJzzc c3YUExNDixYtNGeLioryaqAaDMBsNrNnzx5Onz6tmd/l9atWrUIIoZ3CtW7dOs374+Pj6dOnT503 /tUKoLKyku+++46ysjKfz2se/+UqIoDS0lJyc3MZPXq0z+Y4IAA7d+6krKyMFi1aMGDAAO3uurp8 wGW1M2fOsHnzZq6//nq//lArgNxcxwEql1xyic9z6WrzgYSEBFasWEFpaSklJSV+24Jaq6GrrN2d z263Y7c7WBJXrlwA3KuowWDwajeCBuDKzb59+1BVFSml9jksLIyICMfIKi4uTovnUnbgwAHMZjM6 na7WlrDWIujbty/ff/89R48eJTc3F0VRtK65b9++mgV69+5Nbm4ueXl5fPLJJxgMBs0hL7roIo++ JCgLtG3blhEjRhAWFobVasVsNqPX6xk4cCDdu1ffZxEfH09aWhqRkZHYbDYqKytRFIW+ffvSp08f ApLaOCK73S4LCwtlQUGBtFqtfgecqqrKc+fOyTNnzkiLxRIkR2Sz+eWIFEWhZcuWdWZCCKH5Q23i 1OVZBBaLpfk4IovFF0dUcv+JEyeagSM6saekpKQ2jugCTc1CEpL/s+JRDW/99HArg6J7GuQkEMEc lh+AyEIQK6TF9uS7U7oVeAGY+UlOW5tObqb2W7saQ47p7WLYwhtTToFbS2hV5LxmUA7Q0akLDwBC VN9H39Tirsu9qW02hsRd1+/qrtv/mwACnhtGGBRSYk3kFJmpqPFTbMdYI5GG6uOoy612jhUFxicE DGBSahwjU6J4f9dZNuSUej1LTfScuBaU23hr+5k6gQRcBIPbOX49T030/7vgyz/l8/JP+azIOk9i pJ5JqXWPDwOywKCkSCIMChVWlUFJkSRGnqeg3OYVL6ugUvufmhjmZZV6W2BwO8cM6K1tBRogX5Ka GE5qYjgjU6JITQzXADXIAhEGhUFJkWzPKyeroJKCchsjO0bxzSFv6u3Pl1ZTTAXlNlZkna8r+bot 4Cr7gnIbqYnhHCs2kxipp2Os0Svuyz/la8CyCioDqgl1WmBkRwcncHW3GK7uVj3JHJwU6aUgq6CS nCIzg5IiGZkSxTeHi336SsAWcOU0q6BS8/CXf8p3FEOK7zWCFVaVbw47rHB11xjqkloBuJxte14F WQWV2t/2vHLNN3zJhpxSDWRiZO1G1gYkMzKPSppRFk/oJOq0QHNICIA7ALXeqQQv2oon97vtfmk2 9ZJfvQAIhSfrl1rw4q5LA7BofKdvpZS3Ur0/tCmkWEp566Lxnb7VwDRWyn7akUoQzy2ekPK8v/ea 4uZ3l5RIxNXvTkip9fr5JqqGslBIObYu5U1lgTMqcsySiV32BBK5sQGcFMI+asn4rgGf/N6oAIRd Dl90Y9djjZypkPyXi0dL2Ldv31bA06qqThKicTkiKWWhoigrdDrdkzt27PDmiHr16tXWYDBsllI2 KU0jhDhmtVqHZWdne3JEer1+XlMrd1qio16v9+aIoPk4InddIY4oBCDwPSbR0aSmppKVlUVJSYnH s9TUVKKjq12opKSErKysxgUwZ84cJk2axDPPPMOKFSu8ntW4SI3c3FweeuihOoEEXATp6ekAXorc ZebMmcycOZMFCxaQnJzMnDlzGscC6enpREdHU1JSQnp6OsnJydpP++6yZcsW7f/QoUNrBRuUBVy5 f+ihhzy+1xSX0kmTJjF06FANUIMsEB0dTXp6OqtWrWLLli3k5uYyadIkFi9e7BV34cKF2ufc3FwW LFjQcAu4cpubm8vQoUPJysoiOTmZ1NRUr7gzZ87UgG3ZsiWgmlAngEmTJgEwY8YMFi5cqAHyVQxb tmxh8eLFmpVqW8YXEABXTrds2aJ5+MyZMzUFvqSkpESzwowZMxoGwJVLV/m7/latWqX5hi9ZsWJF wFbQBiR9+vRpVo5oz549IY7o9wfgAnNENCNHhC+OSIjm44jcdGm/NOXn5x9u1arVb0KI0UBwO1cD l2Ip5d179uzRLvJrNI7ITztSKYR4bvfu3ReII5Ly6j179jQ/R+ScB47du3fvheGIhBBjdu3adWE4 IrvdPiorK+vCcEQ2m214dnZ2iCMKSVDi2RLOe+UpHMd7xjaRviIES5j74IOugOpVBy+88gqOq+ab qh/AmfZQrkgXfL9qPXj+ZDO9CRV7iqLM1j66Bcc2G4AGnlPauMYIAbjQAOrsjKb3SeX2PqmM6pBM kdnMzvwC3tuTxZI9njPfUR2SeWrEUPq3TiTWZGL98Vyf8YIC8O64dKb3SaXIbGbJnixiTSb6t07k 3XHpdIyJ5ulNDgLiqRFDyRgxlCKzmcyDv1FsNjO+WxfeHZdOv9aJPLhmQ/AApvdJZXqfVF7dvoM5 NRJYMGYkGSOq6ZeMEUN5dfsOMjZtoajKsTJ7zpoNZIwYylMjhrIrv8CvJaqb4nmveAwqd8y4mViT iU5vLfb54rppkxjVwTHzXbInizu+WuU3HkDaUk9mjUcfrH1y2r9VIu/VUn4TP/mCIuc6dFdR+JJd Zwo0oL7EL4Ais5nYMP97UFNiool17lFNifHPc8eYTFqxBAVgZ34Bt/dO9Zl4Skw0n914HTnFJeQU l/DuuHS/8UZ1SGbDCb/XHfsHcMdXqxx3DbqVNTiq27ppk4gNM5G2dAUTP/mC2DAT66ZNYnqfVM1q 7vHm1FIL/DohOPzgsxuv88pdTnEJEz/5gp1nCrScrps2yStekdnMxE++YP1xHxZwOmGtANzN2L91 IkVVZtYfz/WdIDChWxf6t07UQGYe+s1/+QcKoMmkrmrYXBIC8LsCUNSMejVd1QBU9dX6pFRP0e66 qp4XfL9qPWOujAPRk6abGxQBL/Log3NdAY3GEfltRyQP8tiDC/y91pQcURGSO3jswczaIjUVgBx0 TOThB3fWFbHxq6FkJ5AWiPLGByDIxEIajz6Y0+gZq1PmvbKg+ZWG5L9Baq4jekpKOYem5IhgyZ49 e7w5or59+74ipWwWjqhVq1bizJkz68H9qlkppzehYg8RQoQ4Ik1CAC44gDrHA+PHj2f8+PEMGjSI 0tJSDhw4wMqVK1m50vMOncGDB3PvvffSo0cPoqKi2L59u894NUVrB1q3bp1R8+Gzzz7LvffeS1RU FN9++y2FhYV06tSJ8ePHA7B9+3YA7r33Xp599lmioqL4/vvv2b59O3379mX8+PFERUXx448/eik+ c+bM07VawJXzDz74gPnz53s8e/jhh7n33nu17/feey8ffPABb731lnYq0/z587n33nu59957Nav5 Er8LGJYvX05UVBRXXXWVzxcXL17MoEGDAFi5ciV/+ctf/MYD7+UcdS5g6NGjR63lN3v2bC23b731 lt94+/fv14D6Er8ASktLtZNXfElSUpL2PCkpyW+8qKgoj8OyAgZw4MABxo8f7zPxpKQkXn31VfLy 8sjLy+O5557zG2/w4MFs27YteABPPPEE4FnW4KhuixcvJioqihkzZjB79myioqJYvHix5vU149V0 YnepdRVNjx49ePXVV71yl5eXx+zZszlw4ICW08WLF3vFKy0tZfbs2Vp1dReXE9a5jMdlxh49elBa Wsq2bdt8JgiQlpamHQGVl5fH999/77f8AwbQVBJaRxQC4AtAUTPq1XS5j4qbjSOSUnpzRGfOnFnf qlWrOCGaliOSUr64d+/exueI/LUjqqo+uG/fvgX+3mtajgju2LdvX2ZtkZqMI9LpdBN37ty5s66I jV4NpZQ7dTpdWiDKmwJApl6vT9u5c2dOY2esTundu/eCZlcakv8KEcVHMyWqFZ1Oj12113qsa6Mr V4zoVXMRh/ZtQZWSzt37YzCakLIRV/hKQAh0Oh1CKNjtNqTzDFOhM6BXDOG079KPs/nHsVitGMKi QG0sABKhU9DpDBTm53L8yB5atu5IcsceIO0YDCb0dqkjOqYlLaITHeikilB0DdeN47A8q8XMrq3f curEARLbdiYmLgmjwYDVprArpwr9ql/O0zPZRKc2Eej1Bmx2lYa6gaLTIaVEURSKzpzCapP0G3ot bdt1xWgycuJMOb8eKuJkoRV9XmE5uWdK6JzUgm7tokhOjMBoENjV6juJgsq1ouPcmWMgVeJap9Aq qTNJ7bujAnkFZRzMLuBQbimVlVaMeiN6u9WOXbVxJK+U3MJK2raMoEOrSNrEhxPXwohOEUgJUkpU CdJ1e5E7NuH6J1AUQXRsIgaDEaHoKS63kH++hBMF5eSeKaeyyordZsdus2FWBfpKsw3VbsUkJQLJ yYIy8s9XEhFmIDE2nISYMKLCDURFGIgw6THodSjCUb6u0YyUjmukrHaVikobZVVGSissnC0u4cz5 SsoqLdisdux2FZvVhtlsw2yxodcJ9GazFZvNgqqq2O169Ho7JqOeclWlssrKycIy9DodJqOOMKOe cJMek0GHXidQhEAisdklZqudSrONSrMNi9WO1WbHblNR7So2m4rFasNqtWO22KiqsmCzqRgMAr3Z bMNqtWK3q1itNkxhJqxWOwaDHr1ecfzpFCxmhXJH1h25dxvMuYpISolUJaoqsdkdAKw2FZvNjtVq x2K1YbdLouJakZ+Xh91uRV9ltmAxW7FabYRHhNOtR3/yjh6krKwYnc5hZr3ecQCuThEIxZFzIRze LhSdplxVJapdxWKxYLPZkVKgIjQAVqsdVQqi9CaqqqzodRJ9VZUVs9niUKYzYrWpVFZZKC2poGXr 1sS2TEAgEcLhYK7cC0WhsrSEkqJCQEFK6TjFVZUktElGZzBSdLaQ4oICbDY7NruKagerzc653bux 2yEsLBx9ldnmRKOgquVs/n4ter0Ou9VCr0FduHhEGhbneiH3A28NRhMHdv7MiaPHUPQ6rFYrQiik DrqUiwZdisFgZMdPG/jtwG8ktG2HMFs4W1CAqoLN7igWIfTozVVWKqss6HU6LFYbOkVBp1dQbTak VFDtNlS740Qdu93mbNtBSpXKiipKyyoJbxFFXKtk+g65lNbJHbHbrCiKgsVipay8igShR+igvMIM KNjsKnabHUXo0ZutNsxVNmw6Ozqds6x1CjarBavN7jS9QlVlBZn/fp+KslKEoqDT6bDbbNhscNW1 N5Cc0hmbzYbNanFaC6xWO1VmO4eyD6I6fcRudziiXVXR61X0VoujaugUhyJF5yhrm9WKlK4WxuFI 584WERUdTXhkBKVFRZwtLMJgNFBWUkbhmXwiIiPROZthwOFPlRb0RlDt0gHC7rh4TVVVjHobeovV jsViQ3EBUKoBIBRnNXMcG379tGl06JQCQqCqKuu+/paN361m+ZL3sVqtjL52HJenj8ZcZUYIx9HC VVVWDFJx1BCnYqlKZ8NlR2+32x0OoQgUoWrebrXYnOeVg1QlES0iiWzRQjvDWKfXcXn6GPbu2M2p 3JNYrTbyTpx0a6IFdpuK2WxDCh2qWl1VHc26xG5TUew2R0tls6pYbY4WzGJxtGbhEREYjUaMJhNh YWEsefMdNq5ZjyksDLvNTlh4OHEJiVRUWBz13FY9jhDCcT2h2dkCutK2OfXZbSp2u4rebpfY7aqj hVPd2nih8OUnX/LD2h+0EVL27n1Etohyq44SnU6PxWJFgjOd6hbSrqpYrXZ0Orvjamhng4V0tJ52 VUVvV1Xsquroy9w6GSEEB7IOYrPZtGvDFEVBKIpHV2hXJRbndWJ2u+dISqoSm83RCVUDcDXfjuLQ SwmqKhGAw+mlMzE7f5hxM126dcZqsyKARW8sxmy24OoHBcLRwzlNr9YYPziqndQAuLpxV5cuJeil qzNBItzet9nsdOqSQr/B/bCYLSDBFBaGzeZ506MqpZZzVVW1EhCublpVUZ1mrzmMkIBeK5caD+02 O4UFZ7FarJirzOj0Oux2O1aLFXctNqtNy7kjmeq2Q+KqejVTry4Gv7NjVVU5cugIiuLoaIQQDBo2 iJ4X9UC1O6qrlJLzZ887m2bpPafQMl6PKySMJiOb1v3I0cNHiYqOQkrJ1Ok3MerKUdhVO9Ex0Wzf vJ3svfsxGo1IKdHpdISFh2l/eoOeuka4uqSUPhlms/cZcoqiUFVRxd6d+1CEginMhEBgMVsoyC/g h7WbWLr4IyorKh3NryqJjokiPDKcEzknOJV7in27sjh29Jh2gHpNCQszIQaN/IMsLvb/i4bN6hgx RUW3IDrWcdRbcVExZSVlGE1GdLrqOYTdbnd0yzjKX6/X+1UOEBMTVTdHpDfo0Rscjc2Z02c064RH eB9+qNPpPAAFIgGTVO63cjSmKLUdbN/UYrVa0XdIbktpafkFARAVFdnwRELyv15CHFGIIwpxRCGO KMQRhTiiEEcU4ohCHFGIIwpxRCGOKMQRhTiiEEcU4ohCEpKAV1QeeqCrKbJCjEORVwnEIKAr4Fr/ XwoclsjtqOLb8gj5VbfXDwd0UWKdAM7N7BxjRv8gUj4ABHqT7jmEeN2E7ZX4hUdqvQ+hVgB5d3a7 QSi8CbSmfpIvVe5LWnToU38RfDZtEsSpu7q+JBQ+aYBygNZC4ZNTd3V9SfrJrFegBHH67m7vAHUf MhqcLG7z9qG7RI3BgZcF8u/u9kwTKAeY4UzbvwXy7+o2VhWsCjzN4EWRpLd+59BqLwBHp6eEhRkM +4DOTQkAOFJltV7UaUlOFbgVQbjRMLMxlEdPfYLoqX+pLUpnpy40ABKElDxYV+KBiLH7EHTxbWuN IyUPumqFAnDqru4jgJTGABCgpDh1OgAIIcf5iykMtSy0F6L259T2qkOnY0gmGVazRYia8CciRt+O MIUjrVVUbvmc0v88jbRZUaLiibl9HsbU4Qi9EbWkkPNv3IM1x/tUyBbjZxM+eBxF/5qN9US2Wzkw rBqAoFvNFy1Hd2Fb+hRqRQmmnsOIGH079lO/Ub7mXaImPYKh60BK/v0Eask59MndsZ875aU8YtTN tBh3P8WLH/ZU7qbTNShtU/Nl8661bp+/x3jRZRg69wNAl9Ae+9mTVG5ZCVJi3rfRS3nYkOuI/sNf KF02j8otmb5KoY07AK8mWYlJJHzoBHSJHUC1IQwmlGjHrRLmHauJmvIo8X96n/I172LevR7cfmXR d7iI2D6jKP/2bcrXvOvXDaC6HfCY8upatiPh6a+JvPIulPAWKBHRKBHVZw2Vr3mXon8+gAiPIu7+ f5Lwl5UOoBp6BSlVjD2HIcL9bhk0uwPwKMCwwdeiRMRw9pnrKXr7QYre+bNXGVb9+h1nn5vA+X/c i651ClET/qQ9s+Xs4fyrd6JP7k7c/W8h9N63fks4qwGQkgOeT53mNPq+HtDdGubd32M/cwwlyvMu Q8uBnyn612yM3QYTNekRb/tLsVvzAaGITUg5Wsvd9q9pMe5eEp5c6ahaQmDo0BvrMUc1i3twCcIY jlpSiC6uNbpWKRS/95i3jXevo/zbhURefQ/m3esxZ21yywU/a45w6u7ug0Fu9fCDuDaEDbwaJa4N qHbUkgKsOXuxHNqGMXU4xu5DUEwRqBUlWLJ/xHLYcQayqd9opLkcy37HWWVCbyRs8DjsRflYsquP rlVVeXG7RYd3aN5/6u5u2UBPmkf2tX37UG/NB5xeMb/eyQUpUgpNlwagTXK7f4MM6ITdBotQ870A iIz1NlTlLsBWr0SDEAUxwgsAQNtFB7cK+FPwSQYnEnwDAGjz9qHXgRebGMMlcuZAg08AAG3fPjRX CvknajTRjSjh+WrxQL8AAJIWHn5FFWIUsL8Biqr8PZBCVI+I/Em7hQc3nS0y9JOSeyUEfAy0hENI ZrRp1y5KkUo/kHOBDbg5uHQ6YsCzYwki/66ul0hFuQopB0noLiDG+XPKOeCIlGwVQnzb9u2DPjeb n32ga7S5QoxBEdcoyIFt3j40oAHWDUlIGkcCrgWvvfaaqaysbBxwFeCTIwK2A9+2aNHiq1mzZjUO R/TCCy/E2O32B4UQQXFEUsrXdTrdK3Pnzq0/R/T888/fAA3jiID7HnvssSA5IinFvHnzXoKGc0TA J/PmzXtJaj9E12EBKaV4/vnn3xFCNCpNI6Vc/Nhjj90lhPDgiLx+XTCZTM+6H9nUWCKEGLBp0ybd 2rVr1/m1wF//+texQogm5YiklOmPP/64N0eUkZERZjQam4UjslgsF2VkZHhyREajsVE4orFjxzJ2 7NjaonR26kID4PTQRuGIOnTo4HHJmh950FUrFIB58+Y1O0fk1KlZwC9HVNvvfoE89ycuna63h9WM MHLkSAYPHozBYMBqtbJv3z5WrVqF3W4nIiKCcePGkZKSgl6vp7y8nOXLl3PqlDdNc9lll5Gamkpm Zib5+fnuj6o5IiGEF0eUl5fHt99+S1VVFSkpKQwePJizZ8+ydetWrrjiCpKTk/nmm2+oqKggMTHR 68I9gIsvvpgRI0bwxRdf1FSu6dQ7zdHGfZUUwKFDh7TPhw8fpnPnztppO7GxsRQXF7N3714Ajhw5 4qU8NTWV9PR01q5dq8WrUQTVHJGoqR2IjIykT58+xMbGoqoqer2eyEjH73wHDx5k9OjRTJs2ja1b t/Lbb795/HTfpk0bunbtypYtW9i6dSu+xKXTZQG7EEJrlmNiYrjjjjuQUpKTk4OUkrCwMIqLHT3r 1q1bKS4u5tJLL2Xy5MmcOXOGTz75hKKiIlfiqKpKx44dMZlMmM0+hwbVHJEQwsN7UlNTCQ8PZ/Hi xaxcuZLPP//cqwwPHDjAu+++y4oVK4iPj2fUqFHas1OnTvHxxx+TmJjIpEmT/P2gXc0RgSdH5DKn /9/9q+nZQ4cOcf78ecLDPfmk48ePk5mZSfv27bniiit8JVPNEUkpNzlvcgIgOzubSy+9lDvvvFOr Wm3bttU+T506FYPBQHl5OVFRUcTHx/ss68OHD7NlyxaGDRvG4cOHOXr0qHsmfwZndzx27Nhy4G6t cMxm9u7dS0VFBVarlZKSEg4fPsy+ffsoKSmhqKgIm81GVVUVp06dYuPGjVqtKSsr48SJE5q/nDhx gvPnz2M2mzUfAVAU5U9r1649rXn/888/32wckZRy3+OPP16DI6L5OCJ3XRoAi8XybymbiSNyDFY9 AWRkZNiklM3CEQnhhyN64okntkopm54jktI/R/T444+/LqVsUo5ICHHJv/71L/8c0eOPPz5XSvkn KWWTcUQFBQW1c0SPP/74KzqdbhRNxBEpilI3RzR37txNFoulnxDiXoLgiIBDwAyLxRIlpewnhPDm iJx+EDhHJKX461//eokQ4iohxCCgu5QyBlCFkyMSQmwFvn300Ud9ckRPPfVUtMlkGgNcAwx87LHH QhxRSC68eNSCWz893Mqg6J4GOQlEQuOqkoUgVkiL7cl3p3Qr8AIw85Octjad3Aw09fXzx/R2MWzh jSmnwK0hsipyXjMoB+jo1IUHACGq76NvanHX5d4U1zmnbkTRdP2ujogMAQhaesaZ6BlnakgS9QfQ roWe/3d5W+4alHhhAAxr55iqx0XoG2SFegPolxRJldWx0GFUSlR9k6kfgJ5xJpKijfx8vJS9pyvo 0zaieQEMaedQuPVkBQcKKgkzKFzTuX5WqBeAvm0d5o80KpRbHMXQIzG8PkkFf0zoyORI4iIcr903 tPqnhN5tIog2KpRYgts0HTSAXs6cfrLnLPnljlF2p1gjV/eMI71TFCsOFAeVXlBFEG1U6NM2gvMV Nr4+Usov+ZX8kl/JqqOOHRr9koJfLa8NSGZkHm3WM6sXT+gUOrP69wegEU89qFO0ab/7QqZfmk29 5FcvAELhyfqlFry469IALBrf6Vsp5a1AcC1JcFIspbx10fhO32pgGitlP+1IJYjnFk9Ied7fe015 ZnWJRFz97oSUWq+fb6JqKAuFlGPrUt5UFjijIscsmdglINa1sQGcFMI+asn4rgETWo0KQNjl8EU3 dj3WyJkKyX+51LzXrBXwtKqqk4RoXI5ISlmoKMoKnU735I4dO7w5ol69erU1GAybpZRNStMIIY5Z rdZh2dnZnhyRXq+f19TKnZboqNfrvTkiaD6OyF1XiCMKAWgQgMsvv5zLL7+8QQDq3Rv27t2bN954 g8LCQn8/zzetBa699loAEhISGmSFegMYPnw4FRUVANx44431BlCvIrj88svp2LEjX3zxBW3atOGS Sy5pXgtceeWVAHz33Xf8+uuvREREcP/99zcfgGHDhlFRUUFsbKy2gOniiy+uF4Cgi+DWW28lIcHR Uz/33HNa+ODBg2nTpg2nT59uWgCuS9b+9a9/ceLECcCx7GfatGlMnz6dF154oekAuByusLCQf/zj H1r41q1bmTZtGsOHDw82P6F7zUIAfk8cEc3IEeGLIxKi+TgiN13aQr/8/PzDrVq1+s25qq6p7jUr llLevWfPHm25f1Pfa1YphHhu9+7dF4gjkvLqPXv2ND9H5JwHjt27d++F4YiEEGN27dp1YTgiu90+ Kisr68JwRDabbXh2dnaIIwpJUOLREt65MmccyAwp6QsYG1mXBcEugXh60fiUr7wA3LkyZ5yU8stm ybUQ17pAuLWEMqM5lANI5FOuz27XjNK3uQAg6ecFgMYv89pE0/W7GhOGAPiUewcn8sY1HdArjTZ4 ChxAmF7Qr3U44QaFfm3qt0SjQQD6t4nAoFMoKLdySbvqxQnJ0QYWXNWeQUmOxSwTesay4Kr2AITr Fe7o35LXrm7P3QMTWHBVe9JqWeZTK4BLkiM5VWphfU4pfVuHE6Z3HhkrBFEmHQZnsYTpHd8BrugU xYiOUZyrtHNRYrgjnk4EDyDSoJCaGM6O05XsOl2JQacwIID1Qu1jjJhtKs9syOPNbWfqXwQDkyLQ K4KTJRZUKSmqsnkUgz8x6gSlFjuqhKKquhfn+x2SDXEqu3tg9WK1KKOOFkbFcfYsEGlUnNaq3shU ZVOJMemJNCgkR9fduPoEEGPS0SMhjP2Flew45eACEyL0jO0Sw6CkSLadLEeVkis6RWNQBP3diuZA YRWXJLfgr6PbEW6ou5nxCWBwuwgUIfjucAm78ysdERUY0SGKIe0iWZ9Tykd7z3FNtxiGtm9BXqmF rvGO2dym42VI4KJW4eSWWJjQMy54AGuOlLLmiOfprTYV/ufr49r3tUdK+f5IqdcxuHYJ5yrtvLfz LCOd1e9Muf+jSBs0LPc1GeyVEMacoa0Ax667PfkV7Dpd2TQAfEl2YRVPfH+SpCgjRVV2jpyv/RSA Jpmcni6zcbossO1Kv6ve0FLvVIIXTVc1AMGuZlPvpquaI0I83Xz6q3W5rSNK+UoIca0QbKdpisOC YJv7nMABphHF11oiRfD0O+M7Zfh7p0lrQV3KmxRAIMqbDECgypsEQDDKG13uWnn0wigOyf9q8WgJ +/fvP85ut2dAE3FEsEun0z29c+dO76bYqbxZOCKdTnetC4TWDjhz3ixit9u9OSJoRo6IEEdULSEA dQJ4+eWX2bx5M0Zj07hIrQAiIiK4/PLLiYyMZOTIkc0PIC0tDZPJRG5uLldffbUW3q1bNzZs2EB6 ejoA999/Pxs2bAAgKiqKZ555hk2bNjFv3jw2bNjATTfdVD8A11xzDUePHmXZsmVcdtll2lk0er2e uLg4rVgiIiKIi3NMw2+66SYmTJjA6dOnufTSS4mLi8NkMgUPIDo6mqFDh7Ju3To2bNiAyWQKaMlW z549qaio4KabbuJPf6r7NAm/AMaOHYvBYODQoUOoqkpBQYFHMfiTsLAwzp8/j91u58yZukkqv7Nj l7J587Tln8TFxREbG4vd7iCfYmJiPP4DlJeXk5iYSHR0NN27d68fgISEBAYNGsS2bdv4/vvvAUhK SuLWW29l7Nix2tFQU6dOxWQykZaWpr27bds2rr76ar744gtatGhRPwBXXnkliqLw3nvvsXGj40Ru g8HAxIkTufrqq1m+fDl/+9vfuPPOOxk3bhy//fYb/fv3ByAzMxNwrLY6ePAg999/f613pzZoGY+i KKg+riQdPnw4e/bsYdKkScyZM4dZs2axfv16jziuZTwNYkh8Kb/kkkt48803HbkTgk2bNmlWbHQL +JOUlBS6dOlCQUEBu3fv9hmnUSzgT3JycsjJyQko7u+qN7zAHBHNyBHhgyPS6XTNxhG569J49tOn Tx9KSkraLqXsDiTg4/zKBooF+FWn093jc2LSGOKrKgshnt69e3eGv3eatBbUpbxJAQSivMkABKq8 SQAEo7zRpW/fvhdGcUhC0hAJqCmWIKrGTx2B5GqEHAZ0B9o635c47kE5iBSbEXwTtvKjTaK2mzUD BSAnTzaarco9UmUOIoiTfCVHhMICk0H9l1i+vNZxhl8AleOnjAGxEOjUAAsfBTkzfOWyNf4ieLWE EkTl+Cl/BbG6gcpxvC9WV46f8teALlaTkyfrqizK+8C0Bir2JUvDjOptYvlyj0UFHhaotCovN5Fy gGnO9H1boGLClClCio+bSLkmUsibIjKXLfMAUDRuWpxRbzskEC2bHADyrMWm7xb71dLz4CyCMJ19 bnMod+RYtAzT2edq32X6rZFV4ZY8mnfHZUlYpTFJrPp3uVIZZrmumZUDRDv1ogjBNc2sHACXXgUY fCEAuPQq1O+09prEQH2m9k19RP3/EhGV428yE/iPFRbFrvQzffmf/RXjp7wqELNwMDVDI7/4eFvl 9VOeQoiMQNMKX/mxSQGOBvgCCPGc6cv/7K+4bspQgXjAGaoIhUVy5kxDmEnOA/YFmNoRcDjhz4HE lrAnrFX0C3LyZKNQxDu49SMC+lSdKZkrli+3SFXeRWBOuQ1AkUJ+G0BkVarcKRYutFaZxaPARd4I 5RPma//QM+KLZVsk8vU6MyT5GkAJN8gvgLLacy9fjfzi423m8ZNTEeIxP9GMqk59R2ZkKOFG+Thw 3H96FIeb1C8BFLF8eZmQvFmL/pxwe8UTMiNDUVEWUbvDDjfvyP6jI03lHn+RBPKfYvnyMnD2hmaT +qJEnvUZWSozxZdfVph37P8fYGidpoUXKsZPbR/2+X++RYoPfEQpNNv02oHMCkDM8uXnQPHetyvE e2Gf/2d1xbWTO0jk8wQmUUj5JoBVFQ8ChR4AJfe5xgIaAICIlR99LAWvukU9Y6XqzwBCJ/4FBHzo mBBcW3H9TVOjv/xPoaT6ThQp+HvE5x8vd4/rMSYMN6h/dplNosyKzsw8W3n9lFtAXBWocg0EvFYy YULLiJUfLUXyDfBueP9e/89HPK8yFJXjp/4hYuVHS0snT07UW5QsHKxZfeT98JUf3140blpczFdL i3zNlmqdGVWNn/I3iXionspBcijMpA4Wy5f7PWaqVorGVHzmUQT3AAeDVH1ASB4IaxNzUW3K67SA u5Rfd9NgRcjrEGII0BtoiWNjZCXIsyCyEGKzlKyKWPlRnbvsQhKSkLgkMI5ISrFhw4YRwNVCCL8c kZRyM/DNyJEjN9W8PKteAPbu3WssLCy8Rwgxh+DG8UeklAsSEhL+1bt37/pxROvWrRujKEqDOSJV VWempaUFwRFJKTZu3PhXRVEahSNSFGX1xo0b/xrQxWrLli3TtW7dusk4ovz8/NumTJninyNq3bp1 k3JEzvR9W2DDhg1TgCbniICbRo4c6ckR/fDDD3Gqqh7C0cM1tZxVFKXbZZddVs0Rqao6t5mUA7R0 6nNY4Lvvvos0mUx5Qohmo2mklCVmsznpyiuvLFfCw8Ova07lAEKI6PDwcAdHJKW8IByRS++F54ik lEFzNVLKBnNE9dH73yli/fr1ZiFEQByRlNIipeyXlpa2f8OGDa8Cs5zFMXTUqFHbNmzY8BSQEWha o0aNCo4jUhTlubS0tP3r1q0bCjwAIIRQhBCLtm/fbmjZsuU8KWVAHJEQwsERCSEC4oiAPRERES/s 3bvXKIQnRwT0qaiomNu7d2+L81qqIDgiWTdHJKVUpZR3Dho0yHr27NlHhRBeHJGqqk+sW7euZ1pa 2hagTo5ICPG1C0CdHBHw6qhRo7Zt3LgxVUr5mJ8EjUKId6SUiqqqtXJEQLFrHbuSlpZWBrVzRC1a tHhCSqlIKRfV5rBCiOEbNmz4Y1paWpmqqvfUkuY/nXodvaHBYHgR5217Psw/c9CgQRUbNmwIiCMS QrywYcOG9mlpad9KKX1yRIqieHJEl1566TnA19lu740aNWr1Dz/80EEIETBHJJ0ckZTSB0ck73ON BTQAACNHjvwYqjkiKeUZq9X6ZwC73R4kRySu3bhx49S0tLRCwP3e3L+PGjXKP0eUn5//Z5fZhBCz xowZc3bjxo23CBE8RySlfG3NmjUtR44cuRT4Rgjx7uWXXx4AR+QYlv9h5MiRSzdu3JgopWwQRzRy 5Mjbf/jhh7gRI0YU+Zotea0ndEZa6gTzcAOUAwxbvXp1jHuZ15RaOSJVVR+VUgbNEUkpDwAPREZG XjR27NjG4YjWr18/GLhOCDFEStlbCOHGEXEWyAI2A6tGjhwZ4ohC8r9HQveahe41C51ZHQJQ6/6C CINCSqyJcqudY0XVhGfHWCORBh05RWYqrCqpNW5zcoU3GECFVeXewYmUW1TmrsnVwu8d1IrESD0P OM8l+fOlrb3e3Z5Xzns7z9YJpM4dFttOljMyJYqOsUaOFVlIjNSTGKlne165R+LHiiysyHIMfEam tGBQUiQ5RRa+OVT7vSx1+kBWgeO2WJeZBzlvbXKFu6TcaieroJKsgkre2lbgfKfuwz7rBODK6WCn Ytf/bSfL/b7jAllQXvdZJAFtcnEvho6xRi/zuyy0aHyK9r3CqvLN4bqvxQkIQFZBFSNTori9X4L2 vaYUlNvYcKxUU77tZHlANSEgAI4ct6RjrFGziBeACmudDudLAm6IXEp9mb8hEjAAl9l9mb8hErrX LATgd3Rmdehes9C9Zo0voXvNQveahSQkAUnoXrPQvWYhjigEoNbOKDo6mtTUVEpKSsjKytLCU1NT iY6OJisri5KSEoYO9fw90xUeiNR5CsemTZsoKSnhmmuq17p8/fXXJCcnM2LECEpKSnyetLFq1Sqe eeYZv0ACvk5o1apVJCcnk5qaCkBycjLJycmsWrXKI/GsrCxmzpzJzJkzWbVqFenp6UyaNKlOC9QJ YMuWLQCamV2HILnCXVJSUsKWLVvYsmULDz30kMc7DQLgyqlLsev/qlWr/L7jipObm1tX8oGNiFat WsWkSZNITU0lNTXVy/yu3Lr7QklJCYsXL24cAFu2bGHSpEk8+eST2veakpuby4oVKzTlvkA2yAIl JSWaI/oyf25ubkA5rikBN0QupYHmrNEBuMzuy/wNkdC9ZiEAvyOOKHSvWehes8aX0L1moXvNQhKS gCS0jii0jijEEYUAhACEAIQAhACEAIQAhAD8jjii0Dqi0DqixpfQOqLQOqKQhCQgCa0jCq0jCnFE IQAhACEAIQAhACEAIQAhAL8jjii0jii0jqjxJbSOKLSOKCQhCUjq3RJ+/fXX0Yqi3KvT6VLsdnuO qqpvXXPNNUEvOq8XgNWrV8+XUs5OSkpSTCaT3mw22/Ly8lQhxKtjx459uEkBrFq16sUWLVrMjI6O jrnooou09/ft2ydLSkqKy8rKFqanpz/SJADWrFnTWkqOtk1qG3ZRaqrXu1lZWTIv71SVEHQaM2ZM fqMC+Oqrr7objcZNffv2S2zVKtFvvIKCAnbt2lUgpRyenp5+qMEAvv7662ij0fiyTqe7KTX1oqiE hAQUxf9rqio5e7aQvXv3lqqq+rHFYvlzbc7pN6VVq1YN0ul0f7bZbDe2a9dOCCGU1NTUwA/NyMpS pZRqXl6e1Ol0n9jt9pfT09O3BwRg1apVg8LCwtYkJCTESClVd8USx/U9OsUbi11VURTFI9GsrCxV CKEUFhYWV1VVjakJwmdnpKrq0OjoaFOvXr3AOWY4de4cj7+7iC15udiFIEbR88QNN3D90EtZ8cMP /HvrT1QaTegF9ImN49EJNxLbogUu8Lt27TJVVFQMBeoG4C4SeOrdRXy+Zw/2lvEY2ycjdDosUvLc l59zcdfuvLt1M0r7ZMJNYQgF9tts3PGfD0hv35E/XnV1rY5WZ5meKi5m2cFs7AmxCJMeKVWklAi9 jqrYGO556w3UhDiETgdSRQLCZIT2bfmmooT8strPYK0TgBACfXg4CIFwOo3rz9AiksKYaAzh4Vou tedCYIhqgRC1V7SABiQSEAiklrxTlVDQR7dACsUZIpyn5LrDrF0C8AEJqur4s9tBCMef8/p57Krj D0DYQehAuL4Lx/sNKYIIgxGT0QCKgtDpEIri+NPpnH+K409RQNEhFKE9D0dHhN7QMACx4eEs+sNt tI+N0ywfyF+y0UhGvwFEm0wNAwAwoFNnVtxxN2NTuoAqHU7h70+F4VFx/O2yK+jWuk2daQfctEaE hfHSpCn8v0uGEWEwOPxAofq/IohQJNNTOvPQiJGY6jB90ABccvPwy1k4bgJdIlsgVYmUEqlK2umN PDPkMib0HRBUevWaml3UoQMf/OFWrmrbDsVmY3h0PK9dcz3d2tRt8ppS74mJyWDg+etvwGK3Y9TV /4ZyvxYIdO9foMqlnwR9AtiyZcub+adPh+Xnn0FVG0YdqapKfn4++fmnw7Zs2eJ1NrbftvK7775r pdPpdrRp06aNXm8QPXp0D3oAe+DAAWmz2eTp06dP2u32QVdeeeWZgCwAcOWVV56x2Wx9zpw585PF YrZkZ+8PyhTZ2fvVqqoq85kzZzZVVVX186W8Vgu4ZNmyZcb4+PjFMTEx10VERESl+hgN15SsrCxZ Xl5eWlxcvFKv189IS0vze0pewGZdvXr1KyaT6Y74li2jL6oFxL59++TZs2dLzGbzO+np6XXeCBZw OzB27NgHKyoqXs09cQJfzmm328nKyuLkyZNqZWXlq4EoD8oCLvHlnAcOHJBWq1XNz88/brFYLrnm mmsKAk2vXnPDb7/9Nt5oNK5MSEgYrCg6k91uqzx79uxmIcSNaWlpRcGkVe/Zscs5hRATpZTLRo8e PSPQS5QaVb744ot2za40JP9VEuKI/jdyRPJo27Ztw9yVu8TBEeVVCSGakiPqm9iqVSu/8ZqYI0p1 ckT+O1FVVTl79ux/M0ckpYMj8jEattvtDo7IjRNoNI7ozJkzvPzyy2RnZyOlJDw8nHvuuYfRo0fz zTff8M0332jAOnTowN133+06z6iBHJGUvPLKK/zwww+EhYURHx+PoihIKXnnnXe46KKL+Oqrr4iJ icFgMCCEoKSkhOeee44BAwYwderUWlmSOsu0sLCQjRs3EhYWhl6vd8wFpURRFPR6PU899RTh4eEa KAC9Xk90dDTZ2dmcP3++1vQD4ohMJpNXLoQQhIWFYbfb/T4PDw+vkyMKyKulj3mVKyw8PLzOOI0C wOX9rs/uf77CXaPmukDUCcBkMmkmdlUx1+eaf65nrud6vR5TQymaqKgoHn/8cVzNr0uBu7i+uwOI i4tj6tSpREbWfglQQEXQq1cv5s2bx8CBAzUT1ywi96Lq2rUrd911Fx06dKgz7YCb1vDwcObMmcOU KVMICwvzmXOj0cioUaOYOnUqRmNAV6UFz5CMGzeO7t27s2TJEs6cOaPlOiYmhhtvvJGOHYNbmlwv jqhbt2489dRTDBgwQDP5rFmzglZeLwu4xGg0ct9992G1WjEYAqPkgrJAII0IELByf+n554jy88Py 8/MbkSPKbwhHpBc9evS4kByRxZKdnR0kR5T938oRxcdH+xqSu6TpOaLcXHw55wXiiBzOeYE5IsVk t9tDHFFIQlJvEVfOuVb70m7Ua08Bc0DENo06WQQsObl+1oOuEK0lbDfqtVdAZDSdcnCkLeYkjXw1 wwsAML3pFNeAIYR28aYbgKbMuS9LeFvggkgIwAUHUOu8YECbCAa0jfAKP1BYxY8nfK+OmTEggcIK G58fKGo4gPYxRoZ3aOEVPrxDCxIi9KysoWRAmwgt/oHCKg6crfvuo4BmRjtOVfDR3nOEGxR6JITx h97xjOkSzeojJR63O7mD7ZEQFhCAgHygwqpSWGHjRLGFNb85SM8Ig0KEofr1hAg9A9pGUGFVqbCq jO0S2A7SgCyQEKFneHtH7jrEOKbdhRU2CiuqR9s9WoZp1kqI0NMjIYweLeu2QkAAeiSE0SPBc8vB 4l897lHWzP/j8TINwPAOLeoEEFARnCi2sHJ/ESv3F/HjcYf3z7i4emO2S2FhhY0DZ6vYcbqCCqvK gLYRHsVUbwscL7Z4VKseCWEkROhpH2PkRLGFS525jzAozBjgAFZhVUmI0HNp+xasOeL/l5yg+YGE CL2Wqwi947/LPyIMile1vbhtRMMBDGgbwYsJyZqSCIOimdtljcIKG3/78bT2TrhB4eHhbeiREEaE QfF7GVtAPhBhUEiI0JMQ4cC7v7BKU+bK/YHCKq1muKrsiWLHrZBjOvuvktqQrN2o15t1UnFy/QOh Q7N/dwBkUfOprdbl9mOUeLVeadVHvZTveQHI2/BAhpTqq7IJLSGRRVLydN6G2XNcYR4zo4aIv2os JQ/mbXhggb/3mmyvmUQWqVLccXrDA5m1xWsSABKZo0ox8fSGB3bWFbfRq6FE7lSlSAtEeaMDkMhM p/KcQN9ptCKQUn3V3btDEpJAxaMlPPX98adUVZ0jRNOQFVI6OKJ2Y1I0jkjXdWh3l/JXpJRzhRBN tecYIUSYEGJo8W/nRXSXuPXg1g6oqjq9qRT7AOLNETWV2f0A0HT9nkZEIQAXRmrtjK644grS0tK8 wrdv387KlSt9vvPss8+Sl5fHW2+91XAAPXr0YPz48V7h48ePJykpyUvJFVdcocXftm0b27dvpy4J qAi+//57rrrqKiZPnsyLL74IwC233EJUVJRHvOuvv177PHjw4IAsEBCA0tJS8vLyOHDgAB9++CHg WFviDiApKYkrrriC0tJSSktLueWWWxpeBO6Ju0zbo0cPAPLy8sjLy/PK8ffff0+7du0YNGgQgwYN qrMYAgIwePBgL5M+8cQTHt9dAFeuXKkBGD9+fJ0AAiqCAwcO8NZbb/HWW29p3v/cc895WGjQoEHk 5eWxfft2vv/+e0pLS7niiiu8/KReFti/f7+Hxw8ePJikpCR69OjBgQMHtNxHRUXx7LPPAg6/cRXd Bx980DAA7pKUlKTlyvXfHUDNapuWltZwAFdccYXmAy7vd5l70KBBJCUlkZeXx4wZM7R3oqKiWLx4 MYMHDyYqKorS0lKfaQfkA1FRUSQlJZGUlAQ4GhmXMveGx1UzXFX2wIEDALVWSW1Ilrf2WLNyREmj O4Y4ot8ZAOeQuVnEXZc7gGbjiABvjih5bKcMKeWrTWkJKWWRqqpPtxuTMscV1mgckb9qrKrqg8lj Oy3w917TcUQOS96RPLZTZm3xmoYjkjJHp9NNbJPWfmddcRufI5Jyp06nSwtEeVMAyHQqzwn0hUbk iOSr7t4dkpAEKh6r6e5cmTMOZIaU9AUCW5sduFgQ7BKIpxeNT/nKC8CdK3PGSSm/bJZcC3GtC4T7 TzYZzaEcQCKfcn12647p21wAkPTzAkDjl3ltoun6/QzJ/s8CCKozWjQ+RftcaVXZnV/Bt4dLOO78 lXzR+BS2nSznn9sDXlYcfG94rMjMxmNlRBoV0rtEExeu58VNp4NNpv4AzpTbWJ/jmGh2jTfRo2UY gsAPzWgwgJRYI7f1a0lMmI7ercL56XhZvZXXC0BipIGRkdXbOg6dMzdAfT0A7DhVwfu7Cok06Ljz 4gRu6h3Pjw2wQtDV0KZKSswqp8qsHD1vJsKg0DKi/iO7oN9MjjYyKTWOFkaFIe0iKbPYOV9pCzaZ +gNoG2WgbVQMVrvK7vxKVv1Wgr0BXhgUgDtX5jTouS+54E1xCMDvCoClGfVquqoBCHY1m3o3XdU/ XCKebj791brc7jVL+UoIca0QbKdpisOCYJv7nMABphHF191miuDpd8Z3yvD3TpPWgrqUNymAQJQ3 GYBAlTcJgGCUN7rctfLohVEckv/V4tES9u/ff5zdbs+AJuKIYJdOp3t6586d3k2xU3mzcEQ6ne5a FwitHXDmvFnEbrd7c0TQjBwRIY6oWkIAgpqa7d69W/tcXl7Oxo0beffdd9m/f7/2fNWqVTz0UED7 3oMHAJCVlcWnn35KTEwMt912G61ateKOO+5oHgsA5ObmsmzZMgD69+/PwIEDURSl3mdVBA0gNTWV J598koSEBC699FK++OKLBh2UETxBkZzMpEmTtO+//vprsEl4SNC1YN26dYwaNYrx48ezb98+/t// +3+1nlPW6ACsVivnzp3j6NGj7N69W1tfUl8Jugi6devGnDlziI2N5eqrr6aoqIjTp5uRKe3UqROd OnXCbDbzww8/8P7772Oz1Z+k0sYDfq4DajLZs2dPaBVNCIAXgAvMEdGMHBE+OCKdTtdsHJG7Lu2Y xdOnTx9KSkraLqXsDiS4P2sksQC/6nS6e3xOTBpDfDVmQoind+/eneHvnSatBXUpb1IAgShvMgCB Km8SAMEob3Tp27fvhVEckpC4y8Fr7njxwDUz7g80fqMuaNw/bsYciZwSEVGaGug7QbUDd3384V9m LlsW41P5NTOmCOTfJWJ2++XLK5sEgEBKKa1fzfz8Xx7nw+wfNyNNCPmBlHzZ86vFnweTZlAArBXW l4B2srLFZ5OXLTMCHLh2Rj+BzATs6HSzg0kPguzzd65caRs45YbjIB4LQ+38YVn0r0LIdSASgGd7 frl4ZTDpBW0BgLen3PIZ8HWrcyWfKHrxLYi2wGFFbfFisGlBPWvB7d/tmpp4pmAVkh4AUsoHun3z er3WcgRtATl5si4x/8x/kAx1Bn32t+mjA77Vs0EAJIhDFS0Wghjn/F6xo0fy04pUfp657MN7mxzA oXHTn5ag7WQRUjz7/ZCe9wHxUvLG3R99eHOTAdh/7Yw/SsRf3IOskaV/V4W8REtL8O7dy/59faBp Bgzg4LjpNwgp/+ERKNhkLI+adtkvv33rFmpAimV3LVt6RaAA6hyWH7h2xgikXAWE+4vzxeV9OJDS 2j2oVKjK2IV/+MPPDbLAoetuvwgpv6ihvFSnU7oZDTLO9ScVXR/A/eSjKKmoX89c9kGfugDU2g7Y VeUzAbE1gk+oNvV/VDfjjV+3k69HXLRjX5e2w9zixUspVgKd6w1AQFzNMAkpCCbUDE88X+a1rU5K 6jwZq3YAUk6TQnwFGKrDKNNbDP26rFlY7Aq7a+nS1kKR+2u8blWknFYXgDqd8OC46TdIxHLc/UVy BoHW538+sm/CwY6t3M8Hl0imvT315o/qSr/Oatj9qyWf4tb4OGG3EpKPhRQZP/fu+HEN5QjknECU B2QBzRLX3DFLCtz2Ism1T9x+zTWxqnUXgp7VWefZd266OeA71ANuCbt//e5rwFPVIaIkRlofclcu JAuDUR4UAIAeX737DFL8Haha37/L3wW47XyVn5xXDPcFk17QAByWWPwQyPTtfVLmojVQ8vsiYZy2 fMoUe7DpBT0gESBn3pbeEuQ4Z9CvQhhvWD5lSr1YtqAtcOv770dKXBvj5G9Xbcq6/8/vfTO/Psrr BSDcqDwFdADypFDH9v4tbw4w8+A108c2OYC7ly69SAoelFAihLzqnSm3HdVbDPcAv0ghXts+cGbQ Z8gHDkBKgcJbIKyKEOMWTrllD0CXNQuLFZWrQcqoNrZZTQbg7uVLb0fI4Ug5ZeGUaZvcn3X75t0C RdWnS6l2DRZAQC3hncuWxSuqNRuFR96ecvOSYJU02AI6aZ2F4G+NrTwkIYHGp+QZO3bsi126dOlx 5MiRbYHEb1SOaMyYMXNUVZ1SUVHRNBzRww8//JdHHnnEJ0c0ZsyYKcDfFUWZvXnz5ibiiISQUsqv MjIyPDii0aNHpwEfSCm/XL16ddNxROHh4S8JIdpVVlZ+lpGRYQRIT0/vJ4TIBOy6puaI1q9fb7vs ssuOA4/Z7fbOLVq0+NVut68DEoQQz65evbrpOaIXXnjhMynl1xUVFZ/YbLZvgbZSysN6vb75OKL9 +/dPraioWAUOjgh44Jtvvmkejmjy5Mm6ioqK/4CDI5JSfjZ48ODm4YgAcf78+YWAa0Ba0bZt26el lD8/8sgjTc8RjR079mk8p2nPJiUl3QfEA288/PDDTccRjR079o9SSg+OKC4u7u9CCI0jEkK8+/DD DwfFEQVUDceMGXODlHKJcLtNS0qZaTabY1VVLYqOjh7hSk8IccNll13206ZNm44GknadQ7IxY8aM AGrliDp37kxcnAeXUaooyth58+Y1jCNKS0u7CPDgiKSUpTqdrpvNZotz/SmK4sURqar69SOPPNIw jkin031GDY5ICHHCZrP9j/v9hocOHaJTp047WrZs6cERAQ3jiPDBEQEpQogJNQMrKyt9Hb3UMI5I VdVpiqJ4cERAGdBvzZo1Gkf02GOPtbbb7V4ckRCi4RyRswYsF0K4+8sZqOaIOnfunBAXF6fRNFJK KYSY9uKLL9ZJ09RZDY8cOZLduXPnYzXMHimEWCiEWNG6dev81q1b1zw/bs78+fMX1ZV2QAAAjh49 uqtTp07nhRBXuwVXjRgxYm5ERMQCHEs+HCYV4tkXX3zxhUDSDRiAE8TPXbp0kUCa08y7WrVqlQLc 5Gb6hS+++OKfA00TguwLVq9e/YwQDo4oKSnp73hwRHxy9OjRpueIVq9e/ZCUMj0pKcmNI+L78PDw acuXLw+aI6rPCgo5cODAllR3yb8CN2RkZDQPR/TQQw9FCqEdsP3b0aNH7//ll1+ajyNSlGqOyG63 jz137twcYOYVV1zR9BzRI488cpEQ4kEpZQlw1UsvvXQUuEdK+YuiKK8NHDiwCTkiEEKIt3A0seNe fPHFPQBr1qwpNhqNVwMyPj6+6TiiuXPn3i6lHK6q6pQXX3zRgyP65ptvCmw2W7qUsmk4ogcffDDe aDRmCyEeeeGFF5YEq6TBFjAajbOAvzW28pCEBGrUgsrXk56SMMfHj5WNIhKKEHJJxP+c0s6s1gBU vdbuFSnknGbK+NPhD+RlgPuZ1UJObyblCPBxZnU9zK60G4Zp6ip0vaYgTNEIU2B3GEk3XQ1aUSkS LkIkXIQsOYHS+SpMd2ejtBsWVBpBMSQiqj3GG5ajntyMeuRbdJ2vcuSocB+6XlMcn0tymxBAdDIi qj26nu3R9XQoxFyC/rKnUZKGIUtPIEtPBAUgqCJQT27G/N5Q1JObqwNN0eh6TkFEt0dEtccw5hVE VPumAQA4clm4V/tu2/oy9l1vI0scOdf1nIJp6iqUhIuaBgCA0u7Saqsc+Q7rDxmY3x+KfdfbmlX0 lwW2Vj5oAMIUjXDlzlyCWrhPe2bPXu4GMrDaEDwAN9Oqhfs86r5ws0ygzhg0UemeM6XdMEx3ZyML 94ExGhFd7Xz27GVNBcC9/L91VM2E3h5xbFtfxrb174GlFywA9yKwfH0n5o+uxPzeUOxHvtPCdb2m BFwVgwKgJFyklbl68ictXJaewPr1DK19EFHt0fe/M6A0AyoCXa8pjsbGzeGkm/drYi6u/myKCSDl QAH0nOJVrURCb3S9piBLTiBLctH1moLi7BsAZMG+QJIODID1h6dQ2l2KrnO65oRKu2G11nV3n6hN AvIBWbgP+663sXw22ZHj0hOO5tfsfWWcNJdg++GppmkHRFR7RHR77Lvexrb175j63Y165Dtsu97W 2gD1yLc+gTUOgGjH/Xb2k1u06mg/+q3D+917yCAkKADqyc2Y3+4FgNL5KmTh3oCdrU4AEooCGRe6 zGvPXhZwc+tlSShyfXYflDbbmdUqQjuz2mNiUvF6uwVIebsQTTQxkRQJwauuOYEXgIZI5etJvu81 E/LBiP85tcDfe014ZjVFOiHvMP3Pqcza4jUNAEmOahcTIx7M21lX1EYHICW7hF2d0OLB0zmBxG/U vWYCMsPtFaPCA1TeqFLxersFza40JP8V4tESdu2e+hSCOSBjm0hdEYglhw/sq77XTFPeo9crCOYC TXavmSNtOTQ+sZU4V1iwHjyvnp/ehIo9RUpvjqg+Zr9kyBA+z/yUGyZOIDoqiug6Ls5xE01Xg1rC Xj170KtnT06ezGPMmNH8su1nLhkyJKg0guoLktu144P3l/Dz1m2sXruWMWPGAJCVnc0NEycAkHvy ZFAAtFrQtUevOg/BuGTIED54f4lHWElpKWvWrOWSIYORQNrowH46OnwgW4BbLYhPSMyo66WTJ0/y 6WeZ9OrVk+R27QAwmUz06tWT6OhooqOjSW7Xjv3791Pi5/Yel5w7W/g01MMHTp48yf7s6l/qX3/j Hyx5733N9DdMnMDKzE/p1atnQOnVywmHDKm+32r12rX8dd4LpI0ey3vvvQ9AdFQUjz86t2kAREdH 0auXY25QUlpKtps1Ps3M1D4HWhuCBtCrZy/tc3Z2tkfdH+J281egtSHoIdklbua/ZMgQftn2M9n7 9xMVFaU5JsBnn2UGlF7QAGqWf3JSklYkLnn9jX/w2hv/CCi9ehRBtXffd/8DXD/xRkaNHsuatWu1 8BsmTvCwRqMBSHXWd4Cft27Vwk+ePMm99z+ghbVr147bb7s1oDQDKoIbJk5wdDjR1RyRu/e7xP3q MPe4jQKgZrVK7dWTGyZO4OTJPE6ePMnEiRMYM3p0rQB9SUB9Qa9ePblk8BDGjLki4Po9avRYTtZS FV19QVCdEcD6tauRwJo1a72KBaCkpITX33iTJe+/X2s6LgBBd8ft2rVjyXvv8/o//sH0229j9drv ee+992nn9PrVa9b4vUbOlwQFwKXk523btRZxzZq1HjUiWAkKwM9bt3LxYMcKzrFjxpCdnU32/ux6 KwcPH0g933TDcS8pOnwgOw48Ds1Wm40jkm73mmkjonOFhevjEhLjBKInTTY3EEUI+eJvB/Zrg4VG 44hqqcYPHj6QvcDfe03GEYEoktJ2x28HD2bWFqtJAAjIQcfEw1kHd9YVt/EBSLnLqjAhJys7J5Do jX6vmc1SNSpn//6AlDeqdOnRa0GzKw1JSEJyQURKOV1K+ZmU8rz0lvPOZ9ObQvEcP0r9yXkp614a Vmd3LKWMBT4DRrnCbPt/wn50B+opz+GY0rYXuk4D0Pe81D14PTBRCFEUNACn8nVAfwDrlk8xr/47 svJc7bmK74Jp7AMY+qW7gnYCab5A+AXgrlxWlVO19BFsh78PrLycou8zgbCJjyPCIv2CqA3AK8Ac WVVO5aI/Yj/5i8dzw5Db0Pe8HF3bLqhV5cjzp7Ht34h1q+eERN/1CsJnvOH6ukAI8WCdAKSUKcBR APM3/8DyQ/VcX8R3IfzWV9G17szB3ELW7HDsZxozoBPdkxOwH9tN5fv3eRSTKX0uxlG3ub52EkLk 1AXAkfvifMperN69IcLjiZz1CSKmNXMXrWH+mr0e793UrwNvz76W8JJcKl71vEO3xSPrEDGtvazg b0AyCsDy0wqPQONlMxExrXnzi21eygE+3nWc55ZuRNe6M4Yht3k8s2X/6JF2XQD6A9iPbPEs9wFX ApD5s//thS5g+p6XewLI+t4j7boAAHg5ntOEnCuroi4R4S1qpLXTZ7ygxoT2/CMAjOnjf43QTf06 ACAryzzC3Z3S6eR1AxDh8Z4Ash2L6p+YdjljurT2it+uhYmnb3GY3vrTUo9nunYDq9N1qwX+huU5 QIqu6+XY9mRqgeZVL6DrNYIWrTvz6eM3kvnjfr7a7vCHfimJ3J7en7bxUVh3rfJqtJR2F7mnXQ3G l3Yp5bvAdOuuVVR9PMfLKuEz30fX2vcmOuuWT6n6/Amv8PDb3nH1EUuEENph9/4A9Ad2AJS9dB3y 3G9eccJuWoChXzqyqhw1/zfUU4ex/vKZl+O6zB9x/79dXwcIIXbWCsAJ4jNggj3/iFej4hJT+lx0 nfpT8a+p/pKpabFMIcTEOovACSAWR3Mca921CvPnz/jsBXXtBvrMtQ/lRTia4aKAALgVxTog1p5/ BPOKp/wq81Lu1mc4lae5mz4gADVBAA4Pz1rvUTtqSo1u2K/ygAC4FccrwHT3cPsxx5US7j5Qo+db Ty2joaBFSpkipXxFSnnUffBX8mgvWfrMcGnL2eUe/EqjKK0FzASXpvI3bpFq0Wn3weiEJlXuBDDK pVGtLHN93OH0maYXdwBOedfpK80jNQBMbzbFNQAcbTaT+wCQ0qwmD0lIQhISl4Q4IoCcnBxOnTrF uXPnXHEQQhAXF0dSUhIpKSnuSaynsTiiPXv2sHPnTiwWC0IIhBCoqorrgBYXkIiICAYMGECPHq7T ghrIEZnNZtauXcvp06eR0vHblNupMJpywOOCrfbt2zNy5EhMJpNfEHVyRGazma+++oqioiIPZd26 daN9+/YkJiZiNpspLS3l+PHjHDp0SAMopaR169Zce602sQmeI9q8eTNZWVlajiMjIxk7dizx8fEc P35cu1RrwIABdOzYkby8PNauXYvVatXAuq4fc0rgHFFZWZl2hxmAwWBgwoQJREVF8c9//pM1a9Z4 FEffvn3585//TEVFBZ9/7nk62E033URkZKSXFWrliPbs2eOhIDU1laioKD799FPWrFmjOZ2qqkgp 2b17N++//z4JCQl07dpV8wspJUePHvVIuy4A/QHy8/ORUmpO1dO5gmbz5s0IIbTrxBRF0cp89erV mgO6ngshyMnJ8UjbJbX+bnju3DkPb3eakPLyci1nLiu4cuuS8PBwj7Dz58/71FErReNS4A4IoF+/ flr9VxTFowr27eu4qbKystLjfYvF4p5uSkAAjEajZgEhhFaOt912G127dtWKxtUoRUZGMmOG48ws 95oD0LJlS+1zwBxRmzZtOHHihJaLXbt20alTJ+Lj48nIyGDjxo1s3boVVVXp3LkzV199NQkJCRw8 eJD8/HwNnJSS2NhY97Srwfgx/bvA9IMHD7Jp0yatOIQQGAwGTZEv2bNnD1uda0rcm+jRo0e7+ojg OKKPPvqIiooKL2e77LLL6N69O2azmXPnznH27FkOHTrE+fPntbguiY+PZ8KECa6vwXFE586dI9Nt oaLbc/r3709SUhLffPONR7jLJ6SUGAwGxo0bR3x8PNSXIzp06BBbtmzRmld3ZfHx8V659lNcRTSE IyosLOSHH37wWZ/di8cFokWLFowZM8aV8yIaiyM6cOAAx48fJzc3V1Nes8w7dOjAZZdd5uqG/SoP CIBbcXhxRKdPn0ZVVb79tvoGgQEDBjBgwADX1/U0B0e0aNEi+f7778u8vLwLwxF9+umnsqSk5MJx RGazOcQRTW82xTUAhDiikISkweLRGd366eFWBkX3NMhJzmuiGlFkIYgV0mJ78t0p3Qq8AMz8JKet TSc3Ax2bONPH9HYxbOGNKafAbVhuVeS8ZlAO0NGpCw8AQjCxfukFL+663CcmgW0IaBzRdP2u7rr9 vwmgzmW9PeNMRBqrcZZbVPaf938+9sDW4Zwut3KyLLB7sOsEcMNFcXRp6bnU/HyFjXe2F3gAua13 HCO7VB9+8tvZKj7dd75WsBBEEby5JZ83t+Tzzf7zxEXoubp7tbJrOkcxsksMv52t4v1fCvhm/3m6 tAzjrkGJDbeAS37Jr9T+p3WJIdxQjb1DjAmAN7aeocTi4AwKym0kRuqJNipaWIMATOrhyHH7WBNh BoWDBdUH9MdHOpIpsahEGxW6xZkos6qUFdV9dGnAAK7u6Xl28t4zvtcSdYszcd/Q6hU2b27J16zn SwL2gTtX5nDnyhyeXJvL+Qqb3/I9dN7Mm1vy2Xa8LKB0g9/yWWaj0qYSF1FtvNwih6cPbB1OiUXl l/xKwp1V91AdtSBoH0iIMJAUbWTv6Qrt2b6CKkZ2iWHGwEQuOl5KcqyJLi3D+O1sVa0OGBQAlw9U WVX2nq5g0Y5C7dkv+ZW8/0sBw1Mc1fF8hY1v9p9n1dG6NzzVCeD5TacDArght5wNueWB5keTC94X hAC4A1DrnUrwoh0t7X5hXmBLpBpDJL96ARAKQV0J1xBx16UBWDS+07dSyluB4nqlGpgUSylvXTS+ k0arNdpesxmZR33tNasE8dziCSnP+3uvCfeaUSIRV787IeWn2iI1UTWUhULKsXUpbyoLnFGRY5ZM 7LInkMiNDeCkEPZRS8Z3Dfhml0YFIOxy+KIbux5r5EyF5L9cPFrCvn37tgKeVlV1khCNyxFJKQsV RVmh0+me3LFjhzdH1KtXr7YGg2GzlLJJaRohxDGr1TosOzvbkyPS6/Xzmlq50xId9Xq9N0cEzccR uesKcUQhAHV2Rpdffrn7b/8UFRWxceNGv/Gvv/56jhw5wt69e+tKOjAA9913H6mpntcVFhYWagsY XPLXv/6V6667TvuelZXFm2++WSvYgAC45IknHBtXUlNTmTZtGrfffruW+P333891111HVlYWX331 Fe3atWPatGlkZGRwxRW1XwIfMADXwqTPP/+cCRMmaCtqALp37w7AnDlzOH3aMZk9efIk7dq1o02b NlpYgwDMnes4taFbt25ERESwc+dO7Vnr1g5K5vTp07Rp04YhQ4ZQXFxMcXHdI/yAAUyb5nk91U8/ +R5vDhkyhOeee077/sQTT3gt63KXgKth37596du3L9OmTdOc0Jds3bqVJ554gnXr1gWUbtDtwN69 eykvL/dYRfPbb46NUNdffz2nT5/m888/p0WLFhqg2iRoH2jbti0dO3Zk27bqa0x//vlnrrvuOh57 7DEuueQSunTpQmpqKllZWbU6YFAAXD5QUVHBtm3bePzxx7Vnn3/+OTExMYwbN47rrruOwsJCli5d ypIlS+pMVxuQ9OnTJ6DjgBpL9uzZI+B30BeEAPyOOCKakSPCF0ckRPNxRG66tPOI8vPzD7dq1eo3 IcRomu6s0mIp5d179uz5VAPTWCn7aUcqhRDP7d69+wJxRFJevWfPnubniJzzwLF79+69MByREGLM rl27LgxHZLfbR2VlZV0Yjshmsw3Pzs4OcUQhCUrEte+NbtaRUE35XY0HQgAaLN1aduela16nQ2zg ZFujAYg0RvLs2Pn0SOjFY6OeJtIYGdB7jQag3FLOa5tfBqBddDIPX/4XdErdd/nquk/snFFfpTpF R/uYDhRXOabhJ4qPI4SgT+t+tI1KwqAzsPPUr7Wm0SALzBx8PwvG/ZNrelRTM0t3vse2XMdt4zde NJXLUkY1DYDEyFZc2vEyDDoD914ymz+NmItRbwTg5U3Pc9J5x90Dl/6ZzvH+rz+tdxFUWMtZf2Qt PRJ7kRjZik5xnRnafji7Tv3K2Yqz7MjbTlrnMUQYIhmQNJANR9Zitnsv52iQD1TZKll3ZDUGnYHU Vr2JDYtldNcrOVmSS9aZveQUHWVUp9G0MEbRpWU3NuZ877UjK2gAozqPJiGyFXkljpN4pZTsPPUr x4qOcnHSICIMkVyWMopIQyTfHPwCCfRp3Y82UW0J10fwa972+gOINEby7JgXGdv1aq7oMhYFhdyS 41jtVk4UH+fHYz9wUeu+xIXH0zMxlb5tBvDBjndp1aI1CZGJ/JCzjkNnD3qkGVRv2CG2I/cPfZDU VtUXqVXaKln322o+z/6UkyW5GPVG7rtkNqO7OE5vKqo6z983vcjp0lOcKvU+vzgoCxRXFbPm8Lf8 fOInjDoD7WM6YtKb6JbQg2t7TqBnYirFVUV8um8ZheVnuDhpMFW2Sj7Z+xH5Zb6pmgaNB6JN0VzV /Vqu6XE9LSOqSauTJbl8nv0Jx87nUGop4XiR/3FqwBYYlHwJ3RN6okqVMksZUkrMdjP7zuzhi/2f cbzoGAmRiSREJBJtimZw8lBOlebx0/FNtaYb8LB8Yuok+rZxbN+ptFVy9Nxv5Jw/wuGzB/nt3GF+ Ov4DP+Ssp1vL7lzX6wb6tunPVwdW1pluwABsqp1KWyXh+nDC9eGkturt4YxWu5XjxTkcPnuI/QX7 +M+uf1NuqXthU9A+0C46mc7xXenSsitd4rvTrWV3Io0tvOI9/f3jbHf2CfWywBe3Obb0Xvf+GI/w kyW5nCzJ5Yec9VpYYmQruiX0ICWuM13ju9M5vgsHC7JrTSfoIqhNCsrPUFB+hp+O/RD0uwEDcOUk UPGX45pywQelAVsg0BwFK79/CwRb9v/rLBCanF5wACEJSWivWWivmXtnFNQ6otgwPXde3JKECD2F FXYWbj9DqSXgH940XUEPyfSK4I4BCfRtHU5BuY2DZ820jzYyP7092/PKeW/nWWxq4N1LUABu6BVH 39bhfHGwmH5twlnwcz4lVXbC9Ap/Hd2OMovKkyOT+PV0BZnZ5wNKU6sFfhYmA3BN9xiu7R5LidnO +UobJWaV2DAdZruKznnwQZVNpcyikhipJyFcT4RRIXN/EWt+83318OIJneq+y6ZHQhhTe8fTKlLP cxtOkVfq2Dc0sVccfVqHs3B7AfsLq+gSb+LeQYlkFVTx0qbTqMBFrcK5d1Aiw9u3YNnec2QX+t4W 5NcCj1/eliqbytu/FvLoiDZU2SSlFjsGRdDCqMOuSsL0ChEGBbNdxWyTKAqcLLFitknaRumJNul4 duMp7ro4gQi9wnMbTwVugZbheorNdvokhnOu0s6rP5/BpqqoKvRvE84fB7XiGadV4sP1PHtFEv/e fZbfzpmJNCjkllh5ZEQbhiVH0irSQJjO90+UfgEcOW9m4a+F3DUggbhwHU+ObEtxlR1FgCrBqkqm 9I4jr8RC60gDdhWu6x5LsdmOKiEhXI9JL+jXJoLnfzjFbX1bBgcAwGJTeXPbGWLD9Nw9MAGDIli0 o5Byi507BiSwdM852kcb2XCsjGu6xbAlt5ziKjt3XZxAhVXl9Z8LOVla+36zgKphUZWNv/14mg4x RmYOdCRuVWHmwERsqkSvCCQwrnsMsSYdy/adY3ct+8vcJagh2fFiC89uOMX6o2XEh+koqrLz+s9n KCi3EWVU2Hm6gie+Pxmw8oAtUFN+OVXOL6fKGdMlmscua8uu/AreWVtQn6T8WyDMoHDvoFaE6f0b ac1vJZRY7HyS5b/V0yuCW/u1RPj5nd6vBV768TS9EsL486WtOXrezEd7zgW9xuOGXnF0iTfx+YEi DvhpiGotguzCKv668RTD27fgiZFJbM4tY7WfptVdrugUzbD2kaw/WsqndfQJAfnAjyfK+PFEGRN6 xfH45W35+lAxO045tvvZ3Xq+gW0juaZ7NPvOOIAHIkE5YWb2eb48ILilb0vSu0Tznz2OU7o6x5mY 1iee/HIb83443XTdMYBNlSzZWUiUUeGOAQkkRuqZ2CuWN+jdoLgAAIAASURBVLYWUFQV2GZnfwBU gmgXSi0qr/18JmiFTgntNQvtNdMktNcstNcstNcsJBdcQnvNQnvN6r3XLDExkYULF/Lll1/y9ttv u46CDFTqv9fMaDQyb948MjMziY6OZseOHURHR/Ptt9/y3HPPYTQag0ovKACzZs1i6dKlfP/99wgh uP/++/nLX/7CnXfeSUlJCcXFxXz88cfcf//9AacZ0AaHu+66i7vvvptz586Rn5/P2bNnSUxMpLKy Ep1OhxCC8vJyiouLaee8kjgqKop//OMffPjhhz7TdG1wqLUzGjRoEA8//DDt27dn2rRp2maWBx54 gBEjRjB37ly2bdtG3759eemll9iyZQt33XUXqqpy6aWX8tJLLzF+/Hheeuklv5td/Frgww8/pLy8 nEcffZT33nuPiooKzp8/j8lkIiYmBpvNRmRkJFFRUVRWVlJRUYFer+fQoUNUVFTQqVMnEhIS+MMf /sDzzz9PVFSUx16lOi3Qpk0bzp49y4gRIzh9+jT/8z//g81mw2azMWrUKP72t78xdepUfvvtN9q0 acNnn33GX//6V3bt2kVUVBSHDx9m8eLFXHfddXTo0IHw8HCfevwC2LNnD3PnzuX555+nTZs2fPzx xxQWFqLT6bDb7VgsFv785z9z+PBhOnbsiM1mY+bMmRQWFmK322nXrh3h4eFcfvnl3HLLLfzlL38J DgBAVVUVf/rTn0hMTOSFF17AaDTyxBNPUFxczDPPPMO8efPo2bMnn3zyCTNmzODrr7+msLCQ559/ npKSEmbNmsXhw7UPjgIaERUUFHDnnXfSs2dP5s2bR1lZGRaLhRdffBGLxYLRaERKyV133UViYiIv v/wyP/wQ2E/5QbUD+/fvZ9q0aSxbtow2bdpQUFDArFmzOHHiBHFxcaxfv54JEyYErDxgC9SUNWvW sGbNGm6++WY++OADNmzYwPXXX1+fpPxbIDIykpdeeomIiAi/L3/44YecPXuWV1/1f1220WjkySef 1M4wD9gCd999N0OGDGHhwoXs3buX+fPna6d0ByqzZs2ib9++/POf/2T79u0+49TqA1u3buWWW24h OzubpUuXcssttwSkeOrUqXz44YccO3aMu+66y6/yOgG4ZOXKlUydOpWYmBg+/PBDj42sNls1KzJm zBiWLl1Kq1atuPnmm1m5su6FTEHVgn/84x/ccccdXH755SxZsoSePXsihKBfv34sXbqU0aNHM336 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 ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/svg+xml Content-Transfer-Encoding: quoted-printable Content-Location: https://cdn.sstatic.net/Img/unified/sprites.svg?v=fcc0ea44ba27 <= path d=3D"M42 31l-2.2-.2c-1.7-.1-2.3-.8-2.3-2 0-1.4 1-2.2 3-2.2 1.3-.1 2.6.= 3 3.6 1.1l1.3-1.3a7.5 7.5 0 00-4.8-1.4c-2.9 0-4.9 1.5-4.9 3.9 0 2.2 1.4 3.4= 4 3.6l2.2.2c1.6.1 2.2.8 2.2 2 0 1.6-1.4 2.4-3.6 2.4-1.6.1-3.1-.5-4.2-1.6L3= 5 36.8c1.5 1.4 3.5 2 5.5 1.9 3.2 0 5.5-1.5 5.5-4.1 0-2.6-1.6-3.4-4-3.6zm15.= 8-6.1c-2.2 0-3.5.4-4.7 1.9l1.3 1.3a3.6 3.6 0 013.4-1.5c2.5 0 3.4 1 3.4 2.9v= 1.3h-4c-3 0-4.6 1.5-4.6 3.9 0 1 .3 2 1 2.7.8.9 1.9 1.2 3.8 1.2 1.4.1 2.9-.4= 3.9-1.4v1.3h2v-9.1c-.1-2.9-1.9-4.5-5.5-4.5zm3.4 8.9c.1.8-.1 1.7-.7 2.3a4 4= 0 01-3 .9c-2.1 0-3.1-.7-3.1-2.3 0-1.6 1-2.4 3-2.4h3.8v1.5zm9.7-7.1c1.2 0 2= .4.5 3.1 1.5l1.3-1.3a5.4 5.4 0 00-4.4-2c-3.4 0-5.9 2.3-5.9 6.9 0 4.6 2.6 6.= 9 5.9 6.9 1.7.1 3.3-.7 4.4-2L74 35.4c-.7 1-1.9 1.5-3.1 1.5-1.2.1-2.4-.5-3.1= -1.5-.7-1.1-1-2.3-.9-3.6-.1-1.3.2-2.5.9-3.6.7-1 1.9-1.6 3.1-1.5zm16.8-1.6h-= 2.4L79.2 31V19.1h-2v19.4h2v-4.9l2.4-2.4 4.5 7.3h2.4l-5.6-8.6 4.8-4.8zm9.2-.= 2c-1.6 0-3.2.5-4.3 1.7-1.3 1.3-1.6 3-1.6 5.4 0 2.5.3 4.1 1.6 5.4a6.1 6.1 0 = 004.3 1.7c1.6.1 3.2-.5 4.3-1.7 1.3-1.3 1.6-2.9 1.6-5.4 0-2.5-.3-4-1.6-5.4a5= .4 5.4 0 00-4.3-1.7zm1.7 10.5c-.9.8-2.3.8-3.2 0-.7-.7-.8-2-.8-3.4s.1-2.7.8-= 3.4c.9-.8 2.3-.8 3.2 0 .7.7.8 2 .8 3.4 0 1.5-.1 2.7-.8 3.4zM112.2 25l-2.8 8= .6-2.8-8.6h-3.7l5.2 14h2.7l5.1-14h-3.7zm9.6 0c-3.6 0-6.1 2.5-6.1 7 0 5.7 3.= 2 7.2 6.5 7.2 2 .1 4-.7 5.3-2.2l-2.1-2c-.8.8-2 1.3-3.2 1.2a3 3 0 01-3.1-2.7= v-.4h8.7v-1.6c.1-3.8-2.1-6.6-6-6.6zm-2.7 5.7l.3-1.5c.4-.9 1.3-1.4 2.3-1.4 1= 0 1.9.5 2.3 1.4l.3 1.5h-5.2zm13.3-4.3v-1.3H129v14h3.5v-8.4c0-1.3.8-2.4 2.1= -2.6h.2c.7 0 1.4.3 1.8.8l2.6-2.6A4.1 4.1 0 00136 25c-1.3 0-2.6.4-3.5 1.4zm7= .6-2.8V39h3.5V28h2.6v-2.7h-2.6v-1.5c0-.6.3-1.2 1-1.3h1.5v-3h-2a3.9 3.9 0 00= -4 3.8v.3zm20.3 1.3c-1.6 0-3.2.5-4.3 1.7-1.3 1.3-1.6 3-1.6 5.4 0 2.5.3 4.1 = 1.6 5.4a6.1 6.1 0 004.3 1.7c1.6.1 3.2-.5 4.3-1.7 1.3-1.3 1.6-2.9 1.6-5.4 0-= 2.5-.3-4-1.6-5.4a5.4 5.4 0 00-4.3-1.7zm1.7 10.5c-.9.8-2.3.8-3.2 0-.7-.7-.8-= 2-.8-3.4s.1-2.7.8-3.4c.9-.8 2.3-.8 3.2 0 .7.7.8 2 .8 3.4 0 1.5-.1 2.7-.8 3.= 4zM182.7 25l-2.3 8.6-2.9-8.6H175l-2.8 8.7-2.3-8.6h-3.7l4.3 14h2.9l2.9-8.8 2= .9 8.8h3l4.3-14h-3.8zm-31.2 9.8V19.6H148V35a3.8 3.8 0 003.6 4h2.5v-3h-1.3c-= .6.1-1.1-.2-1.3-.8v-.4zm-98.8-9.4H49V21h-2v13.9c0 2 1.1 3.6 3.4 3.6h1.4v-1.= 7h-1c-1.3 0-1.8-.7-1.8-2v-7.7h1.9l1.8-1.7z" fill=3D"#222426"/> ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: https://cdn.sstatic.net/Shared/Channels/channels.css?v=5981bb1a5bd7 @charset "utf-8"; @media (max-width: 640px) { } @media (prefers-color-scheme: dark) { } .autocomplete { position: relative; } .autocomplete-suggestions:not(.company-page-autocomplete) { position: absol= ute; top: calc(100% + var(--su2)); left: 0px; right: 0px; max-height: 24em;= box-shadow: 0 var(--su-static2) var(--su-static8) hsla(210,8%,5%,0.1); ove= rflow: auto; background: rgb(255, 255, 255); border: 1px solid rgb(200, 204= , 208); visibility: hidden; opacity: 0; z-index: var(--zi-hide); transition= : opacity 200ms var(--te-smooth) 0ms,visibility 0s ease 200ms,z-index 0s ea= se 200ms; } .autocomplete-suggestions:not(.company-page-autocomplete).is-visible { visi= bility: visible; opacity: 1; z-index: var(--zi-popovers); transition: visib= ility 0s ease 0ms,z-index 0s ease 0ms,opacity 200ms var(--te-smooth) 200ms;= } .autocomplete-list { margin: 0px; padding: 0px; list-style: none; } .autocomplete-avatar { width: var(--su24); height: var(--su24); } .autocomplete-avatar img, .autocomplete-avatar .svg-icon { width: 100%; } .s-tag--sponsor .svg-icon, .s-tag--sponsor img { width: 100%; height: 100%;= } .autocomplete-category { margin: 0px; padding: var(--su4) var(--su8); list-= style: none; background-color: rgb(241, 242, 243); font-size: var(--fs-fine= ); font-weight: 700; text-transform: uppercase; color: var(--fc-black-400);= } .autocomplete-result { margin-top: var(--su2); margin-bottom: var(--su2); p= adding: var(--su4) var(--su8); width: 100%; background-color: rgba(241, 242= , 243, 0); font-size: var(--fs-body1); cursor: pointer; transition: all 600= ms var(--te-smooth); } .autocomplete-result:hover { background-color: rgba(241, 242, 243, 0.5); } .teams-login--provider { padding: 0.7em 0px; cursor: pointer; border-radius= : var(--br-sm); font-size: var(--fs-body2); line-height: 1.2; text-align: c= enter; background: transparent; } .teams-login--provider .svg-icon { vertical-align: text-bottom; } .teams-login--provider.google-login { color: rgb(59, 64, 69); background-co= lor: rgb(241, 242, 243); } .teams-login--provider.facebook-login { color: rgb(255, 255, 255); backgrou= nd-color: rgb(57, 86, 151); border-color: transparent; } .teams-join--headline { max-width: 22em; font-size: var(--fs-headline1); li= ne-height: var(--lh-sm); } .teams-join--so { background-color: rgb(241, 242, 243); } .teams-join--so .svg-icon { width: 54px; height: 64px; } .teams-join--plus { font-size: 4.92308rem; font-weight: bold; line-height: = 1; color: rgb(167, 173, 180); } .teams-join--logo { background-color: rgb(231, 112, 13); font-size: 4.30769= rem; line-height: 1.28571; font-weight: bold; color: rgb(255, 255, 255); te= xt-transform: uppercase; } .cursor-notallowed { cursor: not-allowed !important; } .teams-checklist--item.is-finished .teams-checklist--bar { display: none; } .teams-checklist--item.is-finished .teams-checklist--title { text-decoratio= n: line-through; } .teams-checklist--item.is-finished .teams-checklist--title .svg-icon { disp= lay: none; } .teams-milestones--item.is-finished .teams-milestones--title { text-decorat= ion: line-through; } .teams-checklist--checkbox { width: calc(var(--su-static16) + var(--su-stat= ic2)); height: calc(var(--su-static16) + var(--su-static2)); color: rgb(255= , 255, 255); background-color: rgb(255, 255, 255); border: 2px solid rgb(12= , 13, 14); } .teams-checklist--checkbox .iconCheckmark { position: relative; top: -1px; = left: -0.25px; width: var(--su-static16); height: var(--su-static16); displ= ay: none; } .teams-checklist--checkbox.is-complete { border-color: transparent; backgro= und-color: rgb(24, 134, 75); } .teams-checklist--checkbox.is-complete .iconCheckmark { display: inline; } .teams-checklist--title .svg-icon { width: calc(var(--su16) - var(--su2)); = height: calc(var(--su16) - var(--su2)); } .teams-checklist--link-small { font-size: var(--fs-caption); line-height: v= ar(--lh-sm); color: rgb(27, 117, 208); } .teams-checklist--link-small:hover { color: rgb(21, 92, 162); } .teams-checklist--header { margin-top: var(--su8); margin-bottom: var(--su4= ); padding-left: var(--su12); padding-right: var(--su12); } .teams-checklist--title-section { margin-bottom: var(--su2); font-size: var= (--fs-fine); line-height: 1; font-weight: bold; text-transform: uppercase; = color: var(--fc-black-600); } .teams-checklist--title-section > i { font-style: normal; font-weight: 400;= color: rgb(167, 173, 180); } .s-modal__warning { border: 3px solid rgba(200, 50, 50, 0.95); } .s-modal__warning .s-modal--title { color: rgb(200, 50, 50); } .teams-callout { position: relative; padding: var(--su16); border: 1px soli= d transparent; border-radius: var(--br-sm); color: var(--fc-black-600); } .teams-callout--header { margin: calc(var(--su16) + var(--su1) * -1) calc(v= ar(--su16) + var(--su1)) 0; width: calc(100% + var(--su32) + var(--su2)); b= order-radius: var(--br-sm) var(--br-sm) 0 0; background-position: center to= p; background-repeat: no-repeat; background-size: cover; } .teams-callout--tag { position: absolute; top: -10px; left: 4px; } .teams-callout--tag-background { position: absolute; width: 100%; height: 2= 0px; transform: skewX(25deg); border-radius: var(--br-sm); background-color= : rgb(231, 112, 13); } .teams-callout--tag-copy { position: relative; top: 1px; padding: var(--su4= ) var(--su8); z-index: 1; font-size: 0.769rem; font-weight: bold; text-tran= sform: uppercase; color: rgb(255, 255, 255); } .channels-tageditor > .tag-editor { margin-top: var(--su8); margin-left: va= r(--su16); padding-left: var(--su2); width: 520px !important; height: 36px = !important; } .channels-tageditor > .tag-suggestions { margin-top: var(--su8); margin-lef= t: var(--su16); padding: 0px; border-color: var(--black-250); box-shadow: v= ar(--bs-sm); width: 520px !important; } .channel-modalbtn__clear { padding: 0px; min-height: unset; max-height: 40p= x; border: none; box-shadow: none; background-color: transparent; } .channel-modalbtn__clear:hover, .channel-modalbtn__clear:focus, .channel-mo= dalbtn__clear:active { box-shadow: none; background-color: transparent; } .integration-settings .integration-settings--section { border-radius: var(-= -br-sm); border: 1px solid var(--black-225); } .integration-settings .integration-settings--header { background: var(--bla= ck-150); border-bottom: 1px solid var(--black-225); } .integration-settings .integration-settings--list { min-height: 80px; } .integration-settings .integration-settings--list .-header { background: va= r(--black-100); border-bottom: 1px solid var(--black-225); } .integration-settings .manage-integrations-table > thead:first-child > tr:f= irst-child > th { border-bottom: 1px solid var(--black-225); } .integration-settings .manage-integrations-table th, .integration-settings = .manage-integrations-table td { padding-right: var(--su12); padding-left: v= ar(--su12); } .integration-settings .manage-integrations-table th { padding-top: var(--su= 12); padding-bottom: var(--su8); color: var(--fc-black-600); font-size: var= (--fs-caption); font-weight: bold; } .integration-settings .manage-integrations-table .-alert-disabled { color: = var(--red-400); margin-top: -4px; } .integration-settings .manage-integrations-table .-alert-disabled-text { co= lor: var(--red-400); } .integration-settings .manage-integrations-table .-alert-disabled-text a { = color: inherit; text-decoration: underline; } .integration-settings .blank-state { text-align: center; font-size: var(--f= s-subheading); color: var(--black-350); background-color: var(--black-100);= padding-top: 48px; padding-bottom: 48px; } .integration-settings .overlay { background-color: var(--white); } .integration-settings .disable-integrations { border: 1px solid var(--black= -225); } .integration-settings .disable-integrations::after { display: block; conten= t: ""; position: absolute; top: -1px; left: -1px; bottom: -1px; width: 2px;= background-color: var(--red-400); } .integration-settings .disable-integrations .-checkbox { padding-top: 1px; = } .integration-settings .install-integration { border: 1px solid var(--black-= 225); } .integration-settings .install-integration::after { display: block; content= : ""; position: absolute; top: -1px; left: -1px; bottom: -1px; width: 2px; = background-color: var(--green-400); } .integration-settings .install-integration .-checkbox { padding-top: 1px; } .color-swatch { height: 38px; width: 38px; cursor: pointer; } .color-swatch.color-swatch-label { width: 21px; height: auto; } .color-swatch.color-swatch-label + input { padding-left: var(--su32); } .message.message-config.color-picker { border: 1px solid rgb(214, 217, 220)= ; width: auto !important; } .message.message-config.color-picker .message-text { padding: var(--su12) != important; } .message.message-config.color-picker .color-swatch { margin: var(--su4); } .message.message-config.color-picker, .message.message-config.color-picker = .message-text { border-radius: var(--br-sm); } .message.message-config.color-picker .message-close { display: none; } .message.message-config .message-tip.message-tip-top-right::before, .messag= e.message-config .message-tip.message-tip-top-left::before { top: -14px; } .message.message-config.color-picker .message-tip.message-tip-top-left::bef= ore { left: 0px; } .domain-list-item:last-of-type { border-bottom-right-radius: var(--br-sm); = border-bottom-left-radius: var(--br-sm); } .manage-users-table th a { color: inherit; } .manage-users-table th a .svg-icon { vertical-align: middle; position: rela= tive; top: -1px; } .manage-users-table tr.inactive { background-color: var(--black-100); } .manage-users-table tr.inactive td:not(.user-actions) { opacity: 0.3; } .manage-users-table .accepted-text { color: var(--green-400); } .manage-users-table .pending-text, .manage-users-table .invited-by { color:= var(--black-400); } .manage-users-table .cancel-text { color: var(--red-400); } .teams-billing--subtitle { margin-top: var(--su8); margin-bottom: var(--su4= ); font-size: var(--fs-fine); font-weight: 700; color: var(--fc-black-400);= line-height: var(--lh-xs); text-transform: uppercase; } .teams-billing--title { margin-bottom: 0px; font-size: var(--fs-title); lin= e-height: var(--lh-sm); } .teams-billing--overview-item { font-size: var(--fs-caption); line-height: = var(--lh-sm); color: var(--fc-black-600); } .svg14 .svg-icon { width: 14px; height: 14px; } .svg24 .svg-icon { width: var(--su-static24); height: var(--su-static24); } .accordion--item { padding: var(--su12); box-shadow: rgb(214, 217, 220) 0px= 1px 0px inset, rgb(214, 217, 220) 0px 1px 0px; background-color: rgba(255,= 255, 255, 0); font-size: var(--fs-body2); line-height: var(--lh-md); color= : var(--fc-black-600); cursor: pointer; transition: background-color 100ms = var(--te-smooth); } .accordion--item:hover { background-color: rgba(214, 217, 220, 0.1); } .accordion--item.is-open .accordion--arrow .svg-icon { transform: rotate(18= 0deg); } .accordion--details { display: none; font-size: var(--fs-caption); line-hei= ght: var(--lh-sm); color: var(--fc-black-500); } .accordion--item.is-open .accordion--details { display: flex; } .teams-billing--edit-container { position: relative; margin-top: var(--su16= ); padding: var(--su24); border-radius: var(--br-sm); border: 1px solid rgb= (214, 217, 220); box-shadow: var(--bs-sm); } .teams-billing--edit-container::before, .teams-billing--edit-container::aft= er { content: ""; position: absolute; left: 5%; border-right: 8px solid tra= nsparent; border-bottom: 8px solid transparent; border-left: 8px solid tran= sparent; border-image: initial; border-top: none; } .teams-billing--edit-container::before { top: -8px; border-bottom-color: rg= b(214, 217, 220); } .teams-billing--edit-container::after { top: -6.5px; border-bottom-color: r= gb(255, 255, 255); } .teams-billing--edit-container.teams-billing--payment-arrow::before, .teams= -billing--edit-container.teams-billing--payment-arrow::after { left: 27.5%;= } .teams-billing--edit-container.teams-billing--reference-arrow::before, .tea= ms-billing--edit-container.teams-billing--reference-arrow::after { left: 52= .5%; } .billing-section .your-plan-section p, .billing-section .your-plan-section = li { font-size: var(--fs-body2); } .billing-section .your-plan-section p { margin-top: var(--su4); margin-bott= om: var(--su4); } .billing-section .your-plan-section li { margin-top: var(--su8); margin-bot= tom: var(--su8); } .billing-section .cancel-account { border-top: 1px solid rgb(214, 217, 220)= ; } .js-accordion-item .open { display: none; } body:not(.unified-theme) .container._full.channels-landing #content .inner-= content { padding-bottom: 0px; padding-top: 0px; } body:not(.unified-theme) .container._full #content .inner-content { padding= : var(--su24) calc(var(--su16) - var(--su1)); } @media (prefers-color-scheme: dark) { } body.channels-page { --theme-background-color: var(--black-100); --theme-co= ntent-border-color: var(--black-200); } body.channels-page #content { border-left: 1px solid var(--theme-content-bo= rder-color); border-right: 1px solid var(--theme-content-border-color); } body.channels-page .s-topbar .s-topbar--logo .-img { filter: invert(0.5) br= ightness(2); } body.channels-page .s-topbar { border-top-width: 3px; border-top-style: sol= id; --theme-topbar-background-color: hsl(210,8%,5%); --theme-topbar-search-= color: hsl(0,0%,100%); --theme-topbar-search-background: hsl(210,8%,25%); -= -theme-topbar-search-placeholder: hsl(210,8%,85%); --theme-topbar-search-bo= rder: hsl(210,8%,45%); --theme-topbar-select-color: hsl(210,8%,85%); --them= e-topbar-select-background: hsl(210,8%,35%); --theme-topbar-item-color: hsl= (210,8%,85%); --theme-topbar-item-color-hover: var(--_white-static); --them= e-topbar-item-background-hover: hsl(210,8%,25%); --theme-topbar-item-color-= current: var(--_white-static); --theme-topbar-accent-border: none; --scroll= bar: hsla(0,0%,100%,0.2); --theme-topbar-bottom-border: none; } body.channels-page .s-topbar .left-sidebar--sticky-container { --theme-topb= ar-item-color: var(--black-500); } .question-summary .mini-counts, .question-summary .stats strong { font-size= : var(--fs-body3); line-height: var(--lh-xs); } .question-summary h3, .question-summary .result-link { margin-bottom: var(-= -su4); font-size: var(--fs-body2); line-height: 1.3; } .question-summary .excerpt { padding-bottom: var(--su8); } .question-summary .user-info { padding: var(--su4) var(--su8); } .question-summary .started { color: var(--black-400); font-size: var(--fs-c= aption); margin-top: var(--su4); } .search-results { margin-top: -10px; } .search-results .mixed-question-list { border-top: 0px; } .qlist-wrapper--boxed > #question-mini-list { margin-bottom: 0px; } .qlist-wrapper--boxed > #question-mini-list .question-summary:last-child { = border-bottom: none; } .one-col-tag-suggestions .tag-suggestions { overflow: auto; max-height: 200= px; margin-top: var(--su6); padding: 0px; border-color: var(--black-300); s= crollbar-color: var(--scrollbar) transparent; } .one-col-tag-suggestions .tag-suggestions::-webkit-scrollbar { width: calc(= var(--su-static12) - var(--su-static2)); height: calc(var(--su-static12) - = var(--su-static2)); background-color: transparent; } .one-col-tag-suggestions .tag-suggestions::-webkit-scrollbar-track { border= -radius: calc(var(--su-static12) - var(--su-static2)); background-color: tr= ansparent; } .one-col-tag-suggestions .tag-suggestions::-webkit-scrollbar-thumb { border= -radius: calc(var(--su-static12) - var(--su-static2)); background-color: va= r(--scrollbar); } .one-col-tag-suggestions .tag-suggestions::-webkit-scrollbar-corner { backg= round-color: transparent; border-color: transparent; } .one-col-tag-suggestions .tag-suggestions > div { padding: var(--su6); bord= er-top: 1px solid var(--black-250); border-radius: 0px; transition: none; w= idth: 100% !important; clear: initial !important; } .one-col-tag-suggestions .tag-suggestions > div p { margin: var(--su4) 0 0;= padding: 0 var(--su2); } .one-col-tag-suggestions .tag-suggestions > div:first-of-type { border-top:= none; } .one-col-tag-suggestions .tag-suggestions > div:hover, .one-col-tag-suggest= ions .tag-suggestions > div:focus { background-color: var(--blue-200); tran= sition: none; box-shadow: 0 0 0 var(--su-static1) var(--black-400) inset; o= utline: none; } .one-col-tag-suggestions .tag-suggestions > div:hover p.more-info, .one-col= -tag-suggestions .tag-suggestions > div:focus p.more-info { margin-top: 0px= ; background-color: transparent; } .one-col-tag-suggestions .tag-suggestions > div:hover .s-link, .one-col-tag= -suggestions .tag-suggestions > div:focus .s-link { color: var(--blue-500);= } .one-col-tag-suggestions .item-multiplier { margin-right: 0px; margin-left:= var(--su4); font-size: var(--fs-caption); } .one-col-tag-suggestions .no-results { padding: var(--su6); border-top: 1px= solid var(--black-250); width: 100% !important; clear: initial !important;= } .edit-tags-wrapper > a.s-tag.post-tag { margin: 2px; font-size: var(--fs-ca= ption); } .temp-tag__danger { background-color: var(--red-400); } .temp-tag__danger, .temp-tag__danger:hover, .temp-tag__danger .s-tag--dismi= ss { color: var(--white); background-color: var(--red-400) !important; } .temp-tag__danger:hover { background-color: var(--red-400); } .atwho-view-ul .autocomplete-result { margin: 0px; } .s-tag.post-tag.invalid-tag { border: 1px solid var(--red-400); } [contenteditable=3D"true"]:empty::before { content: attr(placeholder); colo= r: var(--black-300); display: block; } .comment-form > form textarea, .comment-form > form div[contenteditable=3D"= true"] { height: auto; min-height: 5em; } .comment-form .f-input { padding-left: var(--su-static8); padding-right: va= r(--su-static8); } .comments .inputted-mention { color: var(--blue-500); background-color: var= (--blue-200); display: inline-block; padding: var(--su4); margin: calc(var(= --su4) * -1); font-size: var(--fs-body1); line-height: var(--lh-xs); white-= space: nowrap; text-decoration: none; text-align: center; } .atwho-view { position: absolute; top: 0px; left: 0px; display: none; margi= n-top: 18px; background: var(--white); color: var(--fc-black-600); border: = 1px solid var(--black-225); box-shadow: var(--bs-md); width: 550px; max-wid= th: 80vw; z-index: var(--zi-navigation); } .atwho-view .atwho-header { padding: var(--su4); margin: var(--su4); cursor= : pointer; border-bottom: solid 1px var(--black-200); font-weight: bold; fo= nt-size: var(--fs-fine); color: var(--fc-black-400); } .atwho-view .atwho-header:hover { cursor: default; } .atwho-view .atwho-header .small { color: var(--fc-black-400); float: right= ; padding-top: var(--su2); margin-right: -5px; font-size: var(--fs-caption)= ; font-weight: normal; } .atwho-view .cur { background-color: var(--blue-200); } .atwho-view .cur strong { font-weight: bold; } .atwho-view strong { color: inherit; font-weight: inherit; } .atwho-view ul { list-style: none; padding: 0px; margin: auto; max-height: = 200px; overflow: hidden auto; } .atwho-view ul li { display: block; padding: 5px 10px; border-bottom: 1px s= olid var(--black-225); cursor: pointer; } .atwho-view small { font-size: var(--fs-caption); color: var(--black-400); = font-style: normal; } .suspicious-relative-link { border: 2px solid var(--blue-500); } .suspicious-relative-form * { background-color: var(--red-400); } .research-banner { position: fixed; right: var(--su24); bottom: var(--su24)= ; width: 100%; max-width: 370px; height: 100%; box-shadow: var(--bs-sm); bo= rder-radius: var(--br-md); z-index: var(--zi-banners); opacity: 0; transiti= on: width 50ms var(--te-smooth); animation: 1.5s var(--te-smooth-quick) 2s = 1 normal forwards researchshow; } .research-banner:hover { box-shadow: var(--bs-md); transition: all 50ms var= (--te-smooth); } .research-banner.research-banner__initial { max-height: 148px; } .research-banner.research-banner__open { max-width: 440px; max-height: 320p= x; } .research-banner.research-banner__confirmation { max-height: 118px; } .research-banner__state { width: 100%; padding: calc(var(--su16) + var(--su= 4)); } .research-banner__initial > .research-banner--container { position: absolut= e; inset: 0px; } .research-banner__success { opacity: 1; border-color: var(--green-400); ani= mation: 1.5s var(--te-smooth-quick) 4s 1 normal forwards researchhide; } .research-banner--title { font-size: 1.84615rem; font-weight: bold; line-he= ight: var(--lh-sm); color: var(--fc-black-500); } .research-banner--copy { padding-right: var(--su8); font-size: 1.23077rem; = line-height: var(--lh-md); color: var(--fc-black-500); } @keyframes researchshow {=20 0% { transform: translate3d(0px, 300px, 0px); opacity: 0; } 25% { transform: translate3d(0px, -12px, 0px); opacity: 1; } 40% { transform: translate3d(0px, -2px, 0px); } 100% { transform: translate3d(0px, 0px, 0px); opacity: 1; } } @keyframes researchhide {=20 0%, 50% { transform: translate3d(0px, 0px, 0px); opacity: 1; } 75% { transform: translate3d(0px, -12px, 0px); opacity: 1; } 100% { transform: translate3d(0px, 300px, 0px); opacity: 0; } } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: https://accounts.google.com/gsi/style @charset "utf-8"; #credential_picker_container { border: none; height: 330px; position: fixed= ; right: 20px; top: 20px; width: 391px; z-index: 9999; } #credential_picker_container iframe { border: none; width: 391px; height: 3= 30px; } #g_a11y_announcement { height: 1px; left: -10000px; overflow: hidden; posit= ion: absolute; top: auto; width: 1px; } .L5Fo6c-sM5MNb { border: 0px; display: block; left: 0px; position: relative= ; top: 0px; } .L5Fo6c-bF1uUb { border-radius: 4px; inset: 0px; cursor: pointer; position:= absolute; } .L5Fo6c-bF1uUb:focus { border: none; outline: none; } sentinel { } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/png Content-Transfer-Encoding: base64 Content-Location: https://cdn.sstatic.net/Sites/serverfault/Img/icon-48.png?v=6b7c3ee65dd2 iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJFBMVEX///+nqqwiHh+ChIanqqxY WFoiHh9jDhboJy4rExTR0tSZISSJLvehAAAAA3RSTlMAAAD6dsTeAAAAcklEQVR4XuXOKw6FMBCF Yd5PAzsgrICEDSBYAOZ6FBo3FlmJrUNfhe/mGHGqmzTj+onJSX4zUdD+8FRKqavhJRkceuhiexBW WFpjzJvxEgzeX80wlUR0prwkg68fbLXW+s55SQaHEYbEHoQD9sIeyRCyD1U/iRH2SGt5AAAAAElF TkSuQmCC ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/svg+xml Content-Transfer-Encoding: quoted-printable Content-Location: https://cdn.sstatic.net/Sites/serverfault/Img/logo.svg?v=43f5b6d5f65b =0A ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/png Content-Transfer-Encoding: base64 Content-Location: https://www.gravatar.com/avatar/136f4c71facafdb75bfaa0e4f047f1fc?s=64&d=identicon&r=PG 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 ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/jpeg Content-Transfer-Encoding: base64 Content-Location: https://i.sstatic.net/KuBrV.jpg?s=64 /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAUFBQUFBQUGBgUICAcICAsKCQkKCxEMDQwNDBEaEBMQ EBMQGhcbFhUWGxcpIBwcICkvJyUnLzkzMzlHREddXX0BBQUFBQUFBQYGBQgIBwgICwoJCQoLEQwN DA0MERoQExAQExAaFxsWFRYbFykgHBwgKS8nJScvOTMzOUdER11dff/AABEIAEAAQAMBIgACEQED EQH/xACFAAACAgMBAQAAAAAAAAAAAAADBAUGAgcIAQkQAAIBAwIEBAQEBwAAAAAAAAECAwAEEQUh BhIxQRMiUWEHMnGhFDNCgSVSgpGSweEBAAIDAQAAAAAAAAAAAAAAAAACAQMEBREAAgIBAwQCAwAA AAAAAAAAAQIAESEDMXEEEhNBMlFhgZH/2gAMAwEAAhEDEQA/AN4aPquja3E503UrW7WM4Yx7kEU+ beQv5I849BXDvCvF0vDOtpqdvDghWVoWJZWRuqk9d66o034v8GGwgmu5Wt7mQEtBGGk5SB0ror1A o2czMVP6l98CfGGcqp670WO0sSPMGZj3JNC0XUrXiHTbXU7FmEFwCVEvlbY4ORUrycnzqmPUU/lb 0xHGIvjU7qDzEfAggbELhR+r9bUKaCQenL2ycVIs9rEjN4qJgbsQAAPfJrT2s/FjS7G4vo7Gylvl ty6NOHVUMnReULklCe9HkrLN/YV9CuJfZonUOTIAD77VE3ssFlbvLczQxImSc1pLjP4h3d1fx2F1 ALaJIQ0iW86zKHdM7MuzVqbWOI9U1q48S9vpZuUcqB3yFUbACkfq1QGhZjqhMp4mTGCe+xpyO68o AJ3+1QLM5yAduwo0CuMfcGueQKlmTN1/Djj6+4c1S0guLz+GyygXETnKKp6uK7S0y70vWLGG+02W K5tpclJUGQcHBr5nGVkdRVosuKOJNO09tPsNRvYrR5hOY4GZQXAwDlas09UoKIxEfSZsg1Oy/iVx rpXDGhX8ObW4vp4niSzJVtm8rNIvoPSuJ7m9Sd1CrDD5QCIF5QR6Goq5nupmklnErSuxd3YElix6 knqaRDt1YdOg6VD6pb1JVCoybMlbi4UPhSSo6E9SKAs3MNgAfU9KTabKjI3A6UsZmG3L17GqqjyR /ArHgPLEh92yf7DNEWyD4xI7H0VOUH/KrCttZWw8pDN35P8AbUxHyqCyqEXu3/TuaADucCXdokRF oZkOZJDENvdqsdpDFbKEiBwO5NK+LnZdl+5py1IMhYjyRKZG/boP3NDUqliNtpKrbBRCSuUlIzhl PKe+9R01lb3RwUUuezd/oawaUsHOckknNeF/GTI+YUzKCE7vreLhi3MjJdFt16wSqPVHyKjW0q0B IS4fPXD1Z474qeScEjpzj5h9f5hRZY4WUMQjI5wrjdSfT2PsarOm42cyQqmJkJEA0jZbstYhzK2W bA+wpQEs2Sdz3NFypIVckd/em/JhfoR2JGllRIgWLMFX3JqZvUhtLTljP5r7tn5li2z9Gah6TCwi luQPOx8C395H2J/pFLazNGbiWNPy4VWFPom33NZGc6vUKg+KZPImpUGnoFzu20hw+2K8ik5XNBLU MsQcitxysxjBj0ycw5hS8VxNbsxQjDDDKwyrD0YHrWcTnGD0oUy56de1KDUci8z/2Q== ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: quoted-printable ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: quoted-printable ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: quoted-printable Content-Location: https://serverfault.com/questions/1026572/nginx-remove-header-from-upstream
'9wuvb$&56533>!=3D|vqc)!273794&am= p;*>bgipf+!3=3D7123= 63%9aihwc)!7202<217'9efotm(&20061;48&>`dopb/%<1707200!=3D8(&200= 5575?&>`dopb/%<170642?!=3D|vqc)!7201;=3D50'9wuvb$&03641654*>bgipf+!= 3=3D731103%9aihwc)!7200?073'9efotm(&2004?51;&>`dopb/%<17>474>!=3Dne= hu`/!36406412!9abk{a($167745;=3D&7&7!9abk{a($1656;3?<&<= cbotf+*01011776%2bejvf~"]">3D""
=
------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-d543821b-b5d4-43d0-9b59-fed8e73cde2e@mhtml.blink @charset "utf-8"; a { color: rgb(0, 0, 0); } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-577c4913-9690-41fc-b52e-17509064b204@mhtml.blink @charset "utf-8"; div { margin: 0px; padding: 0px; } .abgc { display: block; height: 15px; position: absolute; right: 17px; top:= 1px; text-rendering: geometricprecision; z-index: 2147483646; } .abgb { display: inline-block; height: 15px; } .abgc, .jar .abgc, .jar .cbb { opacity: 1; } .abgc { cursor: pointer; } .cbb { cursor: pointer; height: 15px; width: 15px; z-index: 2147483646; bac= kground-color: rgb(255, 255, 255); opacity: 0; } .cbb svg { position: absolute; top: 0px; right: 0px; height: 15px; width: 1= 5px; stroke: rgb(0, 174, 205); fill: rgb(0, 174, 205); stroke-width: 1.25; = } .cbb:hover { cursor: pointer; } .cbb:hover { background-color: rgb(88, 88, 90); } .cbb:hover svg { stroke: rgb(255, 255, 255); } .abgb { position: absolute; right: 0px; top: 0px; } .cbb { position: absolute; right: 1px; top: 1px; } .abgs { display: none; height: 100%; } .abgl { text-decoration: none; } .abgs svg, .abgb svg { display: inline-block; height: 15px; width: auto; ve= rtical-align: top; } .abgc .il-wrap { background-color: rgb(255, 255, 255); height: 15px; white-= space: nowrap; } .abgc .il-wrap.exp { border-bottom-left-radius: 5px; } .abgc .il-text, .abgc .il-icon { display: inline-block; } .abgc .il-text { padding-right: 1px; padding-left: 5px; height: 15px; width= : 55px; } .abgc .il-icon { height: 15px; width: 15px; } .abgc .il-text svg { fill: rgb(0, 0, 0); } .abgc .il-icon svg { fill: rgb(0, 174, 205); } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-f3b8bfa6-b5c8-464b-9cf6-a13490924c12@mhtml.blink @charset "utf-8"; .mute_panel { z-index: 2147483646; } .abgac { position: absolute; left: 0px; top: 0px; z-index: 2147483646; disp= lay: none; width: 100%; height: 100%; background-color: rgb(250, 250, 250);= } .mlsc { height: 100%; display: flex; justify-content: center; align-items: = center; } .mls { animation: 2s linear 0s infinite normal none running mlskf; height: = 50%; width: 50%; } .mlsd { stroke-dasharray: 1, 189; stroke-dashoffset: 0; animation: 1.4s eas= e-in-out 0s infinite normal none running mlsdkf; } @keyframes mlskf {=20 100% { transform: rotate(360deg); } } @keyframes mlsdkf {=20 0% { stroke-dasharray: 1, 189; stroke-dashoffset: 0; } 50% { stroke-dasharray: 134, 189; stroke-dashoffset: -53px; } 100% { stroke-dasharray: 134, 189; stroke-dashoffset: -188px; } } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: quoted-printable Content-Location: https://accounts.google.com/gsi/iframe/select?client_id=717762328687-iludtf96g1hinl76e4lc1b9a82g457nn.apps.googleusercontent.com&auto_select=false&ux_mode=popup&ui_mode=card&as=K1bv%2BsrZUjU4LltvIjSg6Q&channel_id=cbb2904caac5c4e36b6830d79eb134384a267fd29e235dc97e5108b16d24e6c5&origin=https%3A%2F%2Fserverfault.com Sign In - Google Accounts
<= /path>

Sign= in to Stack Exchange with Google

=
Verifying= ...
=
<= /div>
3D"Jerry
Jerry Jacobs=
jerryjacobs1989@gmail.com
Google Account, = Jerry Jacobs's profile picture, jerryjacobs1989@gmail.com, Jerry Jacobs
To create your account, Google will share your name, em= ail address and profile picture with Stack Exchange. See Stack Exchange's <= a href=3D"https://stackexchange.com/legal/privacy-policy" target=3D"_blank"= class=3D"hSRGPd" id=3D"privacy-policy-link" title=3D"Stack Exchange's priv= acy policy">privacy policy and Terms of Service.=
------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-e285553f-9ed8-4df0-a023-c40f0db2b473@mhtml.blink @charset "utf-8"; @font-face { font-family: Roboto; font-style: normal; font-weight: 400; src= : url("//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxP.ttf") format("= truetype"); } @font-face { font-family: Roboto; font-style: normal; font-weight: 500; src= : url("//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc9.ttf") form= at("truetype"); } @font-face { font-family: "Google Sans"; font-style: normal; font-weight: 4= 00; src: url("//fonts.gstatic.com/s/googlesans/v58/4Ua_rENHsxJlGDuGo1OIlJfC= 6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RFD48TE63OOYKtrwEIJllpyw.ttf") format("truet= ype"); } @font-face { font-family: "Google Sans"; font-style: normal; font-weight: 5= 00; src: url("//fonts.gstatic.com/s/googlesans/v58/4Ua_rENHsxJlGDuGo1OIlJfC= 6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RFD48TE63OOYKtrw2IJllpyw.ttf") format("truet= ype"); } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-3a57d0bd-74ba-4993-8e51-646950777467@mhtml.blink @charset "utf-8"; .mdl-button { background: transparent; border: none; border-radius: 2px; co= lor: rgb(0, 0, 0); position: relative; height: 36px; margin: 0px; min-width= : 64px; padding: 0px 16px; display: inline-block; font-family: Roboto, Helv= etica, Arial, sans-serif; font-size: 14px; font-weight: 500; text-transform= : uppercase; letter-spacing: 0px; overflow: hidden; will-change: box-shadow= ; transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color = 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);= outline: none; cursor: pointer; text-decoration: none; text-align: center;= line-height: 36px; vertical-align: middle; } .mdl-button:hover { background-color: rgba(158, 158, 158, 0.2); } .mdl-button:focus:not(:active) { background-color: rgba(0, 0, 0, 0.12); } .mdl-button:active { background-color: rgba(158, 158, 158, 0.4); } .mdl-button.mdl-button--colored { color: rgb(63, 81, 181); } .mdl-button.mdl-button--colored:focus:not(:active) { background-color: rgba= (0, 0, 0, 0.12); } input.mdl-button[type=3D"submit"] { appearance: none; } .mdl-button--raised { background: rgba(158, 158, 158, 0.2); box-shadow: rgb= a(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba= (0, 0, 0, 0.12) 0px 1px 5px 0px; } .mdl-button--raised:active { box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0p= x, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1p= x; background-color: rgba(158, 158, 158, 0.4); } .mdl-button--raised:focus:not(:active) { box-shadow: rgba(0, 0, 0, 0.18) 0p= x 0px 8px, rgba(0, 0, 0, 0.36) 0px 8px 16px; background-color: rgba(158, 15= 8, 158, 0.4); } .mdl-button--raised.mdl-button--colored { background: rgb(63, 81, 181); col= or: rgb(255, 255, 255); } .mdl-button--raised.mdl-button--colored:hover { background-color: rgb(63, 8= 1, 181); } .mdl-button--raised.mdl-button--colored:active { background-color: rgb(63, = 81, 181); } .mdl-button--raised.mdl-button--colored:focus:not(:active) { background-col= or: rgb(63, 81, 181); } .mdl-button--raised.mdl-button--colored .mdl-ripple { background: rgb(255, = 255, 255); } .mdl-button--fab { border-radius: 50%; font-size: 24px; height: 56px; margi= n: auto; min-width: 56px; width: 56px; padding: 0px; overflow: hidden; back= ground: rgba(158, 158, 158, 0.2); box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 1= .5px 0px, rgba(0, 0, 0, 0.24) 0px 1px 1px 0px; position: relative; line-hei= ght: normal; } .mdl-button--fab .material-icons { position: absolute; top: 50%; left: 50%;= transform: translate(-12px, -12px); line-height: 24px; width: 24px; } .mdl-button--fab.mdl-button--mini-fab { height: 40px; min-width: 40px; widt= h: 40px; } .mdl-button--fab .mdl-button__ripple-container { border-radius: 50%; mask-i= mage: -webkit-radial-gradient(center, circle cover, rgb(255, 255, 255), rgb= (0, 0, 0)); } .mdl-button--fab:active { box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, = rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px; = background-color: rgba(158, 158, 158, 0.4); } .mdl-button--fab:focus:not(:active) { box-shadow: rgba(0, 0, 0, 0.18) 0px 0= px 8px, rgba(0, 0, 0, 0.36) 0px 8px 16px; background-color: rgba(158, 158, = 158, 0.4); } .mdl-button--fab.mdl-button--colored { background: rgb(255, 64, 129); color= : rgb(255, 255, 255); } .mdl-button--fab.mdl-button--colored:hover { background-color: rgb(255, 64,= 129); } .mdl-button--fab.mdl-button--colored:focus:not(:active) { background-color:= rgb(255, 64, 129); } .mdl-button--fab.mdl-button--colored:active { background-color: rgb(255, 64= , 129); } .mdl-button--fab.mdl-button--colored .mdl-ripple { background: rgb(255, 255= , 255); } .mdl-button--icon { border-radius: 50%; font-size: 24px; height: 32px; marg= in-left: 0px; margin-right: 0px; min-width: 32px; width: 32px; padding: 0px= ; overflow: hidden; color: inherit; line-height: normal; } .mdl-button--icon .material-icons { position: absolute; top: 50%; left: 50%= ; transform: translate(-12px, -12px); line-height: 24px; width: 24px; } .mdl-button--icon.mdl-button--mini-icon { height: 24px; min-width: 24px; wi= dth: 24px; } .mdl-button--icon.mdl-button--mini-icon .material-icons { top: 0px; left: 0= px; } .mdl-button--icon .mdl-button__ripple-container { border-radius: 50%; mask-= image: -webkit-radial-gradient(center, circle cover, rgb(255, 255, 255), rg= b(0, 0, 0)); } .mdl-button__ripple-container { display: block; height: 100%; left: 0px; po= sition: absolute; top: 0px; width: 100%; z-index: 0; overflow: hidden; } .mdl-button.mdl-button--disabled .mdl-button__ripple-container .mdl-ripple,= .mdl-button[disabled] .mdl-button__ripple-container .mdl-ripple { backgrou= nd-color: transparent; } .mdl-button--primary.mdl-button--primary { color: rgb(63, 81, 181); } .mdl-button--primary.mdl-button--primary .mdl-ripple { background: rgb(255,= 255, 255); } .mdl-button--primary.mdl-button--primary.mdl-button--fab, .mdl-button--prim= ary.mdl-button--primary.mdl-button--raised { color: rgb(255, 255, 255); bac= kground-color: rgb(63, 81, 181); } .mdl-button--accent.mdl-button--accent { color: rgb(255, 64, 129); } .mdl-button--accent.mdl-button--accent .mdl-ripple { background: rgb(255, 2= 55, 255); } .mdl-button--accent.mdl-button--accent.mdl-button--fab, .mdl-button--accent= .mdl-button--accent.mdl-button--raised { color: rgb(255, 255, 255); backgro= und-color: rgb(255, 64, 129); } .mdl-button.mdl-button--disabled.mdl-button--disabled, .mdl-button[disabled= ][disabled] { color: rgba(0, 0, 0, 0.26); cursor: default; background-color= : transparent; } .mdl-button--fab.mdl-button--disabled.mdl-button--disabled, .mdl-button--fa= b[disabled][disabled] { background-color: rgba(0, 0, 0, 0.12); color: rgba(= 0, 0, 0, 0.26); } .mdl-button--raised.mdl-button--disabled.mdl-button--disabled, .mdl-button-= -raised[disabled][disabled] { background-color: rgba(0, 0, 0, 0.12); color:= rgba(0, 0, 0, 0.26); box-shadow: none; } .mdl-button--colored.mdl-button--disabled.mdl-button--disabled, .mdl-button= --colored[disabled][disabled] { color: rgba(0, 0, 0, 0.26); } .mdl-button .material-icons { vertical-align: middle; } .mdl-spinner { display: inline-block; position: relative; width: 28px; heig= ht: 28px; } .mdl-spinner:not(.is-upgraded).is-active::after { content: "Loading..."; } .mdl-spinner.is-upgraded.is-active { animation: 1.56824s linear 0s infinite= normal none running mdl-spinner__container-rotate; } @-webkit-keyframes mdl-spinner__container-rotate {=20 100% { transform: rotate(1turn); } } @keyframes mdl-spinner__container-rotate {=20 100% { transform: rotate(1turn); } } .mdl-spinner__layer { position: absolute; width: 100%; height: 100%; opacit= y: 0; } .mdl-spinner__layer-1 { border-color: rgb(66, 165, 245); } .mdl-spinner--single-color .mdl-spinner__layer-1 { border-color: rgb(63, 81= , 181); } .mdl-spinner.is-active .mdl-spinner__layer-1 { animation: 5332ms cubic-bezi= er(0.4, 0, 0.2, 1) 0s infinite normal both running mdl-spinner__fill-unfill= -rotate, 5332ms cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal both runnin= g mdl-spinner__layer-1-fade-in-out; } .mdl-spinner__layer-2 { border-color: rgb(244, 67, 54); } .mdl-spinner--single-color .mdl-spinner__layer-2 { border-color: rgb(63, 81= , 181); } .mdl-spinner.is-active .mdl-spinner__layer-2 { animation: 5332ms cubic-bezi= er(0.4, 0, 0.2, 1) 0s infinite normal both running mdl-spinner__fill-unfill= -rotate, 5332ms cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal both runnin= g mdl-spinner__layer-2-fade-in-out; } .mdl-spinner__layer-3 { border-color: rgb(253, 216, 53); } .mdl-spinner--single-color .mdl-spinner__layer-3 { border-color: rgb(63, 81= , 181); } .mdl-spinner.is-active .mdl-spinner__layer-3 { animation: 5332ms cubic-bezi= er(0.4, 0, 0.2, 1) 0s infinite normal both running mdl-spinner__fill-unfill= -rotate, 5332ms cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal both runnin= g mdl-spinner__layer-3-fade-in-out; } .mdl-spinner__layer-4 { border-color: rgb(76, 175, 80); } .mdl-spinner--single-color .mdl-spinner__layer-4 { border-color: rgb(63, 81= , 181); } .mdl-spinner.is-active .mdl-spinner__layer-4 { animation: 5332ms cubic-bezi= er(0.4, 0, 0.2, 1) 0s infinite normal both running mdl-spinner__fill-unfill= -rotate, 5332ms cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal both runnin= g mdl-spinner__layer-4-fade-in-out; } @-webkit-keyframes mdl-spinner__fill-unfill-rotate {=20 12.5% { transform: rotate(135deg); } 25% { transform: rotate(270deg); } 37.5% { transform: rotate(405deg); } 50% { transform: rotate(540deg); } 62.5% { transform: rotate(675deg); } 75% { transform: rotate(810deg); } 87.5% { transform: rotate(945deg); } 100% { transform: rotate(3turn); } } @keyframes mdl-spinner__fill-unfill-rotate {=20 12.5% { transform: rotate(135deg); } 25% { transform: rotate(270deg); } 37.5% { transform: rotate(405deg); } 50% { transform: rotate(540deg); } 62.5% { transform: rotate(675deg); } 75% { transform: rotate(810deg); } 87.5% { transform: rotate(945deg); } 100% { transform: rotate(3turn); } } @-webkit-keyframes mdl-spinner__layer-1-fade-in-out {=20 0% { opacity: 0.99; } 25% { opacity: 0.99; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 0.99; } 100% { opacity: 0.99; } } @keyframes mdl-spinner__layer-1-fade-in-out {=20 0% { opacity: 0.99; } 25% { opacity: 0.99; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 0.99; } 100% { opacity: 0.99; } } @-webkit-keyframes mdl-spinner__layer-2-fade-in-out {=20 0% { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 0.99; } 50% { opacity: 0.99; } 51% { opacity: 0; } } @keyframes mdl-spinner__layer-2-fade-in-out {=20 0% { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 0.99; } 50% { opacity: 0.99; } 51% { opacity: 0; } } @-webkit-keyframes mdl-spinner__layer-3-fade-in-out {=20 0% { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 0.99; } 75% { opacity: 0.99; } 76% { opacity: 0; } } @keyframes mdl-spinner__layer-3-fade-in-out {=20 0% { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 0.99; } 75% { opacity: 0.99; } 76% { opacity: 0; } } @-webkit-keyframes mdl-spinner__layer-4-fade-in-out {=20 0% { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 0.99; } 90% { opacity: 0.99; } 100% { opacity: 0; } } @keyframes mdl-spinner__layer-4-fade-in-out {=20 0% { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 0.99; } 90% { opacity: 0.99; } 100% { opacity: 0; } } .mdl-spinner__gap-patch { position: absolute; box-sizing: border-box; top: = 0px; left: 45%; width: 10%; height: 100%; overflow: hidden; border-color: i= nherit; } .mdl-spinner__gap-patch .mdl-spinner__circle { width: 1000%; left: -450%; } .mdl-spinner__circle-clipper { display: inline-block; position: relative; w= idth: 50%; height: 100%; overflow: hidden; border-color: inherit; } .mdl-spinner__circle-clipper.mdl-spinner__left { float: left; } .mdl-spinner__circle-clipper.mdl-spinner__right { float: right; } .mdl-spinner__circle-clipper .mdl-spinner__circle { width: 200%; } .mdl-spinner__circle { box-sizing: border-box; height: 100%; border-width: = 3px; border-style: solid; border-top-color: inherit; border-right-color: in= herit; border-left-color: inherit; border-radius: 50%; animation: auto ease= 0s 1 normal none running none; position: absolute; inset: 0px; border-bott= om-color: transparent !important; } .mdl-spinner__left .mdl-spinner__circle { transform: rotate(129deg); border= -right-color: transparent !important; } .mdl-spinner.is-active .mdl-spinner__left .mdl-spinner__circle { animation:= 1333ms cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal both running mdl-sp= inner__left-spin; } .mdl-spinner__right .mdl-spinner__circle { left: -100%; transform: rotate(-= 129deg); border-left-color: transparent !important; } .mdl-spinner.is-active .mdl-spinner__right .mdl-spinner__circle { animation= : 1333ms cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal both running mdl-s= pinner__right-spin; } @-webkit-keyframes mdl-spinner__left-spin {=20 0% { transform: rotate(130deg); } 50% { transform: rotate(-5deg); } 100% { transform: rotate(130deg); } } @keyframes mdl-spinner__left-spin {=20 0% { transform: rotate(130deg); } 50% { transform: rotate(-5deg); } 100% { transform: rotate(130deg); } } @-webkit-keyframes mdl-spinner__right-spin {=20 0% { transform: rotate(-130deg); } 50% { transform: rotate(5deg); } 100% { transform: rotate(-130deg); } } @keyframes mdl-spinner__right-spin {=20 0% { transform: rotate(-130deg); } 50% { transform: rotate(5deg); } 100% { transform: rotate(-130deg); } } .mdl-progress { display: block; position: relative; height: 4px; width: 500= px; max-width: 100%; } .mdl-progress > .bar { display: block; position: absolute; top: 0px; bottom= : 0px; width: 0px; transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1); } .mdl-progress > .progressbar { background-color: rgb(63, 81, 181); z-index:= 1; left: 0px; } .mdl-progress > .bufferbar { background-image: linear-gradient(90deg, rgba(= 255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), linear-gradient(90deg, rgb(= 63, 81, 181), rgb(63, 81, 181)); z-index: 0; left: 0px; } .mdl-progress > .auxbar { right: 0px; } @supports (-webkit-appearance:none) { .mdl-progress:not(.mdl-progress--indeterminate):not(.mdl-progress--indete= rminate) > .auxbar, .mdl-progress:not(.mdl-progress__indeterminate):not(.md= l-progress__indeterminate) > .auxbar { background-image: linear-gradient(90= deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), linear-gradient(9= 0deg, rgb(63, 81, 181), rgb(63, 81, 181)); mask: url("data:image/svg+xml;ba= se64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZX= dQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvM= jAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxh= bmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJ= lcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMT= QiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0c= mlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0i= aW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo=3D"); } } .mdl-progress:not(.mdl-progress--indeterminate) > .auxbar, .mdl-progress:no= t(.mdl-progress__indeterminate) > .auxbar { background-image: linear-gradie= nt(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), linear-gradi= ent(90deg, rgb(63, 81, 181), rgb(63, 81, 181)); } .mdl-progress.mdl-progress--indeterminate > .bar1, .mdl-progress.mdl-progre= ss__indeterminate > .bar1 { background-color: rgb(63, 81, 181); animation-n= ame: indeterminate1; animation-duration: 2s; animation-iteration-count: inf= inite; animation-timing-function: linear; } .mdl-progress.mdl-progress--indeterminate > .bar3, .mdl-progress.mdl-progre= ss__indeterminate > .bar3 { background-image: none; background-color: rgb(6= 3, 81, 181); animation-name: indeterminate2; animation-duration: 2s; animat= ion-iteration-count: infinite; animation-timing-function: linear; } @-webkit-keyframes indeterminate1 {=20 0% { left: 0px; width: 0px; } 50% { left: 25%; width: 75%; } 75% { left: 100%; width: 0px; } } @keyframes indeterminate1 {=20 0% { left: 0px; width: 0px; } 50% { left: 25%; width: 75%; } 75% { left: 100%; width: 0px; } } @-webkit-keyframes indeterminate2 {=20 0% { left: 0px; width: 0px; } 50% { left: 0px; width: 0px; } 75% { left: 0px; width: 25%; } 100% { left: 100%; width: 0px; } } @keyframes indeterminate2 {=20 0% { left: 0px; width: 0px; } 50% { left: 0px; width: 0px; } 75% { left: 0px; width: 25%; } 100% { left: 100%; width: 0px; } } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-ad8eb8b5-8e63-4a19-8c68-2f5a51c6c935@mhtml.blink @charset "utf-8"; .qJTHM { user-select: none; color: rgb(32, 33, 36); direction: ltr; font-fa= mily: Roboto-Regular, arial, sans-serif; -webkit-font-smoothing: antialiase= d; font-weight: 400; margin: 0px; overflow: hidden; text-size-adjust: 100%;= } .ynRLnc { left: -9999px; position: absolute; top: -9999px; } .L6cTce { display: none; } .bltWBb { word-break: break-all; } .hSRGPd { color: rgb(26, 115, 232); cursor: pointer; font-weight: 500; text= -decoration: none; } .Bz112c-W3lGp { height: 16px; width: 16px; } .Bz112c-E3DyYd { height: 20px; width: 20px; } .Bz112c-r9oPif { height: 24px; width: 24px; } .Bz112c-uaxL4e { border-radius: 10px; } .LgbsSe-Bz112c { display: block; } .S9gUrf-YoZ4jf, .S9gUrf-YoZ4jf * { border: none; margin: 0px; padding: 0px;= } .fFW7wc-ibnC6b > .aZ2wEe > div { border-color: rgb(66, 133, 244); } .P1ekSe-ZMv3u > div:nth-child(1) { background-color: rgb(26, 115, 232) !imp= ortant; } .P1ekSe-ZMv3u > div:nth-child(2), .P1ekSe-ZMv3u > div:nth-child(3) { backgr= ound-image: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 2= 55, 255, 0.7)), linear-gradient(to right, rgb(26, 115, 232), rgb(26, 115, 2= 32)) !important; } .fFW7wc, .fFW7wc-ibnC6b-r4m2rf, .fFW7wc-ibnC6b-ssJRIf, .fFW7wc-ibnC6b-K4eff= f, .MPu53c { box-sizing: border-box; } .fFW7wc-ibnC6b-sM5MNb { transition: background-color 0.2s cubic-bezier(0.4,= 0, 0.2, 1); height: 60px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .fFW7wc-ibnC6b-sM5MNb.wdeprb-ijUMG-mzNpsf { height: 48px; } .fFW7wc-ibnC6b-sM5MNb:not(.OWB6Me):hover, .fFW7wc-ibnC6b-sM5MNb:not(.OWB6Me= ):focus { background-color: rgb(232, 240, 254); cursor: pointer; outline: n= one; } .fFW7wc-ibnC6b { box-sizing: content-box; display: flex; align-items: start= ; flex-direction: row; justify-content: flex-start; height: 35px; margin: 0= px 16px; overflow: hidden; padding: 14px 0px 11px; } .fFW7wc-ibnC6b-sM5MNb.wdeprb-ijUMG-mzNpsf > .fFW7wc-ibnC6b { height: 23px; = } .fFW7wc-ibnC6b > .fFW7wc-ibnC6b-HiaYvf { border-radius: 50%; flex-grow: 0; = flex-shrink: 0; height: 28px; margin-left: -28px; margin-right: 12px; margi= n-top: 2px; width: 28px; z-index: 400; } .fFW7wc-ibnC6b > .fFW7wc-ibnC6b-HiaYvf.zTETae-mzNpsf-Bz112c { height: 30px;= margin-left: -29px; margin-right: 11px; margin-top: 1px; width: 30px; } .fFW7wc-ibnC6b > .fFW7wc-ibnC6b-HiaYvf.wdeprb-ijUMG-mzNpsf-Bz112c { height:= 20px; margin: 0px 17px 0px 5px; width: 20px; } .fFW7wc-ibnC6b > .aZ2wEe { direction: ltr; height: 32px; width: 32px; z-ind= ex: 300; } .fFW7wc-ibnC6b .MPu53c { border-radius: 50%; background-color: rgb(66, 133,= 244); height: 28px; margin-left: -30px; margin-top: 2px; opacity: 0; paddi= ng: 4px; width: 28px; z-index: 500; } .fFW7wc-ibnC6b .MPu53c.iib5kc { transition: opacity 250ms; opacity: 1; } .fFW7wc-ibnC6b .MPu53c > .Bz112c { transform: scale(0); } .fFW7wc-ibnC6b .MPu53c.iib5kc > .Bz112c { transition: transform 250ms ease-= out; transform: scale(1); } .fFW7wc-ibnC6b > .fFW7wc-ibnC6b-r4m2rf { display: flex; flex-direction: col= umn; justify-content: center; height: 35px; } .fFW7wc-ibnC6b-sM5MNb.wdeprb-ijUMG-mzNpsf .fFW7wc-ibnC6b-r4m2rf { height: 2= 3px; } .fFW7wc-ibnC6b > .fFW7wc-ibnC6b-r4m2rf > .fFW7wc-ibnC6b-ssJRIf { color: rgb= (60, 64, 67); font-family: "Google Sans"; font-size: 14px; font-weight: 500= ; height: 20px; letter-spacing: 0.25px; line-height: 18px; } .fFW7wc-ibnC6b > .fFW7wc-ibnC6b-r4m2rf > .fFW7wc-ibnC6b-K4efff { color: rgb= (95, 99, 104); font-size: 12px; height: 16px; } #animated-container .IbE0S-LgbsSe { color: rgb(26, 115, 232); display: none= ; font-family: "Google Sans"; letter-spacing: 0.25px; margin-left: auto; pa= dding: 0px 8px; text-transform: none; } #animated-container .IbE0S-LgbsSe:disabled { color: rgb(60, 64, 67); opacit= y: 0.38; } #animated-container .IbE0S-LgbsSe:hover:enabled, #animated-container .IbE0S= -LgbsSe:active:enabled, #animated-container .IbE0S-LgbsSe:focus:enabled { b= ackground-color: rgb(232, 240, 254); } #animated-container .gk6SMd .IbE0S-LgbsSe, #animated-container.XHgP6b-mKZyp= f-bEDTcc-LYNcwc .IbE0S-LgbsSe { display: block; } #progress-bar { transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1); heigh= t: 0px; } .Uno0P #progress-bar, .XHgP6b-mKZypf-bEDTcc-LYNcwc #progress-bar { height: = 4px; } .rF3c2-GMvhG { background: rgb(254, 247, 224); border-radius: 8px; font-fam= ily: roboto, "Noto Sans Myanmar UI", arial, sans-serif; font-size: 14px; li= ne-height: 1.4286; margin: 4px 16px; padding: 8px; } .rF3c2-GMvhG a { color: rgb(26, 115, 232); font-weight: bold; text-decorati= on: none; } .KmSAZe-u0pjoe { border-radius: 8px; color: rgb(95, 99, 104); font-family: = roboto, "Noto Sans Myanmar UI", arial, sans-serif; font-size: 14px; line-he= ight: 1.4286; padding: 0px 16px; margin-bottom: 12px; margin-top: 0px; } @keyframes slide-in {=20 0% { transform: translateY(100%); } 100% { transform: translateY(0px); } } @keyframes slide-out {=20 0% { transform: translateY(0px); } 100% { transform: translateY(100%); } } .cGMI2b-vOE8Lb-haAclf, .WsjYwc-haAclf .YLEHIf-haAclf, .Sx9Kwc-haAclf, .r4nk= e { box-sizing: border-box; } .WsjYwc-haAclf, .cGMI2b-vOE8Lb-haAclf { overflow: hidden; } .WsjYwc-haAclf .YLEHIf-haAclf { padding: 6px 8px 10px; } .cGMI2b-vOE8Lb-haAclf { bottom: 0px; position: fixed; width: 100%; } .cGMI2b-vOE8Lb-haAclf.hOedQd-QFlW2-HQkcwf { bottom: 1px; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf { padding-top: 8px; transform: transla= teY(100%); will-change: transform; } .WsjYwc-haAclf .YLEHIf-haAclf.xTMeO { transition: opacity 250ms; opacity: 0= ; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf.MjR6uf { transform: translateY(0px); a= nimation: 225ms cubic-bezier(0, 0, 0.2, 1) 0s 1 normal none running slide-i= n; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf.xTMeO { transform: translateY(100%); a= nimation: 250ms ease 0s 1 normal none running slide-out; } .YLEHIf-haAclf.FnSee .ZYIfFd-aGxpHf-FnSee { display: none; } .YLEHIf-haAclf.FnSee .ti6hGc-aGxpHf-FnSee { display: block; } .Sx9Kwc-haAclf { box-shadow: rgb(218, 220, 224) 0px 0px 0px 1px; background= -color: rgb(255, 255, 255); padding-bottom: 14px; transition: border 280ms = cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)= ; } .Sx9Kwc-haAclf:focus-within { box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px= 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; border-color: transparent; ou= tline: none; } .WsjYwc-haAclf .Sx9Kwc-haAclf { border-radius: 8px; } .cGMI2b-vOE8Lb-haAclf .Sx9Kwc-haAclf { border-top-left-radius: 8px; border-= top-right-radius: 8px; margin: 0px -1px; } .Sx9Kwc-haAclf > .r4nke { display: flex; align-items: center; justify-conte= nt: flex-start; min-height: 48px; } .Sx9Kwc-haAclf > .r4nke .jcJzye-Bz112c { height: 20px; margin-left: 16px; m= argin-right: 12px; } .Sx9Kwc-haAclf > .r4nke > .r4nke-LS81yb { display: flex; align-items: cente= r; flex-grow: 1; } @media (-webkit-min-device-pixel-ratio: 0) { .XpnDCe { outline-color: -webkit-focus-ring-color; outline-style: auto; } } .Sx9Kwc-haAclf .TvD9Pc-Bz112c { height: 24px; margin-left: 4px; padding: 12= px; position: relative; } .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c { position: relative; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .Sx9Kwc-haAclf .TvD9Pc-Bz112c { = margin: 0px; position: fixed; right: 8px; top: 6px; } .CNusmb-haDnnc-JaPV2b .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c { fill: rgb(2= 55, 255, 255); } .CNusmb-haDnnc-HLvlvd .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c { fill: rgb(0= , 0, 0); } .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c-ZmdkE { transition: transform 0.05s= cubic-bezier(0.4, 0, 0.2, 1); background-color: rgb(32, 33, 36); border-ra= dius: 50%; height: 40px; left: 4px; top: 4px; opacity: 0.04; position: abso= lute; transform-origin: center center; transform: scale(0); width: 40px; } .Sx9Kwc-haAclf .TvD9Pc-Bz112c:active, .Sx9Kwc-haAclf .TvD9Pc-Bz112c:focus, = .Sx9Kwc-haAclf .TvD9Pc-Bz112c:hover { cursor: pointer; outline: none; } .Sx9Kwc-haAclf .TvD9Pc-Bz112c:active > .Bz112c-ZmdkE, .Sx9Kwc-haAclf .TvD9P= c-Bz112c:focus > .Bz112c-ZmdkE, .Sx9Kwc-haAclf .TvD9Pc-Bz112c:hover > .Bz11= 2c-ZmdkE { transform: scale(1); } .CNusmb-haDnnc .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c-ZmdkE { transition: = none; opacity: 1; } .CNusmb-haDnnc-JaPV2b .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c-ZmdkE { backg= round-color: rgb(255, 255, 255); } .CNusmb-haDnnc-HLvlvd .Sx9Kwc-haAclf .TvD9Pc-Bz112c > .Bz112c-ZmdkE { backg= round-color: rgb(0, 0, 0); } .CNusmb-haDnnc .Sx9Kwc-haAclf .TvD9Pc-Bz112c:focus { outline-style: auto; } .CNusmb-haDnnc-JaPV2b .Sx9Kwc-haAclf .TvD9Pc-Bz112c:active > .Bz112c, .CNus= mb-haDnnc-JaPV2b .Sx9Kwc-haAclf .TvD9Pc-Bz112c:focus > .Bz112c, .CNusmb-haD= nnc-JaPV2b .Sx9Kwc-haAclf > .r4nke > .TvD9Pc-Bz112c:hover > .Bz112c { fill:= rgb(0, 0, 0); } .CNusmb-haDnnc-HLvlvd .Sx9Kwc-haAclf .TvD9Pc-Bz112c:active > .Bz112c, .CNus= mb-haDnnc-HLvlvd .Sx9Kwc-haAclf .TvD9Pc-Bz112c:focus > .Bz112c, .CNusmb-haD= nnc-HLvlvd .Sx9Kwc-haAclf .TvD9Pc-Bz112c:hover > .Bz112c { fill: rgb(255, 2= 55, 255); } .Sx9Kwc-haAclf > .r4nke .tJHJj { flex-grow: 1; color: rgb(95, 99, 104); fon= t-family: "Google Sans"; font-weight: 500; font-size: 14px; letter-spacing:= 0.25px; margin: 0px; padding: 16px 0px 15px; } .Sx9Kwc-haAclf > .r4nke .tJHJj:focus { border: none; outline: none; } .Sx9Kwc-haAclf > .k77Iif { border-top: 1px solid rgb(218, 220, 224); paddin= g-top: 4px; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif, .G0jgYd-bYHpTb.G0jgYd-b= YHpTb-nH2cKf-c5RTEf .k77Iif { border-top: none; padding-top: 0px; } .WsjYwc-haAclf .k77Iif { transition: max-height 250ms; max-height: 122px; o= verflow: hidden; position: relative; } .WsjYwc-haAclf .u0pjoe-DARUcf .k77Iif, .WsjYwc-haAclf .McfNlf .k77Iif, .Wsj= Ywc-haAclf .lgKYGb-v0h5Oe .k77Iif { max-height: none; } .cGMI2b-vOE8Lb-haAclf .k77Iif { max-height: 150px; overflow-y: auto; } .cGMI2b-vOE8Lb-haAclf .McfNlf .k77Iif { max-height: 196px; overflow-y: auto= ; } .cGMI2b-vOE8Lb-haAclf .lgKYGb-v0h5Oe .k77Iif { max-height: 260px; overflow-= y: auto; } .YLEHIf-haAclf.FnSee .fFW7wc-ibnC6b-sM5MNb:not(.OWB6Me):hover, .YLEHIf-haAc= lf.FnSee .fFW7wc-ibnC6b-sM5MNb:not(.OWB6Me):focus, .YLEHIf-haAclf.XHgP6b-mK= Zypf-bEDTcc-LYNcwc .fFW7wc-ibnC6b-sM5MNb:not(.OWB6Me):hover, .YLEHIf-haAclf= .XHgP6b-mKZypf-bEDTcc-LYNcwc .fFW7wc-ibnC6b-sM5MNb:not(.OWB6Me):focus { bac= kground-color: transparent; cursor: default; outline: none; } .YLEHIf-haAclf .fFW7wc-ibnC6b-sM5MNb:not(.gk6SMd), .YLEHIf-haAclf .fFW7wc-i= bnC6b-sM5MNb:not(.gk6SMd) > .fFW7wc-ibnC6b, .YLEHIf-haAclf .k77Iif-v3pZbf-L= gbsSe, .YLEHIf-haAclf .yePe5c-sM5MNb { transition: 0.5s; } .YLEHIf-haAclf.FnSee .fFW7wc-ibnC6b-sM5MNb:not(.gk6SMd), .YLEHIf-haAclf.FnS= ee .fFW7wc-ibnC6b-sM5MNb:not(.gk6SMd) > .fFW7wc-ibnC6b, .YLEHIf-haAclf.FnSe= e .k77Iif-v3pZbf-LgbsSe, .YLEHIf-haAclf.FnSee .yePe5c-sM5MNb { height: 0px;= margin-bottom: 0px; margin-top: 0px; opacity: 0; padding-bottom: 0px; padd= ing-top: 0px; } .YLEHIf-haAclf:not(.FnSee) .fFW7wc-ibnC6b-sM5MNb:nth-child(n+2) { height: 6= 1px; } .YLEHIf-haAclf:not(.FnSee) .fFW7wc > .fFW7wc-ibnC6b-sM5MNb:nth-child(n+2) >= .fFW7wc-ibnC6b { border-top: 1px solid rgb(218, 220, 224); } .Sx9Kwc-haAclf > .yePe5c-sM5MNb { border-bottom-left-radius: 8px; border-bo= ttom-right-radius: 8px; transition: background-color 0.2s cubic-bezier(0.4,= 0, 0.2, 1); height: 42px; margin-bottom: -14px; } .Sx9Kwc-haAclf > .yePe5c-sM5MNb .yePe5c { display: flex; align-items: cente= r; justify-content: center; border-top: 1px solid rgb(218, 220, 224); color= : rgb(95, 99, 104); font-size: 12px; height: 42px; margin: 0px 16px; } .Sx9Kwc-haAclf > .yePe5c-sM5MNb:hover, .Sx9Kwc-haAclf > .yePe5c-sM5MNb:focu= s { background-color: rgb(232, 240, 254); cursor: pointer; outline: none; } .k77Iif-v3pZbf-LgbsSe { display: flex; height: 36px; } .G0jgYd-bYHpTb .k77Iif-v3pZbf-LgbsSe { height: 40px; } .k77Iif-v3pZbf-LgbsSe { align-items: center; flex-direction: column; justif= y-content: start; margin-top: 4px; padding: 0px 16px; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe { border-radius: 4px; color: rgb(66, 133, 2= 44); font-family: "Google Sans"; height: 36px; letter-spacing: 0.25px; text= -transform: none; } .G0jgYd-bYHpTb .k77Iif-v3pZbf-LgbsSe > .LgbsSe { border-radius: 20px; heigh= t: 40px; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf { color: rgb(255, 255, 255); backgro= und-color: rgb(26, 115, 232); } .G0jgYd-bYHpTb .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf { background-color: r= gb(11, 87, 208); } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe > .LgbsSe-= ssJRIf { background: rgb(19, 19, 20); border: 1px solid rgb(142, 145, 143);= } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe-bN97Pc-sM5= MNb { display: flex; align-items: center; flex-flow: row; justify-content: = space-between; height: 100%; margin: 0px -2px; position: relative; width: 1= 00%; } .k77Iif-v3pZbf-LgbsSe .LgbsSe-QCZ2Re-Bz112c { display: flex; justify-conten= t: center; align-items: center; height: 20px; width: 20px; margin-left: -5p= x; margin-right: -20px; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:hover, .k77Iif-v3pZbf-LgbsSe > .Lgbs= Se-ssJRIf:active, .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:focus { background= -color: rgb(26, 115, 232); outline: none; } .G0jgYd-bYHpTb .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:hover, .G0jgYd-bYHpTb= .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:active, .G0jgYd-bYHpTb .k77Iif-v3pZ= bf-LgbsSe > .LgbsSe-ssJRIf:focus { background-color: rgb(11, 87, 208); } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe > .LgbsSe-= ssJRIf:hover, .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-Lgb= sSe > .LgbsSe-ssJRIf:active, .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k7= 7Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:focus { background: rgb(19, 19, 20); } .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:focus { box-shadow: rgba(26, 115, 23= 2, 0.3) 0px 1px 2px 0px, rgba(26, 115, 232, 0.15) 0px 1px 3px 1px; } .k77Iif-v3pZbf-LgbsSe .LgbsSe-MJoBVe { transition: background-color 0.218s;= background-color: rgb(32, 33, 36); inset: 0px; opacity: 0; position: absol= ute; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe .LgbsSe-MJ= oBVe { background-color: white; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe:hover > .LgbsSe-MJoBVe { opacity: 0.16; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe > .LgbsSe:= hover > .LgbsSe-MJoBVe { opacity: 0.08; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe:focus > .LgbsSe-MJoBVe { opacity: 0.24; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe:active > .LgbsSe-MJoBVe { opacity: 0.2; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe > .LgbsSe:= focus > .LgbsSe-MJoBVe { opacity: 0.12; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe > .LgbsSe-bN97Pc { position: relative; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .k77Iif-v3pZbf-LgbsSe > .LgbsSe = .LgbsSe-bN97Pc { flex-grow: 1; } .k77Iif-v3pZbf-LgbsSe > .LgbsSe-KoToPc { width: 100%; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-c5RTEf .TvD9Pc-LgbsSe-haAclf { align-it= ems: center; display: flex; justify-content: center; margin: 4px 0px 0px; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-c5RTEf .TvD9Pc-LgbsSe { color: rgb(11, = 87, 208); cursor: pointer; font-size: 14px; line-height: 20px; padding: 12p= x 12px 4px; } .CNusmb-haDnnc-JaPV2b .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf { background-c= olor: rgb(0, 0, 0); border: 2px solid rgb(255, 255, 255); color: rgb(255, 2= 55, 255); } .CNusmb-haDnnc-HLvlvd .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf { background-c= olor: rgb(255, 255, 255); border: 2px solid rgb(0, 0, 0); color: rgb(0, 0, = 0); } .CNusmb-haDnnc .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:focus { outline-style= : auto; } .CNusmb-haDnnc-JaPV2b .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:hover, .CNusmb= -haDnnc-JaPV2b .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:active, .CNusmb-haDnn= c-JaPV2b .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:focus { background-color: r= gb(255, 255, 255); color: rgb(0, 0, 0); } .CNusmb-haDnnc-HLvlvd .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:hover, .CNusmb= -haDnnc-HLvlvd .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:active, .CNusmb-haDnn= c-HLvlvd .k77Iif-v3pZbf-LgbsSe > .LgbsSe-ssJRIf:focus { background-color: r= gb(0, 0, 0); color: rgb(255, 255, 255); } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf:not(.FnSee) .k77Iif-v3pZbf-LgbsSe { he= ight: 42px; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf.G0jgYd-bYHpTb:not(.FnSee) .k77Iif-v3pZ= bf-LgbsSe { height: 40px; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf:not(.FnSee) .k77Iif-v3pZbf-LgbsSe > .L= gbsSe { overflow: visible; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf.G0jgYd-bYHpTb:not(.FnSee) .k77Iif-v3pZ= bf-LgbsSe > .LgbsSe { overflow: hidden; } .cGMI2b-vOE8Lb-haAclf .YLEHIf-haAclf:not(.FnSee) .k77Iif-v3pZbf-LgbsSe > .L= gbsSe::after { inset: -6px 0px; content: " "; position: absolute; } @media screen and (-ms-high-contrast:active) { .k77Iif-v3pZbf-LgbsSe > .LgbsSe { border: 2px solid windowtext; } } .wk4LHf-haAclf { display: flex; flex-direction: column-reverse; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-c5RTEf .wk4LHf-haAclf { flex-direction:= column; } .wk4LHf { color: rgb(32, 33, 36); font-size: 14px; letter-spacing: 0.25px; = line-height: 20px; margin-top: 8px; padding: 0px 16px; } .YLEHIf-haAclf.FnSee .wk4LHf { display: none; } .fFW7wc .u0pjoe-Ne3sFf { color: rgb(95, 99, 104); font-size: 14px; letter-s= pacing: 0.25px; line-height: 20px; margin-bottom: 16px; margin-top: 8px; pa= dding: 0px 16px; } .fFW7wc .u0pjoe-r4nke { font-size: 14px; letter-spacing: 0.25px; line-heigh= t: 20px; padding: 0px 16px; color: rgb(60, 64, 67); font-family: "Google Sa= ns"; font-weight: 500; margin-bottom: 12px; margin-top: 12px; } .u0pjoe { display: flex; justify-content: flex-end; margin-top: 4px; paddin= g: 0px 16px; } .u0pjoe > .LgbsSe { border-radius: 4px; background-color: rgb(255, 255, 255= ); border: 1px solid rgb(218, 220, 224); color: rgb(26, 115, 232); font-fam= ily: "Google Sans"; height: 36px; letter-spacing: 0.25px; min-width: 76px; = text-transform: none; } .u0pjoe > .LgbsSe-ssJRIf:hover, .u0pjoe > .LgbsSe-ssJRIf:active { backgroun= d-color: rgb(232, 240, 254); outline: none; } .u0pjoe > .LgbsSe-ssJRIf:focus { background-color: rgb(232, 240, 254); outl= ine: none; box-shadow: rgba(26, 115, 232, 0.3) 0px 1px 2px 0px, rgba(26, 11= 5, 232, 0.15) 0px 1px 3px 1px; } .WsjYwc-haAclf .YLEHIf-haAclf:not(.X9G3K) .fFW7wc-ibnC6b-sM5MNb:nth-child(n= +3), .WsjYwc-haAclf .YLEHIf-haAclf.X9G3K .yePe5c-sM5MNb { display: none; } .WsjYwc-haAclf .YLEHIf-haAclf.X9G3K .k77Iif { max-height: 274.5px; overflow= -y: auto; } .WsjYwc-haAclf .YLEHIf-haAclf.X9G3K.FnSee .k77Iif { overflow-y: hidden; } .lgKYGb-v0h5Oe-Ne3sFf { margin: 12px 0px; padding: 0px 16px; position: rela= tive; overflow: hidden; } .G0jgYd-bYHpTb .lgKYGb-v0h5Oe-Ne3sFf { min-height: 132px; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .lgKYGb-v0h5Oe-Ne3sFf { pointer-= events: none; } .lgKYGb-v0h5Oe-Ne3sFf .k77Iif-v0h5Oe { font-family: "Google Sans"; font-siz= e: 20px; line-height: 28px; margin: 0px; width: 70%; } .G0jgYd-bYHpTb .lgKYGb-v0h5Oe-Ne3sFf .k77Iif-v0h5Oe { width: 76%; } .lgKYGb-v0h5Oe-Ne3sFf .u6YOj-v0h5Oe { color: rgb(95, 99, 104); font-size: 1= 4px; line-height: 20px; margin: 10px 0px 0px; width: 60%; text-wrap: wrap; = } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-R6PoUb .lgKYGb-v0h5Oe-Ne3sFf .u6YOj-v0h= 5Oe, .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-ibL1re .lgKYGb-v0h5Oe-Ne3sFf .u6YO= j-v0h5Oe { width: 55%; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-c5RTEf .lgKYGb-v0h5Oe-Ne3sFf .u6YOj-v0h= 5Oe { width: 62%; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-II5mzb .lgKYGb-v0h5Oe-Ne3sFf .u6YOj-v0h= 5Oe, .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-wNfPc .lgKYGb-v0h5Oe-Ne3sFf .u6YOj= -v0h5Oe { width: 65%; } .lgKYGb-v0h5Oe-Ne3sFf .lgKYGb-v0h5Oe-HiaYvf { bottom: 2px; right: 28px; pos= ition: absolute; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-c5RTEf .lgKYGb-v0h5Oe-Ne3sFf .lgKYGb-v0= h5Oe-HiaYvf { bottom: 0px; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-II5mzb .lgKYGb-v0h5Oe-Ne3sFf .lgKYGb-v0= h5Oe-HiaYvf, .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-wNfPc .lgKYGb-v0h5Oe-Ne3sF= f .lgKYGb-v0h5Oe-HiaYvf { bottom: 0px; right: 16px; } .WsjYwc-haAclf .lgKYGb-v0h5Oe-Ne3sFf .lgKYGb-v0h5Oe-HiaYvf svg { width: 120= px; height: 74px; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-c5RTEf .lgKYGb-v0h5Oe-Ne3sFf .lgKYGb-v0= h5Oe-HiaYvf svg { width: 97px; height: 94px; } .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-II5mzb .lgKYGb-v0h5Oe-Ne3sFf .lgKYGb-v0= h5Oe-HiaYvf svg, .G0jgYd-bYHpTb.G0jgYd-bYHpTb-nH2cKf-wNfPc .lgKYGb-v0h5Oe-N= e3sFf .lgKYGb-v0h5Oe-HiaYvf svg { width: 100px; height: 100px; } sentinel { } ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i---- Content-Type: image/jpeg Content-Transfer-Encoding: base64 Content-Location: https://lh3.googleusercontent.com/a/ACg8ocLX6pnTbLL0mgE1bJvyztsdHi6eSlCy96MZI8TAgi-5gWOio5Krag=s96-c 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 ------MultipartBoundary--vilXdbKRkATufEcBePtUmoMXPSUalFTq398qXTDC3i------