
    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_e30f3fafd48f2cf33915f9cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;font-style:normal;font-weight: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_e16013d860032c53c50df833.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;font-style:normal;font-weight: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_91f685b16ddfb9df71502a45.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3366571df96bf66cbf7a031d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;font-style:normal;font-weight: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_4a4638d646bbd8e7df929b7b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7bb99b0f11c5c247b2a2041e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight: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_f2fe715ab28211d7af0591ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight: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_b5f551d5244647f2623fcda6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight: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_730b4309cae710291dafd99a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight: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_8c74bff213b5b90009bc0755.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight: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_e7ff8b83dce75be8a038799c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5f676a2c773a75a582dd128d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;font-style:normal;font-weight: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_d9daf8046df34cefb698348a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight: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_03c4f0d6bdae17b05b685ff6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight: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_a5f69c36d364bcf3260d0ee7.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight: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_905ae8c729113642a41efdbe.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.239258;font-style:normal;font-weight: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_22adc9fd56d417f2f7acb4df.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight: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_a4c886a1a900adafd0e9bfc0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight: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_168262d920cf812b5a6ca233.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight: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_45fc103b0e71b509cd3b2ea3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.700000;font-style:normal;font-weight: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_0abe4567644b80185914cac8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.704000;font-style:normal;font-weight: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_d152db7a8f8564806c06dba2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.704000;font-style:normal;font-weight: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_4c9e275dfd5da206a955cace.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.911000;font-style:normal;font-weight: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_d9daf8046df34cefb698348a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight: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_ae2bdf1927b916298fba0f32.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight: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_a5f69c36d364bcf3260d0ee7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight: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_3dba4c91bb6738f864356906.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.239258;font-style:normal;font-weight: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_13553f4566deba61c3b2284e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight: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_232002a8fe5f99b643d9a85f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight: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_168262d920cf812b5a6ca233.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight: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_097f66ce5b553e5322faa20a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight: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_a30a8904a2d647a50bfa9bd0.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight: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_f172e2097ea50d8312c08794.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight: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_0d3f7b953cedaf8760003a25.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.239258;font-style:normal;font-weight: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_78002ebaeb5ed66eec5ea3c3.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight: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_a4c886a1a900adafd0e9bfc0.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight: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_25f94e23389b869c0fc559b3.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight: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_d9daf8046df34cefb698348a.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight: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_ae2bdf1927b916298fba0f32.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight: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_a5f69c36d364bcf3260d0ee7.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.432129;font-style:normal;font-weight: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_05d50962131ee689dbd64eb9.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.239258;font-style:normal;font-weight: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_22adc9fd56d417f2f7acb4df.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight: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_0e9713799295802ed24d1630.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight: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_168262d920cf812b5a6ca233.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v4{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.527021px;}
.v1{vertical-align:17.488145px;}
.v3{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:10.184273px;}
.ls7{letter-spacing:10.233259px;}
.lsc{letter-spacing:17.602441px;}
.lsb{letter-spacing:19.926532px;}
.ls6{letter-spacing:19.944538px;}
.lsf{letter-spacing:20.358538px;}
.lsd{letter-spacing:22.250623px;}
.ls9{letter-spacing:22.914538px;}
.ls5{letter-spacing:24.120538px;}
.ls0{letter-spacing:24.447030px;}
.ls1{letter-spacing:24.453030px;}
.ls4{letter-spacing:29.886538px;}
.lse{letter-spacing:384.274087px;}
.lsa{letter-spacing:386.479202px;}
.ls3{letter-spacing:717.190288px;}
.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;}
}
.ws2c{word-spacing:-34.370970px;}
.ws7a{word-spacing:-29.887800px;}
.ws15{word-spacing:-17.693578px;}
.ws6d{word-spacing:-15.840534px;}
.wsc{word-spacing:-15.661207px;}
.ws16{word-spacing:-15.422105px;}
.ws8e{word-spacing:-15.302554px;}
.ws64{word-spacing:-15.183002px;}
.ws41{word-spacing:-14.980041px;}
.ws54{word-spacing:-14.884124px;}
.ws83{word-spacing:-14.704798px;}
.ws59{word-spacing:-14.444219px;}
.ws58{word-spacing:-14.346144px;}
.ws60{word-spacing:-13.987490px;}
.ws5d{word-spacing:-13.867939px;}
.ws28{word-spacing:-13.748388px;}
.ws99{word-spacing:-13.688612px;}
.wsd{word-spacing:-13.628837px;}
.ws46{word-spacing:-13.569061px;}
.ws86{word-spacing:-13.449510px;}
.ws72{word-spacing:-13.389734px;}
.wsa{word-spacing:-13.090856px;}
.ws70{word-spacing:-13.031081px;}
.ws2d{word-spacing:-12.971305px;}
.ws2e{word-spacing:-12.911530px;}
.ws35{word-spacing:-12.851754px;}
.ws68{word-spacing:-12.552876px;}
.ws3f{word-spacing:-12.313774px;}
.ws11{word-spacing:-12.194222px;}
.ws13{word-spacing:-12.134447px;}
.ws22{word-spacing:-12.074671px;}
.ws81{word-spacing:-12.014896px;}
.ws7f{word-spacing:-11.937865px;}
.ws10{word-spacing:-11.835569px;}
.ws52{word-spacing:-11.656242px;}
.ws31{word-spacing:-11.536691px;}
.ws29{word-spacing:-11.476915px;}
.ws76{word-spacing:-11.462511px;}
.ws9d{word-spacing:-11.456511px;}
.ws3b{word-spacing:-11.297588px;}
.ws9a{word-spacing:-11.237813px;}
.ws8a{word-spacing:-11.178037px;}
.ws42{word-spacing:-10.938935px;}
.ws88{word-spacing:-10.819384px;}
.ws39{word-spacing:-10.699832px;}
.ws85{word-spacing:-10.640057px;}
.ws67{word-spacing:-10.580281px;}
.ws21{word-spacing:-10.520506px;}
.wse{word-spacing:-10.400954px;}
.ws95{word-spacing:-10.221628px;}
.ws93{word-spacing:-10.161852px;}
.ws5e{word-spacing:-10.102076px;}
.ws57{word-spacing:-10.042301px;}
.ws5{word-spacing:-9.982525px;}
.ws25{word-spacing:-9.923880px;}
.ws14{word-spacing:-9.922750px;}
.ws5c{word-spacing:-9.862974px;}
.ws7d{word-spacing:-9.839727px;}
.ws4d{word-spacing:-9.803198px;}
.wsa0{word-spacing:-9.785929px;}
.ws82{word-spacing:-9.743423px;}
.ws48{word-spacing:-9.683647px;}
.ws6c{word-spacing:-9.623872px;}
.ws33{word-spacing:-9.504320px;}
.ws3a{word-spacing:-9.444545px;}
.ws73{word-spacing:-9.384769px;}
.ws9{word-spacing:-9.373680px;}
.ws3e{word-spacing:-9.324994px;}
.ws80{word-spacing:-9.247945px;}
.ws7c{word-spacing:-9.194147px;}
.ws84{word-spacing:-9.145667px;}
.ws1b{word-spacing:-9.137880px;}
.ws20{word-spacing:-9.134910px;}
.ws1e{word-spacing:-9.131880px;}
.ws8c{word-spacing:-9.085891px;}
.wsb{word-spacing:-9.026116px;}
.wsa1{word-spacing:-8.978953px;}
.ws4b{word-spacing:-8.906564px;}
.ws4e{word-spacing:-8.667462px;}
.ws89{word-spacing:-8.607686px;}
.ws38{word-spacing:-8.488135px;}
.ws12{word-spacing:-8.428360px;}
.wsf{word-spacing:-8.368584px;}
.ws2b{word-spacing:-8.249033px;}
.ws19{word-spacing:-8.129482px;}
.ws3c{word-spacing:-8.069706px;}
.ws66{word-spacing:-8.009930px;}
.ws36{word-spacing:-7.890379px;}
.ws18{word-spacing:-7.830604px;}
.ws6{word-spacing:-7.812100px;}
.ws8{word-spacing:-7.810597px;}
.ws4{word-spacing:-7.807303px;}
.ws7{word-spacing:-7.806326px;}
.ws4c{word-spacing:-7.711052px;}
.ws43{word-spacing:-7.651277px;}
.ws44{word-spacing:-7.591501px;}
.wsa2{word-spacing:-7.472598px;}
.ws6b{word-spacing:-7.471950px;}
.ws3d{word-spacing:-7.292623px;}
.ws49{word-spacing:-7.113296px;}
.ws17{word-spacing:-6.993745px;}
.ws98{word-spacing:-6.874194px;}
.ws61{word-spacing:-6.754643px;}
.ws5a{word-spacing:-6.635092px;}
.ws27{word-spacing:-6.575316px;}
.ws34{word-spacing:-6.515540px;}
.ws62{word-spacing:-6.395989px;}
.ws5b{word-spacing:-6.336214px;}
.ws50{word-spacing:-6.216662px;}
.ws55{word-spacing:-6.156887px;}
.ws91{word-spacing:-6.073839px;}
.ws94{word-spacing:-6.037336px;}
.ws8d{word-spacing:-5.977560px;}
.ws6e{word-spacing:-5.917784px;}
.ws30{word-spacing:-5.738458px;}
.ws4f{word-spacing:-5.678682px;}
.ws4a{word-spacing:-5.499355px;}
.ws24{word-spacing:-5.462167px;}
.ws23{word-spacing:-5.439580px;}
.ws6a{word-spacing:-5.379804px;}
.ws97{word-spacing:-5.320028px;}
.ws5f{word-spacing:-5.080926px;}
.ws2f{word-spacing:-4.961375px;}
.ws96{word-spacing:-4.782048px;}
.ws1a{word-spacing:-4.667721px;}
.ws1c{word-spacing:-4.662497px;}
.ws1d{word-spacing:-4.640732px;}
.ws90{word-spacing:-4.621283px;}
.ws7b{word-spacing:-4.459887px;}
.ws6f{word-spacing:-4.423394px;}
.ws7e{word-spacing:-4.406089px;}
.ws87{word-spacing:-3.825638px;}
.ws74{word-spacing:-3.646312px;}
.ws63{word-spacing:-3.526760px;}
.ws92{word-spacing:-3.407209px;}
.ws37{word-spacing:-3.347434px;}
.ws32{word-spacing:-3.287658px;}
.ws65{word-spacing:-2.988780px;}
.ws51{word-spacing:-2.869229px;}
.ws8f{word-spacing:-2.630126px;}
.ws8b{word-spacing:-2.391024px;}
.ws53{word-spacing:-2.151922px;}
.ws1f{word-spacing:-1.999704px;}
.ws56{word-spacing:-1.853044px;}
.ws26{word-spacing:0.000000px;}
.ws40{word-spacing:10.052009px;}
.ws47{word-spacing:15.587472px;}
.ws1{word-spacing:23.312640px;}
.ws45{word-spacing:23.817188px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws2{word-spacing:32.192873px;}
.ws2a{word-spacing:93.738120px;}
.ws69{word-spacing:126.639641px;}
.ws9b{word-spacing:128.844029px;}
.ws71{word-spacing:136.730840px;}
.ws9c{word-spacing:139.082187px;}
.ws75{word-spacing:141.433534px;}
.ws79{word-spacing:209.684400px;}
.ws77{word-spacing:209.686800px;}
.ws78{word-spacing:209.688600px;}
.ws9f{word-spacing:214.220400px;}
.ws9e{word-spacing:214.224600px;}
._1d{margin-left:-7.970755px;}
._21{margin-left:-6.466205px;}
._3{margin-left:-4.958075px;}
._0{margin-left:-2.788895px;}
._4{margin-left:-1.613941px;}
._5{width:1.912819px;}
._d{width:15.121387px;}
._24{width:17.973358px;}
._1e{width:19.367294px;}
._b{width:20.960677px;}
._23{width:23.590804px;}
._7{width:25.582496px;}
._a{width:26.596842px;}
._20{width:28.094532px;}
._6{width:29.628139px;}
._8{width:31.023536px;}
._2{width:32.055224px;}
._c{width:33.295009px;}
._2b{width:34.326553px;}
._9{width:35.925136px;}
._29{width:37.897730px;}
._25{width:39.309947px;}
._2a{width:40.567074px;}
._1{width:42.040007px;}
._34{width:44.891476px;}
._1f{width:46.505417px;}
._26{width:47.940031px;}
._27{width:49.114985px;}
._28{width:51.506009px;}
._10{width:73.581992px;}
._f{width:74.998562px;}
._22{width:138.342492px;}
._2c{width:148.385294px;}
._12{width:171.450600px;}
._11{width:183.909804px;}
._2f{width:244.112400px;}
._30{width:256.590600px;}
._31{width:269.462400px;}
._2e{width:286.476600px;}
._1c{width:293.670060px;}
._33{width:299.356200px;}
._14{width:307.120200px;}
._32{width:316.362600px;}
._19{width:337.008000px;}
._15{width:349.547992px;}
._1b{width:360.729090px;}
._16{width:369.698400px;}
._13{width:399.584400px;}
._2d{width:409.156800px;}
._17{width:583.566166px;}
._18{width:603.831594px;}
._e{width:922.938893px;}
._1a{width:1099.514112px;}
.fc1{color:rgb(255,165,0);}
.fc2{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs6{font-size:39.189120px;}
.fs8{font-size:41.842800px;}
.fs4{font-size:44.087760px;}
.fsa{font-size:53.798400px;}
.fs7{font-size:53.885040px;}
.fs5{font-size:58.783680px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:6.870343px;}
.y4d{bottom:9.674814px;}
.y4c{bottom:25.130023px;}
.y25{bottom:28.350879px;}
.y161{bottom:35.760072px;}
.yb0{bottom:39.887176px;}
.y14b{bottom:41.369015px;}
.y12e{bottom:53.823807px;}
.y53{bottom:60.730889px;}
.y20{bottom:61.467000px;}
.y9b{bottom:62.923031px;}
.yfd{bottom:71.924282px;}
.y12a{bottom:86.607955px;}
.y11a{bottom:106.299000px;}
.y48{bottom:106.410707px;}
.y89{bottom:106.825500px;}
.y149{bottom:110.629500px;}
.ye6{bottom:113.619000px;}
.yf9{bottom:114.407737px;}
.yea{bottom:114.824122px;}
.y88{bottom:124.758000px;}
.yaa{bottom:126.152227px;}
.y148{bottom:128.563500px;}
.ye5{bottom:131.551500px;}
.y119{bottom:132.943500px;}
.y124{bottom:135.786000px;}
.yf4{bottom:137.578304px;}
.y15a{bottom:138.055922px;}
.yf0{bottom:138.337594px;}
.y15e{bottom:140.113351px;}
.y56{bottom:140.505242px;}
.y87{bottom:142.690500px;}
.y147{bottom:146.496000px;}
.y14c{bottom:149.126848px;}
.ye4{bottom:149.484000px;}
.y118{bottom:150.876000px;}
.y11d{bottom:151.600661px;}
.y123{bottom:153.718500px;}
.ya2{bottom:155.360368px;}
.y96{bottom:158.054620px;}
.ya1{bottom:163.577836px;}
.y146{bottom:164.428500px;}
.y12f{bottom:166.431294px;}
.ye3{bottom:167.416500px;}
.y117{bottom:168.810000px;}
.y86{bottom:169.590000px;}
.y134{bottom:170.717604px;}
.y122{bottom:171.652500px;}
.y162{bottom:172.027990px;}
.y9c{bottom:178.371729px;}
.y145{bottom:182.361000px;}
.ye2{bottom:185.350500px;}
.y116{bottom:186.742500px;}
.y85{bottom:187.522500px;}
.y121{bottom:189.585000px;}
.yb5{bottom:190.875508px;}
.yb1{bottom:192.038935px;}
.y152{bottom:195.627188px;}
.yfe{bottom:195.847627px;}
.y1f{bottom:200.178000px;}
.y144{bottom:200.293500px;}
.ye1{bottom:203.283000px;}
.y115{bottom:204.675000px;}
.y84{bottom:205.456500px;}
.y156{bottom:206.220497px;}
.y151{bottom:207.517500px;}
.ya6{bottom:208.228940px;}
.y9a{bottom:209.037215px;}
.y1e{bottom:218.110500px;}
.y143{bottom:218.226000px;}
.ya7{bottom:220.598006px;}
.ye0{bottom:221.215500px;}
.y11c{bottom:222.462000px;}
.y114{bottom:222.607500px;}
.y83{bottom:223.389000px;}
.y128{bottom:229.146133px;}
.y5c{bottom:235.828500px;}
.y142{bottom:236.160000px;}
.y14a{bottom:240.394500px;}
.y82{bottom:241.321500px;}
.y12b{bottom:244.466629px;}
.y125{bottom:244.625835px;}
.yf5{bottom:244.821781px;}
.y1d{bottom:245.010000px;}
.ydf{bottom:248.115000px;}
.y5a{bottom:248.703953px;}
.y113{bottom:249.252000px;}
.yaf{bottom:251.557411px;}
.yeb{bottom:251.777849px;}
.y5b{bottom:253.761000px;}
.y141{bottom:254.092500px;}
.y14d{bottom:256.884682px;}
.y81{bottom:259.254000px;}
.yfa{bottom:262.934502px;}
.y1c{bottom:262.942500px;}
.yab{bottom:264.979684px;}
.yde{bottom:266.047500px;}
.y112{bottom:267.184500px;}
.y57{bottom:269.804845px;}
.y52{bottom:271.693500px;}
.y49{bottom:272.376631px;}
.yee{bottom:273.295126px;}
.y11e{bottom:276.160830px;}
.y80{bottom:277.186500px;}
.y130{bottom:279.051028px;}
.y54{bottom:280.153222px;}
.y1b{bottom:280.875000px;}
.y140{bottom:280.992000px;}
.ydd{bottom:283.980000px;}
.y111{bottom:285.118500px;}
.yf1{bottom:286.484714px;}
.y51{bottom:289.626000px;}
.y9d{bottom:293.820427px;}
.y7f{bottom:295.119000px;}
.y4e{bottom:297.788326px;}
.y185{bottom:298.521000px;}
.y13f{bottom:298.924500px;}
.y97{bottom:300.041700px;}
.ydc{bottom:301.912500px;}
.y110{bottom:303.051000px;}
.y15b{bottom:305.026066px;}
.ya3{bottom:306.912043px;}
.y50{bottom:307.558500px;}
.y163{bottom:308.295908px;}
.y24{bottom:309.838980px;}
.y135{bottom:310.243118px;}
.y7e{bottom:313.053000px;}
.y184{bottom:314.959500px;}
.y13e{bottom:316.857000px;}
.y1a{bottom:317.425500px;}
.yff{bottom:319.783219px;}
.ydb{bottom:319.845000px;}
.y10f{bottom:320.983500px;}
.y28{bottom:325.491000px;}
.y153{bottom:328.319099px;}
.y15f{bottom:330.180583px;}
.y7d{bottom:330.985500px;}
.y13d{bottom:334.789500px;}
.y183{bottom:337.111500px;}
.y27{bottom:343.425000px;}
.yb2{bottom:344.178446px;}
.y7c{bottom:348.918000px;}
.y157{bottom:349.530211px;}
.yf6{bottom:352.077503px;}
.y13c{bottom:352.722000px;}
.y182{bottom:353.548500px;}
.yda{bottom:356.395500px;}
.y10e{bottom:357.279000px;}
.y181{bottom:364.273500px;}
.y14e{bottom:364.630268px;}
.y7b{bottom:366.850500px;}
.y19{bottom:368.224500px;}
.y21{bottom:376.300500px;}
.y18{bottom:386.157000px;}
.y180{bottom:386.425500px;}
.yec{bottom:388.719331px;}
.y13b{bottom:389.272500px;}
.y131{bottom:391.658515px;}
.y7a{bottom:393.750000px;}
.y58{bottom:399.116694px;}
.y11f{bottom:400.708752px;}
.y12c{bottom:402.337550px;}
.y17f{bottom:403.128000px;}
.y10d{bottom:403.708500px;}
.yac{bottom:403.819388px;}
.yd9{bottom:403.843500px;}
.y17{bottom:404.089500px;}
.y9e{bottom:409.269125px;}
.yfb{bottom:411.461267px;}
.y79{bottom:411.682500px;}
.ya8{bottom:414.057546px;}
.y17e{bottom:421.659000px;}
.y16{bottom:422.023500px;}
.y10c{bottom:425.860500px;}
.yd8{bottom:425.995500px;}
.y126{bottom:426.328639px;}
.y78{bottom:429.615000px;}
.yf2{bottom:434.631834px;}
.y10b{bottom:436.585500px;}
.yd7{bottom:436.719000px;}
.y47{bottom:437.329500px;}
.y4a{bottom:438.354800px;}
.y15{bottom:439.956000px;}
.y17d{bottom:440.190000px;}
.y98{bottom:442.016534px;}
.y100{bottom:443.706565px;}
.y164{bottom:444.563827px;}
.y77{bottom:447.547500px;}
.y136{bottom:449.768632px;}
.y10a{bottom:453.024000px;}
.yd6{bottom:453.157500px;}
.y46{bottom:455.262000px;}
.y14{bottom:457.888500px;}
.ya4{bottom:458.451471px;}
.y17c{bottom:458.719500px;}
.yf7{bottom:459.333226px;}
.y129{bottom:460.337447px;}
.y154{bottom:461.023257px;}
.y76{bottom:465.481500px;}
.y109{bottom:469.462500px;}
.y13a{bottom:469.596000px;}
.y15c{bottom:471.996211px;}
.y14f{bottom:472.388102px;}
.y45{bottom:473.196000px;}
.y23{bottom:474.947641px;}
.yd5{bottom:475.309500px;}
.y13{bottom:475.821000px;}
.y17b{bottom:477.250500px;}
.y75{bottom:483.414000px;}
.yef{bottom:483.667220px;}
.y108{bottom:485.899500px;}
.y139{bottom:486.034500px;}
.y44{bottom:491.128500px;}
.yd4{bottom:491.748000px;}
.y158{bottom:492.827677px;}
.y12{bottom:493.753500px;}
.y17a{bottom:495.781500px;}
.yb3{bottom:496.330205px;}
.y55{bottom:499.563307px;}
.y74{bottom:501.346500px;}
.yd3{bottom:502.473000px;}
.y132{bottom:504.278248px;}
.y107{bottom:508.051500px;}
.y138{bottom:508.186500px;}
.y43{bottom:509.061000px;}
.y11{bottom:511.686000px;}
.y179{bottom:514.311000px;}
.y73{bottom:519.279000px;}
.y160{bottom:520.247815px;}
.y106{bottom:524.490000px;}
.yd2{bottom:524.625000px;}
.y9f{bottom:524.730070px;}
.y120{bottom:525.268921px;}
.yed{bottom:525.673058px;}
.y42{bottom:526.993500px;}
.y59{bottom:528.416297px;}
.y10{bottom:529.620000px;}
.y178{bottom:532.842000px;}
.y105{bottom:535.215000px;}
.yd1{bottom:535.350000px;}
.yad{bottom:542.646846px;}
.y41{bottom:544.926000px;}
.y72{bottom:546.178500px;}
.yf{bottom:547.552500px;}
.y177{bottom:551.373000px;}
.y104{bottom:557.367000px;}
.yd0{bottom:557.502000px;}
.yfc{bottom:560.000278px;}
.y12d{bottom:560.208470px;}
.y40{bottom:562.858500px;}
.y71{bottom:564.111000px;}
.ye{bottom:565.485000px;}
.yf8{bottom:566.588949px;}
.y101{bottom:567.629910px;}
.y176{bottom:569.902500px;}
.y22{bottom:573.814443px;}
.y103{bottom:574.069500px;}
.ycf{bottom:574.204500px;}
.y150{bottom:580.145935px;}
.y3f{bottom:580.792500px;}
.y165{bottom:580.843991px;}
.y70{bottom:582.043500px;}
.yf3{bottom:582.778954px;}
.yd{bottom:583.417500px;}
.y99{bottom:584.003614px;}
.y175{bottom:588.433500px;}
.y137{bottom:589.294145px;}
.yce{bottom:592.734000px;}
.y155{bottom:593.715168px;}
.y3e{bottom:598.725000px;}
.y6f{bottom:599.976000px;}
.yc{bottom:601.350000px;}
.y4b{bottom:604.320724px;}
.y174{bottom:606.964500px;}
.ya9{bottom:607.517086px;}
.y127{bottom:608.031443px;}
.ya5{bottom:609.990899px;}
.ycd{bottom:611.265000px;}
.y3d{bottom:616.657500px;}
.y133{bottom:616.897982px;}
.yb{bottom:619.282500px;}
.y173{bottom:625.494000px;}
.ycc{bottom:629.796000px;}
.y3c{bottom:634.590000px;}
.y159{bottom:636.125144px;}
.ya{bottom:637.216500px;}
.y15d{bottom:638.966355px;}
.ya0{bottom:640.178768px;}
.y6e{bottom:641.820000px;}
.y172{bottom:644.025000px;}
.ycb{bottom:648.327000px;}
.yb4{bottom:648.469717px;}
.y3b{bottom:652.522500px;}
.y9{bottom:655.149000px;}
.y6d{bottom:659.752500px;}
.y171{bottom:662.556000px;}
.yca{bottom:666.856500px;}
.y8{bottom:673.081500px;}
.y4f{bottom:676.563417px;}
.y3a{bottom:679.422000px;}
.y170{bottom:681.085500px;}
.yae{bottom:681.486550px;}
.yc9{bottom:685.387500px;}
.y6c{bottom:689.640000px;}
.y7{bottom:691.014000px;}
.y102{bottom:691.565502px;}
.y39{bottom:697.354500px;}
.y16f{bottom:699.616500px;}
.yc8{bottom:703.918500px;}
.y6{bottom:708.946500px;}
.y38{bottom:715.287000px;}
.y16e{bottom:718.147500px;}
.yc7{bottom:722.448000px;}
.y5{bottom:726.879000px;}
.y6b{bottom:731.484000px;}
.y37{bottom:733.221000px;}
.y16d{bottom:736.677000px;}
.yc6{bottom:740.979000px;}
.y6a{bottom:749.416500px;}
.y36{bottom:751.153500px;}
.y16c{bottom:755.208000px;}
.yc5{bottom:759.510000px;}
.y4{bottom:763.429500px;}
.y69{bottom:767.349000px;}
.y35{bottom:769.086000px;}
.y16b{bottom:773.739000px;}
.yc4{bottom:778.039500px;}
.y68{bottom:785.281500px;}
.y34{bottom:787.018500px;}
.y16a{bottom:791.671500px;}
.yc3{bottom:796.570500px;}
.y67{bottom:803.214000px;}
.y33{bottom:804.951000px;}
.y3{bottom:808.116000px;}
.y169{bottom:809.604000px;}
.yc2{bottom:815.101500px;}
.y66{bottom:821.146500px;}
.y32{bottom:822.885000px;}
.y168{bottom:827.536500px;}
.y95{bottom:833.631000px;}
.y65{bottom:839.080500px;}
.y167{bottom:845.469000px;}
.y94{bottom:851.563500px;}
.yc1{bottom:852.162000px;}
.y64{bottom:857.013000px;}
.y31{bottom:864.582000px;}
.y93{bottom:869.496000px;}
.yc0{bottom:870.693000px;}
.y166{bottom:879.541500px;}
.y92{bottom:887.428500px;}
.ybf{bottom:889.222500px;}
.y63{bottom:893.563500px;}
.ye9{bottom:905.362500px;}
.ybe{bottom:907.753500px;}
.y91{bottom:914.328000px;}
.y30{bottom:915.391500px;}
.ye8{bottom:923.295000px;}
.y2{bottom:926.277000px;}
.ybd{bottom:926.284500px;}
.y90{bottom:932.260500px;}
.y2f{bottom:933.922500px;}
.ye7{bottom:941.227500px;}
.y62{bottom:944.362500px;}
.ybc{bottom:944.814000px;}
.y8f{bottom:950.194500px;}
.y2e{bottom:952.452000px;}
.ybb{bottom:963.345000px;}
.y8e{bottom:968.127000px;}
.y2d{bottom:970.983000px;}
.y1{bottom:971.109000px;}
.y61{bottom:971.260500px;}
.yba{bottom:981.277500px;}
.y8d{bottom:986.059500px;}
.y60{bottom:989.193000px;}
.y2c{bottom:989.514000px;}
.yb9{bottom:999.210000px;}
.y8c{bottom:1003.992000px;}
.y5f{bottom:1007.127000px;}
.y2b{bottom:1008.043500px;}
.yb8{bottom:1017.142500px;}
.y8b{bottom:1021.924500px;}
.y5e{bottom:1025.059500px;}
.y11b{bottom:1030.891500px;}
.yb7{bottom:1035.076500px;}
.y2a{bottom:1038.529500px;}
.y8a{bottom:1048.824000px;}
.y29{bottom:1056.462000px;}
.y5d{bottom:1066.756500px;}
.yb6{bottom:1069.147500px;}
.hd{height:24.890726px;}
.he{height:37.927872px;}
.h9{height:41.842920px;}
.h5{height:44.831700px;}
.h7{height:45.982156px;}
.h4{height:50.068378px;}
.hc{height:50.728903px;}
.hb{height:50.734903px;}
.h2{height:51.216077px;}
.ha{height:56.200413px;}
.h3{height:60.081886px;}
.h8{height:61.309541px;}
.h1{height:72.201388px;}
.h6{height:705.404160px;}
.h0{height:1188.000000px;}
.w1{width:705.404160px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:16.385951px;}
.xb{left:22.705196px;}
.x37{left:28.828496px;}
.x19{left:34.964043px;}
.x10{left:41.087343px;}
.x12{left:58.636721px;}
.x16{left:64.490596px;}
.x9{left:67.601232px;}
.xc{left:70.332224px;}
.x3{left:106.299000px;}
.x6{left:111.529786px;}
.xf{left:113.501489px;}
.x1e{left:115.266000px;}
.x2e{left:118.254000px;}
.x14{left:124.564500px;}
.x2f{left:128.715000px;}
.x38{left:129.997659px;}
.x18{left:133.059309px;}
.x15{left:143.659500px;}
.x1d{left:146.224404px;}
.x35{left:147.792000px;}
.x3a{left:150.498467px;}
.x1c{left:153.560117px;}
.xa{left:156.927000px;}
.x3b{left:165.930000px;}
.x39{left:168.941847px;}
.x11{left:170.631878px;}
.x1a{left:172.003497px;}
.x20{left:203.716500px;}
.x30{left:207.085500px;}
.x2{left:208.579500px;}
.x1{left:213.489000px;}
.x34{left:226.123500px;}
.x1f{left:230.934000px;}
.x36{left:253.536000px;}
.x21{left:288.390000px;}
.x22{left:297.610500px;}
.x13{left:356.559759px;}
.x17{left:359.621409px;}
.xd{left:362.695306px;}
.x8{left:374.415302px;}
.x3d{left:379.920000px;}
.x24{left:383.902500px;}
.x31{left:392.319000px;}
.x3c{left:400.728000px;}
.x23{left:426.507000px;}
.x1b{left:451.528500px;}
.x4{left:455.263500px;}
.x3e{left:457.263000px;}
.x26{left:462.229500px;}
.x3f{left:478.368000px;}
.x7{left:479.429897px;}
.x25{left:483.039000px;}
.x27{left:539.572500px;}
.x42{left:556.879500px;}
.x32{left:560.679000px;}
.x28{left:562.165500px;}
.x41{left:565.503000px;}
.x5{left:575.100336px;}
.x40{left:579.411000px;}
.x44{left:590.331000px;}
.x43{left:594.603000px;}
.x2b{left:639.189000px;}
.x2a{left:647.814000px;}
.x29{left:661.720500px;}
.x2d{left:671.154000px;}
.x33{left:672.640500px;}
.x2c{left:676.912500px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.135130pt;}
.v1{vertical-align:15.545018pt;}
.v3{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:9.052687pt;}
.ls7{letter-spacing:9.096230pt;}
.lsc{letter-spacing:15.646614pt;}
.lsb{letter-spacing:17.712473pt;}
.ls6{letter-spacing:17.728479pt;}
.lsf{letter-spacing:18.096479pt;}
.lsd{letter-spacing:19.778331pt;}
.ls9{letter-spacing:20.368479pt;}
.ls5{letter-spacing:21.440479pt;}
.ls0{letter-spacing:21.730693pt;}
.ls1{letter-spacing:21.736027pt;}
.ls4{letter-spacing:26.565812pt;}
.lse{letter-spacing:341.576966pt;}
.lsa{letter-spacing:343.537069pt;}
.ls3{letter-spacing:637.502478pt;}
.ws2c{word-spacing:-30.551973pt;}
.ws7a{word-spacing:-26.566933pt;}
.ws15{word-spacing:-15.727625pt;}
.ws6d{word-spacing:-14.080475pt;}
.wsc{word-spacing:-13.921073pt;}
.ws16{word-spacing:-13.708538pt;}
.ws8e{word-spacing:-13.602270pt;}
.ws64{word-spacing:-13.496002pt;}
.ws41{word-spacing:-13.315592pt;}
.ws54{word-spacing:-13.230333pt;}
.ws83{word-spacing:-13.070931pt;}
.ws59{word-spacing:-12.839306pt;}
.ws58{word-spacing:-12.752128pt;}
.ws60{word-spacing:-12.433325pt;}
.ws5d{word-spacing:-12.327057pt;}
.ws28{word-spacing:-12.220789pt;}
.ws99{word-spacing:-12.167655pt;}
.wsd{word-spacing:-12.114522pt;}
.ws46{word-spacing:-12.061388pt;}
.ws86{word-spacing:-11.955120pt;}
.ws72{word-spacing:-11.901986pt;}
.wsa{word-spacing:-11.636317pt;}
.ws70{word-spacing:-11.583183pt;}
.ws2d{word-spacing:-11.530049pt;}
.ws2e{word-spacing:-11.476915pt;}
.ws35{word-spacing:-11.423781pt;}
.ws68{word-spacing:-11.158112pt;}
.ws3f{word-spacing:-10.945577pt;}
.ws11{word-spacing:-10.839309pt;}
.ws13{word-spacing:-10.786175pt;}
.ws22{word-spacing:-10.733041pt;}
.ws81{word-spacing:-10.679907pt;}
.ws7f{word-spacing:-10.611436pt;}
.ws10{word-spacing:-10.520506pt;}
.ws52{word-spacing:-10.361104pt;}
.ws31{word-spacing:-10.254836pt;}
.ws29{word-spacing:-10.201702pt;}
.ws76{word-spacing:-10.188898pt;}
.ws9d{word-spacing:-10.183565pt;}
.ws3b{word-spacing:-10.042301pt;}
.ws9a{word-spacing:-9.989167pt;}
.ws8a{word-spacing:-9.936033pt;}
.ws42{word-spacing:-9.723498pt;}
.ws88{word-spacing:-9.617230pt;}
.ws39{word-spacing:-9.510962pt;}
.ws85{word-spacing:-9.457828pt;}
.ws67{word-spacing:-9.404694pt;}
.ws21{word-spacing:-9.351561pt;}
.wse{word-spacing:-9.245293pt;}
.ws95{word-spacing:-9.085891pt;}
.ws93{word-spacing:-9.032757pt;}
.ws5e{word-spacing:-8.979623pt;}
.ws57{word-spacing:-8.926490pt;}
.ws5{word-spacing:-8.873356pt;}
.ws25{word-spacing:-8.821227pt;}
.ws14{word-spacing:-8.820222pt;}
.ws5c{word-spacing:-8.767088pt;}
.ws7d{word-spacing:-8.746424pt;}
.ws4d{word-spacing:-8.713954pt;}
.wsa0{word-spacing:-8.698604pt;}
.ws82{word-spacing:-8.660820pt;}
.ws48{word-spacing:-8.607686pt;}
.ws6c{word-spacing:-8.554553pt;}
.ws33{word-spacing:-8.448285pt;}
.ws3a{word-spacing:-8.395151pt;}
.ws73{word-spacing:-8.342017pt;}
.ws9{word-spacing:-8.332160pt;}
.ws3e{word-spacing:-8.288883pt;}
.ws80{word-spacing:-8.220396pt;}
.ws7c{word-spacing:-8.172575pt;}
.ws84{word-spacing:-8.129482pt;}
.ws1b{word-spacing:-8.122560pt;}
.ws20{word-spacing:-8.119920pt;}
.ws1e{word-spacing:-8.117227pt;}
.ws8c{word-spacing:-8.076348pt;}
.wsb{word-spacing:-8.023214pt;}
.wsa1{word-spacing:-7.981292pt;}
.ws4b{word-spacing:-7.916946pt;}
.ws4e{word-spacing:-7.704411pt;}
.ws89{word-spacing:-7.651277pt;}
.ws38{word-spacing:-7.545009pt;}
.ws12{word-spacing:-7.491875pt;}
.wsf{word-spacing:-7.438741pt;}
.ws2b{word-spacing:-7.332474pt;}
.ws19{word-spacing:-7.226206pt;}
.ws3c{word-spacing:-7.173072pt;}
.ws66{word-spacing:-7.119938pt;}
.ws36{word-spacing:-7.013670pt;}
.ws18{word-spacing:-6.960537pt;}
.ws6{word-spacing:-6.944089pt;}
.ws8{word-spacing:-6.942753pt;}
.ws4{word-spacing:-6.939825pt;}
.ws7{word-spacing:-6.938956pt;}
.ws4c{word-spacing:-6.854269pt;}
.ws43{word-spacing:-6.801135pt;}
.ws44{word-spacing:-6.748001pt;}
.wsa2{word-spacing:-6.642309pt;}
.ws6b{word-spacing:-6.641733pt;}
.ws3d{word-spacing:-6.482332pt;}
.ws49{word-spacing:-6.322930pt;}
.ws17{word-spacing:-6.216662pt;}
.ws98{word-spacing:-6.110395pt;}
.ws61{word-spacing:-6.004127pt;}
.ws5a{word-spacing:-5.897859pt;}
.ws27{word-spacing:-5.844725pt;}
.ws34{word-spacing:-5.791591pt;}
.ws62{word-spacing:-5.685324pt;}
.ws5b{word-spacing:-5.632190pt;}
.ws50{word-spacing:-5.525922pt;}
.ws55{word-spacing:-5.472788pt;}
.ws91{word-spacing:-5.398968pt;}
.ws94{word-spacing:-5.366521pt;}
.ws8d{word-spacing:-5.313387pt;}
.ws6e{word-spacing:-5.260253pt;}
.ws30{word-spacing:-5.100851pt;}
.ws4f{word-spacing:-5.047717pt;}
.ws4a{word-spacing:-4.888316pt;}
.ws24{word-spacing:-4.855259pt;}
.ws23{word-spacing:-4.835182pt;}
.ws6a{word-spacing:-4.782048pt;}
.ws97{word-spacing:-4.728914pt;}
.ws5f{word-spacing:-4.516379pt;}
.ws2f{word-spacing:-4.410111pt;}
.ws96{word-spacing:-4.250709pt;}
.ws1a{word-spacing:-4.149085pt;}
.ws1c{word-spacing:-4.144442pt;}
.ws1d{word-spacing:-4.125095pt;}
.ws90{word-spacing:-4.107807pt;}
.ws7b{word-spacing:-3.964344pt;}
.ws6f{word-spacing:-3.931906pt;}
.ws7e{word-spacing:-3.916524pt;}
.ws87{word-spacing:-3.400567pt;}
.ws74{word-spacing:-3.241166pt;}
.ws63{word-spacing:-3.134898pt;}
.ws92{word-spacing:-3.028630pt;}
.ws37{word-spacing:-2.975497pt;}
.ws32{word-spacing:-2.922363pt;}
.ws65{word-spacing:-2.656693pt;}
.ws51{word-spacing:-2.550426pt;}
.ws8f{word-spacing:-2.337890pt;}
.ws8b{word-spacing:-2.125355pt;}
.ws53{word-spacing:-1.912819pt;}
.ws1f{word-spacing:-1.777515pt;}
.ws56{word-spacing:-1.647150pt;}
.ws26{word-spacing:0.000000pt;}
.ws40{word-spacing:8.935119pt;}
.ws47{word-spacing:13.855531pt;}
.ws1{word-spacing:20.722347pt;}
.ws45{word-spacing:21.170833pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws2{word-spacing:28.615887pt;}
.ws2a{word-spacing:83.322773pt;}
.ws69{word-spacing:112.568570pt;}
.ws9b{word-spacing:114.528026pt;}
.ws71{word-spacing:121.538524pt;}
.ws9c{word-spacing:123.628611pt;}
.ws75{word-spacing:125.718697pt;}
.ws79{word-spacing:186.386133pt;}
.ws77{word-spacing:186.388267pt;}
.ws78{word-spacing:186.389867pt;}
.ws9f{word-spacing:190.418133pt;}
.ws9e{word-spacing:190.421867pt;}
._1d{margin-left:-7.085116pt;}
._21{margin-left:-5.747738pt;}
._3{margin-left:-4.407178pt;}
._0{margin-left:-2.479018pt;}
._4{margin-left:-1.434614pt;}
._5{width:1.700284pt;}
._d{width:13.441233pt;}
._24{width:15.976318pt;}
._1e{width:17.215373pt;}
._b{width:18.631713pt;}
._23{width:20.969603pt;}
._7{width:22.739997pt;}
._a{width:23.641637pt;}
._20{width:24.972917pt;}
._6{width:26.336124pt;}
._8{width:27.576477pt;}
._2{width:28.493533pt;}
._c{width:29.595564pt;}
._2b{width:30.512492pt;}
._9{width:31.933454pt;}
._29{width:33.686871pt;}
._25{width:34.942175pt;}
._2a{width:36.059621pt;}
._1{width:37.368895pt;}
._34{width:39.903534pt;}
._1f{width:41.338148pt;}
._26{width:42.613361pt;}
._27{width:43.657764pt;}
._28{width:45.783119pt;}
._10{width:65.406215pt;}
._f{width:66.665388pt;}
._22{width:122.971104pt;}
._2c{width:131.898039pt;}
._12{width:152.400533pt;}
._11{width:163.475381pt;}
._2f{width:216.988800pt;}
._30{width:228.080533pt;}
._31{width:239.522133pt;}
._2e{width:254.645867pt;}
._1c{width:261.040053pt;}
._33{width:266.094400pt;}
._14{width:272.995733pt;}
._32{width:281.211200pt;}
._19{width:299.562667pt;}
._15{width:310.709326pt;}
._1b{width:320.648080pt;}
._16{width:328.620800pt;}
._13{width:355.186133pt;}
._2d{width:363.694933pt;}
._17{width:518.725481pt;}
._18{width:536.739195pt;}
._e{width:820.390127pt;}
._1a{width:977.345877pt;}
.fs9{font-size:31.880533pt;}
.fs6{font-size:34.834773pt;}
.fs8{font-size:37.193600pt;}
.fs4{font-size:39.189120pt;}
.fsa{font-size:47.820800pt;}
.fs7{font-size:47.897813pt;}
.fs5{font-size:52.252160pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:6.106971pt;}
.y4d{bottom:8.599835pt;}
.y4c{bottom:22.337798pt;}
.y25{bottom:25.200781pt;}
.y161{bottom:31.786731pt;}
.yb0{bottom:35.455268pt;}
.y14b{bottom:36.772458pt;}
.y12e{bottom:47.843384pt;}
.y53{bottom:53.983013pt;}
.y20{bottom:54.637333pt;}
.y9b{bottom:55.931583pt;}
.yfd{bottom:63.932695pt;}
.y12a{bottom:76.984849pt;}
.y11a{bottom:94.488000pt;}
.y48{bottom:94.587295pt;}
.y89{bottom:94.956000pt;}
.y149{bottom:98.337333pt;}
.ye6{bottom:100.994667pt;}
.yf9{bottom:101.695766pt;}
.yea{bottom:102.065886pt;}
.y88{bottom:110.896000pt;}
.yaa{bottom:112.135313pt;}
.y148{bottom:114.278667pt;}
.ye5{bottom:116.934667pt;}
.y119{bottom:118.172000pt;}
.y124{bottom:120.698667pt;}
.yf4{bottom:122.291826pt;}
.y15a{bottom:122.716375pt;}
.yf0{bottom:122.966750pt;}
.y15e{bottom:124.545201pt;}
.y56{bottom:124.893548pt;}
.y87{bottom:126.836000pt;}
.y147{bottom:130.218667pt;}
.y14c{bottom:132.557198pt;}
.ye4{bottom:132.874667pt;}
.y118{bottom:134.112000pt;}
.y11d{bottom:134.756143pt;}
.y123{bottom:136.638667pt;}
.ya2{bottom:138.098105pt;}
.y96{bottom:140.492995pt;}
.ya1{bottom:145.402521pt;}
.y146{bottom:146.158667pt;}
.y12f{bottom:147.938928pt;}
.ye3{bottom:148.814667pt;}
.y117{bottom:150.053333pt;}
.y86{bottom:150.746667pt;}
.y134{bottom:151.748981pt;}
.y122{bottom:152.580000pt;}
.y162{bottom:152.913769pt;}
.y9c{bottom:158.552648pt;}
.y145{bottom:162.098667pt;}
.ye2{bottom:164.756000pt;}
.y116{bottom:165.993333pt;}
.y85{bottom:166.686667pt;}
.y121{bottom:168.520000pt;}
.yb5{bottom:169.667118pt;}
.yb1{bottom:170.701275pt;}
.y152{bottom:173.890834pt;}
.yfe{bottom:174.086780pt;}
.y1f{bottom:177.936000pt;}
.y144{bottom:178.038667pt;}
.ye1{bottom:180.696000pt;}
.y115{bottom:181.933333pt;}
.y84{bottom:182.628000pt;}
.y156{bottom:183.307109pt;}
.y151{bottom:184.460000pt;}
.ya6{bottom:185.092391pt;}
.y9a{bottom:185.810858pt;}
.y1e{bottom:193.876000pt;}
.y143{bottom:193.978667pt;}
.ya7{bottom:196.087116pt;}
.ye0{bottom:196.636000pt;}
.y11c{bottom:197.744000pt;}
.y114{bottom:197.873333pt;}
.y83{bottom:198.568000pt;}
.y128{bottom:203.685451pt;}
.y5c{bottom:209.625333pt;}
.y142{bottom:209.920000pt;}
.y14a{bottom:213.684000pt;}
.y82{bottom:214.508000pt;}
.y12b{bottom:217.303670pt;}
.y125{bottom:217.445187pt;}
.yf5{bottom:217.619361pt;}
.y1d{bottom:217.786667pt;}
.ydf{bottom:220.546667pt;}
.y5a{bottom:221.070180pt;}
.y113{bottom:221.557333pt;}
.yaf{bottom:223.606587pt;}
.yeb{bottom:223.802533pt;}
.y5b{bottom:225.565333pt;}
.y141{bottom:225.860000pt;}
.y14d{bottom:228.341939pt;}
.y81{bottom:230.448000pt;}
.yfa{bottom:233.719557pt;}
.y1c{bottom:233.726667pt;}
.yab{bottom:235.537497pt;}
.yde{bottom:236.486667pt;}
.y112{bottom:237.497333pt;}
.y57{bottom:239.826529pt;}
.y52{bottom:241.505333pt;}
.y49{bottom:242.112561pt;}
.yee{bottom:242.929001pt;}
.y11e{bottom:245.476293pt;}
.y80{bottom:246.388000pt;}
.y130{bottom:248.045358pt;}
.y54{bottom:249.025086pt;}
.y1b{bottom:249.666667pt;}
.y140{bottom:249.770667pt;}
.ydd{bottom:252.426667pt;}
.y111{bottom:253.438667pt;}
.yf1{bottom:254.653079pt;}
.y51{bottom:257.445333pt;}
.y9d{bottom:261.173713pt;}
.y7f{bottom:262.328000pt;}
.y4e{bottom:264.700734pt;}
.y185{bottom:265.352000pt;}
.y13f{bottom:265.710667pt;}
.y97{bottom:266.703733pt;}
.ydc{bottom:268.366667pt;}
.y110{bottom:269.378667pt;}
.y15b{bottom:271.134281pt;}
.ya3{bottom:272.810705pt;}
.y50{bottom:273.385333pt;}
.y163{bottom:274.040807pt;}
.y24{bottom:275.412427pt;}
.y135{bottom:275.771660pt;}
.y7e{bottom:278.269333pt;}
.y184{bottom:279.964000pt;}
.y13e{bottom:281.650667pt;}
.y1a{bottom:282.156000pt;}
.yff{bottom:284.251750pt;}
.ydb{bottom:284.306667pt;}
.y10f{bottom:285.318667pt;}
.y28{bottom:289.325333pt;}
.y153{bottom:291.839199pt;}
.y15f{bottom:293.493851pt;}
.y7d{bottom:294.209333pt;}
.y13d{bottom:297.590667pt;}
.y183{bottom:299.654667pt;}
.y27{bottom:305.266667pt;}
.yb2{bottom:305.936397pt;}
.y7c{bottom:310.149333pt;}
.y157{bottom:310.693521pt;}
.yf6{bottom:312.957781pt;}
.y13c{bottom:313.530667pt;}
.y182{bottom:314.265333pt;}
.yda{bottom:316.796000pt;}
.y10e{bottom:317.581333pt;}
.y181{bottom:323.798667pt;}
.y14e{bottom:324.115794pt;}
.y7b{bottom:326.089333pt;}
.y19{bottom:327.310667pt;}
.y21{bottom:334.489333pt;}
.y18{bottom:343.250667pt;}
.y180{bottom:343.489333pt;}
.yec{bottom:345.528294pt;}
.y13b{bottom:346.020000pt;}
.y131{bottom:348.140902pt;}
.y7a{bottom:350.000000pt;}
.y58{bottom:354.770395pt;}
.y11f{bottom:356.185557pt;}
.y12c{bottom:357.633378pt;}
.y17f{bottom:358.336000pt;}
.y10d{bottom:358.852000pt;}
.yac{bottom:358.950567pt;}
.yd9{bottom:358.972000pt;}
.y17{bottom:359.190667pt;}
.y9e{bottom:363.794778pt;}
.yfb{bottom:365.743348pt;}
.y79{bottom:365.940000pt;}
.ya8{bottom:368.051152pt;}
.y17e{bottom:374.808000pt;}
.y16{bottom:375.132000pt;}
.y10c{bottom:378.542667pt;}
.yd8{bottom:378.662667pt;}
.y126{bottom:378.958790pt;}
.y78{bottom:381.880000pt;}
.yf2{bottom:386.339408pt;}
.y10b{bottom:388.076000pt;}
.yd7{bottom:388.194667pt;}
.y47{bottom:388.737333pt;}
.y4a{bottom:389.648711pt;}
.y15{bottom:391.072000pt;}
.y17d{bottom:391.280000pt;}
.y98{bottom:392.903586pt;}
.y100{bottom:394.405835pt;}
.y164{bottom:395.167846pt;}
.y77{bottom:397.820000pt;}
.y136{bottom:399.794339pt;}
.y10a{bottom:402.688000pt;}
.yd6{bottom:402.806667pt;}
.y46{bottom:404.677333pt;}
.y14{bottom:407.012000pt;}
.ya4{bottom:407.512419pt;}
.y17c{bottom:407.750667pt;}
.yf7{bottom:408.296201pt;}
.y129{bottom:409.188842pt;}
.y154{bottom:409.798451pt;}
.y76{bottom:413.761333pt;}
.y109{bottom:417.300000pt;}
.y13a{bottom:417.418667pt;}
.y15c{bottom:419.552187pt;}
.y14f{bottom:419.900535pt;}
.y45{bottom:420.618667pt;}
.y23{bottom:422.175681pt;}
.yd5{bottom:422.497333pt;}
.y13{bottom:422.952000pt;}
.y17b{bottom:424.222667pt;}
.y75{bottom:429.701333pt;}
.yef{bottom:429.926418pt;}
.y108{bottom:431.910667pt;}
.y139{bottom:432.030667pt;}
.y44{bottom:436.558667pt;}
.yd4{bottom:437.109333pt;}
.y158{bottom:438.069046pt;}
.y12{bottom:438.892000pt;}
.y17a{bottom:440.694667pt;}
.yb3{bottom:441.182404pt;}
.y55{bottom:444.056273pt;}
.y74{bottom:445.641333pt;}
.yd3{bottom:446.642667pt;}
.y132{bottom:448.247332pt;}
.y107{bottom:451.601333pt;}
.y138{bottom:451.721333pt;}
.y43{bottom:452.498667pt;}
.y11{bottom:454.832000pt;}
.y179{bottom:457.165333pt;}
.y73{bottom:461.581333pt;}
.y160{bottom:462.442502pt;}
.y106{bottom:466.213333pt;}
.yd2{bottom:466.333333pt;}
.y9f{bottom:466.426729pt;}
.y120{bottom:466.905707pt;}
.yed{bottom:467.264941pt;}
.y42{bottom:468.438667pt;}
.y59{bottom:469.703375pt;}
.y10{bottom:470.773333pt;}
.y178{bottom:473.637333pt;}
.y105{bottom:475.746667pt;}
.yd1{bottom:475.866667pt;}
.yad{bottom:482.352752pt;}
.y41{bottom:484.378667pt;}
.y72{bottom:485.492000pt;}
.yf{bottom:486.713333pt;}
.y177{bottom:490.109333pt;}
.y104{bottom:495.437333pt;}
.yd0{bottom:495.557333pt;}
.yfc{bottom:497.778025pt;}
.y12d{bottom:497.963085pt;}
.y40{bottom:500.318667pt;}
.y71{bottom:501.432000pt;}
.ye{bottom:502.653333pt;}
.yf8{bottom:503.634621pt;}
.y101{bottom:504.559920pt;}
.y176{bottom:506.580000pt;}
.y22{bottom:510.057283pt;}
.y103{bottom:510.284000pt;}
.ycf{bottom:510.404000pt;}
.y150{bottom:515.685276pt;}
.y3f{bottom:516.260000pt;}
.y165{bottom:516.305770pt;}
.y70{bottom:517.372000pt;}
.yf3{bottom:518.025737pt;}
.yd{bottom:518.593333pt;}
.y99{bottom:519.114324pt;}
.y175{bottom:523.052000pt;}
.y137{bottom:523.817018pt;}
.yce{bottom:526.874667pt;}
.y155{bottom:527.746816pt;}
.y3e{bottom:532.200000pt;}
.y6f{bottom:533.312000pt;}
.yc{bottom:534.533333pt;}
.y4b{bottom:537.173977pt;}
.y174{bottom:539.524000pt;}
.ya9{bottom:540.015188pt;}
.y127{bottom:540.472394pt;}
.ya5{bottom:542.214133pt;}
.ycd{bottom:543.346667pt;}
.y3d{bottom:548.140000pt;}
.y133{bottom:548.353762pt;}
.yb{bottom:550.473333pt;}
.y173{bottom:555.994667pt;}
.ycc{bottom:559.818667pt;}
.y3c{bottom:564.080000pt;}
.y159{bottom:565.444572pt;}
.ya{bottom:566.414667pt;}
.y15d{bottom:567.970093pt;}
.ya0{bottom:569.047794pt;}
.y6e{bottom:570.506667pt;}
.y172{bottom:572.466667pt;}
.ycb{bottom:576.290667pt;}
.yb4{bottom:576.417526pt;}
.y3b{bottom:580.020000pt;}
.y9{bottom:582.354667pt;}
.y6d{bottom:586.446667pt;}
.y171{bottom:588.938667pt;}
.yca{bottom:592.761333pt;}
.y8{bottom:598.294667pt;}
.y4f{bottom:601.389704pt;}
.y3a{bottom:603.930667pt;}
.y170{bottom:605.409333pt;}
.yae{bottom:605.765822pt;}
.yc9{bottom:609.233333pt;}
.y6c{bottom:613.013333pt;}
.y7{bottom:614.234667pt;}
.y102{bottom:614.724891pt;}
.y39{bottom:619.870667pt;}
.y16f{bottom:621.881333pt;}
.yc8{bottom:625.705333pt;}
.y6{bottom:630.174667pt;}
.y38{bottom:635.810667pt;}
.y16e{bottom:638.353333pt;}
.yc7{bottom:642.176000pt;}
.y5{bottom:646.114667pt;}
.y6b{bottom:650.208000pt;}
.y37{bottom:651.752000pt;}
.y16d{bottom:654.824000pt;}
.yc6{bottom:658.648000pt;}
.y6a{bottom:666.148000pt;}
.y36{bottom:667.692000pt;}
.y16c{bottom:671.296000pt;}
.yc5{bottom:675.120000pt;}
.y4{bottom:678.604000pt;}
.y69{bottom:682.088000pt;}
.y35{bottom:683.632000pt;}
.y16b{bottom:687.768000pt;}
.yc4{bottom:691.590667pt;}
.y68{bottom:698.028000pt;}
.y34{bottom:699.572000pt;}
.y16a{bottom:703.708000pt;}
.yc3{bottom:708.062667pt;}
.y67{bottom:713.968000pt;}
.y33{bottom:715.512000pt;}
.y3{bottom:718.325333pt;}
.y169{bottom:719.648000pt;}
.yc2{bottom:724.534667pt;}
.y66{bottom:729.908000pt;}
.y32{bottom:731.453333pt;}
.y168{bottom:735.588000pt;}
.y95{bottom:741.005333pt;}
.y65{bottom:745.849333pt;}
.y167{bottom:751.528000pt;}
.y94{bottom:756.945333pt;}
.yc1{bottom:757.477333pt;}
.y64{bottom:761.789333pt;}
.y31{bottom:768.517333pt;}
.y93{bottom:772.885333pt;}
.yc0{bottom:773.949333pt;}
.y166{bottom:781.814667pt;}
.y92{bottom:788.825333pt;}
.ybf{bottom:790.420000pt;}
.y63{bottom:794.278667pt;}
.ye9{bottom:804.766667pt;}
.ybe{bottom:806.892000pt;}
.y91{bottom:812.736000pt;}
.y30{bottom:813.681333pt;}
.ye8{bottom:820.706667pt;}
.y2{bottom:823.357333pt;}
.ybd{bottom:823.364000pt;}
.y90{bottom:828.676000pt;}
.y2f{bottom:830.153333pt;}
.ye7{bottom:836.646667pt;}
.y62{bottom:839.433333pt;}
.ybc{bottom:839.834667pt;}
.y8f{bottom:844.617333pt;}
.y2e{bottom:846.624000pt;}
.ybb{bottom:856.306667pt;}
.y8e{bottom:860.557333pt;}
.y2d{bottom:863.096000pt;}
.y1{bottom:863.208000pt;}
.y61{bottom:863.342667pt;}
.yba{bottom:872.246667pt;}
.y8d{bottom:876.497333pt;}
.y60{bottom:879.282667pt;}
.y2c{bottom:879.568000pt;}
.yb9{bottom:888.186667pt;}
.y8c{bottom:892.437333pt;}
.y5f{bottom:895.224000pt;}
.y2b{bottom:896.038667pt;}
.yb8{bottom:904.126667pt;}
.y8b{bottom:908.377333pt;}
.y5e{bottom:911.164000pt;}
.y11b{bottom:916.348000pt;}
.yb7{bottom:920.068000pt;}
.y2a{bottom:923.137333pt;}
.y8a{bottom:932.288000pt;}
.y29{bottom:939.077333pt;}
.y5d{bottom:948.228000pt;}
.yb6{bottom:950.353333pt;}
.hd{height:22.125090pt;}
.he{height:33.713664pt;}
.h9{height:37.193707pt;}
.h5{height:39.850400pt;}
.h7{height:40.873027pt;}
.h4{height:44.505225pt;}
.hc{height:45.092358pt;}
.hb{height:45.097692pt;}
.h2{height:45.525402pt;}
.ha{height:49.955922pt;}
.h3{height:53.406121pt;}
.h8{height:54.497370pt;}
.h1{height:64.179011pt;}
.h6{height:627.025920pt;}
.h0{height:1056.000000pt;}
.w1{width:627.025920pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:14.565290pt;}
.xb{left:20.182397pt;}
.x37{left:25.625330pt;}
.x19{left:31.079149pt;}
.x10{left:36.522083pt;}
.x12{left:52.121530pt;}
.x16{left:57.324974pt;}
.x9{left:60.089984pt;}
.xc{left:62.517532pt;}
.x3{left:94.488000pt;}
.x6{left:99.137588pt;}
.xf{left:100.890212pt;}
.x1e{left:102.458667pt;}
.x2e{left:105.114667pt;}
.x14{left:110.724000pt;}
.x2f{left:114.413333pt;}
.x38{left:115.553475pt;}
.x18{left:118.274941pt;}
.x15{left:127.697333pt;}
.x1d{left:129.977248pt;}
.x35{left:131.370667pt;}
.x3a{left:133.776415pt;}
.x1c{left:136.497882pt;}
.xa{left:139.490667pt;}
.x3b{left:147.493333pt;}
.x39{left:150.170531pt;}
.x11{left:151.672780pt;}
.x1a{left:152.891997pt;}
.x20{left:181.081333pt;}
.x30{left:184.076000pt;}
.x2{left:185.404000pt;}
.x1{left:189.768000pt;}
.x34{left:200.998667pt;}
.x1f{left:205.274667pt;}
.x36{left:225.365333pt;}
.x21{left:256.346667pt;}
.x22{left:264.542667pt;}
.x13{left:316.942008pt;}
.x17{left:319.663475pt;}
.xd{left:322.395827pt;}
.x8{left:332.813602pt;}
.x3d{left:337.706667pt;}
.x24{left:341.246667pt;}
.x31{left:348.728000pt;}
.x3c{left:356.202667pt;}
.x23{left:379.117333pt;}
.x1b{left:401.358667pt;}
.x4{left:404.678667pt;}
.x3e{left:406.456000pt;}
.x26{left:410.870667pt;}
.x3f{left:425.216000pt;}
.x7{left:426.159908pt;}
.x25{left:429.368000pt;}
.x27{left:479.620000pt;}
.x42{left:495.004000pt;}
.x32{left:498.381333pt;}
.x28{left:499.702667pt;}
.x41{left:502.669333pt;}
.x5{left:511.200299pt;}
.x40{left:515.032000pt;}
.x44{left:524.738667pt;}
.x43{left:528.536000pt;}
.x2b{left:568.168000pt;}
.x2a{left:575.834667pt;}
.x29{left:588.196000pt;}
.x2d{left:596.581333pt;}
.x33{left:597.902667pt;}
.x2c{left:601.700000pt;}
}




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