
    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_9aee2ceb9ab96b76751f40d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;font-style:normal;font-weight: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_97ecb002718e124dc72e2578.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995000;font-style:normal;font-weight: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_93d4078c2c16c987470fbf6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990200;font-style:normal;font-weight: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_56bf0e7d9aac4728edf9882e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;font-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;}
.ls26{letter-spacing:-0.967500px;}
.ls28{letter-spacing:-0.903000px;}
.ls2c{letter-spacing:-0.645000px;}
.ls27{letter-spacing:-0.580500px;}
.ls2d{letter-spacing:-0.516000px;}
.ls22{letter-spacing:-0.322500px;}
.ls24{letter-spacing:-0.258000px;}
.ls25{letter-spacing:-0.193500px;}
.ls23{letter-spacing:-0.129000px;}
.ls15{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.064500px;}
.lsb{letter-spacing:0.129000px;}
.ls1b{letter-spacing:0.161250px;}
.lsd{letter-spacing:0.193500px;}
.ls1f{letter-spacing:0.225750px;}
.ls6{letter-spacing:0.258000px;}
.lsf{letter-spacing:0.322500px;}
.lsc{letter-spacing:0.387000px;}
.ls17{letter-spacing:0.451500px;}
.ls1a{letter-spacing:0.580500px;}
.lse{letter-spacing:0.645000px;}
.ls11{letter-spacing:0.709500px;}
.ls1{letter-spacing:0.735000px;}
.ls9{letter-spacing:0.774000px;}
.ls1d{letter-spacing:0.838500px;}
.lsa{letter-spacing:0.903000px;}
.ls10{letter-spacing:0.935250px;}
.ls12{letter-spacing:0.967500px;}
.ls8{letter-spacing:1.032000px;}
.ls5{letter-spacing:1.096500px;}
.ls1e{letter-spacing:1.161000px;}
.ls14{letter-spacing:1.225500px;}
.ls13{letter-spacing:1.290000px;}
.ls16{letter-spacing:1.354500px;}
.ls20{letter-spacing:1.419000px;}
.ls29{letter-spacing:1.515750px;}
.ls21{letter-spacing:1.677000px;}
.ls2b{letter-spacing:1.709250px;}
.ls2e{letter-spacing:1.741500px;}
.ls1c{letter-spacing:1.806000px;}
.ls19{letter-spacing:2.193000px;}
.ls4{letter-spacing:2.580000px;}
.ls3{letter-spacing:2.644500px;}
.ls2a{letter-spacing:3.483000px;}
.ls18{letter-spacing:887.441400px;}
.ls2{letter-spacing:891.940800px;}
.ls0{letter-spacing:993.190800px;}
.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;}
}
.ws4f{word-spacing:-17.640750px;}
.ws33{word-spacing:-17.625000px;}
.ws55{word-spacing:-3.483000px;}
.ws3{word-spacing:-2.644500px;}
.ws11{word-spacing:-0.774000px;}
.ws1{word-spacing:-0.367500px;}
.ws5{word-spacing:-0.258000px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.129000px;}
.ws17{word-spacing:0.193500px;}
.ws50{word-spacing:0.258000px;}
.ws48{word-spacing:0.387000px;}
.ws51{word-spacing:0.645000px;}
.ws3e{word-spacing:0.709500px;}
.ws26{word-spacing:0.903000px;}
.ws44{word-spacing:0.967500px;}
.ws43{word-spacing:1.032000px;}
.ws25{word-spacing:1.096500px;}
.ws15{word-spacing:1.161000px;}
.wsb{word-spacing:1.419000px;}
.ws4d{word-spacing:1.612500px;}
.ws1f{word-spacing:1.677000px;}
.ws46{word-spacing:1.870500px;}
.ws19{word-spacing:1.935000px;}
.ws2d{word-spacing:1.999500px;}
.ws14{word-spacing:2.064000px;}
.wsf{word-spacing:2.193000px;}
.ws16{word-spacing:2.322000px;}
.ws4e{word-spacing:2.386500px;}
.ws3d{word-spacing:2.451000px;}
.ws4a{word-spacing:2.515500px;}
.ws1d{word-spacing:2.580000px;}
.ws4b{word-spacing:2.709000px;}
.ws23{word-spacing:2.967000px;}
.ws27{word-spacing:3.031500px;}
.ws30{word-spacing:3.160500px;}
.ws1c{word-spacing:3.225000px;}
.ws31{word-spacing:3.289500px;}
.ws28{word-spacing:3.354000px;}
.ws21{word-spacing:3.418500px;}
.ws32{word-spacing:3.483000px;}
.ws7{word-spacing:3.547500px;}
.ws4c{word-spacing:3.741000px;}
.ws8{word-spacing:3.934500px;}
.ws2c{word-spacing:4.063500px;}
.ws47{word-spacing:4.128000px;}
.ws49{word-spacing:4.192500px;}
.ws52{word-spacing:4.257000px;}
.ws2a{word-spacing:4.321500px;}
.ws12{word-spacing:4.515000px;}
.ws2e{word-spacing:4.644000px;}
.ws37{word-spacing:4.708500px;}
.ws18{word-spacing:4.773000px;}
.ws10{word-spacing:5.095500px;}
.ws13{word-spacing:5.160000px;}
.ws3b{word-spacing:5.224500px;}
.ws57{word-spacing:5.289000px;}
.wsa{word-spacing:5.353500px;}
.ws29{word-spacing:5.547000px;}
.ws3c{word-spacing:5.611500px;}
.ws20{word-spacing:5.676000px;}
.ws41{word-spacing:5.740500px;}
.ws3f{word-spacing:5.934000px;}
.ws24{word-spacing:6.063000px;}
.ws22{word-spacing:6.127500px;}
.ws39{word-spacing:6.321000px;}
.ws38{word-spacing:6.385500px;}
.ws40{word-spacing:6.450000px;}
.wsc{word-spacing:6.514500px;}
.wsd{word-spacing:6.643500px;}
.ws42{word-spacing:6.772500px;}
.wse{word-spacing:6.901500px;}
.ws1a{word-spacing:6.966000px;}
.ws1e{word-spacing:7.095000px;}
.ws2b{word-spacing:7.159500px;}
.ws3a{word-spacing:7.224000px;}
.ws35{word-spacing:7.288500px;}
.ws9{word-spacing:7.353000px;}
.ws36{word-spacing:7.417500px;}
.ws54{word-spacing:7.482000px;}
.ws45{word-spacing:7.546500px;}
.ws34{word-spacing:7.611000px;}
.ws53{word-spacing:7.675500px;}
.ws1b{word-spacing:7.740000px;}
.ws6{word-spacing:8.062500px;}
.ws4{word-spacing:8.578500px;}
.ws2{word-spacing:8.707500px;}
.ws56{word-spacing:11.674500px;}
._3{margin-left:-2.644500px;}
._5{margin-left:-1.096500px;}
._4{width:3.560400px;}
._6{width:5.134200px;}
._2{width:11.158500px;}
._1{width:15.351000px;}
._0{width:1430.448000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.000000px;}
.fs1{font-size:52.500000px;}
.fs4{font-size:64.500000px;}
.fs0{font-size:69.000000px;}
.fs3{font-size:70.500000px;}
.y0{bottom:0.000000px;}
.y2{bottom:76.586100px;}
.yc3{bottom:131.774325px;}
.y93{bottom:131.887200px;}
.y32{bottom:134.983200px;}
.y63{bottom:135.160575px;}
.y92{bottom:149.544075px;}
.yc2{bottom:149.624700px;}
.y31{bottom:152.575575px;}
.y62{bottom:152.752950px;}
.y91{bottom:167.200950px;}
.yc1{bottom:167.475075px;}
.y30{bottom:170.167950px;}
.y61{bottom:170.345325px;}
.y90{bottom:184.857825px;}
.yc0{bottom:185.325450px;}
.y2f{bottom:187.760325px;}
.y60{bottom:187.937700px;}
.y8f{bottom:202.514700px;}
.ybf{bottom:203.175825px;}
.y2e{bottom:205.352700px;}
.y5f{bottom:205.530075px;}
.y8e{bottom:220.171575px;}
.ybe{bottom:221.026200px;}
.y2d{bottom:222.945075px;}
.y5e{bottom:223.122450px;}
.y8d{bottom:237.828450px;}
.ybd{bottom:238.876575px;}
.y2c{bottom:240.537450px;}
.y5d{bottom:240.714825px;}
.y8c{bottom:255.485325px;}
.ybc{bottom:256.726950px;}
.y2b{bottom:258.129825px;}
.y5c{bottom:258.307200px;}
.y8b{bottom:273.142200px;}
.ybb{bottom:274.577325px;}
.y5b{bottom:275.899575px;}
.y2a{bottom:284.526450px;}
.y8a{bottom:290.799075px;}
.yba{bottom:292.427700px;}
.y5a{bottom:293.491950px;}
.y29{bottom:302.118825px;}
.y89{bottom:308.455950px;}
.yb9{bottom:310.278075px;}
.y59{bottom:311.084325px;}
.y28{bottom:319.711200px;}
.y88{bottom:326.112825px;}
.yb8{bottom:328.128450px;}
.y58{bottom:328.676700px;}
.y27{bottom:337.303575px;}
.y87{bottom:343.769700px;}
.yb7{bottom:345.978825px;}
.y57{bottom:346.269075px;}
.y86{bottom:361.426575px;}
.y26{bottom:363.700200px;}
.yb6{bottom:363.829200px;}
.y56{bottom:363.861450px;}
.y85{bottom:379.083450px;}
.y25{bottom:381.292575px;}
.y55{bottom:381.453825px;}
.yb5{bottom:390.467700px;}
.y84{bottom:396.740325px;}
.y24{bottom:398.884950px;}
.y54{bottom:399.046200px;}
.yb4{bottom:408.318075px;}
.y83{bottom:414.397200px;}
.y23{bottom:416.477325px;}
.y53{bottom:416.638575px;}
.yb3{bottom:426.168450px;}
.y82{bottom:432.054075px;}
.y22{bottom:434.069700px;}
.y52{bottom:434.230950px;}
.yb2{bottom:444.018825px;}
.y81{bottom:449.710950px;}
.y21{bottom:451.662075px;}
.y51{bottom:451.823325px;}
.yb1{bottom:461.869200px;}
.y80{bottom:467.367825px;}
.y20{bottom:469.254450px;}
.y50{bottom:469.415700px;}
.yb0{bottom:479.719575px;}
.y1f{bottom:486.846825px;}
.y4f{bottom:487.008075px;}
.y7f{bottom:493.828950px;}
.yaf{bottom:497.569950px;}
.y1e{bottom:504.439200px;}
.y7e{bottom:511.485825px;}
.y4e{bottom:513.404700px;}
.yae{bottom:515.420325px;}
.y1d{bottom:522.031575px;}
.y7d{bottom:529.142700px;}
.y4d{bottom:530.997075px;}
.yad{bottom:533.270700px;}
.y1c{bottom:539.623950px;}
.y7c{bottom:546.799575px;}
.y4c{bottom:548.589450px;}
.yac{bottom:551.121075px;}
.y1b{bottom:557.216325px;}
.y7b{bottom:564.456450px;}
.y4b{bottom:566.181825px;}
.yab{bottom:568.971450px;}
.y1a{bottom:574.808700px;}
.y7a{bottom:582.113325px;}
.yd2{bottom:583.596825px;}
.y4a{bottom:583.774200px;}
.ye8{bottom:586.133475px;}
.yaa{bottom:586.821825px;}
.y19{bottom:592.401075px;}
.y79{bottom:599.770200px;}
.yd1{bottom:601.189200px;}
.y49{bottom:601.366575px;}
.ye7{bottom:603.725850px;}
.ya9{bottom:604.672200px;}
.y18{bottom:609.993450px;}
.y78{bottom:617.427075px;}
.yd0{bottom:618.781575px;}
.y48{bottom:618.958950px;}
.ye6{bottom:621.318225px;}
.ya8{bottom:622.522575px;}
.y17{bottom:627.585825px;}
.y77{bottom:635.083950px;}
.ycf{bottom:636.373950px;}
.y47{bottom:636.551325px;}
.ye5{bottom:638.910600px;}
.ya7{bottom:640.372950px;}
.y16{bottom:645.178200px;}
.y76{bottom:652.740825px;}
.yce{bottom:653.966325px;}
.y46{bottom:654.143700px;}
.ye4{bottom:656.502975px;}
.y15{bottom:662.770575px;}
.ya6{bottom:667.011450px;}
.y75{bottom:670.397700px;}
.ycd{bottom:671.558700px;}
.y45{bottom:671.736075px;}
.y14{bottom:680.362950px;}
.ya5{bottom:684.861825px;}
.y74{bottom:688.054575px;}
.ycc{bottom:689.151075px;}
.y44{bottom:689.328450px;}
.ye3{bottom:695.364225px;}
.y13{bottom:697.955325px;}
.ya4{bottom:702.712200px;}
.y73{bottom:705.711450px;}
.ycb{bottom:706.743450px;}
.y43{bottom:706.920825px;}
.ye2{bottom:712.956600px;}
.y12{bottom:715.547700px;}
.ya3{bottom:720.562575px;}
.y72{bottom:723.368325px;}
.yca{bottom:724.335825px;}
.y42{bottom:724.513200px;}
.ye1{bottom:730.548975px;}
.y11{bottom:733.140075px;}
.ya2{bottom:738.412950px;}
.y71{bottom:741.025200px;}
.yc9{bottom:741.928200px;}
.y41{bottom:742.105575px;}
.ye0{bottom:748.141350px;}
.y10{bottom:750.732450px;}
.ya1{bottom:756.263325px;}
.y70{bottom:758.682075px;}
.yc8{bottom:759.520575px;}
.y40{bottom:759.697950px;}
.ydf{bottom:765.733725px;}
.yf{bottom:768.324825px;}
.ya0{bottom:774.113700px;}
.y6f{bottom:776.338950px;}
.yc7{bottom:777.112950px;}
.y3f{bottom:777.290325px;}
.yde{bottom:783.326100px;}
.ye{bottom:785.917200px;}
.y9f{bottom:791.964075px;}
.y6e{bottom:793.995825px;}
.yc6{bottom:794.705325px;}
.y3e{bottom:794.882700px;}
.ydd{bottom:800.918475px;}
.yd{bottom:803.509575px;}
.y9e{bottom:809.814450px;}
.y6d{bottom:811.652700px;}
.yc5{bottom:812.297700px;}
.y3d{bottom:812.475075px;}
.ydc{bottom:818.510850px;}
.yc{bottom:821.101950px;}
.y9d{bottom:827.664825px;}
.y6c{bottom:829.309575px;}
.y3c{bottom:830.067450px;}
.ydb{bottom:836.103225px;}
.yb{bottom:838.694325px;}
.y9c{bottom:845.515200px;}
.y6b{bottom:846.966450px;}
.y3b{bottom:847.659825px;}
.yda{bottom:853.695600px;}
.ya{bottom:856.286700px;}
.y9b{bottom:863.365575px;}
.y6a{bottom:864.623325px;}
.yd9{bottom:871.287975px;}
.y9{bottom:873.879075px;}
.y3a{bottom:874.056450px;}
.y9a{bottom:881.215950px;}
.y69{bottom:882.280200px;}
.yd8{bottom:888.880350px;}
.y8{bottom:891.471450px;}
.y39{bottom:891.648825px;}
.y99{bottom:899.066325px;}
.y68{bottom:899.937075px;}
.yd7{bottom:906.472725px;}
.yc4{bottom:909.063825px;}
.y38{bottom:909.241200px;}
.y98{bottom:916.916700px;}
.y67{bottom:917.593950px;}
.yd6{bottom:924.065100px;}
.y7{bottom:926.656200px;}
.y37{bottom:926.833575px;}
.y97{bottom:934.767075px;}
.y66{bottom:935.250825px;}
.yd5{bottom:941.657475px;}
.y6{bottom:944.248575px;}
.y36{bottom:944.425950px;}
.y65{bottom:952.907700px;}
.yd4{bottom:959.249850px;}
.y96{bottom:961.405575px;}
.y5{bottom:961.840950px;}
.y35{bottom:962.018325px;}
.y95{bottom:979.255950px;}
.y64{bottom:979.368825px;}
.y4{bottom:979.433325px;}
.y34{bottom:979.610700px;}
.yd3{bottom:996.031200px;}
.y3{bottom:997.025700px;}
.y94{bottom:997.106325px;}
.y33{bottom:997.203075px;}
.y1{bottom:1028.954250px;}
.h3{height:44.013000px;}
.h5{height:53.922000px;}
.h4{height:55.663500px;}
.h2{height:60.841500px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x5{left:85.039350px;}
.x1{left:93.883500px;}
.x6{left:106.292100px;}
.x2{left:115.152375px;}
.x7{left:439.966725px;}
.x3{left:448.827000px;}
.x8{left:461.219475px;}
.x4{left:470.079750px;}
.x9{left:472.185000px;}
.xd{left:491.776875px;}
.xb{left:574.095000px;}
.xc{left:592.074375px;}
.xa{left:654.010500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-0.860000pt;}
.ls28{letter-spacing:-0.802667pt;}
.ls2c{letter-spacing:-0.573333pt;}
.ls27{letter-spacing:-0.516000pt;}
.ls2d{letter-spacing:-0.458667pt;}
.ls22{letter-spacing:-0.286667pt;}
.ls24{letter-spacing:-0.229333pt;}
.ls25{letter-spacing:-0.172000pt;}
.ls23{letter-spacing:-0.114667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.057333pt;}
.lsb{letter-spacing:0.114667pt;}
.ls1b{letter-spacing:0.143333pt;}
.lsd{letter-spacing:0.172000pt;}
.ls1f{letter-spacing:0.200667pt;}
.ls6{letter-spacing:0.229333pt;}
.lsf{letter-spacing:0.286667pt;}
.lsc{letter-spacing:0.344000pt;}
.ls17{letter-spacing:0.401333pt;}
.ls1a{letter-spacing:0.516000pt;}
.lse{letter-spacing:0.573333pt;}
.ls11{letter-spacing:0.630667pt;}
.ls1{letter-spacing:0.653333pt;}
.ls9{letter-spacing:0.688000pt;}
.ls1d{letter-spacing:0.745333pt;}
.lsa{letter-spacing:0.802667pt;}
.ls10{letter-spacing:0.831333pt;}
.ls12{letter-spacing:0.860000pt;}
.ls8{letter-spacing:0.917333pt;}
.ls5{letter-spacing:0.974667pt;}
.ls1e{letter-spacing:1.032000pt;}
.ls14{letter-spacing:1.089333pt;}
.ls13{letter-spacing:1.146667pt;}
.ls16{letter-spacing:1.204000pt;}
.ls20{letter-spacing:1.261333pt;}
.ls29{letter-spacing:1.347333pt;}
.ls21{letter-spacing:1.490667pt;}
.ls2b{letter-spacing:1.519333pt;}
.ls2e{letter-spacing:1.548000pt;}
.ls1c{letter-spacing:1.605333pt;}
.ls19{letter-spacing:1.949333pt;}
.ls4{letter-spacing:2.293333pt;}
.ls3{letter-spacing:2.350667pt;}
.ls2a{letter-spacing:3.096000pt;}
.ls18{letter-spacing:788.836800pt;}
.ls2{letter-spacing:792.836267pt;}
.ls0{letter-spacing:882.836267pt;}
.ws4f{word-spacing:-15.680667pt;}
.ws33{word-spacing:-15.666667pt;}
.ws55{word-spacing:-3.096000pt;}
.ws3{word-spacing:-2.350667pt;}
.ws11{word-spacing:-0.688000pt;}
.ws1{word-spacing:-0.326667pt;}
.ws5{word-spacing:-0.229333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.114667pt;}
.ws17{word-spacing:0.172000pt;}
.ws50{word-spacing:0.229333pt;}
.ws48{word-spacing:0.344000pt;}
.ws51{word-spacing:0.573333pt;}
.ws3e{word-spacing:0.630667pt;}
.ws26{word-spacing:0.802667pt;}
.ws44{word-spacing:0.860000pt;}
.ws43{word-spacing:0.917333pt;}
.ws25{word-spacing:0.974667pt;}
.ws15{word-spacing:1.032000pt;}
.wsb{word-spacing:1.261333pt;}
.ws4d{word-spacing:1.433333pt;}
.ws1f{word-spacing:1.490667pt;}
.ws46{word-spacing:1.662667pt;}
.ws19{word-spacing:1.720000pt;}
.ws2d{word-spacing:1.777333pt;}
.ws14{word-spacing:1.834667pt;}
.wsf{word-spacing:1.949333pt;}
.ws16{word-spacing:2.064000pt;}
.ws4e{word-spacing:2.121333pt;}
.ws3d{word-spacing:2.178667pt;}
.ws4a{word-spacing:2.236000pt;}
.ws1d{word-spacing:2.293333pt;}
.ws4b{word-spacing:2.408000pt;}
.ws23{word-spacing:2.637333pt;}
.ws27{word-spacing:2.694667pt;}
.ws30{word-spacing:2.809333pt;}
.ws1c{word-spacing:2.866667pt;}
.ws31{word-spacing:2.924000pt;}
.ws28{word-spacing:2.981333pt;}
.ws21{word-spacing:3.038667pt;}
.ws32{word-spacing:3.096000pt;}
.ws7{word-spacing:3.153333pt;}
.ws4c{word-spacing:3.325333pt;}
.ws8{word-spacing:3.497333pt;}
.ws2c{word-spacing:3.612000pt;}
.ws47{word-spacing:3.669333pt;}
.ws49{word-spacing:3.726667pt;}
.ws52{word-spacing:3.784000pt;}
.ws2a{word-spacing:3.841333pt;}
.ws12{word-spacing:4.013333pt;}
.ws2e{word-spacing:4.128000pt;}
.ws37{word-spacing:4.185333pt;}
.ws18{word-spacing:4.242667pt;}
.ws10{word-spacing:4.529333pt;}
.ws13{word-spacing:4.586667pt;}
.ws3b{word-spacing:4.644000pt;}
.ws57{word-spacing:4.701333pt;}
.wsa{word-spacing:4.758667pt;}
.ws29{word-spacing:4.930667pt;}
.ws3c{word-spacing:4.988000pt;}
.ws20{word-spacing:5.045333pt;}
.ws41{word-spacing:5.102667pt;}
.ws3f{word-spacing:5.274667pt;}
.ws24{word-spacing:5.389333pt;}
.ws22{word-spacing:5.446667pt;}
.ws39{word-spacing:5.618667pt;}
.ws38{word-spacing:5.676000pt;}
.ws40{word-spacing:5.733333pt;}
.wsc{word-spacing:5.790667pt;}
.wsd{word-spacing:5.905333pt;}
.ws42{word-spacing:6.020000pt;}
.wse{word-spacing:6.134667pt;}
.ws1a{word-spacing:6.192000pt;}
.ws1e{word-spacing:6.306667pt;}
.ws2b{word-spacing:6.364000pt;}
.ws3a{word-spacing:6.421333pt;}
.ws35{word-spacing:6.478667pt;}
.ws9{word-spacing:6.536000pt;}
.ws36{word-spacing:6.593333pt;}
.ws54{word-spacing:6.650667pt;}
.ws45{word-spacing:6.708000pt;}
.ws34{word-spacing:6.765333pt;}
.ws53{word-spacing:6.822667pt;}
.ws1b{word-spacing:6.880000pt;}
.ws6{word-spacing:7.166667pt;}
.ws4{word-spacing:7.625333pt;}
.ws2{word-spacing:7.740000pt;}
.ws56{word-spacing:10.377333pt;}
._3{margin-left:-2.350667pt;}
._5{margin-left:-0.974667pt;}
._4{width:3.164800pt;}
._6{width:4.563733pt;}
._2{width:9.918667pt;}
._1{width:13.645333pt;}
._0{width:1271.509333pt;}
.fs2{font-size:45.333333pt;}
.fs1{font-size:46.666667pt;}
.fs4{font-size:57.333333pt;}
.fs0{font-size:61.333333pt;}
.fs3{font-size:62.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:68.076533pt;}
.yc3{bottom:117.132733pt;}
.y93{bottom:117.233067pt;}
.y32{bottom:119.985067pt;}
.y63{bottom:120.142733pt;}
.y92{bottom:132.928067pt;}
.yc2{bottom:132.999733pt;}
.y31{bottom:135.622733pt;}
.y62{bottom:135.780400pt;}
.y91{bottom:148.623067pt;}
.yc1{bottom:148.866733pt;}
.y30{bottom:151.260400pt;}
.y61{bottom:151.418067pt;}
.y90{bottom:164.318067pt;}
.yc0{bottom:164.733733pt;}
.y2f{bottom:166.898067pt;}
.y60{bottom:167.055733pt;}
.y8f{bottom:180.013067pt;}
.ybf{bottom:180.600733pt;}
.y2e{bottom:182.535733pt;}
.y5f{bottom:182.693400pt;}
.y8e{bottom:195.708067pt;}
.ybe{bottom:196.467733pt;}
.y2d{bottom:198.173400pt;}
.y5e{bottom:198.331067pt;}
.y8d{bottom:211.403067pt;}
.ybd{bottom:212.334733pt;}
.y2c{bottom:213.811067pt;}
.y5d{bottom:213.968733pt;}
.y8c{bottom:227.098067pt;}
.ybc{bottom:228.201733pt;}
.y2b{bottom:229.448733pt;}
.y5c{bottom:229.606400pt;}
.y8b{bottom:242.793067pt;}
.ybb{bottom:244.068733pt;}
.y5b{bottom:245.244067pt;}
.y2a{bottom:252.912400pt;}
.y8a{bottom:258.488067pt;}
.yba{bottom:259.935733pt;}
.y5a{bottom:260.881733pt;}
.y29{bottom:268.550067pt;}
.y89{bottom:274.183067pt;}
.yb9{bottom:275.802733pt;}
.y59{bottom:276.519400pt;}
.y28{bottom:284.187733pt;}
.y88{bottom:289.878067pt;}
.yb8{bottom:291.669733pt;}
.y58{bottom:292.157067pt;}
.y27{bottom:299.825400pt;}
.y87{bottom:305.573067pt;}
.yb7{bottom:307.536733pt;}
.y57{bottom:307.794733pt;}
.y86{bottom:321.268067pt;}
.y26{bottom:323.289067pt;}
.yb6{bottom:323.403733pt;}
.y56{bottom:323.432400pt;}
.y85{bottom:336.963067pt;}
.y25{bottom:338.926733pt;}
.y55{bottom:339.070067pt;}
.yb5{bottom:347.082400pt;}
.y84{bottom:352.658067pt;}
.y24{bottom:354.564400pt;}
.y54{bottom:354.707733pt;}
.yb4{bottom:362.949400pt;}
.y83{bottom:368.353067pt;}
.y23{bottom:370.202067pt;}
.y53{bottom:370.345400pt;}
.yb3{bottom:378.816400pt;}
.y82{bottom:384.048067pt;}
.y22{bottom:385.839733pt;}
.y52{bottom:385.983067pt;}
.yb2{bottom:394.683400pt;}
.y81{bottom:399.743067pt;}
.y21{bottom:401.477400pt;}
.y51{bottom:401.620733pt;}
.yb1{bottom:410.550400pt;}
.y80{bottom:415.438067pt;}
.y20{bottom:417.115067pt;}
.y50{bottom:417.258400pt;}
.yb0{bottom:426.417400pt;}
.y1f{bottom:432.752733pt;}
.y4f{bottom:432.896067pt;}
.y7f{bottom:438.959067pt;}
.yaf{bottom:442.284400pt;}
.y1e{bottom:448.390400pt;}
.y7e{bottom:454.654067pt;}
.y4e{bottom:456.359733pt;}
.yae{bottom:458.151400pt;}
.y1d{bottom:464.028067pt;}
.y7d{bottom:470.349067pt;}
.y4d{bottom:471.997400pt;}
.yad{bottom:474.018400pt;}
.y1c{bottom:479.665733pt;}
.y7c{bottom:486.044067pt;}
.y4c{bottom:487.635067pt;}
.yac{bottom:489.885400pt;}
.y1b{bottom:495.303400pt;}
.y7b{bottom:501.739067pt;}
.y4b{bottom:503.272733pt;}
.yab{bottom:505.752400pt;}
.y1a{bottom:510.941067pt;}
.y7a{bottom:517.434067pt;}
.yd2{bottom:518.752733pt;}
.y4a{bottom:518.910400pt;}
.ye8{bottom:521.007533pt;}
.yaa{bottom:521.619400pt;}
.y19{bottom:526.578733pt;}
.y79{bottom:533.129067pt;}
.yd1{bottom:534.390400pt;}
.y49{bottom:534.548067pt;}
.ye7{bottom:536.645200pt;}
.ya9{bottom:537.486400pt;}
.y18{bottom:542.216400pt;}
.y78{bottom:548.824067pt;}
.yd0{bottom:550.028067pt;}
.y48{bottom:550.185733pt;}
.ye6{bottom:552.282867pt;}
.ya8{bottom:553.353400pt;}
.y17{bottom:557.854067pt;}
.y77{bottom:564.519067pt;}
.ycf{bottom:565.665733pt;}
.y47{bottom:565.823400pt;}
.ye5{bottom:567.920533pt;}
.ya7{bottom:569.220400pt;}
.y16{bottom:573.491733pt;}
.y76{bottom:580.214067pt;}
.yce{bottom:581.303400pt;}
.y46{bottom:581.461067pt;}
.ye4{bottom:583.558200pt;}
.y15{bottom:589.129400pt;}
.ya6{bottom:592.899067pt;}
.y75{bottom:595.909067pt;}
.ycd{bottom:596.941067pt;}
.y45{bottom:597.098733pt;}
.y14{bottom:604.767067pt;}
.ya5{bottom:608.766067pt;}
.y74{bottom:611.604067pt;}
.ycc{bottom:612.578733pt;}
.y44{bottom:612.736400pt;}
.ye3{bottom:618.101533pt;}
.y13{bottom:620.404733pt;}
.ya4{bottom:624.633067pt;}
.y73{bottom:627.299067pt;}
.ycb{bottom:628.216400pt;}
.y43{bottom:628.374067pt;}
.ye2{bottom:633.739200pt;}
.y12{bottom:636.042400pt;}
.ya3{bottom:640.500067pt;}
.y72{bottom:642.994067pt;}
.yca{bottom:643.854067pt;}
.y42{bottom:644.011733pt;}
.ye1{bottom:649.376867pt;}
.y11{bottom:651.680067pt;}
.ya2{bottom:656.367067pt;}
.y71{bottom:658.689067pt;}
.yc9{bottom:659.491733pt;}
.y41{bottom:659.649400pt;}
.ye0{bottom:665.014533pt;}
.y10{bottom:667.317733pt;}
.ya1{bottom:672.234067pt;}
.y70{bottom:674.384067pt;}
.yc8{bottom:675.129400pt;}
.y40{bottom:675.287067pt;}
.ydf{bottom:680.652200pt;}
.yf{bottom:682.955400pt;}
.ya0{bottom:688.101067pt;}
.y6f{bottom:690.079067pt;}
.yc7{bottom:690.767067pt;}
.y3f{bottom:690.924733pt;}
.yde{bottom:696.289867pt;}
.ye{bottom:698.593067pt;}
.y9f{bottom:703.968067pt;}
.y6e{bottom:705.774067pt;}
.yc6{bottom:706.404733pt;}
.y3e{bottom:706.562400pt;}
.ydd{bottom:711.927533pt;}
.yd{bottom:714.230733pt;}
.y9e{bottom:719.835067pt;}
.y6d{bottom:721.469067pt;}
.yc5{bottom:722.042400pt;}
.y3d{bottom:722.200067pt;}
.ydc{bottom:727.565200pt;}
.yc{bottom:729.868400pt;}
.y9d{bottom:735.702067pt;}
.y6c{bottom:737.164067pt;}
.y3c{bottom:737.837733pt;}
.ydb{bottom:743.202867pt;}
.yb{bottom:745.506067pt;}
.y9c{bottom:751.569067pt;}
.y6b{bottom:752.859067pt;}
.y3b{bottom:753.475400pt;}
.yda{bottom:758.840533pt;}
.ya{bottom:761.143733pt;}
.y9b{bottom:767.436067pt;}
.y6a{bottom:768.554067pt;}
.yd9{bottom:774.478200pt;}
.y9{bottom:776.781400pt;}
.y3a{bottom:776.939067pt;}
.y9a{bottom:783.303067pt;}
.y69{bottom:784.249067pt;}
.yd8{bottom:790.115867pt;}
.y8{bottom:792.419067pt;}
.y39{bottom:792.576733pt;}
.y99{bottom:799.170067pt;}
.y68{bottom:799.944067pt;}
.yd7{bottom:805.753533pt;}
.yc4{bottom:808.056733pt;}
.y38{bottom:808.214400pt;}
.y98{bottom:815.037067pt;}
.y67{bottom:815.639067pt;}
.yd6{bottom:821.391200pt;}
.y7{bottom:823.694400pt;}
.y37{bottom:823.852067pt;}
.y97{bottom:830.904067pt;}
.y66{bottom:831.334067pt;}
.yd5{bottom:837.028867pt;}
.y6{bottom:839.332067pt;}
.y36{bottom:839.489733pt;}
.y65{bottom:847.029067pt;}
.yd4{bottom:852.666533pt;}
.y96{bottom:854.582733pt;}
.y5{bottom:854.969733pt;}
.y35{bottom:855.127400pt;}
.y95{bottom:870.449733pt;}
.y64{bottom:870.550067pt;}
.y4{bottom:870.607400pt;}
.y34{bottom:870.765067pt;}
.yd3{bottom:885.361067pt;}
.y3{bottom:886.245067pt;}
.y94{bottom:886.316733pt;}
.y33{bottom:886.402733pt;}
.y1{bottom:914.626000pt;}
.h3{height:39.122667pt;}
.h5{height:47.930667pt;}
.h4{height:49.478667pt;}
.h2{height:54.081333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.590533pt;}
.x1{left:83.452000pt;}
.x6{left:94.481867pt;}
.x2{left:102.357667pt;}
.x7{left:391.081533pt;}
.x3{left:398.957333pt;}
.x8{left:409.972867pt;}
.x4{left:417.848667pt;}
.x9{left:419.720000pt;}
.xd{left:437.135000pt;}
.xb{left:510.306667pt;}
.xc{left:526.288333pt;}
.xa{left:581.342667pt;}
}




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