
    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_78430c3d822591c571d7be80.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_026e755358f0a40fba37f2f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_06f1129829271167b0acc1b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_7a372aee31a4c51c05f5b75b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_5ce9a13b2264e1021139457c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws4{word-spacing:-55.944000px;}
.ws73{word-spacing:-38.660400px;}
.ws50{word-spacing:-38.654400px;}
.ws75{word-spacing:-38.653200px;}
.ws64{word-spacing:-38.652900px;}
.ws1f{word-spacing:-38.652300px;}
.ws5{word-spacing:-38.651100px;}
.ws62{word-spacing:-38.650500px;}
.ws5c{word-spacing:-38.650200px;}
.ws63{word-spacing:-38.648700px;}
.ws14{word-spacing:-38.638200px;}
.ws2e{word-spacing:-38.444400px;}
.ws59{word-spacing:-38.443200px;}
.ws3{word-spacing:-38.440800px;}
.ws26{word-spacing:-38.166000px;}
.ws77{word-spacing:-38.160000px;}
.ws7{word-spacing:-38.157900px;}
.ws6{word-spacing:-38.157000px;}
.ws3a{word-spacing:-38.156400px;}
.ws52{word-spacing:-38.155200px;}
.ws55{word-spacing:-38.154600px;}
.ws61{word-spacing:-38.154000px;}
.ws5f{word-spacing:-38.145000px;}
.ws16{word-spacing:-38.144400px;}
.ws83{word-spacing:-38.088000px;}
.ws66{word-spacing:-37.948200px;}
.ws5a{word-spacing:-37.946400px;}
.ws5d{word-spacing:-37.944000px;}
.ws11{word-spacing:-37.942200px;}
.ws7a{word-spacing:-37.930500px;}
.ws49{word-spacing:-37.864800px;}
.ws8{word-spacing:-37.712700px;}
.ws44{word-spacing:-37.442400px;}
.ws35{word-spacing:-37.440000px;}
.wsd{word-spacing:-37.422000px;}
.ws7b{word-spacing:-37.222200px;}
.wsa{word-spacing:-37.212300px;}
.ws6c{word-spacing:-37.205400px;}
.ws2b{word-spacing:-37.126200px;}
.ws46{word-spacing:-37.004400px;}
.ws2f{word-spacing:-36.980400px;}
.ws3d{word-spacing:-36.720000px;}
.ws10{word-spacing:-36.716400px;}
.ws39{word-spacing:-36.711000px;}
.ws9{word-spacing:-36.694200px;}
.ws45{word-spacing:-36.500400px;}
.ws4a{word-spacing:-36.000000px;}
.ws3b{word-spacing:-35.996400px;}
.ws30{word-spacing:-35.786400px;}
.ws71{word-spacing:-35.761800px;}
.ws32{word-spacing:-35.280000px;}
.ws51{word-spacing:-35.276400px;}
.ws5e{word-spacing:-35.274000px;}
.ws34{word-spacing:-34.966200px;}
.ws58{word-spacing:-34.835400px;}
.ws47{word-spacing:-34.340400px;}
.ws7d{word-spacing:-34.330500px;}
.ws6d{word-spacing:-34.322400px;}
.ws19{word-spacing:-34.268400px;}
.ws7c{word-spacing:-33.827700px;}
.wse{word-spacing:-33.622200px;}
.ws76{word-spacing:-33.600000px;}
.ws2{word-spacing:-33.547800px;}
.ws79{word-spacing:-32.903100px;}
.ws1a{word-spacing:-32.900400px;}
.ws4f{word-spacing:-32.874600px;}
.ws57{word-spacing:-32.396400px;}
.ws68{word-spacing:-32.186400px;}
.wsc{word-spacing:-32.108400px;}
.ws54{word-spacing:-31.676400px;}
.ws38{word-spacing:-31.670400px;}
.ws53{word-spacing:-31.657800px;}
.ws74{word-spacing:-31.451400px;}
.ws4c{word-spacing:-31.378800px;}
.ws2d{word-spacing:-30.742200px;}
.ws65{word-spacing:-30.737400px;}
.ws42{word-spacing:-30.725400px;}
.ws4b{word-spacing:-30.660300px;}
.ws3c{word-spacing:-30.240000px;}
.ws6b{word-spacing:-30.020400px;}
.ws1b{word-spacing:-30.013200px;}
.ws15{word-spacing:-29.520000px;}
.wsf{word-spacing:-29.306400px;}
.ws27{word-spacing:-29.304000px;}
.ws60{word-spacing:-29.300400px;}
.ws6e{word-spacing:-29.292300px;}
.ws72{word-spacing:-29.291400px;}
.ws29{word-spacing:-29.088000px;}
.ws25{word-spacing:-28.076400px;}
.ws28{word-spacing:-27.860400px;}
.ws1e{word-spacing:-27.360000px;}
.ws12{word-spacing:-27.343200px;}
.ws17{word-spacing:-27.144000px;}
.ws43{word-spacing:-27.142800px;}
.ws13{word-spacing:-27.118200px;}
.ws24{word-spacing:-26.636400px;}
.ws31{word-spacing:-26.422200px;}
.ws3f{word-spacing:-26.404500px;}
.ws2c{word-spacing:-26.193600px;}
.wsb{word-spacing:-25.196400px;}
.ws41{word-spacing:-24.899400px;}
.ws48{word-spacing:-24.476400px;}
.ws4d{word-spacing:-24.250200px;}
.ws67{word-spacing:-24.240000px;}
.ws82{word-spacing:-23.747700px;}
.ws36{word-spacing:-23.526000px;}
.ws1c{word-spacing:-23.040000px;}
.ws4e{word-spacing:-22.320000px;}
.ws7e{word-spacing:-21.383100px;}
.ws56{word-spacing:-20.654400px;}
.ws22{word-spacing:-20.435400px;}
.ws20{word-spacing:-20.166000px;}
.ws18{word-spacing:-19.434600px;}
.ws6a{word-spacing:-19.222200px;}
.ws5b{word-spacing:-18.501000px;}
.ws33{word-spacing:-17.774400px;}
.ws2a{word-spacing:-17.276400px;}
.ws70{word-spacing:-15.836400px;}
.ws37{word-spacing:-14.900400px;}
.ws78{word-spacing:-14.400000px;}
.ws6f{word-spacing:-13.379400px;}
.ws21{word-spacing:-12.960000px;}
.ws69{word-spacing:-12.729600px;}
.ws1d{word-spacing:-11.284200px;}
.ws23{word-spacing:-7.196400px;}
.ws40{word-spacing:-6.262200px;}
.ws80{word-spacing:-4.820400px;}
.ws7f{word-spacing:-1.724400px;}
.ws3e{word-spacing:1.446000px;}
.ws81{word-spacing:14.489100px;}
.ws1{word-spacing:1871.357400px;}
._21{margin-left:-2.175600px;}
._2{margin-left:-1.101600px;}
._0{width:1.148400px;}
._1{width:19.144800px;}
._3{width:20.276100px;}
._12{width:21.292200px;}
._1b{width:22.327800px;}
._8{width:23.402400px;}
._5{width:24.914400px;}
._9{width:26.942400px;}
._6{width:28.240800px;}
._7{width:29.944800px;}
._4{width:31.851600px;}
._18{width:32.862600px;}
._a{width:33.918000px;}
._1a{width:35.415600px;}
._1c{width:36.432000px;}
._c{width:37.458000px;}
._11{width:39.746400px;}
._14{width:41.857800px;}
._1d{width:44.491200px;}
._b{width:45.994200px;}
._15{width:48.525000px;}
._e{width:50.182800px;}
._17{width:52.811700px;}
._1e{width:54.547800px;}
._10{width:56.662800px;}
._13{width:58.219200px;}
._f{width:59.245200px;}
._19{width:64.570200px;}
._20{width:71.890800px;}
._d{width:86.550000px;}
._16{width:99.282600px;}
._22{width:122.400000px;}
._1f{width:158.400000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y5c{bottom:102.675000px;}
.y7d{bottom:103.215000px;}
.y5b{bottom:123.375000px;}
.y7c{bottom:123.915000px;}
.y2f{bottom:125.355000px;}
.y5a{bottom:144.075000px;}
.y7b{bottom:144.615000px;}
.y2e{bottom:146.055000px;}
.y59{bottom:164.775000px;}
.y7a{bottom:165.315000px;}
.y2d{bottom:166.755000px;}
.y79{bottom:186.015000px;}
.y2c{bottom:187.455000px;}
.y58{bottom:200.415000px;}
.y78{bottom:206.715000px;}
.y2b{bottom:208.155000px;}
.y57{bottom:221.115000px;}
.y77{bottom:227.415000px;}
.y2a{bottom:228.855000px;}
.y56{bottom:241.815000px;}
.y76{bottom:248.115000px;}
.y29{bottom:249.555000px;}
.y55{bottom:262.515000px;}
.y75{bottom:268.815000px;}
.y28{bottom:270.255000px;}
.y54{bottom:283.215000px;}
.y27{bottom:290.955000px;}
.y74{bottom:304.455000px;}
.y53{bottom:318.855000px;}
.y73{bottom:325.155000px;}
.y26{bottom:326.596500px;}
.y52{bottom:339.555000px;}
.y72{bottom:345.855000px;}
.y25{bottom:347.295000px;}
.y71{bottom:366.555000px;}
.y24{bottom:367.996500px;}
.y51{bottom:375.196500px;}
.y70{bottom:387.255000px;}
.y23{bottom:388.696500px;}
.y50{bottom:395.896500px;}
.y6f{bottom:407.955000px;}
.y22{bottom:409.396500px;}
.y4f{bottom:416.596500px;}
.y21{bottom:430.096500px;}
.y4e{bottom:437.295000px;}
.y6e{bottom:443.596500px;}
.y20{bottom:450.795000px;}
.y4d{bottom:457.996500px;}
.y4c{bottom:478.696500px;}
.y6d{bottom:479.415000px;}
.y1f{bottom:486.615000px;}
.y4b{bottom:499.396500px;}
.y6c{bottom:500.115000px;}
.y1e{bottom:507.315000px;}
.y6b{bottom:520.815000px;}
.y1d{bottom:528.015000px;}
.y4a{bottom:535.215000px;}
.y95{bottom:540.796500px;}
.y6a{bottom:541.515000px;}
.y1c{bottom:548.715000px;}
.y49{bottom:555.915000px;}
.y94{bottom:561.496500px;}
.y1b{bottom:569.415000px;}
.y48{bottom:576.615000px;}
.y69{bottom:577.155000px;}
.y93{bottom:582.195000px;}
.y1a{bottom:590.115000px;}
.y47{bottom:597.315000px;}
.y68{bottom:597.855000px;}
.y92{bottom:602.896500px;}
.y19{bottom:610.815000px;}
.y46{bottom:618.015000px;}
.y91{bottom:623.596500px;}
.y18{bottom:631.515000px;}
.y67{bottom:633.496500px;}
.y45{bottom:638.715000px;}
.y90{bottom:644.295000px;}
.y17{bottom:652.215000px;}
.y44{bottom:659.415000px;}
.y8f{bottom:664.996500px;}
.y66{bottom:669.315000px;}
.y16{bottom:672.915000px;}
.y43{bottom:680.115000px;}
.y8e{bottom:685.695000px;}
.y15{bottom:693.615000px;}
.y42{bottom:700.815000px;}
.y65{bottom:704.955000px;}
.y8d{bottom:706.396500px;}
.y41{bottom:721.515000px;}
.y8c{bottom:727.096500px;}
.y14{bottom:729.255000px;}
.y64{bottom:740.596500px;}
.y40{bottom:742.215000px;}
.y8b{bottom:747.795000px;}
.y13{bottom:749.955000px;}
.y3f{bottom:762.915000px;}
.y8a{bottom:768.496500px;}
.y63{bottom:776.415000px;}
.y12{bottom:785.596500px;}
.y89{bottom:789.195000px;}
.y3e{bottom:798.555000px;}
.y11{bottom:806.295000px;}
.y88{bottom:809.895000px;}
.y62{bottom:812.055000px;}
.y3d{bottom:819.255000px;}
.y10{bottom:826.996500px;}
.y87{bottom:830.596500px;}
.y3c{bottom:839.955000px;}
.yf{bottom:847.695000px;}
.y86{bottom:851.295000px;}
.y3b{bottom:860.655000px;}
.ye{bottom:868.395000px;}
.y85{bottom:871.996500px;}
.y3a{bottom:881.355000px;}
.yd{bottom:889.095000px;}
.y84{bottom:892.695000px;}
.y39{bottom:902.055000px;}
.y61{bottom:904.215000px;}
.yc{bottom:909.795000px;}
.y83{bottom:913.395000px;}
.y38{bottom:922.755000px;}
.y60{bottom:924.915000px;}
.yb{bottom:930.495000px;}
.y82{bottom:934.095000px;}
.y37{bottom:943.455000px;}
.y81{bottom:954.795000px;}
.y5f{bottom:960.555000px;}
.y36{bottom:964.155000px;}
.ya{bottom:966.315000px;}
.y80{bottom:975.495000px;}
.y5e{bottom:981.255000px;}
.y35{bottom:984.855000px;}
.y7f{bottom:996.195000px;}
.y9{bottom:1001.955000px;}
.y34{bottom:1005.555000px;}
.y5d{bottom:1016.895000px;}
.y33{bottom:1026.255000px;}
.y8{bottom:1037.595000px;}
.y32{bottom:1046.955000px;}
.y7e{bottom:1052.715000px;}
.y31{bottom:1067.655000px;}
.y7{bottom:1073.415000px;}
.y30{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:156.600000px;}
.x5{left:436.138500px;}
.x3{left:471.150000px;}
.x9{left:502.560000px;}
.x7{left:550.800000px;}
.x6{left:564.660000px;}
.x8{left:589.860000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws4{word-spacing:-49.728000pt;}
.ws73{word-spacing:-34.364800pt;}
.ws50{word-spacing:-34.359467pt;}
.ws75{word-spacing:-34.358400pt;}
.ws64{word-spacing:-34.358133pt;}
.ws1f{word-spacing:-34.357600pt;}
.ws5{word-spacing:-34.356533pt;}
.ws62{word-spacing:-34.356000pt;}
.ws5c{word-spacing:-34.355733pt;}
.ws63{word-spacing:-34.354400pt;}
.ws14{word-spacing:-34.345067pt;}
.ws2e{word-spacing:-34.172800pt;}
.ws59{word-spacing:-34.171733pt;}
.ws3{word-spacing:-34.169600pt;}
.ws26{word-spacing:-33.925333pt;}
.ws77{word-spacing:-33.920000pt;}
.ws7{word-spacing:-33.918133pt;}
.ws6{word-spacing:-33.917333pt;}
.ws3a{word-spacing:-33.916800pt;}
.ws52{word-spacing:-33.915733pt;}
.ws55{word-spacing:-33.915200pt;}
.ws61{word-spacing:-33.914667pt;}
.ws5f{word-spacing:-33.906667pt;}
.ws16{word-spacing:-33.906133pt;}
.ws83{word-spacing:-33.856000pt;}
.ws66{word-spacing:-33.731733pt;}
.ws5a{word-spacing:-33.730133pt;}
.ws5d{word-spacing:-33.728000pt;}
.ws11{word-spacing:-33.726400pt;}
.ws7a{word-spacing:-33.716000pt;}
.ws49{word-spacing:-33.657600pt;}
.ws8{word-spacing:-33.522400pt;}
.ws44{word-spacing:-33.282133pt;}
.ws35{word-spacing:-33.280000pt;}
.wsd{word-spacing:-33.264000pt;}
.ws7b{word-spacing:-33.086400pt;}
.wsa{word-spacing:-33.077600pt;}
.ws6c{word-spacing:-33.071467pt;}
.ws2b{word-spacing:-33.001067pt;}
.ws46{word-spacing:-32.892800pt;}
.ws2f{word-spacing:-32.871467pt;}
.ws3d{word-spacing:-32.640000pt;}
.ws10{word-spacing:-32.636800pt;}
.ws39{word-spacing:-32.632000pt;}
.ws9{word-spacing:-32.617067pt;}
.ws45{word-spacing:-32.444800pt;}
.ws4a{word-spacing:-32.000000pt;}
.ws3b{word-spacing:-31.996800pt;}
.ws30{word-spacing:-31.810133pt;}
.ws71{word-spacing:-31.788267pt;}
.ws32{word-spacing:-31.360000pt;}
.ws51{word-spacing:-31.356800pt;}
.ws5e{word-spacing:-31.354667pt;}
.ws34{word-spacing:-31.081067pt;}
.ws58{word-spacing:-30.964800pt;}
.ws47{word-spacing:-30.524800pt;}
.ws7d{word-spacing:-30.516000pt;}
.ws6d{word-spacing:-30.508800pt;}
.ws19{word-spacing:-30.460800pt;}
.ws7c{word-spacing:-30.069067pt;}
.wse{word-spacing:-29.886400pt;}
.ws76{word-spacing:-29.866667pt;}
.ws2{word-spacing:-29.820267pt;}
.ws79{word-spacing:-29.247200pt;}
.ws1a{word-spacing:-29.244800pt;}
.ws4f{word-spacing:-29.221867pt;}
.ws57{word-spacing:-28.796800pt;}
.ws68{word-spacing:-28.610133pt;}
.wsc{word-spacing:-28.540800pt;}
.ws54{word-spacing:-28.156800pt;}
.ws38{word-spacing:-28.151467pt;}
.ws53{word-spacing:-28.140267pt;}
.ws74{word-spacing:-27.956800pt;}
.ws4c{word-spacing:-27.892267pt;}
.ws2d{word-spacing:-27.326400pt;}
.ws65{word-spacing:-27.322133pt;}
.ws42{word-spacing:-27.311467pt;}
.ws4b{word-spacing:-27.253600pt;}
.ws3c{word-spacing:-26.880000pt;}
.ws6b{word-spacing:-26.684800pt;}
.ws1b{word-spacing:-26.678400pt;}
.ws15{word-spacing:-26.240000pt;}
.wsf{word-spacing:-26.050133pt;}
.ws27{word-spacing:-26.048000pt;}
.ws60{word-spacing:-26.044800pt;}
.ws6e{word-spacing:-26.037600pt;}
.ws72{word-spacing:-26.036800pt;}
.ws29{word-spacing:-25.856000pt;}
.ws25{word-spacing:-24.956800pt;}
.ws28{word-spacing:-24.764800pt;}
.ws1e{word-spacing:-24.320000pt;}
.ws12{word-spacing:-24.305067pt;}
.ws17{word-spacing:-24.128000pt;}
.ws43{word-spacing:-24.126933pt;}
.ws13{word-spacing:-24.105067pt;}
.ws24{word-spacing:-23.676800pt;}
.ws31{word-spacing:-23.486400pt;}
.ws3f{word-spacing:-23.470667pt;}
.ws2c{word-spacing:-23.283200pt;}
.wsb{word-spacing:-22.396800pt;}
.ws41{word-spacing:-22.132800pt;}
.ws48{word-spacing:-21.756800pt;}
.ws4d{word-spacing:-21.555733pt;}
.ws67{word-spacing:-21.546667pt;}
.ws82{word-spacing:-21.109067pt;}
.ws36{word-spacing:-20.912000pt;}
.ws1c{word-spacing:-20.480000pt;}
.ws4e{word-spacing:-19.840000pt;}
.ws7e{word-spacing:-19.007200pt;}
.ws56{word-spacing:-18.359467pt;}
.ws22{word-spacing:-18.164800pt;}
.ws20{word-spacing:-17.925333pt;}
.ws18{word-spacing:-17.275200pt;}
.ws6a{word-spacing:-17.086400pt;}
.ws5b{word-spacing:-16.445333pt;}
.ws33{word-spacing:-15.799467pt;}
.ws2a{word-spacing:-15.356800pt;}
.ws70{word-spacing:-14.076800pt;}
.ws37{word-spacing:-13.244800pt;}
.ws78{word-spacing:-12.800000pt;}
.ws6f{word-spacing:-11.892800pt;}
.ws21{word-spacing:-11.520000pt;}
.ws69{word-spacing:-11.315200pt;}
.ws1d{word-spacing:-10.030400pt;}
.ws23{word-spacing:-6.396800pt;}
.ws40{word-spacing:-5.566400pt;}
.ws80{word-spacing:-4.284800pt;}
.ws7f{word-spacing:-1.532800pt;}
.ws3e{word-spacing:1.285333pt;}
.ws81{word-spacing:12.879200pt;}
.ws1{word-spacing:1663.428800pt;}
._21{margin-left:-1.933867pt;}
._2{margin-left:-0.979200pt;}
._0{width:1.020800pt;}
._1{width:17.017600pt;}
._3{width:18.023200pt;}
._12{width:18.926400pt;}
._1b{width:19.846933pt;}
._8{width:20.802133pt;}
._5{width:22.146133pt;}
._9{width:23.948800pt;}
._6{width:25.102933pt;}
._7{width:26.617600pt;}
._4{width:28.312533pt;}
._18{width:29.211200pt;}
._a{width:30.149333pt;}
._1a{width:31.480533pt;}
._1c{width:32.384000pt;}
._c{width:33.296000pt;}
._11{width:35.330133pt;}
._14{width:37.206933pt;}
._1d{width:39.547733pt;}
._b{width:40.883733pt;}
._15{width:43.133333pt;}
._e{width:44.606933pt;}
._17{width:46.943733pt;}
._1e{width:48.486933pt;}
._10{width:50.366933pt;}
._13{width:51.750400pt;}
._f{width:52.662400pt;}
._19{width:57.395733pt;}
._20{width:63.902933pt;}
._d{width:76.933333pt;}
._16{width:88.251200pt;}
._22{width:108.800000pt;}
._1f{width:140.800000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y5c{bottom:91.266667pt;}
.y7d{bottom:91.746667pt;}
.y5b{bottom:109.666667pt;}
.y7c{bottom:110.146667pt;}
.y2f{bottom:111.426667pt;}
.y5a{bottom:128.066667pt;}
.y7b{bottom:128.546667pt;}
.y2e{bottom:129.826667pt;}
.y59{bottom:146.466667pt;}
.y7a{bottom:146.946667pt;}
.y2d{bottom:148.226667pt;}
.y79{bottom:165.346667pt;}
.y2c{bottom:166.626667pt;}
.y58{bottom:178.146667pt;}
.y78{bottom:183.746667pt;}
.y2b{bottom:185.026667pt;}
.y57{bottom:196.546667pt;}
.y77{bottom:202.146667pt;}
.y2a{bottom:203.426667pt;}
.y56{bottom:214.946667pt;}
.y76{bottom:220.546667pt;}
.y29{bottom:221.826667pt;}
.y55{bottom:233.346667pt;}
.y75{bottom:238.946667pt;}
.y28{bottom:240.226667pt;}
.y54{bottom:251.746667pt;}
.y27{bottom:258.626667pt;}
.y74{bottom:270.626667pt;}
.y53{bottom:283.426667pt;}
.y73{bottom:289.026667pt;}
.y26{bottom:290.308000pt;}
.y52{bottom:301.826667pt;}
.y72{bottom:307.426667pt;}
.y25{bottom:308.706667pt;}
.y71{bottom:325.826667pt;}
.y24{bottom:327.108000pt;}
.y51{bottom:333.508000pt;}
.y70{bottom:344.226667pt;}
.y23{bottom:345.508000pt;}
.y50{bottom:351.908000pt;}
.y6f{bottom:362.626667pt;}
.y22{bottom:363.908000pt;}
.y4f{bottom:370.308000pt;}
.y21{bottom:382.308000pt;}
.y4e{bottom:388.706667pt;}
.y6e{bottom:394.308000pt;}
.y20{bottom:400.706667pt;}
.y4d{bottom:407.108000pt;}
.y4c{bottom:425.508000pt;}
.y6d{bottom:426.146667pt;}
.y1f{bottom:432.546667pt;}
.y4b{bottom:443.908000pt;}
.y6c{bottom:444.546667pt;}
.y1e{bottom:450.946667pt;}
.y6b{bottom:462.946667pt;}
.y1d{bottom:469.346667pt;}
.y4a{bottom:475.746667pt;}
.y95{bottom:480.708000pt;}
.y6a{bottom:481.346667pt;}
.y1c{bottom:487.746667pt;}
.y49{bottom:494.146667pt;}
.y94{bottom:499.108000pt;}
.y1b{bottom:506.146667pt;}
.y48{bottom:512.546667pt;}
.y69{bottom:513.026667pt;}
.y93{bottom:517.506667pt;}
.y1a{bottom:524.546667pt;}
.y47{bottom:530.946667pt;}
.y68{bottom:531.426667pt;}
.y92{bottom:535.908000pt;}
.y19{bottom:542.946667pt;}
.y46{bottom:549.346667pt;}
.y91{bottom:554.308000pt;}
.y18{bottom:561.346667pt;}
.y67{bottom:563.108000pt;}
.y45{bottom:567.746667pt;}
.y90{bottom:572.706667pt;}
.y17{bottom:579.746667pt;}
.y44{bottom:586.146667pt;}
.y8f{bottom:591.108000pt;}
.y66{bottom:594.946667pt;}
.y16{bottom:598.146667pt;}
.y43{bottom:604.546667pt;}
.y8e{bottom:609.506667pt;}
.y15{bottom:616.546667pt;}
.y42{bottom:622.946667pt;}
.y65{bottom:626.626667pt;}
.y8d{bottom:627.908000pt;}
.y41{bottom:641.346667pt;}
.y8c{bottom:646.308000pt;}
.y14{bottom:648.226667pt;}
.y64{bottom:658.308000pt;}
.y40{bottom:659.746667pt;}
.y8b{bottom:664.706667pt;}
.y13{bottom:666.626667pt;}
.y3f{bottom:678.146667pt;}
.y8a{bottom:683.108000pt;}
.y63{bottom:690.146667pt;}
.y12{bottom:698.308000pt;}
.y89{bottom:701.506667pt;}
.y3e{bottom:709.826667pt;}
.y11{bottom:716.706667pt;}
.y88{bottom:719.906667pt;}
.y62{bottom:721.826667pt;}
.y3d{bottom:728.226667pt;}
.y10{bottom:735.108000pt;}
.y87{bottom:738.308000pt;}
.y3c{bottom:746.626667pt;}
.yf{bottom:753.506667pt;}
.y86{bottom:756.706667pt;}
.y3b{bottom:765.026667pt;}
.ye{bottom:771.906667pt;}
.y85{bottom:775.108000pt;}
.y3a{bottom:783.426667pt;}
.yd{bottom:790.306667pt;}
.y84{bottom:793.506667pt;}
.y39{bottom:801.826667pt;}
.y61{bottom:803.746667pt;}
.yc{bottom:808.706667pt;}
.y83{bottom:811.906667pt;}
.y38{bottom:820.226667pt;}
.y60{bottom:822.146667pt;}
.yb{bottom:827.106667pt;}
.y82{bottom:830.306667pt;}
.y37{bottom:838.626667pt;}
.y81{bottom:848.706667pt;}
.y5f{bottom:853.826667pt;}
.y36{bottom:857.026667pt;}
.ya{bottom:858.946667pt;}
.y80{bottom:867.106667pt;}
.y5e{bottom:872.226667pt;}
.y35{bottom:875.426667pt;}
.y7f{bottom:885.506667pt;}
.y9{bottom:890.626667pt;}
.y34{bottom:893.826667pt;}
.y5d{bottom:903.906667pt;}
.y33{bottom:912.226667pt;}
.y8{bottom:922.306667pt;}
.y32{bottom:930.626667pt;}
.y7e{bottom:935.746667pt;}
.y31{bottom:949.026667pt;}
.y7{bottom:954.146667pt;}
.y30{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:139.200000pt;}
.x5{left:387.678667pt;}
.x3{left:418.800000pt;}
.x9{left:446.720000pt;}
.x7{left:489.600000pt;}
.x6{left:501.920000pt;}
.x8{left:524.320000pt;}
}




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