
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_f80fafb915a5dbfced83ff64.woff')format("woff");}.ff1{font-family:ff1;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aa66dffe8eae65f0ce088821.woff')format("woff");}.ff2{font-family:ff2;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55d609a699e2892d5c2af48f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0fcf6a82a3716f205851e41.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ca1c529b75a8ae9b90c808e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0aa918c0ee9dabb1677c7367.woff')format("woff");}.ff6{font-family:ff6;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_75c648b54b3793ef47b21f55.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_46e4a3c67a817878c9296767.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1620d5e2ef047181f34289e5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d8dff34d7fa4f91849af975d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6695e7823ff555590cdf788a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8c4be6f61e0ff50d3c273f29.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5714f6c90ba7e08cbfddc42d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7ce02c70583fb78102e74071.woff')format("woff");}.ffe{font-family:ffe;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_87d80172ca64c5af358f627d.woff')format("woff");}.fff{font-family:fff;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4f99ec1ecbe08f5d3fe1c819.woff')format("woff");}.ff10{font-family:ff10;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7d04186b5ba6e1317e0beb13.woff')format("woff");}.ff11{font-family:ff11;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5faefc0dfbdb3d26e266fdf5.woff')format("woff");}.ff12{font-family:ff12;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bd85d4e6d1d6948ecf55aa07.woff')format("woff");}.ff13{font-family:ff13;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ee7a464120505586233fb6ae.woff')format("woff");}.ff14{font-family:ff14;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5a4473a58b0ac64ad528d408.woff')format("woff");}.ff15{font-family:ff15;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2052b92f584c3d7d43ac8295.woff')format("woff");}.ff16{font-family:ff16;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9a6950520092d7f58d4af8f2.woff')format("woff");}.ff17{font-family:ff17;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_448d89a5829dde5129068f1d.woff')format("woff");}.ff18{font-family:ff18;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_18fd1d4e8a359458874e07c7.woff')format("woff");}.ff19{font-family:ff19;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a6d9350cafc01cd6ab2405ad.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a6c1ca75bc983ec49f40d025.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_9c267bd734ec20f27a7097f6.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_a519f41bf1d4cf550d82da44.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_8c4611e31576eef0775af95e.woff')format("woff");}.ff20{font-family:ff20;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_bb03b42ecba7c13c977d2aa6.woff')format("woff");}.ff21{font-family:ff21;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_838d917591af43a996778b2f.woff')format("woff");}.ff22{font-family:ff22;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_f2991ea61958868e5e89701c.woff')format("woff");}.ff23{font-family:ff23;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_df0bcfeeed602ff19fa086f0.woff')format("woff");}.ff24{font-family:ff24;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff25{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff26;src:url('chunks/assets/font_d81c2232aaa5eddd8215578d.woff')format("woff");}.ff26{font-family:ff26;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_d3a447032edb6fb9dea45c40.woff')format("woff");}.ff27{font-family:ff27;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_bbbdac2cfd29dff5b5f7c262.woff')format("woff");}.ff28{font-family:ff28;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_284db731534b5241e01cb4a5.woff')format("woff");}.ff29{font-family:ff29;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_dfd32c8d4853677e8a0aba45.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff2b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_b633b2289eee323b5363d31e.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_834ace2a055ff8a067790234.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_00a17684413477887906ede1.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_db0e49ef9e1b12b739a68602.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff32;src:url('chunks/assets/font_a1a4014a10b8b4e061dd266c.woff')format("woff");}.ff32{font-family:ff32;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_bb74ba3e728850be5adb2cde.woff')format("woff");}.ff33{font-family:ff33;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_a6e4d796fcc65bb637cb68fd.woff')format("woff");}.ff34{font-family:ff34;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_18fd1d4e8a359458874e07c7.woff')format("woff");}.ff35{font-family:ff35;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_cc5d49b9fc7ff0ea7f4aa156.woff')format("woff");}.ff36{font-family:ff36;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff37{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff38;src:url('chunks/assets/font_aebaad86313a3da4547c6516.woff')format("woff");}.ff38{font-family:ff38;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_d7785a486adeab87baf19477.woff')format("woff");}.ff39{font-family:ff39;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_bd5a9b86c5e1759f6b681114.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_a3d59ef79029224363d942c5.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_c894c4240576cf14d601c496.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_b99c44c1abd3f2cdaa1c276a.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_42ebcb242acddb434a2ef84c.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff40;src:url('chunks/assets/font_8e1146c8a155acb8079425b8.woff')format("woff");}.ff40{font-family:ff40;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_3c83384be3651ce9d7acc2b3.woff')format("woff");}.ff41{font-family:ff41;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_0aa918c0ee9dabb1677c7367.woff')format("woff");}.ff42{font-family:ff42;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_11792e0b830aa8c508cdd5d3.woff')format("woff");}.ff43{font-family:ff43;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_178d9ae6f4e1b048231c33f2.woff')format("woff");}.ff44{font-family:ff44;line-height:0.981445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_5160cb547c145b1d48aa5033.woff')format("woff");}.ff45{font-family:ff45;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_c15100dbcc91dc036f5e0797.woff')format("woff");}.ff46{font-family:ff46;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_a986bad28aea33f77a324f48.woff')format("woff");}.ff47{font-family:ff47;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_e885588bcb0988de130d9cbc.woff')format("woff");}.ff48{font-family:ff48;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_3361bc024fcad65a57d6a4f4.woff')format("woff");}.ff49{font-family:ff49;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_16c7df7a37dd3001579cdb1f.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_e5079ef1b4d6b8d03c4db2d9.woff')format("woff");}.ff4b{font-family:ff4b;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_0aa918c0ee9dabb1677c7367.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_01c64c00fdfd2d1fc96e9680.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_681109f83d4037ee78e65176.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff4f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff50;src:url('chunks/assets/font_a5f767b0564b858c9ff53e9b.woff')format("woff");}.ff50{font-family:ff50;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_47390263f59f836702a378b7.woff')format("woff");}.ff51{font-family:ff51;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_c3573e3487e1b094fc80f03d.woff')format("woff");}.ff52{font-family:ff52;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_7e05f3699b50dcf630da8ac9.woff')format("woff");}.ff53{font-family:ff53;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_16940fabd3d49f5525c595de.woff')format("woff");}.ff54{font-family:ff54;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_36cbd23abe45fc5279e099db.woff')format("woff");}.ff55{font-family:ff55;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_4449b5992e9abac0f5525378.woff')format("woff");}.ff56{font-family:ff56;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_7e91c493633127b658e791ca.woff')format("woff");}.ff57{font-family:ff57;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_14b5898d9fd4fc264822d138.woff')format("woff");}.ff58{font-family:ff58;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_f0c1849852c39b0785b94c2c.woff')format("woff");}.ff59{font-family:ff59;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_1fee1c042bb2ca8797823833.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_25ebf7b4ac010c608fa91eb0.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_f3bc4a4d8842b20f77c2850e.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_219164a1b2c7f0d956d4e3ca.woff')format("woff");}.ff5d{font-family:ff5d;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_8ddd310b9e43138ba5d3a282.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff5f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff60;src:url('chunks/assets/font_10d02bb0de8acfa34fad7ae4.woff')format("woff");}.ff60{font-family:ff60;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_f1887e569ba6859dc52d5ee7.woff')format("woff");}.ff61{font-family:ff61;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_df8e0e701ceb4ed409293bc4.woff')format("woff");}.ff62{font-family:ff62;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_d1f8a993dceed72b9fd4709f.woff')format("woff");}.ff63{font-family:ff63;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_b8cd46b2e6b1f35a94b31a29.woff')format("woff");}.ff64{font-family:ff64;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_652d21404b13572717c95901.woff')format("woff");}.ff65{font-family:ff65;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_0f365ad447968f3bacea480e.woff')format("woff");}.ff66{font-family:ff66;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_a685c721477d7c6fbdf0a2d0.woff')format("woff");}.ff67{font-family:ff67;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_7eedf3173b0be625782f674e.woff')format("woff");}.ff68{font-family:ff68;line-height:0.773438;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff69{font-family:sans-serif;visibility:hidden;}
.ff6a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_b25ccc5df606845e511165a0.woff')format("woff");}.ff6b{font-family:ff6b;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_2d892794ecea938747eaccfc.woff')format("woff");}.ff6c{font-family:ff6c;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_0aa918c0ee9dabb1677c7367.woff')format("woff");}.ff6d{font-family:ff6d;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_87c02ea75bd53ea948b218ed.woff')format("woff");}.ff6e{font-family:ff6e;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff6f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff70;src:url('chunks/assets/font_d3e8d56a51382659e3fb44ae.woff')format("woff");}.ff70{font-family:ff70;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_68feb7c59833c269edeeba9f.woff')format("woff");}.ff71{font-family:ff71;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_4530f56f8c1152a592f4b173.woff')format("woff");}.ff72{font-family:ff72;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_205af852595dfd95ebcca81f.woff')format("woff");}.ff73{font-family:ff73;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_017e0de46c4c8b586b2b46cf.woff')format("woff");}.ff74{font-family:ff74;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff75{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff76;src:url('chunks/assets/font_2b16ca1da1cc4e369d82d455.woff')format("woff");}.ff76{font-family:ff76;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_861d8b9f61993db38ab51706.woff')format("woff");}.ff77{font-family:ff77;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_3e10dcc759e3fa5bde2e4de7.woff')format("woff");}.ff78{font-family:ff78;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_d2057fe039b90a8ce77ba0ca.woff')format("woff");}.ff79{font-family:ff79;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_6288f9216d3e0c03e96c71b6.woff')format("woff");}.ff7a{font-family:ff7a;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_9c839713971d83ed0dede357.woff')format("woff");}.ff7b{font-family:ff7b;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_a5fe25a8645abb826606b272.woff')format("woff");}.ff7c{font-family:ff7c;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_8bb006aae956796a298f024b.woff')format("woff");}.ff7d{font-family:ff7d;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_131f5d4b3650044ab337a437.woff')format("woff");}.ff7e{font-family:ff7e;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_44f3400f7992e6fe9fbde7ce.woff')format("woff");}.ff7f{font-family:ff7f;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_d0e68ffa42647af89ab22ba9.woff')format("woff");}.ff80{font-family:ff80;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff81{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff82;src:url('chunks/assets/font_aabeb159e3eb8e915535b405.woff')format("woff");}.ff82{font-family:ff82;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_616920fd4edb185053cf6d5c.woff')format("woff");}.ff83{font-family:ff83;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_0aa918c0ee9dabb1677c7367.woff')format("woff");}.ff84{font-family:ff84;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85;src:url('chunks/assets/font_5438632ea6030128266cc781.woff')format("woff");}.ff85{font-family:ff85;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86;src:url('chunks/assets/font_9f0c32f48bed17dcb84c35ed.woff')format("woff");}.ff86{font-family:ff86;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff87{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff88;src:url('chunks/assets/font_64841e623c452d63e3836e84.woff')format("woff");}.ff88{font-family:ff88;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89;src:url('chunks/assets/font_9d18f57bb0eee7538d8d8567.woff')format("woff");}.ff89{font-family:ff89;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a;src:url('chunks/assets/font_0b5d28cfcdf4418d4353bca3.woff')format("woff");}.ff8a{font-family:ff8a;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b;src:url('chunks/assets/font_f4ed7792f1166decab82d900.woff')format("woff");}.ff8b{font-family:ff8b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff8c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8d;src:url('chunks/assets/font_4bd7642cc22cb2b6212555e0.woff')format("woff");}.ff8d{font-family:ff8d;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e;src:url('chunks/assets/font_6a7e0aa39f8d188eac813afd.woff')format("woff");}.ff8e{font-family:ff8e;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f;src:url('chunks/assets/font_28baf49aee3bbec6462a2465.woff')format("woff");}.ff8f{font-family:ff8f;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90;src:url('chunks/assets/font_f4ed7792f1166decab82d900.woff')format("woff");}.ff90{font-family:ff90;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91;src:url('chunks/assets/font_bb03b42ecba7c13c977d2aa6.woff')format("woff");}.ff91{font-family:ff91;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92;src:url('chunks/assets/font_99414fa74e43c1746d8f5e51.woff')format("woff");}.ff92{font-family:ff92;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93;src:url('chunks/assets/font_93d92e3ebb17f6f7fcbe5ab9.woff')format("woff");}.ff93{font-family:ff93;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94;src:url('chunks/assets/font_216b2fd5c1db0736576d08d3.woff')format("woff");}.ff94{font-family:ff94;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95;src:url('chunks/assets/font_20bfbc344707484655b5084e.woff')format("woff");}.ff95{font-family:ff95;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96;src:url('chunks/assets/font_338bdaa15485d1689c3a63d4.woff')format("woff");}.ff96{font-family:ff96;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff97{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff98;src:url('chunks/assets/font_40e1f92ec843e23a0e952856.woff')format("woff");}.ff98{font-family:ff98;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99;src:url('chunks/assets/font_aee3f8089b9e4d47413bec48.woff')format("woff");}.ff99{font-family:ff99;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a;src:url('chunks/assets/font_1830be7113a1d508ec18a3e7.woff')format("woff");}.ff9a{font-family:ff9a;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b;src:url('chunks/assets/font_c13a7e7e1c7a7a97bc6d5b2e.woff')format("woff");}.ff9b{font-family:ff9b;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c;src:url('chunks/assets/font_6d6a5de652768597d07baca3.woff')format("woff");}.ff9c{font-family:ff9c;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d;src:url('chunks/assets/font_21ec0a5cae52869e900deeba.woff')format("woff");}.ff9d{font-family:ff9d;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e;src:url('chunks/assets/font_5b12364aa637c9b729c502a7.woff')format("woff");}.ff9e{font-family:ff9e;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f;src:url('chunks/assets/font_b595bcb98a416ad4dec9b325.woff')format("woff");}.ff9f{font-family:ff9f;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0;src:url('chunks/assets/font_a6953e58313de61c55818711.woff')format("woff");}.ffa0{font-family:ffa0;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1;src:url('chunks/assets/font_a192275fd45974ed4bce3c8d.woff')format("woff");}.ffa1{font-family:ffa1;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2;src:url('chunks/assets/font_ac5644710ba6911820a0679e.woff')format("woff");}.ffa2{font-family:ffa2;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3;src:url('chunks/assets/font_88e1b54f794b317cb5cd4b5e.woff')format("woff");}.ffa3{font-family:ffa3;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4;src:url('chunks/assets/font_9e90106f1c3af601b5ca0b8b.woff')format("woff");}.ffa4{font-family:ffa4;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5;src:url('chunks/assets/font_f7d62f5e747826a8b5940cad.woff')format("woff");}.ffa5{font-family:ffa5;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6;src:url('chunks/assets/font_abda378790e053d464a25747.woff')format("woff");}.ffa6{font-family:ffa6;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffa7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa8;src:url('chunks/assets/font_1ed71e12315749047f2245ed.woff')format("woff");}.ffa8{font-family:ffa8;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9;src:url('chunks/assets/font_d325fb2e640e4fa0cc7ff23b.woff')format("woff");}.ffa9{font-family:ffa9;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa;src:url('chunks/assets/font_6e8f65eb0b680038ab8e5482.woff')format("woff");}.ffaa{font-family:ffaa;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab;src:url('chunks/assets/font_0aa918c0ee9dabb1677c7367.woff')format("woff");}.ffab{font-family:ffab;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac;src:url('chunks/assets/font_3590ff5e27897d324d664c3a.woff')format("woff");}.ffac{font-family:ffac;line-height:0.720703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad;src:url('chunks/assets/font_b53d750e3b15736a264b7e80.woff')format("woff");}.ffad{font-family:ffad;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae;src:url('chunks/assets/font_8235d858e1cca2414fcec2ad.woff')format("woff");}.ffae{font-family:ffae;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaf;src:url('chunks/assets/font_b1157277c3ee7a71b480c98d.woff')format("woff");}.ffaf{font-family:ffaf;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0;src:url('chunks/assets/font_6c9ba53fc5caeb6cd6c36756.woff')format("woff");}.ffb0{font-family:ffb0;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1;src:url('chunks/assets/font_0bcd956e02ab00046620cbb3.woff')format("woff");}.ffb1{font-family:ffb1;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2;src:url('chunks/assets/font_3f5f162f371ce447b6f51134.woff')format("woff");}.ffb2{font-family:ffb2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3;src:url('chunks/assets/font_bf136a06f168a73ea850c00c.woff')format("woff");}.ffb3{font-family:ffb3;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4;src:url('chunks/assets/font_46009c9046bf62663ea7ae43.woff')format("woff");}.ffb4{font-family:ffb4;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5;src:url('chunks/assets/font_57cd626f407a07ac57c09913.woff')format("woff");}.ffb5{font-family:ffb5;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6;src:url('chunks/assets/font_0f365ad447968f3bacea480e.woff')format("woff");}.ffb6{font-family:ffb6;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7;src:url('chunks/assets/font_019335f0525b682cc5967e28.woff')format("woff");}.ffb7{font-family:ffb7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8;src:url('chunks/assets/font_663add0a8829d1d11ce5771b.woff')format("woff");}.ffb8{font-family:ffb8;line-height:0.963867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9;src:url('chunks/assets/font_c435e07f3cf31e4b459c0fd6.woff')format("woff");}.ffb9{font-family:ffb9;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba;src:url('chunks/assets/font_4f6b01c482855c77fe42ad33.woff')format("woff");}.ffba{font-family:ffba;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb;src:url('chunks/assets/font_212353ee782d0b9d1b945713.woff')format("woff");}.ffbb{font-family:ffbb;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc;src:url('chunks/assets/font_bb03b42ecba7c13c977d2aa6.woff')format("woff");}.ffbc{font-family:ffbc;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd;src:url('chunks/assets/font_1912da3bbfd32dd5fd4c4ec9.woff')format("woff");}.ffbd{font-family:ffbd;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe;src:url('chunks/assets/font_224f2a7a0dc219782d9f8ad7.woff')format("woff");}.ffbe{font-family:ffbe;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf;src:url('chunks/assets/font_54a5e49b7a5de5b894d085ae.woff')format("woff");}.ffbf{font-family:ffbf;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0;src:url('chunks/assets/font_283a4d672bd71b32eaf3122b.woff')format("woff");}.ffc0{font-family:ffc0;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1;src:url('chunks/assets/font_bb03b42ecba7c13c977d2aa6.woff')format("woff");}.ffc1{font-family:ffc1;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2;src:url('chunks/assets/font_f8790a13411d42b0edc21fbc.woff')format("woff");}.ffc2{font-family:ffc2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3;src:url('chunks/assets/font_5daf9adaca2b958a0de45610.woff')format("woff");}.ffc3{font-family:ffc3;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4;src:url('chunks/assets/font_1627026bd0bb7d9aade56414.woff')format("woff");}.ffc4{font-family:ffc4;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5;src:url('chunks/assets/font_b6d719d1b4a725a427e22e78.woff')format("woff");}.ffc5{font-family:ffc5;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6;src:url('chunks/assets/font_0f365ad447968f3bacea480e.woff')format("woff");}.ffc6{font-family:ffc6;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7;src:url('chunks/assets/font_ba10ef0dbf5bbd0d78f8d1a1.woff')format("woff");}.ffc7{font-family:ffc7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc9;src:url('chunks/assets/font_268aba9b354a422fe4f24ca6.woff')format("woff");}.ffc9{font-family:ffc9;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca;src:url('chunks/assets/font_fcea6d09d8ca082d3f367858.woff')format("woff");}.ffca{font-family:ffca;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb;src:url('chunks/assets/font_3af6165b944596597e8449e6.woff')format("woff");}.ffcb{font-family:ffcb;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffcc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffcd;src:url('chunks/assets/font_1523944919e791afb453da8d.woff')format("woff");}.ffcd{font-family:ffcd;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce;src:url('chunks/assets/font_b11b64ce1c36c1e406c8664b.woff')format("woff");}.ffce{font-family:ffce;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf;src:url('chunks/assets/font_ea6ddb99c9c1db43e44924d8.woff')format("woff");}.ffcf{font-family:ffcf;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0;src:url('chunks/assets/font_16c6b0e53a5f67c3cf98b5f7.woff')format("woff");}.ffd0{font-family:ffd0;line-height:0.883789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1;src:url('chunks/assets/font_adc1b6d607f45a8ea54c0b50.woff')format("woff");}.ffd1{font-family:ffd1;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2;src:url('chunks/assets/font_82149201fa7e84bcf54818bc.woff')format("woff");}.ffd2{font-family:ffd2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3;src:url('chunks/assets/font_df16cb9baff67401f2d36a24.woff')format("woff");}.ffd3{font-family:ffd3;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4;src:url('chunks/assets/font_93d3ed464ad23e6498f421a1.woff')format("woff");}.ffd4{font-family:ffd4;line-height:0.953613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5;src:url('chunks/assets/font_fbfb77f3964236320ab0371a.woff')format("woff");}.ffd5{font-family:ffd5;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6;src:url('chunks/assets/font_1e5b650f59cb764bd98c1185.woff')format("woff");}.ffd6{font-family:ffd6;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7;src:url('chunks/assets/font_eb26d1e6deb24918b34f700c.woff')format("woff");}.ffd7{font-family:ffd7;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffd8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd9;src:url('chunks/assets/font_dbd50774d49abe6b9880ebf0.woff')format("woff");}.ffd9{font-family:ffd9;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda;src:url('chunks/assets/font_4bedec05a05d2c9a05e7b720.woff')format("woff");}.ffda{font-family:ffda;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb;src:url('chunks/assets/font_91e55385617f5902b51d5e5d.woff')format("woff");}.ffdb{font-family:ffdb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdc;src:url('chunks/assets/font_2d74d7ac1c70726f6d5cc4d7.woff')format("woff");}.ffdc{font-family:ffdc;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd;src:url('chunks/assets/font_dbf3a5a7874ca04e573c6be0.woff')format("woff");}.ffdd{font-family:ffdd;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde;src:url('chunks/assets/font_dcfdd33540fc222e67ccef73.woff')format("woff");}.ffde{font-family:ffde;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdf;src:url('chunks/assets/font_65e6c5f665e319a12ab60f8d.woff')format("woff");}.ffdf{font-family:ffdf;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe0;src:url('chunks/assets/font_038a5818326df67a8993d6b8.woff')format("woff");}.ffe0{font-family:ffe0;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.339846px;}
.v8{vertical-align:4.500000px;}
.v7{vertical-align:5.695314px;}
.v1{vertical-align:7.839840px;}
.v5{vertical-align:55.158000px;}
.v6{vertical-align:62.997840px;}
.v2{vertical-align:76.500000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:124.428240px;}
.ls2{letter-spacing:171.938280px;}
.ls4{letter-spacing:301.630080px;}
.ls3{letter-spacing:335.084640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-64.063125px;}
.ws6{word-spacing:-62.927280px;}
.ws4{word-spacing:-50.344065px;}
.ws1c{word-spacing:-45.593145px;}
.ws1d{word-spacing:-42.025410px;}
.ws1b{word-spacing:-41.220045px;}
.ws2{word-spacing:-40.634325px;}
.wsa{word-spacing:-38.611350px;}
.ws11{word-spacing:-36.588375px;}
.wsd{word-spacing:-32.810400px;}
.wsc{word-spacing:-32.517450px;}
.ws7{word-spacing:-22.790970px;}
.ws16{word-spacing:-21.659265px;}
.ws18{word-spacing:-19.618740px;}
.ws0{word-spacing:-19.401975px;}
.ws9{word-spacing:-19.035900px;}
.ws17{word-spacing:-18.590850px;}
.wsf{word-spacing:-18.436050px;}
.ws3{word-spacing:-18.157320px;}
.ws10{word-spacing:-18.088200px;}
.ws12{word-spacing:-17.470125px;}
.wsb{word-spacing:-17.253360px;}
.ws13{word-spacing:-16.349400px;}
.ws14{word-spacing:-16.181100px;}
.ws5{word-spacing:-15.434280px;}
.ws19{word-spacing:-15.233400px;}
.ws1a{word-spacing:-14.588910px;}
.wse{word-spacing:-14.530320px;}
.ws15{word-spacing:-13.615200px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-9.366296px;}
._4{margin-left:-8.072862px;}
._b{margin-left:-6.747691px;}
._3{margin-left:-5.048105px;}
._0{margin-left:-3.394049px;}
._1{margin-left:-1.406708px;}
._5{width:1.018298px;}
._2{width:2.043145px;}
._7{width:3.693721px;}
._c{width:311.214870px;}
._9{width:335.172053px;}
._f{width:346.368870px;}
._10{width:348.536700px;}
._a{width:430.587625px;}
._e{width:450.717660px;}
._d{width:485.051400px;}
._8{width:988.249300px;}
.fc4{color:transparent;}
.fc2{color:rgb(90,110,216);}
.fc1{color:rgb(207,208,216);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs17{font-size:6.592500px;}
.fs11{font-size:6.957000px;}
.fsd{font-size:7.321500px;}
.fsc{font-size:9.153000px;}
.fs1d{font-size:38.457000px;}
.fs19{font-size:54.900000px;}
.fs5{font-size:58.590000px;}
.fsa{font-size:62.235000px;}
.fs1f{font-size:64.080000px;}
.fs14{font-size:65.925000px;}
.fs1a{font-size:68.670000px;}
.fsf{font-size:69.570000px;}
.fs12{font-size:70.290000px;}
.fs1{font-size:73.215000px;}
.fs9{font-size:77.805000px;}
.fs16{font-size:82.395000px;}
.fs10{font-size:86.985000px;}
.fs20{font-size:87.885000px;}
.fs3{font-size:91.530000px;}
.fs15{font-size:98.865000px;}
.fs1c{font-size:104.355000px;}
.fsb{font-size:109.845000px;}
.fs18{font-size:137.340000px;}
.fs4{font-size:146.475000px;}
.fs7{font-size:155.655000px;}
.fs13{font-size:164.790000px;}
.fse{font-size:173.970000px;}
.fs2{font-size:183.105000px;}
.fs6{font-size:202.185000px;}
.fs1b{font-size:227.430000px;}
.fs0{font-size:252.720000px;}
.fs8{font-size:311.310000px;}
.fs21{font-size:366.255000px;}
.fs1e{font-size:384.570000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yb6{bottom:19.125000px;}
.y5a{bottom:20.250000px;}
.y34{bottom:21.375000px;}
.y17e{bottom:21.375150px;}
.yc3{bottom:22.500000px;}
.y121{bottom:43.875000px;}
.y14e{bottom:46.125000px;}
.y5d{bottom:48.375000px;}
.y17d{bottom:50.625150px;}
.ybf{bottom:58.500000px;}
.y13d{bottom:63.030000px;}
.y124{bottom:65.279850px;}
.y16{bottom:67.529850px;}
.y177{bottom:67.530000px;}
.y120{bottom:68.625000px;}
.ye8{bottom:72.030000px;}
.y15c{bottom:73.154850px;}
.y60{bottom:74.279850px;}
.y136{bottom:76.500000px;}
.y95{bottom:83.250000px;}
.ybe{bottom:84.375000px;}
.y113{bottom:84.404460px;}
.yd1{bottom:84.404850px;}
.yaf{bottom:84.405000px;}
.y18b{bottom:85.530000px;}
.y19a{bottom:86.654850px;}
.y19f{bottom:88.904850px;}
.y123{bottom:90.030000px;}
.yf8{bottom:91.155000px;}
.y11f{bottom:93.375000px;}
.y1a5{bottom:97.904850px;}
.y1d{bottom:97.905000px;}
.y7e{bottom:99.030000px;}
.y15b{bottom:100.155000px;}
.y5f{bottom:102.404850px;}
.y85{bottom:102.405000px;}
.y100{bottom:103.530000px;}
.y135{bottom:104.625000px;}
.y151{bottom:109.304850px;}
.y94{bottom:111.375000px;}
.y130{bottom:111.404850px;}
.yde{bottom:112.529850px;}
.y112{bottom:113.654460px;}
.yae{bottom:113.655000px;}
.y199{bottom:114.779850px;}
.y43{bottom:115.904850px;}
.yf7{bottom:117.030000px;}
.y11e{bottom:118.125000px;}
.y19e{bottom:118.154850px;}
.y1c{bottom:122.655000px;}
.ye7{bottom:122.655450px;}
.y175{bottom:127.155000px;}
.y13c{bottom:129.405000px;}
.y15{bottom:130.529850px;}
.y134{bottom:131.625000px;}
.y84{bottom:131.655000px;}
.y18a{bottom:133.905000px;}
.y162{bottom:137.280000px;}
.y93{bottom:138.375000px;}
.y38{bottom:139.530000px;}
.y17c{bottom:140.804850px;}
.y11d{bottom:142.875000px;}
.yf6{bottom:142.905000px;}
.y198{bottom:144.029850px;}
.y42{bottom:145.154850px;}
.y7d{bottom:146.280000px;}
.ya0{bottom:147.404850px;}
.ybd{bottom:148.500000px;}
.y69{bottom:153.030000px;}
.y12f{bottom:154.155000px;}
.y1b{bottom:156.405000px;}
.y122{bottom:157.530000px;}
.y15a{bottom:158.655000px;}
.y169{bottom:159.780000px;}
.y189{bottom:160.905000px;}
.ye6{bottom:160.905450px;}
.y5c{bottom:161.055000px;}
.yc6{bottom:165.405000px;}
.y16d{bottom:166.530000px;}
.y173{bottom:166.680000px;}
.y11c{bottom:167.625000px;}
.y37{bottom:168.780000px;}
.y14d{bottom:168.930000px;}
.y7c{bottom:169.905000px;}
.y181{bottom:170.055000px;}
.y83{bottom:171.030000px;}
.yff{bottom:172.155000px;}
.y190{bottom:173.280000px;}
.y197{bottom:174.405000px;}
.y106{bottom:177.780000px;}
.yec{bottom:178.905000px;}
.yba{bottom:181.125000px;}
.yad{bottom:182.280000px;}
.y150{bottom:183.106500px;}
.ybc{bottom:184.500000px;}
.y13b{bottom:184.530000px;}
.y152{bottom:185.655000px;}
.yf0{bottom:186.780000px;}
.y4e{bottom:187.905000px;}
.y168{bottom:189.030000px;}
.y116{bottom:192.555000px;}
.y11b{bottom:193.500000px;}
.y7b{bottom:193.530000px;}
.y72{bottom:194.655000px;}
.y176{bottom:194.805000px;}
.y139{bottom:195.780000px;}
.y111{bottom:201.404460px;}
.y1a4{bottom:202.530000px;}
.y36{bottom:207.030000px;}
.y188{bottom:209.279850px;}
.yd6{bottom:211.530000px;}
.yfe{bottom:212.655000px;}
.y24{bottom:213.780000px;}
.ya7{bottom:216.030000px;}
.y4d{bottom:217.155000px;}
.y11a{bottom:218.250000px;}
.y12c{bottom:218.280000px;}
.ybb{bottom:219.375000px;}
.y159{bottom:219.405000px;}
.y92{bottom:220.500000px;}
.yac{bottom:220.530000px;}
.y13a{bottom:222.780000px;}
.y71{bottom:223.905000px;}
.yb{bottom:225.030000px;}
.yd0{bottom:227.280000px;}
.y1a{bottom:230.655000px;}
.y40{bottom:231.780000px;}
.y138{bottom:232.905000px;}
.y16c{bottom:236.280000px;}
.y2b{bottom:237.405000px;}
.y18f{bottom:238.530000px;}
.y12e{bottom:239.655000px;}
.y110{bottom:241.904460px;}
.y9f{bottom:241.905000px;}
.y119{bottom:243.000000px;}
.y23{bottom:243.030000px;}
.ya6{bottom:245.280000px;}
.ye3{bottom:246.343500px;}
.y68{bottom:246.405000px;}
.ye5{bottom:247.047000px;}
.y187{bottom:247.529850px;}
.yeb{bottom:248.655000px;}
.y14b{bottom:250.905329px;}
.yfd{bottom:253.155000px;}
.y180{bottom:254.280000px;}
.y14{bottom:256.530000px;}
.y91{bottom:258.750000px;}
.y167{bottom:258.780000px;}
.y41{bottom:259.905000px;}
.ydd{bottom:261.029462px;}
.y3f{bottom:261.030000px;}
.y158{bottom:262.155000px;}
.y19{bottom:264.405000px;}
.y2a{bottom:266.655000px;}
.y118{bottom:267.750000px;}
.y5e{bottom:268.905000px;}
.y14c{bottom:269.731500px;}
.y12b{bottom:270.030000px;}
.y14f{bottom:271.155000px;}
.y22{bottom:272.280000px;}
.y9e{bottom:274.530000px;}
.y194{bottom:275.655000px;}
.yea{bottom:277.905000px;}
.y10e{bottom:278.194500px;}
.y10f{bottom:280.154460px;}
.y186{bottom:283.529850px;}
.ya5{bottom:283.530000px;}
.y49{bottom:285.780000px;}
.y67{bottom:286.905000px;}
.yab{bottom:288.030000px;}
.y14a{bottom:288.030329px;}
.ya{bottom:289.155000px;}
.ydc{bottom:290.279462px;}
.y32{bottom:291.405000px;}
.y117{bottom:292.500000px;}
.ycf{bottom:292.530000px;}
.y70{bottom:293.655000px;}
.y90{bottom:295.875000px;}
.y10d{bottom:295.904460px;}
.y4{bottom:297.030000px;}
.y4c{bottom:298.155000px;}
.y3e{bottom:299.280000px;}
.yb9{bottom:300.375000px;}
.y12a{bottom:300.405000px;}
.y17f{bottom:301.530000px;}
.y9d{bottom:304.905000px;}
.y53{bottom:307.155000px;}
.y55{bottom:309.405000px;}
.y21{bottom:310.530000px;}
.y64{bottom:311.655000px;}
.yf5{bottom:313.905000px;}
.y35{bottom:316.155000px;}
.y166{bottom:317.280000px;}
.y9{bottom:318.405000px;}
.y174{bottom:319.530000px;}
.yce{bottom:320.655000px;}
.y12d{bottom:321.780000px;}
.y6f{bottom:322.905000px;}
.y149{bottom:324.030329px;}
.y48{bottom:326.280000px;}
.y13{bottom:328.530000px;}
.ydb{bottom:330.779462px;}
.y31{bottom:331.905000px;}
.y6d{bottom:333.030000px;}
.y161{bottom:334.155000px;}
.yc2{bottom:334.305000px;}
.y10c{bottom:336.404460px;}
.yb5{bottom:337.500000px;}
.yd5{bottom:337.530000px;}
.y133{bottom:337.680000px;}
.y4b{bottom:338.655000px;}
.y29{bottom:339.779460px;}
.y20{bottom:339.780000px;}
.y8f{bottom:340.875000px;}
.y193{bottom:342.030000px;}
.y18{bottom:345.405000px;}
.y3{bottom:346.530000px;}
.y8{bottom:347.655000px;}
.y52{bottom:348.780000px;}
.y54{bottom:349.905000px;}
.yc5{bottom:351.030000px;}
.y63{bottom:352.305000px;}
.y9c{bottom:353.280000px;}
.yb7{bottom:354.375000px;}
.y7a{bottom:354.405000px;}
.y147{bottom:356.356500px;}
.y165{bottom:357.780000px;}
.y148{bottom:357.780329px;}
.y33{bottom:357.930000px;}
.y10b{bottom:358.905000px;}
.y12{bottom:360.030000px;}
.y6e{bottom:361.155000px;}
.y6c{bottom:362.280000px;}
.y195{bottom:363.405000px;}
.y192{bottom:364.530000px;}
.y183{bottom:364.644000px;}
.y185{bottom:365.523000px;}
.y18e{bottom:365.655000px;}
.y47{bottom:366.780000px;}
.y4a{bottom:367.905000px;}
.y28{bottom:369.029460px;}
.y66{bottom:369.030000px;}
.ya4{bottom:371.280000px;}
.yd9{bottom:371.430000px;}
.y146{bottom:372.405329px;}
.y30{bottom:373.530000px;}
.y171{bottom:374.655000px;}
.ycd{bottom:375.780000px;}
.yfc{bottom:378.030000px;}
.y105{bottom:379.155000px;}
.yc4{bottom:380.280000px;}
.y157{bottom:382.530000px;}
.yca{bottom:383.655000px;}
.y1a3{bottom:384.780000px;}
.y7{bottom:385.905000px;}
.y51{bottom:388.155000px;}
.y196{bottom:389.280000px;}
.y59{bottom:389.430000px;}
.yf4{bottom:391.530000px;}
.y129{bottom:394.905000px;}
.y8e{bottom:396.000000px;}
.ycc{bottom:396.030000px;}
.y27{bottom:398.279460px;}
.y65{bottom:398.280000px;}
.y82{bottom:399.405000px;}
.y109{bottom:399.555000px;}
.y79{bottom:400.530000px;}
.y2f{bottom:402.780000px;}
.y3d{bottom:403.905000px;}
.ye4{bottom:405.030000px;}
.y46{bottom:406.155000px;}
.yef{bottom:407.280000px;}
.y104{bottom:408.405000px;}
.y160{bottom:409.530000px;}
.y145{bottom:409.530329px;}
.y2{bottom:411.780000px;}
.yb8{bottom:412.875000px;}
.y18d{bottom:414.030000px;}
.y103{bottom:418.530000px;}
.y9b{bottom:419.655000px;}
.y16b{bottom:420.780000px;}
.y8c{bottom:423.000000px;}
.ycb{bottom:423.030000px;}
.y78{bottom:424.155000px;}
.y172{bottom:424.305000px;}
.y17b{bottom:428.655000px;}
.y1a1{bottom:430.905000px;}
.y11{bottom:432.030000px;}
.y6{bottom:433.155000px;}
.y26{bottom:434.569500px;}
.y1f{bottom:436.530000px;}
.ya3{bottom:438.780000px;}
.y170{bottom:441.030000px;}
.y144{bottom:441.856500px;}
.y2e{bottom:442.155000px;}
.yf3{bottom:443.280000px;}
.y156{bottom:445.530000px;}
.y102{bottom:446.655000px;}
.yc9{bottom:450.030000px;}
.y8b{bottom:451.125000px;}
.y9a{bottom:451.155000px;}
.yd4{bottom:452.280000px;}
.y19d{bottom:453.405000px;}
.y17{bottom:454.530000px;}
.yda{bottom:454.819500px;}
.ye2{bottom:456.780000px;}
.y17a{bottom:457.905000px;}
.y50{bottom:459.030000px;}
.y1a0{bottom:460.155000px;}
.y8d{bottom:461.250000px;}
.y6b{bottom:461.280000px;}
.y10{bottom:463.530000px;}
.y164{bottom:465.780000px;}
.yfb{bottom:465.930000px;}
.yaa{bottom:466.905000px;}
.y16f{bottom:468.030000px;}
.y5b{bottom:469.155000px;}
.y3c{bottom:471.405000px;}
.y143{bottom:471.405329px;}
.y45{bottom:477.030000px;}
.yee{bottom:478.155000px;}
.yf2{bottom:480.405000px;}
.y108{bottom:482.944500px;}
.y99{bottom:483.780000px;}
.y10a{bottom:484.905000px;}
.ye1{bottom:486.030000px;}
.y2d{bottom:488.280000px;}
.y8a{bottom:489.375000px;}
.yc1{bottom:489.405000px;}
.y77{bottom:492.780000px;}
.y101{bottom:493.905000px;}
.yb4{bottom:495.000000px;}
.y163{bottom:496.155000px;}
.y128{bottom:497.280000px;}
.yd3{bottom:499.530000px;}
.y5{bottom:500.655000px;}
.y155{bottom:504.030000px;}
.y16a{bottom:505.155000px;}
.y142{bottom:507.405329px;}
.y62{bottom:508.530000px;}
.yb3{bottom:509.625000px;}
.ya2{bottom:509.655000px;}
.yd8{bottom:513.030000px;}
.y25{bottom:514.155000px;}
.y1e{bottom:515.280000px;}
.y3b{bottom:518.655000px;}
.y127{bottom:519.780000px;}
.y89{bottom:526.500000px;}
.y184{bottom:526.530000px;}
.y137{bottom:529.905000px;}
.y6a{bottom:531.030000px;}
.y98{bottom:532.155000px;}
.y115{bottom:532.305000px;}
.yf{bottom:535.530000px;}
.y44{bottom:537.780000px;}
.yed{bottom:538.905000px;}
.y76{bottom:540.030000px;}
.y140{bottom:540.856500px;}
.y107{bottom:541.155000px;}
.y81{bottom:542.280000px;}
.y141{bottom:542.280329px;}
.y179{bottom:543.405000px;}
.ye9{bottom:546.780000px;}
.y15f{bottom:549.030000px;}
.ye0{bottom:551.280000px;}
.yfa{bottom:552.405000px;}
.yf1{bottom:556.905000px;}
.y58{bottom:558.030000px;}
.y4f{bottom:559.155000px;}
.yc0{bottom:560.280000px;}
.y126{bottom:561.405000px;}
.y19c{bottom:562.530000px;}
.y3a{bottom:565.905000px;}
.ye{bottom:567.030000px;}
.yd2{bottom:569.280000px;}
.y88{bottom:570.375000px;}
.y75{bottom:570.405000px;}
.ya9{bottom:571.530000px;}
.y80{bottom:572.655000px;}
.y182{bottom:574.905000px;}
.yc8{bottom:577.155000px;}
.ya1{bottom:579.405000px;}
.y97{bottom:582.780000px;}
.y15e{bottom:583.905000px;}
.y57{bottom:586.155000px;}
.y178{bottom:590.655000px;}
.y19b{bottom:591.780000px;}
.y154{bottom:592.905000px;}
.yb2{bottom:594.000000px;}
.y13f{bottom:594.030000px;}
.y132{bottom:597.405000px;}
.y61{bottom:598.530000px;}
.y2c{bottom:605.280000px;}
.y18c{bottom:606.405000px;}
.y74{bottom:608.655000px;}
.yd7{bottom:613.155000px;}
.y87{bottom:615.375000px;}
.yb1{bottom:619.875000px;}
.yf9{bottom:622.155000px;}
.yd{bottom:624.405000px;}
.y1a2{bottom:627.780000px;}
.y39{bottom:635.655000px;}
.y96{bottom:639.030000px;}
.ya8{bottom:641.280000px;}
.y7f{bottom:642.405000px;}
.yc7{bottom:643.530000px;}
.y15d{bottom:645.780000px;}
.y56{bottom:652.530000px;}
.ydf{bottom:653.655000px;}
.y73{bottom:654.780000px;}
.y153{bottom:655.905000px;}
.y13e{bottom:657.030000px;}
.y16e{bottom:660.405000px;}
.y125{bottom:661.530000px;}
.y191{bottom:662.655000px;}
.y131{bottom:663.780000px;}
.y114{bottom:666.030000px;}
.y86{bottom:672.750000px;}
.yc{bottom:672.780000px;}
.yb0{bottom:675.000000px;}
.h33{height:6.262875px;}
.h21{height:6.609150px;}
.h18{height:6.955425px;}
.h17{height:8.695350px;}
.h52{height:36.534150px;}
.h25{height:42.254604px;}
.h9{height:43.942500px;}
.h41{height:44.043311px;}
.ha{height:44.543276px;}
.h2b{height:44.829360px;}
.h39{height:47.544543px;}
.h3e{height:47.618284px;}
.h3d{height:48.375000px;}
.h54{height:48.717070px;}
.h56{height:49.043276px;}
.hf{height:49.927786px;}
.h30{height:50.087549px;}
.h2d{height:50.119739px;}
.h1e{height:50.173286px;}
.h48{height:50.441638px;}
.h2f{height:50.625000px;}
.h49{height:50.625150px;}
.h6{height:52.802029px;}
.h4f{height:52.875000px;}
.h1b{height:52.890864px;}
.h1d{height:53.230562px;}
.h2a{height:53.438247px;}
.h38{height:53.564063px;}
.h1c{height:54.000000px;}
.h44{height:54.620815px;}
.h4{height:54.911250px;}
.h15{height:55.626240px;}
.h3{height:55.661990px;}
.h28{height:55.812261px;}
.h23{height:56.019485px;}
.h14{height:56.250000px;}
.h4d{height:56.525625px;}
.h22{height:57.375000px;}
.he{height:58.353750px;}
.h12{height:58.736448px;}
.h4c{height:59.487188px;}
.h32{height:61.796250px;}
.h4a{height:62.628750px;}
.h42{height:62.641121px;}
.h37{height:64.147500px;}
.h29{height:65.238750px;}
.h43{height:65.537820px;}
.h34{height:66.091500px;}
.h1f{height:66.130686px;}
.h55{height:66.814915px;}
.h13{height:68.647500px;}
.h19{height:69.554250px;}
.h7{height:69.586040px;}
.h36{height:72.803892px;}
.h31{height:74.148750px;}
.h47{height:77.625000px;}
.h51{height:78.266250px;}
.h4e{height:81.000000px;}
.h20{height:82.125000px;}
.h11{height:82.383750px;}
.h50{height:85.500150px;}
.h16{height:86.953500px;}
.h35{height:87.371829px;}
.h40{height:104.413271px;}
.h24{height:109.856250px;}
.h8{height:111.358191px;}
.hc{height:118.337322px;}
.h2c{height:123.592500px;}
.h46{height:125.282241px;}
.h27{height:130.477500px;}
.h1a{height:132.261372px;}
.h5{height:137.328750px;}
.h3c{height:137.541750px;}
.h2e{height:138.296250px;}
.h10{height:139.206292px;}
.hb{height:153.711936px;}
.h45{height:165.375000px;}
.h4b{height:172.904546px;}
.h2{height:189.540000px;}
.h3a{height:192.131367px;}
.hd{height:236.674644px;}
.h3b{height:240.084000px;}
.h57{height:278.446794px;}
.h53{height:288.427500px;}
.h3f{height:322.875000px;}
.h1{height:760.500000px;}
.h0{height:760.680000px;}
.h26{height:765.000000px;}
.wa{width:389.250000px;}
.w8{width:510.750000px;}
.w9{width:519.750000px;}
.w6{width:531.000000px;}
.w3{width:552.375000px;}
.w5{width:554.625000px;}
.w1{width:592.875000px;}
.w4{width:610.875000px;}
.w2{width:1156.500000px;}
.w7{width:1203.750000px;}
.w0{width:1350.000000px;}
.x0{left:0.000000px;}
.x4a{left:14.906250px;}
.x21{left:16.207500px;}
.x16{left:17.526000px;}
.x5{left:72.246150px;}
.x4{left:73.248000px;}
.xf{left:86.044950px;}
.x77{left:89.015700px;}
.xa{left:90.140700px;}
.x2c{left:91.546500px;}
.x17{left:92.671950px;}
.x1d{left:93.796950px;}
.x23{left:94.904250px;}
.x1c{left:96.046950px;}
.xc{left:100.546950px;}
.x24{left:105.169995px;}
.x18{left:108.291300px;}
.x78{left:112.447200px;}
.x4b{left:117.878850px;}
.x25{left:120.832050px;}
.x70{left:127.880850px;}
.x6a{left:130.218750px;}
.x10{left:132.750000px;}
.x1b{left:155.532000px;}
.x6e{left:160.593750px;}
.x55{left:165.429000px;}
.x65{left:174.709350px;}
.x64{left:191.303100px;}
.x69{left:192.955500px;}
.x5d{left:198.280500px;}
.x5e{left:209.529915px;}
.x56{left:225.405600px;}
.x37{left:240.837300px;}
.x59{left:262.248150px;}
.x4e{left:263.391000px;}
.x49{left:289.354500px;}
.x71{left:295.136850px;}
.x45{left:297.070500px;}
.x46{left:319.869000px;}
.x44{left:333.246000px;}
.x54{left:358.788000px;}
.x36{left:360.597000px;}
.x2a{left:365.467500px;}
.x6f{left:369.035670px;}
.x42{left:379.933500px;}
.x6d{left:393.732750px;}
.x5c{left:407.619000px;}
.x1{left:419.467500px;}
.x43{left:424.722000px;}
.x3a{left:428.010000px;}
.x67{left:433.704750px;}
.x5b{left:442.423500px;}
.x2{left:454.782000px;}
.x48{left:456.399000px;}
.x58{left:463.500000px;}
.x3{left:471.463650px;}
.x6{left:479.514000px;}
.x7{left:480.516000px;}
.x11{left:494.842500px;}
.x5a{left:496.230150px;}
.x5f{left:497.496000px;}
.x52{left:498.709500px;}
.x3e{left:499.939500px;}
.xd{left:507.814500px;}
.x4c{left:524.760000px;}
.x39{left:528.170100px;}
.x72{left:533.935500px;}
.x12{left:541.547550px;}
.x26{left:579.498000px;}
.x66{left:596.408250px;}
.x31{left:600.012000px;}
.x2f{left:607.113000px;}
.x28{left:636.012000px;}
.x29{left:657.667500px;}
.x30{left:664.136400px;}
.x38{left:667.195500px;}
.x4f{left:669.129000px;}
.x22{left:682.734000px;}
.x15{left:684.000000px;}
.x79{left:686.442000px;}
.x2e{left:693.298500px;}
.xb{left:699.451500px;}
.x73{left:701.191500px;}
.x61{left:702.193500px;}
.x19{left:703.564500px;}
.x1e{left:704.689500px;}
.x3c{left:707.396550px;}
.x1f{left:717.187545px;}
.x20{left:727.488000px;}
.x1a{left:732.040500px;}
.x35{left:745.875000px;}
.x57{left:757.406850px;}
.x33{left:759.905100px;}
.x47{left:766.564650px;}
.x68{left:775.828350px;}
.x34{left:777.289800px;}
.x62{left:824.294850px;}
.x6b{left:835.242750px;}
.x63{left:842.593650px;}
.x6c{left:848.057205px;}
.x60{left:885.657000px;}
.x8{left:886.782000px;}
.x9{left:887.782500px;}
.x3b{left:894.058050px;}
.x51{left:900.703500px;}
.x74{left:902.232000px;}
.x13{left:903.639000px;}
.x53{left:905.677500px;}
.x3f{left:907.207500px;}
.x32{left:913.253400px;}
.xe{left:915.082500px;}
.x4d{left:931.641000px;}
.x27{left:935.859000px;}
.x75{left:939.972000px;}
.x40{left:949.342500px;}
.x14{left:950.344050px;}
.x3d{left:964.390050px;}
.x2d{left:968.062500px;}
.x41{left:969.855000px;}
.x2b{left:974.532000px;}
.x7a{left:993.040500px;}
.x50{left:1074.885000px;}
.x76{left:1107.228000px;}
@media print{
.v4{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.968752pt;}
.v8{vertical-align:4.000000pt;}
.v7{vertical-align:5.062501pt;}
.v1{vertical-align:6.968747pt;}
.v5{vertical-align:49.029333pt;}
.v6{vertical-align:55.998080pt;}
.v2{vertical-align:68.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:110.602880pt;}
.ls2{letter-spacing:152.834027pt;}
.ls4{letter-spacing:268.115627pt;}
.ls3{letter-spacing:297.853013pt;}
.ws8{word-spacing:-56.945000pt;}
.ws6{word-spacing:-55.935360pt;}
.ws4{word-spacing:-44.750280pt;}
.ws1c{word-spacing:-40.527240pt;}
.ws1d{word-spacing:-37.355920pt;}
.ws1b{word-spacing:-36.640040pt;}
.ws2{word-spacing:-36.119400pt;}
.wsa{word-spacing:-34.321200pt;}
.ws11{word-spacing:-32.523000pt;}
.wsd{word-spacing:-29.164800pt;}
.wsc{word-spacing:-28.904400pt;}
.ws7{word-spacing:-20.258640pt;}
.ws16{word-spacing:-19.252680pt;}
.ws18{word-spacing:-17.438880pt;}
.ws0{word-spacing:-17.246200pt;}
.ws9{word-spacing:-16.920800pt;}
.ws17{word-spacing:-16.525200pt;}
.wsf{word-spacing:-16.387600pt;}
.ws3{word-spacing:-16.139840pt;}
.ws10{word-spacing:-16.078400pt;}
.ws12{word-spacing:-15.529000pt;}
.wsb{word-spacing:-15.336320pt;}
.ws13{word-spacing:-14.532800pt;}
.ws14{word-spacing:-14.383200pt;}
.ws5{word-spacing:-13.719360pt;}
.ws19{word-spacing:-13.540800pt;}
.ws1a{word-spacing:-12.967920pt;}
.wse{word-spacing:-12.915840pt;}
.ws15{word-spacing:-12.102400pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-8.325597pt;}
._4{margin-left:-7.175878pt;}
._b{margin-left:-5.997948pt;}
._3{margin-left:-4.487205pt;}
._0{margin-left:-3.016932pt;}
._1{margin-left:-1.250407pt;}
._5{width:0.905154pt;}
._2{width:1.816128pt;}
._7{width:3.283307pt;}
._c{width:276.635440pt;}
._9{width:297.930714pt;}
._f{width:307.883440pt;}
._10{width:309.810400pt;}
._a{width:382.744556pt;}
._e{width:400.637920pt;}
._d{width:431.156800pt;}
._8{width:878.443822pt;}
.fs17{font-size:5.860000pt;}
.fs11{font-size:6.184000pt;}
.fsd{font-size:6.508000pt;}
.fsc{font-size:8.136000pt;}
.fs1d{font-size:34.184000pt;}
.fs19{font-size:48.800000pt;}
.fs5{font-size:52.080000pt;}
.fsa{font-size:55.320000pt;}
.fs1f{font-size:56.960000pt;}
.fs14{font-size:58.600000pt;}
.fs1a{font-size:61.040000pt;}
.fsf{font-size:61.840000pt;}
.fs12{font-size:62.480000pt;}
.fs1{font-size:65.080000pt;}
.fs9{font-size:69.160000pt;}
.fs16{font-size:73.240000pt;}
.fs10{font-size:77.320000pt;}
.fs20{font-size:78.120000pt;}
.fs3{font-size:81.360000pt;}
.fs15{font-size:87.880000pt;}
.fs1c{font-size:92.760000pt;}
.fsb{font-size:97.640000pt;}
.fs18{font-size:122.080000pt;}
.fs4{font-size:130.200000pt;}
.fs7{font-size:138.360000pt;}
.fs13{font-size:146.480000pt;}
.fse{font-size:154.640000pt;}
.fs2{font-size:162.760000pt;}
.fs6{font-size:179.720000pt;}
.fs1b{font-size:202.160000pt;}
.fs0{font-size:224.640000pt;}
.fs8{font-size:276.720000pt;}
.fs21{font-size:325.560000pt;}
.fs1e{font-size:341.840000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yb6{bottom:17.000000pt;}
.y5a{bottom:18.000000pt;}
.y34{bottom:19.000000pt;}
.y17e{bottom:19.000133pt;}
.yc3{bottom:20.000000pt;}
.y121{bottom:39.000000pt;}
.y14e{bottom:41.000000pt;}
.y5d{bottom:43.000000pt;}
.y17d{bottom:45.000133pt;}
.ybf{bottom:52.000000pt;}
.y13d{bottom:56.026667pt;}
.y124{bottom:58.026533pt;}
.y16{bottom:60.026533pt;}
.y177{bottom:60.026667pt;}
.y120{bottom:61.000000pt;}
.ye8{bottom:64.026667pt;}
.y15c{bottom:65.026533pt;}
.y60{bottom:66.026533pt;}
.y136{bottom:68.000000pt;}
.y95{bottom:74.000000pt;}
.ybe{bottom:75.000000pt;}
.y113{bottom:75.026187pt;}
.yd1{bottom:75.026533pt;}
.yaf{bottom:75.026667pt;}
.y18b{bottom:76.026667pt;}
.y19a{bottom:77.026533pt;}
.y19f{bottom:79.026533pt;}
.y123{bottom:80.026667pt;}
.yf8{bottom:81.026667pt;}
.y11f{bottom:83.000000pt;}
.y1a5{bottom:87.026533pt;}
.y1d{bottom:87.026667pt;}
.y7e{bottom:88.026667pt;}
.y15b{bottom:89.026667pt;}
.y5f{bottom:91.026533pt;}
.y85{bottom:91.026667pt;}
.y100{bottom:92.026667pt;}
.y135{bottom:93.000000pt;}
.y151{bottom:97.159867pt;}
.y94{bottom:99.000000pt;}
.y130{bottom:99.026533pt;}
.yde{bottom:100.026533pt;}
.y112{bottom:101.026187pt;}
.yae{bottom:101.026667pt;}
.y199{bottom:102.026533pt;}
.y43{bottom:103.026533pt;}
.yf7{bottom:104.026667pt;}
.y11e{bottom:105.000000pt;}
.y19e{bottom:105.026533pt;}
.y1c{bottom:109.026667pt;}
.ye7{bottom:109.027067pt;}
.y175{bottom:113.026667pt;}
.y13c{bottom:115.026667pt;}
.y15{bottom:116.026533pt;}
.y134{bottom:117.000000pt;}
.y84{bottom:117.026667pt;}
.y18a{bottom:119.026667pt;}
.y162{bottom:122.026667pt;}
.y93{bottom:123.000000pt;}
.y38{bottom:124.026667pt;}
.y17c{bottom:125.159867pt;}
.y11d{bottom:127.000000pt;}
.yf6{bottom:127.026667pt;}
.y198{bottom:128.026533pt;}
.y42{bottom:129.026533pt;}
.y7d{bottom:130.026667pt;}
.ya0{bottom:131.026533pt;}
.ybd{bottom:132.000000pt;}
.y69{bottom:136.026667pt;}
.y12f{bottom:137.026667pt;}
.y1b{bottom:139.026667pt;}
.y122{bottom:140.026667pt;}
.y15a{bottom:141.026667pt;}
.y169{bottom:142.026667pt;}
.y189{bottom:143.026667pt;}
.ye6{bottom:143.027067pt;}
.y5c{bottom:143.160000pt;}
.yc6{bottom:147.026667pt;}
.y16d{bottom:148.026667pt;}
.y173{bottom:148.160000pt;}
.y11c{bottom:149.000000pt;}
.y37{bottom:150.026667pt;}
.y14d{bottom:150.160000pt;}
.y7c{bottom:151.026667pt;}
.y181{bottom:151.160000pt;}
.y83{bottom:152.026667pt;}
.yff{bottom:153.026667pt;}
.y190{bottom:154.026667pt;}
.y197{bottom:155.026667pt;}
.y106{bottom:158.026667pt;}
.yec{bottom:159.026667pt;}
.yba{bottom:161.000000pt;}
.yad{bottom:162.026667pt;}
.y150{bottom:162.761333pt;}
.ybc{bottom:164.000000pt;}
.y13b{bottom:164.026667pt;}
.y152{bottom:165.026667pt;}
.yf0{bottom:166.026667pt;}
.y4e{bottom:167.026667pt;}
.y168{bottom:168.026667pt;}
.y116{bottom:171.160000pt;}
.y11b{bottom:172.000000pt;}
.y7b{bottom:172.026667pt;}
.y72{bottom:173.026667pt;}
.y176{bottom:173.160000pt;}
.y139{bottom:174.026667pt;}
.y111{bottom:179.026187pt;}
.y1a4{bottom:180.026667pt;}
.y36{bottom:184.026667pt;}
.y188{bottom:186.026533pt;}
.yd6{bottom:188.026667pt;}
.yfe{bottom:189.026667pt;}
.y24{bottom:190.026667pt;}
.ya7{bottom:192.026667pt;}
.y4d{bottom:193.026667pt;}
.y11a{bottom:194.000000pt;}
.y12c{bottom:194.026667pt;}
.ybb{bottom:195.000000pt;}
.y159{bottom:195.026667pt;}
.y92{bottom:196.000000pt;}
.yac{bottom:196.026667pt;}
.y13a{bottom:198.026667pt;}
.y71{bottom:199.026667pt;}
.yb{bottom:200.026667pt;}
.yd0{bottom:202.026667pt;}
.y1a{bottom:205.026667pt;}
.y40{bottom:206.026667pt;}
.y138{bottom:207.026667pt;}
.y16c{bottom:210.026667pt;}
.y2b{bottom:211.026667pt;}
.y18f{bottom:212.026667pt;}
.y12e{bottom:213.026667pt;}
.y110{bottom:215.026187pt;}
.y9f{bottom:215.026667pt;}
.y119{bottom:216.000000pt;}
.y23{bottom:216.026667pt;}
.ya6{bottom:218.026667pt;}
.ye3{bottom:218.972000pt;}
.y68{bottom:219.026667pt;}
.ye5{bottom:219.597333pt;}
.y187{bottom:220.026533pt;}
.yeb{bottom:221.026667pt;}
.y14b{bottom:223.026959pt;}
.yfd{bottom:225.026667pt;}
.y180{bottom:226.026667pt;}
.y14{bottom:228.026667pt;}
.y91{bottom:230.000000pt;}
.y167{bottom:230.026667pt;}
.y41{bottom:231.026667pt;}
.ydd{bottom:232.026188pt;}
.y3f{bottom:232.026667pt;}
.y158{bottom:233.026667pt;}
.y19{bottom:235.026667pt;}
.y2a{bottom:237.026667pt;}
.y118{bottom:238.000000pt;}
.y5e{bottom:239.026667pt;}
.y14c{bottom:239.761333pt;}
.y12b{bottom:240.026667pt;}
.y14f{bottom:241.026667pt;}
.y22{bottom:242.026667pt;}
.y9e{bottom:244.026667pt;}
.y194{bottom:245.026667pt;}
.yea{bottom:247.026667pt;}
.y10e{bottom:247.284000pt;}
.y10f{bottom:249.026187pt;}
.y186{bottom:252.026533pt;}
.ya5{bottom:252.026667pt;}
.y49{bottom:254.026667pt;}
.y67{bottom:255.026667pt;}
.yab{bottom:256.026667pt;}
.y14a{bottom:256.026959pt;}
.ya{bottom:257.026667pt;}
.ydc{bottom:258.026188pt;}
.y32{bottom:259.026667pt;}
.y117{bottom:260.000000pt;}
.ycf{bottom:260.026667pt;}
.y70{bottom:261.026667pt;}
.y90{bottom:263.000000pt;}
.y10d{bottom:263.026187pt;}
.y4{bottom:264.026667pt;}
.y4c{bottom:265.026667pt;}
.y3e{bottom:266.026667pt;}
.yb9{bottom:267.000000pt;}
.y12a{bottom:267.026667pt;}
.y17f{bottom:268.026667pt;}
.y9d{bottom:271.026667pt;}
.y53{bottom:273.026667pt;}
.y55{bottom:275.026667pt;}
.y21{bottom:276.026667pt;}
.y64{bottom:277.026667pt;}
.yf5{bottom:279.026667pt;}
.y35{bottom:281.026667pt;}
.y166{bottom:282.026667pt;}
.y9{bottom:283.026667pt;}
.y174{bottom:284.026667pt;}
.yce{bottom:285.026667pt;}
.y12d{bottom:286.026667pt;}
.y6f{bottom:287.026667pt;}
.y149{bottom:288.026959pt;}
.y48{bottom:290.026667pt;}
.y13{bottom:292.026667pt;}
.ydb{bottom:294.026188pt;}
.y31{bottom:295.026667pt;}
.y6d{bottom:296.026667pt;}
.y161{bottom:297.026667pt;}
.yc2{bottom:297.160000pt;}
.y10c{bottom:299.026187pt;}
.yb5{bottom:300.000000pt;}
.yd5{bottom:300.026667pt;}
.y133{bottom:300.160000pt;}
.y4b{bottom:301.026667pt;}
.y29{bottom:302.026187pt;}
.y20{bottom:302.026667pt;}
.y8f{bottom:303.000000pt;}
.y193{bottom:304.026667pt;}
.y18{bottom:307.026667pt;}
.y3{bottom:308.026667pt;}
.y8{bottom:309.026667pt;}
.y52{bottom:310.026667pt;}
.y54{bottom:311.026667pt;}
.yc5{bottom:312.026667pt;}
.y63{bottom:313.160000pt;}
.y9c{bottom:314.026667pt;}
.yb7{bottom:315.000000pt;}
.y7a{bottom:315.026667pt;}
.y147{bottom:316.761333pt;}
.y165{bottom:318.026667pt;}
.y148{bottom:318.026959pt;}
.y33{bottom:318.160000pt;}
.y10b{bottom:319.026667pt;}
.y12{bottom:320.026667pt;}
.y6e{bottom:321.026667pt;}
.y6c{bottom:322.026667pt;}
.y195{bottom:323.026667pt;}
.y192{bottom:324.026667pt;}
.y183{bottom:324.128000pt;}
.y185{bottom:324.909333pt;}
.y18e{bottom:325.026667pt;}
.y47{bottom:326.026667pt;}
.y4a{bottom:327.026667pt;}
.y28{bottom:328.026187pt;}
.y66{bottom:328.026667pt;}
.ya4{bottom:330.026667pt;}
.yd9{bottom:330.160000pt;}
.y146{bottom:331.026959pt;}
.y30{bottom:332.026667pt;}
.y171{bottom:333.026667pt;}
.ycd{bottom:334.026667pt;}
.yfc{bottom:336.026667pt;}
.y105{bottom:337.026667pt;}
.yc4{bottom:338.026667pt;}
.y157{bottom:340.026667pt;}
.yca{bottom:341.026667pt;}
.y1a3{bottom:342.026667pt;}
.y7{bottom:343.026667pt;}
.y51{bottom:345.026667pt;}
.y196{bottom:346.026667pt;}
.y59{bottom:346.160000pt;}
.yf4{bottom:348.026667pt;}
.y129{bottom:351.026667pt;}
.y8e{bottom:352.000000pt;}
.ycc{bottom:352.026667pt;}
.y27{bottom:354.026187pt;}
.y65{bottom:354.026667pt;}
.y82{bottom:355.026667pt;}
.y109{bottom:355.160000pt;}
.y79{bottom:356.026667pt;}
.y2f{bottom:358.026667pt;}
.y3d{bottom:359.026667pt;}
.ye4{bottom:360.026667pt;}
.y46{bottom:361.026667pt;}
.yef{bottom:362.026667pt;}
.y104{bottom:363.026667pt;}
.y160{bottom:364.026667pt;}
.y145{bottom:364.026959pt;}
.y2{bottom:366.026667pt;}
.yb8{bottom:367.000000pt;}
.y18d{bottom:368.026667pt;}
.y103{bottom:372.026667pt;}
.y9b{bottom:373.026667pt;}
.y16b{bottom:374.026667pt;}
.y8c{bottom:376.000000pt;}
.ycb{bottom:376.026667pt;}
.y78{bottom:377.026667pt;}
.y172{bottom:377.160000pt;}
.y17b{bottom:381.026667pt;}
.y1a1{bottom:383.026667pt;}
.y11{bottom:384.026667pt;}
.y6{bottom:385.026667pt;}
.y26{bottom:386.284000pt;}
.y1f{bottom:388.026667pt;}
.ya3{bottom:390.026667pt;}
.y170{bottom:392.026667pt;}
.y144{bottom:392.761333pt;}
.y2e{bottom:393.026667pt;}
.yf3{bottom:394.026667pt;}
.y156{bottom:396.026667pt;}
.y102{bottom:397.026667pt;}
.yc9{bottom:400.026667pt;}
.y8b{bottom:401.000000pt;}
.y9a{bottom:401.026667pt;}
.yd4{bottom:402.026667pt;}
.y19d{bottom:403.026667pt;}
.y17{bottom:404.026667pt;}
.yda{bottom:404.284000pt;}
.ye2{bottom:406.026667pt;}
.y17a{bottom:407.026667pt;}
.y50{bottom:408.026667pt;}
.y1a0{bottom:409.026667pt;}
.y8d{bottom:410.000000pt;}
.y6b{bottom:410.026667pt;}
.y10{bottom:412.026667pt;}
.y164{bottom:414.026667pt;}
.yfb{bottom:414.160000pt;}
.yaa{bottom:415.026667pt;}
.y16f{bottom:416.026667pt;}
.y5b{bottom:417.026667pt;}
.y3c{bottom:419.026667pt;}
.y143{bottom:419.026959pt;}
.y45{bottom:424.026667pt;}
.yee{bottom:425.026667pt;}
.yf2{bottom:427.026667pt;}
.y108{bottom:429.284000pt;}
.y99{bottom:430.026667pt;}
.y10a{bottom:431.026667pt;}
.ye1{bottom:432.026667pt;}
.y2d{bottom:434.026667pt;}
.y8a{bottom:435.000000pt;}
.yc1{bottom:435.026667pt;}
.y77{bottom:438.026667pt;}
.y101{bottom:439.026667pt;}
.yb4{bottom:440.000000pt;}
.y163{bottom:441.026667pt;}
.y128{bottom:442.026667pt;}
.yd3{bottom:444.026667pt;}
.y5{bottom:445.026667pt;}
.y155{bottom:448.026667pt;}
.y16a{bottom:449.026667pt;}
.y142{bottom:451.026959pt;}
.y62{bottom:452.026667pt;}
.yb3{bottom:453.000000pt;}
.ya2{bottom:453.026667pt;}
.yd8{bottom:456.026667pt;}
.y25{bottom:457.026667pt;}
.y1e{bottom:458.026667pt;}
.y3b{bottom:461.026667pt;}
.y127{bottom:462.026667pt;}
.y89{bottom:468.000000pt;}
.y184{bottom:468.026667pt;}
.y137{bottom:471.026667pt;}
.y6a{bottom:472.026667pt;}
.y98{bottom:473.026667pt;}
.y115{bottom:473.160000pt;}
.yf{bottom:476.026667pt;}
.y44{bottom:478.026667pt;}
.yed{bottom:479.026667pt;}
.y76{bottom:480.026667pt;}
.y140{bottom:480.761333pt;}
.y107{bottom:481.026667pt;}
.y81{bottom:482.026667pt;}
.y141{bottom:482.026959pt;}
.y179{bottom:483.026667pt;}
.ye9{bottom:486.026667pt;}
.y15f{bottom:488.026667pt;}
.ye0{bottom:490.026667pt;}
.yfa{bottom:491.026667pt;}
.yf1{bottom:495.026667pt;}
.y58{bottom:496.026667pt;}
.y4f{bottom:497.026667pt;}
.yc0{bottom:498.026667pt;}
.y126{bottom:499.026667pt;}
.y19c{bottom:500.026667pt;}
.y3a{bottom:503.026667pt;}
.ye{bottom:504.026667pt;}
.yd2{bottom:506.026667pt;}
.y88{bottom:507.000000pt;}
.y75{bottom:507.026667pt;}
.ya9{bottom:508.026667pt;}
.y80{bottom:509.026667pt;}
.y182{bottom:511.026667pt;}
.yc8{bottom:513.026667pt;}
.ya1{bottom:515.026667pt;}
.y97{bottom:518.026667pt;}
.y15e{bottom:519.026667pt;}
.y57{bottom:521.026667pt;}
.y178{bottom:525.026667pt;}
.y19b{bottom:526.026667pt;}
.y154{bottom:527.026667pt;}
.yb2{bottom:528.000000pt;}
.y13f{bottom:528.026667pt;}
.y132{bottom:531.026667pt;}
.y61{bottom:532.026667pt;}
.y2c{bottom:538.026667pt;}
.y18c{bottom:539.026667pt;}
.y74{bottom:541.026667pt;}
.yd7{bottom:545.026667pt;}
.y87{bottom:547.000000pt;}
.yb1{bottom:551.000000pt;}
.yf9{bottom:553.026667pt;}
.yd{bottom:555.026667pt;}
.y1a2{bottom:558.026667pt;}
.y39{bottom:565.026667pt;}
.y96{bottom:568.026667pt;}
.ya8{bottom:570.026667pt;}
.y7f{bottom:571.026667pt;}
.yc7{bottom:572.026667pt;}
.y15d{bottom:574.026667pt;}
.y56{bottom:580.026667pt;}
.ydf{bottom:581.026667pt;}
.y73{bottom:582.026667pt;}
.y153{bottom:583.026667pt;}
.y13e{bottom:584.026667pt;}
.y16e{bottom:587.026667pt;}
.y125{bottom:588.026667pt;}
.y191{bottom:589.026667pt;}
.y131{bottom:590.026667pt;}
.y114{bottom:592.026667pt;}
.y86{bottom:598.000000pt;}
.yc{bottom:598.026667pt;}
.yb0{bottom:600.000000pt;}
.h33{height:5.567000pt;}
.h21{height:5.874800pt;}
.h18{height:6.182600pt;}
.h17{height:7.729200pt;}
.h52{height:32.474800pt;}
.h25{height:37.559648pt;}
.h9{height:39.060000pt;}
.h41{height:39.149609pt;}
.ha{height:39.594023pt;}
.h2b{height:39.848320pt;}
.h39{height:42.261816pt;}
.h3e{height:42.327363pt;}
.h3d{height:43.000000pt;}
.h54{height:43.304063pt;}
.h56{height:43.594023pt;}
.hf{height:44.380254pt;}
.h30{height:44.522266pt;}
.h2d{height:44.550879pt;}
.h1e{height:44.598477pt;}
.h48{height:44.837012pt;}
.h2f{height:45.000000pt;}
.h49{height:45.000133pt;}
.h6{height:46.935137pt;}
.h4f{height:47.000000pt;}
.h1b{height:47.014102pt;}
.h1d{height:47.316055pt;}
.h2a{height:47.500664pt;}
.h38{height:47.612500pt;}
.h1c{height:48.000000pt;}
.h44{height:48.551836pt;}
.h4{height:48.810000pt;}
.h15{height:49.445547pt;}
.h3{height:49.477324pt;}
.h28{height:49.610898pt;}
.h23{height:49.795098pt;}
.h14{height:50.000000pt;}
.h4d{height:50.245000pt;}
.h22{height:51.000000pt;}
.he{height:51.870000pt;}
.h12{height:52.210176pt;}
.h4c{height:52.877500pt;}
.h32{height:54.930000pt;}
.h4a{height:55.670000pt;}
.h42{height:55.680996pt;}
.h37{height:57.020000pt;}
.h29{height:57.990000pt;}
.h43{height:58.255840pt;}
.h34{height:58.748000pt;}
.h1f{height:58.782832pt;}
.h55{height:59.391035pt;}
.h13{height:61.020000pt;}
.h19{height:61.826000pt;}
.h7{height:61.854258pt;}
.h36{height:64.714570pt;}
.h31{height:65.910000pt;}
.h47{height:69.000000pt;}
.h51{height:69.570000pt;}
.h4e{height:72.000000pt;}
.h20{height:73.000000pt;}
.h11{height:73.230000pt;}
.h50{height:76.000133pt;}
.h16{height:77.292000pt;}
.h35{height:77.663848pt;}
.h40{height:92.811797pt;}
.h24{height:97.650000pt;}
.h8{height:98.985059pt;}
.hc{height:105.188730pt;}
.h2c{height:109.860000pt;}
.h46{height:111.361992pt;}
.h27{height:115.980000pt;}
.h1a{height:117.565664pt;}
.h5{height:122.070000pt;}
.h3c{height:122.259333pt;}
.h2e{height:122.930000pt;}
.h10{height:123.738926pt;}
.hb{height:136.632832pt;}
.h45{height:147.000000pt;}
.h4b{height:153.692930pt;}
.h2{height:168.480000pt;}
.h3a{height:170.783438pt;}
.hd{height:210.377461pt;}
.h3b{height:213.408000pt;}
.h57{height:247.508262pt;}
.h53{height:256.380000pt;}
.h3f{height:287.000000pt;}
.h1{height:676.000000pt;}
.h0{height:676.160000pt;}
.h26{height:680.000000pt;}
.wa{width:346.000000pt;}
.w8{width:454.000000pt;}
.w9{width:462.000000pt;}
.w6{width:472.000000pt;}
.w3{width:491.000000pt;}
.w5{width:493.000000pt;}
.w1{width:527.000000pt;}
.w4{width:543.000000pt;}
.w2{width:1028.000000pt;}
.w7{width:1070.000000pt;}
.w0{width:1200.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:13.250000pt;}
.x21{left:14.406667pt;}
.x16{left:15.578667pt;}
.x5{left:64.218800pt;}
.x4{left:65.109333pt;}
.xf{left:76.484400pt;}
.x77{left:79.125067pt;}
.xa{left:80.125067pt;}
.x2c{left:81.374667pt;}
.x17{left:82.375067pt;}
.x1d{left:83.375067pt;}
.x23{left:84.359333pt;}
.x1c{left:85.375067pt;}
.xc{left:89.375067pt;}
.x24{left:93.484440pt;}
.x18{left:96.258933pt;}
.x78{left:99.953067pt;}
.x4b{left:104.781200pt;}
.x25{left:107.406267pt;}
.x70{left:113.671867pt;}
.x6a{left:115.750000pt;}
.x10{left:118.000000pt;}
.x1b{left:138.250667pt;}
.x6e{left:142.750000pt;}
.x55{left:147.048000pt;}
.x65{left:155.297200pt;}
.x64{left:170.047200pt;}
.x69{left:171.516000pt;}
.x5d{left:176.249333pt;}
.x5e{left:186.248813pt;}
.x56{left:200.360533pt;}
.x37{left:214.077600pt;}
.x59{left:233.109467pt;}
.x4e{left:234.125333pt;}
.x49{left:257.204000pt;}
.x71{left:262.343867pt;}
.x45{left:264.062667pt;}
.x46{left:284.328000pt;}
.x44{left:296.218667pt;}
.x54{left:318.922667pt;}
.x36{left:320.530667pt;}
.x2a{left:324.860000pt;}
.x6f{left:328.031707pt;}
.x42{left:337.718667pt;}
.x6d{left:349.984667pt;}
.x5c{left:362.328000pt;}
.x1{left:372.860000pt;}
.x43{left:377.530667pt;}
.x3a{left:380.453333pt;}
.x67{left:385.515333pt;}
.x5b{left:393.265333pt;}
.x2{left:404.250667pt;}
.x48{left:405.688000pt;}
.x58{left:412.000000pt;}
.x3{left:419.078800pt;}
.x6{left:426.234667pt;}
.x7{left:427.125333pt;}
.x11{left:439.860000pt;}
.x5a{left:441.093467pt;}
.x5f{left:442.218667pt;}
.x52{left:443.297333pt;}
.x3e{left:444.390667pt;}
.xd{left:451.390667pt;}
.x4c{left:466.453333pt;}
.x39{left:469.484533pt;}
.x72{left:474.609333pt;}
.x12{left:481.375600pt;}
.x26{left:515.109333pt;}
.x66{left:530.140667pt;}
.x31{left:533.344000pt;}
.x2f{left:539.656000pt;}
.x28{left:565.344000pt;}
.x29{left:584.593333pt;}
.x30{left:590.343467pt;}
.x38{left:593.062667pt;}
.x4f{left:594.781333pt;}
.x22{left:606.874667pt;}
.x15{left:608.000000pt;}
.x79{left:610.170667pt;}
.x2e{left:616.265333pt;}
.xb{left:621.734667pt;}
.x73{left:623.281333pt;}
.x61{left:624.172000pt;}
.x19{left:625.390667pt;}
.x1e{left:626.390667pt;}
.x3c{left:628.796933pt;}
.x1f{left:637.500040pt;}
.x20{left:646.656000pt;}
.x1a{left:650.702667pt;}
.x35{left:663.000000pt;}
.x57{left:673.250533pt;}
.x33{left:675.471200pt;}
.x47{left:681.390800pt;}
.x68{left:689.625200pt;}
.x34{left:690.924267pt;}
.x62{left:732.706533pt;}
.x6b{left:742.438000pt;}
.x63{left:748.972133pt;}
.x6c{left:753.828627pt;}
.x60{left:787.250667pt;}
.x8{left:788.250667pt;}
.x9{left:789.140000pt;}
.x3b{left:794.718267pt;}
.x51{left:800.625333pt;}
.x74{left:801.984000pt;}
.x13{left:803.234667pt;}
.x53{left:805.046667pt;}
.x3f{left:806.406667pt;}
.x32{left:811.780800pt;}
.xe{left:813.406667pt;}
.x4d{left:828.125333pt;}
.x27{left:831.874667pt;}
.x75{left:835.530667pt;}
.x40{left:843.860000pt;}
.x14{left:844.750267pt;}
.x3d{left:857.235600pt;}
.x2d{left:860.500000pt;}
.x41{left:862.093333pt;}
.x2b{left:866.250667pt;}
.x7a{left:882.702667pt;}
.x50{left:955.453333pt;}
.x76{left:984.202667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  