
    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_4b79864b26fca8ea85e9928c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.192000;font-style:normal;font-weight: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_f26b5fa22f364f8e7d0275b3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.247000;font-style:normal;font-weight: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_8975e340184e5f5f47d64b4e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.247000;font-style:normal;font-weight: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_113b6ed98aaf1f5bc7b808c7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.247000;font-style:normal;font-weight: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_498c25e296c9322c5285b061.woff')format("woff");}.ff5{font-family:ff5;line-height:1.247000;font-style:normal;font-weight: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_5eb6ef6c874fa4899582dd5c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.247000;font-style:normal;font-weight: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_dd8a9a023e5d0c142dc4687b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.247000;font-style:normal;font-weight: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_d60aeef756370c1e262abe56.woff')format("woff");}.ff8{font-family:ff8;line-height:1.247000;font-style:normal;font-weight: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_baab2b8b408a47075a679214.woff')format("woff");}.ff9{font-family:ff9;line-height:1.409000;font-style:normal;font-weight: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_32432d2573f87eb353929ca0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.247000;font-style:normal;font-weight: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_ad794562f111698bb62419e9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.969000;font-style:normal;font-weight: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_a946bdd90b8c2e44735784d4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.247000;font-style:normal;font-weight: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_f195683b907d7b137ef479fb.woff')format("woff");}.ffd{font-family:ffd;line-height:1.247000;font-style:normal;font-weight: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_d7700d29ab7e49c729fe27c2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.109000;font-style:normal;font-weight: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_a94fa1518af8560f2b0c79dd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b8cc392b353c5668a194ac14.woff')format("woff");}.ff10{font-family:ff10;line-height:1.111000;font-style:normal;font-weight: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_0374dc21ba4753ed94121262.woff')format("woff");}.ff11{font-family:ff11;line-height:0.986000;font-style:normal;font-weight: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_731af5be460bba86e9117428.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_16c5e4478ae5f1a98a3862c0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.740000;font-style:normal;font-weight: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_46b99263096f5689a614aa10.woff')format("woff");}.ff14{font-family:ff14;line-height:0.952000;font-style:normal;font-weight: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_5422fe85846a130b91efe3c1.woff')format("woff");}.ff15{font-family:ff15;line-height:1.109000;font-style:normal;font-weight: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_722630f1df53d7b2a281c9fc.woff')format("woff");}.ff16{font-family:ff16;line-height:0.969000;font-style:normal;font-weight: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_3eba59edb3c451c48d4588df.woff')format("woff");}.ff17{font-family:ff17;line-height:1.113000;font-style:normal;font-weight: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_cd9468adf06790f31b07a16b.woff')format("woff");}.ff18{font-family:ff18;line-height:0.986000;font-style:normal;font-weight: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_98e5162b1dbb67e4e3340629.woff')format("woff");}.ff19{font-family:ff19;line-height:1.192000;font-style:normal;font-weight: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_b33ef2e5173d27bc52a7720f.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.986000;font-style:normal;font-weight: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_83b8c2734e8a46734129cec4.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_4c2d1801a85db2fc4edd76aa.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.986000;font-style:normal;font-weight: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_06303f6a5e06c010780cc928.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.110000;font-style:normal;font-weight: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_c93d066241b715b099fe2aad.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.986000;font-style:normal;font-weight: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_97485b12a479f28df0957c22.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.109000;font-style:normal;font-weight: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_a6d24182557c0b8a54499528.woff')format("woff");}.ff20{font-family:ff20;line-height:0.986000;font-style:normal;font-weight: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_606c5317298ca8ec4f8ffadb.woff')format("woff");}.ff21{font-family:ff21;line-height:0.740000;font-style:normal;font-weight: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_25913a7bf3623bac9c0a7f3b.woff')format("woff");}.ff22{font-family:ff22;line-height:1.113000;font-style:normal;font-weight: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_6a6495f468b17a26bc5578c0.woff')format("woff");}.ff23{font-family:ff23;line-height:0.980000;font-style:normal;font-weight: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_334a800b328a73ac0ca2272d.woff')format("woff");}.ff24{font-family:ff24;line-height:1.113000;font-style:normal;font-weight: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_615ecdfb40c13bff8196112a.woff')format("woff");}.ff25{font-family:ff25;line-height:0.969000;font-style:normal;font-weight: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_0f1d448b25810de1792cb641.woff')format("woff");}.ff26{font-family:ff26;line-height:1.192000;font-style:normal;font-weight: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_69259170314c3ecaa45975fc.woff')format("woff");}.ff27{font-family:ff27;line-height:0.952637;font-style:normal;font-weight: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_b3a30b65dd6689b5edca80e8.woff')format("woff");}.ff28{font-family:ff28;line-height:1.128000;font-style:normal;font-weight: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_ccee4f3d991969c87bbb3564.woff')format("woff");}.ff29{font-family:ff29;line-height:0.992000;font-style:normal;font-weight: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_f65cb096638cdabf6ecc67a1.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.775879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_c8781f77fdda536dd57c09ad.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.247000;font-style:normal;font-weight: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_afd881607ba74e7c52489545.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.963667;font-style:normal;font-weight: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_b14655a5e93b5e73881192b8.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_8143848084d952bbbbe7553f.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.710000;font-style:normal;font-weight: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_e74707f6b86420321966e726.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_004d4b350797016cd87a1a50.woff')format("woff");}.ff30{font-family:ff30;line-height:0.963667;font-style:normal;font-weight: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_b9d5732f969cbb0250bec357.woff')format("woff");}.ff31{font-family:ff31;line-height:1.192000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-242.334740px;}
.v3{vertical-align:-87.770269px;}
.v7{vertical-align:-60.381192px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.498800px;}
.v6{vertical-align:14.086400px;}
.v9{vertical-align:46.661187px;}
.v5{vertical-align:49.499998px;}
.v2{vertical-align:72.450873px;}
.v1{vertical-align:78.005395px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.958761px;}
.ls1{letter-spacing:14.139473px;}
.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:-210.600005px;}
.ws1{word-spacing:-71.888308px;}
.ws18{word-spacing:-44.920981px;}
.ws10{word-spacing:-42.762332px;}
.ws9{word-spacing:-39.308493px;}
.ws8{word-spacing:-25.966981px;}
.ws1b{word-spacing:-23.708296px;}
.ws5{word-spacing:-21.260072px;}
.ws1a{word-spacing:-20.257823px;}
.wsd{word-spacing:-19.648980px;}
.ws13{word-spacing:-18.924705px;}
.ws19{word-spacing:-18.890941px;}
.wse{word-spacing:-16.848000px;}
.ws17{word-spacing:-15.835237px;}
.ws12{word-spacing:-15.731820px;}
.ws16{word-spacing:-15.494985px;}
.ws15{word-spacing:-14.698800px;}
.ws6{word-spacing:-12.930840px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:181.833790px;}
.wsc{word-spacing:181.833804px;}
.ws4{word-spacing:195.574722px;}
.wsb{word-spacing:195.574736px;}
.wsf{word-spacing:198.465663px;}
.wsa{word-spacing:207.485114px;}
.ws7{word-spacing:207.485171px;}
.ws14{word-spacing:293.112529px;}
.ws11{word-spacing:1334.423368px;}
._38{margin-left:-1.082916px;}
._4{width:1.737244px;}
._9{width:2.749703px;}
._b{width:4.041040px;}
._7{width:5.993136px;}
._2{width:7.571855px;}
._1{width:9.164384px;}
._6{width:11.084090px;}
._d{width:12.265510px;}
._a{width:13.988943px;}
._1b{width:15.046620px;}
._28{width:16.154938px;}
._5{width:17.576795px;}
._8{width:19.059986px;}
._3{width:20.271381px;}
._13{width:21.619950px;}
._c{width:23.010359px;}
._18{width:24.061068px;}
._25{width:25.097860px;}
._20{width:27.207582px;}
._33{width:28.596087px;}
._1a{width:30.386120px;}
._12{width:31.888038px;}
._11{width:33.303688px;}
._35{width:34.379280px;}
._37{width:35.649564px;}
._27{width:36.685162px;}
._14{width:37.869124px;}
._2a{width:39.038757px;}
._e{width:40.098537px;}
._1f{width:41.252977px;}
._1c{width:43.377398px;}
._f{width:46.668486px;}
._1d{width:48.510624px;}
._1e{width:49.901476px;}
._29{width:51.097508px;}
._36{width:53.157262px;}
._17{width:54.455419px;}
._21{width:56.768568px;}
._22{width:57.866317px;}
._0{width:59.400168px;}
._2f{width:62.633621px;}
._23{width:64.438294px;}
._32{width:67.642925px;}
._2c{width:70.508727px;}
._10{width:71.934447px;}
._2d{width:74.320429px;}
._19{width:78.407436px;}
._2e{width:82.957262px;}
._30{width:85.379848px;}
._3b{width:110.180385px;}
._3a{width:116.455897px;}
._16{width:124.038892px;}
._15{width:125.117462px;}
._3d{width:127.564445px;}
._39{width:148.724448px;}
._3c{width:162.413682px;}
._3e{width:165.367824px;}
._31{width:319.317878px;}
._2b{width:479.783452px;}
._24{width:1299.098759px;}
._26{width:1376.825329px;}
._34{width:1876.202451px;}
.fc4{color:rgb(255,235,102);}
.fc3{color:rgb(255,49,49);}
.fc2{color:rgb(230,50,157);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000401px;}
.fs17{font-size:48.000202px;}
.fs5{font-size:55.260000px;}
.fs15{font-size:59.985001px;}
.fs1a{font-size:60.959708px;}
.fs10{font-size:61.245000px;}
.fs19{font-size:66.240003px;}
.fs16{font-size:67.185003px;}
.fs12{font-size:67.230000px;}
.fs9{font-size:72.000002px;}
.fs1d{font-size:72.723018px;}
.fs1{font-size:77.985002px;}
.fsd{font-size:83.970002px;}
.fs8{font-size:90.855007px;}
.fs1e{font-size:95.985002px;}
.fs1c{font-size:108.000002px;}
.fsb{font-size:110.970002px;}
.fs3{font-size:114.840003px;}
.fs14{font-size:138.859778px;}
.fs2{font-size:138.870008px;}
.fs13{font-size:163.259999px;}
.fs7{font-size:167.985013px;}
.fse{font-size:182.745009px;}
.fs18{font-size:191.970004px;}
.fsa{font-size:199.169995px;}
.fsf{font-size:199.260000px;}
.fs11{font-size:209.970005px;}
.fs6{font-size:266.760001px;}
.fs4{font-size:307.214993px;}
.fs1b{font-size:347.985017px;}
.fs0{font-size:900.000020px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.681183px;}
.y3{bottom:16.874997px;}
.ya3{bottom:37.484758px;}
.y49{bottom:40.811488px;}
.y27{bottom:41.006358px;}
.y9{bottom:41.894751px;}
.y1a3{bottom:43.178667px;}
.y98{bottom:45.925860px;}
.y82{bottom:54.382764px;}
.y142{bottom:56.101656px;}
.y5b{bottom:63.917397px;}
.y97{bottom:67.300861px;}
.ya2{bottom:75.734759px;}
.y1a2{bottom:75.803668px;}
.y141{bottom:77.476656px;}
.y8{bottom:81.269752px;}
.yfd{bottom:81.537556px;}
.y181{bottom:84.749601px;}
.y96{bottom:88.675861px;}
.y81{bottom:92.632765px;}
.y17e{bottom:92.749634px;}
.y17c{bottom:92.749656px;}
.y140{bottom:98.851657px;}
.y180{bottom:100.749668px;}
.y5a{bottom:102.167398px;}
.yfc{bottom:102.912557px;}
.y95{bottom:110.050862px;}
.ya1{bottom:113.984760px;}
.y13f{bottom:120.226657px;}
.y7{bottom:120.644753px;}
.y112{bottom:120.838973px;}
.yfb{bottom:124.287557px;}
.y183{bottom:127.721427px;}
.y16d{bottom:130.653975px;}
.y80{bottom:130.882765px;}
.y94{bottom:131.425862px;}
.y12b{bottom:133.148955px;}
.yd4{bottom:139.718585px;}
.y59{bottom:140.417399px;}
.y13e{bottom:141.601658px;}
.y111{bottom:143.338973px;}
.yfa{bottom:145.662557px;}
.y4b{bottom:148.541302px;}
.y19d{bottom:150.203675px;}
.y1a1{bottom:151.994531px;}
.y16c{bottom:152.028976px;}
.ya0{bottom:152.234760px;}
.y164{bottom:152.921167px;}
.y12a{bottom:154.523956px;}
.y19f{bottom:155.266895px;}
.y6{bottom:160.019753px;}
.yd3{bottom:161.093586px;}
.yf9{bottom:167.037558px;}
.ye3{bottom:173.073175px;}
.y16b{bottom:173.403976px;}
.y163{bottom:174.296167px;}
.yb1{bottom:174.443826px;}
.y129{bottom:175.898956px;}
.ybd{bottom:177.197515px;}
.y19c{bottom:177.203676px;}
.y58{bottom:178.667399px;}
.y1a0{bottom:178.994532px;}
.y19e{bottom:182.266896px;}
.yd2{bottom:182.468586px;}
.y4a{bottom:186.791303px;}
.y110{bottom:188.338974px;}
.yf8{bottom:188.412558px;}
.ye2{bottom:195.573175px;}
.y162{bottom:195.671167px;}
.yb0{bottom:196.943826px;}
.y84{bottom:197.159698px;}
.y128{bottom:197.273957px;}
.y150{bottom:197.954214px;}
.y5{bottom:199.394754px;}
.ybc{bottom:199.697515px;}
.yd1{bottom:203.843587px;}
.y9f{bottom:209.534697px;}
.yf7{bottom:209.787559px;}
.y10f{bottom:210.838975px;}
.y16a{bottom:216.153977px;}
.y161{bottom:217.046168px;}
.ye1{bottom:218.073176px;}
.y127{bottom:218.648957px;}
.y14f{bottom:219.329215px;}
.yaf{bottom:219.443827px;}
.y83{bottom:221.909698px;}
.ybb{bottom:222.197516px;}
.y157{bottom:222.487750px;}
.yd0{bottom:225.218587px;}
.yf6{bottom:231.162559px;}
.y76{bottom:232.988120px;}
.y10e{bottom:233.338975px;}
.y77{bottom:233.364465px;}
.y13c{bottom:234.815979px;}
.y169{bottom:237.528978px;}
.y160{bottom:238.421168px;}
.y126{bottom:240.023958px;}
.ye0{bottom:240.573176px;}
.y14e{bottom:240.704215px;}
.yba{bottom:244.697516px;}
.ycf{bottom:246.593588px;}
.yf5{bottom:252.537560px;}
.y10d{bottom:255.838976px;}
.y13b{bottom:257.315979px;}
.y168{bottom:258.903978px;}
.y15f{bottom:259.796169px;}
.yb{bottom:260.506413px;}
.y125{bottom:261.398958px;}
.y14d{bottom:262.079215px;}
.y24{bottom:262.647007px;}
.y25{bottom:263.023352px;}
.ydf{bottom:263.073177px;}
.yae{bottom:264.443828px;}
.yb9{bottom:267.197517px;}
.yce{bottom:267.968588px;}
.y4{bottom:273.644756px;}
.yf4{bottom:273.912560px;}
.y78{bottom:277.338608px;}
.y10c{bottom:278.338976px;}
.y13a{bottom:279.815980px;}
.y167{bottom:280.278979px;}
.y124{bottom:282.773959px;}
.y14c{bottom:283.454216px;}
.y5e{bottom:283.615418px;}
.yad{bottom:286.943828px;}
.ycd{bottom:289.343589px;}
.y165{bottom:297.513353px;}
.y166{bottom:301.653979px;}
.ye4{bottom:301.765349px;}
.y139{bottom:302.315980px;}
.y123{bottom:304.148959px;}
.ybe{bottom:306.718242px;}
.y26{bottom:306.997494px;}
.yac{bottom:309.443829px;}
.ycc{bottom:310.718589px;}
.yfe{bottom:311.629672px;}
.y113{bottom:317.031076px;}
.y44{bottom:317.591715px;}
.y182{bottom:320.960059px;}
.y5d{bottom:321.865419px;}
.y14a{bottom:323.224090px;}
.y138{bottom:324.815981px;}
.y3b{bottom:325.842043px;}
.y74{bottom:326.923775px;}
.yab{bottom:331.943829px;}
.ycb{bottom:332.093590px;}
.y12c{bottom:341.866143px;}
.y16e{bottom:341.947071px;}
.y149{bottom:344.599091px;}
.y73{bottom:346.048775px;}
.y137{bottom:347.315981px;}
.y19b{bottom:350.032670px;}
.yca{bottom:353.468590px;}
.yaa{bottom:354.443830px;}
.y43{bottom:355.841716px;}
.y5c{bottom:360.115420px;}
.y3a{bottom:364.092044px;}
.y72{bottom:365.173776px;}
.y148{bottom:365.974091px;}
.y22{bottom:366.129326px;}
.yc9{bottom:374.843591px;}
.y71{bottom:384.298776px;}
.y20{bottom:384.877982px;}
.y21{bottom:385.254327px;}
.y13d{bottom:386.008081px;}
.y19a{bottom:387.157671px;}
.y147{bottom:387.349092px;}
.yc8{bottom:396.218591px;}
.ya9{bottom:399.443831px;}
.y178{bottom:401.928123px;}
.y39{bottom:402.342045px;}
.y70{bottom:403.423777px;}
.y104{bottom:406.327139px;}
.yf2{bottom:406.927515px;}
.y18c{bottom:407.859697px;}
.y146{bottom:408.724092px;}
.y12f{bottom:412.134831px;}
.yc7{bottom:417.593592px;}
.y121{bottom:421.542449px;}
.ya8{bottom:421.943831px;}
.y6e{bottom:422.172432px;}
.y6f{bottom:422.548777px;}
.y199{bottom:424.282672px;}
.y12e{bottom:425.109889px;}
.y103{bottom:427.702139px;}
.yf1{bottom:428.302515px;}
.y18b{bottom:429.163380px;}
.y23{bottom:429.228469px;}
.y145{bottom:430.099092px;}
.ydd{bottom:438.782643px;}
.yc6{bottom:438.968592px;}
.y38{bottom:440.592045px;}
.y120{bottom:442.917449px;}
.y12d{bottom:445.359889px;}
.y102{bottom:449.077140px;}
.yf0{bottom:449.677516px;}
.y144{bottom:451.474093px;}
.yc5{bottom:460.343593px;}
.y176{bottom:460.907055px;}
.ydc{bottom:461.282644px;}
.y198{bottom:461.407673px;}
.y11f{bottom:464.292450px;}
.y75{bottom:466.522992px;}
.ya7{bottom:466.943832px;}
.yb7{bottom:469.465050px;}
.y101{bottom:470.452140px;}
.yef{bottom:471.052516px;}
.y15d{bottom:478.821953px;}
.y175{bottom:482.282055px;}
.ydb{bottom:483.782644px;}
.y11e{bottom:485.667450px;}
.y1e{bottom:488.360229px;}
.y10a{bottom:488.911854px;}
.y42{bottom:489.456176px;}
.y14b{bottom:491.767149px;}
.yb6{bottom:491.965051px;}
.yee{bottom:492.427517px;}
.yd5{bottom:498.060741px;}
.y197{bottom:498.532673px;}
.y15c{bottom:500.196953px;}
.y174{bottom:503.657056px;}
.y99{bottom:504.527809px;}
.yda{bottom:506.282645px;}
.y11d{bottom:507.042451px;}
.y1c{bottom:507.108849px;}
.y1d{bottom:507.485229px;}
.y135{bottom:507.555603px;}
.y105{bottom:510.745196px;}
.y109{bottom:511.411854px;}
.yed{bottom:513.802517px;}
.y17f{bottom:514.198652px;}
.yb5{bottom:514.465051px;}
.y6c{bottom:516.108127px;}
.y37{bottom:517.092047px;}
.y1a9{bottom:520.841224px;}
.y15b{bottom:521.571954px;}
.y173{bottom:525.032056px;}
.y41{bottom:527.706177px;}
.y11c{bottom:528.417451px;}
.yd9{bottom:528.782645px;}
.y134{bottom:530.055604px;}
.yb2{bottom:530.885876px;}
.y108{bottom:533.911855px;}
.yec{bottom:535.177518px;}
.y6b{bottom:535.233127px;}
.y196{bottom:535.657674px;}
.yb4{bottom:536.965052px;}
.y9e{bottom:539.466361px;}
.y179{bottom:540.832615px;}
.y92{bottom:542.777810px;}
.y15a{bottom:542.946954px;}
.y8b{bottom:545.995616px;}
.y172{bottom:546.407057px;}
.y11b{bottom:549.792452px;}
.yd8{bottom:551.282646px;}
.y1f{bottom:551.459336px;}
.y133{bottom:552.555604px;}
.y69{bottom:553.981783px;}
.y6a{bottom:554.358128px;}
.y36{bottom:555.342048px;}
.y107{bottom:556.411855px;}
.yeb{bottom:556.552518px;}
.y1a8{bottom:557.966225px;}
.yb3{bottom:559.465052px;}
.y159{bottom:564.321955px;}
.y171{bottom:567.782057px;}
.y11a{bottom:571.167452px;}
.y195{bottom:572.782675px;}
.yd7{bottom:573.782646px;}
.y132{bottom:575.055605px;}
.y9d{bottom:577.716362px;}
.yea{bottom:577.927519px;}
.yff{bottom:578.180480px;}
.y106{bottom:578.911856px;}
.y91{bottom:581.027811px;}
.y8a{bottom:584.245617px;}
.y158{bottom:585.696955px;}
.ya4{bottom:587.972837px;}
.y170{bottom:589.157058px;}
.yc3{bottom:590.180570px;}
.y119{bottom:592.542453px;}
.y35{bottom:593.592049px;}
.y1a7{bottom:595.091226px;}
.y155{bottom:596.106904px;}
.yd6{bottom:596.282647px;}
.y131{bottom:597.555605px;}
.y6d{bottom:598.332270px;}
.ye9{bottom:599.302519px;}
.yb8{bottom:600.733060px;}
.y100{bottom:603.761647px;}
.y188{bottom:609.253015px;}
.y18a{bottom:610.135913px;}
.y16f{bottom:610.532058px;}
.y1a{bottom:610.591236px;}
.yc2{bottom:611.555570px;}
.y17a{bottom:611.989714px;}
.y118{bottom:613.917453px;}
.y9c{bottom:615.966363px;}
.y154{bottom:617.481904px;}
.y90{bottom:619.277812px;}
.y130{bottom:620.055606px;}
.y10b{bottom:620.181556px;}
.ye8{bottom:620.677520px;}
.y89{bottom:622.495617px;}
.y194{bottom:624.907651px;}
.y15e{bottom:625.990022px;}
.y189{bottom:627.386214px;}
.ya6{bottom:628.891339px;}
.y18{bottom:629.339802px;}
.y19{bottom:629.716237px;}
.y34{bottom:631.842050px;}
.y187{bottom:632.878016px;}
.yc1{bottom:632.930571px;}
.y117{bottom:635.292454px;}
.yde{bottom:637.550626px;}
.y57{bottom:638.182558px;}
.y153{bottom:638.856905px;}
.ye7{bottom:642.052520px;}
.y177{bottom:650.825053px;}
.y186{bottom:653.128016px;}
.y9b{bottom:654.216364px;}
.ya5{bottom:654.284784px;}
.yc0{bottom:654.305571px;}
.y116{bottom:656.667454px;}
.y67{bottom:657.464052px;}
.y8f{bottom:657.527812px;}
.y152{bottom:660.231905px;}
.y88{bottom:660.745618px;}
.y136{bottom:661.323545px;}
.y40{bottom:661.459032px;}
.ye6{bottom:663.427521px;}
.y33{bottom:670.092051px;}
.y1b{bottom:673.690289px;}
.ybf{bottom:675.680572px;}
.y65{bottom:676.212704px;}
.y56{bottom:676.432559px;}
.y66{bottom:676.589052px;}
.y115{bottom:678.042455px;}
.y151{bottom:681.606906px;}
.ye5{bottom:684.802521px;}
.y8e{bottom:695.777813px;}
.y87{bottom:698.995619px;}
.y114{bottom:699.417455px;}
.y3f{bottom:699.709032px;}
.y17d{bottom:707.437212px;}
.y32{bottom:708.342051px;}
.y55{bottom:714.682560px;}
.yc4{bottom:715.973538px;}
.y68{bottom:720.563191px;}
.y156{bottom:721.899915px;}
.yf3{bottom:725.095530px;}
.y8d{bottom:734.027814px;}
.y86{bottom:737.245620px;}
.y122{bottom:739.710464px;}
.y31{bottom:746.592052px;}
.y54{bottom:752.932561px;}
.yd{bottom:756.359943px;}
.ye{bottom:756.736291px;}
.y8c{bottom:772.277815px;}
.y9a{bottom:774.225730px;}
.y85{bottom:775.495621px;}
.y63{bottom:779.694990px;}
.y30{bottom:784.842053px;}
.y61{bottom:798.443643px;}
.y62{bottom:798.819991px;}
.yf{bottom:800.710387px;}
.y193{bottom:809.993517px;}
.y2f{bottom:823.092054px;}
.y46{bottom:829.424405px;}
.y192{bottom:835.408141px;}
.y53{bottom:836.886395px;}
.y7e{bottom:837.225732px;}
.y143{bottom:837.489842px;}
.y93{bottom:840.422708px;}
.y64{bottom:842.794130px;}
.y1a4{bottom:849.998569px;}
.y2e{bottom:861.342055px;}
.y12{bottom:864.565754px;}
.y45{bottom:867.674405px;}
.y52{bottom:875.136396px;}
.ya{bottom:881.167741px;}
.y10{bottom:883.314406px;}
.y11{bottom:883.690754px;}
.y7f{bottom:893.871916px;}
.y7d{bottom:897.809416px;}
.y2d{bottom:899.592056px;}
.y17b{bottom:900.675797px;}
.y51{bottom:913.386397px;}
.y191{bottom:917.571776px;}
.y1aa{bottom:921.397081px;}
.y13{bottom:927.664872px;}
.y7c{bottom:930.308091px;}
.y2c{bottom:937.842057px;}
.y50{bottom:951.636398px;}
.y190{bottom:954.696777px;}
.y185{bottom:957.460653px;}
.y7b{bottom:959.558091px;}
.y16{bottom:986.796714px;}
.y1ab{bottom:988.302241px;}
.y7a{bottom:988.808092px;}
.y4f{bottom:989.886399px;}
.y1{bottom:990.850852px;}
.y3e{bottom:997.574497px;}
.y14{bottom:1005.545323px;}
.y15{bottom:1005.921715px;}
.y18f{bottom:1006.821735px;}
.y79{bottom:1018.058093px;}
.y2b{bottom:1018.156921px;}
.y4e{bottom:1028.136400px;}
.y3d{bottom:1035.824498px;}
.y1a6{bottom:1047.078280px;}
.y17{bottom:1049.895832px;}
.y2a{bottom:1056.406922px;}
.y2{bottom:1057.756001px;}
.y18e{bottom:1080.471666px;}
.y29{bottom:1094.656923px;}
.yc{bottom:1108.752817px;}
.y28{bottom:1114.407252px;}
.y1a5{bottom:1125.828282px;}
.y47{bottom:1136.391059px;}
.y5f{bottom:1140.730541px;}
.y3c{bottom:1158.333626px;}
.y60{bottom:1158.843265px;}
.y18d{bottom:1159.221668px;}
.y184{bottom:1170.375819px;}
.y4d{bottom:1176.446345px;}
.y48{bottom:1176.446347px;}
.h10{height:39.636441px;}
.h21{height:45.000190px;}
.h14{height:45.321300px;}
.h1b{height:46.362465px;}
.h27{height:46.702042px;}
.h1c{height:46.913670px;}
.h3{height:48.374998px;}
.h19{height:49.750200px;}
.h1e{height:50.859047px;}
.h1f{height:50.893110px;}
.h24{height:51.667202px;}
.h2b{height:55.714070px;}
.h25{height:59.166002px;}
.h2c{height:59.745346px;}
.h8{height:60.841260px;}
.h1d{height:66.043486px;}
.h2d{height:71.028902px;}
.h17{height:74.020230px;}
.hc{height:79.272002px;}
.h2a{height:79.920002px;}
.h4{height:85.861487px;}
.h11{height:92.450972px;}
.h26{height:98.328389px;}
.hb{height:100.031362px;}
.he{height:122.177973px;}
.h6{height:126.438843px;}
.h15{height:128.772000px;}
.h1a{height:152.884615px;}
.h5{height:152.895878px;}
.h18{height:179.749259px;}
.ha{height:184.951499px;}
.h23{height:188.514544px;}
.h22{height:191.249992px;}
.h20{height:191.250014px;}
.h12{height:201.202254px;}
.h29{height:211.358975px;}
.hf{height:219.286165px;}
.h13{height:219.385260px;}
.h16{height:231.176975px;}
.hd{height:291.737038px;}
.h9{height:293.702762px;}
.h7{height:338.243708px;}
.h2e{height:341.721286px;}
.h28{height:383.131503px;}
.h2{height:990.900022px;}
.h1{height:1263.000000px;}
.h0{height:1263.374968px;}
.w1{width:148.499994px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.938555px;}
.x66{left:12.136380px;}
.x49{left:14.171876px;}
.x1{left:21.417188px;}
.x4b{left:22.625037px;}
.x48{left:27.625058px;}
.x4a{left:30.093818px;}
.x4c{left:31.171948px;}
.x64{left:32.728995px;}
.x47{left:36.270704px;}
.x3c{left:40.628470px;}
.x3d{left:42.835013px;}
.x3e{left:45.955125px;}
.x3{left:48.470760px;}
.x38{left:50.136370px;}
.x36{left:52.424998px;}
.x1f{left:53.872430px;}
.x41{left:56.401834px;}
.x24{left:58.054101px;}
.x45{left:59.098786px;}
.x16{left:61.042278px;}
.x43{left:62.358319px;}
.x34{left:64.211574px;}
.x2a{left:69.364208px;}
.x1d{left:72.774364px;}
.x15{left:81.169231px;}
.x13{left:85.251056px;}
.xf{left:89.291340px;}
.x67{left:99.668559px;}
.x1c{left:108.844822px;}
.x7{left:111.051384px;}
.x1a{left:112.254978px;}
.x9{left:114.461541px;}
.x11{left:122.297150px;}
.xb{left:130.782991px;}
.xe{left:147.836554px;}
.x21{left:154.015835px;}
.x20{left:157.197476px;}
.x25{left:159.763882px;}
.x14{left:162.309858px;}
.x23{left:164.097141px;}
.x26{left:168.851773px;}
.x1e{left:173.071069px;}
.x2c{left:174.211277px;}
.x2b{left:177.923214px;}
.x5d{left:185.004946px;}
.x5b{left:201.559168px;}
.x4d{left:202.901586px;}
.x1b{left:208.393717px;}
.x8{left:210.600276px;}
.x2e{left:214.305669px;}
.x52{left:215.667136px;}
.x4f{left:217.984340px;}
.x53{left:219.556033px;}
.x30{left:225.517011px;}
.x2f{left:226.706828px;}
.xc{left:236.744727px;}
.x10{left:253.798276px;}
.x60{left:259.605713px;}
.x5f{left:265.863525px;}
.x4{left:282.338932px;}
.x6{left:288.561521px;}
.x2{left:298.195319px;}
.x68{left:302.063100px;}
.x4e{left:335.054655px;}
.x54{left:339.032229px;}
.x50{left:341.738773px;}
.x55{left:344.910226px;}
.x5c{left:349.408780px;}
.x65{left:399.166594px;}
.x3f{left:410.812058px;}
.x32{left:433.584518px;}
.x33{left:435.791055px;}
.x3b{left:437.375549px;}
.x51{left:464.886279px;}
.x56{left:467.488429px;}
.x3a{left:479.515016px;}
.x40{left:484.956591px;}
.x39{left:499.589230px;}
.x61{left:503.081479px;}
.x46{left:519.384265px;}
.x18{left:527.351464px;}
.x19{left:534.874901px;}
.x2d{left:571.743081px;}
.x5e{left:581.291871px;}
.x57{left:597.051011px;}
.x27{left:598.670658px;}
.x58{left:602.929009px;}
.x22{left:612.895870px;}
.x42{left:619.047833px;}
.x28{left:620.643315px;}
.x29{left:623.104253px;}
.x17{left:631.537013px;}
.x5{left:652.365729px;}
.x59{left:728.164032px;}
.x5a{left:730.071946px;}
.x63{left:743.290825px;}
.x62{left:752.818169px;}
.x37{left:841.683997px;}
.x44{left:843.793381px;}
.x35{left:845.261173px;}
.x31{left:846.724537px;}
.xd{left:848.833921px;}
.xa{left:850.297285px;}
@media print{
.v4{vertical-align:-215.408657pt;}
.v3{vertical-align:-78.018017pt;}
.v7{vertical-align:-53.672171pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.665600pt;}
.v6{vertical-align:12.521244pt;}
.v9{vertical-align:41.476610pt;}
.v5{vertical-align:43.999998pt;}
.v2{vertical-align:64.400776pt;}
.v1{vertical-align:69.338129pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.741121pt;}
.ls1{letter-spacing:12.568421pt;}
.ws0{word-spacing:-187.200004pt;}
.ws1{word-spacing:-63.900719pt;}
.ws18{word-spacing:-39.929761pt;}
.ws10{word-spacing:-38.010962pt;}
.ws9{word-spacing:-34.940883pt;}
.ws8{word-spacing:-23.081761pt;}
.ws1b{word-spacing:-21.074040pt;}
.ws5{word-spacing:-18.897841pt;}
.ws1a{word-spacing:-18.006954pt;}
.wsd{word-spacing:-17.465760pt;}
.ws13{word-spacing:-16.821960pt;}
.ws19{word-spacing:-16.791947pt;}
.wse{word-spacing:-14.976000pt;}
.ws17{word-spacing:-14.075766pt;}
.ws12{word-spacing:-13.983840pt;}
.ws16{word-spacing:-13.773320pt;}
.ws15{word-spacing:-13.065600pt;}
.ws6{word-spacing:-11.494080pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:161.630036pt;}
.wsc{word-spacing:161.630048pt;}
.ws4{word-spacing:173.844197pt;}
.wsb{word-spacing:173.844210pt;}
.wsf{word-spacing:176.413922pt;}
.wsa{word-spacing:184.431212pt;}
.ws7{word-spacing:184.431263pt;}
.ws14{word-spacing:260.544470pt;}
.ws11{word-spacing:1186.154105pt;}
._38{margin-left:-0.962592pt;}
._4{width:1.544217pt;}
._9{width:2.444181pt;}
._b{width:3.592036pt;}
._7{width:5.327232pt;}
._2{width:6.730538pt;}
._1{width:8.146119pt;}
._6{width:9.852524pt;}
._d{width:10.902675pt;}
._a{width:12.434616pt;}
._1b{width:13.374773pt;}
._28{width:14.359945pt;}
._5{width:15.623818pt;}
._8{width:16.942210pt;}
._3{width:18.019005pt;}
._13{width:19.217733pt;}
._c{width:20.453653pt;}
._18{width:21.387616pt;}
._25{width:22.309209pt;}
._20{width:24.184518pt;}
._33{width:25.418744pt;}
._1a{width:27.009884pt;}
._12{width:28.344923pt;}
._11{width:29.603278pt;}
._35{width:30.559360pt;}
._37{width:31.688502pt;}
._27{width:32.609033pt;}
._14{width:33.661443pt;}
._2a{width:34.701117pt;}
._e{width:35.643144pt;}
._1f{width:36.669313pt;}
._1c{width:38.557687pt;}
._f{width:41.483098pt;}
._1d{width:43.120555pt;}
._1e{width:44.356868pt;}
._29{width:45.420007pt;}
._36{width:47.250900pt;}
._17{width:48.404817pt;}
._21{width:50.460949pt;}
._22{width:51.436726pt;}
._0{width:52.800149pt;}
._2f{width:55.674329pt;}
._23{width:57.278484pt;}
._32{width:60.127044pt;}
._2c{width:62.674424pt;}
._10{width:63.941730pt;}
._2d{width:66.062603pt;}
._19{width:69.695499pt;}
._2e{width:73.739789pt;}
._30{width:75.893198pt;}
._3b{width:97.938120pt;}
._3a{width:103.516353pt;}
._16{width:110.256793pt;}
._15{width:111.215522pt;}
._3d{width:113.390618pt;}
._39{width:132.199510pt;}
._3c{width:144.367717pt;}
._3e{width:146.993622pt;}
._31{width:283.838114pt;}
._2b{width:426.474180pt;}
._24{width:1154.754453pt;}
._26{width:1223.844737pt;}
._34{width:1667.735512pt;}
.fsc{font-size:32.000356pt;}
.fs17{font-size:42.666846pt;}
.fs5{font-size:49.120000pt;}
.fs15{font-size:53.320001pt;}
.fs1a{font-size:54.186407pt;}
.fs10{font-size:54.440000pt;}
.fs19{font-size:58.880003pt;}
.fs16{font-size:59.720003pt;}
.fs12{font-size:59.760000pt;}
.fs9{font-size:64.000001pt;}
.fs1d{font-size:64.642683pt;}
.fs1{font-size:69.320002pt;}
.fsd{font-size:74.640002pt;}
.fs8{font-size:80.760006pt;}
.fs1e{font-size:85.320002pt;}
.fs1c{font-size:96.000002pt;}
.fsb{font-size:98.640002pt;}
.fs3{font-size:102.080002pt;}
.fs14{font-size:123.430914pt;}
.fs2{font-size:123.440007pt;}
.fs13{font-size:145.119999pt;}
.fs7{font-size:149.320011pt;}
.fse{font-size:162.440008pt;}
.fs18{font-size:170.640004pt;}
.fsa{font-size:177.039996pt;}
.fsf{font-size:177.120000pt;}
.fs11{font-size:186.640004pt;}
.fs6{font-size:237.120001pt;}
.fs4{font-size:273.079994pt;}
.fs1b{font-size:309.320015pt;}
.fs0{font-size:800.000018pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:6.827719pt;}
.y3{bottom:14.999998pt;}
.ya3{bottom:33.319785pt;}
.y49{bottom:36.276878pt;}
.y27{bottom:36.450096pt;}
.y9{bottom:37.239778pt;}
.y1a3{bottom:38.381038pt;}
.y98{bottom:40.822987pt;}
.y82{bottom:48.340234pt;}
.y142{bottom:49.868139pt;}
.y5b{bottom:56.815464pt;}
.y97{bottom:59.822987pt;}
.ya2{bottom:67.319786pt;}
.y1a2{bottom:67.381038pt;}
.y141{bottom:68.868139pt;}
.y8{bottom:72.239779pt;}
.yfd{bottom:72.477828pt;}
.y181{bottom:75.332978pt;}
.y96{bottom:78.822988pt;}
.y81{bottom:82.340235pt;}
.y17e{bottom:82.444119pt;}
.y17c{bottom:82.444139pt;}
.y140{bottom:87.868139pt;}
.y180{bottom:89.555261pt;}
.y5a{bottom:90.815465pt;}
.yfc{bottom:91.477828pt;}
.y95{bottom:97.822988pt;}
.ya1{bottom:101.319786pt;}
.y13f{bottom:106.868140pt;}
.y7{bottom:107.239780pt;}
.y112{bottom:107.412420pt;}
.yfb{bottom:110.477828pt;}
.y183{bottom:113.530158pt;}
.y16d{bottom:116.136867pt;}
.y80{bottom:116.340236pt;}
.y94{bottom:116.822989pt;}
.y12b{bottom:118.354627pt;}
.yd4{bottom:124.194298pt;}
.y59{bottom:124.815465pt;}
.y13e{bottom:125.868140pt;}
.y111{bottom:127.412421pt;}
.yfa{bottom:129.477829pt;}
.y4b{bottom:132.036713pt;}
.y19d{bottom:133.514378pt;}
.y1a1{bottom:135.106250pt;}
.y16c{bottom:135.136867pt;}
.ya0{bottom:135.319787pt;}
.y164{bottom:135.929926pt;}
.y12a{bottom:137.354627pt;}
.y19f{bottom:138.015018pt;}
.y6{bottom:142.239781pt;}
.yd3{bottom:143.194299pt;}
.yf9{bottom:148.477829pt;}
.ye3{bottom:153.842822pt;}
.y16b{bottom:154.136868pt;}
.y163{bottom:154.929926pt;}
.yb1{bottom:155.061178pt;}
.y129{bottom:156.354628pt;}
.ybd{bottom:157.508902pt;}
.y19c{bottom:157.514379pt;}
.y58{bottom:158.815466pt;}
.y1a0{bottom:159.106251pt;}
.y19e{bottom:162.015018pt;}
.yd2{bottom:162.194299pt;}
.y4a{bottom:166.036714pt;}
.y110{bottom:167.412421pt;}
.yf8{bottom:167.477830pt;}
.ye2{bottom:173.842822pt;}
.y162{bottom:173.929927pt;}
.yb0{bottom:175.061179pt;}
.y84{bottom:175.253065pt;}
.y128{bottom:175.354628pt;}
.y150{bottom:175.959301pt;}
.y5{bottom:177.239782pt;}
.ybc{bottom:177.508902pt;}
.yd1{bottom:181.194299pt;}
.y9f{bottom:186.253064pt;}
.yf7{bottom:186.477830pt;}
.y10f{bottom:187.412422pt;}
.y16a{bottom:192.136869pt;}
.y161{bottom:192.929927pt;}
.ye1{bottom:193.842823pt;}
.y127{bottom:194.354629pt;}
.y14f{bottom:194.959302pt;}
.yaf{bottom:195.061179pt;}
.y83{bottom:197.253065pt;}
.ybb{bottom:197.508903pt;}
.y157{bottom:197.766889pt;}
.yd0{bottom:200.194300pt;}
.yf6{bottom:205.477831pt;}
.y76{bottom:207.100551pt;}
.y10e{bottom:207.412422pt;}
.y77{bottom:207.435080pt;}
.y13c{bottom:208.725314pt;}
.y169{bottom:211.136869pt;}
.y160{bottom:211.929928pt;}
.y126{bottom:213.354629pt;}
.ye0{bottom:213.842823pt;}
.y14e{bottom:213.959302pt;}
.yba{bottom:217.508903pt;}
.ycf{bottom:219.194300pt;}
.yf5{bottom:224.477831pt;}
.y10d{bottom:227.412423pt;}
.y13b{bottom:228.725315pt;}
.y168{bottom:230.136870pt;}
.y15f{bottom:230.929928pt;}
.yb{bottom:231.561256pt;}
.y125{bottom:232.354629pt;}
.y14d{bottom:232.959303pt;}
.y24{bottom:233.464006pt;}
.y25{bottom:233.798535pt;}
.ydf{bottom:233.842824pt;}
.yae{bottom:235.061180pt;}
.yb9{bottom:237.508904pt;}
.yce{bottom:238.194301pt;}
.y4{bottom:243.239783pt;}
.yf4{bottom:243.477831pt;}
.y78{bottom:246.523207pt;}
.y10c{bottom:247.412423pt;}
.y13a{bottom:248.725315pt;}
.y167{bottom:249.136870pt;}
.y124{bottom:251.354630pt;}
.y14c{bottom:251.959303pt;}
.y5e{bottom:252.102594pt;}
.yad{bottom:255.061181pt;}
.ycd{bottom:257.194301pt;}
.y165{bottom:264.456314pt;}
.y166{bottom:268.136870pt;}
.ye4{bottom:268.235866pt;}
.y139{bottom:268.725316pt;}
.y123{bottom:270.354630pt;}
.ybe{bottom:272.638437pt;}
.y26{bottom:272.886662pt;}
.yac{bottom:275.061181pt;}
.ycc{bottom:276.194302pt;}
.yfe{bottom:277.004153pt;}
.y113{bottom:281.805401pt;}
.y44{bottom:282.303747pt;}
.y182{bottom:285.297831pt;}
.y5d{bottom:286.102595pt;}
.y14a{bottom:287.310302pt;}
.y138{bottom:288.725316pt;}
.y3b{bottom:289.637371pt;}
.y74{bottom:290.598911pt;}
.yab{bottom:295.061181pt;}
.ycb{bottom:295.194302pt;}
.y12c{bottom:303.881016pt;}
.y16e{bottom:303.952952pt;}
.y149{bottom:306.310303pt;}
.y73{bottom:307.598911pt;}
.y137{bottom:308.725317pt;}
.y19b{bottom:311.140151pt;}
.yca{bottom:314.194302pt;}
.yaa{bottom:315.061182pt;}
.y43{bottom:316.303748pt;}
.y5c{bottom:320.102595pt;}
.y3a{bottom:323.637372pt;}
.y72{bottom:324.598912pt;}
.y148{bottom:325.310303pt;}
.y22{bottom:325.448290pt;}
.yc9{bottom:333.194303pt;}
.y71{bottom:341.598912pt;}
.y20{bottom:342.113762pt;}
.y21{bottom:342.448290pt;}
.y13d{bottom:343.118294pt;}
.y19a{bottom:344.140152pt;}
.y147{bottom:344.310304pt;}
.yc8{bottom:352.194303pt;}
.ya9{bottom:355.061183pt;}
.y178{bottom:357.269443pt;}
.y39{bottom:357.637373pt;}
.y70{bottom:358.598913pt;}
.y104{bottom:361.179679pt;}
.yf2{bottom:361.713347pt;}
.y18c{bottom:362.541953pt;}
.y146{bottom:363.310304pt;}
.y12f{bottom:366.342072pt;}
.yc7{bottom:371.194304pt;}
.y121{bottom:374.704399pt;}
.ya8{bottom:375.061183pt;}
.y6e{bottom:375.264384pt;}
.y6f{bottom:375.598913pt;}
.y199{bottom:377.140153pt;}
.y12e{bottom:377.875457pt;}
.y103{bottom:380.179679pt;}
.yf1{bottom:380.713347pt;}
.y18b{bottom:381.478560pt;}
.y23{bottom:381.536417pt;}
.y145{bottom:382.310304pt;}
.ydd{bottom:390.029016pt;}
.yc6{bottom:390.194304pt;}
.y38{bottom:391.637374pt;}
.y120{bottom:393.704399pt;}
.y12d{bottom:395.875457pt;}
.y102{bottom:399.179680pt;}
.yf0{bottom:399.713348pt;}
.y144{bottom:401.310305pt;}
.yc5{bottom:409.194305pt;}
.y176{bottom:409.695160pt;}
.ydc{bottom:410.029017pt;}
.y198{bottom:410.140153pt;}
.y11f{bottom:412.704400pt;}
.y75{bottom:414.687104pt;}
.ya7{bottom:415.061184pt;}
.yb7{bottom:417.302267pt;}
.y101{bottom:418.179680pt;}
.yef{bottom:418.713348pt;}
.y15d{bottom:425.619514pt;}
.y175{bottom:428.695160pt;}
.ydb{bottom:430.029017pt;}
.y11e{bottom:431.704400pt;}
.y1e{bottom:434.097981pt;}
.y10a{bottom:434.588314pt;}
.y42{bottom:435.072156pt;}
.y14b{bottom:437.126355pt;}
.yb6{bottom:437.302267pt;}
.yee{bottom:437.713348pt;}
.yd5{bottom:442.720658pt;}
.y197{bottom:443.140154pt;}
.y15c{bottom:444.619514pt;}
.y174{bottom:447.695161pt;}
.y99{bottom:448.469164pt;}
.yda{bottom:450.029018pt;}
.y11d{bottom:450.704401pt;}
.y1c{bottom:450.763421pt;}
.y1d{bottom:451.097982pt;}
.y135{bottom:451.160536pt;}
.y105{bottom:453.995730pt;}
.y109{bottom:454.588315pt;}
.yed{bottom:456.713349pt;}
.y17f{bottom:457.065468pt;}
.yb5{bottom:457.302268pt;}
.y6c{bottom:458.762779pt;}
.y37{bottom:459.637375pt;}
.y1a9{bottom:462.969977pt;}
.y15b{bottom:463.619515pt;}
.y173{bottom:466.695161pt;}
.y41{bottom:469.072157pt;}
.y11c{bottom:469.704401pt;}
.yd9{bottom:470.029018pt;}
.y134{bottom:471.160537pt;}
.yb2{bottom:471.898556pt;}
.y108{bottom:474.588315pt;}
.yec{bottom:475.713349pt;}
.y6b{bottom:475.762780pt;}
.y196{bottom:476.140155pt;}
.yb4{bottom:477.302268pt;}
.y9e{bottom:479.525654pt;}
.y179{bottom:480.740103pt;}
.y92{bottom:482.469164pt;}
.y15a{bottom:482.619515pt;}
.y8b{bottom:485.329436pt;}
.y172{bottom:485.695162pt;}
.y11b{bottom:488.704401pt;}
.yd8{bottom:490.029019pt;}
.y1f{bottom:490.186077pt;}
.y133{bottom:491.160537pt;}
.y69{bottom:492.428251pt;}
.y6a{bottom:492.762780pt;}
.y36{bottom:493.637376pt;}
.y107{bottom:494.588316pt;}
.yeb{bottom:494.713350pt;}
.y1a8{bottom:495.969978pt;}
.yb3{bottom:497.302269pt;}
.y159{bottom:501.619515pt;}
.y171{bottom:504.695162pt;}
.y11a{bottom:507.704402pt;}
.y195{bottom:509.140156pt;}
.yd7{bottom:510.029019pt;}
.y132{bottom:511.160538pt;}
.y9d{bottom:513.525655pt;}
.yea{bottom:513.713350pt;}
.yff{bottom:513.938204pt;}
.y106{bottom:514.588316pt;}
.y91{bottom:516.469165pt;}
.y8a{bottom:519.329437pt;}
.y158{bottom:520.619516pt;}
.ya4{bottom:522.642521pt;}
.y170{bottom:523.695163pt;}
.yc3{bottom:524.604951pt;}
.y119{bottom:526.704402pt;}
.y35{bottom:527.637377pt;}
.y1a7{bottom:528.969979pt;}
.y155{bottom:529.872803pt;}
.yd6{bottom:530.029019pt;}
.y131{bottom:531.160538pt;}
.y6d{bottom:531.850907pt;}
.ye9{bottom:532.713350pt;}
.yb8{bottom:533.984943pt;}
.y100{bottom:536.677019pt;}
.y188{bottom:541.558236pt;}
.y18a{bottom:542.343034pt;}
.y16f{bottom:542.695163pt;}
.y1a{bottom:542.747766pt;}
.yc2{bottom:543.604951pt;}
.y17a{bottom:543.990857pt;}
.y118{bottom:545.704403pt;}
.y9c{bottom:547.525656pt;}
.y154{bottom:548.872804pt;}
.y90{bottom:550.469166pt;}
.y130{bottom:551.160539pt;}
.y10b{bottom:551.272494pt;}
.ye8{bottom:551.713351pt;}
.y89{bottom:553.329438pt;}
.y194{bottom:555.473468pt;}
.y15e{bottom:556.435575pt;}
.y189{bottom:557.676634pt;}
.ya6{bottom:559.014524pt;}
.y18{bottom:559.413157pt;}
.y19{bottom:559.747766pt;}
.y34{bottom:561.637378pt;}
.y187{bottom:562.558236pt;}
.yc1{bottom:562.604952pt;}
.y117{bottom:564.704403pt;}
.yde{bottom:566.711668pt;}
.y57{bottom:567.273385pt;}
.y153{bottom:567.872804pt;}
.ye7{bottom:570.713351pt;}
.y177{bottom:578.511158pt;}
.y186{bottom:580.558237pt;}
.y9b{bottom:581.525656pt;}
.ya5{bottom:581.586474pt;}
.yc0{bottom:581.604952pt;}
.y116{bottom:583.704404pt;}
.y67{bottom:584.412490pt;}
.y8f{bottom:584.469167pt;}
.y152{bottom:586.872805pt;}
.y88{bottom:587.329439pt;}
.y136{bottom:587.843151pt;}
.y40{bottom:587.963584pt;}
.ye6{bottom:589.713352pt;}
.y33{bottom:595.637378pt;}
.y1b{bottom:598.835813pt;}
.ybf{bottom:600.604953pt;}
.y65{bottom:601.077959pt;}
.y56{bottom:601.273386pt;}
.y66{bottom:601.412491pt;}
.y115{bottom:602.704404pt;}
.y151{bottom:605.872805pt;}
.ye5{bottom:608.713352pt;}
.y8e{bottom:618.469167pt;}
.y87{bottom:621.329439pt;}
.y114{bottom:621.704404pt;}
.y3f{bottom:621.963584pt;}
.y17d{bottom:628.833077pt;}
.y32{bottom:629.637379pt;}
.y55{bottom:635.273386pt;}
.yc4{bottom:636.420922pt;}
.y68{bottom:640.500614pt;}
.y156{bottom:641.688813pt;}
.yf3{bottom:644.529360pt;}
.y8d{bottom:652.469168pt;}
.y86{bottom:655.329440pt;}
.y122{bottom:657.520413pt;}
.y31{bottom:663.637380pt;}
.y54{bottom:669.273387pt;}
.yd{bottom:672.319949pt;}
.ye{bottom:672.654481pt;}
.y8c{bottom:686.469169pt;}
.y9a{bottom:688.200649pt;}
.y85{bottom:689.329441pt;}
.y63{bottom:693.062214pt;}
.y30{bottom:697.637381pt;}
.y61{bottom:709.727682pt;}
.y62{bottom:710.062214pt;}
.yf{bottom:711.742567pt;}
.y193{bottom:719.994237pt;}
.y2f{bottom:731.637381pt;}
.y46{bottom:737.266137pt;}
.y192{bottom:742.585014pt;}
.y53{bottom:743.899018pt;}
.y7e{bottom:744.200650pt;}
.y143{bottom:744.435415pt;}
.y93{bottom:747.042407pt;}
.y64{bottom:749.150338pt;}
.y1a4{bottom:755.554284pt;}
.y2e{bottom:765.637382pt;}
.y12{bottom:768.502892pt;}
.y45{bottom:771.266138pt;}
.y52{bottom:777.899019pt;}
.ya{bottom:783.260215pt;}
.y10{bottom:785.168361pt;}
.y11{bottom:785.502893pt;}
.y7f{bottom:794.552814pt;}
.y7d{bottom:798.052815pt;}
.y2d{bottom:799.637383pt;}
.y17b{bottom:800.600708pt;}
.y51{bottom:811.899020pt;}
.y191{bottom:815.619357pt;}
.y1aa{bottom:819.019628pt;}
.y13{bottom:824.590997pt;}
.y7c{bottom:826.940525pt;}
.y2c{bottom:833.637384pt;}
.y50{bottom:845.899020pt;}
.y190{bottom:848.619357pt;}
.y185{bottom:851.076136pt;}
.y7b{bottom:852.940526pt;}
.y16{bottom:877.152635pt;}
.y1ab{bottom:878.490881pt;}
.y7a{bottom:878.940526pt;}
.y4f{bottom:879.899021pt;}
.y1{bottom:880.756313pt;}
.y3e{bottom:886.732886pt;}
.y14{bottom:893.818065pt;}
.y15{bottom:894.152635pt;}
.y18f{bottom:894.952653pt;}
.y79{bottom:904.940527pt;}
.y2b{bottom:905.028375pt;}
.y4e{bottom:913.899022pt;}
.y3d{bottom:920.732887pt;}
.y1a6{bottom:930.736249pt;}
.y17{bottom:933.240740pt;}
.y2a{bottom:939.028375pt;}
.y2{bottom:940.227557pt;}
.y18e{bottom:960.419259pt;}
.y29{bottom:973.028376pt;}
.yc{bottom:985.558060pt;}
.y28{bottom:990.584224pt;}
.y1a5{bottom:1000.736251pt;}
.y47{bottom:1010.125386pt;}
.y5f{bottom:1013.982703pt;}
.y3c{bottom:1029.629890pt;}
.y60{bottom:1030.082902pt;}
.y18d{bottom:1030.419260pt;}
.y184{bottom:1040.334061pt;}
.y4d{bottom:1045.730084pt;}
.y48{bottom:1045.730087pt;}
.h10{height:35.232392pt;}
.h21{height:40.000169pt;}
.h14{height:40.285600pt;}
.h1b{height:41.211080pt;}
.h27{height:41.512926pt;}
.h1c{height:41.701040pt;}
.h3{height:42.999998pt;}
.h19{height:44.222400pt;}
.h1e{height:45.208042pt;}
.h1f{height:45.238320pt;}
.h24{height:45.926402pt;}
.h2b{height:49.523618pt;}
.h25{height:52.592002pt;}
.h2c{height:53.106974pt;}
.h8{height:54.081120pt;}
.h1d{height:58.705321pt;}
.h2d{height:63.136801pt;}
.h17{height:65.795760pt;}
.hc{height:70.464002pt;}
.h2a{height:71.040002pt;}
.h4{height:76.321322pt;}
.h11{height:82.178642pt;}
.h26{height:87.403012pt;}
.hb{height:88.916766pt;}
.he{height:108.602642pt;}
.h6{height:112.390083pt;}
.h15{height:114.464000pt;}
.h1a{height:135.897436pt;}
.h5{height:135.907447pt;}
.h18{height:159.777119pt;}
.ha{height:164.401332pt;}
.h23{height:167.568484pt;}
.h22{height:169.999993pt;}
.h20{height:170.000012pt;}
.h12{height:178.846448pt;}
.h29{height:187.874644pt;}
.hf{height:194.921036pt;}
.h13{height:195.009120pt;}
.h16{height:205.490645pt;}
.hd{height:259.321812pt;}
.h9{height:261.069121pt;}
.h7{height:300.661074pt;}
.h2e{height:303.752255pt;}
.h28{height:340.561336pt;}
.h2{height:880.800020pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.999972pt;}
.w1{width:131.999995pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.945382pt;}
.x66{left:10.787894pt;}
.x49{left:12.597223pt;}
.x1{left:19.037501pt;}
.x4b{left:20.111144pt;}
.x48{left:24.555607pt;}
.x4a{left:26.750061pt;}
.x4c{left:27.708398pt;}
.x64{left:29.092440pt;}
.x47{left:32.240626pt;}
.x3c{left:36.114195pt;}
.x3d{left:38.075567pt;}
.x3e{left:40.849000pt;}
.x3{left:43.085120pt;}
.x38{left:44.565662pt;}
.x36{left:46.599998pt;}
.x1f{left:47.886604pt;}
.x41{left:50.134964pt;}
.x24{left:51.603645pt;}
.x45{left:52.532254pt;}
.x16{left:54.259802pt;}
.x43{left:55.429617pt;}
.x34{left:57.076954pt;}
.x2a{left:61.657073pt;}
.x1d{left:64.688323pt;}
.x15{left:72.150428pt;}
.x13{left:75.778717pt;}
.xf{left:79.370080pt;}
.x67{left:88.594275pt;}
.x1c{left:96.750953pt;}
.x7{left:98.712342pt;}
.x1a{left:99.782203pt;}
.x9{left:101.743592pt;}
.x11{left:108.708578pt;}
.xb{left:116.251547pt;}
.xe{left:131.410270pt;}
.x21{left:136.902965pt;}
.x20{left:139.731090pt;}
.x25{left:142.012340pt;}
.x14{left:144.275429pt;}
.x23{left:145.864125pt;}
.x26{left:150.090465pt;}
.x1e{left:153.840950pt;}
.x2c{left:154.854468pt;}
.x2b{left:158.153968pt;}
.x5d{left:164.448841pt;}
.x5b{left:179.163705pt;}
.x4d{left:180.356965pt;}
.x1b{left:185.238859pt;}
.x8{left:187.200245pt;}
.x2e{left:190.493928pt;}
.x52{left:191.704121pt;}
.x4f{left:193.763858pt;}
.x53{left:195.160918pt;}
.x30{left:200.459565pt;}
.x2f{left:201.517180pt;}
.xc{left:210.439758pt;}
.x10{left:225.598467pt;}
.x60{left:230.760634pt;}
.x5f{left:236.323134pt;}
.x4{left:250.967939pt;}
.x6{left:256.499130pt;}
.x2{left:265.062506pt;}
.x68{left:268.500534pt;}
.x4e{left:297.826360pt;}
.x54{left:301.361981pt;}
.x50{left:303.767799pt;}
.x55{left:306.586868pt;}
.x5c{left:310.585582pt;}
.x65{left:354.814750pt;}
.x3f{left:365.166274pt;}
.x32{left:385.408461pt;}
.x33{left:387.369827pt;}
.x3b{left:388.778265pt;}
.x51{left:413.232248pt;}
.x56{left:415.545270pt;}
.x3a{left:426.235569pt;}
.x40{left:431.072525pt;}
.x39{left:444.079316pt;}
.x61{left:447.183537pt;}
.x46{left:461.674902pt;}
.x18{left:468.756856pt;}
.x19{left:475.444357pt;}
.x2d{left:508.216072pt;}
.x5e{left:516.703886pt;}
.x57{left:530.712010pt;}
.x27{left:532.151696pt;}
.x58{left:535.936897pt;}
.x22{left:544.796329pt;}
.x42{left:550.264740pt;}
.x28{left:551.682947pt;}
.x29{left:553.870447pt;}
.x17{left:561.366234pt;}
.x5{left:579.880648pt;}
.x59{left:647.256918pt;}
.x5a{left:648.952841pt;}
.x63{left:660.702956pt;}
.x62{left:669.171706pt;}
.x37{left:748.163553pt;}
.x44{left:750.038561pt;}
.x35{left:751.343265pt;}
.x31{left:752.644033pt;}
.xd{left:754.519041pt;}
.xa{left:755.819809pt;}
}




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