
    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_356e98cdd18e54c76eec190e.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_bcbcf5c2a67f9999654eaf76.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_5b60fa03dbeb7059e9f248d0.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_1c67fd93f6426e9a2c083910.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;}
.ls3{letter-spacing:23.040000px;}
.ls2{letter-spacing:23.046000px;}
.ls4{letter-spacing:48.240000px;}
.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;}
}
.wsf{word-spacing:-55.944000px;}
.ws5c{word-spacing:-38.862900px;}
.ws1c{word-spacing:-38.660400px;}
.ws5d{word-spacing:-38.659200px;}
.ws45{word-spacing:-38.656800px;}
.ws46{word-spacing:-38.654100px;}
.ws47{word-spacing:-38.653200px;}
.ws8e{word-spacing:-38.649600px;}
.ws33{word-spacing:-38.649000px;}
.ws22{word-spacing:-38.647800px;}
.wsc{word-spacing:-38.631600px;}
.ws26{word-spacing:-38.446800px;}
.ws21{word-spacing:-38.441700px;}
.ws3b{word-spacing:-38.439000px;}
.ws3e{word-spacing:-38.437200px;}
.ws82{word-spacing:-38.430000px;}
.ws4a{word-spacing:-38.429100px;}
.ws5f{word-spacing:-38.428200px;}
.ws30{word-spacing:-38.426400px;}
.ws58{word-spacing:-38.425800px;}
.ws2c{word-spacing:-38.422200px;}
.ws3{word-spacing:-38.367000px;}
.ws61{word-spacing:-38.366100px;}
.ws4b{word-spacing:-38.364300px;}
.ws6b{word-spacing:-38.360700px;}
.ws63{word-spacing:-38.359800px;}
.ws34{word-spacing:-38.358000px;}
.ws2e{word-spacing:-38.356200px;}
.ws5e{word-spacing:-38.350800px;}
.ws6d{word-spacing:-38.341200px;}
.ws55{word-spacing:-38.161500px;}
.ws31{word-spacing:-38.160000px;}
.ws8a{word-spacing:-38.156400px;}
.ws6c{word-spacing:-38.151000px;}
.ws70{word-spacing:-38.148900px;}
.ws32{word-spacing:-38.145600px;}
.ws73{word-spacing:-38.142900px;}
.ws7f{word-spacing:-38.141100px;}
.ws69{word-spacing:-38.140200px;}
.ws6f{word-spacing:-38.136600px;}
.ws52{word-spacing:-38.134200px;}
.ws7d{word-spacing:-38.129400px;}
.ws93{word-spacing:-38.085300px;}
.ws2{word-spacing:-38.081700px;}
.ws16{word-spacing:-38.069100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws2f{word-spacing:-37.936800px;}
.ws90{word-spacing:-37.935000px;}
.ws5{word-spacing:-37.933800px;}
.ws9{word-spacing:-37.933200px;}
.ws48{word-spacing:-37.922400px;}
.ws68{word-spacing:-37.920600px;}
.ws49{word-spacing:-37.916100px;}
.ws56{word-spacing:-37.857600px;}
.ws6a{word-spacing:-37.729500px;}
.ws57{word-spacing:-37.727700px;}
.ws53{word-spacing:-37.725300px;}
.ws6e{word-spacing:-37.724400px;}
.ws7b{word-spacing:-37.722600px;}
.ws51{word-spacing:-37.721400px;}
.ws60{word-spacing:-37.716000px;}
.ws6{word-spacing:-37.710000px;}
.ws50{word-spacing:-37.701900px;}
.ws7e{word-spacing:-37.639800px;}
.ws77{word-spacing:-37.638300px;}
.ws78{word-spacing:-37.440000px;}
.ws81{word-spacing:-37.433700px;}
.ws38{word-spacing:-37.000800px;}
.ws7a{word-spacing:-36.993000px;}
.ws79{word-spacing:-36.989100px;}
.ws5b{word-spacing:-36.275400px;}
.ws44{word-spacing:-35.975400px;}
.ws59{word-spacing:-35.773200px;}
.ws2d{word-spacing:-35.560800px;}
.ws35{word-spacing:-34.566000px;}
.ws91{word-spacing:-34.494000px;}
.ws23{word-spacing:-34.336800px;}
.ws28{word-spacing:-34.126200px;}
.ws67{word-spacing:-33.825600px;}
.ws29{word-spacing:-33.617700px;}
.ws27{word-spacing:-33.615000px;}
.ws65{word-spacing:-33.400800px;}
.ws66{word-spacing:-33.112800px;}
.wsa{word-spacing:-32.674200px;}
.ws1f{word-spacing:-32.671200px;}
.ws95{word-spacing:-32.188200px;}
.ws8{word-spacing:-32.178600px;}
.ws72{word-spacing:-32.178300px;}
.ws4f{word-spacing:-32.177400px;}
.ws4e{word-spacing:-31.869000px;}
.ws3d{word-spacing:-31.686000px;}
.ws7{word-spacing:-31.680000px;}
.ws20{word-spacing:-31.455000px;}
.ws3c{word-spacing:-31.152600px;}
.ws19{word-spacing:-30.022200px;}
.ws94{word-spacing:-28.062000px;}
.ws18{word-spacing:-27.791700px;}
.ws12{word-spacing:-27.351000px;}
.ws24{word-spacing:-27.133200px;}
.ws41{word-spacing:-26.637000px;}
.ws17{word-spacing:-26.625600px;}
.ws40{word-spacing:-26.122500px;}
.ws3f{word-spacing:-24.974100px;}
.ws71{word-spacing:-24.973200px;}
.ws25{word-spacing:-24.480000px;}
.ws96{word-spacing:-24.381000px;}
.ws1b{word-spacing:-22.807800px;}
.ws8b{word-spacing:-21.801900px;}
.wsd{word-spacing:-21.592800px;}
.ws5a{word-spacing:-21.375000px;}
.wse{word-spacing:-21.366000px;}
.ws92{word-spacing:-20.661000px;}
.ws62{word-spacing:-20.147400px;}
.ws97{word-spacing:-20.088000px;}
.ws39{word-spacing:-19.212300px;}
.ws3a{word-spacing:-18.997200px;}
.ws15{word-spacing:-17.424000px;}
.ws2a{word-spacing:-16.344000px;}
.ws89{word-spacing:-16.264800px;}
.ws37{word-spacing:-16.121400px;}
.ws1d{word-spacing:-15.616800px;}
.ws1a{word-spacing:-15.614400px;}
.ws36{word-spacing:-15.613200px;}
.ws64{word-spacing:-13.960800px;}
.ws4c{word-spacing:-13.878000px;}
.ws4d{word-spacing:-13.213200px;}
.ws13{word-spacing:-12.882000px;}
.ws14{word-spacing:-12.663600px;}
.ws8f{word-spacing:-9.863100px;}
.ws8d{word-spacing:-9.144000px;}
.ws75{word-spacing:-8.844000px;}
.ws76{word-spacing:-8.421900px;}
.ws1e{word-spacing:-7.693200px;}
.ws74{word-spacing:-7.186500px;}
.ws11{word-spacing:-5.756100px;}
.ws43{word-spacing:-5.751000px;}
.ws2b{word-spacing:-5.738400px;}
.ws10{word-spacing:-5.040000px;}
.ws83{word-spacing:-3.383100px;}
.ws87{word-spacing:-2.581800px;}
.ws54{word-spacing:0.000000px;}
.wsb{word-spacing:0.940800px;}
.ws98{word-spacing:4.408200px;}
.ws88{word-spacing:6.702900px;}
.ws42{word-spacing:6.706800px;}
.ws84{word-spacing:8.137800px;}
.ws7c{word-spacing:8.869200px;}
.ws86{word-spacing:18.936900px;}
.ws80{word-spacing:26.856000px;}
.ws85{word-spacing:55.454400px;}
.ws8c{word-spacing:118.152900px;}
.ws1{word-spacing:1037.484900px;}
._16{margin-left:-2.443200px;}
._4{margin-left:-1.092000px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._14{width:20.214000px;}
._f{width:21.434400px;}
._d{width:22.939200px;}
._2{width:24.829200px;}
._c{width:25.920000px;}
._25{width:29.016000px;}
._6{width:30.096000px;}
._11{width:31.156500px;}
._e{width:32.472000px;}
._a{width:34.609800px;}
._15{width:35.799000px;}
._10{width:37.800000px;}
._8{width:39.554400px;}
._9{width:41.534400px;}
._13{width:43.344000px;}
._7{width:44.517600px;}
._1c{width:46.800000px;}
._17{width:48.494100px;}
._b{width:50.167200px;}
._5{width:51.480000px;}
._1e{width:52.848000px;}
._1b{width:54.565800px;}
._23{width:56.448000px;}
._3{width:58.030800px;}
._20{width:62.497200px;}
._12{width:64.072800px;}
._18{width:65.880000px;}
._1f{width:74.025600px;}
._1a{width:75.950400px;}
._22{width:81.648000px;}
._19{width:82.800000px;}
._24{width:93.888000px;}
._21{width:121.248000px;}
._1d{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;}
.y8e{bottom:104.115000px;}
.y5e{bottom:119.775000px;}
.y43{bottom:120.136500px;}
.y27{bottom:120.315000px;}
.y8d{bottom:124.815000px;}
.y26{bottom:141.015000px;}
.y8c{bottom:145.515000px;}
.y5d{bottom:161.536500px;}
.y42{bottom:161.896500px;}
.y8b{bottom:166.215000px;}
.y25{bottom:182.775000px;}
.y8a{bottom:186.915000px;}
.y5c{bottom:203.295000px;}
.y41{bottom:203.475000px;}
.y89{bottom:207.615000px;}
.y5b{bottom:223.996500px;}
.y24{bottom:224.536500px;}
.y88{bottom:228.315000px;}
.y23{bottom:245.236500px;}
.y87{bottom:249.015000px;}
.y5a{bottom:265.575000px;}
.y22{bottom:265.936500px;}
.y86{bottom:269.715000px;}
.y59{bottom:286.275000px;}
.y21{bottom:286.636500px;}
.y85{bottom:290.236500px;}
.y58{bottom:306.975000px;}
.y40{bottom:307.696500px;}
.y84{bottom:310.936500px;}
.y20{bottom:328.215000px;}
.y3f{bottom:328.396500px;}
.y83{bottom:331.636500px;}
.y57{bottom:348.736500px;}
.y1f{bottom:348.915000px;}
.y3e{bottom:349.096500px;}
.y82{bottom:352.336500px;}
.y56{bottom:369.436500px;}
.y1e{bottom:369.615000px;}
.y3d{bottom:369.795000px;}
.y81{bottom:373.036500px;}
.y55{bottom:390.136500px;}
.y1d{bottom:390.315000px;}
.y3c{bottom:390.496500px;}
.y80{bottom:393.736500px;}
.y1c{bottom:411.015000px;}
.y3b{bottom:411.196500px;}
.y7f{bottom:414.436500px;}
.y54{bottom:431.896500px;}
.y7e{bottom:435.136500px;}
.y1b{bottom:452.775000px;}
.y7d{bottom:455.836500px;}
.y53{bottom:473.475000px;}
.y7c{bottom:476.536500px;}
.y52{bottom:494.175000px;}
.y1a{bottom:494.536500px;}
.y7b{bottom:497.236500px;}
.y51{bottom:514.875000px;}
.y19{bottom:515.236500px;}
.y7a{bottom:517.936500px;}
.y18{bottom:535.936500px;}
.y79{bottom:538.636500px;}
.y17{bottom:556.636500px;}
.y78{bottom:559.336500px;}
.y16{bottom:577.336500px;}
.y77{bottom:580.036500px;}
.y3a{bottom:598.396500px;}
.y76{bottom:600.736500px;}
.y15{bottom:618.915000px;}
.y50{bottom:619.096500px;}
.y75{bottom:621.436500px;}
.y14{bottom:639.615000px;}
.y4f{bottom:639.795000px;}
.y39{bottom:639.975000px;}
.y74{bottom:642.136500px;}
.y13{bottom:660.315000px;}
.y38{bottom:660.675000px;}
.y73{bottom:662.836500px;}
.y12{bottom:681.015000px;}
.y4e{bottom:681.375000px;}
.y72{bottom:683.536500px;}
.y11{bottom:701.715000px;}
.y37{bottom:702.436500px;}
.y71{bottom:704.236500px;}
.y10{bottom:722.415000px;}
.y36{bottom:723.136500px;}
.y70{bottom:724.936500px;}
.y35{bottom:743.836500px;}
.y6f{bottom:745.636500px;}
.yf{bottom:764.175000px;}
.y34{bottom:764.536500px;}
.y6e{bottom:766.336500px;}
.ye{bottom:784.875000px;}
.y33{bottom:785.236500px;}
.y4d{bottom:785.596500px;}
.y6d{bottom:787.036500px;}
.y32{bottom:805.936500px;}
.y4c{bottom:806.295000px;}
.y6c{bottom:807.736500px;}
.yd{bottom:826.636500px;}
.y4b{bottom:826.996500px;}
.y6b{bottom:828.436500px;}
.yc{bottom:847.336500px;}
.y31{bottom:847.695000px;}
.y6a{bottom:849.136500px;}
.yb{bottom:868.036500px;}
.y30{bottom:868.395000px;}
.y4a{bottom:868.575000px;}
.y69{bottom:869.836500px;}
.ya{bottom:888.736500px;}
.y68{bottom:890.536500px;}
.y9{bottom:909.436500px;}
.y2f{bottom:909.975000px;}
.y49{bottom:910.336500px;}
.y67{bottom:911.236500px;}
.y48{bottom:931.036500px;}
.y66{bottom:931.936500px;}
.y2e{bottom:951.736500px;}
.y65{bottom:952.636500px;}
.y8{bottom:971.715000px;}
.y64{bottom:973.336500px;}
.y2d{bottom:993.495000px;}
.y63{bottom:994.036500px;}
.y2c{bottom:1014.195000px;}
.y62{bottom:1014.736500px;}
.y2b{bottom:1034.895000px;}
.y47{bottom:1035.075000px;}
.y61{bottom:1035.436500px;}
.y46{bottom:1055.775000px;}
.y60{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y2a{bottom:1076.475000px;}
.y5f{bottom:1076.836500px;}
.y29{bottom:1097.175000px;}
.y45{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y44{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;}
.xb{left:199.080000px;}
.xd{left:235.438500px;}
.xc{left:253.800000px;}
.x9{left:279.538500px;}
.xe{left:282.060000px;}
.xa{left:291.600000px;}
.x6{left:330.480000px;}
.x8{left:334.260000px;}
.x5{left:353.160000px;}
.x7{left:374.760000px;}
.xf{left:450.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:20.480000pt;}
.ls2{letter-spacing:20.485333pt;}
.ls4{letter-spacing:42.880000pt;}
.ls1{letter-spacing:97.242400pt;}
.wsf{word-spacing:-49.728000pt;}
.ws5c{word-spacing:-34.544800pt;}
.ws1c{word-spacing:-34.364800pt;}
.ws5d{word-spacing:-34.363733pt;}
.ws45{word-spacing:-34.361600pt;}
.ws46{word-spacing:-34.359200pt;}
.ws47{word-spacing:-34.358400pt;}
.ws8e{word-spacing:-34.355200pt;}
.ws33{word-spacing:-34.354667pt;}
.ws22{word-spacing:-34.353600pt;}
.wsc{word-spacing:-34.339200pt;}
.ws26{word-spacing:-34.174933pt;}
.ws21{word-spacing:-34.170400pt;}
.ws3b{word-spacing:-34.168000pt;}
.ws3e{word-spacing:-34.166400pt;}
.ws82{word-spacing:-34.160000pt;}
.ws4a{word-spacing:-34.159200pt;}
.ws5f{word-spacing:-34.158400pt;}
.ws30{word-spacing:-34.156800pt;}
.ws58{word-spacing:-34.156267pt;}
.ws2c{word-spacing:-34.153067pt;}
.ws3{word-spacing:-34.104000pt;}
.ws61{word-spacing:-34.103200pt;}
.ws4b{word-spacing:-34.101600pt;}
.ws6b{word-spacing:-34.098400pt;}
.ws63{word-spacing:-34.097600pt;}
.ws34{word-spacing:-34.096000pt;}
.ws2e{word-spacing:-34.094400pt;}
.ws5e{word-spacing:-34.089600pt;}
.ws6d{word-spacing:-34.081067pt;}
.ws55{word-spacing:-33.921333pt;}
.ws31{word-spacing:-33.920000pt;}
.ws8a{word-spacing:-33.916800pt;}
.ws6c{word-spacing:-33.912000pt;}
.ws70{word-spacing:-33.910133pt;}
.ws32{word-spacing:-33.907200pt;}
.ws73{word-spacing:-33.904800pt;}
.ws7f{word-spacing:-33.903200pt;}
.ws69{word-spacing:-33.902400pt;}
.ws6f{word-spacing:-33.899200pt;}
.ws52{word-spacing:-33.897067pt;}
.ws7d{word-spacing:-33.892800pt;}
.ws93{word-spacing:-33.853600pt;}
.ws2{word-spacing:-33.850400pt;}
.ws16{word-spacing:-33.839200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2f{word-spacing:-33.721600pt;}
.ws90{word-spacing:-33.720000pt;}
.ws5{word-spacing:-33.718933pt;}
.ws9{word-spacing:-33.718400pt;}
.ws48{word-spacing:-33.708800pt;}
.ws68{word-spacing:-33.707200pt;}
.ws49{word-spacing:-33.703200pt;}
.ws56{word-spacing:-33.651200pt;}
.ws6a{word-spacing:-33.537333pt;}
.ws57{word-spacing:-33.535733pt;}
.ws53{word-spacing:-33.533600pt;}
.ws6e{word-spacing:-33.532800pt;}
.ws7b{word-spacing:-33.531200pt;}
.ws51{word-spacing:-33.530133pt;}
.ws60{word-spacing:-33.525333pt;}
.ws6{word-spacing:-33.520000pt;}
.ws50{word-spacing:-33.512800pt;}
.ws7e{word-spacing:-33.457600pt;}
.ws77{word-spacing:-33.456267pt;}
.ws78{word-spacing:-33.280000pt;}
.ws81{word-spacing:-33.274400pt;}
.ws38{word-spacing:-32.889600pt;}
.ws7a{word-spacing:-32.882667pt;}
.ws79{word-spacing:-32.879200pt;}
.ws5b{word-spacing:-32.244800pt;}
.ws44{word-spacing:-31.978133pt;}
.ws59{word-spacing:-31.798400pt;}
.ws2d{word-spacing:-31.609600pt;}
.ws35{word-spacing:-30.725333pt;}
.ws91{word-spacing:-30.661333pt;}
.ws23{word-spacing:-30.521600pt;}
.ws28{word-spacing:-30.334400pt;}
.ws67{word-spacing:-30.067200pt;}
.ws29{word-spacing:-29.882400pt;}
.ws27{word-spacing:-29.880000pt;}
.ws65{word-spacing:-29.689600pt;}
.ws66{word-spacing:-29.433600pt;}
.wsa{word-spacing:-29.043733pt;}
.ws1f{word-spacing:-29.041067pt;}
.ws95{word-spacing:-28.611733pt;}
.ws8{word-spacing:-28.603200pt;}
.ws72{word-spacing:-28.602933pt;}
.ws4f{word-spacing:-28.602133pt;}
.ws4e{word-spacing:-28.328000pt;}
.ws3d{word-spacing:-28.165333pt;}
.ws7{word-spacing:-28.160000pt;}
.ws20{word-spacing:-27.960000pt;}
.ws3c{word-spacing:-27.691200pt;}
.ws19{word-spacing:-26.686400pt;}
.ws94{word-spacing:-24.944000pt;}
.ws18{word-spacing:-24.703733pt;}
.ws12{word-spacing:-24.312000pt;}
.ws24{word-spacing:-24.118400pt;}
.ws41{word-spacing:-23.677333pt;}
.ws17{word-spacing:-23.667200pt;}
.ws40{word-spacing:-23.220000pt;}
.ws3f{word-spacing:-22.199200pt;}
.ws71{word-spacing:-22.198400pt;}
.ws25{word-spacing:-21.760000pt;}
.ws96{word-spacing:-21.672000pt;}
.ws1b{word-spacing:-20.273600pt;}
.ws8b{word-spacing:-19.379467pt;}
.wsd{word-spacing:-19.193600pt;}
.ws5a{word-spacing:-19.000000pt;}
.wse{word-spacing:-18.992000pt;}
.ws92{word-spacing:-18.365333pt;}
.ws62{word-spacing:-17.908800pt;}
.ws97{word-spacing:-17.856000pt;}
.ws39{word-spacing:-17.077600pt;}
.ws3a{word-spacing:-16.886400pt;}
.ws15{word-spacing:-15.488000pt;}
.ws2a{word-spacing:-14.528000pt;}
.ws89{word-spacing:-14.457600pt;}
.ws37{word-spacing:-14.330133pt;}
.ws1d{word-spacing:-13.881600pt;}
.ws1a{word-spacing:-13.879467pt;}
.ws36{word-spacing:-13.878400pt;}
.ws64{word-spacing:-12.409600pt;}
.ws4c{word-spacing:-12.336000pt;}
.ws4d{word-spacing:-11.745067pt;}
.ws13{word-spacing:-11.450667pt;}
.ws14{word-spacing:-11.256533pt;}
.ws8f{word-spacing:-8.767200pt;}
.ws8d{word-spacing:-8.128000pt;}
.ws75{word-spacing:-7.861333pt;}
.ws76{word-spacing:-7.486133pt;}
.ws1e{word-spacing:-6.838400pt;}
.ws74{word-spacing:-6.388000pt;}
.ws11{word-spacing:-5.116533pt;}
.ws43{word-spacing:-5.112000pt;}
.ws2b{word-spacing:-5.100800pt;}
.ws10{word-spacing:-4.480000pt;}
.ws83{word-spacing:-3.007200pt;}
.ws87{word-spacing:-2.294933pt;}
.ws54{word-spacing:0.000000pt;}
.wsb{word-spacing:0.836267pt;}
.ws98{word-spacing:3.918400pt;}
.ws88{word-spacing:5.958133pt;}
.ws42{word-spacing:5.961600pt;}
.ws84{word-spacing:7.233600pt;}
.ws7c{word-spacing:7.883733pt;}
.ws86{word-spacing:16.832800pt;}
.ws80{word-spacing:23.872000pt;}
.ws85{word-spacing:49.292800pt;}
.ws8c{word-spacing:105.024800pt;}
.ws1{word-spacing:922.208800pt;}
._16{margin-left:-2.171733pt;}
._4{margin-left:-0.970667pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._14{width:17.968000pt;}
._f{width:19.052800pt;}
._d{width:20.390400pt;}
._2{width:22.070400pt;}
._c{width:23.040000pt;}
._25{width:25.792000pt;}
._6{width:26.752000pt;}
._11{width:27.694667pt;}
._e{width:28.864000pt;}
._a{width:30.764267pt;}
._15{width:31.821333pt;}
._10{width:33.600000pt;}
._8{width:35.159467pt;}
._9{width:36.919467pt;}
._13{width:38.528000pt;}
._7{width:39.571200pt;}
._1c{width:41.600000pt;}
._17{width:43.105867pt;}
._b{width:44.593067pt;}
._5{width:45.760000pt;}
._1e{width:46.976000pt;}
._1b{width:48.502933pt;}
._23{width:50.176000pt;}
._3{width:51.582933pt;}
._20{width:55.553067pt;}
._12{width:56.953600pt;}
._18{width:58.560000pt;}
._1f{width:65.800533pt;}
._1a{width:67.511467pt;}
._22{width:72.576000pt;}
._19{width:73.600000pt;}
._24{width:83.456000pt;}
._21{width:107.776000pt;}
._1d{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;}
.y8e{bottom:92.546667pt;}
.y5e{bottom:106.466667pt;}
.y43{bottom:106.788000pt;}
.y27{bottom:106.946667pt;}
.y8d{bottom:110.946667pt;}
.y26{bottom:125.346667pt;}
.y8c{bottom:129.346667pt;}
.y5d{bottom:143.588000pt;}
.y42{bottom:143.908000pt;}
.y8b{bottom:147.746667pt;}
.y25{bottom:162.466667pt;}
.y8a{bottom:166.146667pt;}
.y5c{bottom:180.706667pt;}
.y41{bottom:180.866667pt;}
.y89{bottom:184.546667pt;}
.y5b{bottom:199.108000pt;}
.y24{bottom:199.588000pt;}
.y88{bottom:202.946667pt;}
.y23{bottom:217.988000pt;}
.y87{bottom:221.346667pt;}
.y5a{bottom:236.066667pt;}
.y22{bottom:236.388000pt;}
.y86{bottom:239.746667pt;}
.y59{bottom:254.466667pt;}
.y21{bottom:254.788000pt;}
.y85{bottom:257.988000pt;}
.y58{bottom:272.866667pt;}
.y40{bottom:273.508000pt;}
.y84{bottom:276.388000pt;}
.y20{bottom:291.746667pt;}
.y3f{bottom:291.908000pt;}
.y83{bottom:294.788000pt;}
.y57{bottom:309.988000pt;}
.y1f{bottom:310.146667pt;}
.y3e{bottom:310.308000pt;}
.y82{bottom:313.188000pt;}
.y56{bottom:328.388000pt;}
.y1e{bottom:328.546667pt;}
.y3d{bottom:328.706667pt;}
.y81{bottom:331.588000pt;}
.y55{bottom:346.788000pt;}
.y1d{bottom:346.946667pt;}
.y3c{bottom:347.108000pt;}
.y80{bottom:349.988000pt;}
.y1c{bottom:365.346667pt;}
.y3b{bottom:365.508000pt;}
.y7f{bottom:368.388000pt;}
.y54{bottom:383.908000pt;}
.y7e{bottom:386.788000pt;}
.y1b{bottom:402.466667pt;}
.y7d{bottom:405.188000pt;}
.y53{bottom:420.866667pt;}
.y7c{bottom:423.588000pt;}
.y52{bottom:439.266667pt;}
.y1a{bottom:439.588000pt;}
.y7b{bottom:441.988000pt;}
.y51{bottom:457.666667pt;}
.y19{bottom:457.988000pt;}
.y7a{bottom:460.388000pt;}
.y18{bottom:476.388000pt;}
.y79{bottom:478.788000pt;}
.y17{bottom:494.788000pt;}
.y78{bottom:497.188000pt;}
.y16{bottom:513.188000pt;}
.y77{bottom:515.588000pt;}
.y3a{bottom:531.908000pt;}
.y76{bottom:533.988000pt;}
.y15{bottom:550.146667pt;}
.y50{bottom:550.308000pt;}
.y75{bottom:552.388000pt;}
.y14{bottom:568.546667pt;}
.y4f{bottom:568.706667pt;}
.y39{bottom:568.866667pt;}
.y74{bottom:570.788000pt;}
.y13{bottom:586.946667pt;}
.y38{bottom:587.266667pt;}
.y73{bottom:589.188000pt;}
.y12{bottom:605.346667pt;}
.y4e{bottom:605.666667pt;}
.y72{bottom:607.588000pt;}
.y11{bottom:623.746667pt;}
.y37{bottom:624.388000pt;}
.y71{bottom:625.988000pt;}
.y10{bottom:642.146667pt;}
.y36{bottom:642.788000pt;}
.y70{bottom:644.388000pt;}
.y35{bottom:661.188000pt;}
.y6f{bottom:662.788000pt;}
.yf{bottom:679.266667pt;}
.y34{bottom:679.588000pt;}
.y6e{bottom:681.188000pt;}
.ye{bottom:697.666667pt;}
.y33{bottom:697.988000pt;}
.y4d{bottom:698.308000pt;}
.y6d{bottom:699.588000pt;}
.y32{bottom:716.388000pt;}
.y4c{bottom:716.706667pt;}
.y6c{bottom:717.988000pt;}
.yd{bottom:734.788000pt;}
.y4b{bottom:735.108000pt;}
.y6b{bottom:736.388000pt;}
.yc{bottom:753.188000pt;}
.y31{bottom:753.506667pt;}
.y6a{bottom:754.788000pt;}
.yb{bottom:771.588000pt;}
.y30{bottom:771.906667pt;}
.y4a{bottom:772.066667pt;}
.y69{bottom:773.188000pt;}
.ya{bottom:789.988000pt;}
.y68{bottom:791.588000pt;}
.y9{bottom:808.388000pt;}
.y2f{bottom:808.866667pt;}
.y49{bottom:809.188000pt;}
.y67{bottom:809.988000pt;}
.y48{bottom:827.588000pt;}
.y66{bottom:828.388000pt;}
.y2e{bottom:845.988000pt;}
.y65{bottom:846.788000pt;}
.y8{bottom:863.746667pt;}
.y64{bottom:865.188000pt;}
.y2d{bottom:883.106667pt;}
.y63{bottom:883.588000pt;}
.y2c{bottom:901.506667pt;}
.y62{bottom:901.988000pt;}
.y2b{bottom:919.906667pt;}
.y47{bottom:920.066667pt;}
.y61{bottom:920.388000pt;}
.y46{bottom:938.466667pt;}
.y60{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y2a{bottom:956.866667pt;}
.y5f{bottom:957.188000pt;}
.y29{bottom:975.266667pt;}
.y45{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y44{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;}
.xb{left:176.960000pt;}
.xd{left:209.278667pt;}
.xc{left:225.600000pt;}
.x9{left:248.478667pt;}
.xe{left:250.720000pt;}
.xa{left:259.200000pt;}
.x6{left:293.760000pt;}
.x8{left:297.120000pt;}
.x5{left:313.920000pt;}
.x7{left:333.120000pt;}
.xf{left:400.640000pt;}
}




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