
    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_35e29e368a65c0acecc29466.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_0586f6f01257208f0527d53f.woff')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_753896b303a9e3ac1d2641ab.woff')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_dd5d9257b91d64479dd62918.woff')format("woff");}.ff4{font-family:ff4;line-height:0.709473;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;}
.ls1{letter-spacing:18.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;}
}
.ws3{word-spacing:-55.944000px;}
.ws5{word-spacing:-38.652300px;}
.ws37{word-spacing:-38.446800px;}
.ws97{word-spacing:-38.444400px;}
.ws68{word-spacing:-38.435400px;}
.ws1d{word-spacing:-38.304000px;}
.ws9b{word-spacing:-38.163300px;}
.ws93{word-spacing:-38.160000px;}
.ws28{word-spacing:-38.156400px;}
.ws4{word-spacing:-38.154000px;}
.ws89{word-spacing:-38.152800px;}
.ws8a{word-spacing:-38.141400px;}
.ws2{word-spacing:-38.081700px;}
.ws7{word-spacing:-38.080800px;}
.ws0{word-spacing:-37.944000px;}
.ws2b{word-spacing:-37.940400px;}
.ws7f{word-spacing:-37.939200px;}
.ws91{word-spacing:-37.938600px;}
.ws59{word-spacing:-37.937400px;}
.ws9a{word-spacing:-37.934100px;}
.ws6{word-spacing:-37.867500px;}
.ws85{word-spacing:-37.713600px;}
.ws95{word-spacing:-37.641600px;}
.ws90{word-spacing:-37.639800px;}
.ws21{word-spacing:-37.565100px;}
.wsf{word-spacing:-37.440000px;}
.ws53{word-spacing:-37.211400px;}
.ws49{word-spacing:-37.004400px;}
.ws77{word-spacing:-37.001400px;}
.ws67{word-spacing:-36.270000px;}
.ws27{word-spacing:-35.996400px;}
.ws6e{word-spacing:-35.280000px;}
.ws19{word-spacing:-35.266800px;}
.ws7a{word-spacing:-35.064000px;}
.ws3f{word-spacing:-34.843200px;}
.ws8d{word-spacing:-33.840000px;}
.ws41{word-spacing:-32.896800px;}
.ws79{word-spacing:-31.671000px;}
.ws81{word-spacing:-31.456800px;}
.ws3a{word-spacing:-31.246800px;}
.wsd{word-spacing:-30.960000px;}
.ws72{word-spacing:-30.740400px;}
.ws86{word-spacing:-30.730500px;}
.ws32{word-spacing:-30.704400px;}
.ws78{word-spacing:-30.021000px;}
.ws65{word-spacing:-30.013200px;}
.ws98{word-spacing:-29.303100px;}
.ws52{word-spacing:-28.569600px;}
.ws57{word-spacing:-27.864000px;}
.ws5d{word-spacing:-27.861000px;}
.ws83{word-spacing:-27.853200px;}
.ws33{word-spacing:-27.366000px;}
.wsb{word-spacing:-27.131400px;}
.ws6b{word-spacing:-26.182200px;}
.ws43{word-spacing:-25.922400px;}
.ws31{word-spacing:-25.699200px;}
.ws9c{word-spacing:-25.686000px;}
.ws75{word-spacing:-24.474600px;}
.ws24{word-spacing:-24.268200px;}
.ws69{word-spacing:-24.264000px;}
.ws13{word-spacing:-24.256800px;}
.ws39{word-spacing:-24.255000px;}
.ws3e{word-spacing:-24.250500px;}
.ws76{word-spacing:-23.539200px;}
.ws7b{word-spacing:-22.811400px;}
.ws4a{word-spacing:-22.803300px;}
.ws8f{word-spacing:-22.606200px;}
.ws2e{word-spacing:-22.600800px;}
.ws74{word-spacing:-22.590000px;}
.ws4c{word-spacing:-22.104000px;}
.ws70{word-spacing:-22.102800px;}
.ws4b{word-spacing:-22.102200px;}
.ws11{word-spacing:-22.089600px;}
.ws10{word-spacing:-21.591900px;}
.ws2f{word-spacing:-21.387300px;}
.ws84{word-spacing:-21.375000px;}
.ws22{word-spacing:-20.660400px;}
.ws51{word-spacing:-20.158800px;}
.ws4d{word-spacing:-19.938600px;}
.ws82{word-spacing:-19.440000px;}
.ws26{word-spacing:-19.204200px;}
.ws2a{word-spacing:-18.495000px;}
.ws1c{word-spacing:-18.481500px;}
.ws5e{word-spacing:-18.285900px;}
.ws29{word-spacing:-17.783100px;}
.ws6d{word-spacing:-17.782800px;}
.ws62{word-spacing:-17.566200px;}
.ws23{word-spacing:-16.337400px;}
.ws80{word-spacing:-16.336800px;}
.ws66{word-spacing:-16.333800px;}
.ws2c{word-spacing:-15.621000px;}
.ws4f{word-spacing:-15.615900px;}
.ws5c{word-spacing:-15.615600px;}
.ws5b{word-spacing:-15.545700px;}
.ws4e{word-spacing:-15.400800px;}
.ws44{word-spacing:-15.399000px;}
.ws54{word-spacing:-15.126000px;}
.ws2d{word-spacing:-15.109200px;}
.ws87{word-spacing:-14.904000px;}
.ws25{word-spacing:-14.880000px;}
.ws6c{word-spacing:-14.184000px;}
.ws34{word-spacing:-14.172000px;}
.ws6a{word-spacing:-13.438800px;}
.ws58{word-spacing:-13.246800px;}
.ws9{word-spacing:-12.956400px;}
.ws50{word-spacing:-12.528000px;}
.ws8e{word-spacing:-12.240000px;}
.ws8{word-spacing:-12.221100px;}
.ws12{word-spacing:-12.004200px;}
.ws64{word-spacing:-12.000000px;}
.ws47{word-spacing:-11.520000px;}
.ws46{word-spacing:-11.302200px;}
.ws3c{word-spacing:-11.296800px;}
.ws45{word-spacing:-11.079000px;}
.ws88{word-spacing:-10.571400px;}
.wsa{word-spacing:-10.570500px;}
.ws30{word-spacing:-10.360800px;}
.ws8b{word-spacing:-10.086000px;}
.ws7c{word-spacing:-9.356400px;}
.ws7d{word-spacing:-9.136800px;}
.ws61{word-spacing:-8.611200px;}
.ws40{word-spacing:-8.400000px;}
.ws3d{word-spacing:-8.393100px;}
.ws6f{word-spacing:-8.179200px;}
.ws63{word-spacing:-6.760800px;}
.ws42{word-spacing:-5.760000px;}
.ws96{word-spacing:-4.326000px;}
.ws18{word-spacing:-2.152800px;}
.ws1a{word-spacing:-0.850500px;}
.ws5a{word-spacing:-0.501000px;}
.ws5f{word-spacing:0.000000px;}
.ws7e{word-spacing:0.943200px;}
.ws36{word-spacing:2.595600px;}
.ws15{word-spacing:3.464100px;}
.ws94{word-spacing:3.810000px;}
.ws60{word-spacing:3.828000px;}
.ws14{word-spacing:3.837600px;}
.ws48{word-spacing:5.052600px;}
.wse{word-spacing:5.978100px;}
.ws71{word-spacing:7.429200px;}
.ws38{word-spacing:8.872200px;}
.ws3b{word-spacing:11.552400px;}
.wsc{word-spacing:12.466800px;}
.ws73{word-spacing:12.685800px;}
.ws8c{word-spacing:12.960000px;}
.ws92{word-spacing:13.906800px;}
.ws99{word-spacing:17.354700px;}
.ws1b{word-spacing:19.435800px;}
.ws35{word-spacing:23.975400px;}
.ws16{word-spacing:25.417800px;}
.ws17{word-spacing:38.461500px;}
.ws1f{word-spacing:41.628900px;}
.ws1e{word-spacing:42.492900px;}
.ws20{word-spacing:43.727100px;}
.ws56{word-spacing:1013.982000px;}
.ws55{word-spacing:1013.988900px;}
.ws1{word-spacing:1037.484900px;}
._17{margin-left:-2.034000px;}
._3{margin-left:-1.024200px;}
._0{width:1.076400px;}
._26{width:2.238000px;}
._a{width:17.368200px;}
._1{width:18.968400px;}
._21{width:20.160000px;}
._10{width:21.738000px;}
._1e{width:24.472800px;}
._2c{width:25.563600px;}
._8{width:26.595000px;}
._28{width:27.603000px;}
._23{width:29.088000px;}
._6{width:30.581400px;}
._19{width:31.633200px;}
._15{width:32.836200px;}
._2a{width:33.846600px;}
._b{width:34.931700px;}
._2{width:36.123600px;}
._22{width:37.434600px;}
._13{width:38.509200px;}
._25{width:39.545400px;}
._29{width:40.646400px;}
._16{width:42.288000px;}
._1a{width:43.512000px;}
._4{width:45.049500px;}
._5{width:47.074500px;}
._18{width:48.624300px;}
._27{width:50.365800px;}
._1f{width:51.411600px;}
._2e{width:52.716000px;}
._f{width:55.152000px;}
._11{width:56.300400px;}
._24{width:58.068000px;}
._1c{width:59.544000px;}
._c{width:60.787800px;}
._20{width:62.195400px;}
._9{width:63.285300px;}
._2b{width:64.656000px;}
._1d{width:66.079800px;}
._7{width:69.496200px;}
._2d{width:71.341200px;}
._2f{width:74.433900px;}
._12{width:76.536000px;}
._1b{width:81.288600px;}
._d{width:82.794000px;}
._e{width:95.635800px;}
._14{width:100.872000px;}
.fc3{color:rgb(79,129,189);}
.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;}
.y58{bottom:102.855000px;}
.y7d{bottom:103.215000px;}
.y2a{bottom:121.036500px;}
.y57{bottom:123.555000px;}
.y7c{bottom:123.915000px;}
.y29{bottom:141.736500px;}
.y56{bottom:144.255000px;}
.y7b{bottom:144.615000px;}
.y55{bottom:164.955000px;}
.y7a{bottom:165.315000px;}
.y28{bottom:183.315000px;}
.y54{bottom:185.655000px;}
.y79{bottom:186.015000px;}
.y27{bottom:204.015000px;}
.y26{bottom:224.715000px;}
.y53{bottom:227.236500px;}
.y78{bottom:227.596500px;}
.y25{bottom:245.415000px;}
.y52{bottom:247.936500px;}
.y77{bottom:248.295000px;}
.y24{bottom:266.115000px;}
.y51{bottom:268.636500px;}
.y76{bottom:268.996500px;}
.y23{bottom:286.815000px;}
.y50{bottom:289.336500px;}
.y22{bottom:307.515000px;}
.y4f{bottom:310.036500px;}
.y75{bottom:310.575000px;}
.y4e{bottom:330.736500px;}
.y74{bottom:331.275000px;}
.y21{bottom:349.275000px;}
.y4d{bottom:351.436500px;}
.y73{bottom:351.975000px;}
.y20{bottom:369.975000px;}
.y4c{bottom:372.136500px;}
.y72{bottom:372.675000px;}
.y1f{bottom:390.675000px;}
.y4b{bottom:392.836500px;}
.y71{bottom:393.375000px;}
.y4a{bottom:413.536500px;}
.y1e{bottom:432.436500px;}
.y49{bottom:434.236500px;}
.y70{bottom:435.136500px;}
.y1d{bottom:453.136500px;}
.y48{bottom:454.936500px;}
.y6f{bottom:455.836500px;}
.y1c{bottom:473.836500px;}
.y47{bottom:475.636500px;}
.y6e{bottom:476.536500px;}
.y1b{bottom:494.536500px;}
.y46{bottom:496.336500px;}
.y6d{bottom:497.236500px;}
.y1a{bottom:515.236500px;}
.y45{bottom:517.036500px;}
.y6c{bottom:517.936500px;}
.y19{bottom:535.936500px;}
.y44{bottom:537.736500px;}
.y6b{bottom:538.636500px;}
.y18{bottom:556.636500px;}
.y43{bottom:558.436500px;}
.y6a{bottom:559.336500px;}
.y17{bottom:577.336500px;}
.y42{bottom:579.136500px;}
.y69{bottom:580.036500px;}
.y16{bottom:598.036500px;}
.y41{bottom:599.836500px;}
.y68{bottom:600.736500px;}
.y15{bottom:618.736500px;}
.y40{bottom:620.536500px;}
.y67{bottom:621.436500px;}
.y14{bottom:639.436500px;}
.y66{bottom:642.136500px;}
.y13{bottom:660.136500px;}
.y8c{bottom:660.675000px;}
.y3f{bottom:662.295000px;}
.y65{bottom:662.836500px;}
.y8b{bottom:681.375000px;}
.y3e{bottom:682.996500px;}
.y64{bottom:683.536500px;}
.y12{bottom:701.715000px;}
.y3d{bottom:703.695000px;}
.y63{bottom:704.236500px;}
.y11{bottom:722.415000px;}
.y8a{bottom:723.136500px;}
.y3c{bottom:724.396500px;}
.y62{bottom:724.936500px;}
.y10{bottom:743.115000px;}
.y89{bottom:743.836500px;}
.y3b{bottom:745.096500px;}
.y61{bottom:745.636500px;}
.yf{bottom:763.815000px;}
.y88{bottom:764.536500px;}
.y3a{bottom:765.795000px;}
.y60{bottom:766.336500px;}
.ye{bottom:784.515000px;}
.y39{bottom:786.496500px;}
.y5f{bottom:787.036500px;}
.yd{bottom:805.215000px;}
.y87{bottom:806.295000px;}
.y38{bottom:807.195000px;}
.y5e{bottom:807.736500px;}
.yc{bottom:825.915000px;}
.y86{bottom:826.996500px;}
.y37{bottom:827.895000px;}
.y5d{bottom:828.436500px;}
.y85{bottom:847.695000px;}
.y36{bottom:848.596500px;}
.y5c{bottom:849.136500px;}
.yb{bottom:867.675000px;}
.y5b{bottom:869.836500px;}
.ya{bottom:888.375000px;}
.y84{bottom:889.275000px;}
.y5a{bottom:890.536500px;}
.y83{bottom:909.975000px;}
.y59{bottom:911.236500px;}
.y35{bottom:931.936500px;}
.y82{bottom:951.736500px;}
.y34{bottom:952.636500px;}
.y81{bottom:972.436500px;}
.y33{bottom:973.336500px;}
.y9{bottom:992.775000px;}
.y80{bottom:993.136500px;}
.y32{bottom:994.036500px;}
.y31{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y7f{bottom:1034.895000px;}
.y30{bottom:1035.436500px;}
.y2f{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y7e{bottom:1076.475000px;}
.y2e{bottom:1076.836500px;}
.y2d{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2c{bottom:1118.236500px;}
.y2b{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;}
.xa{left:153.900000px;}
.xe{left:156.600000px;}
.x2{left:160.560000px;}
.xf{left:170.100000px;}
.xd{left:183.600000px;}
.xc{left:188.100000px;}
.x6{left:213.300000px;}
.xb{left:271.260000px;}
.x7{left:292.138500px;}
.x10{left:323.100000px;}
.x9{left:335.880000px;}
.x8{left:361.080000px;}
.x5{left:445.138500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:16.000000pt;}
.ws3{word-spacing:-49.728000pt;}
.ws5{word-spacing:-34.357600pt;}
.ws37{word-spacing:-34.174933pt;}
.ws97{word-spacing:-34.172800pt;}
.ws68{word-spacing:-34.164800pt;}
.ws1d{word-spacing:-34.048000pt;}
.ws9b{word-spacing:-33.922933pt;}
.ws93{word-spacing:-33.920000pt;}
.ws28{word-spacing:-33.916800pt;}
.ws4{word-spacing:-33.914667pt;}
.ws89{word-spacing:-33.913600pt;}
.ws8a{word-spacing:-33.903467pt;}
.ws2{word-spacing:-33.850400pt;}
.ws7{word-spacing:-33.849600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2b{word-spacing:-33.724800pt;}
.ws7f{word-spacing:-33.723733pt;}
.ws91{word-spacing:-33.723200pt;}
.ws59{word-spacing:-33.722133pt;}
.ws9a{word-spacing:-33.719200pt;}
.ws6{word-spacing:-33.660000pt;}
.ws85{word-spacing:-33.523200pt;}
.ws95{word-spacing:-33.459200pt;}
.ws90{word-spacing:-33.457600pt;}
.ws21{word-spacing:-33.391200pt;}
.wsf{word-spacing:-33.280000pt;}
.ws53{word-spacing:-33.076800pt;}
.ws49{word-spacing:-32.892800pt;}
.ws77{word-spacing:-32.890133pt;}
.ws67{word-spacing:-32.240000pt;}
.ws27{word-spacing:-31.996800pt;}
.ws6e{word-spacing:-31.360000pt;}
.ws19{word-spacing:-31.348267pt;}
.ws7a{word-spacing:-31.168000pt;}
.ws3f{word-spacing:-30.971733pt;}
.ws8d{word-spacing:-30.080000pt;}
.ws41{word-spacing:-29.241600pt;}
.ws79{word-spacing:-28.152000pt;}
.ws81{word-spacing:-27.961600pt;}
.ws3a{word-spacing:-27.774933pt;}
.wsd{word-spacing:-27.520000pt;}
.ws72{word-spacing:-27.324800pt;}
.ws86{word-spacing:-27.316000pt;}
.ws32{word-spacing:-27.292800pt;}
.ws78{word-spacing:-26.685333pt;}
.ws65{word-spacing:-26.678400pt;}
.ws98{word-spacing:-26.047200pt;}
.ws52{word-spacing:-25.395200pt;}
.ws57{word-spacing:-24.768000pt;}
.ws5d{word-spacing:-24.765333pt;}
.ws83{word-spacing:-24.758400pt;}
.ws33{word-spacing:-24.325333pt;}
.wsb{word-spacing:-24.116800pt;}
.ws6b{word-spacing:-23.273067pt;}
.ws43{word-spacing:-23.042133pt;}
.ws31{word-spacing:-22.843733pt;}
.ws9c{word-spacing:-22.832000pt;}
.ws75{word-spacing:-21.755200pt;}
.ws24{word-spacing:-21.571733pt;}
.ws69{word-spacing:-21.568000pt;}
.ws13{word-spacing:-21.561600pt;}
.ws39{word-spacing:-21.560000pt;}
.ws3e{word-spacing:-21.556000pt;}
.ws76{word-spacing:-20.923733pt;}
.ws7b{word-spacing:-20.276800pt;}
.ws4a{word-spacing:-20.269600pt;}
.ws8f{word-spacing:-20.094400pt;}
.ws2e{word-spacing:-20.089600pt;}
.ws74{word-spacing:-20.080000pt;}
.ws4c{word-spacing:-19.648000pt;}
.ws70{word-spacing:-19.646933pt;}
.ws4b{word-spacing:-19.646400pt;}
.ws11{word-spacing:-19.635200pt;}
.ws10{word-spacing:-19.192800pt;}
.ws2f{word-spacing:-19.010933pt;}
.ws84{word-spacing:-19.000000pt;}
.ws22{word-spacing:-18.364800pt;}
.ws51{word-spacing:-17.918933pt;}
.ws4d{word-spacing:-17.723200pt;}
.ws82{word-spacing:-17.280000pt;}
.ws26{word-spacing:-17.070400pt;}
.ws2a{word-spacing:-16.440000pt;}
.ws1c{word-spacing:-16.428000pt;}
.ws5e{word-spacing:-16.254133pt;}
.ws29{word-spacing:-15.807200pt;}
.ws6d{word-spacing:-15.806933pt;}
.ws62{word-spacing:-15.614400pt;}
.ws23{word-spacing:-14.522133pt;}
.ws80{word-spacing:-14.521600pt;}
.ws66{word-spacing:-14.518933pt;}
.ws2c{word-spacing:-13.885333pt;}
.ws4f{word-spacing:-13.880800pt;}
.ws5c{word-spacing:-13.880533pt;}
.ws5b{word-spacing:-13.818400pt;}
.ws4e{word-spacing:-13.689600pt;}
.ws44{word-spacing:-13.688000pt;}
.ws54{word-spacing:-13.445333pt;}
.ws2d{word-spacing:-13.430400pt;}
.ws87{word-spacing:-13.248000pt;}
.ws25{word-spacing:-13.226667pt;}
.ws6c{word-spacing:-12.608000pt;}
.ws34{word-spacing:-12.597333pt;}
.ws6a{word-spacing:-11.945600pt;}
.ws58{word-spacing:-11.774933pt;}
.ws9{word-spacing:-11.516800pt;}
.ws50{word-spacing:-11.136000pt;}
.ws8e{word-spacing:-10.880000pt;}
.ws8{word-spacing:-10.863200pt;}
.ws12{word-spacing:-10.670400pt;}
.ws64{word-spacing:-10.666667pt;}
.ws47{word-spacing:-10.240000pt;}
.ws46{word-spacing:-10.046400pt;}
.ws3c{word-spacing:-10.041600pt;}
.ws45{word-spacing:-9.848000pt;}
.ws88{word-spacing:-9.396800pt;}
.wsa{word-spacing:-9.396000pt;}
.ws30{word-spacing:-9.209600pt;}
.ws8b{word-spacing:-8.965333pt;}
.ws7c{word-spacing:-8.316800pt;}
.ws7d{word-spacing:-8.121600pt;}
.ws61{word-spacing:-7.654400pt;}
.ws40{word-spacing:-7.466667pt;}
.ws3d{word-spacing:-7.460533pt;}
.ws6f{word-spacing:-7.270400pt;}
.ws63{word-spacing:-6.009600pt;}
.ws42{word-spacing:-5.120000pt;}
.ws96{word-spacing:-3.845333pt;}
.ws18{word-spacing:-1.913600pt;}
.ws1a{word-spacing:-0.756000pt;}
.ws5a{word-spacing:-0.445333pt;}
.ws5f{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.838400pt;}
.ws36{word-spacing:2.307200pt;}
.ws15{word-spacing:3.079200pt;}
.ws94{word-spacing:3.386667pt;}
.ws60{word-spacing:3.402667pt;}
.ws14{word-spacing:3.411200pt;}
.ws48{word-spacing:4.491200pt;}
.wse{word-spacing:5.313867pt;}
.ws71{word-spacing:6.603733pt;}
.ws38{word-spacing:7.886400pt;}
.ws3b{word-spacing:10.268800pt;}
.wsc{word-spacing:11.081600pt;}
.ws73{word-spacing:11.276267pt;}
.ws8c{word-spacing:11.520000pt;}
.ws92{word-spacing:12.361600pt;}
.ws99{word-spacing:15.426400pt;}
.ws1b{word-spacing:17.276267pt;}
.ws35{word-spacing:21.311467pt;}
.ws16{word-spacing:22.593600pt;}
.ws17{word-spacing:34.188000pt;}
.ws1f{word-spacing:37.003467pt;}
.ws1e{word-spacing:37.771467pt;}
.ws20{word-spacing:38.868533pt;}
.ws56{word-spacing:901.317333pt;}
.ws55{word-spacing:901.323467pt;}
.ws1{word-spacing:922.208800pt;}
._17{margin-left:-1.808000pt;}
._3{margin-left:-0.910400pt;}
._0{width:0.956800pt;}
._26{width:1.989333pt;}
._a{width:15.438400pt;}
._1{width:16.860800pt;}
._21{width:17.920000pt;}
._10{width:19.322667pt;}
._1e{width:21.753600pt;}
._2c{width:22.723200pt;}
._8{width:23.640000pt;}
._28{width:24.536000pt;}
._23{width:25.856000pt;}
._6{width:27.183467pt;}
._19{width:28.118400pt;}
._15{width:29.187733pt;}
._2a{width:30.085867pt;}
._b{width:31.050400pt;}
._2{width:32.109867pt;}
._22{width:33.275200pt;}
._13{width:34.230400pt;}
._25{width:35.151467pt;}
._29{width:36.130133pt;}
._16{width:37.589333pt;}
._1a{width:38.677333pt;}
._4{width:40.044000pt;}
._5{width:41.844000pt;}
._18{width:43.221600pt;}
._27{width:44.769600pt;}
._1f{width:45.699200pt;}
._2e{width:46.858667pt;}
._f{width:49.024000pt;}
._11{width:50.044800pt;}
._24{width:51.616000pt;}
._1c{width:52.928000pt;}
._c{width:54.033600pt;}
._20{width:55.284800pt;}
._9{width:56.253600pt;}
._2b{width:57.472000pt;}
._1d{width:58.737600pt;}
._7{width:61.774400pt;}
._2d{width:63.414400pt;}
._2f{width:66.163467pt;}
._12{width:68.032000pt;}
._1b{width:72.256533pt;}
._d{width:73.594667pt;}
._e{width:85.009600pt;}
._14{width:89.664000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y58{bottom:91.426667pt;}
.y7d{bottom:91.746667pt;}
.y2a{bottom:107.588000pt;}
.y57{bottom:109.826667pt;}
.y7c{bottom:110.146667pt;}
.y29{bottom:125.988000pt;}
.y56{bottom:128.226667pt;}
.y7b{bottom:128.546667pt;}
.y55{bottom:146.626667pt;}
.y7a{bottom:146.946667pt;}
.y28{bottom:162.946667pt;}
.y54{bottom:165.026667pt;}
.y79{bottom:165.346667pt;}
.y27{bottom:181.346667pt;}
.y26{bottom:199.746667pt;}
.y53{bottom:201.988000pt;}
.y78{bottom:202.308000pt;}
.y25{bottom:218.146667pt;}
.y52{bottom:220.388000pt;}
.y77{bottom:220.706667pt;}
.y24{bottom:236.546667pt;}
.y51{bottom:238.788000pt;}
.y76{bottom:239.108000pt;}
.y23{bottom:254.946667pt;}
.y50{bottom:257.188000pt;}
.y22{bottom:273.346667pt;}
.y4f{bottom:275.588000pt;}
.y75{bottom:276.066667pt;}
.y4e{bottom:293.988000pt;}
.y74{bottom:294.466667pt;}
.y21{bottom:310.466667pt;}
.y4d{bottom:312.388000pt;}
.y73{bottom:312.866667pt;}
.y20{bottom:328.866667pt;}
.y4c{bottom:330.788000pt;}
.y72{bottom:331.266667pt;}
.y1f{bottom:347.266667pt;}
.y4b{bottom:349.188000pt;}
.y71{bottom:349.666667pt;}
.y4a{bottom:367.588000pt;}
.y1e{bottom:384.388000pt;}
.y49{bottom:385.988000pt;}
.y70{bottom:386.788000pt;}
.y1d{bottom:402.788000pt;}
.y48{bottom:404.388000pt;}
.y6f{bottom:405.188000pt;}
.y1c{bottom:421.188000pt;}
.y47{bottom:422.788000pt;}
.y6e{bottom:423.588000pt;}
.y1b{bottom:439.588000pt;}
.y46{bottom:441.188000pt;}
.y6d{bottom:441.988000pt;}
.y1a{bottom:457.988000pt;}
.y45{bottom:459.588000pt;}
.y6c{bottom:460.388000pt;}
.y19{bottom:476.388000pt;}
.y44{bottom:477.988000pt;}
.y6b{bottom:478.788000pt;}
.y18{bottom:494.788000pt;}
.y43{bottom:496.388000pt;}
.y6a{bottom:497.188000pt;}
.y17{bottom:513.188000pt;}
.y42{bottom:514.788000pt;}
.y69{bottom:515.588000pt;}
.y16{bottom:531.588000pt;}
.y41{bottom:533.188000pt;}
.y68{bottom:533.988000pt;}
.y15{bottom:549.988000pt;}
.y40{bottom:551.588000pt;}
.y67{bottom:552.388000pt;}
.y14{bottom:568.388000pt;}
.y66{bottom:570.788000pt;}
.y13{bottom:586.788000pt;}
.y8c{bottom:587.266667pt;}
.y3f{bottom:588.706667pt;}
.y65{bottom:589.188000pt;}
.y8b{bottom:605.666667pt;}
.y3e{bottom:607.108000pt;}
.y64{bottom:607.588000pt;}
.y12{bottom:623.746667pt;}
.y3d{bottom:625.506667pt;}
.y63{bottom:625.988000pt;}
.y11{bottom:642.146667pt;}
.y8a{bottom:642.788000pt;}
.y3c{bottom:643.908000pt;}
.y62{bottom:644.388000pt;}
.y10{bottom:660.546667pt;}
.y89{bottom:661.188000pt;}
.y3b{bottom:662.308000pt;}
.y61{bottom:662.788000pt;}
.yf{bottom:678.946667pt;}
.y88{bottom:679.588000pt;}
.y3a{bottom:680.706667pt;}
.y60{bottom:681.188000pt;}
.ye{bottom:697.346667pt;}
.y39{bottom:699.108000pt;}
.y5f{bottom:699.588000pt;}
.yd{bottom:715.746667pt;}
.y87{bottom:716.706667pt;}
.y38{bottom:717.506667pt;}
.y5e{bottom:717.988000pt;}
.yc{bottom:734.146667pt;}
.y86{bottom:735.108000pt;}
.y37{bottom:735.906667pt;}
.y5d{bottom:736.388000pt;}
.y85{bottom:753.506667pt;}
.y36{bottom:754.308000pt;}
.y5c{bottom:754.788000pt;}
.yb{bottom:771.266667pt;}
.y5b{bottom:773.188000pt;}
.ya{bottom:789.666667pt;}
.y84{bottom:790.466667pt;}
.y5a{bottom:791.588000pt;}
.y83{bottom:808.866667pt;}
.y59{bottom:809.988000pt;}
.y35{bottom:828.388000pt;}
.y82{bottom:845.988000pt;}
.y34{bottom:846.788000pt;}
.y81{bottom:864.388000pt;}
.y33{bottom:865.188000pt;}
.y9{bottom:882.466667pt;}
.y80{bottom:882.788000pt;}
.y32{bottom:883.588000pt;}
.y31{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y7f{bottom:919.906667pt;}
.y30{bottom:920.388000pt;}
.y2f{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y7e{bottom:956.866667pt;}
.y2e{bottom:957.188000pt;}
.y2d{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2c{bottom:993.988000pt;}
.y2b{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;}
.xa{left:136.800000pt;}
.xe{left:139.200000pt;}
.x2{left:142.720000pt;}
.xf{left:151.200000pt;}
.xd{left:163.200000pt;}
.xc{left:167.200000pt;}
.x6{left:189.600000pt;}
.xb{left:241.120000pt;}
.x7{left:259.678667pt;}
.x10{left:287.200000pt;}
.x9{left:298.560000pt;}
.x8{left:320.960000pt;}
.x5{left:395.678667pt;}
}




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