
    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_aad29795ba7706e86b388371.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_94424bfee4f507fd12629d93.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eac7dd88571f98bd3bb4c9ee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_1d466ca338b603b719e08913.woff')format("woff");}.ff4{font-family:ff4;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);}
.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);}
.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;}
}
.wsd{word-spacing:-55.944000px;}
.ws93{word-spacing:-38.869200px;}
.ws5b{word-spacing:-38.857800px;}
.ws90{word-spacing:-38.661300px;}
.ws6{word-spacing:-38.657700px;}
.ws6e{word-spacing:-38.657400px;}
.ws53{word-spacing:-38.656800px;}
.ws96{word-spacing:-38.655600px;}
.ws4c{word-spacing:-38.654400px;}
.ws3f{word-spacing:-38.653200px;}
.ws52{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws1d{word-spacing:-38.640600px;}
.ws23{word-spacing:-38.448600px;}
.ws89{word-spacing:-38.446800px;}
.ws41{word-spacing:-38.442600px;}
.ws63{word-spacing:-38.439000px;}
.ws50{word-spacing:-38.437200px;}
.ws65{word-spacing:-38.435400px;}
.ws3{word-spacing:-38.374200px;}
.ws5e{word-spacing:-38.365200px;}
.ws5f{word-spacing:-38.363400px;}
.ws8f{word-spacing:-38.166000px;}
.ws19{word-spacing:-38.160000px;}
.ws61{word-spacing:-38.154000px;}
.ws2f{word-spacing:-38.149200px;}
.ws5a{word-spacing:-38.147400px;}
.ws48{word-spacing:-38.143800px;}
.ws3e{word-spacing:-38.142000px;}
.ws38{word-spacing:-38.141400px;}
.ws98{word-spacing:-38.139300px;}
.ws9{word-spacing:-38.075400px;}
.ws0{word-spacing:-37.944000px;}
.ws56{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.938600px;}
.wsb{word-spacing:-37.937700px;}
.ws51{word-spacing:-37.936800px;}
.ws42{word-spacing:-37.935000px;}
.ws62{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.ws2a{word-spacing:-37.929600px;}
.ws1b{word-spacing:-37.927200px;}
.wsc{word-spacing:-37.926000px;}
.wsa{word-spacing:-37.860300px;}
.ws92{word-spacing:-37.717200px;}
.ws5c{word-spacing:-37.651500px;}
.ws5d{word-spacing:-37.641600px;}
.ws60{word-spacing:-37.636200px;}
.ws77{word-spacing:-37.434600px;}
.ws1a{word-spacing:-37.431900px;}
.ws4a{word-spacing:-37.425600px;}
.ws99{word-spacing:-37.230000px;}
.ws91{word-spacing:-37.222800px;}
.ws44{word-spacing:-37.221000px;}
.ws4f{word-spacing:-37.217700px;}
.ws85{word-spacing:-37.214400px;}
.ws22{word-spacing:-37.211400px;}
.ws69{word-spacing:-37.209600px;}
.ws7c{word-spacing:-36.720600px;}
.ws87{word-spacing:-36.720000px;}
.ws3a{word-spacing:-36.504000px;}
.ws86{word-spacing:-36.495000px;}
.ws3b{word-spacing:-36.483600px;}
.ws6b{word-spacing:-36.282600px;}
.ws58{word-spacing:-35.787300px;}
.ws45{word-spacing:-35.769600px;}
.ws16{word-spacing:-35.765100px;}
.ws24{word-spacing:-35.268600px;}
.ws74{word-spacing:-35.051400px;}
.ws34{word-spacing:-34.557000px;}
.ws80{word-spacing:-34.544700px;}
.ws66{word-spacing:-34.348200px;}
.ws49{word-spacing:-34.335000px;}
.wsf{word-spacing:-33.831000px;}
.ws78{word-spacing:-33.607800px;}
.ws8{word-spacing:-33.547800px;}
.ws21{word-spacing:-33.391800px;}
.ws67{word-spacing:-33.120600px;}
.wse{word-spacing:-33.120000px;}
.ws8e{word-spacing:-33.109200px;}
.ws72{word-spacing:-32.900400px;}
.ws8d{word-spacing:-32.175000px;}
.ws11{word-spacing:-32.167800px;}
.ws6f{word-spacing:-31.960800px;}
.ws76{word-spacing:-31.451400px;}
.ws40{word-spacing:-30.744000px;}
.ws81{word-spacing:-30.734100px;}
.ws13{word-spacing:-30.240000px;}
.ws59{word-spacing:-30.022800px;}
.ws26{word-spacing:-30.020400px;}
.ws20{word-spacing:-30.018000px;}
.ws28{word-spacing:-30.005400px;}
.ws2e{word-spacing:-29.800800px;}
.ws47{word-spacing:-29.509200px;}
.ws54{word-spacing:-29.301300px;}
.ws2d{word-spacing:-29.291400px;}
.ws46{word-spacing:-29.083200px;}
.ws36{word-spacing:-28.580400px;}
.ws25{word-spacing:-28.065600px;}
.ws73{word-spacing:-27.864000px;}
.ws8c{word-spacing:-27.861300px;}
.ws1f{word-spacing:-27.139500px;}
.ws57{word-spacing:-27.133200px;}
.ws82{word-spacing:-26.919000px;}
.ws55{word-spacing:-26.623200px;}
.ws39{word-spacing:-26.416800px;}
.ws95{word-spacing:-26.408700px;}
.ws70{word-spacing:-26.197200px;}
.ws43{word-spacing:-25.926000px;}
.ws18{word-spacing:-25.702800px;}
.ws83{word-spacing:-25.684200px;}
.ws33{word-spacing:-24.971400px;}
.ws97{word-spacing:-24.969600px;}
.ws15{word-spacing:-24.967800px;}
.ws6d{word-spacing:-24.964200px;}
.ws14{word-spacing:-23.546400px;}
.ws31{word-spacing:-23.526000px;}
.ws79{word-spacing:-23.034600px;}
.ws68{word-spacing:-23.031000px;}
.ws7d{word-spacing:-22.608000px;}
.ws4e{word-spacing:-22.317000px;}
.ws27{word-spacing:-21.869100px;}
.ws7a{word-spacing:-21.382200px;}
.ws4b{word-spacing:-19.430100px;}
.ws7f{word-spacing:-19.427400px;}
.ws7{word-spacing:-18.472500px;}
.ws2c{word-spacing:-17.986800px;}
.ws2b{word-spacing:-17.775000px;}
.ws32{word-spacing:-17.066400px;}
.ws4d{word-spacing:-16.335000px;}
.ws12{word-spacing:-15.596100px;}
.ws35{word-spacing:-15.405000px;}
.ws8b{word-spacing:-14.677200px;}
.ws7e{word-spacing:-14.175000px;}
.ws1c{word-spacing:-13.449600px;}
.ws88{word-spacing:-13.445100px;}
.ws6a{word-spacing:-13.231200px;}
.ws1e{word-spacing:-12.742200px;}
.ws10{word-spacing:-12.729600px;}
.ws75{word-spacing:-12.229200px;}
.ws37{word-spacing:-12.007800px;}
.ws6c{word-spacing:-11.296800px;}
.ws84{word-spacing:-8.911800px;}
.ws29{word-spacing:-7.916400px;}
.ws30{word-spacing:-7.708200px;}
.ws8a{word-spacing:-5.751900px;}
.ws3c{word-spacing:-4.816800px;}
.ws94{word-spacing:-3.155400px;}
.ws3d{word-spacing:-1.935000px;}
.ws71{word-spacing:0.000000px;}
.ws7b{word-spacing:10.799400px;}
.ws17{word-spacing:14.630400px;}
.ws64{word-spacing:96.480000px;}
.ws1{word-spacing:455.092800px;}
._18{margin-left:-2.289600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._c{width:20.136600px;}
._8{width:21.381900px;}
._9{width:22.877100px;}
._e{width:24.385800px;}
._f{width:26.380800px;}
._7{width:27.864000px;}
._16{width:29.157300px;}
._b{width:31.256400px;}
._13{width:32.560800px;}
._12{width:33.822000px;}
._1{width:36.000000px;}
._11{width:39.655800px;}
._15{width:40.765800px;}
._6{width:42.368100px;}
._d{width:43.609200px;}
._5{width:44.985600px;}
._17{width:46.029600px;}
._10{width:49.322400px;}
._1a{width:52.025100px;}
._1b{width:54.053400px;}
._14{width:55.362000px;}
._19{width:67.896600px;}
._a{width:71.697600px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:3.780000px;}
.y63{bottom:3.811500px;}
.y65{bottom:3.840000px;}
.y7{bottom:4.471500px;}
.y6a{bottom:4.695000px;}
.y67{bottom:45.571500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y77{bottom:114.915000px;}
.y52{bottom:121.396500px;}
.y2f{bottom:121.936500px;}
.y76{bottom:135.615000px;}
.y51{bottom:142.096500px;}
.y2e{bottom:142.636500px;}
.y50{bottom:162.796500px;}
.y2d{bottom:163.336500px;}
.y75{bottom:177.375000px;}
.y4f{bottom:183.496500px;}
.y2c{bottom:184.036500px;}
.y94{bottom:184.396500px;}
.y74{bottom:198.075000px;}
.y2b{bottom:204.736500px;}
.y93{bottom:205.096500px;}
.y73{bottom:218.775000px;}
.y4e{bottom:225.075000px;}
.y2a{bottom:225.436500px;}
.y72{bottom:239.475000px;}
.y4d{bottom:245.775000px;}
.y29{bottom:246.136500px;}
.y92{bottom:246.675000px;}
.y71{bottom:260.175000px;}
.y4c{bottom:266.475000px;}
.y70{bottom:280.875000px;}
.y4b{bottom:287.175000px;}
.y28{bottom:287.896500px;}
.y91{bottom:288.436500px;}
.y6f{bottom:301.575000px;}
.y4a{bottom:307.875000px;}
.y27{bottom:308.596500px;}
.y90{bottom:309.136500px;}
.y6e{bottom:322.275000px;}
.y26{bottom:329.295000px;}
.y8f{bottom:329.836500px;}
.y6d{bottom:342.975000px;}
.y49{bottom:349.636500px;}
.y25{bottom:349.996500px;}
.y8e{bottom:350.536500px;}
.y48{bottom:370.336500px;}
.y24{bottom:370.696500px;}
.y6c{bottom:384.555000px;}
.y47{bottom:391.036500px;}
.y23{bottom:391.396500px;}
.y8d{bottom:392.295000px;}
.y46{bottom:411.736500px;}
.y22{bottom:412.096500px;}
.y8c{bottom:412.996500px;}
.y6b{bottom:426.315000px;}
.y45{bottom:432.436500px;}
.y21{bottom:432.795000px;}
.y8b{bottom:433.696500px;}
.ya2{bottom:451.696500px;}
.y44{bottom:453.136500px;}
.y69{bottom:464.100000px;}
.y20{bottom:474.375000px;}
.y8a{bottom:475.275000px;}
.y68{bottom:486.375000px;}
.ya1{bottom:493.275000px;}
.y43{bottom:494.896500px;}
.y1f{bottom:495.075000px;}
.y89{bottom:495.975000px;}
.y66{bottom:507.825000px;}
.y1e{bottom:515.775000px;}
.y88{bottom:516.675000px;}
.ya0{bottom:535.036500px;}
.y1d{bottom:536.475000px;}
.y87{bottom:537.375000px;}
.y9f{bottom:555.736500px;}
.y1c{bottom:557.175000px;}
.y86{bottom:558.075000px;}
.y64{bottom:570.975000px;}
.y1b{bottom:577.875000px;}
.y42{bottom:578.236500px;}
.y62{bottom:592.425000px;}
.y9e{bottom:597.496500px;}
.y41{bottom:598.936500px;}
.y85{bottom:599.836500px;}
.y60{bottom:613.875000px;}
.y1a{bottom:619.636500px;}
.y84{bottom:620.536500px;}
.y9d{bottom:639.075000px;}
.y19{bottom:640.336500px;}
.y40{bottom:640.695000px;}
.y83{bottom:641.236500px;}
.y5f{bottom:660.136500px;}
.y18{bottom:661.036500px;}
.y82{bottom:661.936500px;}
.y9c{bottom:680.836500px;}
.y3f{bottom:682.275000px;}
.y81{bottom:682.636500px;}
.y5e{bottom:701.896500px;}
.y17{bottom:702.795000px;}
.y3e{bottom:702.975000px;}
.y80{bottom:703.336500px;}
.y5d{bottom:722.596500px;}
.y16{bottom:723.496500px;}
.y3d{bottom:723.675000px;}
.y7f{bottom:724.036500px;}
.y5c{bottom:743.295000px;}
.y15{bottom:744.195000px;}
.y3c{bottom:744.375000px;}
.y7e{bottom:744.736500px;}
.y5b{bottom:763.996500px;}
.y9b{bottom:764.175000px;}
.y14{bottom:764.895000px;}
.y13{bottom:785.596500px;}
.y3b{bottom:786.136500px;}
.y7d{bottom:786.496500px;}
.y5a{bottom:805.575000px;}
.y9a{bottom:805.936500px;}
.y12{bottom:806.295000px;}
.y3a{bottom:806.836500px;}
.y7c{bottom:807.195000px;}
.y59{bottom:826.275000px;}
.y99{bottom:826.636500px;}
.y11{bottom:826.996500px;}
.y39{bottom:827.536500px;}
.y7b{bottom:827.895000px;}
.y10{bottom:847.695000px;}
.y7a{bottom:848.596500px;}
.y58{bottom:868.036500px;}
.yf{bottom:868.395000px;}
.y38{bottom:869.295000px;}
.y57{bottom:888.736500px;}
.ye{bottom:889.095000px;}
.y37{bottom:889.995000px;}
.yd{bottom:909.795000px;}
.y98{bottom:909.975000px;}
.y36{bottom:910.695000px;}
.y56{bottom:930.495000px;}
.y35{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y97{bottom:951.736500px;}
.y34{bottom:952.095000px;}
.y55{bottom:972.075000px;}
.y96{bottom:972.436500px;}
.y33{bottom:972.795000px;}
.y79{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y78{bottom:993.675000px;}
.y54{bottom:1013.836500px;}
.y95{bottom:1014.195000px;}
.y32{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y31{bottom:1035.075000px;}
.y53{bottom:1055.595000px;}
.y30{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h6{height:21.375000px;}
.h8{height:22.200000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h7{height:63.075000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w3{width:41.925000px;}
.w4{width:200.625000px;}
.w5{width:475.500000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.145000px;}
.xa{left:119.475000px;}
.x1{left:127.620000px;}
.x9{left:132.120000px;}
.x4{left:161.820000px;}
.x5{left:213.480000px;}
.xc{left:361.875000px;}
.x3{left:465.825000px;}
.x7{left:515.700000px;}
.x6{left:685.800000px;}
.x2{left:731.160000px;}
.x8{left:774.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsd{word-spacing:-49.728000pt;}
.ws93{word-spacing:-34.550400pt;}
.ws5b{word-spacing:-34.540267pt;}
.ws90{word-spacing:-34.365600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws6e{word-spacing:-34.362133pt;}
.ws53{word-spacing:-34.361600pt;}
.ws96{word-spacing:-34.360533pt;}
.ws4c{word-spacing:-34.359467pt;}
.ws3f{word-spacing:-34.358400pt;}
.ws52{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws1d{word-spacing:-34.347200pt;}
.ws23{word-spacing:-34.176533pt;}
.ws89{word-spacing:-34.174933pt;}
.ws41{word-spacing:-34.171200pt;}
.ws63{word-spacing:-34.168000pt;}
.ws50{word-spacing:-34.166400pt;}
.ws65{word-spacing:-34.164800pt;}
.ws3{word-spacing:-34.110400pt;}
.ws5e{word-spacing:-34.102400pt;}
.ws5f{word-spacing:-34.100800pt;}
.ws8f{word-spacing:-33.925333pt;}
.ws19{word-spacing:-33.920000pt;}
.ws61{word-spacing:-33.914667pt;}
.ws2f{word-spacing:-33.910400pt;}
.ws5a{word-spacing:-33.908800pt;}
.ws48{word-spacing:-33.905600pt;}
.ws3e{word-spacing:-33.904000pt;}
.ws38{word-spacing:-33.903467pt;}
.ws98{word-spacing:-33.901600pt;}
.ws9{word-spacing:-33.844800pt;}
.ws0{word-spacing:-33.728000pt;}
.ws56{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb{word-spacing:-33.722400pt;}
.ws51{word-spacing:-33.721600pt;}
.ws42{word-spacing:-33.720000pt;}
.ws62{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.ws2a{word-spacing:-33.715200pt;}
.ws1b{word-spacing:-33.713067pt;}
.wsc{word-spacing:-33.712000pt;}
.wsa{word-spacing:-33.653600pt;}
.ws92{word-spacing:-33.526400pt;}
.ws5c{word-spacing:-33.468000pt;}
.ws5d{word-spacing:-33.459200pt;}
.ws60{word-spacing:-33.454400pt;}
.ws77{word-spacing:-33.275200pt;}
.ws1a{word-spacing:-33.272800pt;}
.ws4a{word-spacing:-33.267200pt;}
.ws99{word-spacing:-33.093333pt;}
.ws91{word-spacing:-33.086933pt;}
.ws44{word-spacing:-33.085333pt;}
.ws4f{word-spacing:-33.082400pt;}
.ws85{word-spacing:-33.079467pt;}
.ws22{word-spacing:-33.076800pt;}
.ws69{word-spacing:-33.075200pt;}
.ws7c{word-spacing:-32.640533pt;}
.ws87{word-spacing:-32.640000pt;}
.ws3a{word-spacing:-32.448000pt;}
.ws86{word-spacing:-32.440000pt;}
.ws3b{word-spacing:-32.429867pt;}
.ws6b{word-spacing:-32.251200pt;}
.ws58{word-spacing:-31.810933pt;}
.ws45{word-spacing:-31.795200pt;}
.ws16{word-spacing:-31.791200pt;}
.ws24{word-spacing:-31.349867pt;}
.ws74{word-spacing:-31.156800pt;}
.ws34{word-spacing:-30.717333pt;}
.ws80{word-spacing:-30.706400pt;}
.ws66{word-spacing:-30.531733pt;}
.ws49{word-spacing:-30.520000pt;}
.wsf{word-spacing:-30.072000pt;}
.ws78{word-spacing:-29.873600pt;}
.ws8{word-spacing:-29.820267pt;}
.ws21{word-spacing:-29.681600pt;}
.ws67{word-spacing:-29.440533pt;}
.wse{word-spacing:-29.440000pt;}
.ws8e{word-spacing:-29.430400pt;}
.ws72{word-spacing:-29.244800pt;}
.ws8d{word-spacing:-28.600000pt;}
.ws11{word-spacing:-28.593600pt;}
.ws6f{word-spacing:-28.409600pt;}
.ws76{word-spacing:-27.956800pt;}
.ws40{word-spacing:-27.328000pt;}
.ws81{word-spacing:-27.319200pt;}
.ws13{word-spacing:-26.880000pt;}
.ws59{word-spacing:-26.686933pt;}
.ws26{word-spacing:-26.684800pt;}
.ws20{word-spacing:-26.682667pt;}
.ws28{word-spacing:-26.671467pt;}
.ws2e{word-spacing:-26.489600pt;}
.ws47{word-spacing:-26.230400pt;}
.ws54{word-spacing:-26.045600pt;}
.ws2d{word-spacing:-26.036800pt;}
.ws46{word-spacing:-25.851733pt;}
.ws36{word-spacing:-25.404800pt;}
.ws25{word-spacing:-24.947200pt;}
.ws73{word-spacing:-24.768000pt;}
.ws8c{word-spacing:-24.765600pt;}
.ws1f{word-spacing:-24.124000pt;}
.ws57{word-spacing:-24.118400pt;}
.ws82{word-spacing:-23.928000pt;}
.ws55{word-spacing:-23.665067pt;}
.ws39{word-spacing:-23.481600pt;}
.ws95{word-spacing:-23.474400pt;}
.ws70{word-spacing:-23.286400pt;}
.ws43{word-spacing:-23.045333pt;}
.ws18{word-spacing:-22.846933pt;}
.ws83{word-spacing:-22.830400pt;}
.ws33{word-spacing:-22.196800pt;}
.ws97{word-spacing:-22.195200pt;}
.ws15{word-spacing:-22.193600pt;}
.ws6d{word-spacing:-22.190400pt;}
.ws14{word-spacing:-20.930133pt;}
.ws31{word-spacing:-20.912000pt;}
.ws79{word-spacing:-20.475200pt;}
.ws68{word-spacing:-20.472000pt;}
.ws7d{word-spacing:-20.096000pt;}
.ws4e{word-spacing:-19.837333pt;}
.ws27{word-spacing:-19.439200pt;}
.ws7a{word-spacing:-19.006400pt;}
.ws4b{word-spacing:-17.271200pt;}
.ws7f{word-spacing:-17.268800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2c{word-spacing:-15.988267pt;}
.ws2b{word-spacing:-15.800000pt;}
.ws32{word-spacing:-15.170133pt;}
.ws4d{word-spacing:-14.520000pt;}
.ws12{word-spacing:-13.863200pt;}
.ws35{word-spacing:-13.693333pt;}
.ws8b{word-spacing:-13.046400pt;}
.ws7e{word-spacing:-12.600000pt;}
.ws1c{word-spacing:-11.955200pt;}
.ws88{word-spacing:-11.951200pt;}
.ws6a{word-spacing:-11.761067pt;}
.ws1e{word-spacing:-11.326400pt;}
.ws10{word-spacing:-11.315200pt;}
.ws75{word-spacing:-10.870400pt;}
.ws37{word-spacing:-10.673600pt;}
.ws6c{word-spacing:-10.041600pt;}
.ws84{word-spacing:-7.921600pt;}
.ws29{word-spacing:-7.036800pt;}
.ws30{word-spacing:-6.851733pt;}
.ws8a{word-spacing:-5.112800pt;}
.ws3c{word-spacing:-4.281600pt;}
.ws94{word-spacing:-2.804800pt;}
.ws3d{word-spacing:-1.720000pt;}
.ws71{word-spacing:0.000000pt;}
.ws7b{word-spacing:9.599467pt;}
.ws17{word-spacing:13.004800pt;}
.ws64{word-spacing:85.760000pt;}
.ws1{word-spacing:404.526933pt;}
._18{margin-left:-2.035200pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._c{width:17.899200pt;}
._8{width:19.006133pt;}
._9{width:20.335200pt;}
._e{width:21.676267pt;}
._f{width:23.449600pt;}
._7{width:24.768000pt;}
._16{width:25.917600pt;}
._b{width:27.783467pt;}
._13{width:28.942933pt;}
._12{width:30.064000pt;}
._1{width:32.000000pt;}
._11{width:35.249600pt;}
._15{width:36.236267pt;}
._6{width:37.660533pt;}
._d{width:38.763733pt;}
._5{width:39.987200pt;}
._17{width:40.915200pt;}
._10{width:43.842133pt;}
._1a{width:46.244533pt;}
._1b{width:48.047467pt;}
._14{width:49.210667pt;}
._19{width:60.352533pt;}
._a{width:63.731200pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:3.360000pt;}
.y63{bottom:3.388000pt;}
.y65{bottom:3.413333pt;}
.y7{bottom:3.974667pt;}
.y6a{bottom:4.173333pt;}
.y67{bottom:40.508000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y77{bottom:102.146667pt;}
.y52{bottom:107.908000pt;}
.y2f{bottom:108.388000pt;}
.y76{bottom:120.546667pt;}
.y51{bottom:126.308000pt;}
.y2e{bottom:126.788000pt;}
.y50{bottom:144.708000pt;}
.y2d{bottom:145.188000pt;}
.y75{bottom:157.666667pt;}
.y4f{bottom:163.108000pt;}
.y2c{bottom:163.588000pt;}
.y94{bottom:163.908000pt;}
.y74{bottom:176.066667pt;}
.y2b{bottom:181.988000pt;}
.y93{bottom:182.308000pt;}
.y73{bottom:194.466667pt;}
.y4e{bottom:200.066667pt;}
.y2a{bottom:200.388000pt;}
.y72{bottom:212.866667pt;}
.y4d{bottom:218.466667pt;}
.y29{bottom:218.788000pt;}
.y92{bottom:219.266667pt;}
.y71{bottom:231.266667pt;}
.y4c{bottom:236.866667pt;}
.y70{bottom:249.666667pt;}
.y4b{bottom:255.266667pt;}
.y28{bottom:255.908000pt;}
.y91{bottom:256.388000pt;}
.y6f{bottom:268.066667pt;}
.y4a{bottom:273.666667pt;}
.y27{bottom:274.308000pt;}
.y90{bottom:274.788000pt;}
.y6e{bottom:286.466667pt;}
.y26{bottom:292.706667pt;}
.y8f{bottom:293.188000pt;}
.y6d{bottom:304.866667pt;}
.y49{bottom:310.788000pt;}
.y25{bottom:311.108000pt;}
.y8e{bottom:311.588000pt;}
.y48{bottom:329.188000pt;}
.y24{bottom:329.508000pt;}
.y6c{bottom:341.826667pt;}
.y47{bottom:347.588000pt;}
.y23{bottom:347.908000pt;}
.y8d{bottom:348.706667pt;}
.y46{bottom:365.988000pt;}
.y22{bottom:366.308000pt;}
.y8c{bottom:367.108000pt;}
.y6b{bottom:378.946667pt;}
.y45{bottom:384.388000pt;}
.y21{bottom:384.706667pt;}
.y8b{bottom:385.508000pt;}
.ya2{bottom:401.508000pt;}
.y44{bottom:402.788000pt;}
.y69{bottom:412.533333pt;}
.y20{bottom:421.666667pt;}
.y8a{bottom:422.466667pt;}
.y68{bottom:432.333333pt;}
.ya1{bottom:438.466667pt;}
.y43{bottom:439.908000pt;}
.y1f{bottom:440.066667pt;}
.y89{bottom:440.866667pt;}
.y66{bottom:451.400000pt;}
.y1e{bottom:458.466667pt;}
.y88{bottom:459.266667pt;}
.ya0{bottom:475.588000pt;}
.y1d{bottom:476.866667pt;}
.y87{bottom:477.666667pt;}
.y9f{bottom:493.988000pt;}
.y1c{bottom:495.266667pt;}
.y86{bottom:496.066667pt;}
.y64{bottom:507.533333pt;}
.y1b{bottom:513.666667pt;}
.y42{bottom:513.988000pt;}
.y62{bottom:526.600000pt;}
.y9e{bottom:531.108000pt;}
.y41{bottom:532.388000pt;}
.y85{bottom:533.188000pt;}
.y60{bottom:545.666667pt;}
.y1a{bottom:550.788000pt;}
.y84{bottom:551.588000pt;}
.y9d{bottom:568.066667pt;}
.y19{bottom:569.188000pt;}
.y40{bottom:569.506667pt;}
.y83{bottom:569.988000pt;}
.y5f{bottom:586.788000pt;}
.y18{bottom:587.588000pt;}
.y82{bottom:588.388000pt;}
.y9c{bottom:605.188000pt;}
.y3f{bottom:606.466667pt;}
.y81{bottom:606.788000pt;}
.y5e{bottom:623.908000pt;}
.y17{bottom:624.706667pt;}
.y3e{bottom:624.866667pt;}
.y80{bottom:625.188000pt;}
.y5d{bottom:642.308000pt;}
.y16{bottom:643.108000pt;}
.y3d{bottom:643.266667pt;}
.y7f{bottom:643.588000pt;}
.y5c{bottom:660.706667pt;}
.y15{bottom:661.506667pt;}
.y3c{bottom:661.666667pt;}
.y7e{bottom:661.988000pt;}
.y5b{bottom:679.108000pt;}
.y9b{bottom:679.266667pt;}
.y14{bottom:679.906667pt;}
.y13{bottom:698.308000pt;}
.y3b{bottom:698.788000pt;}
.y7d{bottom:699.108000pt;}
.y5a{bottom:716.066667pt;}
.y9a{bottom:716.388000pt;}
.y12{bottom:716.706667pt;}
.y3a{bottom:717.188000pt;}
.y7c{bottom:717.506667pt;}
.y59{bottom:734.466667pt;}
.y99{bottom:734.788000pt;}
.y11{bottom:735.108000pt;}
.y39{bottom:735.588000pt;}
.y7b{bottom:735.906667pt;}
.y10{bottom:753.506667pt;}
.y7a{bottom:754.308000pt;}
.y58{bottom:771.588000pt;}
.yf{bottom:771.906667pt;}
.y38{bottom:772.706667pt;}
.y57{bottom:789.988000pt;}
.ye{bottom:790.306667pt;}
.y37{bottom:791.106667pt;}
.yd{bottom:808.706667pt;}
.y98{bottom:808.866667pt;}
.y36{bottom:809.506667pt;}
.y56{bottom:827.106667pt;}
.y35{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y97{bottom:845.988000pt;}
.y34{bottom:846.306667pt;}
.y55{bottom:864.066667pt;}
.y96{bottom:864.388000pt;}
.y33{bottom:864.706667pt;}
.y79{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y78{bottom:883.266667pt;}
.y54{bottom:901.188000pt;}
.y95{bottom:901.506667pt;}
.y32{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y31{bottom:920.066667pt;}
.y53{bottom:938.306667pt;}
.y30{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h6{height:19.000000pt;}
.h8{height:19.733333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h7{height:56.066667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w3{width:37.266667pt;}
.w4{width:178.333333pt;}
.w5{width:422.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.240000pt;}
.xa{left:106.200000pt;}
.x1{left:113.440000pt;}
.x9{left:117.440000pt;}
.x4{left:143.840000pt;}
.x5{left:189.760000pt;}
.xc{left:321.666667pt;}
.x3{left:414.066667pt;}
.x7{left:458.400000pt;}
.x6{left:609.600000pt;}
.x2{left:649.920000pt;}
.x8{left:688.160000pt;}
}




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