
    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_fabf2999bd15a980555dd1fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.076000;font-style:normal;font-weight: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_bf4b571dae057a6c670b0f20.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;font-style:normal;font-weight: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_13742563ad35865ebce4ceaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;font-style:normal;font-weight: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_05eb2bcba9b684761effcf80.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025000;font-style:normal;font-weight: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_00d4854ef2280f9119b140d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;font-style:normal;font-weight: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_076c7526789a852127defe3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.071000;font-style:normal;font-weight: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_8533abd25ca5096855bac28f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.034000;font-style:normal;font-weight: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_7678c4579d94e22b9e355880.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.812000;font-style:normal;font-weight: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_5da95a90ffe7cdbd7a780d4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.076000;font-style:normal;font-weight: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_71e668d25a06269adec0abb8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.057000;font-style:normal;font-weight: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_9ef6dc6c40a18385a1c11de1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034000;font-style:normal;font-weight: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_bedf727b90cc842e65202293.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.076000;font-style:normal;font-weight: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_f469bc7516693cd684a28a1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.188000;font-style:normal;font-weight: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_61d89efb1abed361f1c4f332.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.034000;font-style:normal;font-weight: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_ddd6b31c61fa0e0454798cc5.woff2')format("woff");}.fff{font-family:fff;line-height:1.001953;font-style:normal;font-weight: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_5dc286eee06af7a46f1d7a68.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.204000;font-style:normal;font-weight: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_2a0adf678e60753cd8f236ad.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.076000;font-style:normal;font-weight: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_8fd701314c7cd395469e8c76.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_63fc4a5276df3fe3bdd19f95.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.067000;font-style:normal;font-weight: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_7f18e8f66f94b9dffef0c0e6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.057000;font-style:normal;font-weight: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_fb17652e97f9cea22a8b8840.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.066000;font-style:normal;font-weight: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_102e0cfee49f4ca6ff7187f5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.809000;font-style:normal;font-weight: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_1c152291cef8490589e05557.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.067000;font-style:normal;font-weight: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_c8170d1452c1a6a348528cee.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.057000;font-style:normal;font-weight: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_ac824f7338f835ac8ff8c5a6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.067000;font-style:normal;font-weight: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_2a4fec7c9deac2ddd1e11f4d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.188000;font-style:normal;font-weight: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_a5dd6c69e1727daaede1dfa6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.204000;font-style:normal;font-weight: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_7ae8146513ae23398cee9536.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.067000;font-style:normal;font-weight: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_200be220b96a059bf43039f0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.057000;font-style:normal;font-weight: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_838715e9f77c68e5b529c0c1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.809000;font-style:normal;font-weight: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_6a0900194262d3ab910ef553.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.067000;font-style:normal;font-weight: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_10fa1b1230280a263a2ad499.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.066000;font-style:normal;font-weight: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_89f5556ab288b4b7e94119c7.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.076000;font-style:normal;font-weight: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_eef2b75654a44903c309c2ea.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.057000;font-style:normal;font-weight: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_c5a11b3ed3497e44d8436f89.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.004000;font-style:normal;font-weight: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_b3182ff0af8f37674e6e4a9d.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.034000;font-style:normal;font-weight: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_1b1bc1533c79a036b8dc62e7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.748000;font-style:normal;font-weight: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_c5a11b3ed3497e44d8436f89.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.004000;font-style:normal;font-weight: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_cefae319ae268ab55ad3fd01.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.067000;font-style:normal;font-weight: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_f4349588f0a05f1ea400aff0.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.034000;font-style:normal;font-weight: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_29e362271f381f706a68b4a5.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.881836;font-style:normal;font-weight: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_29e362271f381f706a68b4a5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.881836;font-style:normal;font-weight: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_763deeca2b63f1818c40eba2.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.188000;font-style:normal;font-weight: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_837ac2801907b1e6612bcc8c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.057000;font-style:normal;font-weight: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_2f4e076a0421c6ec7e78b557.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_d95b1de5d33c3efaed82d3b7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.204000;font-style:normal;font-weight: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_54eb90c69a4caa69717257af.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_14767b716048b4b2b2871913.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.188000;font-style:normal;font-weight: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_e72f115369b367884172691f.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.057000;font-style:normal;font-weight: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_628958fab464f08b5c3455af.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_71ca3a5192b59730e73c2df2.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.034000;font-style:normal;font-weight: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_6fd90215b0c35ed27a409328.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.076000;font-style:normal;font-weight: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_b2b4513e7433770ebc17dab7.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.178000;font-style:normal;font-weight: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_60aa8aa0ed52d576c7cb8737.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.071000;font-style:normal;font-weight: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_39a489d992c31f144c489166.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_ae1ef1d5658a33486c918669.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.015000;font-style:normal;font-weight: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_8fd701314c7cd395469e8c76.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_8ff81dea4029b989a42910ba.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.067000;font-style:normal;font-weight: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_c9948883e14aa3cebc7baa4f.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.204000;font-style:normal;font-weight: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_16e19f856cb3c7bb61819fec.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.067000;font-style:normal;font-weight: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_88b6c7892dec68af1a6855e4.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_bebda446d6fdcf663a4e1ff7.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_a356b2bfacdb107dbc2ed342.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.967000;font-style:normal;font-weight: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_cc889b268569a632810199ed.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.066000;font-style:normal;font-weight: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_64e61e44386c7481f1ab4ca9.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.076000;font-style:normal;font-weight: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_640675e8659623f80ffd5752.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.076000;font-style:normal;font-weight: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_9a5fcc9532a533d8d56d0e0c.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.071000;font-style:normal;font-weight: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_b724199e1abee9fbe8af0574.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_e3b7b78945f2d25c97b17cc5.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_240e1cc6c750217fd7f53e8a.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.076000;font-style:normal;font-weight: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_c0e112e8111d1e08bba71b75.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.066000;font-style:normal;font-weight: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_76e58528f8548ce5ec160fd9.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.809000;font-style:normal;font-weight: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_5606553d9ef0b1d49897db2a.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_403807d0273816f428b2a948.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.005000;font-style:normal;font-weight: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_ba189816747d92caf863c67f.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.000244;font-style:normal;font-weight: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_cf2e1b3294097fa9968029fb.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.066000;font-style:normal;font-weight: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_65dc3b9ff733cd1c0c1586dd.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.067000;font-style:normal;font-weight: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_330db0ce9b0c64d4c685041c.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.918000;font-style:normal;font-weight: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_94cd11c086f559c923db3404.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.066000;font-style:normal;font-weight: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_3cdd9030697011997ef030a9.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.071000;font-style:normal;font-weight: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_6fad17ec283e404ac0db470f.woff2')format("woff");}.ff51{font-family:ff51;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:ff52;src:url('chunks/assets/font_0826be6bb485d0d13ede6097.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.076000;font-style:normal;font-weight: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_116d40fa71f5be7dc05fed32.woff2')format("woff");}.ff53{font-family:ff53;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:ff54;src:url('chunks/assets/font_c8d87f415aef14ee9316ac3c.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.076000;font-style:normal;font-weight: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_f0338c4843c9de825cc17a89.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.066000;font-style:normal;font-weight: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_1d3d0a31552a036d8831a55e.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.216000;font-style:normal;font-weight: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_97da758f1aa8d541a98bc5dd.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.000279;font-style:normal;font-weight: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_bebda446d6fdcf663a4e1ff7.woff2')format("woff");}.ff58{font-family:ff58;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:ff59;src:url('chunks/assets/font_a356b2bfacdb107dbc2ed342.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.967000;font-style:normal;font-weight: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_c2356380128730da19fcee0a.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.066000;font-style:normal;font-weight: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_f8aca79038f06a7a6cc763a8.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.076000;font-style:normal;font-weight: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_ae21b50994efc12595c96328.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.076000;font-style:normal;font-weight: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_932471b269eb3dd1c2f67eaa.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.062000;font-style:normal;font-weight: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_34cde5bf7060ca37c1f44a55.woff2')format("woff");}.ff5e{font-family:ff5e;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:ff5f;src:url('chunks/assets/font_2f71dee27bc5867d1a93185a.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.066000;font-style:normal;font-weight: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_39a489d992c31f144c489166.woff2')format("woff");}.ff60{font-family:ff60;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:ff61;src:url('chunks/assets/font_f178509f9b2c4c023fe296d5.woff2')format("woff");}.ff61{font-family:ff61;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;}
.ff62{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff63;src:url('chunks/assets/font_0f40783bb187b6fd96c4a684.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.076000;font-style:normal;font-weight: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_efff0e3cad63816cd2e1829f.woff2')format("woff");}.ff64{font-family:ff64;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:ff65;src:url('chunks/assets/font_8fc2b07b4ca0caed5c63baec.woff2')format("woff");}.ff65{font-family:ff65;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:ff66;src:url('chunks/assets/font_6af16e291061f874a78c4459.woff2')format("woff");}.ff66{font-family:ff66;line-height:1.066000;font-style:normal;font-weight: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_a73629d084a24e7bf6762d5d.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff68{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff69;src:url('chunks/assets/font_8302d9ee0309e071530b2338.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.076000;font-style:normal;font-weight: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_e9e969fd705a3d879443525c.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:1.057000;font-style:normal;font-weight: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_d5d4725b3caa672d2b73a5ca.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:1.066000;font-style:normal;font-weight: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_f6f4de92ae4215b97ada2d91.woff2')format("woff");}.ff6c{font-family:ff6c;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:ff6d;src:url('chunks/assets/font_5bc3d7e27f5096f2a067d497.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:1.076000;font-style:normal;font-weight: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_3b818bdd37ac2c36f556bb2f.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:1.057000;font-style:normal;font-weight: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_888b7763290e0653e6594947.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:1.076000;font-style:normal;font-weight: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_1b939bd70d798451424c8fa1.woff2')format("woff");}.ff70{font-family:ff70;line-height:1.034000;font-style:normal;font-weight: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_0fae0edc6c8559051ab47923.woff2')format("woff");}.ff71{font-family:ff71;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:ff72;src:url('chunks/assets/font_5c4c35dd6be486ab89d06298.woff2')format("woff");}.ff72{font-family:ff72;line-height:1.076000;font-style:normal;font-weight: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_4db34c286de59bb1e3fd5929.woff2')format("woff");}.ff73{font-family:ff73;line-height:1.067000;font-style:normal;font-weight: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_3c067e4bb510400b3011c59c.woff2')format("woff");}.ff74{font-family:ff74;line-height:1.034000;font-style:normal;font-weight: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_29ad1cd9122ea4f2137ac8ba.woff2')format("woff");}.ff75{font-family:ff75;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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.500000px;}
.v3{vertical-align:9.000000px;}
.v1{vertical-align:13.499999px;}
.v2{vertical-align:17.999999px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.873000px;}
.lsa{letter-spacing:2.074500px;}
.ls2{letter-spacing:43.874998px;}
.lsc{letter-spacing:44.999998px;}
.ls9{letter-spacing:45.562498px;}
.ls7{letter-spacing:46.124998px;}
.lsb{letter-spacing:47.249998px;}
.lsd{letter-spacing:61.874997px;}
.ls5{letter-spacing:62.999997px;}
.ls6{letter-spacing:65.249997px;}
.ls1{letter-spacing:67.499997px;}
.ls4{letter-spacing:80.999997px;}
.ls3{letter-spacing:83.249997px;}
.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:-61.055997px;}
.ws14{word-spacing:-45.764998px;}
.ws2{word-spacing:-38.159998px;}
.ws1c{word-spacing:-24.029999px;}
.ws1a{word-spacing:-23.561999px;}
.ws17{word-spacing:-22.895999px;}
.ws16{word-spacing:-22.828499px;}
.ws15{word-spacing:-21.626999px;}
.ws3{word-spacing:-21.239999px;}
.ws19{word-spacing:-20.987999px;}
.ws18{word-spacing:-20.425499px;}
.ws5{word-spacing:-20.348999px;}
.ws4{word-spacing:-19.223999px;}
.ws1b{word-spacing:-19.079999px;}
.ws6{word-spacing:-18.022499px;}
.ws13{word-spacing:-16.820999px;}
.wse{word-spacing:-16.217999px;}
.wsc{word-spacing:-9.765000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:268.710739px;}
.ws8{word-spacing:358.710735px;}
.wsb{word-spacing:455.604731px;}
.ws9{word-spacing:466.179731px;}
.ws7{word-spacing:484.872730px;}
.wsf{word-spacing:1999.768417px;}
.wsd{word-spacing:2026.768416px;}
.ws12{word-spacing:2031.722915px;}
.ws11{word-spacing:2232.499407px;}
.ws10{word-spacing:2247.214406px;}
._24{margin-left:-3750.902844px;}
._4{margin-left:-7.092000px;}
._2{margin-left:-5.688000px;}
._6{margin-left:-4.410000px;}
._0{margin-left:-3.384000px;}
._1{margin-left:-2.052000px;}
._8{margin-left:-1.008000px;}
._3{width:1.008000px;}
._5{width:2.718000px;}
._7{width:4.050000px;}
._9{width:5.287500px;}
._a{width:6.741000px;}
._b{width:7.897500px;}
._16{width:168.096953px;}
._1a{width:189.039952px;}
._12{width:327.431236px;}
._1b{width:343.887736px;}
._1f{width:389.720234px;}
._17{width:431.516232px;}
._18{width:443.091942px;}
._1d{width:457.656731px;}
._15{width:499.421229px;}
._21{width:524.469938px;}
._20{width:570.327726px;}
._19{width:580.110726px;}
._1e{width:690.897931px;}
._1c{width:699.582931px;}
._e{width:972.293044px;}
._11{width:990.067999px;}
._14{width:996.731418px;}
._13{width:1044.546706px;}
._c{width:1062.707041px;}
._f{width:1070.784495px;}
._10{width:1116.428038px;}
._d{width:1270.651987px;}
._22{width:1801.943925px;}
._23{width:1806.650925px;}
.fc4{color:rgb(233,69,96);}
.fc3{color:rgb(255,165,0);}
.fc2{color:transparent;}
.fc1{color:rgb(244,244,244);}
.fc0{color:rgb(22,199,154);}
.fsd{font-size:58.499998px;}
.fs8{font-size:62.999997px;}
.fsb{font-size:67.499997px;}
.fsa{font-size:71.999997px;}
.fsc{font-size:76.499997px;}
.fs1{font-size:80.999997px;}
.fs10{font-size:83.492885px;}
.fs6{font-size:85.499996px;}
.fs2{font-size:89.999996px;}
.fs7{font-size:94.499996px;}
.fs9{font-size:98.999996px;}
.fs5{font-size:107.999996px;}
.fse{font-size:116.999995px;}
.fs3{font-size:125.999995px;}
.fsf{font-size:161.999993px;}
.fs4{font-size:179.999993px;}
.fs0{font-size:287.999988px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000034px;}
.y30{bottom:0.000037px;}
.ye8{bottom:0.000038px;}
.y18e{bottom:0.000039px;}
.y164{bottom:0.000042px;}
.y42{bottom:0.054155px;}
.yc6{bottom:0.125837px;}
.y9e{bottom:0.125923px;}
.y5d{bottom:0.180042px;}
.y55{bottom:5.625000px;}
.y50{bottom:5.670000px;}
.y59{bottom:5.715000px;}
.y6e{bottom:5.760000px;}
.y52{bottom:5.805000px;}
.y2f{bottom:5.850000px;}
.y12d{bottom:5.895000px;}
.y15{bottom:5.940000px;}
.y6b{bottom:6.840000px;}
.y8{bottom:11.430000px;}
.y57{bottom:26.999999px;}
.y4f{bottom:27.044999px;}
.y5b{bottom:27.089999px;}
.y54{bottom:28.124999px;}
.y6a{bottom:33.839999px;}
.y14{bottom:34.560032px;}
.y41{bottom:34.560036px;}
.y100{bottom:34.560037px;}
.y19f{bottom:34.560038px;}
.y17a{bottom:34.560041px;}
.y12c{bottom:34.919976px;}
.y14c{bottom:34.919978px;}
.y6d{bottom:34.920040px;}
.ye7{bottom:35.279980px;}
.y186{bottom:35.280002px;}
.yc5{bottom:35.280008px;}
.y2e{bottom:35.280010px;}
.yad{bottom:35.280066px;}
.y5c{bottom:35.640010px;}
.y7{bottom:56.429998px;}
.y69{bottom:60.839997px;}
.y40{bottom:67.499997px;}
.y4d{bottom:70.505853px;}
.y11d{bottom:73.439974px;}
.y79{bottom:77.255853px;}
.y193{bottom:79.874997px;}
.y2d{bottom:80.505008px;}
.yac{bottom:84.744140px;}
.y155{bottom:86.130008px;}
.y68{bottom:87.839996px;}
.y13e{bottom:88.064976px;}
.y175{bottom:94.499996px;}
.y4c{bottom:99.755852px;}
.yf0{bottom:103.499996px;}
.y9d{bottom:105.749996px;}
.y11c{bottom:106.064973px;}
.y2c{bottom:106.380007px;}
.y78{bottom:106.505852px;}
.y3f{bottom:107.999995px;}
.y192{bottom:115.874995px;}
.y154{bottom:117.630006px;}
.y13d{bottom:118.439974px;}
.yab{bottom:120.744139px;}
.y4b{bottom:127.880851px;}
.y174{bottom:131.624995px;}
.y77{bottom:134.630850px;}
.yef{bottom:136.124994px;}
.y9c{bottom:138.374994px;}
.y11b{bottom:138.689971px;}
.y13{bottom:143.999994px;}
.y153{bottom:148.005005px;}
.y3e{bottom:148.499994px;}
.y13c{bottom:149.939973px;}
.y191{bottom:152.999994px;}
.y66{bottom:156.374993px;}
.yaa{bottom:157.869137px;}
.y5{bottom:164.249993px;}
.yee{bottom:167.624993px;}
.y9b{bottom:170.999993px;}
.yc3{bottom:179.505002px;}
.y12{bottom:181.124992px;}
.y1d{bottom:184.499992px;}
.y3d{bottom:188.999992px;}
.y65{bottom:190.124992px;}
.y5a{bottom:198.720003px;}
.y2b{bottom:199.755003px;}
.yc4{bottom:200.880001px;}
.y173{bottom:203.624992px;}
.y12b{bottom:203.939969px;}
.ya9{bottom:207.369135px;}
.yc2{bottom:208.755001px;}
.y12a{bottom:211.814968px;}
.y11{bottom:217.124991px;}
.y189{bottom:219.374991px;}
.y1c{bottom:222.749991px;}
.y64{bottom:224.999991px;}
.y2a{bottom:226.755002px;}
.y3c{bottom:229.499990px;}
.y74{bottom:230.255846px;}
.yd6{bottom:232.119134px;}
.y185{bottom:233.504994px;}
.yff{bottom:233.999990px;}
.y190{bottom:236.249990px;}
.y172{bottom:240.749990px;}
.yfe{bottom:241.874990px;}
.y129{bottom:243.314967px;}
.ya8{bottom:243.369134px;}
.y10b{bottom:245.249990px;}
.yc0{bottom:248.129999px;}
.y128{bottom:251.189967px;}
.y29{bottom:253.755000px;}
.y4a{bottom:255.005845px;}
.yd5{bottom:262.494133px;}
.y163{bottom:262.755000px;}
.y184{bottom:263.879993px;}
.y162{bottom:265.005000px;}
.y13b{bottom:265.814968px;}
.yc1{bottom:269.504998px;}
.y3b{bottom:269.999989px;}
.y63{bottom:272.249989px;}
.yfd{bottom:273.374989px;}
.ybf{bottom:277.379998px;}
.y10a{bottom:277.874988px;}
.yfc{bottom:281.249988px;}
.ye6{bottom:288.369132px;}
.y10{bottom:289.124988px;}
.y11a{bottom:291.689965px;}
.y73{bottom:292.130844px;}
.y28{bottom:293.129999px;}
.yd4{bottom:293.994132px;}
.ya7{bottom:295.119132px;}
.y13a{bottom:296.189967px;}
.y1b{bottom:296.999988px;}
.ye5{bottom:297.369132px;}
.y161{bottom:303.254999px;}
.y160{bottom:305.504999px;}
.y9a{bottom:305.999987px;}
.y76{bottom:309.005843px;}
.y6{bottom:310.320021px;}
.yfb{bottom:311.624987px;}
.y3a{bottom:312.749987px;}
.y58{bottom:315.719998px;}
.y183{bottom:316.754991px;}
.ybd{bottom:317.879996px;}
.yfa{bottom:319.499987px;}
.yd3{bottom:324.369130px;}
.yf{bottom:325.124986px;}
.y139{bottom:326.564966px;}
.ye4{bottom:334.494130px;}
.y1a{bottom:335.249986px;}
.ybe{bottom:338.129995px;}
.y99{bottom:340.874986px;}
.y19d{bottom:341.999986px;}
.y127{bottom:343.439963px;}
.ye3{bottom:343.494130px;}
.y15f{bottom:343.754997px;}
.y18d{bottom:345.374986px;}
.ybc{bottom:346.004995px;}
.y15e{bottom:346.004997px;}
.y75{bottom:346.130842px;}
.y182{bottom:347.129989px;}
.y49{bottom:350.630841px;}
.yf9{bottom:350.999985px;}
.y126{bottom:351.314963px;}
.yd2{bottom:354.744129px;}
.y87{bottom:355.130841px;}
.y138{bottom:356.939965px;}
.y86{bottom:358.505841px;}
.yf8{bottom:358.874985px;}
.ye{bottom:361.124985px;}
.y6c{bottom:366.840027px;}
.y14b{bottom:367.064964px;}
.y14a{bottom:373.814964px;}
.y98{bottom:375.749984px;}
.y16b{bottom:376.874984px;}
.y125{bottom:382.814961px;}
.yd1{bottom:385.119128px;}
.y114{bottom:385.874984px;}
.y152{bottom:387.629995px;}
.y137{bottom:388.439963px;}
.yb2{bottom:388.754993px;}
.y124{bottom:390.689961px;}
.ye1{bottom:390.744128px;}
.y113{bottom:392.624984px;}
.yed{bottom:399.374983px;}
.y181{bottom:400.004987px;}
.y84{bottom:401.255839px;}
.y27{bottom:404.504994px;}
.y91{bottom:409.130839px;}
.y19{bottom:409.499983px;}
.y149{bottom:410.939962px;}
.y16a{bottom:411.749983px;}
.ye2{bottom:412.119127px;}
.y90{bottom:412.505839px;}
.y56{bottom:412.559994px;}
.y19e{bottom:412.874983px;}
.ya6{bottom:413.244127px;}
.y148{bottom:417.689962px;}
.y39{bottom:418.499983px;}
.y136{bottom:418.814962px;}
.ye0{bottom:421.119126px;}
.y123{bottom:422.189960px;}
.y85{bottom:424.880838px;}
.y83{bottom:428.255838px;}
.y112{bottom:429.749982px;}
.y122{bottom:430.064959px;}
.y180{bottom:431.504986px;}
.y26{bottom:431.504993px;}
.yd{bottom:435.374982px;}
.y111{bottom:436.499982px;}
.y18c{bottom:438.749982px;}
.y15d{bottom:441.629993px;}
.y15c{bottom:443.879993px;}
.y97{bottom:444.374981px;}
.y169{bottom:445.499981px;}
.ya5{bottom:446.994125px;}
.y18{bottom:447.749981px;}
.y4{bottom:449.999981px;}
.yf7{bottom:451.124981px;}
.yba{bottom:451.754991px;}
.y8e{bottom:455.255837px;}
.y25{bottom:458.504992px;}
.yf6{bottom:458.999981px;}
.y19c{bottom:461.249981px;}
.y146{bottom:461.564960px;}
.y48{bottom:468.755836px;}
.yc9{bottom:469.494124px;}
.y38{bottom:470.249980px;}
.y119{bottom:470.564958px;}
.y81{bottom:471.005836px;}
.ybb{bottom:472.004990px;}
.yc{bottom:472.499980px;}
.y110{bottom:473.624980px;}
.y96{bottom:478.124980px;}
.y8f{bottom:478.880836px;}
.yb9{bottom:479.879989px;}
.y10f{bottom:480.374980px;}
.ya4{bottom:481.869124px;}
.y15b{bottom:482.129991px;}
.y8d{bottom:482.255836px;}
.y109{bottom:482.624980px;}
.y17f{bottom:484.379984px;}
.y15a{bottom:484.379991px;}
.y147{bottom:485.189959px;}
.y62{bottom:491.624980px;}
.y145{bottom:491.939959px;}
.y82{bottom:494.630835px;}
.y19b{bottom:496.124979px;}
.y24{bottom:497.879990px;}
.y80{bottom:498.005835px;}
.yf4{bottom:498.374979px;}
.y18b{bottom:500.624979px;}
.yd0{bottom:506.619123px;}
.y171{bottom:508.499979px;}
.yb{bottom:510.749979px;}
.y17e{bottom:514.754982px;}
.y168{bottom:515.249979px;}
.ya3{bottom:516.744122px;}
.y108{bottom:518.624978px;}
.yf5{bottom:519.749978px;}
.yb7{bottom:520.379988px;}
.y37{bottom:520.874978px;}
.y159{bottom:521.504990px;}
.y121{bottom:522.314955px;}
.y158{bottom:523.754990px;}
.y8b{bottom:525.005834px;}
.y103{bottom:526.499978px;}
.yf3{bottom:527.624978px;}
.y3{bottom:528.749978px;}
.y53{bottom:529.559989px;}
.y95{bottom:529.874978px;}
.y120{bottom:530.189955px;}
.y18a{bottom:530.999978px;}
.y17{bottom:534.374978px;}
.y130{bottom:538.064957px;}
.y7e{bottom:540.755833px;}
.y135{bottom:541.439957px;}
.yde{bottom:541.494121px;}
.yb8{bottom:541.754987px;}
.ycf{bottom:542.619121px;}
.y170{bottom:546.749977px;}
.y8c{bottom:548.630833px;}
.y167{bottom:548.999977px;}
.yb6{bottom:549.629987px;}
.ya2{bottom:550.494121px;}
.y51{bottom:551.879988px;}
.y8a{bottom:552.005833px;}
.y107{bottom:554.624977px;}
.y11f{bottom:561.689954px;}
.y157{bottom:562.004988px;}
.ydf{bottom:562.869121px;}
.y156{bottom:564.254988px;}
.y7f{bottom:564.380832px;}
.y67{bottom:564.840018px;}
.y36{bottom:565.874976px;}
.y7d{bottom:567.755832px;}
.y11e{bottom:569.564953px;}
.ydd{bottom:571.869120px;}
.y16{bottom:572.624976px;}
.y134{bottom:577.439955px;}
.yce{bottom:578.619120px;}
.y17d{bottom:580.004980px;}
.y199{bottom:580.499976px;}
.y10e{bottom:584.999976px;}
.y47{bottom:585.755832px;}
.yf2{bottom:587.249976px;}
.yb4{bottom:589.004985px;}
.y89{bottom:591.380831px;}
.y106{bottom:591.749975px;}
.y88{bottom:594.755831px;}
.yf1{bottom:595.124975px;}
.y144{bottom:596.564955px;}
.ya1{bottom:597.744119px;}
.y143{bottom:603.314954px;}
.y188{bottom:605.249975px;}
.y151{bottom:605.879986px;}
.y2{bottom:608.624975px;}
.y23{bottom:609.254986px;}
.y118{bottom:610.064952px;}
.yb5{bottom:610.379984px;}
.y7b{bottom:610.505831px;}
.y17c{bottom:611.504978px;}
.y35{bottom:613.124974px;}
.y133{bottom:614.564954px;}
.ycd{bottom:614.619118px;}
.y198{bottom:615.374974px;}
.ydb{bottom:617.994118px;}
.yb3{bottom:618.254984px;}
.y16f{bottom:623.249974px;}
.ya{bottom:625.499974px;}
.y105{bottom:627.749974px;}
.y7c{bottom:634.130830px;}
.yec{bottom:635.624974px;}
.y22{bottom:636.254984px;}
.y7a{bottom:637.505829px;}
.y34{bottom:638.999973px;}
.y142{bottom:640.439953px;}
.ydc{bottom:640.494117px;}
.y179{bottom:644.624973px;}
.y141{bottom:647.189952px;}
.y4e{bottom:647.639984px;}
.y197{bottom:649.124973px;}
.yda{bottom:649.494117px;}
.y19a{bottom:650.249973px;}
.y132{bottom:650.564952px;}
.ycc{bottom:651.744117px;}
.y94{bottom:656.999973px;}
.y10d{bottom:659.249973px;}
.yb1{bottom:661.004982px;}
.y16e{bottom:661.499972px;}
.y21{bottom:663.254983px;}
.y10c{bottom:665.999972px;}
.y117{bottom:675.314949px;}
.y104{bottom:679.499972px;}
.y33{bottom:683.999972px;}
.y140{bottom:684.314951px;}
.y150{bottom:686.879983px;}
.y72{bottom:687.005827px;}
.ycb{bottom:687.744115px;}
.y178{bottom:688.499971px;}
.y61{bottom:690.749971px;}
.y13f{bottom:691.064951px;}
.y93{bottom:691.874971px;}
.y9{bottom:692.999971px;}
.y177{bottom:694.124971px;}
.yd8{bottom:695.619115px;}
.ya0{bottom:698.994115px;}
.y16d{bottom:699.749971px;}
.yeb{bottom:700.874971px;}
.y131{bottom:702.314950px;}
.y20{bottom:702.629982px;}
.y46{bottom:703.880827px;}
.y187{bottom:704.249971px;}
.y17b{bottom:707.129974px;}
.y102{bottom:710.999970px;}
.y32{bottom:712.124970px;}
.y116{bottom:713.564947px;}
.yd9{bottom:716.994114px;}
.yd7{bottom:725.994114px;}
.yb0{bottom:728.504979px;}
.y195{bottom:733.499969px;}
.y12f{bottom:736.064949px;}
.yea{bottom:739.124969px;}
.yca{bottom:740.619113px;}
.y176{bottom:744.749969px;}
.y60{bottom:755.999969px;}
.y16c{bottom:757.124968px;}
.y45{bottom:759.005824px;}
.y14f{bottom:760.004980px;}
.yaf{bottom:766.754978px;}
.y194{bottom:768.374968px;}
.y196{bottom:769.499968px;}
.yc8{bottom:774.369112px;}
.y71{bottom:778.130824px;}
.y9f{bottom:787.869111px;}
.y31{bottom:790.874967px;}
.y92{bottom:791.999967px;}
.y14e{bottom:794.879978px;}
.y166{bottom:795.374967px;}
.y115{bottom:797.939944px;}
.y1f{bottom:802.754978px;}
.y70{bottom:808.505822px;}
.y101{bottom:812.249966px;}
.y44{bottom:814.130822px;}
.y5f{bottom:817.874966px;}
.ye9{bottom:823.499966px;}
.y12e{bottom:840.689944px;}
.y18f{bottom:850.499965px;}
.yae{bottom:853.379974px;}
.y1e{bottom:878.129974px;}
.yc7{bottom:881.244107px;}
.y14d{bottom:887.129974px;}
.y43{bottom:894.005819px;}
.y6f{bottom:897.380819px;}
.y165{bottom:902.249962px;}
.y5e{bottom:903.374962px;}
.h28{height:22.679999px;}
.ha{height:23.039999px;}
.h27{height:43.919998px;}
.h2a{height:44.279998px;}
.h29{height:44.999998px;}
.h1d{height:46.565998px;}
.hb{height:48.131998px;}
.h1e{height:49.391998px;}
.h38{height:49.949998px;}
.h20{height:50.147998px;}
.h1f{height:50.462998px;}
.h39{height:51.569998px;}
.h1b{height:53.729998px;}
.h1a{height:54.067498px;}
.h3c{height:55.007998px;}
.h3d{height:57.111326px;}
.h33{height:57.311998px;}
.h3b{height:57.671998px;}
.h6f{height:58.445998px;}
.h16{height:58.841998px;}
.h1c{height:59.975998px;}
.h51{height:60.893997px;}
.h50{height:61.276497px;}
.h12{height:61.883997px;}
.h3{height:62.999997px;}
.h15{height:63.044997px;}
.h58{height:63.503997px;}
.h30{height:64.475997px;}
.h31{height:64.880997px;}
.h8{height:65.321997px;}
.h57{height:66.460337px;}
.h60{height:66.937497px;}
.h19{height:67.031997px;}
.h14{height:67.247997px;}
.h4f{height:68.057997px;}
.h2f{height:68.485497px;}
.he{height:68.759997px;}
.h26{height:69.844497px;}
.h24{height:70.559997px;}
.h6a{height:70.874997px;}
.h56{height:70.884885px;}
.h6b{height:71.639997px;}
.hd{height:72.089997px;}
.h62{height:72.674997px;}
.h42{height:75.653997px;}
.h9{height:75.694497px;}
.h67{height:76.949997px;}
.h40{height:77.615997px;}
.h46{height:78.061497px;}
.h6e{height:78.749997px;}
.h65{height:79.001997px;}
.h25{height:79.298997px;}
.hc{height:84.671996px;}
.h7{height:86.183996px;}
.h2e{height:86.507996px;}
.h3a{height:86.579996px;}
.h66{height:86.624996px;}
.h4{height:89.279996px;}
.h4a{height:90.386996px;}
.h37{height:93.716996px;}
.h61{height:94.049996px;}
.h54{height:94.499996px;}
.h55{height:94.513180px;}
.h5{height:95.381996px;}
.h5f{height:98.549996px;}
.h49{height:102.374996px;}
.h5e{height:103.049996px;}
.h32{height:107.279996px;}
.h4e{height:110.249995px;}
.h13{height:110.496089px;}
.h41{height:141.749994px;}
.h6{height:144.179994px;}
.h11{height:164.339993px;}
.h5d{height:170.999993px;}
.h2{height:230.687990px;}
.h1{height:809.999966px;}
.h0{height:810.000000px;}
.h6c{height:812.879970px;}
.h6d{height:813.000000px;}
.h45{height:887.994107px;}
.h44{height:888.000000px;}
.h43{height:888.120030px;}
.h18{height:890.999963px;}
.h17{height:891.000000px;}
.h59{height:892.439940px;}
.h5a{height:892.500000px;}
.h3f{height:908.999962px;}
.h3e{height:909.000000px;}
.h53{height:917.999962px;}
.h52{height:918.000000px;}
.h71{height:944.999961px;}
.h70{height:945.000000px;}
.h5b{height:946.439940px;}
.h5c{height:946.500000px;}
.h47{height:947.879970px;}
.h48{height:948.000000px;}
.hf{height:983.879970px;}
.h10{height:984.000000px;}
.h4d{height:986.994103px;}
.h4c{height:987.000000px;}
.h4b{height:987.119940px;}
.h22{height:988.500000px;}
.h23{height:988.505815px;}
.h21{height:988.559970px;}
.h63{height:992.879970px;}
.h64{height:993.000000px;}
.h35{height:997.500000px;}
.h36{height:997.505814px;}
.h34{height:997.559970px;}
.h2d{height:1003.499958px;}
.h2c{height:1003.500000px;}
.h2b{height:1003.680000px;}
.h69{height:1007.999958px;}
.h68{height:1008.000000px;}
.w3{width:217.439991px;}
.w2{width:546.119977px;}
.wd{width:560.519977px;}
.wf{width:566.279976px;}
.w4{width:567.359976px;}
.wc{width:569.519976px;}
.w10{width:571.679976px;}
.wb{width:576.359976px;}
.w6{width:582.119976px;}
.we{width:584.279976px;}
.w9{width:589.679975px;}
.w5{width:592.919975px;}
.w8{width:602.279975px;}
.wa{width:608.039975px;}
.w7{width:617.759974px;}
.w1{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xd{left:67.499997px;}
.x1b{left:76.499997px;}
.x6{left:78.749997px;}
.xc{left:87.749996px;}
.x3{left:89.999996px;}
.x1a{left:94.499996px;}
.xb{left:97.874996px;}
.x27{left:98.999996px;}
.x7{left:101.249996px;}
.x11{left:103.499996px;}
.x13{left:105.749996px;}
.xf{left:106.874996px;}
.x21{left:107.999996px;}
.x19{left:110.249995px;}
.x1{left:112.499995px;}
.x26{left:118.124995px;}
.x4{left:123.749995px;}
.x16{left:125.999995px;}
.x18{left:128.249995px;}
.x14{left:130.499995px;}
.x1f{left:145.124994px;}
.x2{left:148.499994px;}
.xa{left:730.124970px;}
.x10{left:731.159970px;}
.x23{left:739.687469px;}
.x24{left:748.687469px;}
.x8{left:756.562468px;}
.x12{left:758.812468px;}
.x1d{left:764.437468px;}
.x22{left:766.687468px;}
.x1e{left:768.937468px;}
.x1c{left:771.187468px;}
.x17{left:772.874968px;}
.x25{left:778.499968px;}
.x15{left:785.812467px;}
.x20{left:1023.749957px;}
.x5{left:1132.559953px;}
.x9{left:1144.079952px;}
.xe{left:1155.239952px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.000000pt;}
.v3{vertical-align:8.000000pt;}
.v1{vertical-align:12.000000pt;}
.v2{vertical-align:15.999999pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.776000pt;}
.lsa{letter-spacing:1.844000pt;}
.ls2{letter-spacing:38.999998pt;}
.lsc{letter-spacing:39.999998pt;}
.ls9{letter-spacing:40.499998pt;}
.ls7{letter-spacing:40.999998pt;}
.lsb{letter-spacing:41.999998pt;}
.lsd{letter-spacing:54.999998pt;}
.ls5{letter-spacing:55.999998pt;}
.ls6{letter-spacing:57.999998pt;}
.ls1{letter-spacing:59.999998pt;}
.ls4{letter-spacing:71.999997pt;}
.ls3{letter-spacing:73.999997pt;}
.ws0{word-spacing:-54.271998pt;}
.ws14{word-spacing:-40.679998pt;}
.ws2{word-spacing:-33.919999pt;}
.ws1c{word-spacing:-21.359999pt;}
.ws1a{word-spacing:-20.943999pt;}
.ws17{word-spacing:-20.351999pt;}
.ws16{word-spacing:-20.291999pt;}
.ws15{word-spacing:-19.223999pt;}
.ws3{word-spacing:-18.879999pt;}
.ws19{word-spacing:-18.655999pt;}
.ws18{word-spacing:-18.155999pt;}
.ws5{word-spacing:-18.087999pt;}
.ws4{word-spacing:-17.087999pt;}
.ws1b{word-spacing:-16.959999pt;}
.ws6{word-spacing:-16.019999pt;}
.ws13{word-spacing:-14.951999pt;}
.wse{word-spacing:-14.415999pt;}
.wsc{word-spacing:-8.680000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:238.853990pt;}
.ws8{word-spacing:318.853987pt;}
.wsb{word-spacing:404.981983pt;}
.ws9{word-spacing:414.381983pt;}
.ws7{word-spacing:430.997982pt;}
.wsf{word-spacing:1777.571926pt;}
.wsd{word-spacing:1801.571925pt;}
.ws12{word-spacing:1805.975925pt;}
.ws11{word-spacing:1984.443917pt;}
.ws10{word-spacing:1997.523917pt;}
._24{margin-left:-3334.135861pt;}
._4{margin-left:-6.304000pt;}
._2{margin-left:-5.056000pt;}
._6{margin-left:-3.920000pt;}
._0{margin-left:-3.008000pt;}
._1{margin-left:-1.824000pt;}
._8{margin-left:-0.896000pt;}
._3{width:0.896000pt;}
._5{width:2.416000pt;}
._7{width:3.600000pt;}
._9{width:4.700000pt;}
._a{width:5.992000pt;}
._b{width:7.020000pt;}
._16{width:149.419514pt;}
._1a{width:168.035513pt;}
._12{width:291.049988pt;}
._1b{width:305.677987pt;}
._1f{width:346.417986pt;}
._17{width:383.569984pt;}
._18{width:393.859504pt;}
._1d{width:406.805983pt;}
._15{width:443.929982pt;}
._21{width:466.195501pt;}
._20{width:506.957979pt;}
._19{width:515.653979pt;}
._1e{width:614.131494pt;}
._1c{width:621.851494pt;}
._e{width:864.260484pt;}
._11{width:880.060443pt;}
._14{width:885.983483pt;}
._13{width:928.485961pt;}
._c{width:944.628481pt;}
._f{width:951.808440pt;}
._10{width:992.380479pt;}
._d{width:1129.468433pt;}
._22{width:1601.727933pt;}
._23{width:1605.911933pt;}
.fsd{font-size:51.999998pt;}
.fs8{font-size:55.999998pt;}
.fsb{font-size:59.999998pt;}
.fsa{font-size:63.999997pt;}
.fsc{font-size:67.999997pt;}
.fs1{font-size:71.999997pt;}
.fs10{font-size:74.215898pt;}
.fs6{font-size:75.999997pt;}
.fs2{font-size:79.999997pt;}
.fs7{font-size:83.999997pt;}
.fs9{font-size:87.999996pt;}
.fs5{font-size:95.999996pt;}
.fse{font-size:103.999996pt;}
.fs3{font-size:111.999995pt;}
.fsf{font-size:143.999994pt;}
.fs4{font-size:159.999993pt;}
.fs0{font-size:255.999989pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000030pt;}
.y30{bottom:0.000033pt;}
.ye8{bottom:0.000034pt;}
.y18e{bottom:0.000035pt;}
.y164{bottom:0.000037pt;}
.y42{bottom:0.048138pt;}
.yc6{bottom:0.111855pt;}
.y9e{bottom:0.111932pt;}
.y5d{bottom:0.160037pt;}
.y55{bottom:5.000000pt;}
.y50{bottom:5.040000pt;}
.y59{bottom:5.080000pt;}
.y6e{bottom:5.120000pt;}
.y52{bottom:5.160000pt;}
.y2f{bottom:5.200000pt;}
.y12d{bottom:5.240000pt;}
.y15{bottom:5.280000pt;}
.y6b{bottom:6.080000pt;}
.y8{bottom:10.160000pt;}
.y57{bottom:23.999999pt;}
.y4f{bottom:24.039999pt;}
.y5b{bottom:24.079999pt;}
.y54{bottom:24.999999pt;}
.y6a{bottom:30.079999pt;}
.y14{bottom:30.720029pt;}
.y41{bottom:30.720032pt;}
.y100{bottom:30.720033pt;}
.y19f{bottom:30.720034pt;}
.y17a{bottom:30.720036pt;}
.y12c{bottom:31.039978pt;}
.y14c{bottom:31.039980pt;}
.y6d{bottom:31.040036pt;}
.ye7{bottom:31.359982pt;}
.y186{bottom:31.360002pt;}
.yc5{bottom:31.360007pt;}
.y2e{bottom:31.360008pt;}
.yad{bottom:31.360058pt;}
.y5c{bottom:31.680009pt;}
.y7{bottom:50.159998pt;}
.y69{bottom:54.079998pt;}
.y40{bottom:59.999997pt;}
.y4d{bottom:62.671869pt;}
.y11d{bottom:65.279977pt;}
.y79{bottom:68.671869pt;}
.y193{bottom:70.999997pt;}
.y2d{bottom:71.560007pt;}
.yac{bottom:75.328125pt;}
.y155{bottom:76.560007pt;}
.y68{bottom:78.079997pt;}
.y13e{bottom:78.279978pt;}
.y175{bottom:83.999996pt;}
.y4c{bottom:88.671868pt;}
.yf0{bottom:91.999996pt;}
.y9d{bottom:93.999996pt;}
.y11c{bottom:94.279976pt;}
.y2c{bottom:94.560006pt;}
.y78{bottom:94.671868pt;}
.y3f{bottom:95.999996pt;}
.y192{bottom:102.999996pt;}
.y154{bottom:104.560006pt;}
.y13d{bottom:105.279977pt;}
.yab{bottom:107.328124pt;}
.y4b{bottom:113.671867pt;}
.y174{bottom:116.999995pt;}
.y77{bottom:119.671867pt;}
.yef{bottom:120.999995pt;}
.y9c{bottom:122.999995pt;}
.y11b{bottom:123.279975pt;}
.y13{bottom:127.999995pt;}
.y153{bottom:131.560005pt;}
.y3e{bottom:131.999994pt;}
.y13c{bottom:133.279976pt;}
.y191{bottom:135.999994pt;}
.y66{bottom:138.999994pt;}
.yaa{bottom:140.328122pt;}
.y5{bottom:145.999994pt;}
.yee{bottom:148.999994pt;}
.y9b{bottom:151.999994pt;}
.yc3{bottom:159.560002pt;}
.y12{bottom:160.999993pt;}
.y1d{bottom:163.999993pt;}
.y3d{bottom:167.999993pt;}
.y65{bottom:168.999993pt;}
.y5a{bottom:176.640003pt;}
.y2b{bottom:177.560002pt;}
.yc4{bottom:178.560001pt;}
.y173{bottom:180.999992pt;}
.y12b{bottom:181.279972pt;}
.ya9{bottom:184.328120pt;}
.yc2{bottom:185.560001pt;}
.y12a{bottom:188.279972pt;}
.y11{bottom:192.999992pt;}
.y189{bottom:194.999992pt;}
.y1c{bottom:197.999992pt;}
.y64{bottom:199.999992pt;}
.y2a{bottom:201.560001pt;}
.y3c{bottom:203.999991pt;}
.y74{bottom:204.671863pt;}
.yd6{bottom:206.328119pt;}
.y185{bottom:207.559995pt;}
.yff{bottom:207.999991pt;}
.y190{bottom:209.999991pt;}
.y172{bottom:213.999991pt;}
.yfe{bottom:214.999991pt;}
.y129{bottom:216.279971pt;}
.ya8{bottom:216.328119pt;}
.y10b{bottom:217.999991pt;}
.yc0{bottom:220.559999pt;}
.y128{bottom:223.279970pt;}
.y29{bottom:225.560000pt;}
.y4a{bottom:226.671863pt;}
.yd5{bottom:233.328118pt;}
.y163{bottom:233.560000pt;}
.y184{bottom:234.559994pt;}
.y162{bottom:235.560000pt;}
.y13b{bottom:236.279972pt;}
.yc1{bottom:239.559998pt;}
.y3b{bottom:239.999990pt;}
.y63{bottom:241.999990pt;}
.yfd{bottom:242.999990pt;}
.ybf{bottom:246.559998pt;}
.y10a{bottom:246.999990pt;}
.yfc{bottom:249.999990pt;}
.ye6{bottom:256.328117pt;}
.y10{bottom:256.999989pt;}
.y11a{bottom:259.279969pt;}
.y73{bottom:259.671861pt;}
.y28{bottom:260.559999pt;}
.yd4{bottom:261.328117pt;}
.ya7{bottom:262.328117pt;}
.y13a{bottom:263.279971pt;}
.y1b{bottom:263.999989pt;}
.ye5{bottom:264.328117pt;}
.y161{bottom:269.559999pt;}
.y160{bottom:271.559999pt;}
.y9a{bottom:271.999989pt;}
.y76{bottom:274.671861pt;}
.y6{bottom:275.840019pt;}
.yfb{bottom:276.999988pt;}
.y3a{bottom:277.999988pt;}
.y58{bottom:280.639998pt;}
.y183{bottom:281.559992pt;}
.ybd{bottom:282.559997pt;}
.yfa{bottom:283.999988pt;}
.yd3{bottom:288.328116pt;}
.yf{bottom:288.999988pt;}
.y139{bottom:290.279970pt;}
.ye4{bottom:297.328116pt;}
.y1a{bottom:297.999988pt;}
.ybe{bottom:300.559996pt;}
.y99{bottom:302.999987pt;}
.y19d{bottom:303.999987pt;}
.y127{bottom:305.279967pt;}
.ye3{bottom:305.328115pt;}
.y15f{bottom:305.559997pt;}
.y18d{bottom:306.999987pt;}
.ybc{bottom:307.559996pt;}
.y15e{bottom:307.559997pt;}
.y75{bottom:307.671859pt;}
.y182{bottom:308.559991pt;}
.y49{bottom:311.671859pt;}
.yf9{bottom:311.999987pt;}
.y126{bottom:312.279967pt;}
.yd2{bottom:315.328115pt;}
.y87{bottom:315.671859pt;}
.y138{bottom:317.279968pt;}
.y86{bottom:318.671859pt;}
.yf8{bottom:318.999987pt;}
.ye{bottom:320.999987pt;}
.y6c{bottom:326.080024pt;}
.y14b{bottom:326.279968pt;}
.y14a{bottom:332.279968pt;}
.y98{bottom:333.999986pt;}
.y16b{bottom:334.999986pt;}
.y125{bottom:340.279966pt;}
.yd1{bottom:342.328114pt;}
.y114{bottom:342.999986pt;}
.y152{bottom:344.559996pt;}
.y137{bottom:345.279967pt;}
.yb2{bottom:345.559994pt;}
.y124{bottom:347.279965pt;}
.ye1{bottom:347.328114pt;}
.y113{bottom:348.999985pt;}
.yed{bottom:354.999985pt;}
.y181{bottom:355.559989pt;}
.y84{bottom:356.671857pt;}
.y27{bottom:359.559995pt;}
.y91{bottom:363.671857pt;}
.y19{bottom:363.999985pt;}
.y149{bottom:365.279966pt;}
.y16a{bottom:365.999985pt;}
.ye2{bottom:366.328113pt;}
.y90{bottom:366.671857pt;}
.y56{bottom:366.719995pt;}
.y19e{bottom:366.999985pt;}
.ya6{bottom:367.328113pt;}
.y148{bottom:371.279966pt;}
.y39{bottom:371.999984pt;}
.y136{bottom:372.279966pt;}
.ye0{bottom:374.328112pt;}
.y123{bottom:375.279964pt;}
.y85{bottom:377.671856pt;}
.y83{bottom:380.671856pt;}
.y112{bottom:381.999984pt;}
.y122{bottom:382.279964pt;}
.y180{bottom:383.559987pt;}
.y26{bottom:383.559994pt;}
.yd{bottom:386.999984pt;}
.y111{bottom:387.999984pt;}
.y18c{bottom:389.999984pt;}
.y15d{bottom:392.559994pt;}
.y15c{bottom:394.559994pt;}
.y97{bottom:394.999984pt;}
.y169{bottom:395.999984pt;}
.ya5{bottom:397.328111pt;}
.y18{bottom:397.999983pt;}
.y4{bottom:399.999983pt;}
.yf7{bottom:400.999983pt;}
.yba{bottom:401.559992pt;}
.y8e{bottom:404.671855pt;}
.y25{bottom:407.559993pt;}
.yf6{bottom:407.999983pt;}
.y19c{bottom:409.999983pt;}
.y146{bottom:410.279965pt;}
.y48{bottom:416.671855pt;}
.yc9{bottom:417.328111pt;}
.y38{bottom:417.999983pt;}
.y119{bottom:418.279962pt;}
.y81{bottom:418.671855pt;}
.ybb{bottom:419.559991pt;}
.yc{bottom:419.999982pt;}
.y110{bottom:420.999982pt;}
.y96{bottom:424.999982pt;}
.y8f{bottom:425.671854pt;}
.yb9{bottom:426.559991pt;}
.y10f{bottom:426.999982pt;}
.ya4{bottom:428.328110pt;}
.y15b{bottom:428.559992pt;}
.y8d{bottom:428.671854pt;}
.y109{bottom:428.999982pt;}
.y17f{bottom:430.559985pt;}
.y15a{bottom:430.559992pt;}
.y147{bottom:431.279964pt;}
.y62{bottom:436.999982pt;}
.y145{bottom:437.279963pt;}
.y82{bottom:439.671854pt;}
.y19b{bottom:440.999982pt;}
.y24{bottom:442.559991pt;}
.y80{bottom:442.671854pt;}
.yf4{bottom:442.999982pt;}
.y18b{bottom:444.999981pt;}
.yd0{bottom:450.328109pt;}
.y171{bottom:451.999981pt;}
.yb{bottom:453.999981pt;}
.y17e{bottom:457.559984pt;}
.y168{bottom:457.999981pt;}
.ya3{bottom:459.328109pt;}
.y108{bottom:460.999981pt;}
.yf5{bottom:461.999981pt;}
.yb7{bottom:462.559989pt;}
.y37{bottom:462.999981pt;}
.y159{bottom:463.559991pt;}
.y121{bottom:464.279960pt;}
.y158{bottom:465.559991pt;}
.y8b{bottom:466.671853pt;}
.y103{bottom:467.999981pt;}
.yf3{bottom:468.999980pt;}
.y3{bottom:469.999980pt;}
.y53{bottom:470.719990pt;}
.y95{bottom:470.999980pt;}
.y120{bottom:471.279960pt;}
.y18a{bottom:471.999980pt;}
.y17{bottom:474.999980pt;}
.y130{bottom:478.279962pt;}
.y7e{bottom:480.671852pt;}
.y135{bottom:481.279962pt;}
.yde{bottom:481.328108pt;}
.yb8{bottom:481.559988pt;}
.ycf{bottom:482.328108pt;}
.y170{bottom:485.999980pt;}
.y8c{bottom:487.671852pt;}
.y167{bottom:487.999980pt;}
.yb6{bottom:488.559988pt;}
.ya2{bottom:489.328108pt;}
.y51{bottom:490.559990pt;}
.y8a{bottom:490.671852pt;}
.y107{bottom:492.999979pt;}
.y11f{bottom:499.279959pt;}
.y157{bottom:499.559989pt;}
.ydf{bottom:500.328107pt;}
.y156{bottom:501.559989pt;}
.y7f{bottom:501.671851pt;}
.y67{bottom:502.080016pt;}
.y36{bottom:502.999979pt;}
.y7d{bottom:504.671851pt;}
.y11e{bottom:506.279959pt;}
.ydd{bottom:508.328107pt;}
.y16{bottom:508.999979pt;}
.y134{bottom:513.279960pt;}
.yce{bottom:514.328107pt;}
.y17d{bottom:515.559982pt;}
.y199{bottom:515.999979pt;}
.y10e{bottom:519.999978pt;}
.y47{bottom:520.671850pt;}
.yf2{bottom:521.999978pt;}
.yb4{bottom:523.559987pt;}
.y89{bottom:525.671850pt;}
.y106{bottom:525.999978pt;}
.y88{bottom:528.671850pt;}
.yf1{bottom:528.999978pt;}
.y144{bottom:530.279960pt;}
.ya1{bottom:531.328106pt;}
.y143{bottom:536.279959pt;}
.y188{bottom:537.999978pt;}
.y151{bottom:538.559988pt;}
.y2{bottom:540.999977pt;}
.y23{bottom:541.559987pt;}
.y118{bottom:542.279957pt;}
.yb5{bottom:542.559986pt;}
.y7b{bottom:542.671849pt;}
.y17c{bottom:543.559981pt;}
.y35{bottom:544.999977pt;}
.y133{bottom:546.279959pt;}
.ycd{bottom:546.328105pt;}
.y198{bottom:546.999977pt;}
.ydb{bottom:549.328105pt;}
.yb3{bottom:549.559986pt;}
.y16f{bottom:553.999977pt;}
.ya{bottom:555.999977pt;}
.y105{bottom:557.999977pt;}
.y7c{bottom:563.671849pt;}
.yec{bottom:564.999976pt;}
.y22{bottom:565.559986pt;}
.y7a{bottom:566.671848pt;}
.y34{bottom:567.999976pt;}
.y142{bottom:569.279958pt;}
.ydc{bottom:569.328104pt;}
.y179{bottom:572.999976pt;}
.y141{bottom:575.279958pt;}
.y4e{bottom:575.679986pt;}
.y197{bottom:576.999976pt;}
.yda{bottom:577.328104pt;}
.y19a{bottom:577.999976pt;}
.y132{bottom:578.279958pt;}
.ycc{bottom:579.328104pt;}
.y94{bottom:583.999976pt;}
.y10d{bottom:585.999976pt;}
.yb1{bottom:587.559984pt;}
.y16e{bottom:587.999976pt;}
.y21{bottom:589.559985pt;}
.y10c{bottom:591.999975pt;}
.y117{bottom:600.279955pt;}
.y104{bottom:603.999975pt;}
.y33{bottom:607.999975pt;}
.y140{bottom:608.279956pt;}
.y150{bottom:610.559985pt;}
.y72{bottom:610.671847pt;}
.ycb{bottom:611.328103pt;}
.y178{bottom:611.999975pt;}
.y61{bottom:613.999974pt;}
.y13f{bottom:614.279956pt;}
.y93{bottom:614.999974pt;}
.y9{bottom:615.999974pt;}
.y177{bottom:616.999974pt;}
.yd8{bottom:618.328102pt;}
.ya0{bottom:621.328102pt;}
.y16d{bottom:621.999974pt;}
.yeb{bottom:622.999974pt;}
.y131{bottom:624.279956pt;}
.y20{bottom:624.559984pt;}
.y46{bottom:625.671846pt;}
.y187{bottom:625.999974pt;}
.y17b{bottom:628.559977pt;}
.y102{bottom:631.999974pt;}
.y32{bottom:632.999974pt;}
.y116{bottom:634.279953pt;}
.yd9{bottom:637.328101pt;}
.yd7{bottom:645.328101pt;}
.yb0{bottom:647.559981pt;}
.y195{bottom:651.999973pt;}
.y12f{bottom:654.279954pt;}
.yea{bottom:656.999973pt;}
.yca{bottom:658.328101pt;}
.y176{bottom:661.999972pt;}
.y60{bottom:671.999972pt;}
.y16c{bottom:672.999972pt;}
.y45{bottom:674.671844pt;}
.y14f{bottom:675.559982pt;}
.yaf{bottom:681.559980pt;}
.y194{bottom:682.999972pt;}
.y196{bottom:683.999972pt;}
.yc8{bottom:688.328099pt;}
.y71{bottom:691.671843pt;}
.y9f{bottom:700.328099pt;}
.y31{bottom:702.999971pt;}
.y92{bottom:703.999971pt;}
.y14e{bottom:706.559981pt;}
.y166{bottom:706.999971pt;}
.y115{bottom:709.279950pt;}
.y1f{bottom:713.559980pt;}
.y70{bottom:718.671842pt;}
.y101{bottom:721.999970pt;}
.y44{bottom:723.671842pt;}
.y5f{bottom:726.999970pt;}
.ye9{bottom:731.999970pt;}
.y12e{bottom:747.279951pt;}
.y18f{bottom:755.999969pt;}
.yae{bottom:758.559977pt;}
.y1e{bottom:780.559977pt;}
.yc7{bottom:783.328095pt;}
.y14d{bottom:788.559977pt;}
.y43{bottom:794.671839pt;}
.y6f{bottom:797.671839pt;}
.y165{bottom:801.999967pt;}
.y5e{bottom:802.999967pt;}
.h28{height:20.159999pt;}
.ha{height:20.479999pt;}
.h27{height:39.039998pt;}
.h2a{height:39.359998pt;}
.h29{height:39.999998pt;}
.h1d{height:41.391998pt;}
.hb{height:42.783998pt;}
.h1e{height:43.903998pt;}
.h38{height:44.399998pt;}
.h20{height:44.575998pt;}
.h1f{height:44.855998pt;}
.h39{height:45.839998pt;}
.h1b{height:47.759998pt;}
.h1a{height:48.059998pt;}
.h3c{height:48.895998pt;}
.h3d{height:50.765623pt;}
.h33{height:50.943998pt;}
.h3b{height:51.263998pt;}
.h6f{height:51.951998pt;}
.h16{height:52.303998pt;}
.h1c{height:53.311998pt;}
.h51{height:54.127998pt;}
.h50{height:54.467998pt;}
.h12{height:55.007998pt;}
.h3{height:55.999998pt;}
.h15{height:56.039998pt;}
.h58{height:56.447998pt;}
.h30{height:57.311998pt;}
.h31{height:57.671998pt;}
.h8{height:58.063998pt;}
.h57{height:59.075855pt;}
.h60{height:59.499998pt;}
.h19{height:59.583998pt;}
.h14{height:59.775998pt;}
.h4f{height:60.495997pt;}
.h2f{height:60.875997pt;}
.he{height:61.119997pt;}
.h26{height:62.083997pt;}
.h24{height:62.719997pt;}
.h6a{height:62.999997pt;}
.h56{height:63.008786pt;}
.h6b{height:63.679997pt;}
.hd{height:64.079997pt;}
.h62{height:64.599997pt;}
.h42{height:67.247997pt;}
.h9{height:67.283997pt;}
.h67{height:68.399997pt;}
.h40{height:68.991997pt;}
.h46{height:69.387997pt;}
.h6e{height:69.999997pt;}
.h65{height:70.223997pt;}
.h25{height:70.487997pt;}
.hc{height:75.263997pt;}
.h7{height:76.607997pt;}
.h2e{height:76.895997pt;}
.h3a{height:76.959997pt;}
.h66{height:76.999997pt;}
.h4{height:79.359997pt;}
.h4a{height:80.343997pt;}
.h37{height:83.303997pt;}
.h61{height:83.599997pt;}
.h54{height:83.999997pt;}
.h55{height:84.011715pt;}
.h5{height:84.783996pt;}
.h5f{height:87.599996pt;}
.h49{height:90.999996pt;}
.h5e{height:91.599996pt;}
.h32{height:95.359996pt;}
.h4e{height:97.999996pt;}
.h13{height:98.218746pt;}
.h41{height:125.999995pt;}
.h6{height:128.159995pt;}
.h11{height:146.079994pt;}
.h5d{height:151.999994pt;}
.h2{height:205.055991pt;}
.h1{height:719.999970pt;}
.h0{height:720.000000pt;}
.h6c{height:722.559973pt;}
.h6d{height:722.666667pt;}
.h45{height:789.328095pt;}
.h44{height:789.333333pt;}
.h43{height:789.440027pt;}
.h18{height:791.999967pt;}
.h17{height:792.000000pt;}
.h59{height:793.279947pt;}
.h5a{height:793.333333pt;}
.h3f{height:807.999966pt;}
.h3e{height:808.000000pt;}
.h53{height:815.999966pt;}
.h52{height:816.000000pt;}
.h71{height:839.999965pt;}
.h70{height:840.000000pt;}
.h5b{height:841.279947pt;}
.h5c{height:841.333333pt;}
.h47{height:842.559973pt;}
.h48{height:842.666667pt;}
.hf{height:874.559973pt;}
.h10{height:874.666667pt;}
.h4d{height:877.328091pt;}
.h4c{height:877.333333pt;}
.h4b{height:877.439947pt;}
.h22{height:878.666667pt;}
.h23{height:878.671835pt;}
.h21{height:878.719973pt;}
.h63{height:882.559973pt;}
.h64{height:882.666667pt;}
.h35{height:886.666667pt;}
.h36{height:886.671835pt;}
.h34{height:886.719973pt;}
.h2d{height:891.999963pt;}
.h2c{height:892.000000pt;}
.h2b{height:892.160000pt;}
.h69{height:895.999963pt;}
.h68{height:896.000000pt;}
.w3{width:193.279992pt;}
.w2{width:485.439980pt;}
.wd{width:498.239979pt;}
.wf{width:503.359979pt;}
.w4{width:504.319979pt;}
.wc{width:506.239979pt;}
.w10{width:508.159979pt;}
.wb{width:512.319979pt;}
.w6{width:517.439978pt;}
.we{width:519.359978pt;}
.w9{width:524.159978pt;}
.w5{width:527.039978pt;}
.w8{width:535.359978pt;}
.wa{width:540.479977pt;}
.w7{width:549.119977pt;}
.w1{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xd{left:59.999998pt;}
.x1b{left:67.999997pt;}
.x6{left:69.999997pt;}
.xc{left:77.999997pt;}
.x3{left:79.999997pt;}
.x1a{left:83.999997pt;}
.xb{left:86.999996pt;}
.x27{left:87.999996pt;}
.x7{left:89.999996pt;}
.x11{left:91.999996pt;}
.x13{left:93.999996pt;}
.xf{left:94.999996pt;}
.x21{left:95.999996pt;}
.x19{left:97.999996pt;}
.x1{left:99.999996pt;}
.x26{left:104.999996pt;}
.x4{left:109.999995pt;}
.x16{left:111.999995pt;}
.x18{left:113.999995pt;}
.x14{left:115.999995pt;}
.x1f{left:128.999995pt;}
.x2{left:131.999995pt;}
.xa{left:648.999973pt;}
.x10{left:649.919973pt;}
.x23{left:657.499973pt;}
.x24{left:665.499972pt;}
.x8{left:672.499972pt;}
.x12{left:674.499972pt;}
.x1d{left:679.499972pt;}
.x22{left:681.499972pt;}
.x1e{left:683.499972pt;}
.x1c{left:685.499971pt;}
.x17{left:686.999971pt;}
.x25{left:691.999971pt;}
.x15{left:698.499971pt;}
.x20{left:909.999962pt;}
.x5{left:1006.719958pt;}
.x9{left:1016.959958pt;}
.xe{left:1026.879957pt;}
}




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