
    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_67e7bb2ddc7ab779303377ef.woff2')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_73034d50df26dd5ef7f8d690.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5a479387522d667f2b285304.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6e6a0928687f7e7b752e735b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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;}
}
.ws8{word-spacing:-55.944000px;}
.wsc{word-spacing:-38.806800px;}
.ws38{word-spacing:-38.663700px;}
.ws4{word-spacing:-38.655900px;}
.ws5a{word-spacing:-38.653200px;}
.ws72{word-spacing:-38.649600px;}
.ws3{word-spacing:-38.643300px;}
.ws28{word-spacing:-38.584800px;}
.ws8a{word-spacing:-38.448000px;}
.ws7e{word-spacing:-38.446800px;}
.ws87{word-spacing:-38.441700px;}
.ws43{word-spacing:-38.440800px;}
.ws8b{word-spacing:-38.435100px;}
.ws6d{word-spacing:-38.430900px;}
.ws4a{word-spacing:-38.430600px;}
.wsa{word-spacing:-38.370300px;}
.ws54{word-spacing:-38.354400px;}
.ws49{word-spacing:-38.154600px;}
.ws3c{word-spacing:-38.151900px;}
.ws53{word-spacing:-38.147400px;}
.ws20{word-spacing:-38.142000px;}
.ws21{word-spacing:-38.138700px;}
.ws2b{word-spacing:-38.136000px;}
.ws2{word-spacing:-38.081700px;}
.ws42{word-spacing:-37.947300px;}
.ws0{word-spacing:-37.944000px;}
.ws82{word-spacing:-37.941300px;}
.ws94{word-spacing:-37.937400px;}
.ws6c{word-spacing:-37.935000px;}
.ws8d{word-spacing:-37.932900px;}
.ws65{word-spacing:-37.927800px;}
.ws9{word-spacing:-37.722600px;}
.ws7{word-spacing:-37.716000px;}
.wsb{word-spacing:-37.710000px;}
.ws1b{word-spacing:-37.707300px;}
.ws8e{word-spacing:-37.705800px;}
.wsd{word-spacing:-37.699500px;}
.ws7f{word-spacing:-37.639800px;}
.ws6{word-spacing:-37.428900px;}
.ws86{word-spacing:-37.428300px;}
.ws91{word-spacing:-37.426500px;}
.ws1f{word-spacing:-37.425600px;}
.ws40{word-spacing:-37.374000px;}
.ws90{word-spacing:-37.224000px;}
.ws81{word-spacing:-37.215000px;}
.ws84{word-spacing:-37.212300px;}
.ws5{word-spacing:-37.200600px;}
.ws61{word-spacing:-36.495000px;}
.ws51{word-spacing:-36.481800px;}
.ws85{word-spacing:-36.288000px;}
.ws64{word-spacing:-35.990400px;}
.ws83{word-spacing:-35.063100px;}
.ws6e{word-spacing:-34.337400px;}
.ws4b{word-spacing:-34.326000px;}
.ws3b{word-spacing:-33.624000px;}
.ws68{word-spacing:-33.622200px;}
.ws5d{word-spacing:-33.613200px;}
.ws67{word-spacing:-33.588300px;}
.ws23{word-spacing:-33.120000px;}
.ws7d{word-spacing:-32.896800px;}
.ws34{word-spacing:-31.806900px;}
.ws56{word-spacing:-31.470000px;}
.ws5e{word-spacing:-31.468200px;}
.ws78{word-spacing:-31.458000px;}
.ws6f{word-spacing:-31.447800px;}
.ws93{word-spacing:-30.966000px;}
.ws59{word-spacing:-30.015000px;}
.ws76{word-spacing:-30.009600px;}
.ws5f{word-spacing:-29.302800px;}
.ws27{word-spacing:-29.291400px;}
.ws92{word-spacing:-28.584000px;}
.ws6b{word-spacing:-28.573200px;}
.ws1d{word-spacing:-28.359900px;}
.ws3d{word-spacing:-28.072800px;}
.ws1c{word-spacing:-28.071900px;}
.ws29{word-spacing:-28.069200px;}
.ws3f{word-spacing:-27.862200px;}
.ws2a{word-spacing:-27.142800px;}
.ws8f{word-spacing:-27.130500px;}
.ws3e{word-spacing:-27.064800px;}
.ws75{word-spacing:-26.920800px;}
.ws73{word-spacing:-26.919900px;}
.ws2d{word-spacing:-26.642400px;}
.ws2c{word-spacing:-26.640000px;}
.ws52{word-spacing:-26.422800px;}
.ws57{word-spacing:-26.409600px;}
.ws74{word-spacing:-26.344800px;}
.ws32{word-spacing:-25.920000px;}
.ws30{word-spacing:-25.918800px;}
.ws37{word-spacing:-25.916400px;}
.ws7a{word-spacing:-25.909200px;}
.ws31{word-spacing:-25.624800px;}
.ws7b{word-spacing:-25.200000px;}
.ws89{word-spacing:-24.261300px;}
.ws2e{word-spacing:-23.528700px;}
.ws5c{word-spacing:-23.526000px;}
.ws58{word-spacing:-22.824000px;}
.ws11{word-spacing:-22.604400px;}
.ws12{word-spacing:-22.107300px;}
.ws41{word-spacing:-22.098600px;}
.ws80{word-spacing:-22.083600px;}
.ws14{word-spacing:-21.600000px;}
.ws13{word-spacing:-21.304800px;}
.wsf{word-spacing:-20.874600px;}
.wse{word-spacing:-20.861100px;}
.ws8c{word-spacing:-20.663100px;}
.ws7c{word-spacing:-20.661300px;}
.ws24{word-spacing:-20.590200px;}
.ws46{word-spacing:-20.147400px;}
.ws48{word-spacing:-19.938600px;}
.ws69{word-spacing:-19.935000px;}
.ws6a{word-spacing:-19.715400px;}
.ws55{word-spacing:-19.438800px;}
.ws62{word-spacing:-19.228200px;}
.ws45{word-spacing:-19.211400px;}
.ws17{word-spacing:-18.286800px;}
.ws19{word-spacing:-17.989200px;}
.ws4d{word-spacing:-17.778600px;}
.ws88{word-spacing:-16.346400px;}
.ws25{word-spacing:-16.324200px;}
.ws77{word-spacing:-15.840600px;}
.ws15{word-spacing:-15.838800px;}
.ws22{word-spacing:-14.825700px;}
.ws60{word-spacing:-14.679000px;}
.ws66{word-spacing:-14.392800px;}
.ws44{word-spacing:-13.680000px;}
.ws35{word-spacing:-13.663800px;}
.ws4e{word-spacing:-11.514600px;}
.ws18{word-spacing:-10.587300px;}
.ws26{word-spacing:-10.582200px;}
.ws5b{word-spacing:-9.352800px;}
.ws16{word-spacing:-6.980400px;}
.ws63{word-spacing:-5.040600px;}
.ws1a{word-spacing:-3.163500px;}
.ws71{word-spacing:-1.440000px;}
.ws50{word-spacing:-1.417200px;}
.ws47{word-spacing:-0.491400px;}
.ws36{word-spacing:0.007200px;}
.ws70{word-spacing:0.714000px;}
.ws3a{word-spacing:1.656000px;}
.ws79{word-spacing:1.673400px;}
.ws4f{word-spacing:2.602500px;}
.ws39{word-spacing:2.880000px;}
.ws10{word-spacing:4.545000px;}
.ws33{word-spacing:8.214300px;}
.ws4c{word-spacing:10.306800px;}
.ws2f{word-spacing:15.118500px;}
.ws1e{word-spacing:17.503200px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.195200px;}
._0{width:1.076400px;}
._3{width:16.999200px;}
._1{width:18.968400px;}
._18{width:20.124000px;}
._17{width:21.214800px;}
._22{width:23.161800px;}
._e{width:24.186000px;}
._14{width:25.830900px;}
._1e{width:27.264600px;}
._c{width:28.602000px;}
._f{width:30.312000px;}
._11{width:31.539600px;}
._23{width:32.559600px;}
._6{width:34.560000px;}
._4{width:36.600300px;}
._1d{width:37.728000px;}
._9{width:38.805600px;}
._20{width:40.231200px;}
._7{width:41.512800px;}
._15{width:43.704000px;}
._1a{width:45.495600px;}
._a{width:46.590900px;}
._1f{width:48.301200px;}
._8{width:50.108400px;}
._21{width:52.416600px;}
._b{width:54.134100px;}
._1c{width:55.958400px;}
._16{width:57.312000px;}
._1b{width:59.570700px;}
._5{width:62.190000px;}
._13{width:65.301300px;}
._12{width:66.593700px;}
._19{width:67.730400px;}
._10{width:72.288000px;}
._d{width:74.502000px;}
._26{width:82.800000px;}
._24{width:100.800000px;}
._25{width:118.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y6f{bottom:100.696500px;}
.y51{bottom:101.236500px;}
.y27{bottom:120.136500px;}
.y6e{bottom:121.396500px;}
.y50{bottom:121.936500px;}
.y26{bottom:140.836500px;}
.y6d{bottom:142.096500px;}
.y25{bottom:161.536500px;}
.y6c{bottom:162.796500px;}
.y4f{bottom:163.696500px;}
.y24{bottom:182.236500px;}
.y6b{bottom:183.496500px;}
.y23{bottom:202.936500px;}
.y6a{bottom:204.196500px;}
.y4e{bottom:205.275000px;}
.y22{bottom:223.636500px;}
.y4d{bottom:225.975000px;}
.y69{bottom:245.775000px;}
.y4c{bottom:246.675000px;}
.y21{bottom:265.215000px;}
.y4b{bottom:267.375000px;}
.y20{bottom:285.915000px;}
.y4a{bottom:288.075000px;}
.y1f{bottom:306.615000px;}
.y68{bottom:329.295000px;}
.y49{bottom:329.836500px;}
.y1e{bottom:348.375000px;}
.y67{bottom:349.996500px;}
.y48{bottom:350.536500px;}
.y1d{bottom:369.075000px;}
.y66{bottom:370.696500px;}
.y47{bottom:371.236500px;}
.y1c{bottom:389.775000px;}
.y65{bottom:391.396500px;}
.y46{bottom:391.936500px;}
.y1b{bottom:410.475000px;}
.y64{bottom:412.096500px;}
.y45{bottom:412.636500px;}
.y1a{bottom:431.175000px;}
.y63{bottom:432.795000px;}
.y44{bottom:433.336500px;}
.y19{bottom:451.875000px;}
.y18{bottom:472.575000px;}
.y62{bottom:474.375000px;}
.y43{bottom:475.096500px;}
.y17{bottom:493.275000px;}
.y42{bottom:495.796500px;}
.y16{bottom:513.975000px;}
.y61{bottom:516.136500px;}
.y41{bottom:516.496500px;}
.y15{bottom:534.675000px;}
.y60{bottom:536.836500px;}
.y40{bottom:537.195000px;}
.y14{bottom:555.375000px;}
.y5f{bottom:557.536500px;}
.y3f{bottom:557.896500px;}
.y5e{bottom:578.236500px;}
.y3e{bottom:578.596500px;}
.y13{bottom:597.136500px;}
.y5d{bottom:598.936500px;}
.y12{bottom:617.836500px;}
.y5c{bottom:619.636500px;}
.y3d{bottom:620.175000px;}
.y79{bottom:620.896500px;}
.y11{bottom:638.536500px;}
.y5b{bottom:640.336500px;}
.y3c{bottom:640.875000px;}
.y78{bottom:641.596500px;}
.y3b{bottom:661.575000px;}
.y77{bottom:662.295000px;}
.y5a{bottom:682.096500px;}
.y3a{bottom:682.275000px;}
.y76{bottom:682.996500px;}
.y39{bottom:702.975000px;}
.y75{bottom:703.695000px;}
.y59{bottom:723.675000px;}
.y74{bottom:724.396500px;}
.y10{bottom:742.936500px;}
.y58{bottom:744.375000px;}
.y38{bottom:744.736500px;}
.y73{bottom:745.096500px;}
.y57{bottom:765.075000px;}
.y37{bottom:765.436500px;}
.y72{bottom:765.795000px;}
.yf{bottom:784.695000px;}
.y56{bottom:785.775000px;}
.y36{bottom:786.136500px;}
.y71{bottom:786.496500px;}
.y55{bottom:806.475000px;}
.y70{bottom:807.195000px;}
.ye{bottom:826.275000px;}
.y54{bottom:827.175000px;}
.y35{bottom:827.895000px;}
.y34{bottom:848.596500px;}
.yd{bottom:868.036500px;}
.y53{bottom:868.936500px;}
.y33{bottom:869.295000px;}
.y32{bottom:889.995000px;}
.yc{bottom:909.795000px;}
.y31{bottom:910.695000px;}
.yb{bottom:930.495000px;}
.y30{bottom:931.395000px;}
.ya{bottom:951.195000px;}
.y2f{bottom:952.095000px;}
.y2e{bottom:972.795000px;}
.y9{bottom:992.775000px;}
.y2d{bottom:993.495000px;}
.y2c{bottom:1014.195000px;}
.y8{bottom:1034.536500px;}
.y2b{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y2a{bottom:1076.475000px;}
.y52{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x2{left:160.560000px;}
.xc{left:182.160000px;}
.xd{left:199.080000px;}
.xb{left:327.960000px;}
.x9{left:338.400000px;}
.x8{left:343.800000px;}
.x5{left:349.380000px;}
.x6{left:353.338500px;}
.xe{left:355.138500px;}
.x7{left:360.360000px;}
.xa{left:379.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-49.728000pt;}
.wsc{word-spacing:-34.494933pt;}
.ws38{word-spacing:-34.367733pt;}
.ws4{word-spacing:-34.360800pt;}
.ws5a{word-spacing:-34.358400pt;}
.ws72{word-spacing:-34.355200pt;}
.ws3{word-spacing:-34.349600pt;}
.ws28{word-spacing:-34.297600pt;}
.ws8a{word-spacing:-34.176000pt;}
.ws7e{word-spacing:-34.174933pt;}
.ws87{word-spacing:-34.170400pt;}
.ws43{word-spacing:-34.169600pt;}
.ws8b{word-spacing:-34.164533pt;}
.ws6d{word-spacing:-34.160800pt;}
.ws4a{word-spacing:-34.160533pt;}
.wsa{word-spacing:-34.106933pt;}
.ws54{word-spacing:-34.092800pt;}
.ws49{word-spacing:-33.915200pt;}
.ws3c{word-spacing:-33.912800pt;}
.ws53{word-spacing:-33.908800pt;}
.ws20{word-spacing:-33.904000pt;}
.ws21{word-spacing:-33.901067pt;}
.ws2b{word-spacing:-33.898667pt;}
.ws2{word-spacing:-33.850400pt;}
.ws42{word-spacing:-33.730933pt;}
.ws0{word-spacing:-33.728000pt;}
.ws82{word-spacing:-33.725600pt;}
.ws94{word-spacing:-33.722133pt;}
.ws6c{word-spacing:-33.720000pt;}
.ws8d{word-spacing:-33.718133pt;}
.ws65{word-spacing:-33.713600pt;}
.ws9{word-spacing:-33.531200pt;}
.ws7{word-spacing:-33.525333pt;}
.wsb{word-spacing:-33.520000pt;}
.ws1b{word-spacing:-33.517600pt;}
.ws8e{word-spacing:-33.516267pt;}
.wsd{word-spacing:-33.510667pt;}
.ws7f{word-spacing:-33.457600pt;}
.ws6{word-spacing:-33.270133pt;}
.ws86{word-spacing:-33.269600pt;}
.ws91{word-spacing:-33.268000pt;}
.ws1f{word-spacing:-33.267200pt;}
.ws40{word-spacing:-33.221333pt;}
.ws90{word-spacing:-33.088000pt;}
.ws81{word-spacing:-33.080000pt;}
.ws84{word-spacing:-33.077600pt;}
.ws5{word-spacing:-33.067200pt;}
.ws61{word-spacing:-32.440000pt;}
.ws51{word-spacing:-32.428267pt;}
.ws85{word-spacing:-32.256000pt;}
.ws64{word-spacing:-31.991467pt;}
.ws83{word-spacing:-31.167200pt;}
.ws6e{word-spacing:-30.522133pt;}
.ws4b{word-spacing:-30.512000pt;}
.ws3b{word-spacing:-29.888000pt;}
.ws68{word-spacing:-29.886400pt;}
.ws5d{word-spacing:-29.878400pt;}
.ws67{word-spacing:-29.856267pt;}
.ws23{word-spacing:-29.440000pt;}
.ws7d{word-spacing:-29.241600pt;}
.ws34{word-spacing:-28.272800pt;}
.ws56{word-spacing:-27.973333pt;}
.ws5e{word-spacing:-27.971733pt;}
.ws78{word-spacing:-27.962667pt;}
.ws6f{word-spacing:-27.953600pt;}
.ws93{word-spacing:-27.525333pt;}
.ws59{word-spacing:-26.680000pt;}
.ws76{word-spacing:-26.675200pt;}
.ws5f{word-spacing:-26.046933pt;}
.ws27{word-spacing:-26.036800pt;}
.ws92{word-spacing:-25.408000pt;}
.ws6b{word-spacing:-25.398400pt;}
.ws1d{word-spacing:-25.208800pt;}
.ws3d{word-spacing:-24.953600pt;}
.ws1c{word-spacing:-24.952800pt;}
.ws29{word-spacing:-24.950400pt;}
.ws3f{word-spacing:-24.766400pt;}
.ws2a{word-spacing:-24.126933pt;}
.ws8f{word-spacing:-24.116000pt;}
.ws3e{word-spacing:-24.057600pt;}
.ws75{word-spacing:-23.929600pt;}
.ws73{word-spacing:-23.928800pt;}
.ws2d{word-spacing:-23.682133pt;}
.ws2c{word-spacing:-23.680000pt;}
.ws52{word-spacing:-23.486933pt;}
.ws57{word-spacing:-23.475200pt;}
.ws74{word-spacing:-23.417600pt;}
.ws32{word-spacing:-23.040000pt;}
.ws30{word-spacing:-23.038933pt;}
.ws37{word-spacing:-23.036800pt;}
.ws7a{word-spacing:-23.030400pt;}
.ws31{word-spacing:-22.777600pt;}
.ws7b{word-spacing:-22.400000pt;}
.ws89{word-spacing:-21.565600pt;}
.ws2e{word-spacing:-20.914400pt;}
.ws5c{word-spacing:-20.912000pt;}
.ws58{word-spacing:-20.288000pt;}
.ws11{word-spacing:-20.092800pt;}
.ws12{word-spacing:-19.650933pt;}
.ws41{word-spacing:-19.643200pt;}
.ws80{word-spacing:-19.629867pt;}
.ws14{word-spacing:-19.200000pt;}
.ws13{word-spacing:-18.937600pt;}
.wsf{word-spacing:-18.555200pt;}
.wse{word-spacing:-18.543200pt;}
.ws8c{word-spacing:-18.367200pt;}
.ws7c{word-spacing:-18.365600pt;}
.ws24{word-spacing:-18.302400pt;}
.ws46{word-spacing:-17.908800pt;}
.ws48{word-spacing:-17.723200pt;}
.ws69{word-spacing:-17.720000pt;}
.ws6a{word-spacing:-17.524800pt;}
.ws55{word-spacing:-17.278933pt;}
.ws62{word-spacing:-17.091733pt;}
.ws45{word-spacing:-17.076800pt;}
.ws17{word-spacing:-16.254933pt;}
.ws19{word-spacing:-15.990400pt;}
.ws4d{word-spacing:-15.803200pt;}
.ws88{word-spacing:-14.530133pt;}
.ws25{word-spacing:-14.510400pt;}
.ws77{word-spacing:-14.080533pt;}
.ws15{word-spacing:-14.078933pt;}
.ws22{word-spacing:-13.178400pt;}
.ws60{word-spacing:-13.048000pt;}
.ws66{word-spacing:-12.793600pt;}
.ws44{word-spacing:-12.160000pt;}
.ws35{word-spacing:-12.145600pt;}
.ws4e{word-spacing:-10.235200pt;}
.ws18{word-spacing:-9.410933pt;}
.ws26{word-spacing:-9.406400pt;}
.ws5b{word-spacing:-8.313600pt;}
.ws16{word-spacing:-6.204800pt;}
.ws63{word-spacing:-4.480533pt;}
.ws1a{word-spacing:-2.812000pt;}
.ws71{word-spacing:-1.280000pt;}
.ws50{word-spacing:-1.259733pt;}
.ws47{word-spacing:-0.436800pt;}
.ws36{word-spacing:0.006400pt;}
.ws70{word-spacing:0.634667pt;}
.ws3a{word-spacing:1.472000pt;}
.ws79{word-spacing:1.487467pt;}
.ws4f{word-spacing:2.313333pt;}
.ws39{word-spacing:2.560000pt;}
.ws10{word-spacing:4.040000pt;}
.ws33{word-spacing:7.301600pt;}
.ws4c{word-spacing:9.161600pt;}
.ws2f{word-spacing:13.438667pt;}
.ws1e{word-spacing:15.558400pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.062400pt;}
._0{width:0.956800pt;}
._3{width:15.110400pt;}
._1{width:16.860800pt;}
._18{width:17.888000pt;}
._17{width:18.857600pt;}
._22{width:20.588267pt;}
._e{width:21.498667pt;}
._14{width:22.960800pt;}
._1e{width:24.235200pt;}
._c{width:25.424000pt;}
._f{width:26.944000pt;}
._11{width:28.035200pt;}
._23{width:28.941867pt;}
._6{width:30.720000pt;}
._4{width:32.533600pt;}
._1d{width:33.536000pt;}
._9{width:34.493867pt;}
._20{width:35.761067pt;}
._7{width:36.900267pt;}
._15{width:38.848000pt;}
._1a{width:40.440533pt;}
._a{width:41.414133pt;}
._1f{width:42.934400pt;}
._8{width:44.540800pt;}
._21{width:46.592533pt;}
._b{width:48.119200pt;}
._1c{width:49.740800pt;}
._16{width:50.944000pt;}
._1b{width:52.951733pt;}
._5{width:55.280000pt;}
._13{width:58.045600pt;}
._12{width:59.194400pt;}
._19{width:60.204800pt;}
._10{width:64.256000pt;}
._d{width:66.224000pt;}
._26{width:73.600000pt;}
._24{width:89.600000pt;}
._25{width:105.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y6f{bottom:89.508000pt;}
.y51{bottom:89.988000pt;}
.y27{bottom:106.788000pt;}
.y6e{bottom:107.908000pt;}
.y50{bottom:108.388000pt;}
.y26{bottom:125.188000pt;}
.y6d{bottom:126.308000pt;}
.y25{bottom:143.588000pt;}
.y6c{bottom:144.708000pt;}
.y4f{bottom:145.508000pt;}
.y24{bottom:161.988000pt;}
.y6b{bottom:163.108000pt;}
.y23{bottom:180.388000pt;}
.y6a{bottom:181.508000pt;}
.y4e{bottom:182.466667pt;}
.y22{bottom:198.788000pt;}
.y4d{bottom:200.866667pt;}
.y69{bottom:218.466667pt;}
.y4c{bottom:219.266667pt;}
.y21{bottom:235.746667pt;}
.y4b{bottom:237.666667pt;}
.y20{bottom:254.146667pt;}
.y4a{bottom:256.066667pt;}
.y1f{bottom:272.546667pt;}
.y68{bottom:292.706667pt;}
.y49{bottom:293.188000pt;}
.y1e{bottom:309.666667pt;}
.y67{bottom:311.108000pt;}
.y48{bottom:311.588000pt;}
.y1d{bottom:328.066667pt;}
.y66{bottom:329.508000pt;}
.y47{bottom:329.988000pt;}
.y1c{bottom:346.466667pt;}
.y65{bottom:347.908000pt;}
.y46{bottom:348.388000pt;}
.y1b{bottom:364.866667pt;}
.y64{bottom:366.308000pt;}
.y45{bottom:366.788000pt;}
.y1a{bottom:383.266667pt;}
.y63{bottom:384.706667pt;}
.y44{bottom:385.188000pt;}
.y19{bottom:401.666667pt;}
.y18{bottom:420.066667pt;}
.y62{bottom:421.666667pt;}
.y43{bottom:422.308000pt;}
.y17{bottom:438.466667pt;}
.y42{bottom:440.708000pt;}
.y16{bottom:456.866667pt;}
.y61{bottom:458.788000pt;}
.y41{bottom:459.108000pt;}
.y15{bottom:475.266667pt;}
.y60{bottom:477.188000pt;}
.y40{bottom:477.506667pt;}
.y14{bottom:493.666667pt;}
.y5f{bottom:495.588000pt;}
.y3f{bottom:495.908000pt;}
.y5e{bottom:513.988000pt;}
.y3e{bottom:514.308000pt;}
.y13{bottom:530.788000pt;}
.y5d{bottom:532.388000pt;}
.y12{bottom:549.188000pt;}
.y5c{bottom:550.788000pt;}
.y3d{bottom:551.266667pt;}
.y79{bottom:551.908000pt;}
.y11{bottom:567.588000pt;}
.y5b{bottom:569.188000pt;}
.y3c{bottom:569.666667pt;}
.y78{bottom:570.308000pt;}
.y3b{bottom:588.066667pt;}
.y77{bottom:588.706667pt;}
.y5a{bottom:606.308000pt;}
.y3a{bottom:606.466667pt;}
.y76{bottom:607.108000pt;}
.y39{bottom:624.866667pt;}
.y75{bottom:625.506667pt;}
.y59{bottom:643.266667pt;}
.y74{bottom:643.908000pt;}
.y10{bottom:660.388000pt;}
.y58{bottom:661.666667pt;}
.y38{bottom:661.988000pt;}
.y73{bottom:662.308000pt;}
.y57{bottom:680.066667pt;}
.y37{bottom:680.388000pt;}
.y72{bottom:680.706667pt;}
.yf{bottom:697.506667pt;}
.y56{bottom:698.466667pt;}
.y36{bottom:698.788000pt;}
.y71{bottom:699.108000pt;}
.y55{bottom:716.866667pt;}
.y70{bottom:717.506667pt;}
.ye{bottom:734.466667pt;}
.y54{bottom:735.266667pt;}
.y35{bottom:735.906667pt;}
.y34{bottom:754.308000pt;}
.yd{bottom:771.588000pt;}
.y53{bottom:772.388000pt;}
.y33{bottom:772.706667pt;}
.y32{bottom:791.106667pt;}
.yc{bottom:808.706667pt;}
.y31{bottom:809.506667pt;}
.yb{bottom:827.106667pt;}
.y30{bottom:827.906667pt;}
.ya{bottom:845.506667pt;}
.y2f{bottom:846.306667pt;}
.y2e{bottom:864.706667pt;}
.y9{bottom:882.466667pt;}
.y2d{bottom:883.106667pt;}
.y2c{bottom:901.506667pt;}
.y8{bottom:919.588000pt;}
.y2b{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y2a{bottom:956.866667pt;}
.y52{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x2{left:142.720000pt;}
.xc{left:161.920000pt;}
.xd{left:176.960000pt;}
.xb{left:291.520000pt;}
.x9{left:300.800000pt;}
.x8{left:305.600000pt;}
.x5{left:310.560000pt;}
.x6{left:314.078667pt;}
.xe{left:315.678667pt;}
.x7{left:320.320000pt;}
.xa{left:336.960000pt;}
}




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