
    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_6497a33f826a3180c038f904.woff')format("woff");}.ff1{font-family:ff1;line-height:1.220000;font-style:normal;font-weight: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_9d0344cf35211a28afc8feed.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_65acda8909f8e3228b19fdc2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.754000;font-style:normal;font-weight: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_dc35fcfed79cf868f86066fd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.212000;font-style:normal;font-weight: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_61da250dc799c802f2002c6d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.737305;font-style:normal;font-weight: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_fcd63649b953c7a752eaf251.woff')format("woff");}.ff6{font-family:ff6;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e0b3805e9b4f0880d367c1df.woff')format("woff");}.ff8{font-family:ff8;line-height:1.220000;font-style:normal;font-weight: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_7627ade11d2769621f65e371.woff')format("woff");}.ff9{font-family:ff9;line-height:1.034000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0adaa9735a6cbd93f95360f7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.212000;font-style:normal;font-weight: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_810e56e7ae0dd350bf598019.woff')format("woff");}.ffb{font-family:ffb;line-height:0.834000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_fc7df88b7b19522eba19e6dc.woff')format("woff");}.ff16{font-family:ff16;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_b0d9130b4ed6c156837acace.woff')format("woff");}.ff1b{font-family:ff1b;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_53259813fa1961dad4afeaca.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.973145;font-style:normal;font-weight: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_d247e2b58752b0e2f9929a30.woff')format("woff");}.ff20{font-family:ff20;line-height:0.972656;font-style:normal;font-weight: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_b5559768f6a5392a1916b28c.woff')format("woff");}.ff21{font-family:ff21;line-height:0.972656;font-style:normal;font-weight: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_8fe3c0c1cd190cff2c099f83.woff')format("woff");}.ff22{font-family:ff22;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;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff32;src:url('chunks/assets/font_6ee7d6125be185c197c18e9f.woff')format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff33{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff34;src:url('chunks/assets/font_39943024f6be31457f569786.woff')format("woff");}.ff34{font-family:ff34;line-height:0.940918;font-style:normal;font-weight: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_781dd73934de92a887d94e59.woff')format("woff");}.ff35{font-family:ff35;line-height:0.940918;font-style:normal;font-weight: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_1779f577c47978d94ee27ea4.woff')format("woff");}.ff36{font-family:ff36;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_85501b91df105b8acd72afa9.woff')format("woff");}.ff37{font-family:ff37;line-height:0.940918;font-style:normal;font-weight: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_501d6bcf0badd7154ef76ac0.woff')format("woff");}.ff38{font-family:ff38;line-height:0.940918;font-style:normal;font-weight: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_cb9b3fab2a474145dd4c526e.woff')format("woff");}.ff39{font-family:ff39;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_dc97b0366b1f9781d62070b7.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.940918;font-style:normal;font-weight: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_ee1e70da8cc3df36bfed385a.woff')format("woff");}.ff3b{font-family:ff3b;line-height:1.019043;font-style:normal;font-weight: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_821b199746ebaf24ce0fa00c.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.666992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.ff3e{font-family:sans-serif;visibility:hidden;}
.ff3f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff40;src:url('chunks/assets/font_ad266a9c30b91762ea1a5f09.woff')format("woff");}.ff40{font-family:ff40;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_8fab2fe0c8e405847162923b.woff')format("woff");}.ff41{font-family:ff41;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_18ddf1a1db66888dae386aef.woff')format("woff");}.ff42{font-family:ff42;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_a4b02f6968dbeda33ec642e8.woff')format("woff");}.ff43{font-family:ff43;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;}
.ff44{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-58.499998px;}
.v1{vertical-align:-8.437500px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004500px;}
.ls3{letter-spacing:0.019971px;}
.ls5{letter-spacing:0.019994px;}
.ls4{letter-spacing:0.020016px;}
.ls2{letter-spacing:0.026671px;}
.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;}
}
.ws7{word-spacing:-74.249997px;}
.ws0{word-spacing:-58.904998px;}
.ws8{word-spacing:-32.675317px;}
.ws5{word-spacing:-26.432999px;}
.ws3{word-spacing:-23.561999px;}
.wsa{word-spacing:-22.247998px;}
.ws4{word-spacing:-16.493399px;}
.ws1{word-spacing:-15.859799px;}
.wsc{word-spacing:-13.193999px;}
.ws6{word-spacing:-0.063000px;}
.ws9{word-spacing:-0.054450px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:19.527023px;}
.wsd{word-spacing:59.427150px;}
._13{margin-left:-1787.921206px;}
._17{margin-left:-1395.837370px;}
._22{margin-left:-1330.506707px;}
._1e{margin-left:-1265.116107px;}
._18{margin-left:-1232.460828px;}
._d{margin-left:-1134.414838px;}
._21{margin-left:-1101.759514px;}
._1f{margin-left:-1036.408857px;}
._1d{margin-left:-971.038251px;}
._1b{margin-left:-905.687616px;}
._f{margin-left:-840.336982px;}
._c{margin-left:-807.661665px;}
._11{margin-left:-742.331001px;}
._1c{margin-left:-644.285078px;}
._b{margin-left:-611.609761px;}
._1a{margin-left:-578.934466px;}
._14{margin-left:-546.259149px;}
._10{margin-left:-448.233174px;}
._15{margin-left:-415.557879px;}
._16{margin-left:-382.882562px;}
._12{margin-left:-350.227216px;}
._20{margin-left:-317.551899px;}
._19{margin-left:-284.856610px;}
._23{margin-left:-154.175312px;}
._e{margin-left:-121.480001px;}
._0{margin-left:-4.645019px;}
._8{margin-left:-2.537228px;}
._6{margin-left:-1.409595px;}
._7{width:1.704356px;}
._5{width:77.073960px;}
._1{width:86.629496px;}
._26{width:103.638731px;}
._27{width:115.249349px;}
._25{width:122.506004px;}
._28{width:132.050158px;}
._24{width:135.634027px;}
._a{width:332.672762px;}
._3{width:352.061445px;}
._2{width:415.930483px;}
._29{width:579.681393px;}
._4{width:665.311503px;}
._9{width:840.793251px;}
.fc12{color:rgb(84,85,85);}
.fc11{color:rgb(94,94,94);}
.fce{color:rgb(101,116,34);}
.fc10{color:rgb(51,51,51);}
.fc7{color:rgb(71,88,171);}
.fc1{color:rgb(91,91,91);}
.fc2{color:rgb(34,34,34);}
.fcd{color:rgb(32,121,77);}
.fc3{color:rgb(111,111,111);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(102,102,102);}
.fcf{color:rgb(143,89,2);}
.fc0{color:rgb(59,136,191);}
.fc9{color:rgb(0,0,0);}
.fca{color:rgb(89,89,89);}
.fcc{color:rgb(170,170,170);}
.fc5{color:transparent;}
.fc8{color:rgb(52,58,64);}
.fcb{color:rgb(0,59,79);}
.fs8{font-size:48.509997px;}
.fse{font-size:54.450000px;}
.fsb{font-size:57.734997px;}
.fs3{font-size:59.399997px;}
.fs5{font-size:62.999997px;}
.fs10{font-size:65.969996px;}
.fs4{font-size:69.299995px;}
.fsa{font-size:72.584993px;}
.fs11{font-size:82.484997px;}
.fsd{font-size:90.719996px;}
.fs2{font-size:98.999996px;}
.fs7{font-size:102.046860px;}
.fs9{font-size:105.839996px;}
.fsf{font-size:111.239991px;}
.fs1{font-size:118.799995px;}
.fsc{font-size:126.314995px;}
.fs6{font-size:158.399998px;}
.fs0{font-size:247.499990px;}
.y87{bottom:-11.250000px;}
.y0{bottom:0.000000px;}
.y47{bottom:0.630006px;}
.y1{bottom:1.755006px;}
.y3d{bottom:3.600000px;}
.y67{bottom:11.250000px;}
.y5a{bottom:12.374999px;}
.y86{bottom:13.499999px;}
.y3f{bottom:15.749999px;}
.y65{bottom:17.999999px;}
.y77{bottom:28.124999px;}
.y59{bottom:29.249999px;}
.y8d{bottom:30.374999px;}
.y64{bottom:33.749999px;}
.y85{bottom:38.249998px;}
.y58{bottom:46.124998px;}
.y63{bottom:50.624998px;}
.y57{bottom:62.999997px;}
.y62{bottom:66.374997px;}
.y56{bottom:79.874997px;}
.y61{bottom:83.249997px;}
.y84{bottom:87.749996px;}
.y55{bottom:96.749996px;}
.y60{bottom:98.999996px;}
.y1c{bottom:110.249995px;}
.y54{bottom:113.624995px;}
.y5f{bottom:115.874995px;}
.y78{bottom:118.755001px;}
.y83{bottom:129.374995px;}
.y35{bottom:130.005001px;}
.y53{bottom:130.499995px;}
.y6e{bottom:131.624995px;}
.y5e{bottom:132.749994px;}
.y3a{bottom:141.749994px;}
.y39{bottom:143.859369px;}
.y8{bottom:145.705066px;}
.y52{bottom:147.374994px;}
.y5d{bottom:148.499994px;}
.y3c{bottom:152.280000px;}
.y6d{bottom:164.249993px;}
.y51{bottom:165.374993px;}
.y5c{bottom:181.124992px;}
.y4f{bottom:187.874992px;}
.y88{bottom:195.749992px;}
.y6c{bottom:196.874992px;}
.y76{bottom:199.124992px;}
.y8a{bottom:212.624991px;}
.y6b{bottom:213.749991px;}
.y75{bottom:215.999991px;}
.y4e{bottom:223.874991px;}
.y6a{bottom:229.499990px;}
.y38{bottom:231.749990px;}
.y74{bottom:232.874990px;}
.y69{bottom:246.374990px;}
.y73{bottom:249.749990px;}
.y37{bottom:259.874989px;}
.y72{bottom:266.624989px;}
.y5b{bottom:274.004995px;}
.y68{bottom:275.129995px;}
.y89{bottom:275.624989px;}
.y71{bottom:283.499988px;}
.y2f{bottom:286.874988px;}
.y82{bottom:288.629994px;}
.y70{bottom:300.374987px;}
.y36{bottom:310.499987px;}
.y7{bottom:323.999986px;}
.y2e{bottom:329.624986px;}
.y18{bottom:352.124985px;}
.y2d{bottom:361.124985px;}
.ya{bottom:366.749985px;}
.y3b{bottom:376.874984px;}
.y16{bottom:384.749984px;}
.y41{bottom:386.999984px;}
.y9{bottom:393.749984px;}
.y46{bottom:398.249983px;}
.y6f{bottom:400.004989px;}
.y2c{bottom:403.874983px;}
.y81{bottom:411.749983px;}
.y1f{bottom:417.374983px;}
.y6{bottom:419.624983px;}
.yd{bottom:420.749982px;}
.y45{bottom:430.874982px;}
.yb{bottom:431.999982px;}
.y15{bottom:439.874982px;}
.y80{bottom:444.374981px;}
.y2b{bottom:445.499981px;}
.y40{bottom:461.249981px;}
.y28{bottom:467.999981px;}
.y14{bottom:472.499980px;}
.y7f{bottom:475.874980px;}
.y8b{bottom:476.999980px;}
.y2a{bottom:478.124980px;}
.y1e{bottom:484.874980px;}
.y50{bottom:490.004986px;}
.y44{bottom:505.124979px;}
.y5{bottom:506.249979px;}
.y8c{bottom:506.879985px;}
.y7e{bottom:508.499979px;}
.y27{bottom:509.624979px;}
.y17{bottom:517.499978px;}
.y29{bottom:519.749978px;}
.y1d{bottom:527.624978px;}
.y43{bottom:546.749977px;}
.y7d{bottom:550.124977px;}
.y26{bottom:552.374977px;}
.y66{bottom:556.379983px;}
.y13{bottom:559.124977px;}
.y34{bottom:562.499977px;}
.y3e{bottom:563.129983px;}
.y22{bottom:569.249976px;}
.y4{bottom:571.499976px;}
.y42{bottom:579.374976px;}
.y7c{bottom:582.749976px;}
.y25{bottom:593.999975px;}
.y12{bottom:601.874975px;}
.y33{bottom:605.249975px;}
.y21{bottom:610.874975px;}
.y7b{bottom:624.374974px;}
.y1b{bottom:633.374974px;}
.y11{bottom:643.499973px;}
.y3{bottom:645.749973px;}
.y32{bottom:646.874973px;}
.y24{bottom:650.249973px;}
.y20{bottom:653.624973px;}
.y7a{bottom:656.999973px;}
.y1a{bottom:681.749972px;}
.y10{bottom:685.124971px;}
.y31{bottom:689.624971px;}
.y4d{bottom:695.249971px;}
.y79{bottom:698.624971px;}
.y23{bottom:708.749970px;}
.y4a{bottom:709.874970px;}
.y19{bottom:710.999970px;}
.y2{bottom:719.999970px;}
.y4c{bottom:727.874970px;}
.y30{bottom:731.249970px;}
.yf{bottom:741.374969px;}
.y49{bottom:742.499969px;}
.ye{bottom:788.624967px;}
.y48{bottom:789.749967px;}
.yc{bottom:836.999965px;}
.y4b{bottom:838.124965px;}
.h14{height:37.061637px;}
.h25{height:38.391504px;}
.h2e{height:40.499998px;}
.h28{height:42.087085px;}
.h1a{height:44.898044px;}
.ha{height:45.188963px;}
.h1f{height:46.124998px;}
.h2d{height:47.762277px;}
.h1b{height:54.848247px;}
.h19{height:54.899490px;}
.h8{height:55.954797px;}
.h30{height:56.519998px;}
.h2f{height:59.719138px;}
.h9{height:65.280596px;}
.h12{height:65.627096px;}
.h13{height:65.834996px;}
.h1d{height:68.039997px;}
.h1e{height:68.955744px;}
.h6{height:73.754997px;}
.hf{height:75.635997px;}
.h10{height:77.963801px;}
.h2c{height:80.426513px;}
.h20{height:86.183996px;}
.h16{height:86.624996px;}
.h4{height:90.763196px;}
.h7{height:93.257996px;}
.h5{height:93.752996px;}
.h15{height:94.049996px;}
.h11{height:96.638376px;}
.h18{height:100.547996px;}
.h1c{height:119.999245px;}
.h27{height:149.624994px;}
.he{height:150.004798px;}
.hd{height:150.479998px;}
.h24{height:184.499992px;}
.hb{height:194.039992px;}
.h26{height:206.999991px;}
.h3{height:234.382490px;}
.h21{height:235.124990px;}
.h29{height:272.249989px;}
.h2a{height:319.499987px;}
.h2b{height:449.999981px;}
.h17{height:562.499977px;}
.hc{height:825.749966px;}
.h22{height:826.874966px;}
.h2{height:865.124964px;}
.h23{height:866.249964px;}
.h0{height:866.879970px;}
.h1{height:867.000000px;}
.w5{width:92.249996px;}
.wc{width:94.499996px;}
.w6{width:398.249983px;}
.w7{width:400.499983px;}
.wb{width:627.749974px;}
.w8{width:753.749969px;}
.w9{width:756.000012px;}
.w4{width:937.439961px;}
.w3{width:1046.249956px;}
.wd{width:1176.839951px;}
.wa{width:1178.999951px;}
.w2{width:1181.249951px;}
.w0{width:1298.879970px;}
.w1{width:1299.000000px;}
.x0{left:0.000000px;}
.x54{left:12.585937px;}
.x8e{left:13.605511px;}
.x13{left:16.751952px;}
.x10{left:20.425780px;}
.x8c{left:22.218749px;}
.xe{left:24.187499px;}
.x18{left:25.312499px;}
.x88{left:30.023436px;}
.x86{left:36.984373px;}
.xd{left:38.812498px;}
.x11{left:45.175779px;}
.x29{left:50.062498px;}
.x98{left:52.453123px;}
.x58{left:54.421873px;}
.x99{left:55.546873px;}
.xc{left:59.062498px;}
.x85{left:61.236022px;}
.x57{left:62.999997px;}
.xf{left:69.187497px;}
.x70{left:71.798861px;}
.x59{left:73.219308px;}
.x71{left:79.461688px;}
.x14{left:84.515621px;}
.x60{left:97.382808px;}
.x5a{left:107.126806px;}
.x72{left:113.459548px;}
.x8f{left:119.619136px;}
.x5b{left:121.751101px;}
.x73{left:131.530409px;}
.x4f{left:140.835932px;}
.x2{left:142.119135px;}
.x15{left:143.929682px;}
.x5c{left:146.193500px;}
.x84{left:148.499994px;}
.x16{left:155.443359px;}
.x1b{left:157.851556px;}
.x90{left:164.601556px;}
.x5d{left:171.268969px;}
.x1a{left:172.687493px;}
.x5e{left:186.410069px;}
.x74{left:190.645761px;}
.x5f{left:202.184238px;}
.x75{left:209.472173px;}
.x1{left:216.246085px;}
.x94{left:218.249991px;}
.x97{left:224.771481px;}
.x95{left:227.188913px;}
.x5{left:234.158199px;}
.x9{left:282.216791px;}
.x8{left:283.289051px;}
.x17{left:289.107415px;}
.x56{left:303.996081px;}
.x92{left:314.999987px;}
.x76{left:320.131393px;}
.x77{left:333.558539px;}
.x78{left:362.835283px;}
.x79{left:373.373918px;}
.x61{left:380.091787px;}
.x62{left:384.080785px;}
.x91{left:389.724599px;}
.x63{left:391.748692px;}
.x64{left:399.924031px;}
.x7a{left:401.981697px;}
.x65{left:407.084473px;}
.x66{left:411.073471px;}
.x7b{left:419.195813px;}
.x7c{left:423.505544px;}
.x8a{left:425.249982px;}
.x67{left:426.909662px;}
.x87{left:428.466785px;}
.x68{left:430.898660px;}
.x69{left:447.587630px;}
.x7d{left:448.613440px;}
.xa{left:457.822252px;}
.x4{left:466.699199px;}
.x6a{left:469.569435px;}
.x7e{left:470.961295px;}
.x6b{left:473.558433px;}
.x7f{left:480.870843px;}
.x2a{left:484.312480px;}
.x8d{left:485.999980px;}
.x2d{left:496.687479px;}
.x80{left:501.744316px;}
.x3{left:503.437479px;}
.x6c{left:507.267628px;}
.x81{left:511.653863px;}
.x6d{left:515.689644px;}
.x82{left:522.192498px;}
.x6e{left:524.041175px;}
.x51{left:528.696065px;}
.x6f{left:532.836709px;}
.x52{left:535.306624px;}
.x83{left:539.583820px;}
.x93{left:547.874977px;}
.x6{left:555.943342px;}
.x9a{left:560.443342px;}
.x96{left:581.624976px;}
.x44{left:585.790997px;}
.x4e{left:592.400372px;}
.x31{left:600.644506px;}
.x1c{left:608.748027px;}
.x2b{left:615.498027px;}
.x8b{left:619.435527px;}
.x49{left:622.107402px;}
.x89{left:634.359349px;}
.x3f{left:639.321649px;}
.x4b{left:651.392557px;}
.x40{left:665.196648px;}
.x1d{left:668.162087px;}
.x41{left:671.804890px;}
.x3e{left:674.894503px;}
.x1e{left:679.675753px;}
.x4d{left:681.503878px;}
.x42{left:697.679892px;}
.x43{left:704.288131px;}
.x7{left:705.445283px;}
.x4a{left:711.210908px;}
.x2e{left:723.298301px;}
.x50{left:730.160126px;}
.x55{left:742.236303px;}
.x2f{left:749.173300px;}
.x30{left:755.781550px;}
.x1f{left:768.779270px;}
.x20{left:780.292936px;}
.x32{left:792.870492px;}
.x33{left:818.745491px;}
.x34{left:825.353741px;}
.x35{left:851.228740px;}
.x36{left:857.836978px;}
.x37{left:883.711977px;}
.x38{left:890.320215px;}
.x12{left:912.568327px;}
.x21{left:913.956993px;}
.x4c{left:922.517545px;}
.x22{left:925.470670px;}
.x53{left:929.636680px;}
.x45{left:952.226837px;}
.x46{left:958.835086px;}
.x23{left:970.031210px;}
.x24{left:981.544887px;}
.x47{left:984.710085px;}
.x48{left:991.318324px;}
.x2c{left:1002.786809px;}
.x39{left:1013.256093px;}
.x25{left:1026.105426px;}
.x26{left:1037.619103px;}
.x3a{left:1039.131092px;}
.x3b{left:1045.739341px;}
.x3c{left:1071.614340px;}
.x3d{left:1078.222579px;}
.x27{left:1141.576130px;}
.x19{left:1267.224562px;}
.x28{left:1268.384718px;}
.xb{left:1275.978468px;}
@media print{
.v2{vertical-align:-51.999998pt;}
.v1{vertical-align:-7.500000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004000pt;}
.ls3{letter-spacing:0.017752pt;}
.ls5{letter-spacing:0.017772pt;}
.ls4{letter-spacing:0.017792pt;}
.ls2{letter-spacing:0.023708pt;}
.ws7{word-spacing:-65.999997pt;}
.ws0{word-spacing:-52.359998pt;}
.ws8{word-spacing:-29.044726pt;}
.ws5{word-spacing:-23.495999pt;}
.ws3{word-spacing:-20.943999pt;}
.wsa{word-spacing:-19.775998pt;}
.ws4{word-spacing:-14.660799pt;}
.ws1{word-spacing:-14.097599pt;}
.wsc{word-spacing:-11.727999pt;}
.ws6{word-spacing:-0.056000pt;}
.ws9{word-spacing:-0.048400pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:17.357354pt;}
.wsd{word-spacing:52.824133pt;}
._13{margin-left:-1589.263294pt;}
._17{margin-left:-1240.744329pt;}
._22{margin-left:-1182.672628pt;}
._1e{margin-left:-1124.547650pt;}
._18{margin-left:-1095.520736pt;}
._d{margin-left:-1008.368745pt;}
._21{margin-left:-979.341790pt;}
._1f{margin-left:-921.252317pt;}
._1d{margin-left:-863.145112pt;}
._1b{margin-left:-805.055659pt;}
._f{margin-left:-746.966206pt;}
._c{margin-left:-717.921480pt;}
._11{margin-left:-659.849779pt;}
._1c{margin-left:-572.697847pt;}
._b{margin-left:-543.653121pt;}
._1a{margin-left:-514.608414pt;}
._14{margin-left:-485.563688pt;}
._10{margin-left:-398.429488pt;}
._15{margin-left:-369.384782pt;}
._16{margin-left:-340.340055pt;}
._12{margin-left:-311.313081pt;}
._20{margin-left:-282.268354pt;}
._19{margin-left:-253.205876pt;}
._23{margin-left:-137.044722pt;}
._e{margin-left:-107.982223pt;}
._0{margin-left:-4.128906pt;}
._8{margin-left:-2.255314pt;}
._6{margin-left:-1.252973pt;}
._7{width:1.514983pt;}
._5{width:68.510186pt;}
._1{width:77.003997pt;}
._26{width:92.123317pt;}
._27{width:102.443866pt;}
._25{width:108.894226pt;}
._28{width:117.377918pt;}
._24{width:120.563579pt;}
._a{width:295.709122pt;}
._3{width:312.943507pt;}
._2{width:369.715985pt;}
._29{width:515.272349pt;}
._4{width:591.388002pt;}
._9{width:747.371779pt;}
.fs8{font-size:43.119997pt;}
.fse{font-size:48.400000pt;}
.fsb{font-size:51.319997pt;}
.fs3{font-size:52.799997pt;}
.fs5{font-size:55.999998pt;}
.fs10{font-size:58.639997pt;}
.fs4{font-size:61.599996pt;}
.fsa{font-size:64.519994pt;}
.fs11{font-size:73.319997pt;}
.fsd{font-size:80.639997pt;}
.fs2{font-size:87.999996pt;}
.fs7{font-size:90.708320pt;}
.fs9{font-size:94.079996pt;}
.fsf{font-size:98.879992pt;}
.fs1{font-size:105.599996pt;}
.fsc{font-size:112.279995pt;}
.fs6{font-size:140.799998pt;}
.fs0{font-size:219.999991pt;}
.y87{bottom:-10.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:0.560005pt;}
.y1{bottom:1.560005pt;}
.y3d{bottom:3.200000pt;}
.y67{bottom:10.000000pt;}
.y5a{bottom:11.000000pt;}
.y86{bottom:11.999999pt;}
.y3f{bottom:13.999999pt;}
.y65{bottom:15.999999pt;}
.y77{bottom:24.999999pt;}
.y59{bottom:25.999999pt;}
.y8d{bottom:26.999999pt;}
.y64{bottom:29.999999pt;}
.y85{bottom:33.999999pt;}
.y58{bottom:40.999998pt;}
.y63{bottom:44.999998pt;}
.y57{bottom:55.999998pt;}
.y62{bottom:58.999998pt;}
.y56{bottom:70.999997pt;}
.y61{bottom:73.999997pt;}
.y84{bottom:77.999997pt;}
.y55{bottom:85.999996pt;}
.y60{bottom:87.999996pt;}
.y1c{bottom:97.999996pt;}
.y54{bottom:100.999996pt;}
.y5f{bottom:102.999996pt;}
.y78{bottom:105.560001pt;}
.y83{bottom:114.999995pt;}
.y35{bottom:115.560001pt;}
.y53{bottom:115.999995pt;}
.y6e{bottom:116.999995pt;}
.y5e{bottom:117.999995pt;}
.y3a{bottom:125.999995pt;}
.y39{bottom:127.874995pt;}
.y8{bottom:129.515615pt;}
.y52{bottom:130.999995pt;}
.y5d{bottom:131.999995pt;}
.y3c{bottom:135.360000pt;}
.y6d{bottom:145.999994pt;}
.y51{bottom:146.999994pt;}
.y5c{bottom:160.999993pt;}
.y4f{bottom:166.999993pt;}
.y88{bottom:173.999993pt;}
.y6c{bottom:174.999993pt;}
.y76{bottom:176.999993pt;}
.y8a{bottom:188.999992pt;}
.y6b{bottom:189.999992pt;}
.y75{bottom:191.999992pt;}
.y4e{bottom:198.999992pt;}
.y6a{bottom:203.999992pt;}
.y38{bottom:205.999991pt;}
.y74{bottom:206.999991pt;}
.y69{bottom:218.999991pt;}
.y73{bottom:221.999991pt;}
.y37{bottom:230.999990pt;}
.y72{bottom:236.999990pt;}
.y5b{bottom:243.559995pt;}
.y68{bottom:244.559995pt;}
.y89{bottom:244.999990pt;}
.y71{bottom:251.999990pt;}
.y2f{bottom:254.999989pt;}
.y82{bottom:256.559995pt;}
.y70{bottom:266.999989pt;}
.y36{bottom:275.999989pt;}
.y7{bottom:287.999988pt;}
.y2e{bottom:292.999988pt;}
.y18{bottom:312.999987pt;}
.y2d{bottom:320.999987pt;}
.ya{bottom:325.999986pt;}
.y3b{bottom:334.999986pt;}
.y16{bottom:341.999986pt;}
.y41{bottom:343.999986pt;}
.y9{bottom:349.999985pt;}
.y46{bottom:353.999985pt;}
.y6f{bottom:355.559991pt;}
.y2c{bottom:358.999985pt;}
.y81{bottom:365.999985pt;}
.y1f{bottom:370.999985pt;}
.y6{bottom:372.999984pt;}
.yd{bottom:373.999984pt;}
.y45{bottom:382.999984pt;}
.yb{bottom:383.999984pt;}
.y15{bottom:390.999984pt;}
.y80{bottom:394.999984pt;}
.y2b{bottom:395.999984pt;}
.y40{bottom:409.999983pt;}
.y28{bottom:415.999983pt;}
.y14{bottom:419.999983pt;}
.y7f{bottom:422.999982pt;}
.y8b{bottom:423.999982pt;}
.y2a{bottom:424.999982pt;}
.y1e{bottom:430.999982pt;}
.y50{bottom:435.559987pt;}
.y44{bottom:448.999981pt;}
.y5{bottom:449.999981pt;}
.y8c{bottom:450.559987pt;}
.y7e{bottom:451.999981pt;}
.y27{bottom:452.999981pt;}
.y17{bottom:459.999981pt;}
.y29{bottom:461.999981pt;}
.y1d{bottom:468.999980pt;}
.y43{bottom:485.999980pt;}
.y7d{bottom:488.999980pt;}
.y26{bottom:490.999980pt;}
.y66{bottom:494.559985pt;}
.y13{bottom:496.999979pt;}
.y34{bottom:499.999979pt;}
.y3e{bottom:500.559985pt;}
.y22{bottom:505.999979pt;}
.y4{bottom:507.999979pt;}
.y42{bottom:514.999979pt;}
.y7c{bottom:517.999978pt;}
.y25{bottom:527.999978pt;}
.y12{bottom:534.999978pt;}
.y33{bottom:537.999978pt;}
.y21{bottom:542.999977pt;}
.y7b{bottom:554.999977pt;}
.y1b{bottom:562.999977pt;}
.y11{bottom:571.999976pt;}
.y3{bottom:573.999976pt;}
.y32{bottom:574.999976pt;}
.y24{bottom:577.999976pt;}
.y20{bottom:580.999976pt;}
.y7a{bottom:583.999976pt;}
.y1a{bottom:605.999975pt;}
.y10{bottom:608.999975pt;}
.y31{bottom:612.999974pt;}
.y4d{bottom:617.999974pt;}
.y79{bottom:620.999974pt;}
.y23{bottom:629.999974pt;}
.y4a{bottom:630.999974pt;}
.y19{bottom:631.999974pt;}
.y2{bottom:639.999973pt;}
.y4c{bottom:646.999973pt;}
.y30{bottom:649.999973pt;}
.yf{bottom:658.999973pt;}
.y49{bottom:659.999972pt;}
.ye{bottom:700.999971pt;}
.y48{bottom:701.999971pt;}
.yc{bottom:743.999969pt;}
.y4b{bottom:744.999969pt;}
.h14{height:32.943678pt;}
.h25{height:34.125781pt;}
.h2e{height:35.999998pt;}
.h28{height:37.410742pt;}
.h1a{height:39.909373pt;}
.ha{height:40.167967pt;}
.h1f{height:40.999998pt;}
.h2d{height:42.455358pt;}
.h1b{height:48.753998pt;}
.h19{height:48.799546pt;}
.h8{height:49.737597pt;}
.h30{height:50.239998pt;}
.h2f{height:53.083678pt;}
.h9{height:58.027196pt;}
.h12{height:58.335196pt;}
.h13{height:58.519996pt;}
.h1d{height:60.479997pt;}
.h1e{height:61.293994pt;}
.h6{height:65.559997pt;}
.hf{height:67.231997pt;}
.h10{height:69.301156pt;}
.h2c{height:71.490234pt;}
.h20{height:76.607997pt;}
.h16{height:76.999997pt;}
.h4{height:80.678397pt;}
.h7{height:82.895997pt;}
.h5{height:83.335997pt;}
.h15{height:83.599997pt;}
.h11{height:85.900779pt;}
.h18{height:89.375996pt;}
.h1c{height:106.665996pt;}
.h27{height:132.999994pt;}
.he{height:133.337598pt;}
.hd{height:133.759998pt;}
.h24{height:163.999993pt;}
.hb{height:172.479993pt;}
.h26{height:183.999992pt;}
.h3{height:208.339991pt;}
.h21{height:208.999991pt;}
.h29{height:241.999990pt;}
.h2a{height:283.999988pt;}
.h2b{height:399.999983pt;}
.h17{height:499.999979pt;}
.hc{height:733.999969pt;}
.h22{height:734.999969pt;}
.h2{height:768.999968pt;}
.h23{height:769.999968pt;}
.h0{height:770.559973pt;}
.h1{height:770.666667pt;}
.w5{width:81.999997pt;}
.wc{width:83.999997pt;}
.w6{width:353.999985pt;}
.w7{width:355.999985pt;}
.wb{width:557.999977pt;}
.w8{width:669.999972pt;}
.w9{width:672.000010pt;}
.w4{width:833.279965pt;}
.w3{width:929.999961pt;}
.wd{width:1046.079956pt;}
.wa{width:1047.999956pt;}
.w2{width:1049.999956pt;}
.w0{width:1154.559973pt;}
.w1{width:1154.666667pt;}
.x0{left:0.000000pt;}
.x54{left:11.187500pt;}
.x8e{left:12.093788pt;}
.x13{left:14.890624pt;}
.x10{left:18.156249pt;}
.x8c{left:19.749999pt;}
.xe{left:21.499999pt;}
.x18{left:22.499999pt;}
.x88{left:26.687499pt;}
.x86{left:32.874999pt;}
.xd{left:34.499999pt;}
.x11{left:40.156248pt;}
.x29{left:44.499998pt;}
.x98{left:46.624998pt;}
.x58{left:48.374998pt;}
.x99{left:49.374998pt;}
.xc{left:52.499998pt;}
.x85{left:54.432020pt;}
.x57{left:55.999998pt;}
.xf{left:61.499997pt;}
.x70{left:63.821210pt;}
.x59{left:65.083829pt;}
.x71{left:70.632611pt;}
.x14{left:75.124997pt;}
.x60{left:86.562496pt;}
.x5a{left:95.223827pt;}
.x72{left:100.852932pt;}
.x8f{left:106.328121pt;}
.x5b{left:108.223201pt;}
.x73{left:116.915919pt;}
.x4f{left:125.187495pt;}
.x2{left:126.328120pt;}
.x15{left:127.937495pt;}
.x5c{left:129.949778pt;}
.x84{left:131.999995pt;}
.x16{left:138.171874pt;}
.x1b{left:140.312494pt;}
.x90{left:146.312494pt;}
.x5d{left:152.239084pt;}
.x1a{left:153.499994pt;}
.x5e{left:165.697839pt;}
.x74{left:169.462899pt;}
.x5f{left:179.719323pt;}
.x75{left:186.197487pt;}
.x1{left:192.218742pt;}
.x94{left:193.999992pt;}
.x97{left:199.796872pt;}
.x95{left:201.945701pt;}
.x5{left:208.140621pt;}
.x9{left:250.859370pt;}
.x8{left:251.812490pt;}
.x17{left:256.984369pt;}
.x56{left:270.218739pt;}
.x92{left:279.999988pt;}
.x76{left:284.561238pt;}
.x77{left:296.496479pt;}
.x78{left:322.520251pt;}
.x79{left:331.887927pt;}
.x61{left:337.859366pt;}
.x62{left:341.405142pt;}
.x91{left:346.421866pt;}
.x63{left:348.221060pt;}
.x64{left:355.488027pt;}
.x7a{left:357.317064pt;}
.x65{left:361.852865pt;}
.x66{left:365.398641pt;}
.x7b{left:372.618501pt;}
.x7c{left:376.449372pt;}
.x8a{left:377.999984pt;}
.x67{left:379.475255pt;}
.x87{left:380.859364pt;}
.x68{left:383.021031pt;}
.x69{left:397.855671pt;}
.x7d{left:398.767502pt;}
.xa{left:406.953113pt;}
.x4{left:414.843733pt;}
.x6a{left:417.395053pt;}
.x7e{left:418.632262pt;}
.x6b{left:420.940829pt;}
.x7f{left:427.440749pt;}
.x2a{left:430.499982pt;}
.x8d{left:431.999982pt;}
.x2d{left:441.499982pt;}
.x80{left:445.994947pt;}
.x3{left:447.499981pt;}
.x6c{left:450.904558pt;}
.x81{left:454.803434pt;}
.x6d{left:458.390794pt;}
.x82{left:464.171109pt;}
.x6e{left:465.814378pt;}
.x51{left:469.952057pt;}
.x6f{left:473.632630pt;}
.x52{left:475.828110pt;}
.x83{left:479.630063pt;}
.x93{left:486.999980pt;}
.x6{left:494.171859pt;}
.x9a{left:498.171859pt;}
.x96{left:516.999978pt;}
.x44{left:520.703108pt;}
.x4e{left:526.578108pt;}
.x31{left:533.906228pt;}
.x1c{left:541.109357pt;}
.x2b{left:547.109357pt;}
.x8b{left:550.609357pt;}
.x49{left:552.984357pt;}
.x89{left:563.874977pt;}
.x3f{left:568.285910pt;}
.x4b{left:579.015606pt;}
.x40{left:591.285909pt;}
.x1d{left:593.921855pt;}
.x41{left:597.159902pt;}
.x3e{left:599.906225pt;}
.x1e{left:604.156225pt;}
.x4d{left:605.781225pt;}
.x42{left:620.159904pt;}
.x43{left:626.033894pt;}
.x7{left:627.062474pt;}
.x4a{left:632.187474pt;}
.x2e{left:642.931823pt;}
.x50{left:649.031223pt;}
.x55{left:659.765603pt;}
.x2f{left:665.931822pt;}
.x30{left:671.805822pt;}
.x1f{left:683.359352pt;}
.x20{left:693.593721pt;}
.x32{left:704.773771pt;}
.x33{left:727.773770pt;}
.x34{left:733.647769pt;}
.x35{left:756.647768pt;}
.x36{left:762.521758pt;}
.x37{left:785.521757pt;}
.x38{left:791.395747pt;}
.x12{left:811.171846pt;}
.x21{left:812.406216pt;}
.x4c{left:820.015596pt;}
.x22{left:822.640596pt;}
.x53{left:826.343716pt;}
.x45{left:846.423855pt;}
.x46{left:852.297854pt;}
.x23{left:862.249964pt;}
.x24{left:872.484344pt;}
.x47{left:875.297854pt;}
.x48{left:881.171843pt;}
.x2c{left:891.366053pt;}
.x39{left:900.672082pt;}
.x25{left:912.093712pt;}
.x26{left:922.328092pt;}
.x3a{left:923.672082pt;}
.x3b{left:929.546081pt;}
.x3c{left:952.546080pt;}
.x3d{left:958.420070pt;}
.x27{left:1014.734338pt;}
.x19{left:1126.421833pt;}
.x28{left:1127.453083pt;}
.xb{left:1134.203083pt;}
}




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