
    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_9627688f9c38f356963eea07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974000;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_51b93495a1c3f43ee37c3a14.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977000;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_55ae3f4825c370f46eb6bac0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.757000;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_485955bbb3cb54c16fdf0dae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739000;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_b369d25f7ddf3047f59b6e12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_f50f320f5b3e8acaff2b5e46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719000;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_5733efab926e473953ca60c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719000;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_ca4bfd4d48e22ec13a0ed6dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_4d220eb268880ab87a620e6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_d921fc9246b00c5a0495658d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.724121;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_4d220eb268880ab87a620e6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_6d4525516177f1a1cd03e80f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739000;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_eae1fbe65a012d4126250b9b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.733887;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_1f690b1d82cde498c17c4f8f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717773;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_1dd3cd865011cd5a78d91e54.woff2')format("woff");}.fff{font-family:fff;line-height:0.982000;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_4988c74f90485494c5e4befb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.966000;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_aabff7d5f7e0cf2b88f8debd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.723633;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_d53ae069049c21ead0611c7e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982000;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_4c69f47bb90e64fcfdb8076f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.895000;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_517bffbcbf4e81d2e908ae5d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.708000;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_ea3a7c9ef396545afe8514a4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.733887;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_c21e809252e4d9697987cb12.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_93dc4ecd0caa0afd3711526c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.775879;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_c07f57f313b72d123550b587.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.006348;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_d53ae069049c21ead0611c7e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.982000;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_96eb886391df575a4a8c9d11.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.923000;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_6235b58bb67d7b061e031db9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.917000;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_6dc8e5ab597a6d5a76a5a679.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.982000;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:ff1d;src:url('chunks/assets/font_7d9a957d57ba61c7d0252025.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.928000;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:ff1e;src:url('chunks/assets/font_fde57993046ca55862aa6d9d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.904000;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:ff1f;src:url('chunks/assets/font_da5e6e7e915ae5947987d3ba.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.887000;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_b14c3a1860bda87b97b479a3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.733887;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_6dc8e5ab597a6d5a76a5a679.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.982000;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_ed7d7f377e6e7c7ea847f506.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.052000;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_eff26721192369d0963af55d.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.909000;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_f3e827a489e997175796cdb7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.739000;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:ff25;src:url('chunks/assets/font_9eeebfddbd8be75eb2473403.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.733887;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:ff26;src:url('chunks/assets/font_6dc8e5ab597a6d5a76a5a679.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.982000;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_e38f2f6972f8b3631ebbf4bc.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.708000;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_5d3a7a844e75e15f9264f3ad.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.708000;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_63bee2fc2a3b7d46554f7c11.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.917000;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_76458fab3a548b86fa9deadc.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.917000;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:ff2b;src:url('chunks/assets/font_579a96bd8d67daf887c1ca14.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.916000;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:ff2c;src:url('chunks/assets/font_b369892c882b2a0025712421.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.899000;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_cc595d8faf3c6587f859eacb.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.899000;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_ab497a456282d837387f65fe.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.739000;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_c54c49f45c11f5abfd5b9e61.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.917000;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:ff30;src:url('chunks/assets/font_ecd8ab8e53795911b7a010b4.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.928000;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:ff31;src:url('chunks/assets/font_eff26721192369d0963af55d.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.909000;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:ff32;src:url('chunks/assets/font_f3e827a489e997175796cdb7.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.739000;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_8f55cb7d32f6552624a3ccf9.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.734863;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_6dc8e5ab597a6d5a76a5a679.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.982000;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_fc46883e8f9c324e97d6d2fa.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.909000;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_b4bcd7522952a46e3cd0cf41.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.713867;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:ff37;src:url('chunks/assets/font_6dc8e5ab597a6d5a76a5a679.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.982000;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:ff38;src:url('chunks/assets/font_861e9a1c7b8fec5f64661633.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.104000;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_b91e6ae091c4889178659cf5.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.902000;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_c444d5aa48e7dc8415415305.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.917000;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_94f1a93f7bf1f6e84cc9f226.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.962000;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_aa664b1e436ce70d53aad89e.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.739000;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_ba7712228820c05395820fd0.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.724121;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_6dc8e5ab597a6d5a76a5a679.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.982000;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:ff3f;src:url('chunks/assets/font_1a2b62f0be6ebdfaccccf7e4.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.733887;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:ff40;src:url('chunks/assets/font_1919181f4f12d1cbad176b79.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.984000;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_b7f9ace552fc6144e3b88965.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.917000;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_8d65a1f1c3b0a0da9f6ab732.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.914000;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_5a7871707900874d6e400be7.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.717773;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_a4b0b36001d3b80e1e75acfb.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.990000;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_a54fd20373dcafa0c95e9e8a.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.723633;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_b730f0d90f1b2a527106eb95.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.984000;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_4d3cd14eee42573f7c73c075.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.079000;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_a2ff94e71e634e27d0120d29.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.917000;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_ffc596478092c43b235b2382.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.733887;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_fc240611db00d6448dde8a71.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.989000;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_d6fcd6ee043afa274773c2b6.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.963000;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_2e211661ac6e599780de3c11.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.917000;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_59ab05f2cc6c5f92a4b2f1e4.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.713867;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_f539e6a6dbcf7b405e62df8b.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.146000;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:ff4f;src:url('chunks/assets/font_c2a4500880036e8599698149.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.733887;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:ff50;src:url('chunks/assets/font_4e9935fc56006a0b3bf77ccd.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.791000;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_c547548fad2c6459cee45113.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.907000;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_ef55f9097adc6ca444af5dd8.woff2')format("woff");}.ff52{font-family:ff52;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:ff53;src:url('chunks/assets/font_1d6c99234cd5c5912a2600ae.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.733887;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_05a92b983beb100c2ea9098e.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.796000;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_199f5b0fdb185370da991a59.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.734863;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_d632c5a1e3035c1c20822ba5.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.139000;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_f4ed1382747f5b800bf1eeec.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.944000;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_0cb05ae9235bcdf5fd826d8f.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.907000;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_ba7712228820c05395820fd0.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.724121;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_d632c5a1e3035c1c20822ba5.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.139000;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_2f61befdf091497a18f905be.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.081000;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_9e793b9c86e2380ae3cca41d.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.902000;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_d921fc9246b00c5a0495658d.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.724121;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_d632c5a1e3035c1c20822ba5.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.139000;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:ff5f;src:url('chunks/assets/font_723acf9b1de955852e71eee9.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.981000;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:ff60;src:url('chunks/assets/font_e0b96b11bef53d52431cb95c.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.733887;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_0d89be0cabca146192d72430.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.739000;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_916a32ae93a7bfcf215282b0.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.914000;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_d632c5a1e3035c1c20822ba5.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.139000;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_72f99dfa457669ffc29f88e2.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.977000;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_bddf1f29e946e91f9684635d.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.724121;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_654e8184f01f818e96f62f62.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.907000;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_91c7c1a664cb43773804cf9b.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.923000;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_74330b261a1e36e1551469b9.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.917000;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:ff69;src:url('chunks/assets/font_97aa65849c31d72fbe3c99ba.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.981000;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:ff6a;src:url('chunks/assets/font_96cf1d2918cd3763a41e33de.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.914000;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:ff6b;src:url('chunks/assets/font_c4a63a1b0826c29178200b8f.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.733887;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_ea41bc411e2561deb6e9ca06.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.982000;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_ad60273528b766566ac48e59.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.733887;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_ffe23a36126a91a88672b980.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.107000;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:ff6f;src:url('chunks/assets/font_e5df820b2e1c000ebeddd1bd.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.739000;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:ff70;src:url('chunks/assets/font_eb898883e64fb42d5ef960d3.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.984000;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_ea26f06072a81382dbdd0a94.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.907000;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_d45a771f7483d926cbeb5263.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.909000;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_18a60520d933397e558d0a17.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.724121;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_081fa7643273fca70829c575.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.974000;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:ff75;src:url('chunks/assets/font_29724ed0580b5cd2198fae81.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.733887;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:ff76;src:url('chunks/assets/font_e4f9e6b1664002812dfc0666.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.982000;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_6916f8060424ef2dee26a3ff.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.829000;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_40c01a3770b1b338da17cf63.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.739000;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_f10d847ed88e68445a296be6.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.733887;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_88e2638b7e27162ff416fa41.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.974000;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_058be28028eda887cd518f38.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.734863;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_c8412ba8e84eacbb5a4e6521.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.761000;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_17bb59d3d42198ff4f21170c.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.928000;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_1a2b62f0be6ebdfaccccf7e4.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.733887;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_fbd09ed6567f66eac538076e.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.761000;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_ccfc21b78ef29ecd57a53d73.woff2')format("woff");}.ff80{font-family:ff80;line-height:0.914000;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:ff81;src:url('chunks/assets/font_e0b96b11bef53d52431cb95c.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.733887;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:ff82;src:url('chunks/assets/font_ae766180fc783de91953f2f8.woff2')format("woff");}.ff82{font-family:ff82;line-height:1.104000;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_7c1db815fb1e4faf7ef9aa09.woff2')format("woff");}.ff83{font-family:ff83;line-height:0.917000;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_eae1fbe65a012d4126250b9b.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.733887;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_485955bbb3cb54c16fdf0dae.woff2')format("woff");}.ff85{font-family:ff85;line-height:0.739000;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_c83964879a7a3ffe361e6031.woff2')format("woff");}.ff86{font-family:ff86;line-height:0.894000;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:ff87;src:url('chunks/assets/font_759488b7a8904de86892ba1c.woff2')format("woff");}.ff87{font-family:ff87;line-height:0.978000;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:ff88;src:url('chunks/assets/font_52bfbcffc5b2ab0f59bb3b2b.woff2')format("woff");}.ff88{font-family:ff88;line-height:0.719000;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:-66.047325px;}
.v7{vertical-align:-30.888431px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.535568px;}
.v6{vertical-align:10.187568px;}
.v5{vertical-align:46.693870px;}
.v3{vertical-align:50.211934px;}
.v2{vertical-align:163.929737px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.011293px;}
.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;}
}
.ws9{word-spacing:-124.699585px;}
.ws6{word-spacing:-98.533566px;}
.ws8{word-spacing:-85.796099px;}
.ws10{word-spacing:-85.471641px;}
.ws14{word-spacing:-68.333757px;}
.wsf{word-spacing:-63.489642px;}
.ws13{word-spacing:-62.060937px;}
.ws11{word-spacing:-61.634832px;}
.ws4{word-spacing:-57.716100px;}
.ws1a{word-spacing:-55.165500px;}
.ws1e{word-spacing:-49.193998px;}
.ws19{word-spacing:-45.805500px;}
.ws0{word-spacing:-45.470878px;}
.ws17{word-spacing:-43.191000px;}
.ws2{word-spacing:-39.295618px;}
.ws1c{word-spacing:-38.393998px;}
.ws1f{word-spacing:-35.991000px;}
.ws1d{word-spacing:-31.193999px;}
.ws21{word-spacing:-30.259606px;}
.ws20{word-spacing:-30.257998px;}
.ws7{word-spacing:-27.528660px;}
.wsa{word-spacing:-25.625854px;}
.ws1{word-spacing:-24.767999px;}
.wsd{word-spacing:-24.022010px;}
.ws12{word-spacing:-22.283999px;}
.ws15{word-spacing:-21.086999px;}
.wsb{word-spacing:-19.222361px;}
.ws18{word-spacing:-17.999999px;}
.wsc{word-spacing:-17.618517px;}
.wse{word-spacing:-14.399999px;}
.ws16{word-spacing:-0.119970px;}
.ws1b{word-spacing:-0.107955px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:1402.098118px;}
._13{margin-left:-3748.425992px;}
._f{margin-left:-16.858710px;}
._16{margin-left:-14.007752px;}
._14{margin-left:-12.934654px;}
._c{margin-left:-10.957847px;}
._3{margin-left:-9.617977px;}
._d{margin-left:-8.316420px;}
._1{margin-left:-6.820481px;}
._9{margin-left:-5.038855px;}
._a{margin-left:-3.958993px;}
._2{margin-left:-2.914463px;}
._0{margin-left:-1.746076px;}
._8{width:1.795064px;}
._7{width:2.973649px;}
._15{width:6.112064px;}
._4{width:27.463204px;}
._6{width:35.222585px;}
._5{width:60.797771px;}
._11{width:1788.373743px;}
._e{width:3683.819859px;}
._12{width:4314.617445px;}
._10{width:5889.116431px;}
._b{width:6769.645690px;}
.fc23{color:rgb(248,249,255);}
.fc22{color:rgb(255,255,255);}
.fc21{color:rgb(255,254,243);}
.fc1f{color:rgb(86,18,105);}
.fc1d{color:rgb(146,86,235);}
.fc18{color:rgb(253,88,94);}
.fcb{color:rgb(18,61,112);}
.fc0{color:rgb(60,74,171);}
.fc19{color:rgb(246,0,81);}
.fc4{color:rgb(217,217,217);}
.fc20{color:rgb(197,171,235);}
.fc1e{color:rgb(47,80,164);}
.fc10{color:rgb(171,68,128);}
.fc8{color:rgb(2,121,103);}
.fc3{color:rgb(79,44,201);}
.fc2{color:rgb(16,63,107);}
.fc6{color:rgb(156,251,225);}
.fc9{color:rgb(191,174,216);}
.fc1c{color:rgb(72,93,230);}
.fc5{color:rgb(141,204,255);}
.fc13{color:rgb(240,230,255);}
.fcd{color:rgb(84,67,143);}
.fc1b{color:rgb(159,101,244);}
.fc11{color:rgb(41,51,123);}
.fc14{color:transparent;}
.fc12{color:rgb(255,253,253);}
.fcf{color:rgb(103,111,169);}
.fc1{color:rgb(77,127,161);}
.fc15{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,0);}
.fc16{color:rgb(255,117,31);}
.fca{color:rgb(233,228,164);}
.fce{color:rgb(45,112,158);}
.fc17{color:rgb(0,114,5);}
.fcc{color:rgb(255,49,49);}
.fc1a{color:rgb(24,53,93);}
.fs4{font-size:59.984997px;}
.fs12{font-size:65.986956px;}
.fs11{font-size:71.993862px;}
.fs5{font-size:71.999997px;}
.fs1c{font-size:83.969997px;}
.fs13{font-size:89.970074px;}
.fs1f{font-size:89.999996px;}
.fs10{font-size:95.976983px;}
.fsb{font-size:95.984996px;}
.fs19{font-size:105.434996px;}
.fsa{font-size:105.974991px;}
.fs6{font-size:107.954996px;}
.fs23{font-size:107.999996px;}
.fs16{font-size:110.654995px;}
.fs17{font-size:111.419995px;}
.fs2f{font-size:112.904995px;}
.fs14{font-size:113.984995px;}
.fs7{font-size:119.969995px;}
.fs3{font-size:124.919995px;}
.fs18{font-size:129.419995px;}
.fs2a{font-size:151.289989px;}
.fs2b{font-size:151.298031px;}
.fs15{font-size:153.449985px;}
.fs24{font-size:155.969994px;}
.fs2e{font-size:165.914989px;}
.fs1{font-size:170.774997px;}
.fs21{font-size:176.175002px;}
.fs25{font-size:179.955002px;}
.fs2c{font-size:179.999993px;}
.fse{font-size:191.969992px;}
.fs9{font-size:192.824983px;}
.fs1a{font-size:203.985001px;}
.fs1d{font-size:209.969991px;}
.fs22{font-size:212.175000px;}
.fs1b{font-size:215.955000px;}
.fs2{font-size:218.744995px;}
.fs8{font-size:221.985000px;}
.fsd{font-size:227.969991px;}
.fs1e{font-size:245.969990px;}
.fsf{font-size:251.999990px;}
.fs2d{font-size:263.969989px;}
.fs0{font-size:287.189988px;}
.fs26{font-size:305.999987px;}
.fs27{font-size:311.984996px;}
.fsc{font-size:329.984995px;}
.fs20{font-size:347.984995px;}
.fs30{font-size:349.559985px;}
.fs28{font-size:401.984992px;}
.fs29{font-size:419.984992px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y126{bottom:8.169682px;}
.y122{bottom:8.182817px;}
.y11f{bottom:8.218109px;}
.y6a{bottom:16.685832px;}
.y54{bottom:20.022998px;}
.y36{bottom:23.127889px;}
.y59{bottom:24.472593px;}
.y60{bottom:31.146920px;}
.y4f{bottom:32.259285px;}
.y64{bottom:32.259321px;}
.y48{bottom:37.821233px;}
.y4b{bottom:37.821269px;}
.y69{bottom:38.933626px;}
.y5a{bottom:40.046048px;}
.y32{bottom:42.252889px;}
.y26{bottom:42.539060px;}
.y2c{bottom:42.539103px;}
.y53{bottom:44.495571px;}
.y58{bottom:46.720387px;}
.y125{bottom:48.515823px;}
.y121{bottom:48.528959px;}
.y11e{bottom:48.564251px;}
.y5f{bottom:53.394714px;}
.y4e{bottom:56.731858px;}
.y63{bottom:56.731894px;}
.y72{bottom:57.336586px;}
.y35{bottom:60.252888px;}
.y28{bottom:60.539059px;}
.y2e{bottom:60.539102px;}
.y68{bottom:61.181419px;}
.y118{bottom:66.729633px;}
.y52{bottom:68.968144px;}
.y57{bottom:68.968180px;}
.y47{bottom:71.192924px;}
.y4a{bottom:71.192960px;}
.y5e{bottom:75.642507px;}
.y30{bottom:79.377887px;}
.y23{bottom:79.664058px;}
.y2a{bottom:79.664101px;}
.y3a{bottom:80.447073px;}
.y4d{bottom:81.204431px;}
.y62{bottom:81.204467px;}
.ya2{bottom:81.326589px;}
.y71{bottom:82.086585px;}
.y67{bottom:83.429213px;}
.y124{bottom:88.861965px;}
.y11d{bottom:88.910392px;}
.yc5{bottom:90.453164px;}
.y56{bottom:91.215974px;}
.y12{bottom:93.000056px;}
.y51{bottom:93.440718px;}
.yb{bottom:94.949996px;}
.y34{bottom:97.377886px;}
.y27{bottom:97.664058px;}
.y2d{bottom:97.664101px;}
.y5d{bottom:97.890301px;}
.y66{bottom:105.677007px;}
.y70{bottom:106.836584px;}
.y93{bottom:109.511887px;}
.ya1{bottom:110.576587px;}
.y39{bottom:113.072071px;}
.y31{bottom:116.502886px;}
.y25{bottom:116.789057px;}
.y2b{bottom:116.789100px;}
.yc4{bottom:121.953163px;}
.yb6{bottom:125.987179px;}
.y135{bottom:126.453163px;}
.yff{bottom:126.994207px;}
.y46{bottom:130.383033px;}
.y6f{bottom:131.586583px;}
.y92{bottom:134.261886px;}
.y33{bottom:134.502885px;}
.y65{bottom:139.096840px;}
.ya0{bottom:139.826586px;}
.y38{bottom:145.697070px;}
.y50{bottom:147.995961px;}
.y11{bottom:151.222314px;}
.y6e{bottom:156.336581px;}
.y5b{bottom:156.852680px;}
.y137{bottom:157.272257px;}
.yb5{bottom:157.487177px;}
.yfe{bottom:159.619205px;}
.y9f{bottom:169.076585px;}
.yd1{bottom:172.545725px;}
.y10{bottom:175.972313px;}
.y136{bottom:178.647257px;}
.y6d{bottom:181.086580px;}
.y21{bottom:185.804992px;}
.y18{bottom:186.249556px;}
.yb4{bottom:188.987176px;}
.yd2{bottom:191.579680px;}
.yfd{bottom:192.244204px;}
.yf{bottom:200.722312px;}
.y6c{bottom:205.836579px;}
.y4c{bottom:206.470650px;}
.y5c{bottom:208.509953px;}
.y17{bottom:210.999555px;}
.y10d{bottom:211.700475px;}
.ye5{bottom:215.339319px;}
.yef{bottom:219.847419px;}
.yb3{bottom:220.487175px;}
.ye{bottom:225.472311px;}
.y6b{bottom:230.586578px;}
.yf6{bottom:233.021078px;}
.y2f{bottom:233.973634px;}
.y16{bottom:235.749554px;}
.y20{bottom:236.429990px;}
.ydf{bottom:237.797526px;}
.ye9{bottom:242.340938px;}
.yc3{bottom:244.255166px;}
.yd{bottom:250.222310px;}
.yd8{bottom:250.784990px;}
.y42{bottom:251.389142px;}
.yf5{bottom:257.771077px;}
.y15{bottom:260.499553px;}
.y10c{bottom:269.075473px;}
.ye4{bottom:269.339317px;}
.yc{bottom:274.972309px;}
.y115{bottom:275.691265px;}
.yee{bottom:281.722416px;}
.yf4{bottom:282.521076px;}
.y14{bottom:285.249552px;}
.yad{bottom:288.026750px;}
.yc2{bottom:293.755164px;}
.ye8{bottom:296.340936px;}
.yde{bottom:299.672523px;}
.y112{bottom:303.785051px;}
.y117{bottom:305.505347px;}
.yf3{bottom:307.271075px;}
.yfc{bottom:309.892451px;}
.y13{bottom:309.999551px;}
.y91{bottom:311.391815px;}
.yd7{bottom:312.659987px;}
.y41{bottom:313.264139px;}
.ye3{bottom:323.339315px;}
.y106{bottom:325.751422px;}
.y10b{bottom:326.450470px;}
.y98{bottom:330.274145px;}
.yca{bottom:330.992770px;}
.ycd{bottom:332.713030px;}
.y123{bottom:334.079996px;}
.y12e{bottom:334.847578px;}
.y114{bottom:335.316262px;}
.y7{bottom:335.803954px;}
.y8c{bottom:337.220770px;}
.y90{bottom:340.641814px;}
.yed{bottom:343.597414px;}
.y49{bottom:344.422357px;}
.y9e{bottom:345.626748px;}
.y1e{bottom:346.265050px;}
.y11c{bottom:346.319996px;}
.yac{bottom:349.901748px;}
.ye7{bottom:350.340933px;}
.y120{bottom:354.239995px;}
.ydd{bottom:361.547521px;}
.yc7{bottom:362.527113px;}
.y111{bottom:363.410049px;}
.y116{bottom:365.130345px;}
.y61{bottom:367.550484px;}
.y8b{bottom:367.595769px;}
.y8f{bottom:369.891813px;}
.yd6{bottom:374.534984px;}
.y11b{bottom:375.132728px;}
.y40{bottom:375.139136px;}
.y133{bottom:377.094980px;}
.ye2{bottom:377.339312px;}
.y55{bottom:380.819435px;}
.y105{bottom:383.126420px;}
.y10a{bottom:383.825468px;}
.yfb{bottom:388.642448px;}
.yc9{bottom:390.617768px;}
.yf2{bottom:391.189736px;}
.ycc{bottom:392.338028px;}
.y6{bottom:392.861144px;}
.y113{bottom:394.941260px;}
.y97{bottom:395.524143px;}
.y8a{bottom:397.970767px;}
.y8e{bottom:399.141811px;}
.y12d{bottom:402.347575px;}
.yec{bottom:405.472411px;}
.y29{bottom:411.228108px;}
.yab{bottom:411.776745px;}
.y9d{bottom:414.251745px;}
.y11a{bottom:415.632727px;}
.yf1{bottom:415.939735px;}
.yc6{bottom:422.152110px;}
.y89{bottom:422.224866px;}
.ydc{bottom:423.422518px;}
.y8d{bottom:428.391810px;}
.yd9{bottom:436.409982px;}
.y3f{bottom:437.014134px;}
.y104{bottom:440.501418px;}
.yf0{bottom:440.689734px;}
.y109{bottom:441.200466px;}
.y76{bottom:447.109073px;}
.y85{bottom:449.263637px;}
.yc8{bottom:450.242765px;}
.y88{bottom:451.474865px;}
.ycb{bottom:451.963025px;}
.y131{bottom:457.751231px;}
.ye6{bottom:458.340929px;}
.y96{bottom:460.774140px;}
.yeb{bottom:467.347409px;}
.yfa{bottom:467.392445px;}
.y12c{bottom:469.847572px;}
.yaa{bottom:473.651743px;}
.y87{bottom:480.724864px;}
.y9c{bottom:482.876742px;}
.y84{bottom:485.263636px;}
.ydb{bottom:485.297515px;}
.ye1{bottom:485.339308px;}
.y75{bottom:489.859072px;}
.ybf{bottom:492.958059px;}
.y103{bottom:497.876415px;}
.yd5{bottom:498.284979px;}
.y108{bottom:498.575463px;}
.y3e{bottom:498.889131px;}
.y1f{bottom:502.636911px;}
.y86{bottom:509.974863px;}
.y7d{bottom:521.628905px;}
.y5{bottom:521.699083px;}
.y95{bottom:526.024137px;}
.y110{bottom:527.772326px;}
.ybb{bottom:530.427326px;}
.ya9{bottom:535.526740px;}
.y12b{bottom:537.347570px;}
.y130{bottom:542.126227px;}
.ybe{bottom:542.458057px;}
.yf9{bottom:546.142441px;}
.y1d{bottom:549.389857px;}
.y1c{bottom:549.512466px;}
.y9b{bottom:551.501739px;}
.y7c{bottom:552.003903px;}
.yc1{bottom:555.174117px;}
.y102{bottom:555.251413px;}
.y107{bottom:555.950461px;}
.y83{bottom:557.371690px;}
.yb2{bottom:559.876970px;}
.yd4{bottom:560.159977px;}
.yaf{bottom:569.870483px;}
.yd0{bottom:575.214672px;}
.y127{bottom:576.444043px;}
.yba{bottom:579.927324px;}
.y7b{bottom:582.378902px;}
.y43{bottom:584.794135px;}
.yea{bottom:584.885366px;}
.y82{bottom:587.746689px;}
.y24{bottom:588.768912px;}
.y94{bottom:591.274135px;}
.ybd{bottom:591.958055px;}
.ya8{bottom:597.401738px;}
.y4{bottom:602.699080px;}
.yc0{bottom:604.674115px;}
.y12a{bottom:604.847567px;}
.yda{bottom:609.047510px;}
.y1b{bottom:611.387463px;}
.y10f{bottom:611.467707px;}
.ye0{bottom:612.557510px;}
.y7a{bottom:612.753901px;}
.y9a{bottom:620.126737px;}
.yb1{bottom:621.751967px;}
.y12f{bottom:626.501224px;}
.yb9{bottom:629.427322px;}
.y81{bottom:633.805199px;}
.ycf{bottom:637.089669px;}
.ybc{bottom:641.458053px;}
.yae{bottom:648.620480px;}
.y79{bottom:649.029127px;}
.y80{bottom:664.180198px;}
.y132{bottom:665.944644px;}
.y3d{bottom:668.489563px;}
.y129{bottom:672.347564px;}
.y1a{bottom:673.262461px;}
.y78{bottom:679.404125px;}
.yb0{bottom:683.626965px;}
.y3{bottom:683.699076px;}
.y99{bottom:688.751734px;}
.y7f{bottom:694.555196px;}
.y77{bottom:709.779124px;}
.ya{bottom:717.200128px;}
.y7e{bottom:724.930195px;}
.y19{bottom:735.137458px;}
.y128{bottom:739.847561px;}
.y101{bottom:762.336443px;}
.y2{bottom:764.699073px;}
.y22{bottom:766.309593px;}
.y9{bottom:792.968259px;}
.y119{bottom:802.755208px;}
.y8{bottom:814.343258px;}
.yb8{bottom:816.151869px;}
.yf8{bottom:818.346631px;}
.y74{bottom:825.135654px;}
.y134{bottom:829.637962px;}
.y45{bottom:844.069292px;}
.y3c{bottom:849.233132px;}
.y100{bottom:850.086440px;}
.ya7{bottom:852.394436px;}
.y73{bottom:856.635653px;}
.yce{bottom:859.417128px;}
.y10e{bottom:872.652686px;}
.yf7{bottom:903.846627px;}
.ya4{bottom:907.032256px;}
.yb7{bottom:914.026865px;}
.y44{bottom:914.944289px;}
.ya6{bottom:919.894433px;}
.y3b{bottom:941.483128px;}
.yd3{bottom:950.445443px;}
.ya5{bottom:987.394430px;}
.ya3{bottom:999.282252px;}
.y37{bottom:1004.611797px;}
.h7{height:42.529363px;}
.h8{height:51.047998px;}
.h26{height:51.479998px;}
.h22{height:51.601800px;}
.h27{height:52.631998px;}
.ha{height:54.935998px;}
.h21{height:56.299200px;}
.h31{height:64.069107px;}
.h17{height:68.629272px;}
.h3b{height:68.669997px;}
.h18{height:70.165032px;}
.h23{height:70.356598px;}
.h20{height:75.054001px;}
.h9{height:75.568497px;}
.h2e{height:77.072982px;}
.h5c{height:79.033497px;}
.h38{height:79.199997px;}
.h2c{height:79.553877px;}
.h28{height:79.789497px;}
.h13{height:80.516155px;}
.h2a{height:80.888802px;}
.h14{height:81.188848px;}
.h2b{height:81.448017px;}
.h42{height:82.020495px;}
.h41{height:82.054684px;}
.he{height:85.642643px;}
.hc{height:86.111276px;}
.hb{height:86.872804px;}
.h43{height:86.989962px;}
.h4e{height:87.058391px;}
.h58{height:87.119996px;}
.h6{height:87.443996px;}
.h2d{height:92.405876px;}
.h3c{height:95.830210px;}
.h29{height:107.414989px;}
.h55{height:110.592982px;}
.h57{height:110.598860px;}
.h49{height:111.518545px;}
.h48{height:114.014065px;}
.h5b{height:121.283857px;}
.h1f{height:123.475250px;}
.h4b{height:127.408141px;}
.h56{height:127.439995px;}
.h50{height:128.667826px;}
.h59{height:128.699995px;}
.h25{height:131.262007px;}
.h32{height:133.566674px;}
.h11{height:134.977488px;}
.h10{height:135.170313px;}
.h1c{height:135.338844px;}
.h45{height:135.914754px;}
.h40{height:136.874604px;}
.h35{height:137.258544px;}
.h24{height:137.936331px;}
.h3a{height:138.649726px;}
.h34{height:140.330064px;}
.h19{height:142.122540px;}
.h44{height:145.705224px;}
.h2f{height:145.849275px;}
.h47{height:158.904315px;}
.h1d{height:159.806963px;}
.h33{height:164.196533px;}
.h5{height:164.438159px;}
.h1b{height:166.646063px;}
.h53{height:166.981725px;}
.h4a{height:168.876810px;}
.h46{height:171.813143px;}
.h51{height:172.926315px;}
.h37{height:173.592270px;}
.hd{height:174.702195px;}
.h4d{height:175.868543px;}
.h16{height:177.252883px;}
.h12{height:177.539054px;}
.h15{height:177.539097px;}
.h36{height:193.578382px;}
.h1e{height:196.307992px;}
.h30{height:196.519050px;}
.h3e{height:200.293200px;}
.h3{height:223.721001px;}
.h4{height:224.582571px;}
.h4c{height:238.373990px;}
.h5a{height:240.212690px;}
.h4f{height:243.972267px;}
.h1a{height:257.058311px;}
.h3f{height:272.124266px;}
.h5d{height:273.006349px;}
.h39{height:273.864191px;}
.hf{height:299.100050px;}
.h54{height:315.828714px;}
.h52{height:316.362189px;}
.h3d{height:328.497835px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w7{width:123.475250px;}
.w8{width:123.475272px;}
.wa{width:131.262007px;}
.w9{width:137.936331px;}
.wb{width:245.519990px;}
.wc{width:262.439989px;}
.wd{width:276.839988px;}
.we{width:282.599988px;}
.w4{width:324.755846px;}
.w5{width:332.999986px;}
.w2{width:350.595666px;}
.w3{width:399.374940px;}
.w6{width:399.374983px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x38{left:4.171498px;}
.x27{left:5.196949px;}
.x16{left:9.000000px;}
.x2b{left:12.792467px;}
.x25{left:15.191075px;}
.x2a{left:16.598925px;}
.x21{left:18.597764px;}
.x34{left:20.144657px;}
.x22{left:21.465644px;}
.x24{left:22.977803px;}
.x30{left:25.845716px;}
.x33{left:27.357809px;}
.x28{left:31.164296px;}
.x36{left:34.101733px;}
.x31{left:37.091280px;}
.x37{left:38.273194px;}
.x82{left:48.484232px;}
.x7{left:56.622371px;}
.x85{left:72.358559px;}
.x87{left:78.299792px;}
.x8{left:92.727838px;}
.x9{left:98.012631px;}
.x10{left:99.717731px;}
.x58{left:121.499995px;}
.x20{left:166.701235px;}
.x5b{left:192.713284px;}
.x5f{left:211.959416px;}
.x1b{left:214.307897px;}
.x8c{left:218.418027px;}
.x7c{left:224.846227px;}
.x80{left:226.303760px;}
.x63{left:229.768694px;}
.xf{left:234.361178px;}
.x23{left:254.402107px;}
.x15{left:257.230382px;}
.x74{left:260.376890px;}
.x69{left:273.548725px;}
.x5d{left:284.695301px;}
.x76{left:286.746446px;}
.x6a{left:288.605157px;}
.x6d{left:294.524349px;}
.x70{left:310.138648px;}
.x5c{left:318.563908px;}
.x5e{left:331.216730px;}
.x7a{left:340.842687px;}
.x1c{left:343.035864px;}
.x79{left:345.228998px;}
.x71{left:356.413543px;}
.x41{left:358.458536px;}
.x26{left:366.792810px;}
.x3f{left:368.214395px;}
.x5a{left:376.352343px;}
.x40{left:381.028847px;}
.x3e{left:384.263222px;}
.x3c{left:389.669464px;}
.x77{left:391.283551px;}
.x3d{left:392.429230px;}
.x42{left:394.036659px;}
.x72{left:422.700649px;}
.x1d{left:473.333954px;}
.x65{left:483.167880px;}
.x59{left:492.301846px;}
.x64{left:506.388582px;}
.x29{left:530.336534px;}
.x45{left:534.698284px;}
.x46{left:549.481487px;}
.x43{left:553.313518px;}
.x44{left:559.975627px;}
.x81{left:572.399976px;}
.x60{left:598.844549px;}
.x17{left:607.830671px;}
.x89{left:636.637167px;}
.x2c{left:643.132942px;}
.x7f{left:668.680268px;}
.x8b{left:678.466376px;}
.x8a{left:716.494586px;}
.x48{left:724.942370px;}
.x4a{left:727.491198px;}
.x49{left:735.120104px;}
.x4d{left:740.305651px;}
.x47{left:755.686510px;}
.x6c{left:772.289896px;}
.x7d{left:794.990019px;}
.x68{left:804.227582px;}
.x2d{left:844.922413px;}
.x53{left:905.799680px;}
.x4b{left:924.493761px;}
.x52{left:932.729367px;}
.x86{left:938.519961px;}
.x51{left:939.672726px;}
.x4c{left:942.687119px;}
.x2e{left:952.156904px;}
.x1e{left:995.846697px;}
.x7b{left:999.348889px;}
.x18{left:1007.228442px;}
.x3{left:1089.988197px;}
.x2{left:1095.806562px;}
.x4e{left:1100.069243px;}
.x2f{left:1104.999218px;}
.x61{left:1107.214658px;}
.x4{left:1119.572186px;}
.x4f{left:1122.323148px;}
.x1{left:1133.494061px;}
.x50{left:1138.530179px;}
.x88{left:1205.165326px;}
.x32{left:1211.366110px;}
.xd{left:1215.649281px;}
.x6e{left:1217.919585px;}
.x75{left:1233.613425px;}
.x57{left:1273.475236px;}
.x56{left:1286.869767px;}
.x54{left:1289.875626px;}
.x6f{left:1299.517238px;}
.x11{left:1302.469407px;}
.x35{left:1314.150857px;}
.x55{left:1319.318984px;}
.x5{left:1321.519265px;}
.x19{left:1331.994689px;}
.x73{left:1340.571904px;}
.x78{left:1341.869550px;}
.x83{left:1344.959944px;}
.x67{left:1352.816119px;}
.x7e{left:1364.778231px;}
.x3a{left:1378.638835px;}
.x66{left:1380.150102px;}
.x1f{left:1398.341706px;}
.x6b{left:1407.690553px;}
.xb{left:1447.316832px;}
.x39{left:1487.560546px;}
.x12{left:1526.105335px;}
.x3b{left:1544.207187px;}
.x13{left:1563.291673px;}
.x6{left:1567.364695px;}
.x62{left:1571.931835px;}
.x14{left:1579.305344px;}
.x1a{left:1665.372423px;}
.x8e{left:1692.155665px;}
.x84{left:1711.439929px;}
.x8f{left:1728.261133px;}
.x8d{left:1816.010960px;}
.xa{left:1869.466566px;}
.xe{left:2038.499915px;}
.xc{left:2066.959426px;}
@media print{
.v4{vertical-align:-58.708734pt;}
.v7{vertical-align:-27.456383pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.031616pt;}
.v6{vertical-align:9.055616pt;}
.v5{vertical-align:41.505662pt;}
.v3{vertical-align:44.632830pt;}
.v2{vertical-align:145.715322pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010038pt;}
.ws9{word-spacing:-110.844075pt;}
.ws6{word-spacing:-87.585392pt;}
.ws8{word-spacing:-76.263199pt;}
.ws10{word-spacing:-75.974792pt;}
.ws14{word-spacing:-60.741117pt;}
.wsf{word-spacing:-56.435238pt;}
.ws13{word-spacing:-55.165278pt;}
.ws11{word-spacing:-54.786518pt;}
.ws4{word-spacing:-51.303200pt;}
.ws1a{word-spacing:-49.036000pt;}
.ws1e{word-spacing:-43.727998pt;}
.ws19{word-spacing:-40.716000pt;}
.ws0{word-spacing:-40.418558pt;}
.ws17{word-spacing:-38.392000pt;}
.ws2{word-spacing:-34.929439pt;}
.ws1c{word-spacing:-34.127999pt;}
.ws1f{word-spacing:-31.992000pt;}
.ws1d{word-spacing:-27.727999pt;}
.ws21{word-spacing:-26.897428pt;}
.ws20{word-spacing:-26.895998pt;}
.ws7{word-spacing:-24.469920pt;}
.wsa{word-spacing:-22.778537pt;}
.ws1{word-spacing:-22.015999pt;}
.wsd{word-spacing:-21.352898pt;}
.ws12{word-spacing:-19.807999pt;}
.ws15{word-spacing:-18.743999pt;}
.wsb{word-spacing:-17.086543pt;}
.ws18{word-spacing:-15.999999pt;}
.wsc{word-spacing:-15.660904pt;}
.wse{word-spacing:-12.799999pt;}
.ws16{word-spacing:-0.106640pt;}
.ws1b{word-spacing:-0.095960pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:1246.309438pt;}
._13{margin-left:-3331.934215pt;}
._f{margin-left:-14.985520pt;}
._16{margin-left:-12.451335pt;}
._14{margin-left:-11.497470pt;}
._c{margin-left:-9.740309pt;}
._3{margin-left:-8.549313pt;}
._d{margin-left:-7.392373pt;}
._1{margin-left:-6.062649pt;}
._9{margin-left:-4.478983pt;}
._a{margin-left:-3.519105pt;}
._2{margin-left:-2.590633pt;}
._0{margin-left:-1.552068pt;}
._8{width:1.595613pt;}
._7{width:2.643244pt;}
._15{width:5.432946pt;}
._4{width:24.411737pt;}
._6{width:31.308964pt;}
._5{width:54.042463pt;}
._11{width:1589.665549pt;}
._e{width:3274.506542pt;}
._12{width:3835.215507pt;}
._10{width:5234.770161pt;}
._b{width:6017.462836pt;}
.fs4{font-size:53.319997pt;}
.fs12{font-size:58.655072pt;}
.fs11{font-size:63.994544pt;}
.fs5{font-size:63.999997pt;}
.fs1c{font-size:74.639997pt;}
.fs13{font-size:79.973399pt;}
.fs1f{font-size:79.999997pt;}
.fs10{font-size:85.312874pt;}
.fsb{font-size:85.319996pt;}
.fs19{font-size:93.719996pt;}
.fsa{font-size:94.199992pt;}
.fs6{font-size:95.959996pt;}
.fs23{font-size:95.999996pt;}
.fs16{font-size:98.359996pt;}
.fs17{font-size:99.039996pt;}
.fs2f{font-size:100.359996pt;}
.fs14{font-size:101.319996pt;}
.fs7{font-size:106.639996pt;}
.fs3{font-size:111.039995pt;}
.fs18{font-size:115.039995pt;}
.fs2a{font-size:134.479990pt;}
.fs2b{font-size:134.487138pt;}
.fs15{font-size:136.399986pt;}
.fs24{font-size:138.639994pt;}
.fs2e{font-size:147.479990pt;}
.fs1{font-size:151.799998pt;}
.fs21{font-size:156.600001pt;}
.fs25{font-size:159.960001pt;}
.fs2c{font-size:159.999993pt;}
.fse{font-size:170.639993pt;}
.fs9{font-size:171.399985pt;}
.fs1a{font-size:181.320000pt;}
.fs1d{font-size:186.639992pt;}
.fs22{font-size:188.600000pt;}
.fs1b{font-size:191.960000pt;}
.fs2{font-size:194.439996pt;}
.fs8{font-size:197.320000pt;}
.fsd{font-size:202.639992pt;}
.fs1e{font-size:218.639991pt;}
.fsf{font-size:223.999991pt;}
.fs2d{font-size:234.639990pt;}
.fs0{font-size:255.279989pt;}
.fs26{font-size:271.999989pt;}
.fs27{font-size:277.319996pt;}
.fsc{font-size:293.319996pt;}
.fs20{font-size:309.319995pt;}
.fs30{font-size:310.719987pt;}
.fs28{font-size:357.319993pt;}
.fs29{font-size:373.319992pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y126{bottom:7.261939pt;}
.y122{bottom:7.273615pt;}
.y11f{bottom:7.304986pt;}
.y6a{bottom:14.831850pt;}
.y54{bottom:17.798220pt;}
.y36{bottom:20.558124pt;}
.y59{bottom:21.753416pt;}
.y60{bottom:27.686151pt;}
.y4f{bottom:28.674920pt;}
.y64{bottom:28.674952pt;}
.y48{bottom:33.618874pt;}
.y4b{bottom:33.618906pt;}
.y69{bottom:34.607667pt;}
.y5a{bottom:35.596487pt;}
.y32{bottom:37.558123pt;}
.y26{bottom:37.812498pt;}
.y2c{bottom:37.812536pt;}
.y53{bottom:39.551619pt;}
.y58{bottom:41.529233pt;}
.y125{bottom:43.125176pt;}
.y121{bottom:43.136852pt;}
.y11e{bottom:43.168223pt;}
.y5f{bottom:47.461968pt;}
.y4e{bottom:50.428318pt;}
.y63{bottom:50.428350pt;}
.y72{bottom:50.965854pt;}
.y35{bottom:53.558123pt;}
.y28{bottom:53.812497pt;}
.y2e{bottom:53.812535pt;}
.y68{bottom:54.383484pt;}
.y118{bottom:59.315230pt;}
.y52{bottom:61.305017pt;}
.y57{bottom:61.305049pt;}
.y47{bottom:63.282599pt;}
.y4a{bottom:63.282631pt;}
.y5e{bottom:67.237784pt;}
.y30{bottom:70.558122pt;}
.y23{bottom:70.812496pt;}
.y2a{bottom:70.812535pt;}
.y3a{bottom:71.508509pt;}
.y4d{bottom:72.181717pt;}
.y62{bottom:72.181749pt;}
.ya2{bottom:72.290301pt;}
.y71{bottom:72.965853pt;}
.y67{bottom:74.159301pt;}
.y124{bottom:78.988413pt;}
.y11d{bottom:79.031460pt;}
.yc5{bottom:80.402813pt;}
.y56{bottom:81.080866pt;}
.y12{bottom:82.666717pt;}
.y51{bottom:83.058416pt;}
.yb{bottom:84.399996pt;}
.y34{bottom:86.558121pt;}
.y27{bottom:86.812496pt;}
.y2d{bottom:86.812534pt;}
.y5d{bottom:87.013601pt;}
.y66{bottom:93.935118pt;}
.y70{bottom:94.965852pt;}
.y93{bottom:97.343900pt;}
.ya1{bottom:98.290300pt;}
.y39{bottom:100.508508pt;}
.y31{bottom:103.558120pt;}
.y25{bottom:103.812495pt;}
.y2b{bottom:103.812533pt;}
.yc4{bottom:108.402811pt;}
.yb6{bottom:111.988603pt;}
.y135{bottom:112.402811pt;}
.yff{bottom:112.883739pt;}
.y46{bottom:115.896030pt;}
.y6f{bottom:116.965851pt;}
.y92{bottom:119.343899pt;}
.y33{bottom:119.558120pt;}
.y65{bottom:123.641636pt;}
.ya0{bottom:124.290299pt;}
.y38{bottom:129.508507pt;}
.y50{bottom:131.551965pt;}
.y11{bottom:134.419834pt;}
.y6e{bottom:138.965850pt;}
.y5b{bottom:139.424605pt;}
.y137{bottom:139.797562pt;}
.yb5{bottom:139.988602pt;}
.yfe{bottom:141.883738pt;}
.y9f{bottom:150.290298pt;}
.yd1{bottom:153.373978pt;}
.y10{bottom:156.419833pt;}
.y136{bottom:158.797561pt;}
.y6d{bottom:160.965849pt;}
.y21{bottom:165.159993pt;}
.y18{bottom:165.555161pt;}
.yb4{bottom:167.988601pt;}
.yd2{bottom:170.293049pt;}
.yfd{bottom:170.883737pt;}
.yf{bottom:178.419833pt;}
.y6c{bottom:182.965848pt;}
.y4c{bottom:183.529467pt;}
.y5c{bottom:185.342180pt;}
.y17{bottom:187.555160pt;}
.y10d{bottom:188.178200pt;}
.ye5{bottom:191.412728pt;}
.yef{bottom:195.419928pt;}
.yb3{bottom:195.988600pt;}
.ye{bottom:200.419832pt;}
.y6b{bottom:204.965847pt;}
.yf6{bottom:207.129847pt;}
.y2f{bottom:207.976564pt;}
.y16{bottom:209.555159pt;}
.y20{bottom:210.159991pt;}
.ydf{bottom:211.375578pt;}
.ye9{bottom:215.414167pt;}
.yc3{bottom:217.115703pt;}
.yd{bottom:222.419831pt;}
.yd8{bottom:222.919991pt;}
.y42{bottom:223.457015pt;}
.yf5{bottom:229.129846pt;}
.y15{bottom:231.555158pt;}
.y10c{bottom:239.178198pt;}
.ye4{bottom:239.412726pt;}
.yc{bottom:244.419830pt;}
.y115{bottom:245.058902pt;}
.yee{bottom:250.419926pt;}
.yf4{bottom:251.129846pt;}
.y14{bottom:253.555157pt;}
.yad{bottom:256.023778pt;}
.yc2{bottom:261.115701pt;}
.ye8{bottom:263.414165pt;}
.yde{bottom:266.375576pt;}
.y112{bottom:270.031157pt;}
.y117{bottom:271.560309pt;}
.yf3{bottom:273.129845pt;}
.yfc{bottom:275.459957pt;}
.y13{bottom:275.555157pt;}
.y91{bottom:276.792724pt;}
.yd7{bottom:277.919988pt;}
.y41{bottom:278.457012pt;}
.ye3{bottom:287.412724pt;}
.y106{bottom:289.556820pt;}
.y10b{bottom:290.178196pt;}
.y98{bottom:293.577018pt;}
.yca{bottom:294.215796pt;}
.ycd{bottom:295.744916pt;}
.y123{bottom:296.959997pt;}
.y12e{bottom:297.642292pt;}
.y114{bottom:298.058900pt;}
.y7{bottom:298.492404pt;}
.y8c{bottom:299.751796pt;}
.y90{bottom:302.792723pt;}
.yed{bottom:305.419923pt;}
.y49{bottom:306.153206pt;}
.y9e{bottom:307.223776pt;}
.y1e{bottom:307.791155pt;}
.y11c{bottom:307.839996pt;}
.yac{bottom:311.023776pt;}
.ye7{bottom:311.414163pt;}
.y120{bottom:314.879996pt;}
.ydd{bottom:321.375574pt;}
.yc7{bottom:322.246323pt;}
.y111{bottom:323.031155pt;}
.y116{bottom:324.560306pt;}
.y61{bottom:326.711541pt;}
.y8b{bottom:326.751794pt;}
.y8f{bottom:328.792722pt;}
.yd6{bottom:332.919986pt;}
.y11b{bottom:333.451314pt;}
.y40{bottom:333.457010pt;}
.y133{bottom:335.195538pt;}
.ye2{bottom:335.412722pt;}
.y55{bottom:338.506164pt;}
.y105{bottom:340.556818pt;}
.y10a{bottom:341.178194pt;}
.yfb{bottom:345.459954pt;}
.yc9{bottom:347.215794pt;}
.yf2{bottom:347.724210pt;}
.ycc{bottom:348.744913pt;}
.y6{bottom:349.209905pt;}
.y113{bottom:351.058897pt;}
.y97{bottom:351.577016pt;}
.y8a{bottom:353.751793pt;}
.y8e{bottom:354.792721pt;}
.y12d{bottom:357.642289pt;}
.yec{bottom:360.419921pt;}
.y29{bottom:365.536096pt;}
.yab{bottom:366.023774pt;}
.y9d{bottom:368.223773pt;}
.y11a{bottom:369.451313pt;}
.yf1{bottom:369.724209pt;}
.yc6{bottom:375.246320pt;}
.y89{bottom:375.310992pt;}
.ydc{bottom:376.375572pt;}
.y8d{bottom:380.792720pt;}
.yd9{bottom:387.919984pt;}
.y3f{bottom:388.457008pt;}
.y104{bottom:391.556816pt;}
.yf0{bottom:391.724208pt;}
.y109{bottom:392.178192pt;}
.y76{bottom:397.430287pt;}
.y85{bottom:399.345455pt;}
.yc8{bottom:400.215791pt;}
.y88{bottom:401.310991pt;}
.ycb{bottom:401.744911pt;}
.y131{bottom:406.889983pt;}
.ye6{bottom:407.414159pt;}
.y96{bottom:409.577013pt;}
.yeb{bottom:415.419919pt;}
.yfa{bottom:415.459951pt;}
.y12c{bottom:417.642287pt;}
.yaa{bottom:421.023771pt;}
.y87{bottom:427.310990pt;}
.y9c{bottom:429.223771pt;}
.y84{bottom:431.345454pt;}
.ydb{bottom:431.375569pt;}
.ye1{bottom:431.412718pt;}
.y75{bottom:435.430286pt;}
.ybf{bottom:438.184942pt;}
.y103{bottom:442.556814pt;}
.yd5{bottom:442.919982pt;}
.y108{bottom:443.178190pt;}
.y3e{bottom:443.457006pt;}
.y1f{bottom:446.788365pt;}
.y86{bottom:453.310989pt;}
.y7d{bottom:463.670137pt;}
.y5{bottom:463.732518pt;}
.y95{bottom:467.577011pt;}
.y110{bottom:469.130956pt;}
.ybb{bottom:471.490956pt;}
.ya9{bottom:476.023769pt;}
.y12b{bottom:477.642284pt;}
.y130{bottom:481.889980pt;}
.ybe{bottom:482.184940pt;}
.yf9{bottom:485.459948pt;}
.y1d{bottom:488.346540pt;}
.y1c{bottom:488.455525pt;}
.y9b{bottom:490.223768pt;}
.y7c{bottom:490.670136pt;}
.yc1{bottom:493.488104pt;}
.y102{bottom:493.556811pt;}
.y107{bottom:494.178187pt;}
.y83{bottom:495.441503pt;}
.yb2{bottom:497.668418pt;}
.yd4{bottom:497.919979pt;}
.yaf{bottom:506.551540pt;}
.yd0{bottom:511.301931pt;}
.y127{bottom:512.394705pt;}
.yba{bottom:515.490955pt;}
.y7b{bottom:517.670135pt;}
.y43{bottom:519.817009pt;}
.yea{bottom:519.898103pt;}
.y82{bottom:522.441501pt;}
.y24{bottom:523.350144pt;}
.y94{bottom:525.577009pt;}
.ybd{bottom:526.184938pt;}
.ya8{bottom:531.023767pt;}
.y4{bottom:535.732515pt;}
.yc0{bottom:537.488102pt;}
.y12a{bottom:537.642282pt;}
.yda{bottom:541.375565pt;}
.y1b{bottom:543.455523pt;}
.y10f{bottom:543.526851pt;}
.ye0{bottom:544.495565pt;}
.y7a{bottom:544.670134pt;}
.y9a{bottom:551.223766pt;}
.yb1{bottom:552.668415pt;}
.y12f{bottom:556.889977pt;}
.yb9{bottom:559.490953pt;}
.y81{bottom:563.382399pt;}
.ycf{bottom:566.301928pt;}
.ybc{bottom:570.184936pt;}
.yae{bottom:576.551538pt;}
.y79{bottom:576.914779pt;}
.y80{bottom:590.382398pt;}
.y132{bottom:591.950795pt;}
.y3d{bottom:594.212945pt;}
.y129{bottom:597.642279pt;}
.y1a{bottom:598.455521pt;}
.y78{bottom:603.914778pt;}
.yb0{bottom:607.668413pt;}
.y3{bottom:607.732512pt;}
.y99{bottom:612.223763pt;}
.y7f{bottom:617.382397pt;}
.y77{bottom:630.914777pt;}
.ya{bottom:637.511225pt;}
.y7e{bottom:644.382396pt;}
.y19{bottom:653.455518pt;}
.y128{bottom:657.642277pt;}
.y101{bottom:677.632394pt;}
.y2{bottom:679.732509pt;}
.y22{bottom:681.164083pt;}
.y9{bottom:704.860675pt;}
.y119{bottom:713.560185pt;}
.y8{bottom:723.860674pt;}
.yb8{bottom:725.468328pt;}
.yf8{bottom:727.419227pt;}
.y74{bottom:733.453915pt;}
.y134{bottom:737.455966pt;}
.y45{bottom:750.283815pt;}
.y3c{bottom:754.873895pt;}
.y100{bottom:755.632391pt;}
.ya7{bottom:757.683943pt;}
.y73{bottom:761.453914pt;}
.yce{bottom:763.926336pt;}
.y10e{bottom:775.691276pt;}
.yf7{bottom:803.419224pt;}
.ya4{bottom:806.250894pt;}
.yb7{bottom:812.468325pt;}
.y44{bottom:813.283813pt;}
.ya6{bottom:817.683940pt;}
.y3b{bottom:836.873892pt;}
.yd3{bottom:844.840394pt;}
.ya5{bottom:877.683938pt;}
.ya3{bottom:888.250891pt;}
.y37{bottom:892.988264pt;}
.h7{height:37.803878pt;}
.h8{height:45.375998pt;}
.h26{height:45.759998pt;}
.h22{height:45.868266pt;}
.h27{height:46.783998pt;}
.ha{height:48.831998pt;}
.h21{height:50.043734pt;}
.h31{height:56.950318pt;}
.h17{height:61.003797pt;}
.h3b{height:61.039997pt;}
.h18{height:62.368917pt;}
.h23{height:62.539198pt;}
.h20{height:66.714667pt;}
.h9{height:67.171997pt;}
.h2e{height:68.509317pt;}
.h5c{height:70.251997pt;}
.h38{height:70.399997pt;}
.h2c{height:70.714557pt;}
.h28{height:70.923997pt;}
.h13{height:71.569916pt;}
.h2a{height:71.901157pt;}
.h14{height:72.167865pt;}
.h2b{height:72.398237pt;}
.h42{height:72.907106pt;}
.h41{height:72.937497pt;}
.he{height:76.126794pt;}
.hc{height:76.543356pt;}
.hb{height:77.220270pt;}
.h43{height:77.324411pt;}
.h4e{height:77.385237pt;}
.h58{height:77.439997pt;}
.h6{height:77.727997pt;}
.h2d{height:82.138557pt;}
.h3c{height:85.182409pt;}
.h29{height:95.479990pt;}
.h55{height:98.304873pt;}
.h57{height:98.310098pt;}
.h49{height:99.127596pt;}
.h48{height:101.345836pt;}
.h5b{height:107.807873pt;}
.h1f{height:109.755778pt;}
.h4b{height:113.251681pt;}
.h56{height:113.279995pt;}
.h50{height:114.371401pt;}
.h59{height:114.399995pt;}
.h25{height:116.677339pt;}
.h32{height:118.725932pt;}
.h11{height:119.979989pt;}
.h10{height:120.151389pt;}
.h1c{height:120.301195pt;}
.h45{height:120.813115pt;}
.h40{height:121.666315pt;}
.h35{height:122.007595pt;}
.h24{height:122.610072pt;}
.h3a{height:123.244201pt;}
.h34{height:124.737835pt;}
.h19{height:126.331147pt;}
.h44{height:129.515755pt;}
.h2f{height:129.643800pt;}
.h47{height:141.248280pt;}
.h1d{height:142.050634pt;}
.h33{height:145.952474pt;}
.h5{height:146.167253pt;}
.h1b{height:148.129834pt;}
.h53{height:148.428200pt;}
.h4a{height:150.112720pt;}
.h46{height:152.722794pt;}
.h51{height:153.712280pt;}
.h37{height:154.304240pt;}
.hd{height:155.290840pt;}
.h4d{height:156.327593pt;}
.h16{height:157.558118pt;}
.h12{height:157.812493pt;}
.h15{height:157.812531pt;}
.h36{height:172.069673pt;}
.h1e{height:174.495993pt;}
.h30{height:174.683600pt;}
.h3e{height:178.038400pt;}
.h3{height:198.863112pt;}
.h4{height:199.628952pt;}
.h4c{height:211.887991pt;}
.h5a{height:213.522391pt;}
.h4f{height:216.864237pt;}
.h1a{height:228.496277pt;}
.h3f{height:241.888236pt;}
.h5d{height:242.672310pt;}
.h39{height:243.434836pt;}
.hf{height:265.866711pt;}
.h54{height:280.736634pt;}
.h52{height:281.210835pt;}
.h3d{height:291.998075pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w7{width:109.755778pt;}
.w8{width:109.755797pt;}
.wa{width:116.677339pt;}
.w9{width:122.610072pt;}
.wb{width:218.239991pt;}
.wc{width:233.279990pt;}
.wd{width:246.079990pt;}
.we{width:251.199990pt;}
.w4{width:288.671863pt;}
.w5{width:295.999988pt;}
.w2{width:311.640592pt;}
.w3{width:354.999947pt;}
.w6{width:354.999985pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x38{left:3.707998pt;}
.x27{left:4.619510pt;}
.x16{left:8.000000pt;}
.x2b{left:11.371082pt;}
.x25{left:13.503178pt;}
.x2a{left:14.754600pt;}
.x21{left:16.531346pt;}
.x34{left:17.906362pt;}
.x22{left:19.080572pt;}
.x24{left:20.424714pt;}
.x30{left:22.973969pt;}
.x33{left:24.318052pt;}
.x28{left:27.701596pt;}
.x36{left:30.312651pt;}
.x31{left:32.970027pt;}
.x37{left:34.020617pt;}
.x82{left:43.097095pt;}
.x7{left:50.330996pt;}
.x85{left:64.318719pt;}
.x87{left:69.599815pt;}
.x8{left:82.424745pt;}
.x9{left:87.122339pt;}
.x10{left:88.637984pt;}
.x58{left:107.999996pt;}
.x20{left:148.178876pt;}
.x5b{left:171.300697pt;}
.x5f{left:188.408370pt;}
.x1b{left:190.495909pt;}
.x8c{left:194.149357pt;}
.x7c{left:199.863313pt;}
.x80{left:201.158898pt;}
.x63{left:204.238839pt;}
.xf{left:208.321047pt;}
.x23{left:226.135207pt;}
.x15{left:228.649229pt;}
.x74{left:231.446125pt;}
.x69{left:243.154422pt;}
.x5d{left:253.062489pt;}
.x76{left:254.885730pt;}
.x6a{left:256.537918pt;}
.x6d{left:261.799421pt;}
.x70{left:275.678798pt;}
.x5c{left:283.167918pt;}
.x5e{left:294.414871pt;}
.x7a{left:302.971277pt;}
.x1c{left:304.920768pt;}
.x79{left:306.870221pt;}
.x71{left:316.812038pt;}
.x41{left:318.629810pt;}
.x26{left:326.038054pt;}
.x3f{left:327.301684pt;}
.x5a{left:334.535416pt;}
.x40{left:338.692309pt;}
.x3e{left:341.567309pt;}
.x3c{left:346.372857pt;}
.x77{left:347.807601pt;}
.x3d{left:348.825982pt;}
.x42{left:350.254808pt;}
.x72{left:375.733911pt;}
.x1d{left:420.741292pt;}
.x65{left:429.482560pt;}
.x59{left:437.601641pt;}
.x64{left:450.123184pt;}
.x29{left:471.410252pt;}
.x45{left:475.287364pt;}
.x46{left:488.427988pt;}
.x43{left:491.834238pt;}
.x44{left:497.756113pt;}
.x81{left:508.799979pt;}
.x60{left:532.306266pt;}
.x17{left:540.293929pt;}
.x89{left:565.899704pt;}
.x2c{left:571.673727pt;}
.x7f{left:594.382460pt;}
.x8b{left:603.081223pt;}
.x8a{left:636.884076pt;}
.x48{left:644.393218pt;}
.x4a{left:646.658843pt;}
.x49{left:653.440093pt;}
.x4d{left:658.049468pt;}
.x47{left:671.721342pt;}
.x6c{left:686.479907pt;}
.x7d{left:706.657795pt;}
.x68{left:714.868962pt;}
.x2d{left:751.042145pt;}
.x53{left:805.155271pt;}
.x4b{left:821.772232pt;}
.x52{left:829.092770pt;}
.x86{left:834.239965pt;}
.x51{left:835.264645pt;}
.x4c{left:837.944106pt;}
.x2e{left:846.361693pt;}
.x1e{left:885.197064pt;}
.x7b{left:888.310124pt;}
.x18{left:895.314171pt;}
.x3{left:968.878398pt;}
.x2{left:974.050277pt;}
.x4e{left:977.839327pt;}
.x2f{left:982.221527pt;}
.x61{left:984.190807pt;}
.x4{left:995.175277pt;}
.x4f{left:997.620576pt;}
.x1{left:1007.550276pt;}
.x50{left:1012.026826pt;}
.x88{left:1071.258067pt;}
.x32{left:1076.769875pt;}
.xd{left:1080.577139pt;}
.x6e{left:1082.595187pt;}
.x75{left:1096.545266pt;}
.x57{left:1131.977988pt;}
.x56{left:1143.884237pt;}
.x54{left:1146.556112pt;}
.x6f{left:1155.126434pt;}
.x11{left:1157.750584pt;}
.x35{left:1168.134095pt;}
.x55{left:1172.727986pt;}
.x5{left:1174.683791pt;}
.x19{left:1183.995279pt;}
.x73{left:1191.619470pt;}
.x78{left:1192.772933pt;}
.x83{left:1195.519950pt;}
.x67{left:1202.503217pt;}
.x7e{left:1213.136205pt;}
.x3a{left:1225.456742pt;}
.x66{left:1226.800091pt;}
.x1f{left:1242.970405pt;}
.x6b{left:1251.280492pt;}
.xb{left:1286.503850pt;}
.x39{left:1322.276041pt;}
.x12{left:1356.538075pt;}
.x3b{left:1372.628611pt;}
.x13{left:1389.592598pt;}
.x6{left:1393.213062pt;}
.x62{left:1397.272742pt;}
.x14{left:1403.826973pt;}
.x1a{left:1480.331042pt;}
.x8e{left:1504.138369pt;}
.x84{left:1521.279937pt;}
.x8f{left:1536.232118pt;}
.x8d{left:1614.231965pt;}
.xa{left:1661.748059pt;}
.xe{left:1811.999925pt;}
.xc{left:1837.297267pt;}
}




    .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; }
  