
    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_33f9f5c62283cbaeb1e0fb59.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_0520304fc709757ace079f3e.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_f61d020f7209a9536c9177a7.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_877b195d41e916248a707009.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.ls2{letter-spacing:0.212400px;}
.ls3{letter-spacing:18.000000px;}
.ls1{letter-spacing:109.397700px;}
.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;}
}
.ws1e{word-spacing:-55.944000px;}
.ws3f{word-spacing:-38.867400px;}
.ws6e{word-spacing:-38.857800px;}
.ws65{word-spacing:-38.664600px;}
.ws4f{word-spacing:-38.659200px;}
.ws40{word-spacing:-38.656800px;}
.ws6d{word-spacing:-38.654100px;}
.ws28{word-spacing:-38.651400px;}
.ws7a{word-spacing:-38.649600px;}
.ws10{word-spacing:-38.645100px;}
.ws5d{word-spacing:-38.640300px;}
.ws27{word-spacing:-38.634300px;}
.ws37{word-spacing:-38.448600px;}
.ws5c{word-spacing:-38.427600px;}
.ws3e{word-spacing:-38.423700px;}
.ws50{word-spacing:-38.422800px;}
.ws38{word-spacing:-38.343600px;}
.ws39{word-spacing:-38.166000px;}
.ws3b{word-spacing:-38.160000px;}
.ws1d{word-spacing:-38.158200px;}
.ws85{word-spacing:-38.157000px;}
.ws2e{word-spacing:-38.156400px;}
.ws25{word-spacing:-38.153400px;}
.ws36{word-spacing:-38.146200px;}
.ws51{word-spacing:-38.145600px;}
.ws53{word-spacing:-38.142900px;}
.ws2d{word-spacing:-38.136000px;}
.ws7e{word-spacing:-38.085300px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws3{word-spacing:-37.942800px;}
.ws26{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.938600px;}
.ws47{word-spacing:-37.937400px;}
.ws60{word-spacing:-37.936800px;}
.ws5e{word-spacing:-37.935600px;}
.ws35{word-spacing:-37.935000px;}
.ws5{word-spacing:-37.933800px;}
.ws31{word-spacing:-37.927800px;}
.ws17{word-spacing:-37.926000px;}
.ws6{word-spacing:-37.858500px;}
.ws44{word-spacing:-37.726800px;}
.ws5f{word-spacing:-37.724400px;}
.ws6f{word-spacing:-37.715400px;}
.wsd{word-spacing:-37.711800px;}
.ws3a{word-spacing:-37.702800px;}
.ws6c{word-spacing:-37.639800px;}
.ws4e{word-spacing:-37.622700px;}
.ws4b{word-spacing:-36.984600px;}
.ws63{word-spacing:-36.494100px;}
.ws45{word-spacing:-36.204300px;}
.wsc{word-spacing:-35.992800px;}
.ws46{word-spacing:-35.973900px;}
.ws1c{word-spacing:-35.059200px;}
.ws18{word-spacing:-34.545600px;}
.ws7c{word-spacing:-34.494000px;}
.ws19{word-spacing:-34.340400px;}
.ws16{word-spacing:-33.764100px;}
.ws64{word-spacing:-33.621000px;}
.ws9{word-spacing:-32.891400px;}
.ws3c{word-spacing:-32.679000px;}
.ws80{word-spacing:-32.188200px;}
.ws1b{word-spacing:-32.178600px;}
.ws20{word-spacing:-31.451400px;}
.ws4a{word-spacing:-30.240000px;}
.ws7{word-spacing:-28.806000px;}
.ws8{word-spacing:-28.778400px;}
.ws1a{word-spacing:-28.076400px;}
.ws7f{word-spacing:-28.062000px;}
.ws1f{word-spacing:-27.640800px;}
.ws3d{word-spacing:-27.342000px;}
.ws22{word-spacing:-27.329100px;}
.ws33{word-spacing:-26.413200px;}
.ws34{word-spacing:-25.479300px;}
.ws29{word-spacing:-25.178400px;}
.ws2a{word-spacing:-24.984000px;}
.ws49{word-spacing:-24.975000px;}
.ws81{word-spacing:-24.381000px;}
.ws48{word-spacing:-24.256800px;}
.ws23{word-spacing:-24.251400px;}
.ws77{word-spacing:-21.801900px;}
.ws62{word-spacing:-21.371400px;}
.ws7d{word-spacing:-20.661000px;}
.ws82{word-spacing:-20.088000px;}
.ws14{word-spacing:-19.932900px;}
.ws2f{word-spacing:-18.930300px;}
.ws6b{word-spacing:-18.711000px;}
.ws6a{word-spacing:-18.272100px;}
.ws68{word-spacing:-18.267300px;}
.ws15{word-spacing:-18.150000px;}
.ws69{word-spacing:-18.006000px;}
.ws30{word-spacing:-17.973900px;}
.ws12{word-spacing:-17.849700px;}
.ws11{word-spacing:-17.280000px;}
.ws55{word-spacing:-16.773300px;}
.ws56{word-spacing:-16.543800px;}
.ws76{word-spacing:-16.264800px;}
.ws54{word-spacing:-15.611400px;}
.ws21{word-spacing:-14.887800px;}
.ws84{word-spacing:-13.671900px;}
.ws24{word-spacing:-12.240000px;}
.ws43{word-spacing:-11.520000px;}
.ws42{word-spacing:-11.296800px;}
.wsf{word-spacing:-11.289600px;}
.wse{word-spacing:-10.798800px;}
.ws5b{word-spacing:-10.576800px;}
.ws32{word-spacing:-10.565400px;}
.ws59{word-spacing:-10.080000px;}
.ws7b{word-spacing:-9.863100px;}
.ws5a{word-spacing:-9.350700px;}
.ws58{word-spacing:-9.343800px;}
.ws57{word-spacing:-9.342000px;}
.ws79{word-spacing:-9.144000px;}
.ws2b{word-spacing:-5.737500px;}
.ws2c{word-spacing:-5.546400px;}
.ws13{word-spacing:-3.384000px;}
.ws70{word-spacing:-3.383100px;}
.ws74{word-spacing:-2.581800px;}
.ws67{word-spacing:-1.218300px;}
.ws66{word-spacing:-1.211400px;}
.ws52{word-spacing:0.000000px;}
.ws83{word-spacing:4.408200px;}
.ws75{word-spacing:6.702900px;}
.ws71{word-spacing:8.137800px;}
.ws61{word-spacing:8.364600px;}
.wsa{word-spacing:12.460800px;}
.ws4d{word-spacing:16.578900px;}
.ws4c{word-spacing:16.788000px;}
.ws73{word-spacing:18.936900px;}
.ws41{word-spacing:26.856000px;}
.wsb{word-spacing:48.468600px;}
.ws72{word-spacing:55.454400px;}
.ws78{word-spacing:118.152900px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.443600px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._16{width:20.499300px;}
._7{width:21.661200px;}
._d{width:22.819200px;}
._3{width:24.136200px;}
._c{width:25.392600px;}
._14{width:26.784000px;}
._2{width:29.000400px;}
._f{width:30.172800px;}
._e{width:31.176000px;}
._11{width:32.823000px;}
._1d{width:35.337900px;}
._b{width:37.072500px;}
._13{width:38.079900px;}
._9{width:39.377700px;}
._1c{width:40.820400px;}
._10{width:42.510600px;}
._8{width:46.070400px;}
._24{width:47.378700px;}
._26{width:48.387600px;}
._25{width:49.751100px;}
._12{width:51.336000px;}
._1f{width:52.848000px;}
._a{width:54.010800px;}
._17{width:56.142000px;}
._28{width:61.462800px;}
._21{width:62.646900px;}
._1b{width:63.923100px;}
._15{width:65.426400px;}
._5{width:69.415200px;}
._20{width:74.025600px;}
._1a{width:75.950400px;}
._23{width:81.648000px;}
._18{width:82.800000px;}
._27{width:93.888000px;}
._6{width:105.703200px;}
._19{width:112.514400px;}
._22{width:121.248000px;}
._1e{width:175.679100px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y48{bottom:120.675000px;}
.y68{bottom:121.575000px;}
.y26{bottom:141.015000px;}
.y47{bottom:141.375000px;}
.y67{bottom:142.275000px;}
.y46{bottom:162.075000px;}
.y66{bottom:162.975000px;}
.y25{bottom:182.775000px;}
.y65{bottom:183.675000px;}
.y45{bottom:203.836500px;}
.y64{bottom:204.375000px;}
.y24{bottom:224.536500px;}
.y63{bottom:225.075000px;}
.y23{bottom:245.236500px;}
.y62{bottom:245.775000px;}
.y22{bottom:265.936500px;}
.y44{bottom:266.295000px;}
.y61{bottom:266.475000px;}
.y60{bottom:287.175000px;}
.y21{bottom:307.515000px;}
.y43{bottom:307.875000px;}
.y20{bottom:328.215000px;}
.y42{bottom:328.575000px;}
.y1f{bottom:348.915000px;}
.y5f{bottom:349.275000px;}
.y1e{bottom:369.615000px;}
.y5e{bottom:369.975000px;}
.y41{bottom:370.336500px;}
.y1d{bottom:390.315000px;}
.y5d{bottom:390.675000px;}
.y40{bottom:391.036500px;}
.y5c{bottom:411.375000px;}
.y3f{bottom:411.736500px;}
.y1c{bottom:432.075000px;}
.y3e{bottom:432.436500px;}
.y5b{bottom:452.775000px;}
.y3d{bottom:453.136500px;}
.y8a{bottom:455.836500px;}
.y5a{bottom:473.475000px;}
.y1b{bottom:473.836500px;}
.y89{bottom:476.536500px;}
.y59{bottom:494.175000px;}
.y1a{bottom:494.536500px;}
.y88{bottom:497.236500px;}
.y58{bottom:514.875000px;}
.y19{bottom:515.236500px;}
.y3c{bottom:515.596500px;}
.y87{bottom:517.936500px;}
.y18{bottom:535.936500px;}
.y86{bottom:538.636500px;}
.y17{bottom:556.636500px;}
.y3b{bottom:557.175000px;}
.y85{bottom:559.336500px;}
.y84{bottom:580.036500px;}
.y16{bottom:598.215000px;}
.y57{bottom:598.396500px;}
.y3a{bottom:598.936500px;}
.y83{bottom:600.736500px;}
.y15{bottom:618.915000px;}
.y56{bottom:619.096500px;}
.y39{bottom:619.636500px;}
.y82{bottom:621.436500px;}
.y14{bottom:639.615000px;}
.y55{bottom:639.795000px;}
.y38{bottom:640.336500px;}
.y81{bottom:642.136500px;}
.y13{bottom:660.315000px;}
.y80{bottom:662.836500px;}
.y12{bottom:681.015000px;}
.y54{bottom:681.375000px;}
.y37{bottom:682.096500px;}
.y7f{bottom:683.536500px;}
.y11{bottom:701.715000px;}
.y53{bottom:702.075000px;}
.y36{bottom:702.795000px;}
.y7e{bottom:704.236500px;}
.y52{bottom:722.775000px;}
.y35{bottom:723.496500px;}
.y7d{bottom:724.936500px;}
.y10{bottom:743.475000px;}
.y34{bottom:744.195000px;}
.y7c{bottom:745.636500px;}
.yf{bottom:764.175000px;}
.y33{bottom:764.895000px;}
.y7b{bottom:766.336500px;}
.y51{bottom:785.236500px;}
.y32{bottom:785.596500px;}
.y7a{bottom:787.036500px;}
.ye{bottom:805.936500px;}
.y79{bottom:807.736500px;}
.yd{bottom:826.636500px;}
.y50{bottom:826.996500px;}
.y31{bottom:827.175000px;}
.y78{bottom:828.436500px;}
.yc{bottom:847.336500px;}
.y4f{bottom:847.695000px;}
.y77{bottom:849.136500px;}
.yb{bottom:868.036500px;}
.y30{bottom:868.936500px;}
.y76{bottom:869.836500px;}
.ya{bottom:888.736500px;}
.y4e{bottom:889.275000px;}
.y75{bottom:890.536500px;}
.y9{bottom:909.436500px;}
.y4d{bottom:909.975000px;}
.y2f{bottom:910.695000px;}
.y74{bottom:911.236500px;}
.y4c{bottom:930.675000px;}
.y2e{bottom:931.395000px;}
.y73{bottom:931.936500px;}
.y4b{bottom:951.375000px;}
.y2d{bottom:952.095000px;}
.y72{bottom:952.636500px;}
.y8{bottom:971.715000px;}
.y71{bottom:973.336500px;}
.y4a{bottom:993.136500px;}
.y2c{bottom:993.675000px;}
.y70{bottom:994.036500px;}
.y2b{bottom:1014.375000px;}
.y6f{bottom:1014.736500px;}
.y49{bottom:1034.895000px;}
.y2a{bottom:1035.075000px;}
.y6e{bottom:1035.436500px;}
.y29{bottom:1055.775000px;}
.y6d{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y28{bottom:1076.475000px;}
.y6c{bottom:1076.836500px;}
.y27{bottom:1097.175000px;}
.y6b{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y6a{bottom:1118.236500px;}
.y69{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:200.338500px;}
.x8{left:270.720000px;}
.xa{left:295.200000px;}
.xb{left:302.400000px;}
.xd{left:304.380000px;}
.x5{left:325.260000px;}
.x6{left:330.480000px;}
.x7{left:374.760000px;}
.xe{left:450.720000px;}
.x9{left:452.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.188800pt;}
.ls3{letter-spacing:16.000000pt;}
.ls1{letter-spacing:97.242400pt;}
.ws1e{word-spacing:-49.728000pt;}
.ws3f{word-spacing:-34.548800pt;}
.ws6e{word-spacing:-34.540267pt;}
.ws65{word-spacing:-34.368533pt;}
.ws4f{word-spacing:-34.363733pt;}
.ws40{word-spacing:-34.361600pt;}
.ws6d{word-spacing:-34.359200pt;}
.ws28{word-spacing:-34.356800pt;}
.ws7a{word-spacing:-34.355200pt;}
.ws10{word-spacing:-34.351200pt;}
.ws5d{word-spacing:-34.346933pt;}
.ws27{word-spacing:-34.341600pt;}
.ws37{word-spacing:-34.176533pt;}
.ws5c{word-spacing:-34.157867pt;}
.ws3e{word-spacing:-34.154400pt;}
.ws50{word-spacing:-34.153600pt;}
.ws38{word-spacing:-34.083200pt;}
.ws39{word-spacing:-33.925333pt;}
.ws3b{word-spacing:-33.920000pt;}
.ws1d{word-spacing:-33.918400pt;}
.ws85{word-spacing:-33.917333pt;}
.ws2e{word-spacing:-33.916800pt;}
.ws25{word-spacing:-33.914133pt;}
.ws36{word-spacing:-33.907733pt;}
.ws51{word-spacing:-33.907200pt;}
.ws53{word-spacing:-33.904800pt;}
.ws2d{word-spacing:-33.898667pt;}
.ws7e{word-spacing:-33.853600pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3{word-spacing:-33.726933pt;}
.ws26{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.723200pt;}
.ws47{word-spacing:-33.722133pt;}
.ws60{word-spacing:-33.721600pt;}
.ws5e{word-spacing:-33.720533pt;}
.ws35{word-spacing:-33.720000pt;}
.ws5{word-spacing:-33.718933pt;}
.ws31{word-spacing:-33.713600pt;}
.ws17{word-spacing:-33.712000pt;}
.ws6{word-spacing:-33.652000pt;}
.ws44{word-spacing:-33.534933pt;}
.ws5f{word-spacing:-33.532800pt;}
.ws6f{word-spacing:-33.524800pt;}
.wsd{word-spacing:-33.521600pt;}
.ws3a{word-spacing:-33.513600pt;}
.ws6c{word-spacing:-33.457600pt;}
.ws4e{word-spacing:-33.442400pt;}
.ws4b{word-spacing:-32.875200pt;}
.ws63{word-spacing:-32.439200pt;}
.ws45{word-spacing:-32.181600pt;}
.wsc{word-spacing:-31.993600pt;}
.ws46{word-spacing:-31.976800pt;}
.ws1c{word-spacing:-31.163733pt;}
.ws18{word-spacing:-30.707200pt;}
.ws7c{word-spacing:-30.661333pt;}
.ws19{word-spacing:-30.524800pt;}
.ws16{word-spacing:-30.012533pt;}
.ws64{word-spacing:-29.885333pt;}
.ws9{word-spacing:-29.236800pt;}
.ws3c{word-spacing:-29.048000pt;}
.ws80{word-spacing:-28.611733pt;}
.ws1b{word-spacing:-28.603200pt;}
.ws20{word-spacing:-27.956800pt;}
.ws4a{word-spacing:-26.880000pt;}
.ws7{word-spacing:-25.605333pt;}
.ws8{word-spacing:-25.580800pt;}
.ws1a{word-spacing:-24.956800pt;}
.ws7f{word-spacing:-24.944000pt;}
.ws1f{word-spacing:-24.569600pt;}
.ws3d{word-spacing:-24.304000pt;}
.ws22{word-spacing:-24.292533pt;}
.ws33{word-spacing:-23.478400pt;}
.ws34{word-spacing:-22.648267pt;}
.ws29{word-spacing:-22.380800pt;}
.ws2a{word-spacing:-22.208000pt;}
.ws49{word-spacing:-22.200000pt;}
.ws81{word-spacing:-21.672000pt;}
.ws48{word-spacing:-21.561600pt;}
.ws23{word-spacing:-21.556800pt;}
.ws77{word-spacing:-19.379467pt;}
.ws62{word-spacing:-18.996800pt;}
.ws7d{word-spacing:-18.365333pt;}
.ws82{word-spacing:-17.856000pt;}
.ws14{word-spacing:-17.718133pt;}
.ws2f{word-spacing:-16.826933pt;}
.ws6b{word-spacing:-16.632000pt;}
.ws6a{word-spacing:-16.241867pt;}
.ws68{word-spacing:-16.237600pt;}
.ws15{word-spacing:-16.133333pt;}
.ws69{word-spacing:-16.005333pt;}
.ws30{word-spacing:-15.976800pt;}
.ws12{word-spacing:-15.866400pt;}
.ws11{word-spacing:-15.360000pt;}
.ws55{word-spacing:-14.909600pt;}
.ws56{word-spacing:-14.705600pt;}
.ws76{word-spacing:-14.457600pt;}
.ws54{word-spacing:-13.876800pt;}
.ws21{word-spacing:-13.233600pt;}
.ws84{word-spacing:-12.152800pt;}
.ws24{word-spacing:-10.880000pt;}
.ws43{word-spacing:-10.240000pt;}
.ws42{word-spacing:-10.041600pt;}
.wsf{word-spacing:-10.035200pt;}
.wse{word-spacing:-9.598933pt;}
.ws5b{word-spacing:-9.401600pt;}
.ws32{word-spacing:-9.391467pt;}
.ws59{word-spacing:-8.960000pt;}
.ws7b{word-spacing:-8.767200pt;}
.ws5a{word-spacing:-8.311733pt;}
.ws58{word-spacing:-8.305600pt;}
.ws57{word-spacing:-8.304000pt;}
.ws79{word-spacing:-8.128000pt;}
.ws2b{word-spacing:-5.100000pt;}
.ws2c{word-spacing:-4.930133pt;}
.ws13{word-spacing:-3.008000pt;}
.ws70{word-spacing:-3.007200pt;}
.ws74{word-spacing:-2.294933pt;}
.ws67{word-spacing:-1.082933pt;}
.ws66{word-spacing:-1.076800pt;}
.ws52{word-spacing:0.000000pt;}
.ws83{word-spacing:3.918400pt;}
.ws75{word-spacing:5.958133pt;}
.ws71{word-spacing:7.233600pt;}
.ws61{word-spacing:7.435200pt;}
.wsa{word-spacing:11.076267pt;}
.ws4d{word-spacing:14.736800pt;}
.ws4c{word-spacing:14.922667pt;}
.ws73{word-spacing:16.832800pt;}
.ws41{word-spacing:23.872000pt;}
.wsb{word-spacing:43.083200pt;}
.ws72{word-spacing:49.292800pt;}
.ws78{word-spacing:105.024800pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-1.283200pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._16{width:18.221600pt;}
._7{width:19.254400pt;}
._d{width:20.283733pt;}
._3{width:21.454400pt;}
._c{width:22.571200pt;}
._14{width:23.808000pt;}
._2{width:25.778133pt;}
._f{width:26.820267pt;}
._e{width:27.712000pt;}
._11{width:29.176000pt;}
._1d{width:31.411467pt;}
._b{width:32.953333pt;}
._13{width:33.848800pt;}
._9{width:35.002400pt;}
._1c{width:36.284800pt;}
._10{width:37.787200pt;}
._8{width:40.951467pt;}
._24{width:42.114400pt;}
._26{width:43.011200pt;}
._25{width:44.223200pt;}
._12{width:45.632000pt;}
._1f{width:46.976000pt;}
._a{width:48.009600pt;}
._17{width:49.904000pt;}
._28{width:54.633600pt;}
._21{width:55.686133pt;}
._1b{width:56.820533pt;}
._15{width:58.156800pt;}
._5{width:61.702400pt;}
._20{width:65.800533pt;}
._1a{width:67.511467pt;}
._23{width:72.576000pt;}
._18{width:73.600000pt;}
._27{width:83.456000pt;}
._6{width:93.958400pt;}
._19{width:100.012800pt;}
._22{width:107.776000pt;}
._1e{width:156.159200pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y48{bottom:107.266667pt;}
.y68{bottom:108.066667pt;}
.y26{bottom:125.346667pt;}
.y47{bottom:125.666667pt;}
.y67{bottom:126.466667pt;}
.y46{bottom:144.066667pt;}
.y66{bottom:144.866667pt;}
.y25{bottom:162.466667pt;}
.y65{bottom:163.266667pt;}
.y45{bottom:181.188000pt;}
.y64{bottom:181.666667pt;}
.y24{bottom:199.588000pt;}
.y63{bottom:200.066667pt;}
.y23{bottom:217.988000pt;}
.y62{bottom:218.466667pt;}
.y22{bottom:236.388000pt;}
.y44{bottom:236.706667pt;}
.y61{bottom:236.866667pt;}
.y60{bottom:255.266667pt;}
.y21{bottom:273.346667pt;}
.y43{bottom:273.666667pt;}
.y20{bottom:291.746667pt;}
.y42{bottom:292.066667pt;}
.y1f{bottom:310.146667pt;}
.y5f{bottom:310.466667pt;}
.y1e{bottom:328.546667pt;}
.y5e{bottom:328.866667pt;}
.y41{bottom:329.188000pt;}
.y1d{bottom:346.946667pt;}
.y5d{bottom:347.266667pt;}
.y40{bottom:347.588000pt;}
.y5c{bottom:365.666667pt;}
.y3f{bottom:365.988000pt;}
.y1c{bottom:384.066667pt;}
.y3e{bottom:384.388000pt;}
.y5b{bottom:402.466667pt;}
.y3d{bottom:402.788000pt;}
.y8a{bottom:405.188000pt;}
.y5a{bottom:420.866667pt;}
.y1b{bottom:421.188000pt;}
.y89{bottom:423.588000pt;}
.y59{bottom:439.266667pt;}
.y1a{bottom:439.588000pt;}
.y88{bottom:441.988000pt;}
.y58{bottom:457.666667pt;}
.y19{bottom:457.988000pt;}
.y3c{bottom:458.308000pt;}
.y87{bottom:460.388000pt;}
.y18{bottom:476.388000pt;}
.y86{bottom:478.788000pt;}
.y17{bottom:494.788000pt;}
.y3b{bottom:495.266667pt;}
.y85{bottom:497.188000pt;}
.y84{bottom:515.588000pt;}
.y16{bottom:531.746667pt;}
.y57{bottom:531.908000pt;}
.y3a{bottom:532.388000pt;}
.y83{bottom:533.988000pt;}
.y15{bottom:550.146667pt;}
.y56{bottom:550.308000pt;}
.y39{bottom:550.788000pt;}
.y82{bottom:552.388000pt;}
.y14{bottom:568.546667pt;}
.y55{bottom:568.706667pt;}
.y38{bottom:569.188000pt;}
.y81{bottom:570.788000pt;}
.y13{bottom:586.946667pt;}
.y80{bottom:589.188000pt;}
.y12{bottom:605.346667pt;}
.y54{bottom:605.666667pt;}
.y37{bottom:606.308000pt;}
.y7f{bottom:607.588000pt;}
.y11{bottom:623.746667pt;}
.y53{bottom:624.066667pt;}
.y36{bottom:624.706667pt;}
.y7e{bottom:625.988000pt;}
.y52{bottom:642.466667pt;}
.y35{bottom:643.108000pt;}
.y7d{bottom:644.388000pt;}
.y10{bottom:660.866667pt;}
.y34{bottom:661.506667pt;}
.y7c{bottom:662.788000pt;}
.yf{bottom:679.266667pt;}
.y33{bottom:679.906667pt;}
.y7b{bottom:681.188000pt;}
.y51{bottom:697.988000pt;}
.y32{bottom:698.308000pt;}
.y7a{bottom:699.588000pt;}
.ye{bottom:716.388000pt;}
.y79{bottom:717.988000pt;}
.yd{bottom:734.788000pt;}
.y50{bottom:735.108000pt;}
.y31{bottom:735.266667pt;}
.y78{bottom:736.388000pt;}
.yc{bottom:753.188000pt;}
.y4f{bottom:753.506667pt;}
.y77{bottom:754.788000pt;}
.yb{bottom:771.588000pt;}
.y30{bottom:772.388000pt;}
.y76{bottom:773.188000pt;}
.ya{bottom:789.988000pt;}
.y4e{bottom:790.466667pt;}
.y75{bottom:791.588000pt;}
.y9{bottom:808.388000pt;}
.y4d{bottom:808.866667pt;}
.y2f{bottom:809.506667pt;}
.y74{bottom:809.988000pt;}
.y4c{bottom:827.266667pt;}
.y2e{bottom:827.906667pt;}
.y73{bottom:828.388000pt;}
.y4b{bottom:845.666667pt;}
.y2d{bottom:846.306667pt;}
.y72{bottom:846.788000pt;}
.y8{bottom:863.746667pt;}
.y71{bottom:865.188000pt;}
.y4a{bottom:882.788000pt;}
.y2c{bottom:883.266667pt;}
.y70{bottom:883.588000pt;}
.y2b{bottom:901.666667pt;}
.y6f{bottom:901.988000pt;}
.y49{bottom:919.906667pt;}
.y2a{bottom:920.066667pt;}
.y6e{bottom:920.388000pt;}
.y29{bottom:938.466667pt;}
.y6d{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y28{bottom:956.866667pt;}
.y6c{bottom:957.188000pt;}
.y27{bottom:975.266667pt;}
.y6b{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y6a{bottom:993.988000pt;}
.y69{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:178.078667pt;}
.x8{left:240.640000pt;}
.xa{left:262.400000pt;}
.xb{left:268.800000pt;}
.xd{left:270.560000pt;}
.x5{left:289.120000pt;}
.x6{left:293.760000pt;}
.x7{left:333.120000pt;}
.xe{left:400.640000pt;}
.x9{left:402.400000pt;}
}




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