
    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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006000;font-style:normal;font-weight: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_c7fcaf279b91227510a1b4fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;font-style:normal;font-weight: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_af23b3097e6fbae3b600abc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008000;font-style:normal;font-weight: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_767da1dbdbfaeefa21d094f9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e87cca2147ab900452af2f76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975000;font-style:normal;font-weight: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_7fc4f7185abcbb25aceb8c90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996000;font-style:normal;font-weight: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_e6779501a8b987e53a74de9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006000;font-style:normal;font-weight: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_cec37920ccfeb65b85cbad68.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;font-style:normal;font-weight: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_1888e4a7a9cf9b523dca1e15.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008000;font-style:normal;font-weight: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_790cf2ae58252fafac815152.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.996000;font-style:normal;font-weight: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_74881569dd7b2e9e1b86cc39.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fc87e7bf71588626a567d152.woff2')format("woff");}.fff{font-family:fff;line-height:1.006000;font-style:normal;font-weight: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_1fec490c0e9d980cc15e41d9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.732000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006000;font-style:normal;font-weight: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_8c730c1975ed6505ab210f07.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.008000;font-style:normal;font-weight: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_24feaeee404fbfcf92ab2d6c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.718000;font-style:normal;font-weight: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_62b7cc251df6922a4ba5e558.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.026000;font-style:normal;font-weight: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_84620d3ced7eb2b1da293374.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.950000;font-style:normal;font-weight: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_c2a8e09d27762b382f08944b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.776000;font-style:normal;font-weight: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_818809430ce80b6ae23ce7ed.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.730000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006000;font-style:normal;font-weight: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_5ad0896652c440173d13c519.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.730000;font-style:normal;font-weight: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_2a7ed8f9e4890ea3b4b0a8ef.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_59f095814ebea35da2cde9d7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.766000;font-style:normal;font-weight: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_89ad52ac1549f2fe19c811a8.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.008000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.006000;font-style:normal;font-weight: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_4b297ccb547201bebda246cc.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.718000;font-style:normal;font-weight: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_3fc6f4dfd36b386214fa1b07.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_78b85bf5bc82218dfb01eb9d.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.006000;font-style:normal;font-weight: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_04a913e30d9ac1ce57185f08.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.008000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.006000;font-style:normal;font-weight: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_45d48108afc33416a0547ca1.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.008000;font-style:normal;font-weight: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_45a575b327b06073522b54f2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.008000;font-style:normal;font-weight: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_d6f4b1003d1486c0a5331b40.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.768000;font-style:normal;font-weight: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_eca5553b0f63ae6e801f8e62.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.976000;font-style:normal;font-weight: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_1d0fe63cac2c9f8757633232.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.776000;font-style:normal;font-weight: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_db15c90a55942cf3e18295ac.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.732000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.006000;font-style:normal;font-weight: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_53522cbe09890d464f0798bc.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.008000;font-style:normal;font-weight: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_263321b75d618addc8e5892c.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.768000;font-style:normal;font-weight: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_b87461a986cf6e4a83b4731e.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.976000;font-style:normal;font-weight: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_0b9e6a098b993e65d477dc08.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.006000;font-style:normal;font-weight: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_d1cb14417107e9a44df27bbc.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.720000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.006000;font-style:normal;font-weight: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_46a50e538f8451b8e4f34e27.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.008000;font-style:normal;font-weight: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_7a4a3c0ee8eb44e423e07b7c.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.732000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.006000;font-style:normal;font-weight: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_5fbb039142f1b5f28c6ae464.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.008000;font-style:normal;font-weight: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_038126b953f1fc945bfde010.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.718000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.006000;font-style:normal;font-weight: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_2682b5ffbfecf13d2ada55cb.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.142000;font-style:normal;font-weight: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_afdc200ce8484a47bfac7cc7.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_9c5229b294e790bd1233b5cd.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.006000;font-style:normal;font-weight: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_1cdae9516053c5d52d748d22.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.720000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.006000;font-style:normal;font-weight: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_3b4b04c347e1b55e3921137c.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.732000;font-style:normal;font-weight: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_6f11c9fd9d4c04ae8fdf3d8a.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.950000;font-style:normal;font-weight: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_895a9b520ce896f880f04e10.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.776000;font-style:normal;font-weight: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_ec6bf91c00711e156f72894e.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.008000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.006000;font-style:normal;font-weight: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_eec31339cf2cddb2615cc3b5.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.718000;font-style:normal;font-weight: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_24e4c03c0e9ec31a2e222813.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.950000;font-style:normal;font-weight: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_94f0a659f85dd35cdfcb7a8d.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.008000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff4f{font-family:ff4f;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:ff50;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.006000;font-style:normal;font-weight: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_a491030ad49f2af2c1a31a37.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.008000;font-style:normal;font-weight: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_69dac103c607d03be702dfae.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.976000;font-style:normal;font-weight: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_e87cca2147ab900452af2f76.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.975000;font-style:normal;font-weight: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_f865b169652e6587203777e3.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.730000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff55{font-family:ff55;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:ff56;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.006000;font-style:normal;font-weight: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_0cea8ba4ced4ab90ef9bc390.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.008000;font-style:normal;font-weight: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_c0984ab319fd11821b58783f.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.730000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff59{font-family:ff59;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:ff5a;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.006000;font-style:normal;font-weight: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_6db13ab2284311e77137daff.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.026000;font-style:normal;font-weight: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_fa16d724a49b488b3a5186d1.woff2')format("woff");}.ff5c{font-family:ff5c;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:ff5d;src:url('chunks/assets/font_8a8aa4d6cafcb7e6dddfe48e.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.718000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff5e{font-family:ff5e;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:ff5f;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.006000;font-style:normal;font-weight: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_1e1efb99b032fd7cec63c39b.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.008000;font-style:normal;font-weight: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_3975f769d8f3a9ba4be959d5.woff2')format("woff");}.ff61{font-family:ff61;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:ff62;src:url('chunks/assets/font_cb6f5eb1c3d0347288b76ea9.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.006000;font-style:normal;font-weight: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_31a61ed004dcbe5e66bdd6c1.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.732000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff64{font-family:ff64;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:ff65;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.006000;font-style:normal;font-weight: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_58e72be0f656ce9eb0a8e5e7.woff2')format("woff");}.ff66{font-family:ff66;line-height:1.008000;font-style:normal;font-weight: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_efaca0658156ea45b940d06b.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.950000;font-style:normal;font-weight: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_e87cca2147ab900452af2f76.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.975000;font-style:normal;font-weight: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_283041bea7a16dfce008826a.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.720000;font-style:normal;font-weight: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_61e56abcb95ad944a00eb414.woff2')format("woff");}.ff6a{font-family:ff6a;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:ff6b;src:url('chunks/assets/font_58e696f8fb0149c55e372b2a.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.006000;font-style:normal;font-weight: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_7085fade7c2d48ea3af968fc.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:1.038000;font-style:normal;font-weight: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_c7fcaf279b91227510a1b4fc.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.050000;font-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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000052px;}
.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;}
}
.ws0{word-spacing:-67.101247px;}
.ws11{word-spacing:-54.155945px;}
.ws8{word-spacing:-53.867881px;}
.ws7{word-spacing:-50.155470px;}
.ws17{word-spacing:-47.124926px;}
.ws4{word-spacing:-46.704917px;}
.ws3{word-spacing:-46.090166px;}
.wsf{word-spacing:-40.320792px;}
.ws14{word-spacing:-40.047089px;}
.ws15{word-spacing:-36.877895px;}
.ws1{word-spacing:-34.686919px;}
.ws9{word-spacing:-27.846142px;}
.ws16{word-spacing:-24.773464px;}
.wsd{word-spacing:-24.360478px;}
.ws6{word-spacing:-23.352459px;}
.wse{word-spacing:-21.672426px;}
.ws10{word-spacing:-20.023597px;}
.ws13{word-spacing:-20.023544px;}
.ws18{word-spacing:-18.346572px;}
.ws12{word-spacing:-17.286513px;}
.wsb{word-spacing:-16.682115px;}
.ws2{word-spacing:-15.017658px;}
.wsa{word-spacing:-12.014127px;}
.wsc{word-spacing:-9.999257px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-15.067518px;}
._7{margin-left:-4.806646px;}
._a{margin-left:-3.617300px;}
._4{margin-left:-2.593707px;}
._3{margin-left:-1.295887px;}
._9{width:7.243792px;}
._0{width:8.274550px;}
._6{width:16.312252px;}
._8{width:46.454713px;}
._1{width:77.327842px;}
._2{width:1517.116800px;}
.fc3{color:transparent;}
.fc1{color:rgb(15,17,18);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.968551px;}
.fs6{font-size:43.216285px;}
.fs2{font-size:54.020354px;}
.fs7{font-size:60.007609px;}
.fsb{font-size:65.994864px;}
.fsc{font-size:71.982120px;}
.fs9{font-size:72.005014px;}
.fs1{font-size:72.027138px;}
.fs4{font-size:84.001650px;}
.fsa{font-size:84.010016px;}
.fs5{font-size:89.403690px;}
.fs3{font-size:96.021179px;}
.fs0{font-size:119.610066px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y1b0{bottom:5.631074px;}
.y1af{bottom:33.142541px;}
.y21b{bottom:40.011311px;}
.yb{bottom:47.352179px;}
.y45{bottom:52.034733px;}
.y21a{bottom:55.767248px;}
.y1ae{bottom:60.654008px;}
.ya{bottom:63.108115px;}
.y219{bottom:71.523184px;}
.y9{bottom:78.864052px;}
.y1ad{bottom:88.165475px;}
.y218{bottom:99.972281px;}
.y8{bottom:107.313329px;}
.y1ac{bottom:115.676941px;}
.y217{bottom:124.731610px;}
.y20e{bottom:129.270999px;}
.y7{bottom:132.072657px;}
.y1ab{bottom:143.188408px;}
.y20d{bottom:149.528632px;}
.y1ee{bottom:151.309779px;}
.y89{bottom:154.307150px;}
.y216{bottom:156.028504px;}
.y6{bottom:163.369552px;}
.y1d1{bottom:167.364918px;}
.y102{bottom:170.013977px;}
.y1aa{bottom:170.699875px;}
.y88{bottom:173.439359px;}
.y1ed{bottom:173.818259px;}
.y20c{bottom:190.043897px;}
.y1d0{bottom:190.998823px;}
.y87{bottom:192.571567px;}
.y101{bottom:193.647881px;}
.y8a{bottom:199.324111px;}
.y1cf{bottom:214.632728px;}
.y100{bottom:217.281786px;}
.y1ec{bottom:218.835221px;}
.y20b{bottom:230.559162px;}
.y1e{bottom:232.233498px;}
.y124{bottom:234.292080px;}
.y1eb{bottom:241.343701px;}
.ye2{bottom:241.986626px;}
.y20a{bottom:250.816795px;}
.y1d{bottom:255.867402px;}
.y123{bottom:257.925985px;}
.y1ce{bottom:261.900537px;}
.yff{bottom:264.549595px;}
.ye1{bottom:265.620531px;}
.y62{bottom:266.563414px;}
.ya5{bottom:267.016683px;}
.y1c{bottom:279.501307px;}
.y122{bottom:281.559889px;}
.y42{bottom:283.758780px;}
.y19d{bottom:283.991611px;}
.y1cd{bottom:285.534442px;}
.y1ea{bottom:286.360663px;}
.yfe{bottom:288.183500px;}
.ye0{bottom:289.254435px;}
.y61{bottom:290.197318px;}
.ya4{bottom:290.650587px;}
.y209{bottom:291.332060px;}
.y215{bottom:299.125527px;}
.y1a9{bottom:301.379343px;}
.y1b{bottom:303.135212px;}
.y121{bottom:305.193794px;}
.y19c{bottom:307.625516px;}
.y1e9{bottom:308.869143px;}
.y1cc{bottom:309.168346px;}
.y41{bottom:310.768957px;}
.y208{bottom:311.589693px;}
.yfd{bottom:311.817405px;}
.ydf{bottom:312.888340px;}
.yc2{bottom:313.821179px;}
.y60{bottom:313.831223px;}
.ya3{bottom:314.284492px;}
.y214{bottom:320.508584px;}
.y1a8{bottom:325.139246px;}
.y1a{bottom:326.769116px;}
.y120{bottom:328.827699px;}
.y19b{bottom:331.259421px;}
.y1cb{bottom:332.802251px;}
.yfc{bottom:335.451310px;}
.yde{bottom:336.522245px;}
.yc1{bottom:337.455084px;}
.y5f{bottom:337.465128px;}
.y40{bottom:337.779134px;}
.ya2{bottom:337.918397px;}
.y213{bottom:341.891640px;}
.y183{bottom:347.729769px;}
.y1a7{bottom:348.899149px;}
.y19{bottom:350.403021px;}
.y207{bottom:352.104958px;}
.y11f{bottom:352.461603px;}
.y1e8{bottom:353.886105px;}
.y19a{bottom:354.893325px;}
.y1ca{bottom:356.436156px;}
.yfb{bottom:359.085214px;}
.ydd{bottom:360.156149px;}
.yc0{bottom:361.088989px;}
.ya1{bottom:361.552301px;}
.y212{bottom:363.274697px;}
.y3f{bottom:364.789310px;}
.y86{bottom:369.263140px;}
.y182{bottom:371.363674px;}
.y1a6{bottom:372.659052px;}
.y18{bottom:374.036926px;}
.y11e{bottom:376.095508px;}
.y1e7{bottom:376.394585px;}
.y199{bottom:378.527230px;}
.y1c9{bottom:380.070060px;}
.yfa{bottom:382.719119px;}
.ydc{bottom:383.790054px;}
.y211{bottom:384.657753px;}
.ybf{bottom:384.722893px;}
.y5e{bottom:384.732937px;}
.ya0{bottom:385.186206px;}
.y166{bottom:390.696813px;}
.y3e{bottom:391.799487px;}
.y206{bottom:392.620223px;}
.y85{bottom:392.897045px;}
.y181{bottom:394.997579px;}
.y1a5{bottom:396.418955px;}
.y17{bottom:397.670831px;}
.y11d{bottom:399.729413px;}
.y198{bottom:402.161135px;}
.y1c8{bottom:403.703965px;}
.y210{bottom:406.040810px;}
.yf9{bottom:406.353024px;}
.ydb{bottom:407.423959px;}
.ybe{bottom:408.356798px;}
.y5d{bottom:408.366842px;}
.y9f{bottom:408.820111px;}
.y205{bottom:412.877856px;}
.y165{bottom:414.330718px;}
.y84{bottom:416.530950px;}
.y180{bottom:418.631483px;}
.y13f{bottom:418.697836px;}
.y3d{bottom:418.809664px;}
.y16{bottom:421.304735px;}
.y1e6{bottom:421.411547px;}
.y197{bottom:425.795040px;}
.y1c7{bottom:427.337870px;}
.yf8{bottom:429.986928px;}
.yda{bottom:431.057863px;}
.ybd{bottom:431.990703px;}
.y5c{bottom:432.000747px;}
.y9e{bottom:432.454015px;}
.y164{bottom:437.964622px;}
.y83{bottom:440.164854px;}
.y17f{bottom:442.265388px;}
.y13e{bottom:442.331740px;}
.y1e5{bottom:443.920027px;}
.y1a4{bottom:443.938762px;}
.y11c{bottom:446.997222px;}
.y196{bottom:449.428944px;}
.y204{bottom:453.393121px;}
.yf7{bottom:453.620833px;}
.yd9{bottom:454.691768px;}
.ybc{bottom:455.624607px;}
.y5b{bottom:455.634651px;}
.y163{bottom:461.598527px;}
.y82{bottom:463.798759px;}
.y17e{bottom:465.899293px;}
.y13d{bottom:465.965645px;}
.y1a3{bottom:467.698665px;}
.y15{bottom:468.572545px;}
.y11b{bottom:470.631127px;}
.y195{bottom:473.062849px;}
.y1c6{bottom:474.605679px;}
.yf6{bottom:477.254738px;}
.yd8{bottom:478.325673px;}
.ybb{bottom:479.258512px;}
.y5a{bottom:479.268556px;}
.y9d{bottom:479.721825px;}
.y81{bottom:487.432664px;}
.y1e4{bottom:488.936989px;}
.y17d{bottom:489.533197px;}
.y13c{bottom:489.599550px;}
.y1a2{bottom:491.458568px;}
.y14{bottom:492.206449px;}
.y203{bottom:493.908386px;}
.y11a{bottom:494.265031px;}
.y194{bottom:496.696754px;}
.y1c5{bottom:498.239584px;}
.yf5{bottom:500.888642px;}
.yd7{bottom:501.959578px;}
.yba{bottom:502.892417px;}
.y59{bottom:502.902461px;}
.y9c{bottom:503.355730px;}
.y162{bottom:508.866336px;}
.y80{bottom:511.066568px;}
.y1e3{bottom:511.445469px;}
.y17c{bottom:513.167102px;}
.y13b{bottom:513.233454px;}
.y202{bottom:514.166019px;}
.y1a1{bottom:515.218471px;}
.y3c{bottom:515.596131px;}
.y13{bottom:515.840354px;}
.y119{bottom:517.898936px;}
.y19e{bottom:519.614999px;}
.y193{bottom:520.330658px;}
.y1c4{bottom:521.873489px;}
.yf4{bottom:524.522547px;}
.yd6{bottom:525.593482px;}
.yb9{bottom:526.526321px;}
.y58{bottom:526.536365px;}
.y9b{bottom:526.989634px;}
.y161{bottom:532.500241px;}
.y7f{bottom:534.700473px;}
.y17b{bottom:536.801007px;}
.y13a{bottom:536.867359px;}
.y1a0{bottom:538.978374px;}
.y3b{bottom:539.230035px;}
.y12{bottom:539.474259px;}
.y118{bottom:541.532841px;}
.y192{bottom:543.964563px;}
.y1c3{bottom:545.507393px;}
.yf3{bottom:548.156452px;}
.yd5{bottom:549.227387px;}
.y57{bottom:550.170270px;}
.y9a{bottom:550.623539px;}
.y201{bottom:554.681284px;}
.y160{bottom:556.134146px;}
.y1e2{bottom:556.462430px;}
.y7e{bottom:558.334378px;}
.y17a{bottom:560.434912px;}
.y139{bottom:560.501264px;}
.y19f{bottom:562.738278px;}
.y3a{bottom:562.863940px;}
.y11{bottom:563.108163px;}
.y117{bottom:565.166746px;}
.y191{bottom:567.598468px;}
.y1c2{bottom:569.141298px;}
.yf2{bottom:571.790356px;}
.yd4{bottom:572.861292px;}
.yb8{bottom:573.794131px;}
.y56{bottom:573.804175px;}
.y99{bottom:574.257444px;}
.y1e1{bottom:578.970911px;}
.y15f{bottom:579.768050px;}
.y7d{bottom:581.968283px;}
.y179{bottom:584.068816px;}
.y39{bottom:586.497845px;}
.y10{bottom:586.742068px;}
.y116{bottom:588.800650px;}
.y190{bottom:591.232372px;}
.y200{bottom:595.196549px;}
.yf1{bottom:595.424261px;}
.yd3{bottom:596.495196px;}
.yb7{bottom:597.428036px;}
.y55{bottom:597.438080px;}
.y98{bottom:597.891348px;}
.y15e{bottom:603.401955px;}
.y178{bottom:607.702721px;}
.y138{bottom:607.769073px;}
.y38{bottom:610.131750px;}
.yf{bottom:610.375973px;}
.y115{bottom:612.434555px;}
.y18f{bottom:614.866277px;}
.y1c1{bottom:616.409107px;}
.yf0{bottom:619.058166px;}
.yd2{bottom:620.129101px;}
.yb6{bottom:621.061940px;}
.y54{bottom:621.071984px;}
.y97{bottom:621.525253px;}
.y1e0{bottom:623.987872px;}
.y7c{bottom:629.236092px;}
.y185{bottom:631.336626px;}
.y137{bottom:631.402978px;}
.y37{bottom:633.765654px;}
.ye{bottom:634.009878px;}
.y1ff{bottom:635.711814px;}
.y114{bottom:636.068460px;}
.y1c0{bottom:640.043012px;}
.yef{bottom:642.692071px;}
.yb5{bottom:644.695845px;}
.y53{bottom:644.705889px;}
.y1df{bottom:646.496353px;}
.y15d{bottom:650.669765px;}
.y7b{bottom:652.869997px;}
.y177{bottom:654.970530px;}
.y136{bottom:655.036883px;}
.y1fe{bottom:655.969447px;}
.y36{bottom:657.399559px;}
.yd1{bottom:657.463156px;}
.yd{bottom:657.643782px;}
.y150{bottom:658.366155px;}
.y113{bottom:659.702364px;}
.y18e{bottom:662.134086px;}
.y1bf{bottom:663.676917px;}
.yee{bottom:666.325975px;}
.yb4{bottom:668.329750px;}
.y52{bottom:668.339794px;}
.y15c{bottom:674.303669px;}
.y96{bottom:675.740586px;}
.y7a{bottom:676.503901px;}
.y176{bottom:678.604435px;}
.y135{bottom:678.670787px;}
.y35{bottom:681.033464px;}
.yc{bottom:681.277687px;}
.y14f{bottom:682.000060px;}
.y112{bottom:683.336269px;}
.y18d{bottom:685.767991px;}
.y1be{bottom:687.310822px;}
.yed{bottom:689.959880px;}
.y1de{bottom:691.513314px;}
.yb3{bottom:691.963654px;}
.y51{bottom:691.973698px;}
.y1fd{bottom:696.484712px;}
.y15b{bottom:697.937574px;}
.y79{bottom:700.137806px;}
.y175{bottom:702.238340px;}
.y134{bottom:702.304692px;}
.y34{bottom:704.667368px;}
.y95{bottom:705.001611px;}
.y14e{bottom:705.633965px;}
.y111{bottom:706.970174px;}
.y18c{bottom:709.401896px;}
.y1bd{bottom:710.944726px;}
.y1dd{bottom:714.021795px;}
.yb2{bottom:715.597559px;}
.y50{bottom:715.607603px;}
.y15a{bottom:721.571479px;}
.y78{bottom:723.771711px;}
.y174{bottom:725.872244px;}
.y133{bottom:725.938597px;}
.y33{bottom:728.301273px;}
.y14d{bottom:729.267869px;}
.y110{bottom:730.604078px;}
.y1f{bottom:730.691323px;}
.y18b{bottom:733.035801px;}
.y1bc{bottom:734.578631px;}
.y1fc{bottom:736.999977px;}
.yec{bottom:737.227689px;}
.yb1{bottom:739.231464px;}
.y4f{bottom:739.241508px;}
.y159{bottom:745.205383px;}
.yd0{bottom:745.261181px;}
.y77{bottom:747.405615px;}
.y173{bottom:749.506149px;}
.y132{bottom:749.572501px;}
.y32{bottom:751.935178px;}
.y14c{bottom:752.901774px;}
.y10f{bottom:754.237983px;}
.y18a{bottom:756.669705px;}
.y1fb{bottom:757.257610px;}
.y1bb{bottom:758.212536px;}
.y1dc{bottom:759.038756px;}
.yeb{bottom:760.861594px;}
.yb0{bottom:762.865368px;}
.y4e{bottom:762.875412px;}
.y158{bottom:768.839288px;}
.ycf{bottom:768.895086px;}
.y76{bottom:771.039520px;}
.y172{bottom:773.140054px;}
.y31{bottom:775.569082px;}
.y14b{bottom:776.535679px;}
.y10e{bottom:777.871888px;}
.y189{bottom:780.303610px;}
.y1db{bottom:781.547237px;}
.yea{bottom:784.495499px;}
.yaf{bottom:786.499273px;}
.yce{bottom:792.528991px;}
.y75{bottom:794.673425px;}
.y171{bottom:796.773958px;}
.y131{bottom:796.840311px;}
.y1fa{bottom:797.772875px;}
.y30{bottom:799.202987px;}
.y14a{bottom:800.169583px;}
.y10d{bottom:801.505793px;}
.y92{bottom:801.803096px;}
.y1ba{bottom:805.480345px;}
.ye9{bottom:808.129403px;}
.yae{bottom:810.133178px;}
.y4d{bottom:810.143222px;}
.y157{bottom:814.051327px;}
.ycd{bottom:816.162895px;}
.y1f9{bottom:818.030508px;}
.y74{bottom:818.307330px;}
.y170{bottom:820.407863px;}
.y130{bottom:820.474215px;}
.y2f{bottom:822.836892px;}
.y91{bottom:825.437000px;}
.y24{bottom:825.971312px;}
.y1da{bottom:826.564198px;}
.y188{bottom:827.571419px;}
.y1b9{bottom:829.114250px;}
.ye8{bottom:831.763308px;}
.y4c{bottom:833.777126px;}
.ycc{bottom:839.796800px;}
.y73{bottom:841.941234px;}
.y184{bottom:844.041768px;}
.y12f{bottom:844.108120px;}
.y2e{bottom:846.470796px;}
.y149{bottom:847.437393px;}
.y10c{bottom:848.773602px;}
.y90{bottom:849.070905px;}
.y1d9{bottom:849.072679px;}
.y187{bottom:851.205324px;}
.y1b8{bottom:852.748154px;}
.y23{bottom:855.232337px;}
.yad{bottom:857.400987px;}
.y4b{bottom:857.411031px;}
.y1f8{bottom:858.545773px;}
.ycb{bottom:863.430705px;}
.y72{bottom:865.575139px;}
.y16f{bottom:867.675673px;}
.y12e{bottom:867.742025px;}
.y2d{bottom:870.104701px;}
.y148{bottom:871.071298px;}
.y10b{bottom:872.407507px;}
.y186{bottom:874.839229px;}
.y1b7{bottom:876.382059px;}
.y1f7{bottom:878.803405px;}
.ye7{bottom:879.031118px;}
.yac{bottom:881.034892px;}
.y4a{bottom:881.044936px;}
.y22{bottom:884.493362px;}
.y71{bottom:889.209044px;}
.y16e{bottom:891.309577px;}
.y12d{bottom:891.375930px;}
.y2c{bottom:893.738606px;}
.y1d8{bottom:894.089640px;}
.y147{bottom:894.705202px;}
.y10a{bottom:896.041411px;}
.y8f{bottom:896.338714px;}
.y156{bottom:898.473133px;}
.y1b6{bottom:900.015964px;}
.ye6{bottom:902.665022px;}
.yab{bottom:904.668797px;}
.y49{bottom:904.678841px;}
.yca{bottom:910.698514px;}
.y21{bottom:913.754387px;}
.y16d{bottom:914.943482px;}
.y1d7{bottom:916.598121px;}
.y2b{bottom:917.372511px;}
.y146{bottom:918.339107px;}
.y1f6{bottom:919.318670px;}
.y109{bottom:919.675316px;}
.y8e{bottom:919.972619px;}
.y155{bottom:922.107038px;}
.y1b5{bottom:923.649868px;}
.ye5{bottom:926.298927px;}
.yaa{bottom:928.302701px;}
.y48{bottom:928.312745px;}
.yc9{bottom:934.332419px;}
.y70{bottom:936.476853px;}
.y16c{bottom:938.577387px;}
.y12c{bottom:938.643739px;}
.y1f5{bottom:939.576303px;}
.y2a{bottom:941.006415px;}
.y145{bottom:941.973012px;}
.y20{bottom:943.015412px;}
.y108{bottom:943.309221px;}
.y8d{bottom:943.606524px;}
.y154{bottom:945.740943px;}
.y1b4{bottom:947.283773px;}
.ye4{bottom:949.932832px;}
.ya9{bottom:951.936606px;}
.y47{bottom:951.946650px;}
.yc8{bottom:957.966323px;}
.y6f{bottom:960.110758px;}
.y1d6{bottom:961.615082px;}
.y16b{bottom:962.211291px;}
.y12b{bottom:962.277644px;}
.y29{bottom:964.640320px;}
.y144{bottom:965.606916px;}
.y107{bottom:966.943125px;}
.y8c{bottom:967.240428px;}
.y153{bottom:969.374848px;}
.y1b3{bottom:970.917678px;}
.ye3{bottom:973.566736px;}
.ya8{bottom:975.570511px;}
.y46{bottom:975.580555px;}
.y1f4{bottom:980.091568px;}
.yc7{bottom:981.600228px;}
.y6e{bottom:983.744662px;}
.y1d5{bottom:984.123563px;}
.y16a{bottom:985.845196px;}
.y12a{bottom:985.911548px;}
.y28{bottom:988.274225px;}
.y143{bottom:989.240821px;}
.y8b{bottom:990.874333px;}
.y152{bottom:993.008752px;}
.y1b2{bottom:994.551583px;}
.yc6{bottom:1005.234133px;}
.y6d{bottom:1007.378567px;}
.y169{bottom:1009.479101px;}
.y129{bottom:1009.545453px;}
.y27{bottom:1011.908129px;}
.y142{bottom:1012.874726px;}
.y151{bottom:1016.642657px;}
.y1b1{bottom:1018.185487px;}
.y1f3{bottom:1020.606833px;}
.y64{bottom:1022.058318px;}
.y126{bottom:1025.231930px;}
.y104{bottom:1028.607467px;}
.yc5{bottom:1028.868038px;}
.y1d4{bottom:1029.140524px;}
.y94{bottom:1030.066266px;}
.ya7{bottom:1030.348646px;}
.y6c{bottom:1031.012472px;}
.y168{bottom:1033.113005px;}
.y128{bottom:1033.179358px;}
.y26{bottom:1035.542034px;}
.y141{bottom:1036.508630px;}
.y5{bottom:1041.902670px;}
.y1d3{bottom:1051.649005px;}
.yc4{bottom:1052.501942px;}
.y6a{bottom:1054.646376px;}
.y63{bottom:1054.695615px;}
.y127{bottom:1056.813262px;}
.y125{bottom:1057.869227px;}
.y25{bottom:1059.175939px;}
.ya6{bottom:1059.609671px;}
.y140{bottom:1060.142535px;}
.y1f2{bottom:1061.122099px;}
.y103{bottom:1061.244764px;}
.y6b{bottom:1062.524345px;}
.y93{bottom:1062.703563px;}
.y1d2{bottom:1064.784593px;}
.y69{bottom:1078.280281px;}
.y167{bottom:1078.325033px;}
.y4{bottom:1082.417935px;}
.yc3{bottom:1093.212278px;}
.y1ef{bottom:1094.377837px;}
.y20f{bottom:1099.114382px;}
.y3{bottom:1122.933200px;}
.y2{bottom:1163.448466px;}
.y44{bottom:1174.305581px;}
.y106{bottom:1175.113474px;}
.y68{bottom:1175.211543px;}
.y1f1{bottom:1177.516659px;}
.y66{bottom:1178.559152px;}
.y43{bottom:1202.441181px;}
.y105{bottom:1203.249075px;}
.y67{bottom:1203.347144px;}
.y1f0{bottom:1205.652260px;}
.y65{bottom:1206.694753px;}
.he{height:27.623847px;}
.hc{height:33.190107px;}
.h6{height:41.487632px;}
.hd{height:46.085844px;}
.h19{height:50.684056px;}
.hf{height:51.715485px;}
.ha{height:51.859539px;}
.h1a{height:54.418483px;}
.h16{height:55.299851px;}
.h5{height:55.316842px;}
.h10{height:56.613331px;}
.h11{height:60.481188px;}
.h12{height:64.345264px;}
.h8{height:64.513267px;}
.h17{height:64.519692px;}
.h14{height:64.968479px;}
.h9{height:68.483226px;}
.h18{height:69.135249px;}
.h13{height:70.383524px;}
.h7{height:70.575566px;}
.hb{height:73.552223px;}
.h4{height:86.119248px;}
.h3{height:91.621311px;}
.h15{height:577.439976px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:713.519970px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:54.791272px;}
.x3{left:79.363775px;}
.x6{left:89.324996px;}
.x1{left:94.272822px;}
.xb{left:98.979024px;}
.xa{left:103.093856px;}
.x8{left:119.922462px;}
.x4{left:390.020873px;}
.x9{left:531.669401px;}
.x5{left:598.976604px;}
.x7{left:803.924967px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000046pt;}
.ws0{word-spacing:-59.645553pt;}
.ws11{word-spacing:-48.138617pt;}
.ws8{word-spacing:-47.882561pt;}
.ws7{word-spacing:-44.582640pt;}
.ws17{word-spacing:-41.888823pt;}
.ws4{word-spacing:-41.515482pt;}
.ws3{word-spacing:-40.969036pt;}
.wsf{word-spacing:-35.840704pt;}
.ws14{word-spacing:-35.597412pt;}
.ws15{word-spacing:-32.780351pt;}
.ws1{word-spacing:-30.832817pt;}
.ws9{word-spacing:-24.752126pt;}
.ws16{word-spacing:-22.020857pt;}
.wsd{word-spacing:-21.653759pt;}
.ws6{word-spacing:-20.757741pt;}
.wse{word-spacing:-19.264378pt;}
.ws10{word-spacing:-17.798753pt;}
.ws13{word-spacing:-17.798706pt;}
.ws18{word-spacing:-16.308064pt;}
.ws12{word-spacing:-15.365789pt;}
.wsb{word-spacing:-14.828547pt;}
.ws2{word-spacing:-13.349030pt;}
.wsa{word-spacing:-10.679224pt;}
.wsc{word-spacing:-8.888229pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-13.393349pt;}
._7{margin-left:-4.272575pt;}
._a{margin-left:-3.215377pt;}
._4{margin-left:-2.305517pt;}
._3{margin-left:-1.151900pt;}
._9{width:6.438926pt;}
._0{width:7.355156pt;}
._6{width:14.499780pt;}
._8{width:41.293078pt;}
._1{width:68.735859pt;}
._2{width:1348.548266pt;}
.fs8{font-size:31.972046pt;}
.fs6{font-size:38.414475pt;}
.fs2{font-size:48.018092pt;}
.fs7{font-size:53.340097pt;}
.fsb{font-size:58.662102pt;}
.fsc{font-size:63.984107pt;}
.fs9{font-size:64.004457pt;}
.fs1{font-size:64.024123pt;}
.fs4{font-size:74.668133pt;}
.fsa{font-size:74.675569pt;}
.fs5{font-size:79.469946pt;}
.fs3{font-size:85.352159pt;}
.fs0{font-size:106.320059pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y1b0{bottom:5.005399pt;}
.y1af{bottom:29.460036pt;}
.y21b{bottom:35.565610pt;}
.yb{bottom:42.090826pt;}
.y45{bottom:46.253096pt;}
.y21a{bottom:49.570887pt;}
.y1ae{bottom:53.914674pt;}
.ya{bottom:56.096103pt;}
.y219{bottom:63.576164pt;}
.y9{bottom:70.101379pt;}
.y1ad{bottom:78.369311pt;}
.y218{bottom:88.864250pt;}
.y8{bottom:95.389625pt;}
.y1ac{bottom:102.823948pt;}
.y217{bottom:110.872542pt;}
.y20e{bottom:114.907555pt;}
.y7{bottom:117.397918pt;}
.y1ab{bottom:127.278585pt;}
.y20d{bottom:132.914339pt;}
.y1ee{bottom:134.497581pt;}
.y89{bottom:137.161911pt;}
.y216{bottom:138.692004pt;}
.y6{bottom:145.217380pt;}
.y1d1{bottom:148.768816pt;}
.y102{bottom:151.123535pt;}
.y1aa{bottom:151.733222pt;}
.y88{bottom:154.168319pt;}
.y1ed{bottom:154.505119pt;}
.y20c{bottom:168.927908pt;}
.y1d0{bottom:169.776731pt;}
.y87{bottom:171.174726pt;}
.y101{bottom:172.131450pt;}
.y8a{bottom:177.176988pt;}
.y1cf{bottom:190.784647pt;}
.y100{bottom:193.139365pt;}
.y1ec{bottom:194.520196pt;}
.y20b{bottom:204.941478pt;}
.y1e{bottom:206.429776pt;}
.y124{bottom:208.259627pt;}
.y1eb{bottom:214.527734pt;}
.ye2{bottom:215.099223pt;}
.y20a{bottom:222.948262pt;}
.y1d{bottom:227.437691pt;}
.y123{bottom:229.267542pt;}
.y1ce{bottom:232.800477pt;}
.yff{bottom:235.155196pt;}
.ye1{bottom:236.107138pt;}
.y62{bottom:236.945257pt;}
.ya5{bottom:237.348162pt;}
.y1c{bottom:248.445606pt;}
.y122{bottom:250.275457pt;}
.y42{bottom:252.230027pt;}
.y19d{bottom:252.436988pt;}
.y1cd{bottom:253.808393pt;}
.y1ea{bottom:254.542811pt;}
.yfe{bottom:256.163111pt;}
.ye0{bottom:257.115054pt;}
.y61{bottom:257.953172pt;}
.ya4{bottom:258.356078pt;}
.y209{bottom:258.961831pt;}
.y215{bottom:265.889357pt;}
.y1a9{bottom:267.892749pt;}
.y1b{bottom:269.453522pt;}
.y121{bottom:271.283372pt;}
.y19c{bottom:273.444903pt;}
.y1e9{bottom:274.550350pt;}
.y1cc{bottom:274.816308pt;}
.y41{bottom:276.239073pt;}
.y208{bottom:276.968616pt;}
.yfd{bottom:277.171027pt;}
.ydf{bottom:278.122969pt;}
.yc2{bottom:278.952159pt;}
.y60{bottom:278.961087pt;}
.ya3{bottom:279.363993pt;}
.y214{bottom:284.896519pt;}
.y1a8{bottom:289.012663pt;}
.y1a{bottom:290.461437pt;}
.y120{bottom:292.291288pt;}
.y19b{bottom:294.452818pt;}
.y1cb{bottom:295.824223pt;}
.yfc{bottom:298.178942pt;}
.yde{bottom:299.130884pt;}
.yc1{bottom:299.960075pt;}
.y5f{bottom:299.969003pt;}
.y40{bottom:300.248119pt;}
.ya2{bottom:300.371908pt;}
.y213{bottom:303.903680pt;}
.y183{bottom:309.093128pt;}
.y1a7{bottom:310.132577pt;}
.y19{bottom:311.469352pt;}
.y207{bottom:312.982185pt;}
.y11f{bottom:313.299203pt;}
.y1e8{bottom:314.565426pt;}
.y19a{bottom:315.460734pt;}
.y1ca{bottom:316.832138pt;}
.yfb{bottom:319.186857pt;}
.ydd{bottom:320.138799pt;}
.yc0{bottom:320.967990pt;}
.ya1{bottom:321.379823pt;}
.y212{bottom:322.910842pt;}
.y3f{bottom:324.257165pt;}
.y86{bottom:328.233902pt;}
.y182{bottom:330.101044pt;}
.y1a6{bottom:331.252491pt;}
.y18{bottom:332.477267pt;}
.y11e{bottom:334.307118pt;}
.y1e7{bottom:334.572965pt;}
.y199{bottom:336.468649pt;}
.y1c9{bottom:337.840054pt;}
.yfa{bottom:340.194772pt;}
.ydc{bottom:341.146715pt;}
.y211{bottom:341.918003pt;}
.ybf{bottom:341.975905pt;}
.y5e{bottom:341.984833pt;}
.ya0{bottom:342.387739pt;}
.y166{bottom:347.286056pt;}
.y3e{bottom:348.266211pt;}
.y206{bottom:348.995754pt;}
.y85{bottom:349.241818pt;}
.y181{bottom:351.108959pt;}
.y1a5{bottom:352.372405pt;}
.y17{bottom:353.485183pt;}
.y11d{bottom:355.315034pt;}
.y198{bottom:357.476564pt;}
.y1c8{bottom:358.847969pt;}
.y210{bottom:360.925164pt;}
.yf9{bottom:361.202688pt;}
.ydb{bottom:362.154630pt;}
.ybe{bottom:362.983820pt;}
.y5d{bottom:362.992748pt;}
.y9f{bottom:363.395654pt;}
.y205{bottom:367.002538pt;}
.y165{bottom:368.293971pt;}
.y84{bottom:370.249733pt;}
.y180{bottom:372.116874pt;}
.y13f{bottom:372.175854pt;}
.y3d{bottom:372.275257pt;}
.y16{bottom:374.493098pt;}
.y1e6{bottom:374.588041pt;}
.y197{bottom:378.484480pt;}
.y1c7{bottom:379.855884pt;}
.yf8{bottom:382.210603pt;}
.yda{bottom:383.162545pt;}
.ybd{bottom:383.991736pt;}
.y5c{bottom:384.000664pt;}
.y9e{bottom:384.403569pt;}
.y164{bottom:389.301886pt;}
.y83{bottom:391.257648pt;}
.y17f{bottom:393.124789pt;}
.y13e{bottom:393.183769pt;}
.y1e5{bottom:394.595580pt;}
.y1a4{bottom:394.612233pt;}
.y11c{bottom:397.330864pt;}
.y196{bottom:399.492395pt;}
.y204{bottom:403.016107pt;}
.yf7{bottom:403.218518pt;}
.yd9{bottom:404.170461pt;}
.ybc{bottom:404.999651pt;}
.y5b{bottom:405.008579pt;}
.y163{bottom:410.309802pt;}
.y82{bottom:412.265564pt;}
.y17e{bottom:414.132705pt;}
.y13d{bottom:414.191685pt;}
.y1a3{bottom:415.732147pt;}
.y15{bottom:416.508929pt;}
.y11b{bottom:418.338779pt;}
.y195{bottom:420.500310pt;}
.y1c6{bottom:421.871715pt;}
.yf6{bottom:424.226434pt;}
.yd8{bottom:425.178376pt;}
.ybb{bottom:426.007566pt;}
.y5a{bottom:426.016494pt;}
.y9d{bottom:426.419400pt;}
.y81{bottom:433.273479pt;}
.y1e4{bottom:434.610656pt;}
.y17d{bottom:435.140620pt;}
.y13c{bottom:435.199600pt;}
.y1a2{bottom:436.852060pt;}
.y14{bottom:437.516844pt;}
.y203{bottom:439.029676pt;}
.y11a{bottom:439.346695pt;}
.y194{bottom:441.508225pt;}
.y1c5{bottom:442.879630pt;}
.yf5{bottom:445.234349pt;}
.yd7{bottom:446.186291pt;}
.yba{bottom:447.015482pt;}
.y59{bottom:447.024410pt;}
.y9c{bottom:447.427315pt;}
.y162{bottom:452.325632pt;}
.y80{bottom:454.281394pt;}
.y1e3{bottom:454.618195pt;}
.y17c{bottom:456.148535pt;}
.y13b{bottom:456.207515pt;}
.y202{bottom:457.036461pt;}
.y1a1{bottom:457.971974pt;}
.y3c{bottom:458.307672pt;}
.y13{bottom:458.524759pt;}
.y119{bottom:460.354610pt;}
.y19e{bottom:461.879999pt;}
.y193{bottom:462.516141pt;}
.y1c4{bottom:463.887545pt;}
.yf4{bottom:466.242264pt;}
.yd6{bottom:467.194206pt;}
.yb9{bottom:468.023397pt;}
.y58{bottom:468.032325pt;}
.y9b{bottom:468.435230pt;}
.y161{bottom:473.333548pt;}
.y7f{bottom:475.289309pt;}
.y17b{bottom:477.156451pt;}
.y13a{bottom:477.215430pt;}
.y1a0{bottom:479.091888pt;}
.y3b{bottom:479.315587pt;}
.y12{bottom:479.532674pt;}
.y118{bottom:481.362525pt;}
.y192{bottom:483.524056pt;}
.y1c3{bottom:484.895461pt;}
.yf3{bottom:487.250179pt;}
.yd5{bottom:488.202122pt;}
.y57{bottom:489.040240pt;}
.y9a{bottom:489.443146pt;}
.y201{bottom:493.050030pt;}
.y160{bottom:494.341463pt;}
.y1e2{bottom:494.633272pt;}
.y7e{bottom:496.297225pt;}
.y17a{bottom:498.164366pt;}
.y139{bottom:498.223346pt;}
.y19f{bottom:500.211802pt;}
.y3a{bottom:500.323502pt;}
.y11{bottom:500.540590pt;}
.y117{bottom:502.370441pt;}
.y191{bottom:504.531971pt;}
.y1c2{bottom:505.903376pt;}
.yf2{bottom:508.258095pt;}
.yd4{bottom:509.210037pt;}
.yb8{bottom:510.039227pt;}
.y56{bottom:510.048155pt;}
.y99{bottom:510.451061pt;}
.y1e1{bottom:514.640810pt;}
.y15f{bottom:515.349378pt;}
.y7d{bottom:517.305140pt;}
.y179{bottom:519.172281pt;}
.y39{bottom:521.331418pt;}
.y10{bottom:521.548505pt;}
.y116{bottom:523.378356pt;}
.y190{bottom:525.539887pt;}
.y200{bottom:529.063599pt;}
.yf1{bottom:529.266010pt;}
.yd3{bottom:530.217952pt;}
.yb7{bottom:531.047143pt;}
.y55{bottom:531.056071pt;}
.y98{bottom:531.458976pt;}
.y15e{bottom:536.357293pt;}
.y178{bottom:540.180196pt;}
.y138{bottom:540.239176pt;}
.y38{bottom:542.339333pt;}
.yf{bottom:542.556420pt;}
.y115{bottom:544.386271pt;}
.y18f{bottom:546.547802pt;}
.y1c1{bottom:547.919207pt;}
.yf0{bottom:550.273925pt;}
.yd2{bottom:551.225868pt;}
.yb6{bottom:552.055058pt;}
.y54{bottom:552.063986pt;}
.y97{bottom:552.466892pt;}
.y1e0{bottom:554.655887pt;}
.y7c{bottom:559.320971pt;}
.y185{bottom:561.188112pt;}
.y137{bottom:561.247091pt;}
.y37{bottom:563.347248pt;}
.ye{bottom:563.564336pt;}
.y1ff{bottom:565.077168pt;}
.y114{bottom:565.394186pt;}
.y1c0{bottom:568.927122pt;}
.yef{bottom:571.281841pt;}
.yb5{bottom:573.062973pt;}
.y53{bottom:573.071901pt;}
.y1df{bottom:574.663425pt;}
.y15d{bottom:578.373124pt;}
.y7b{bottom:580.328886pt;}
.y177{bottom:582.196027pt;}
.y136{bottom:582.255007pt;}
.y1fe{bottom:583.083953pt;}
.y36{bottom:584.355163pt;}
.yd1{bottom:584.411694pt;}
.yd{bottom:584.572251pt;}
.y150{bottom:585.214360pt;}
.y113{bottom:586.402102pt;}
.y18e{bottom:588.563632pt;}
.y1bf{bottom:589.935037pt;}
.yee{bottom:592.289756pt;}
.yb4{bottom:594.070889pt;}
.y52{bottom:594.079817pt;}
.y15c{bottom:599.381039pt;}
.y96{bottom:600.658299pt;}
.y7a{bottom:601.336801pt;}
.y176{bottom:603.203942pt;}
.y135{bottom:603.262922pt;}
.y35{bottom:605.363079pt;}
.yc{bottom:605.580166pt;}
.y14f{bottom:606.222276pt;}
.y112{bottom:607.410017pt;}
.y18d{bottom:609.571548pt;}
.y1be{bottom:610.942952pt;}
.yed{bottom:613.297671pt;}
.y1de{bottom:614.678502pt;}
.yb3{bottom:615.078804pt;}
.y51{bottom:615.087732pt;}
.y1fd{bottom:619.097522pt;}
.y15b{bottom:620.388955pt;}
.y79{bottom:622.344716pt;}
.y175{bottom:624.211858pt;}
.y134{bottom:624.270837pt;}
.y34{bottom:626.370994pt;}
.y95{bottom:626.668099pt;}
.y14e{bottom:627.230191pt;}
.y111{bottom:628.417932pt;}
.y18c{bottom:630.579463pt;}
.y1bd{bottom:631.950868pt;}
.y1dd{bottom:634.686040pt;}
.yb2{bottom:636.086719pt;}
.y50{bottom:636.095647pt;}
.y15a{bottom:641.396870pt;}
.y78{bottom:643.352632pt;}
.y174{bottom:645.219773pt;}
.y133{bottom:645.278753pt;}
.y33{bottom:647.378909pt;}
.y14d{bottom:648.238106pt;}
.y110{bottom:649.425848pt;}
.y1f{bottom:649.503398pt;}
.y18b{bottom:651.587378pt;}
.y1bc{bottom:652.958783pt;}
.y1fc{bottom:655.111091pt;}
.yec{bottom:655.313502pt;}
.yb1{bottom:657.094634pt;}
.y4f{bottom:657.103562pt;}
.y159{bottom:662.404785pt;}
.yd0{bottom:662.454383pt;}
.y77{bottom:664.360547pt;}
.y173{bottom:666.227688pt;}
.y132{bottom:666.286668pt;}
.y32{bottom:668.386825pt;}
.y14c{bottom:669.246021pt;}
.y10f{bottom:670.433763pt;}
.y18a{bottom:672.595294pt;}
.y1fb{bottom:673.117875pt;}
.y1bb{bottom:673.966698pt;}
.y1dc{bottom:674.701117pt;}
.yeb{bottom:676.321417pt;}
.yb0{bottom:678.102550pt;}
.y4e{bottom:678.111478pt;}
.y158{bottom:683.412700pt;}
.ycf{bottom:683.462299pt;}
.y76{bottom:685.368462pt;}
.y172{bottom:687.235603pt;}
.y31{bottom:689.394740pt;}
.y14b{bottom:690.253937pt;}
.y10e{bottom:691.441678pt;}
.y189{bottom:693.603209pt;}
.y1db{bottom:694.708655pt;}
.yea{bottom:697.329332pt;}
.yaf{bottom:699.110465pt;}
.yce{bottom:704.470214pt;}
.y75{bottom:706.376378pt;}
.y171{bottom:708.243519pt;}
.y131{bottom:708.302498pt;}
.y1fa{bottom:709.131444pt;}
.y30{bottom:710.402655pt;}
.y14a{bottom:711.261852pt;}
.y10d{bottom:712.449593pt;}
.y92{bottom:712.713863pt;}
.y1ba{bottom:715.982529pt;}
.ye9{bottom:718.337248pt;}
.yae{bottom:720.118380pt;}
.y4d{bottom:720.127308pt;}
.y157{bottom:723.601179pt;}
.ycd{bottom:725.478129pt;}
.y1f9{bottom:727.138229pt;}
.y74{bottom:727.384293pt;}
.y170{bottom:729.251434pt;}
.y130{bottom:729.310414pt;}
.y2f{bottom:731.410570pt;}
.y91{bottom:733.721778pt;}
.y24{bottom:734.196722pt;}
.y1da{bottom:734.723732pt;}
.y188{bottom:735.619039pt;}
.y1b9{bottom:736.990444pt;}
.ye8{bottom:739.345163pt;}
.y4c{bottom:741.135224pt;}
.ycc{bottom:746.486044pt;}
.y73{bottom:748.392208pt;}
.y184{bottom:750.259349pt;}
.y12f{bottom:750.318329pt;}
.y2e{bottom:752.418486pt;}
.y149{bottom:753.277683pt;}
.y10c{bottom:754.465424pt;}
.y90{bottom:754.729693pt;}
.y1d9{bottom:754.731270pt;}
.y187{bottom:756.626955pt;}
.y1b8{bottom:757.998359pt;}
.y23{bottom:760.206522pt;}
.yad{bottom:762.134211pt;}
.y4b{bottom:762.143139pt;}
.y1f8{bottom:763.151798pt;}
.ycb{bottom:767.493960pt;}
.y72{bottom:769.400123pt;}
.y16f{bottom:771.267265pt;}
.y12e{bottom:771.326244pt;}
.y2d{bottom:773.426401pt;}
.y148{bottom:774.285598pt;}
.y10b{bottom:775.473339pt;}
.y186{bottom:777.634870pt;}
.y1b7{bottom:779.006275pt;}
.y1f7{bottom:781.158582pt;}
.ye7{bottom:781.360993pt;}
.yac{bottom:783.142126pt;}
.y4a{bottom:783.151054pt;}
.y22{bottom:786.216322pt;}
.y71{bottom:790.408039pt;}
.y16e{bottom:792.275180pt;}
.y12d{bottom:792.334160pt;}
.y2c{bottom:794.434316pt;}
.y1d8{bottom:794.746347pt;}
.y147{bottom:795.293513pt;}
.y10a{bottom:796.481254pt;}
.y8f{bottom:796.745524pt;}
.y156{bottom:798.642785pt;}
.y1b6{bottom:800.014190pt;}
.ye6{bottom:802.368909pt;}
.yab{bottom:804.150041pt;}
.y49{bottom:804.158969pt;}
.yca{bottom:809.509790pt;}
.y21{bottom:812.226122pt;}
.y16d{bottom:813.283095pt;}
.y1d7{bottom:814.753885pt;}
.y2b{bottom:815.442232pt;}
.y146{bottom:816.301428pt;}
.y1f6{bottom:817.172152pt;}
.y109{bottom:817.489170pt;}
.y8e{bottom:817.753439pt;}
.y155{bottom:819.650701pt;}
.y1b5{bottom:821.022105pt;}
.ye5{bottom:823.376824pt;}
.yaa{bottom:825.157957pt;}
.y48{bottom:825.166885pt;}
.yc9{bottom:830.517706pt;}
.y70{bottom:832.423869pt;}
.y16c{bottom:834.291010pt;}
.y12c{bottom:834.349990pt;}
.y1f5{bottom:835.178936pt;}
.y2a{bottom:836.450147pt;}
.y145{bottom:837.309344pt;}
.y20{bottom:838.235922pt;}
.y108{bottom:838.497085pt;}
.y8d{bottom:838.761354pt;}
.y154{bottom:840.658616pt;}
.y1b4{bottom:842.030021pt;}
.ye4{bottom:844.384739pt;}
.ya9{bottom:846.165872pt;}
.y47{bottom:846.174800pt;}
.yc8{bottom:851.525621pt;}
.y6f{bottom:853.431785pt;}
.y1d6{bottom:854.768962pt;}
.y16b{bottom:855.298926pt;}
.y12b{bottom:855.357905pt;}
.y29{bottom:857.458062pt;}
.y144{bottom:858.317259pt;}
.y107{bottom:859.505000pt;}
.y8c{bottom:859.769270pt;}
.y153{bottom:861.666531pt;}
.y1b3{bottom:863.037936pt;}
.ye3{bottom:865.392655pt;}
.ya8{bottom:867.173787pt;}
.y46{bottom:867.182715pt;}
.y1f4{bottom:871.192505pt;}
.yc7{bottom:872.533536pt;}
.y6e{bottom:874.439700pt;}
.y1d5{bottom:874.776501pt;}
.y16a{bottom:876.306841pt;}
.y12a{bottom:876.365821pt;}
.y28{bottom:878.465977pt;}
.y143{bottom:879.325174pt;}
.y8b{bottom:880.777185pt;}
.y152{bottom:882.674446pt;}
.y1b2{bottom:884.045851pt;}
.yc6{bottom:893.541451pt;}
.y6d{bottom:895.447615pt;}
.y169{bottom:897.314756pt;}
.y129{bottom:897.373736pt;}
.y27{bottom:899.473893pt;}
.y142{bottom:900.333090pt;}
.y151{bottom:903.682362pt;}
.y1b1{bottom:905.053766pt;}
.y1f3{bottom:907.206074pt;}
.y64{bottom:908.496283pt;}
.y126{bottom:911.317271pt;}
.y104{bottom:914.317748pt;}
.yc5{bottom:914.549367pt;}
.y1d4{bottom:914.791577pt;}
.y94{bottom:915.614458pt;}
.ya7{bottom:915.865463pt;}
.y6c{bottom:916.455530pt;}
.y168{bottom:918.322671pt;}
.y128{bottom:918.381651pt;}
.y26{bottom:920.481808pt;}
.y141{bottom:921.341005pt;}
.y5{bottom:926.135707pt;}
.y1d3{bottom:934.799116pt;}
.yc4{bottom:935.557282pt;}
.y6a{bottom:937.463446pt;}
.y63{bottom:937.507213pt;}
.y127{bottom:939.389567pt;}
.y125{bottom:940.328202pt;}
.y25{bottom:941.489723pt;}
.ya6{bottom:941.875263pt;}
.y140{bottom:942.348920pt;}
.y1f2{bottom:943.219643pt;}
.y103{bottom:943.328679pt;}
.y6b{bottom:944.466084pt;}
.y93{bottom:944.625389pt;}
.y1d2{bottom:946.475194pt;}
.y69{bottom:958.471361pt;}
.y167{bottom:958.511141pt;}
.y4{bottom:962.149276pt;}
.yc3{bottom:971.744248pt;}
.y1ef{bottom:972.780300pt;}
.y20f{bottom:976.990562pt;}
.y3{bottom:998.162845pt;}
.y2{bottom:1034.176414pt;}
.y44{bottom:1043.827183pt;}
.y106{bottom:1044.545310pt;}
.y68{bottom:1044.632483pt;}
.y1f1{bottom:1046.681475pt;}
.y66{bottom:1047.608135pt;}
.y43{bottom:1068.836606pt;}
.y105{bottom:1069.554733pt;}
.y67{bottom:1069.641906pt;}
.y1f0{bottom:1071.690898pt;}
.y65{bottom:1072.617558pt;}
.he{height:24.554531pt;}
.hc{height:29.502317pt;}
.h6{height:36.877895pt;}
.hd{height:40.965194pt;}
.h19{height:45.052494pt;}
.hf{height:45.969320pt;}
.ha{height:46.097368pt;}
.h1a{height:48.371985pt;}
.h16{height:49.155423pt;}
.h5{height:49.170526pt;}
.h10{height:50.322960pt;}
.h11{height:53.761056pt;}
.h12{height:57.195790pt;}
.h8{height:57.345126pt;}
.h17{height:57.350837pt;}
.h14{height:57.749759pt;}
.h9{height:60.873979pt;}
.h18{height:61.453554pt;}
.h13{height:62.563132pt;}
.h7{height:62.733837pt;}
.hb{height:65.379754pt;}
.h4{height:76.550442pt;}
.h3{height:81.441165pt;}
.h15{height:513.279979pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:634.239974pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:48.703353pt;}
.x3{left:70.545578pt;}
.x6{left:79.399997pt;}
.x1{left:83.798064pt;}
.xb{left:87.981355pt;}
.xa{left:91.638983pt;}
.x8{left:106.597744pt;}
.x4{left:346.685221pt;}
.x9{left:472.595023pt;}
.x5{left:532.423648pt;}
.x7{left:714.599970pt;}
}




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