
    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_008496be56930aab4091bc65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;font-style:normal;font-weight: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_d2ddcac530d0f6d378ecbc55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight: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_e87a65bae926c508149218f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight: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_a7dc0f0cce341f366f470d1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;font-style:normal;font-weight: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_d6b8c0855794a038b715256c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692871;font-style:normal;font-weight: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_727eb7bad55010875ed9ebbd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698242;font-style:normal;font-weight: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_ce7f990564d17364d11b82b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;font-style:normal;font-weight: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_244e83faeeae58771e3ec1fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight: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_d1218ccb541ef15666b5b1bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight: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_3dc61c1216944fdc8b3a6dee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight: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_b3f9ac828831a9269ff9cf4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;font-style:normal;font-weight: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_43913b5efd23b703fd33e899.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;font-style:normal;font-weight: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_1e7e0a52081c50869a0bd7d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight: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_65a26ac8873eaa75ceb7c1ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;font-style:normal;font-weight: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_81eaca82c8a0f06a1bbf5f6e.woff2')format("woff");}.fff{font-family:fff;line-height:0.708008;font-style:normal;font-weight: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_14158090cf551dcb824f7640.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.709473;font-style:normal;font-weight: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_f107141aa0c97f13165b6594.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.709473;font-style:normal;font-weight: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_0d98d35ee81cf4f8e3e2d30f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;font-style:normal;font-weight: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_725c0fd382fa559e42c37ba2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.708008;font-style:normal;font-weight: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_d584c04d5ab520e7e9f30f2b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.708008;font-style:normal;font-weight: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_886d1f4e371dba0e1bad4a6b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.708008;font-style:normal;font-weight: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_96b25297deeaa68db15e4dc6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.708008;font-style:normal;font-weight: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_271858c8de18817c70001417.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;font-style:normal;font-weight: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_432fb876892f1bde5456ad14.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.708008;font-style:normal;font-weight: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_1024d3fc5c94e30673505b3c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.708008;font-style:normal;font-weight: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_238d6c9e18c40154236641c3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910645;font-style:normal;font-weight: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_0a39a6a25174361ee1bd124f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.708008;font-style:normal;font-weight: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_940bf8777a8db19bd6957ac8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.708008;font-style:normal;font-weight: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_c7fdd17cc13b8883cf7437dd.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.891113;font-style:normal;font-weight: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_7fc3ef37b6d905ba5d7fc9d3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight: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_f465ae744b4b0fb930ae2ed5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.709473;font-style:normal;font-weight: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_cd53598c9abb6c960f12d282.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.708008;font-style:normal;font-weight: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_99f16d64ecb21310734bfa1e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight: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_75f7e64e5d91ebb29573a869.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.709473;font-style:normal;font-weight: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_cd915ef789c1e3dda59a6d7d.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight: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_4b8130ff9d248d3b3490a47e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.709473;font-style:normal;font-weight: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_6ca8d698f6e65364f4bc6605.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.073242;font-style:normal;font-weight: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_fd9a35ed6eaaba28a5b22575.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.694336;font-style:normal;font-weight: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_27d68ccff1f0a37815cf46eb.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.910645;font-style:normal;font-weight: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_bf1545ee09a0aab6d46cc279.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.708008;font-style:normal;font-weight: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_cb3bd712bb7d76e0f616c8a4.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.892578;font-style:normal;font-weight: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_6ff5477565368ac6d6e71785.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.708008;font-style:normal;font-weight: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_af0a56375b1f248d0c4a0be4.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.708008;font-style:normal;font-weight: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_4f32d496b2eb0d1c67ed6a2e.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.093262;font-style:normal;font-weight: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_2f2395269ca7b2cbcecfcc49.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.910645;font-style:normal;font-weight: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_9bc03ad1bf40fd0b38424aec.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight: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_9810f0ddd09c671be5d8aa7b.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.708008;font-style:normal;font-weight: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_42431d9fe014234a0a38dff7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.680176;font-style:normal;font-weight: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_9007f87e3e09ddc5641d405a.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_495f9e5d8b820a77b375dc84.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_c10d7db13fae6928294f9f8c.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_3f3affa8d282b81119ca4204.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_0adb29695ba45fc1b38fa8dc.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_fdd03c97f3d097e4102bb275.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_26f9a48df5107671a9a5807b.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_16f1a7cbb14253467929a3eb.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_6844149d902a6857c4e97d71.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_bdd1855b62ab718b339d9caf.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_c2d963caf8e858e39e4c8f43.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_3bb7a6d6c2b7756cacf71ed7.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_98d0e70d0d0329f90b8dbb34.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.708008;font-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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-10.465056px;}
.ls13{letter-spacing:-5.587488px;}
.ls10{letter-spacing:-2.672640px;}
.ls18{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.064800px;}
.ls15{letter-spacing:-0.050400px;}
.ls1a{letter-spacing:-0.028800px;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.116928px;}
.lsa{letter-spacing:0.119040px;}
.ls8{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.120600px;}
.ls12{letter-spacing:0.158688px;}
.ls7{letter-spacing:0.160440px;}
.ls5{letter-spacing:0.200448px;}
.ls4{letter-spacing:0.233856px;}
.ls6{letter-spacing:0.242208px;}
.lsc{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.283968px;}
.lse{letter-spacing:0.317376px;}
.lsb{letter-spacing:0.359136px;}
.ls0{letter-spacing:0.442656px;}
.ls19{letter-spacing:2.719800px;}
.ls17{letter-spacing:2.728800px;}
.ls1b{letter-spacing:22.197600px;}
.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;}
}
.wsb{word-spacing:-21.239136px;}
.ws2{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.985600px;}
.wsc{word-spacing:-17.935200px;}
.ws4{word-spacing:-0.442656px;}
.ws6{word-spacing:-0.367488px;}
.ws5{word-spacing:-0.359136px;}
.ws9{word-spacing:-0.325728px;}
.ws7{word-spacing:-0.283968px;}
.ws8{word-spacing:-0.200448px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:21.072096px;}
._11{margin-left:-10.599168px;}
._10{margin-left:-5.929920px;}
._e{margin-left:-4.927680px;}
._f{margin-left:-2.255040px;}
._0{margin-left:-1.169280px;}
._1{width:1.411200px;}
._3{width:2.772000px;}
._2{width:3.866400px;}
._d{width:5.117460px;}
._5{width:6.314400px;}
._8{width:7.884000px;}
._14{width:9.001260px;}
._a{width:10.166880px;}
._9{width:11.502060px;}
._19{width:12.551460px;}
._17{width:13.573320px;}
._7{width:15.026400px;}
._18{width:16.610400px;}
._6{width:19.238400px;}
._16{width:20.733840px;}
._13{width:21.806280px;}
._c{width:22.820940px;}
._15{width:24.170400px;}
._1b{width:25.761600px;}
._b{width:26.782260px;}
._4{width:27.806400px;}
._12{width:28.843200px;}
._1a{width:31.420800px;}
._1d{width:33.085860px;}
._1e{width:34.164000px;}
._1c{width:37.281600px;}
._1f{width:53.863200px;}
._20{width:76.032000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y46{bottom:4.680000px;}
.y45{bottom:28.800000px;}
.y26{bottom:34.560000px;}
.y44{bottom:52.920000px;}
.y1{bottom:54.000000px;}
.y43{bottom:77.040000px;}
.y87{bottom:80.684985px;}
.y47{bottom:83.564985px;}
.y66{bottom:90.764985px;}
.y21{bottom:92.564985px;}
.y42{bottom:101.160000px;}
.y86{bottom:101.205000px;}
.y65{bottom:121.725000px;}
.y85{bottom:122.085000px;}
.y20{bottom:123.525000px;}
.y41{bottom:125.280000px;}
.y40{bottom:149.400000px;}
.y84{bottom:151.605000px;}
.y64{bottom:152.685000px;}
.y1f{bottom:154.485000px;}
.y83{bottom:172.485000px;}
.y3f{bottom:173.520000px;}
.y63{bottom:184.005000px;}
.y1e{bottom:185.445000px;}
.y82{bottom:193.005000px;}
.y3e{bottom:197.640000px;}
.y27{bottom:210.285000px;}
.y81{bottom:213.885000px;}
.y1d{bottom:216.765000px;}
.y3d{bottom:221.760000px;}
.y62{bottom:223.965000px;}
.y80{bottom:243.405000px;}
.y3c{bottom:245.880000px;}
.y1c{bottom:247.725000px;}
.y61{bottom:254.925000px;}
.y7f{bottom:264.285000px;}
.y3b{bottom:270.360000px;}
.y1b{bottom:278.685000px;}
.y60{bottom:285.885000px;}
.y7e{bottom:293.805000px;}
.y3a{bottom:294.480000px;}
.y7d{bottom:314.685000px;}
.y5f{bottom:317.205000px;}
.y39{bottom:318.600000px;}
.y1a{bottom:318.645000px;}
.y7c{bottom:335.205000px;}
.y38{bottom:342.720000px;}
.y5e{bottom:348.165000px;}
.y19{bottom:349.965000px;}
.y7b{bottom:356.085000px;}
.y37{bottom:366.840000px;}
.y5d{bottom:379.125000px;}
.y18{bottom:380.925000px;}
.y7a{bottom:385.605000px;}
.y36{bottom:390.960000px;}
.y79{bottom:406.485000px;}
.y5c{bottom:410.085000px;}
.y17{bottom:411.885000px;}
.y35{bottom:415.080000px;}
.y78{bottom:437.445000px;}
.y34{bottom:439.200000px;}
.y5b{bottom:441.405000px;}
.y9e{bottom:442.125000px;}
.y16{bottom:442.845000px;}
.y33{bottom:463.320000px;}
.y5a{bottom:472.365000px;}
.y9d{bottom:473.805000px;}
.y15{bottom:474.165000px;}
.y77{bottom:477.405000px;}
.y32{bottom:487.440000px;}
.y9c{bottom:494.685000px;}
.y59{bottom:503.325000px;}
.y14{bottom:505.125000px;}
.y31{bottom:511.560000px;}
.y9b{bottom:515.205000px;}
.y76{bottom:517.365000px;}
.y58{bottom:534.285000px;}
.y30{bottom:535.680000px;}
.y13{bottom:536.085000px;}
.y75{bottom:548.685000px;}
.y9a{bottom:556.605000px;}
.y2f{bottom:559.800000px;}
.y57{bottom:565.605000px;}
.y12{bottom:567.045000px;}
.y99{bottom:577.485000px;}
.y74{bottom:579.645000px;}
.y2e{bottom:584.280000px;}
.y56{bottom:596.565000px;}
.y98{bottom:598.005000px;}
.y11{bottom:598.365000px;}
.y2d{bottom:608.400000px;}
.y73{bottom:610.605000px;}
.y55{bottom:627.525000px;}
.y97{bottom:627.885000px;}
.y10{bottom:629.325000px;}
.y2c{bottom:632.520000px;}
.y72{bottom:641.565000px;}
.y2b{bottom:656.640000px;}
.y96{bottom:657.405000px;}
.y54{bottom:658.485000px;}
.yf{bottom:660.285000px;}
.y71{bottom:672.885000px;}
.y2a{bottom:680.760000px;}
.y95{bottom:687.285000px;}
.y53{bottom:689.805000px;}
.ye{bottom:691.245000px;}
.y29{bottom:704.880000px;}
.y94{bottom:707.805000px;}
.y70{bottom:712.845000px;}
.y93{bottom:728.685000px;}
.y28{bottom:729.000000px;}
.y52{bottom:729.765000px;}
.yd{bottom:731.565000px;}
.y6f{bottom:743.805000px;}
.y92{bottom:758.205000px;}
.y51{bottom:760.725000px;}
.yc{bottom:762.525000px;}
.y6e{bottom:774.765000px;}
.y91{bottom:779.085000px;}
.y50{bottom:791.685000px;}
.yb{bottom:793.485000px;}
.y6d{bottom:806.085000px;}
.y90{bottom:808.605000px;}
.y4f{bottom:823.005000px;}
.ya{bottom:824.445000px;}
.y8f{bottom:829.485000px;}
.y6c{bottom:837.045000px;}
.y4e{bottom:853.965000px;}
.y8e{bottom:859.005000px;}
.y9{bottom:864.764850px;}
.y6b{bottom:868.005000px;}
.y8d{bottom:879.885000px;}
.y4d{bottom:884.925000px;}
.y8{bottom:895.725000px;}
.y6a{bottom:898.965000px;}
.y8c{bottom:900.405000px;}
.y4c{bottom:924.885000px;}
.y7{bottom:926.685000px;}
.y69{bottom:930.285000px;}
.y8b{bottom:950.805000px;}
.y4b{bottom:956.205000px;}
.y6{bottom:957.645000px;}
.y68{bottom:970.245000px;}
.y25{bottom:970.965000px;}
.y8a{bottom:971.685000px;}
.y4a{bottom:987.165000px;}
.y5{bottom:988.965000px;}
.y24{bottom:992.205000px;}
.y67{bottom:1001.205000px;}
.y89{bottom:1013.085000px;}
.y49{bottom:1018.125000px;}
.y4{bottom:1018.485000px;}
.y23{bottom:1032.165000px;}
.y3{bottom:1039.365000px;}
.y88{bottom:1042.604850px;}
.y2{bottom:1060.604850px;}
.y48{bottom:1060.965000px;}
.y22{bottom:1063.485000px;}
.h4{height:49.289063px;}
.h7{height:54.000000px;}
.h3{height:57.175313px;}
.ha{height:57.990938px;}
.hb{height:58.031719px;}
.h5{height:63.175781px;}
.h6{height:63.351563px;}
.h8{height:73.283906px;}
.hc{height:104.871797px;}
.h9{height:748.440000px;}
.h2{height:1201.365000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:183.240000px;}
.w4{width:214.200000px;}
.w5{width:327.600000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.079835px;}
.x1{left:13.500000px;}
.x3{left:120.959835px;}
.x5{left:124.380000px;}
.x2{left:244.065300px;}
.x7{left:309.060000px;}
.x4{left:439.559700px;}
.x8{left:524.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-9.302272pt;}
.ls13{letter-spacing:-4.966656pt;}
.ls10{letter-spacing:-2.375680pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.057600pt;}
.ls15{letter-spacing:-0.044800pt;}
.ls1a{letter-spacing:-0.025600pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.103936pt;}
.lsa{letter-spacing:0.105813pt;}
.ls8{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.107200pt;}
.ls12{letter-spacing:0.141056pt;}
.ls7{letter-spacing:0.142613pt;}
.ls5{letter-spacing:0.178176pt;}
.ls4{letter-spacing:0.207872pt;}
.ls6{letter-spacing:0.215296pt;}
.lsc{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.252416pt;}
.lse{letter-spacing:0.282112pt;}
.lsb{letter-spacing:0.319232pt;}
.ls0{letter-spacing:0.393472pt;}
.ls19{letter-spacing:2.417600pt;}
.ls17{letter-spacing:2.425600pt;}
.ls1b{letter-spacing:19.731200pt;}
.wsb{word-spacing:-18.879232pt;}
.ws2{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.987200pt;}
.wsc{word-spacing:-15.942400pt;}
.ws4{word-spacing:-0.393472pt;}
.ws6{word-spacing:-0.326656pt;}
.ws5{word-spacing:-0.319232pt;}
.ws9{word-spacing:-0.289536pt;}
.ws7{word-spacing:-0.252416pt;}
.ws8{word-spacing:-0.178176pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:18.730752pt;}
._11{margin-left:-9.421483pt;}
._10{margin-left:-5.271040pt;}
._e{margin-left:-4.380160pt;}
._f{margin-left:-2.004480pt;}
._0{margin-left:-1.039360pt;}
._1{width:1.254400pt;}
._3{width:2.464000pt;}
._2{width:3.436800pt;}
._d{width:4.548853pt;}
._5{width:5.612800pt;}
._8{width:7.008000pt;}
._14{width:8.001120pt;}
._a{width:9.037227pt;}
._9{width:10.224053pt;}
._19{width:11.156853pt;}
._17{width:12.065173pt;}
._7{width:13.356800pt;}
._18{width:14.764800pt;}
._6{width:17.100800pt;}
._16{width:18.430080pt;}
._13{width:19.383360pt;}
._c{width:20.285280pt;}
._15{width:21.484800pt;}
._1b{width:22.899200pt;}
._b{width:23.806453pt;}
._4{width:24.716800pt;}
._12{width:25.638400pt;}
._1a{width:27.929600pt;}
._1d{width:29.409653pt;}
._1e{width:30.368000pt;}
._1c{width:33.139200pt;}
._1f{width:47.878400pt;}
._20{width:67.584000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:4.160000pt;}
.y45{bottom:25.600000pt;}
.y26{bottom:30.720000pt;}
.y44{bottom:47.040000pt;}
.y1{bottom:48.000000pt;}
.y43{bottom:68.480000pt;}
.y87{bottom:71.719987pt;}
.y47{bottom:74.279987pt;}
.y66{bottom:80.679987pt;}
.y21{bottom:82.279987pt;}
.y42{bottom:89.920000pt;}
.y86{bottom:89.960000pt;}
.y65{bottom:108.200000pt;}
.y85{bottom:108.520000pt;}
.y20{bottom:109.800000pt;}
.y41{bottom:111.360000pt;}
.y40{bottom:132.800000pt;}
.y84{bottom:134.760000pt;}
.y64{bottom:135.720000pt;}
.y1f{bottom:137.320000pt;}
.y83{bottom:153.320000pt;}
.y3f{bottom:154.240000pt;}
.y63{bottom:163.560000pt;}
.y1e{bottom:164.840000pt;}
.y82{bottom:171.560000pt;}
.y3e{bottom:175.680000pt;}
.y27{bottom:186.920000pt;}
.y81{bottom:190.120000pt;}
.y1d{bottom:192.680000pt;}
.y3d{bottom:197.120000pt;}
.y62{bottom:199.080000pt;}
.y80{bottom:216.360000pt;}
.y3c{bottom:218.560000pt;}
.y1c{bottom:220.200000pt;}
.y61{bottom:226.600000pt;}
.y7f{bottom:234.920000pt;}
.y3b{bottom:240.320000pt;}
.y1b{bottom:247.720000pt;}
.y60{bottom:254.120000pt;}
.y7e{bottom:261.160000pt;}
.y3a{bottom:261.760000pt;}
.y7d{bottom:279.720000pt;}
.y5f{bottom:281.960000pt;}
.y39{bottom:283.200000pt;}
.y1a{bottom:283.240000pt;}
.y7c{bottom:297.960000pt;}
.y38{bottom:304.640000pt;}
.y5e{bottom:309.480000pt;}
.y19{bottom:311.080000pt;}
.y7b{bottom:316.520000pt;}
.y37{bottom:326.080000pt;}
.y5d{bottom:337.000000pt;}
.y18{bottom:338.600000pt;}
.y7a{bottom:342.760000pt;}
.y36{bottom:347.520000pt;}
.y79{bottom:361.320000pt;}
.y5c{bottom:364.520000pt;}
.y17{bottom:366.120000pt;}
.y35{bottom:368.960000pt;}
.y78{bottom:388.840000pt;}
.y34{bottom:390.400000pt;}
.y5b{bottom:392.360000pt;}
.y9e{bottom:393.000000pt;}
.y16{bottom:393.640000pt;}
.y33{bottom:411.840000pt;}
.y5a{bottom:419.880000pt;}
.y9d{bottom:421.160000pt;}
.y15{bottom:421.480000pt;}
.y77{bottom:424.360000pt;}
.y32{bottom:433.280000pt;}
.y9c{bottom:439.720000pt;}
.y59{bottom:447.400000pt;}
.y14{bottom:449.000000pt;}
.y31{bottom:454.720000pt;}
.y9b{bottom:457.960000pt;}
.y76{bottom:459.880000pt;}
.y58{bottom:474.920000pt;}
.y30{bottom:476.160000pt;}
.y13{bottom:476.520000pt;}
.y75{bottom:487.720000pt;}
.y9a{bottom:494.760000pt;}
.y2f{bottom:497.600000pt;}
.y57{bottom:502.760000pt;}
.y12{bottom:504.040000pt;}
.y99{bottom:513.320000pt;}
.y74{bottom:515.240000pt;}
.y2e{bottom:519.360000pt;}
.y56{bottom:530.280000pt;}
.y98{bottom:531.560000pt;}
.y11{bottom:531.880000pt;}
.y2d{bottom:540.800000pt;}
.y73{bottom:542.760000pt;}
.y55{bottom:557.800000pt;}
.y97{bottom:558.120000pt;}
.y10{bottom:559.400000pt;}
.y2c{bottom:562.240000pt;}
.y72{bottom:570.280000pt;}
.y2b{bottom:583.680000pt;}
.y96{bottom:584.360000pt;}
.y54{bottom:585.320000pt;}
.yf{bottom:586.920000pt;}
.y71{bottom:598.120000pt;}
.y2a{bottom:605.120000pt;}
.y95{bottom:610.920000pt;}
.y53{bottom:613.160000pt;}
.ye{bottom:614.440000pt;}
.y29{bottom:626.560000pt;}
.y94{bottom:629.160000pt;}
.y70{bottom:633.640000pt;}
.y93{bottom:647.720000pt;}
.y28{bottom:648.000000pt;}
.y52{bottom:648.680000pt;}
.yd{bottom:650.280000pt;}
.y6f{bottom:661.160000pt;}
.y92{bottom:673.960000pt;}
.y51{bottom:676.200000pt;}
.yc{bottom:677.800000pt;}
.y6e{bottom:688.680000pt;}
.y91{bottom:692.520000pt;}
.y50{bottom:703.720000pt;}
.yb{bottom:705.320000pt;}
.y6d{bottom:716.520000pt;}
.y90{bottom:718.760000pt;}
.y4f{bottom:731.560000pt;}
.ya{bottom:732.840000pt;}
.y8f{bottom:737.320000pt;}
.y6c{bottom:744.040000pt;}
.y4e{bottom:759.080000pt;}
.y8e{bottom:763.560000pt;}
.y9{bottom:768.679867pt;}
.y6b{bottom:771.560000pt;}
.y8d{bottom:782.120000pt;}
.y4d{bottom:786.600000pt;}
.y8{bottom:796.200000pt;}
.y6a{bottom:799.080000pt;}
.y8c{bottom:800.360000pt;}
.y4c{bottom:822.120000pt;}
.y7{bottom:823.720000pt;}
.y69{bottom:826.920000pt;}
.y8b{bottom:845.160000pt;}
.y4b{bottom:849.960000pt;}
.y6{bottom:851.240000pt;}
.y68{bottom:862.440000pt;}
.y25{bottom:863.080000pt;}
.y8a{bottom:863.720000pt;}
.y4a{bottom:877.480000pt;}
.y5{bottom:879.080000pt;}
.y24{bottom:881.960000pt;}
.y67{bottom:889.960000pt;}
.y89{bottom:900.520000pt;}
.y49{bottom:905.000000pt;}
.y4{bottom:905.320000pt;}
.y23{bottom:917.480000pt;}
.y3{bottom:923.880000pt;}
.y88{bottom:926.759867pt;}
.y2{bottom:942.759867pt;}
.y48{bottom:943.080000pt;}
.y22{bottom:945.320000pt;}
.h4{height:43.812500pt;}
.h7{height:48.000000pt;}
.h3{height:50.822500pt;}
.ha{height:51.547500pt;}
.hb{height:51.583750pt;}
.h5{height:56.156250pt;}
.h6{height:56.312500pt;}
.h8{height:65.141250pt;}
.hc{height:93.219375pt;}
.h9{height:665.280000pt;}
.h2{height:1067.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:162.880000pt;}
.w4{width:190.400000pt;}
.w5{width:291.200000pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:8.959853pt;}
.x1{left:12.000000pt;}
.x3{left:107.519853pt;}
.x5{left:110.560000pt;}
.x2{left:216.946933pt;}
.x7{left:274.720000pt;}
.x4{left:390.719733pt;}
.x8{left:466.400000pt;}
}




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