
    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_9a29e851b2f2512af19595a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_22b620dcbf0ed77cd6716280.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_de4d367fbdfc69bec8d4409a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls3b{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.100800px;}
.ls15{letter-spacing:-0.093600px;}
.ls12{letter-spacing:-0.079200px;}
.ls2b{letter-spacing:-0.072144px;}
.ls38{letter-spacing:-0.072000px;}
.ls3a{letter-spacing:-0.050400px;}
.ls1b{letter-spacing:-0.043200px;}
.ls21{letter-spacing:-0.036000px;}
.ls30{letter-spacing:-0.028800px;}
.ls29{letter-spacing:-0.024048px;}
.ls1c{letter-spacing:-0.021600px;}
.ls39{letter-spacing:-0.014400px;}
.ls35{letter-spacing:-0.012024px;}
.ls1f{letter-spacing:-0.007200px;}
.ls13{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.006012px;}
.ls28{letter-spacing:0.007200px;}
.ls1d{letter-spacing:0.012024px;}
.ls25{letter-spacing:0.014400px;}
.ls2c{letter-spacing:0.018036px;}
.ls1{letter-spacing:0.021600px;}
.ls10{letter-spacing:0.024048px;}
.ls0{letter-spacing:0.028800px;}
.ls26{letter-spacing:0.030060px;}
.ls1a{letter-spacing:0.036000px;}
.ls34{letter-spacing:0.036072px;}
.ls22{letter-spacing:0.042084px;}
.ls16{letter-spacing:0.043200px;}
.ls23{letter-spacing:0.048096px;}
.ls2{letter-spacing:0.050400px;}
.ls19{letter-spacing:0.054108px;}
.ls4{letter-spacing:0.057600px;}
.ls8{letter-spacing:0.060120px;}
.ls5{letter-spacing:0.064800px;}
.ls33{letter-spacing:0.066132px;}
.ls6{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.072144px;}
.ls31{letter-spacing:0.078156px;}
.ls3{letter-spacing:0.079200px;}
.lse{letter-spacing:0.084168px;}
.ls20{letter-spacing:0.086400px;}
.lsa{letter-spacing:0.090180px;}
.ls36{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.096192px;}
.lsb{letter-spacing:0.102204px;}
.ls2e{letter-spacing:0.108216px;}
.ls17{letter-spacing:0.114228px;}
.ls9{letter-spacing:0.120240px;}
.ls37{letter-spacing:0.122400px;}
.ls1e{letter-spacing:0.126252px;}
.ls18{letter-spacing:0.132264px;}
.ls3c{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.150300px;}
.ls24{letter-spacing:0.156312px;}
.ls2a{letter-spacing:0.162324px;}
.ls3d{letter-spacing:0.167760px;}
.lsc{letter-spacing:0.174348px;}
.ls27{letter-spacing:0.181944px;}
.ls7{letter-spacing:3.420000px;}
.ls2f{letter-spacing:1221.480000px;}
.ls11{letter-spacing:1239.480000px;}
.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;}
}
.ws40{word-spacing:-18.122400px;}
.ws43{word-spacing:-18.093600px;}
.ws26{word-spacing:-18.079200px;}
.ws20{word-spacing:-18.064800px;}
.ws21{word-spacing:-18.050400px;}
.ws37{word-spacing:-18.043200px;}
.ws0{word-spacing:-18.021600px;}
.ws31{word-spacing:-18.000000px;}
.ws34{word-spacing:-17.956800px;}
.ws2{word-spacing:-15.204348px;}
.ws27{word-spacing:-12.151944px;}
.ws1{word-spacing:-9.720000px;}
.ws3e{word-spacing:-0.424800px;}
.ws28{word-spacing:-0.396000px;}
.ws22{word-spacing:-0.381600px;}
.ws42{word-spacing:-0.374400px;}
.ws35{word-spacing:-0.367200px;}
.ws32{word-spacing:-0.309600px;}
.ws3c{word-spacing:-0.300600px;}
.ws49{word-spacing:-0.268416px;}
.ws2e{word-spacing:-0.252000px;}
.ws44{word-spacing:-0.201600px;}
.ws3d{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.144000px;}
.ws41{word-spacing:-0.129600px;}
.ws3f{word-spacing:-0.093600px;}
.wsb{word-spacing:-0.079200px;}
.wsd{word-spacing:-0.072000px;}
.ws25{word-spacing:-0.066132px;}
.wsa{word-spacing:-0.064800px;}
.ws38{word-spacing:-0.060120px;}
.wsc{word-spacing:-0.057600px;}
.ws9{word-spacing:-0.050400px;}
.ws7{word-spacing:-0.043200px;}
.ws18{word-spacing:-0.042084px;}
.ws1d{word-spacing:-0.036072px;}
.ws16{word-spacing:-0.036000px;}
.wsf{word-spacing:-0.030060px;}
.ws8{word-spacing:-0.028800px;}
.ws19{word-spacing:-0.024048px;}
.ws1e{word-spacing:-0.021600px;}
.ws33{word-spacing:-0.018036px;}
.ws36{word-spacing:-0.014400px;}
.ws10{word-spacing:-0.012024px;}
.ws29{word-spacing:-0.007200px;}
.ws14{word-spacing:-0.006012px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:0.006012px;}
.ws1c{word-spacing:0.007200px;}
.ws12{word-spacing:0.012024px;}
.ws45{word-spacing:0.014400px;}
.ws11{word-spacing:0.018036px;}
.ws17{word-spacing:0.021600px;}
.ws39{word-spacing:0.024048px;}
.wse{word-spacing:0.030060px;}
.ws1f{word-spacing:0.036000px;}
.ws1b{word-spacing:0.036072px;}
.ws24{word-spacing:0.042084px;}
.ws23{word-spacing:0.048096px;}
.ws47{word-spacing:0.050400px;}
.ws3b{word-spacing:0.054108px;}
.ws2c{word-spacing:0.060120px;}
.ws15{word-spacing:0.066132px;}
.ws46{word-spacing:0.072000px;}
.ws2f{word-spacing:0.072144px;}
.ws1a{word-spacing:0.078156px;}
.ws3{word-spacing:0.079200px;}
.ws30{word-spacing:0.084168px;}
.ws2b{word-spacing:0.090180px;}
.ws6{word-spacing:0.093600px;}
.ws5{word-spacing:0.100800px;}
.ws3a{word-spacing:0.102204px;}
.ws2a{word-spacing:0.114228px;}
.ws2d{word-spacing:0.162324px;}
._4{margin-left:-4.680000px;}
._0{margin-left:-1.368000px;}
._3{width:1.007280px;}
._1{width:2.664000px;}
._2{width:3.808800px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:47.880000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y26{bottom:58.260450px;}
.y25{bottom:109.974990px;}
.yab{bottom:109.992960px;}
.y42{bottom:110.001630px;}
.y47{bottom:110.006130px;}
.y66{bottom:115.410450px;}
.y56{bottom:115.500450px;}
.y62{bottom:116.760450px;}
.y85{bottom:127.138350px;}
.y24{bottom:127.169310px;}
.yaa{bottom:127.187280px;}
.y41{bottom:127.195950px;}
.y64{bottom:127.920450px;}
.y46{bottom:133.950450px;}
.y84{bottom:144.422850px;}
.y23{bottom:144.453810px;}
.ya9{bottom:144.471780px;}
.y59{bottom:144.475950px;}
.y65{bottom:145.110450px;}
.ya4{bottom:145.110600px;}
.y5a{bottom:146.460450px;}
.y55{bottom:146.550450px;}
.y40{bottom:151.230450px;}
.y83{bottom:161.707350px;}
.y22{bottom:161.738310px;}
.y61{bottom:161.756280px;}
.ya5{bottom:161.760450px;}
.y3f{bottom:162.390450px;}
.y58{bottom:168.510450px;}
.y63{bottom:177.510450px;}
.y54{bottom:177.600450px;}
.y82{bottom:178.901670px;}
.y21{bottom:178.932630px;}
.y57{bottom:179.670450px;}
.y60{bottom:185.700600px;}
.y81{bottom:196.186170px;}
.y20{bottom:196.217130px;}
.y5f{bottom:196.225950px;}
.ya8{bottom:196.860600px;}
.y3e{bottom:208.560450px;}
.ya3{bottom:208.560600px;}
.y53{bottom:208.650450px;}
.y80{bottom:213.470670px;}
.y1f{bottom:213.501630px;}
.y5e{bottom:220.260450px;}
.y7f{bottom:230.664990px;}
.y1e{bottom:230.695950px;}
.y5d{bottom:231.420450px;}
.y67{bottom:239.520450px;}
.y3d{bottom:239.610450px;}
.ya2{bottom:239.610600px;}
.y52{bottom:239.700450px;}
.ya7{bottom:239.700600px;}
.y7e{bottom:247.949490px;}
.y1d{bottom:254.730450px;}
.y7d{bottom:265.233990px;}
.y1c{bottom:265.890450px;}
.ya6{bottom:270.570450px;}
.y3c{bottom:270.660450px;}
.ya1{bottom:270.660600px;}
.y51{bottom:270.750450px;}
.y8c{bottom:270.750600px;}
.y7c{bottom:282.428310px;}
.y7b{bottom:299.712810px;}
.y3b{bottom:301.710450px;}
.ya0{bottom:301.710600px;}
.y50{bottom:301.800450px;}
.y8b{bottom:301.800600px;}
.y7a{bottom:316.907130px;}
.y3a{bottom:332.760450px;}
.y9f{bottom:332.760600px;}
.y1b{bottom:332.850450px;}
.y8a{bottom:332.850600px;}
.y79{bottom:334.191630px;}
.y78{bottom:351.476130px;}
.y39{bottom:363.810450px;}
.y9e{bottom:363.810600px;}
.y1a{bottom:363.900450px;}
.y89{bottom:363.900600px;}
.y77{bottom:375.420450px;}
.y76{bottom:385.932630px;}
.y38{bottom:394.860450px;}
.y9d{bottom:394.860600px;}
.y19{bottom:394.950450px;}
.y88{bottom:394.950600px;}
.y75{bottom:403.217130px;}
.y74{bottom:420.411450px;}
.y37{bottom:425.910450px;}
.y9c{bottom:425.910600px;}
.y18{bottom:426.000450px;}
.y87{bottom:426.000600px;}
.y73{bottom:437.695950px;}
.y36{bottom:456.960450px;}
.y9b{bottom:456.960600px;}
.y17{bottom:457.050450px;}
.y72{bottom:461.730450px;}
.y71{bottom:472.166100px;}
.y35{bottom:488.010450px;}
.y9a{bottom:488.010600px;}
.y16{bottom:488.100450px;}
.y70{bottom:496.200600px;}
.y6f{bottom:506.703810px;}
.y34{bottom:519.060450px;}
.y99{bottom:519.060600px;}
.y15{bottom:519.150450px;}
.y6e{bottom:523.898130px;}
.y6d{bottom:541.182630px;}
.y33{bottom:550.110450px;}
.y98{bottom:550.110600px;}
.y14{bottom:550.200450px;}
.y6c{bottom:558.467130px;}
.y6b{bottom:575.661450px;}
.y32{bottom:581.160450px;}
.y97{bottom:581.160600px;}
.y13{bottom:581.250450px;}
.y6a{bottom:592.945950px;}
.y5c{bottom:612.120450px;}
.y31{bottom:612.210450px;}
.y96{bottom:612.210600px;}
.y12{bottom:612.300450px;}
.y69{bottom:616.980450px;}
.y68{bottom:628.050450px;}
.y5b{bottom:643.170450px;}
.y30{bottom:643.260450px;}
.y95{bottom:643.260600px;}
.y11{bottom:643.350450px;}
.y86{bottom:674.220450px;}
.y2f{bottom:674.310450px;}
.y94{bottom:674.310600px;}
.y10{bottom:674.400450px;}
.y4f{bottom:705.360450px;}
.y93{bottom:705.360600px;}
.yf{bottom:705.450450px;}
.y2e{bottom:736.410450px;}
.y92{bottom:736.410600px;}
.ye{bottom:736.500450px;}
.y2d{bottom:767.460450px;}
.y91{bottom:767.460600px;}
.yd{bottom:767.550450px;}
.y2c{bottom:798.510450px;}
.yc{bottom:798.600450px;}
.y90{bottom:798.600600px;}
.yb{bottom:829.470450px;}
.y2b{bottom:829.560450px;}
.y45{bottom:829.650450px;}
.y8f{bottom:829.650600px;}
.y2a{bottom:860.610450px;}
.ya{bottom:860.700450px;}
.y8e{bottom:860.700600px;}
.y4e{bottom:891.660450px;}
.y9{bottom:891.750450px;}
.y8d{bottom:891.750600px;}
.y4d{bottom:922.710450px;}
.y8{bottom:922.800450px;}
.y4c{bottom:953.760450px;}
.y7{bottom:953.850450px;}
.y4b{bottom:984.720450px;}
.y6{bottom:984.810450px;}
.y44{bottom:1015.770450px;}
.y5{bottom:1015.860450px;}
.yad{bottom:1041.780450px;}
.y43{bottom:1046.820450px;}
.y4{bottom:1046.910450px;}
.yac{bottom:1074.900450px;}
.y3{bottom:1077.780450px;}
.y4a{bottom:1077.870450px;}
.y29{bottom:1077.960450px;}
.y2{bottom:1108.830450px;}
.y49{bottom:1108.920450px;}
.y28{bottom:1109.010450px;}
.y1{bottom:1139.880450px;}
.y48{bottom:1139.970450px;}
.y27{bottom:1140.060450px;}
.h4{height:38.158594px;}
.ha{height:58.975137px;}
.h5{height:59.004492px;}
.h6{height:70.628906px;}
.h2{height:70.664062px;}
.h1{height:72.562500px;}
.h9{height:80.088223px;}
.h3{height:80.111602px;}
.h8{height:80.112202px;}
.hb{height:81.373463px;}
.h7{height:81.374062px;}
.hc{height:84.535312px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:127.620000px;}
.x3{left:174.510000px;}
.x6{left:180.720000px;}
.x1{left:216.360000px;}
.x2{left:316.800000px;}
.x7{left:396.180000px;}
.x5{left:552.420000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls3b{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.089600pt;}
.ls15{letter-spacing:-0.083200pt;}
.ls12{letter-spacing:-0.070400pt;}
.ls2b{letter-spacing:-0.064128pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls3a{letter-spacing:-0.044800pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls21{letter-spacing:-0.032000pt;}
.ls30{letter-spacing:-0.025600pt;}
.ls29{letter-spacing:-0.021376pt;}
.ls1c{letter-spacing:-0.019200pt;}
.ls39{letter-spacing:-0.012800pt;}
.ls35{letter-spacing:-0.010688pt;}
.ls1f{letter-spacing:-0.006400pt;}
.ls13{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.005344pt;}
.ls28{letter-spacing:0.006400pt;}
.ls1d{letter-spacing:0.010688pt;}
.ls25{letter-spacing:0.012800pt;}
.ls2c{letter-spacing:0.016032pt;}
.ls1{letter-spacing:0.019200pt;}
.ls10{letter-spacing:0.021376pt;}
.ls0{letter-spacing:0.025600pt;}
.ls26{letter-spacing:0.026720pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls34{letter-spacing:0.032064pt;}
.ls22{letter-spacing:0.037408pt;}
.ls16{letter-spacing:0.038400pt;}
.ls23{letter-spacing:0.042752pt;}
.ls2{letter-spacing:0.044800pt;}
.ls19{letter-spacing:0.048096pt;}
.ls4{letter-spacing:0.051200pt;}
.ls8{letter-spacing:0.053440pt;}
.ls5{letter-spacing:0.057600pt;}
.ls33{letter-spacing:0.058784pt;}
.ls6{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.064128pt;}
.ls31{letter-spacing:0.069472pt;}
.ls3{letter-spacing:0.070400pt;}
.lse{letter-spacing:0.074816pt;}
.ls20{letter-spacing:0.076800pt;}
.lsa{letter-spacing:0.080160pt;}
.ls36{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.085504pt;}
.lsb{letter-spacing:0.090848pt;}
.ls2e{letter-spacing:0.096192pt;}
.ls17{letter-spacing:0.101536pt;}
.ls9{letter-spacing:0.106880pt;}
.ls37{letter-spacing:0.108800pt;}
.ls1e{letter-spacing:0.112224pt;}
.ls18{letter-spacing:0.117568pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.133600pt;}
.ls24{letter-spacing:0.138944pt;}
.ls2a{letter-spacing:0.144288pt;}
.ls3d{letter-spacing:0.149120pt;}
.lsc{letter-spacing:0.154976pt;}
.ls27{letter-spacing:0.161728pt;}
.ls7{letter-spacing:3.040000pt;}
.ls2f{letter-spacing:1085.760000pt;}
.ls11{letter-spacing:1101.760000pt;}
.ws40{word-spacing:-16.108800pt;}
.ws43{word-spacing:-16.083200pt;}
.ws26{word-spacing:-16.070400pt;}
.ws20{word-spacing:-16.057600pt;}
.ws21{word-spacing:-16.044800pt;}
.ws37{word-spacing:-16.038400pt;}
.ws0{word-spacing:-16.019200pt;}
.ws31{word-spacing:-16.000000pt;}
.ws34{word-spacing:-15.961600pt;}
.ws2{word-spacing:-13.514976pt;}
.ws27{word-spacing:-10.801728pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3e{word-spacing:-0.377600pt;}
.ws28{word-spacing:-0.352000pt;}
.ws22{word-spacing:-0.339200pt;}
.ws42{word-spacing:-0.332800pt;}
.ws35{word-spacing:-0.326400pt;}
.ws32{word-spacing:-0.275200pt;}
.ws3c{word-spacing:-0.267200pt;}
.ws49{word-spacing:-0.238592pt;}
.ws2e{word-spacing:-0.224000pt;}
.ws44{word-spacing:-0.179200pt;}
.ws3d{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.128000pt;}
.ws41{word-spacing:-0.115200pt;}
.ws3f{word-spacing:-0.083200pt;}
.wsb{word-spacing:-0.070400pt;}
.wsd{word-spacing:-0.064000pt;}
.ws25{word-spacing:-0.058784pt;}
.wsa{word-spacing:-0.057600pt;}
.ws38{word-spacing:-0.053440pt;}
.wsc{word-spacing:-0.051200pt;}
.ws9{word-spacing:-0.044800pt;}
.ws7{word-spacing:-0.038400pt;}
.ws18{word-spacing:-0.037408pt;}
.ws1d{word-spacing:-0.032064pt;}
.ws16{word-spacing:-0.032000pt;}
.wsf{word-spacing:-0.026720pt;}
.ws8{word-spacing:-0.025600pt;}
.ws19{word-spacing:-0.021376pt;}
.ws1e{word-spacing:-0.019200pt;}
.ws33{word-spacing:-0.016032pt;}
.ws36{word-spacing:-0.012800pt;}
.ws10{word-spacing:-0.010688pt;}
.ws29{word-spacing:-0.006400pt;}
.ws14{word-spacing:-0.005344pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:0.005344pt;}
.ws1c{word-spacing:0.006400pt;}
.ws12{word-spacing:0.010688pt;}
.ws45{word-spacing:0.012800pt;}
.ws11{word-spacing:0.016032pt;}
.ws17{word-spacing:0.019200pt;}
.ws39{word-spacing:0.021376pt;}
.wse{word-spacing:0.026720pt;}
.ws1f{word-spacing:0.032000pt;}
.ws1b{word-spacing:0.032064pt;}
.ws24{word-spacing:0.037408pt;}
.ws23{word-spacing:0.042752pt;}
.ws47{word-spacing:0.044800pt;}
.ws3b{word-spacing:0.048096pt;}
.ws2c{word-spacing:0.053440pt;}
.ws15{word-spacing:0.058784pt;}
.ws46{word-spacing:0.064000pt;}
.ws2f{word-spacing:0.064128pt;}
.ws1a{word-spacing:0.069472pt;}
.ws3{word-spacing:0.070400pt;}
.ws30{word-spacing:0.074816pt;}
.ws2b{word-spacing:0.080160pt;}
.ws6{word-spacing:0.083200pt;}
.ws5{word-spacing:0.089600pt;}
.ws3a{word-spacing:0.090848pt;}
.ws2a{word-spacing:0.101536pt;}
.ws2d{word-spacing:0.144288pt;}
._4{margin-left:-4.160000pt;}
._0{margin-left:-1.216000pt;}
._3{width:0.895360pt;}
._1{width:2.368000pt;}
._2{width:3.385600pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:42.560000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:51.787067pt;}
.y25{bottom:97.755547pt;}
.yab{bottom:97.771520pt;}
.y42{bottom:97.779227pt;}
.y47{bottom:97.783227pt;}
.y66{bottom:102.587067pt;}
.y56{bottom:102.667067pt;}
.y62{bottom:103.787067pt;}
.y85{bottom:113.011867pt;}
.y24{bottom:113.039387pt;}
.yaa{bottom:113.055360pt;}
.y41{bottom:113.063067pt;}
.y64{bottom:113.707067pt;}
.y46{bottom:119.067067pt;}
.y84{bottom:128.375867pt;}
.y23{bottom:128.403387pt;}
.ya9{bottom:128.419360pt;}
.y59{bottom:128.423067pt;}
.y65{bottom:128.987067pt;}
.ya4{bottom:128.987200pt;}
.y5a{bottom:130.187067pt;}
.y55{bottom:130.267067pt;}
.y40{bottom:134.427067pt;}
.y83{bottom:143.739867pt;}
.y22{bottom:143.767387pt;}
.y61{bottom:143.783360pt;}
.ya5{bottom:143.787067pt;}
.y3f{bottom:144.347067pt;}
.y58{bottom:149.787067pt;}
.y63{bottom:157.787067pt;}
.y54{bottom:157.867067pt;}
.y82{bottom:159.023707pt;}
.y21{bottom:159.051227pt;}
.y57{bottom:159.707067pt;}
.y60{bottom:165.067200pt;}
.y81{bottom:174.387707pt;}
.y20{bottom:174.415227pt;}
.y5f{bottom:174.423067pt;}
.ya8{bottom:174.987200pt;}
.y3e{bottom:185.387067pt;}
.ya3{bottom:185.387200pt;}
.y53{bottom:185.467067pt;}
.y80{bottom:189.751707pt;}
.y1f{bottom:189.779227pt;}
.y5e{bottom:195.787067pt;}
.y7f{bottom:205.035547pt;}
.y1e{bottom:205.063067pt;}
.y5d{bottom:205.707067pt;}
.y67{bottom:212.907067pt;}
.y3d{bottom:212.987067pt;}
.ya2{bottom:212.987200pt;}
.y52{bottom:213.067067pt;}
.ya7{bottom:213.067200pt;}
.y7e{bottom:220.399547pt;}
.y1d{bottom:226.427067pt;}
.y7d{bottom:235.763547pt;}
.y1c{bottom:236.347067pt;}
.ya6{bottom:240.507067pt;}
.y3c{bottom:240.587067pt;}
.ya1{bottom:240.587200pt;}
.y51{bottom:240.667067pt;}
.y8c{bottom:240.667200pt;}
.y7c{bottom:251.047387pt;}
.y7b{bottom:266.411387pt;}
.y3b{bottom:268.187067pt;}
.ya0{bottom:268.187200pt;}
.y50{bottom:268.267067pt;}
.y8b{bottom:268.267200pt;}
.y7a{bottom:281.695227pt;}
.y3a{bottom:295.787067pt;}
.y9f{bottom:295.787200pt;}
.y1b{bottom:295.867067pt;}
.y8a{bottom:295.867200pt;}
.y79{bottom:297.059227pt;}
.y78{bottom:312.423227pt;}
.y39{bottom:323.387067pt;}
.y9e{bottom:323.387200pt;}
.y1a{bottom:323.467067pt;}
.y89{bottom:323.467200pt;}
.y77{bottom:333.707067pt;}
.y76{bottom:343.051227pt;}
.y38{bottom:350.987067pt;}
.y9d{bottom:350.987200pt;}
.y19{bottom:351.067067pt;}
.y88{bottom:351.067200pt;}
.y75{bottom:358.415227pt;}
.y74{bottom:373.699067pt;}
.y37{bottom:378.587067pt;}
.y9c{bottom:378.587200pt;}
.y18{bottom:378.667067pt;}
.y87{bottom:378.667200pt;}
.y73{bottom:389.063067pt;}
.y36{bottom:406.187067pt;}
.y9b{bottom:406.187200pt;}
.y17{bottom:406.267067pt;}
.y72{bottom:410.427067pt;}
.y71{bottom:419.703200pt;}
.y35{bottom:433.787067pt;}
.y9a{bottom:433.787200pt;}
.y16{bottom:433.867067pt;}
.y70{bottom:441.067200pt;}
.y6f{bottom:450.403387pt;}
.y34{bottom:461.387067pt;}
.y99{bottom:461.387200pt;}
.y15{bottom:461.467067pt;}
.y6e{bottom:465.687227pt;}
.y6d{bottom:481.051227pt;}
.y33{bottom:488.987067pt;}
.y98{bottom:488.987200pt;}
.y14{bottom:489.067067pt;}
.y6c{bottom:496.415227pt;}
.y6b{bottom:511.699067pt;}
.y32{bottom:516.587067pt;}
.y97{bottom:516.587200pt;}
.y13{bottom:516.667067pt;}
.y6a{bottom:527.063067pt;}
.y5c{bottom:544.107067pt;}
.y31{bottom:544.187067pt;}
.y96{bottom:544.187200pt;}
.y12{bottom:544.267067pt;}
.y69{bottom:548.427067pt;}
.y68{bottom:558.267067pt;}
.y5b{bottom:571.707067pt;}
.y30{bottom:571.787067pt;}
.y95{bottom:571.787200pt;}
.y11{bottom:571.867067pt;}
.y86{bottom:599.307067pt;}
.y2f{bottom:599.387067pt;}
.y94{bottom:599.387200pt;}
.y10{bottom:599.467067pt;}
.y4f{bottom:626.987067pt;}
.y93{bottom:626.987200pt;}
.yf{bottom:627.067067pt;}
.y2e{bottom:654.587067pt;}
.y92{bottom:654.587200pt;}
.ye{bottom:654.667067pt;}
.y2d{bottom:682.187067pt;}
.y91{bottom:682.187200pt;}
.yd{bottom:682.267067pt;}
.y2c{bottom:709.787067pt;}
.yc{bottom:709.867067pt;}
.y90{bottom:709.867200pt;}
.yb{bottom:737.307067pt;}
.y2b{bottom:737.387067pt;}
.y45{bottom:737.467067pt;}
.y8f{bottom:737.467200pt;}
.y2a{bottom:764.987067pt;}
.ya{bottom:765.067067pt;}
.y8e{bottom:765.067200pt;}
.y4e{bottom:792.587067pt;}
.y9{bottom:792.667067pt;}
.y8d{bottom:792.667200pt;}
.y4d{bottom:820.187067pt;}
.y8{bottom:820.267067pt;}
.y4c{bottom:847.787067pt;}
.y7{bottom:847.867067pt;}
.y4b{bottom:875.307067pt;}
.y6{bottom:875.387067pt;}
.y44{bottom:902.907067pt;}
.y5{bottom:902.987067pt;}
.yad{bottom:926.027067pt;}
.y43{bottom:930.507067pt;}
.y4{bottom:930.587067pt;}
.yac{bottom:955.467067pt;}
.y3{bottom:958.027067pt;}
.y4a{bottom:958.107067pt;}
.y29{bottom:958.187067pt;}
.y2{bottom:985.627067pt;}
.y49{bottom:985.707067pt;}
.y28{bottom:985.787067pt;}
.y1{bottom:1013.227067pt;}
.y48{bottom:1013.307067pt;}
.y27{bottom:1013.387067pt;}
.h4{height:33.918750pt;}
.ha{height:52.422344pt;}
.h5{height:52.448437pt;}
.h6{height:62.781250pt;}
.h2{height:62.812500pt;}
.h1{height:64.500000pt;}
.h9{height:71.189531pt;}
.h3{height:71.210312pt;}
.h8{height:71.210846pt;}
.hb{height:72.331967pt;}
.h7{height:72.332500pt;}
.hc{height:75.142500pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:113.440000pt;}
.x3{left:155.120000pt;}
.x6{left:160.640000pt;}
.x1{left:192.320000pt;}
.x2{left:281.600000pt;}
.x7{left:352.160000pt;}
.x5{left:491.040000pt;}
}




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