
    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_5427f3a00c33eab822296737.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_3abbc12cb41742574bdd5bf6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_167ce03b2ae9db80d2b7a40e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_188ead4d9ce0aedb964b615c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws7d{word-spacing:-38.877000px;}
.ws7c{word-spacing:-38.858400px;}
.ws3f{word-spacing:-38.666400px;}
.ws21{word-spacing:-38.660400px;}
.ws3b{word-spacing:-38.658600px;}
.ws57{word-spacing:-38.656800px;}
.ws53{word-spacing:-38.653200px;}
.ws52{word-spacing:-38.638500px;}
.ws4f{word-spacing:-38.588400px;}
.ws7e{word-spacing:-38.584800px;}
.ws7{word-spacing:-38.441100px;}
.ws22{word-spacing:-38.367000px;}
.ws8{word-spacing:-38.361600px;}
.wsa{word-spacing:-38.166000px;}
.ws1e{word-spacing:-38.162400px;}
.ws1b{word-spacing:-38.160000px;}
.ws3e{word-spacing:-38.156400px;}
.ws8d{word-spacing:-38.148300px;}
.ws8b{word-spacing:-38.148000px;}
.ws56{word-spacing:-38.147400px;}
.ws60{word-spacing:-38.145600px;}
.ws99{word-spacing:-38.076300px;}
.ws59{word-spacing:-38.072700px;}
.ws55{word-spacing:-37.948200px;}
.ws44{word-spacing:-37.946400px;}
.ws50{word-spacing:-37.944000px;}
.ws31{word-spacing:-37.940400px;}
.ws17{word-spacing:-37.939200px;}
.ws76{word-spacing:-37.936800px;}
.ws13{word-spacing:-37.936200px;}
.ws18{word-spacing:-37.933800px;}
.ws79{word-spacing:-37.715400px;}
.ws9e{word-spacing:-37.712700px;}
.wsc{word-spacing:-37.446000px;}
.ws80{word-spacing:-37.440000px;}
.ws77{word-spacing:-37.436400px;}
.ws32{word-spacing:-37.431000px;}
.ws51{word-spacing:-37.222200px;}
.ws42{word-spacing:-37.220400px;}
.ws33{word-spacing:-37.213200px;}
.ws3c{word-spacing:-36.720000px;}
.ws37{word-spacing:-36.716400px;}
.ws7f{word-spacing:-36.504000px;}
.ws26{word-spacing:-36.500400px;}
.ws92{word-spacing:-36.215100px;}
.ws81{word-spacing:-36.000000px;}
.ws46{word-spacing:-35.996400px;}
.ws62{word-spacing:-35.991000px;}
.ws67{word-spacing:-35.780400px;}
.ws25{word-spacing:-35.274000px;}
.ws9a{word-spacing:-35.070000px;}
.ws28{word-spacing:-34.566000px;}
.ws20{word-spacing:-34.562400px;}
.ws5c{word-spacing:-34.556400px;}
.ws85{word-spacing:-34.554000px;}
.ws49{word-spacing:-34.342200px;}
.ws5f{word-spacing:-34.335000px;}
.ws58{word-spacing:-33.846000px;}
.ws69{word-spacing:-33.622200px;}
.ws71{word-spacing:-33.613200px;}
.wse{word-spacing:-33.603600px;}
.ws6{word-spacing:-33.547800px;}
.ws61{word-spacing:-33.408600px;}
.ws39{word-spacing:-33.120000px;}
.ws6b{word-spacing:-32.900400px;}
.ws40{word-spacing:-32.688000px;}
.ws6c{word-spacing:-32.400000px;}
.ws30{word-spacing:-32.396400px;}
.ws16{word-spacing:-32.185500px;}
.ws66{word-spacing:-31.680000px;}
.ws45{word-spacing:-31.676400px;}
.ws54{word-spacing:-31.470000px;}
.ws12{word-spacing:-31.460400px;}
.ws83{word-spacing:-31.456800px;}
.ws2e{word-spacing:-31.450200px;}
.ws48{word-spacing:-31.384800px;}
.ws24{word-spacing:-30.960000px;}
.ws8c{word-spacing:-30.951900px;}
.ws23{word-spacing:-30.746400px;}
.ws43{word-spacing:-30.522000px;}
.wsd{word-spacing:-30.240000px;}
.ws34{word-spacing:-30.236400px;}
.ws3d{word-spacing:-30.227400px;}
.ws38{word-spacing:-29.948400px;}
.ws27{word-spacing:-29.939400px;}
.ws93{word-spacing:-29.735100px;}
.ws11{word-spacing:-29.522400px;}
.ws1c{word-spacing:-29.300400px;}
.ws88{word-spacing:-28.800000px;}
.ws47{word-spacing:-28.796400px;}
.ws35{word-spacing:-28.791000px;}
.ws94{word-spacing:-28.716300px;}
.ws97{word-spacing:-28.584000px;}
.ws5b{word-spacing:-28.086000px;}
.ws9c{word-spacing:-28.071000px;}
.ws4d{word-spacing:-27.853200px;}
.ws4c{word-spacing:-27.357000px;}
.ws3a{word-spacing:-27.350400px;}
.ws6a{word-spacing:-26.640000px;}
.ws70{word-spacing:-26.350800px;}
.wsb{word-spacing:-25.700400px;}
.ws84{word-spacing:-25.200000px;}
.ws29{word-spacing:-24.974400px;}
.ws64{word-spacing:-24.966000px;}
.ws96{word-spacing:-24.473700px;}
.ws89{word-spacing:-24.245400px;}
.ws2b{word-spacing:-23.754000px;}
.ws4{word-spacing:-23.687700px;}
.ws0{word-spacing:-23.390100px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws4e{word-spacing:-23.036400px;}
.ws36{word-spacing:-23.032800px;}
.ws72{word-spacing:-22.320000px;}
.ws9b{word-spacing:-22.104000px;}
.ws41{word-spacing:-22.102200px;}
.ws1d{word-spacing:-21.606000px;}
.ws7a{word-spacing:-21.386400px;}
.ws6e{word-spacing:-21.383100px;}
.ws6f{word-spacing:-21.157200px;}
.ws6d{word-spacing:-20.880000px;}
.ws10{word-spacing:-20.670000px;}
.ws8e{word-spacing:-20.654100px;}
.ws87{word-spacing:-19.940400px;}
.ws7b{word-spacing:-19.918800px;}
.ws68{word-spacing:-19.440000px;}
.ws86{word-spacing:-19.217400px;}
.ws75{word-spacing:-19.002600px;}
.ws8a{word-spacing:-17.991000px;}
.ws78{word-spacing:-17.762400px;}
.ws2d{word-spacing:-17.060400px;}
.ws73{word-spacing:-14.396400px;}
.ws82{word-spacing:-14.162400px;}
.ws19{word-spacing:-13.682400px;}
.ws1f{word-spacing:-13.676400px;}
.ws5d{word-spacing:-13.455600px;}
.ws4b{word-spacing:-13.455000px;}
.ws74{word-spacing:-13.446900px;}
.ws15{word-spacing:-12.952800px;}
.ws14{word-spacing:-12.947400px;}
.ws4a{word-spacing:-12.748200px;}
.ws63{word-spacing:-12.723600px;}
.ws90{word-spacing:-12.455100px;}
.ws2f{word-spacing:-12.236400px;}
.ws2a{word-spacing:-11.296800px;}
.ws2c{word-spacing:-11.293200px;}
.wsf{word-spacing:-9.366000px;}
.ws1a{word-spacing:-8.426400px;}
.ws91{word-spacing:-8.424000px;}
.ws5a{word-spacing:-7.693200px;}
.ws65{word-spacing:-6.242400px;}
.ws3{word-spacing:-5.177700px;}
.ws5e{word-spacing:-4.023000px;}
.ws9d{word-spacing:1.656000px;}
.ws98{word-spacing:2.162100px;}
.ws8f{word-spacing:2.238000px;}
.ws95{word-spacing:2.376000px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._1a{width:17.560800px;}
._0{width:19.142100px;}
._10{width:20.649600px;}
._f{width:22.396800px;}
._7{width:23.608200px;}
._15{width:24.687900px;}
._a{width:25.697700px;}
._6{width:27.000000px;}
._d{width:28.216800px;}
._19{width:29.802000px;}
._5{width:31.744800px;}
._12{width:33.546000px;}
._16{width:34.557600px;}
._9{width:36.372000px;}
._1c{width:37.638900px;}
._1e{width:38.870100px;}
._13{width:39.937500px;}
._e{width:40.973400px;}
._1d{width:42.856200px;}
._b{width:44.037000px;}
._14{width:45.272100px;}
._11{width:46.294200px;}
._8{width:48.318000px;}
._c{width:49.455000px;}
._1b{width:50.805000px;}
._1f{width:59.436600px;}
._17{width:71.348400px;}
._18{width:73.443600px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.575000px;}
.y7{bottom:72.900000px;}
.y7d{bottom:126.975000px;}
.y2f{bottom:131.475000px;}
.y6b{bottom:132.375000px;}
.y4b{bottom:133.636500px;}
.y7c{bottom:147.675000px;}
.y2e{bottom:152.175000px;}
.y6a{bottom:153.075000px;}
.y4a{bottom:154.336500px;}
.y7b{bottom:168.375000px;}
.y2d{bottom:172.875000px;}
.y69{bottom:173.775000px;}
.y49{bottom:175.036500px;}
.y7a{bottom:189.075000px;}
.y2c{bottom:193.575000px;}
.y68{bottom:194.475000px;}
.y48{bottom:195.736500px;}
.y79{bottom:209.775000px;}
.y2b{bottom:214.275000px;}
.y67{bottom:215.175000px;}
.y47{bottom:228.315000px;}
.y2a{bottom:234.975000px;}
.y78{bottom:242.536500px;}
.y66{bottom:247.936500px;}
.y46{bottom:249.015000px;}
.y29{bottom:255.675000px;}
.y65{bottom:268.636500px;}
.y77{bottom:275.115000px;}
.y28{bottom:276.375000px;}
.y45{bottom:281.775000px;}
.y64{bottom:289.336500px;}
.y27{bottom:297.075000px;}
.y44{bottom:302.475000px;}
.y76{bottom:307.875000px;}
.y63{bottom:310.036500px;}
.y96{bottom:317.775000px;}
.y75{bottom:328.575000px;}
.y26{bottom:329.836500px;}
.y62{bottom:330.736500px;}
.y43{bottom:335.236500px;}
.y95{bottom:338.475000px;}
.y61{bottom:351.436500px;}
.y42{bottom:355.936500px;}
.y94{bottom:359.175000px;}
.y74{bottom:361.336500px;}
.y25{bottom:362.415000px;}
.y60{bottom:372.136500px;}
.y93{bottom:379.875000px;}
.y24{bottom:383.115000px;}
.y41{bottom:388.515000px;}
.y5f{bottom:392.836500px;}
.y73{bottom:393.915000px;}
.y92{bottom:400.575000px;}
.y23{bottom:403.815000px;}
.y40{bottom:409.215000px;}
.y5e{bottom:413.536500px;}
.y91{bottom:421.275000px;}
.y22{bottom:424.515000px;}
.y72{bottom:426.675000px;}
.y3f{bottom:429.915000px;}
.y90{bottom:441.975000px;}
.y21{bottom:445.215000px;}
.y5d{bottom:446.115000px;}
.y3e{bottom:450.615000px;}
.y71{bottom:459.436500px;}
.y8f{bottom:462.675000px;}
.y20{bottom:465.915000px;}
.y3d{bottom:471.315000px;}
.y5c{bottom:478.875000px;}
.y70{bottom:480.136500px;}
.y8e{bottom:483.375000px;}
.y1f{bottom:486.615000px;}
.y3c{bottom:492.015000px;}
.y5b{bottom:499.575000px;}
.y8d{bottom:504.075000px;}
.y1e{bottom:507.315000px;}
.y3b{bottom:512.715000px;}
.y8c{bottom:524.775000px;}
.y1d{bottom:528.015000px;}
.y5a{bottom:532.336500px;}
.y6f{bottom:533.415000px;}
.y3a{bottom:545.475000px;}
.y1c{bottom:548.715000px;}
.y59{bottom:564.915000px;}
.y6e{bottom:566.175000px;}
.y39{bottom:578.236500px;}
.y1b{bottom:581.475000px;}
.y8b{bottom:586.875000px;}
.y58{bottom:597.675000px;}
.y38{bottom:598.936500px;}
.y8a{bottom:607.575000px;}
.y6d{bottom:619.636500px;}
.y89{bottom:628.275000px;}
.y57{bottom:630.436500px;}
.y37{bottom:631.515000px;}
.y1a{bottom:634.936500px;}
.y88{bottom:648.975000px;}
.y36{bottom:652.215000px;}
.y19{bottom:655.636500px;}
.y56{bottom:663.015000px;}
.y87{bottom:669.675000px;}
.y18{bottom:676.336500px;}
.y55{bottom:683.715000px;}
.y35{bottom:684.975000px;}
.y86{bottom:690.375000px;}
.y17{bottom:697.036500px;}
.y34{bottom:705.675000px;}
.y85{bottom:711.075000px;}
.y54{bottom:716.475000px;}
.y6c{bottom:717.736500px;}
.y84{bottom:731.775000px;}
.y16{bottom:738.436500px;}
.y53{bottom:749.236500px;}
.y83{bottom:752.475000px;}
.y15{bottom:759.136500px;}
.y14{bottom:779.836500px;}
.y52{bottom:781.815000px;}
.y82{bottom:785.236500px;}
.y13{bottom:800.536500px;}
.y81{bottom:805.936500px;}
.y51{bottom:814.575000px;}
.y12{bottom:821.236500px;}
.y50{bottom:835.275000px;}
.y80{bottom:838.515000px;}
.y11{bottom:841.936500px;}
.y7f{bottom:859.215000px;}
.y10{bottom:862.636500px;}
.y4f{bottom:868.036500px;}
.yf{bottom:883.336500px;}
.y4e{bottom:888.736500px;}
.y7e{bottom:891.975000px;}
.ye{bottom:904.036500px;}
.y4d{bottom:921.315000px;}
.y33{bottom:924.736500px;}
.y32{bottom:945.436500px;}
.y4c{bottom:954.075000px;}
.yd{bottom:966.136500px;}
.yc{bottom:986.836500px;}
.yb{bottom:1007.536500px;}
.y31{bottom:1028.236500px;}
.y30{bottom:1048.936500px;}
.ya{bottom:1069.636500px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h4{height:45.225146px;}
.h5{height:48.796875px;}
.h2{height:49.042969px;}
.h6{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x9{left:150.480000px;}
.xa{left:151.738500px;}
.x8{left:152.820000px;}
.x3{left:177.300000px;}
.x4{left:306.360000px;}
.x2{left:465.825000px;}
.x6{left:559.260000px;}
.x7{left:598.138500px;}
.x5{left:742.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws7d{word-spacing:-34.557333pt;}
.ws7c{word-spacing:-34.540800pt;}
.ws3f{word-spacing:-34.370133pt;}
.ws21{word-spacing:-34.364800pt;}
.ws3b{word-spacing:-34.363200pt;}
.ws57{word-spacing:-34.361600pt;}
.ws53{word-spacing:-34.358400pt;}
.ws52{word-spacing:-34.345333pt;}
.ws4f{word-spacing:-34.300800pt;}
.ws7e{word-spacing:-34.297600pt;}
.ws7{word-spacing:-34.169867pt;}
.ws22{word-spacing:-34.104000pt;}
.ws8{word-spacing:-34.099200pt;}
.wsa{word-spacing:-33.925333pt;}
.ws1e{word-spacing:-33.922133pt;}
.ws1b{word-spacing:-33.920000pt;}
.ws3e{word-spacing:-33.916800pt;}
.ws8d{word-spacing:-33.909600pt;}
.ws8b{word-spacing:-33.909333pt;}
.ws56{word-spacing:-33.908800pt;}
.ws60{word-spacing:-33.907200pt;}
.ws99{word-spacing:-33.845600pt;}
.ws59{word-spacing:-33.842400pt;}
.ws55{word-spacing:-33.731733pt;}
.ws44{word-spacing:-33.730133pt;}
.ws50{word-spacing:-33.728000pt;}
.ws31{word-spacing:-33.724800pt;}
.ws17{word-spacing:-33.723733pt;}
.ws76{word-spacing:-33.721600pt;}
.ws13{word-spacing:-33.721067pt;}
.ws18{word-spacing:-33.718933pt;}
.ws79{word-spacing:-33.524800pt;}
.ws9e{word-spacing:-33.522400pt;}
.wsc{word-spacing:-33.285333pt;}
.ws80{word-spacing:-33.280000pt;}
.ws77{word-spacing:-33.276800pt;}
.ws32{word-spacing:-33.272000pt;}
.ws51{word-spacing:-33.086400pt;}
.ws42{word-spacing:-33.084800pt;}
.ws33{word-spacing:-33.078400pt;}
.ws3c{word-spacing:-32.640000pt;}
.ws37{word-spacing:-32.636800pt;}
.ws7f{word-spacing:-32.448000pt;}
.ws26{word-spacing:-32.444800pt;}
.ws92{word-spacing:-32.191200pt;}
.ws81{word-spacing:-32.000000pt;}
.ws46{word-spacing:-31.996800pt;}
.ws62{word-spacing:-31.992000pt;}
.ws67{word-spacing:-31.804800pt;}
.ws25{word-spacing:-31.354667pt;}
.ws9a{word-spacing:-31.173333pt;}
.ws28{word-spacing:-30.725333pt;}
.ws20{word-spacing:-30.722133pt;}
.ws5c{word-spacing:-30.716800pt;}
.ws85{word-spacing:-30.714667pt;}
.ws49{word-spacing:-30.526400pt;}
.ws5f{word-spacing:-30.520000pt;}
.ws58{word-spacing:-30.085333pt;}
.ws69{word-spacing:-29.886400pt;}
.ws71{word-spacing:-29.878400pt;}
.wse{word-spacing:-29.869867pt;}
.ws6{word-spacing:-29.820267pt;}
.ws61{word-spacing:-29.696533pt;}
.ws39{word-spacing:-29.440000pt;}
.ws6b{word-spacing:-29.244800pt;}
.ws40{word-spacing:-29.056000pt;}
.ws6c{word-spacing:-28.800000pt;}
.ws30{word-spacing:-28.796800pt;}
.ws16{word-spacing:-28.609333pt;}
.ws66{word-spacing:-28.160000pt;}
.ws45{word-spacing:-28.156800pt;}
.ws54{word-spacing:-27.973333pt;}
.ws12{word-spacing:-27.964800pt;}
.ws83{word-spacing:-27.961600pt;}
.ws2e{word-spacing:-27.955733pt;}
.ws48{word-spacing:-27.897600pt;}
.ws24{word-spacing:-27.520000pt;}
.ws8c{word-spacing:-27.512800pt;}
.ws23{word-spacing:-27.330133pt;}
.ws43{word-spacing:-27.130667pt;}
.wsd{word-spacing:-26.880000pt;}
.ws34{word-spacing:-26.876800pt;}
.ws3d{word-spacing:-26.868800pt;}
.ws38{word-spacing:-26.620800pt;}
.ws27{word-spacing:-26.612800pt;}
.ws93{word-spacing:-26.431200pt;}
.ws11{word-spacing:-26.242133pt;}
.ws1c{word-spacing:-26.044800pt;}
.ws88{word-spacing:-25.600000pt;}
.ws47{word-spacing:-25.596800pt;}
.ws35{word-spacing:-25.592000pt;}
.ws94{word-spacing:-25.525600pt;}
.ws97{word-spacing:-25.408000pt;}
.ws5b{word-spacing:-24.965333pt;}
.ws9c{word-spacing:-24.952000pt;}
.ws4d{word-spacing:-24.758400pt;}
.ws4c{word-spacing:-24.317333pt;}
.ws3a{word-spacing:-24.311467pt;}
.ws6a{word-spacing:-23.680000pt;}
.ws70{word-spacing:-23.422933pt;}
.wsb{word-spacing:-22.844800pt;}
.ws84{word-spacing:-22.400000pt;}
.ws29{word-spacing:-22.199467pt;}
.ws64{word-spacing:-22.192000pt;}
.ws96{word-spacing:-21.754400pt;}
.ws89{word-spacing:-21.551467pt;}
.ws2b{word-spacing:-21.114667pt;}
.ws4{word-spacing:-21.055733pt;}
.ws0{word-spacing:-20.791200pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws4e{word-spacing:-20.476800pt;}
.ws36{word-spacing:-20.473600pt;}
.ws72{word-spacing:-19.840000pt;}
.ws9b{word-spacing:-19.648000pt;}
.ws41{word-spacing:-19.646400pt;}
.ws1d{word-spacing:-19.205333pt;}
.ws7a{word-spacing:-19.010133pt;}
.ws6e{word-spacing:-19.007200pt;}
.ws6f{word-spacing:-18.806400pt;}
.ws6d{word-spacing:-18.560000pt;}
.ws10{word-spacing:-18.373333pt;}
.ws8e{word-spacing:-18.359200pt;}
.ws87{word-spacing:-17.724800pt;}
.ws7b{word-spacing:-17.705600pt;}
.ws68{word-spacing:-17.280000pt;}
.ws86{word-spacing:-17.082133pt;}
.ws75{word-spacing:-16.891200pt;}
.ws8a{word-spacing:-15.992000pt;}
.ws78{word-spacing:-15.788800pt;}
.ws2d{word-spacing:-15.164800pt;}
.ws73{word-spacing:-12.796800pt;}
.ws82{word-spacing:-12.588800pt;}
.ws19{word-spacing:-12.162133pt;}
.ws1f{word-spacing:-12.156800pt;}
.ws5d{word-spacing:-11.960533pt;}
.ws4b{word-spacing:-11.960000pt;}
.ws74{word-spacing:-11.952800pt;}
.ws15{word-spacing:-11.513600pt;}
.ws14{word-spacing:-11.508800pt;}
.ws4a{word-spacing:-11.331733pt;}
.ws63{word-spacing:-11.309867pt;}
.ws90{word-spacing:-11.071200pt;}
.ws2f{word-spacing:-10.876800pt;}
.ws2a{word-spacing:-10.041600pt;}
.ws2c{word-spacing:-10.038400pt;}
.wsf{word-spacing:-8.325333pt;}
.ws1a{word-spacing:-7.490133pt;}
.ws91{word-spacing:-7.488000pt;}
.ws5a{word-spacing:-6.838400pt;}
.ws65{word-spacing:-5.548800pt;}
.ws3{word-spacing:-4.602400pt;}
.ws5e{word-spacing:-3.576000pt;}
.ws9d{word-spacing:1.472000pt;}
.ws98{word-spacing:1.921867pt;}
.ws8f{word-spacing:1.989333pt;}
.ws95{word-spacing:2.112000pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._1a{width:15.609600pt;}
._0{width:17.015200pt;}
._10{width:18.355200pt;}
._f{width:19.908267pt;}
._7{width:20.985067pt;}
._15{width:21.944800pt;}
._a{width:22.842400pt;}
._6{width:24.000000pt;}
._d{width:25.081600pt;}
._19{width:26.490667pt;}
._5{width:28.217600pt;}
._12{width:29.818667pt;}
._16{width:30.717867pt;}
._9{width:32.330667pt;}
._1c{width:33.456800pt;}
._1e{width:34.551200pt;}
._13{width:35.500000pt;}
._e{width:36.420800pt;}
._1d{width:38.094400pt;}
._b{width:39.144000pt;}
._14{width:40.241867pt;}
._11{width:41.150400pt;}
._8{width:42.949333pt;}
._c{width:43.960000pt;}
._1b{width:45.160000pt;}
._1f{width:52.832533pt;}
._17{width:63.420800pt;}
._18{width:65.283200pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.066667pt;}
.y7{bottom:64.800000pt;}
.y7d{bottom:112.866667pt;}
.y2f{bottom:116.866667pt;}
.y6b{bottom:117.666667pt;}
.y4b{bottom:118.788000pt;}
.y7c{bottom:131.266667pt;}
.y2e{bottom:135.266667pt;}
.y6a{bottom:136.066667pt;}
.y4a{bottom:137.188000pt;}
.y7b{bottom:149.666667pt;}
.y2d{bottom:153.666667pt;}
.y69{bottom:154.466667pt;}
.y49{bottom:155.588000pt;}
.y7a{bottom:168.066667pt;}
.y2c{bottom:172.066667pt;}
.y68{bottom:172.866667pt;}
.y48{bottom:173.988000pt;}
.y79{bottom:186.466667pt;}
.y2b{bottom:190.466667pt;}
.y67{bottom:191.266667pt;}
.y47{bottom:202.946667pt;}
.y2a{bottom:208.866667pt;}
.y78{bottom:215.588000pt;}
.y66{bottom:220.388000pt;}
.y46{bottom:221.346667pt;}
.y29{bottom:227.266667pt;}
.y65{bottom:238.788000pt;}
.y77{bottom:244.546667pt;}
.y28{bottom:245.666667pt;}
.y45{bottom:250.466667pt;}
.y64{bottom:257.188000pt;}
.y27{bottom:264.066667pt;}
.y44{bottom:268.866667pt;}
.y76{bottom:273.666667pt;}
.y63{bottom:275.588000pt;}
.y96{bottom:282.466667pt;}
.y75{bottom:292.066667pt;}
.y26{bottom:293.188000pt;}
.y62{bottom:293.988000pt;}
.y43{bottom:297.988000pt;}
.y95{bottom:300.866667pt;}
.y61{bottom:312.388000pt;}
.y42{bottom:316.388000pt;}
.y94{bottom:319.266667pt;}
.y74{bottom:321.188000pt;}
.y25{bottom:322.146667pt;}
.y60{bottom:330.788000pt;}
.y93{bottom:337.666667pt;}
.y24{bottom:340.546667pt;}
.y41{bottom:345.346667pt;}
.y5f{bottom:349.188000pt;}
.y73{bottom:350.146667pt;}
.y92{bottom:356.066667pt;}
.y23{bottom:358.946667pt;}
.y40{bottom:363.746667pt;}
.y5e{bottom:367.588000pt;}
.y91{bottom:374.466667pt;}
.y22{bottom:377.346667pt;}
.y72{bottom:379.266667pt;}
.y3f{bottom:382.146667pt;}
.y90{bottom:392.866667pt;}
.y21{bottom:395.746667pt;}
.y5d{bottom:396.546667pt;}
.y3e{bottom:400.546667pt;}
.y71{bottom:408.388000pt;}
.y8f{bottom:411.266667pt;}
.y20{bottom:414.146667pt;}
.y3d{bottom:418.946667pt;}
.y5c{bottom:425.666667pt;}
.y70{bottom:426.788000pt;}
.y8e{bottom:429.666667pt;}
.y1f{bottom:432.546667pt;}
.y3c{bottom:437.346667pt;}
.y5b{bottom:444.066667pt;}
.y8d{bottom:448.066667pt;}
.y1e{bottom:450.946667pt;}
.y3b{bottom:455.746667pt;}
.y8c{bottom:466.466667pt;}
.y1d{bottom:469.346667pt;}
.y5a{bottom:473.188000pt;}
.y6f{bottom:474.146667pt;}
.y3a{bottom:484.866667pt;}
.y1c{bottom:487.746667pt;}
.y59{bottom:502.146667pt;}
.y6e{bottom:503.266667pt;}
.y39{bottom:513.988000pt;}
.y1b{bottom:516.866667pt;}
.y8b{bottom:521.666667pt;}
.y58{bottom:531.266667pt;}
.y38{bottom:532.388000pt;}
.y8a{bottom:540.066667pt;}
.y6d{bottom:550.788000pt;}
.y89{bottom:558.466667pt;}
.y57{bottom:560.388000pt;}
.y37{bottom:561.346667pt;}
.y1a{bottom:564.388000pt;}
.y88{bottom:576.866667pt;}
.y36{bottom:579.746667pt;}
.y19{bottom:582.788000pt;}
.y56{bottom:589.346667pt;}
.y87{bottom:595.266667pt;}
.y18{bottom:601.188000pt;}
.y55{bottom:607.746667pt;}
.y35{bottom:608.866667pt;}
.y86{bottom:613.666667pt;}
.y17{bottom:619.588000pt;}
.y34{bottom:627.266667pt;}
.y85{bottom:632.066667pt;}
.y54{bottom:636.866667pt;}
.y6c{bottom:637.988000pt;}
.y84{bottom:650.466667pt;}
.y16{bottom:656.388000pt;}
.y53{bottom:665.988000pt;}
.y83{bottom:668.866667pt;}
.y15{bottom:674.788000pt;}
.y14{bottom:693.188000pt;}
.y52{bottom:694.946667pt;}
.y82{bottom:697.988000pt;}
.y13{bottom:711.588000pt;}
.y81{bottom:716.388000pt;}
.y51{bottom:724.066667pt;}
.y12{bottom:729.988000pt;}
.y50{bottom:742.466667pt;}
.y80{bottom:745.346667pt;}
.y11{bottom:748.388000pt;}
.y7f{bottom:763.746667pt;}
.y10{bottom:766.788000pt;}
.y4f{bottom:771.588000pt;}
.yf{bottom:785.188000pt;}
.y4e{bottom:789.988000pt;}
.y7e{bottom:792.866667pt;}
.ye{bottom:803.588000pt;}
.y4d{bottom:818.946667pt;}
.y33{bottom:821.988000pt;}
.y32{bottom:840.388000pt;}
.y4c{bottom:848.066667pt;}
.yd{bottom:858.788000pt;}
.yc{bottom:877.188000pt;}
.yb{bottom:895.588000pt;}
.y31{bottom:913.988000pt;}
.y30{bottom:932.388000pt;}
.ya{bottom:950.788000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h4{height:40.200130pt;}
.h5{height:43.375000pt;}
.h2{height:43.593750pt;}
.h6{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x9{left:133.760000pt;}
.xa{left:134.878667pt;}
.x8{left:135.840000pt;}
.x3{left:157.600000pt;}
.x4{left:272.320000pt;}
.x2{left:414.066667pt;}
.x6{left:497.120000pt;}
.x7{left:531.678667pt;}
.x5{left:660.160000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  