
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_647d22714e17fe9e196c2cfc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_48cde88b92835e927b3c8b58.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.033203;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_fbab1a9feea5da6260f01453.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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:ff5;src:url('chunks/assets/font_d9b78da51754b39e729b1116.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_46dab025bbdef26abb9fdb0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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:ff7;src:url('chunks/assets/font_e0c7c7a11aca9d66850eb842.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001953;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003000px;}
.ls5{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls6{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.013200px;}
.ls4{letter-spacing:3.168000px;}
.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;}
}
.ws0{word-spacing:-22.500000px;}
.ws6{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.500000px;}
.ws7{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.619500px;}
.ws2{word-spacing:-7.870500px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:4.276245px;}
.ws9{word-spacing:4.280512px;}
._0{margin-left:-9.120000px;}
._19{margin-left:-6.432600px;}
._b{margin-left:-3.227400px;}
._f{margin-left:-1.787400px;}
._d{width:1.082400px;}
._9{width:2.283600px;}
._c{width:3.557400px;}
._2{width:4.956600px;}
._5{width:6.177600px;}
._8{width:7.933200px;}
._1{width:9.188400px;}
._4{width:10.458600px;}
._7{width:12.012000px;}
._6{width:13.384800px;}
._10{width:15.364800px;}
._1e{width:16.664400px;}
._15{width:17.826600px;}
._14{width:19.621800px;}
._13{width:20.803200px;}
._11{width:21.971400px;}
._3{width:23.172600px;}
._a{width:25.073400px;}
._e{width:27.060000px;}
._1d{width:28.096200px;}
._12{width:29.284200px;}
._20{width:32.382000px;}
._17{width:33.514800px;}
._18{width:34.993200px;}
._16{width:36.042600px;}
._1f{width:44.346000px;}
._1a{width:64.264200px;}
._1b{width:84.808800px;}
._1c{width:101.352600px;}
.fc4{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:0.839520px;}
.fs7{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:42.857160px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:46.285350px;}
.y21{bottom:56.834700px;}
.y86{bottom:60.295200px;}
.y2c{bottom:62.485350px;}
.y2b{bottom:112.052250px;}
.yc2{bottom:115.684500px;}
.yae{bottom:120.180000px;}
.y10f{bottom:120.659250px;}
.y85{bottom:124.124700px;}
.y2a{bottom:132.747750px;}
.y84{bottom:135.829200px;}
.yad{bottom:138.180000px;}
.y29{bottom:144.452250px;}
.y83{bottom:152.029500px;}
.y28{bottom:165.148500px;}
.y82{bottom:172.725000px;}
.y27{bottom:176.853000px;}
.y88{bottom:183.423000px;}
.y81{bottom:184.429500px;}
.y26{bottom:193.053000px;}
.yc1{bottom:197.659500px;}
.y80{bottom:200.629500px;}
.y25{bottom:213.748500px;}
.yc0{bottom:217.459500px;}
.y7f{bottom:221.325000px;}
.yb8{bottom:223.188000px;}
.ydd{bottom:223.894500px;}
.y10e{bottom:234.609000px;}
.yac{bottom:234.694500px;}
.ybf{bottom:237.259500px;}
.y7e{bottom:237.525000px;}
.ydc{bottom:241.894500px;}
.yb7{bottom:242.988000px;}
.y10d{bottom:252.609000px;}
.y9c{bottom:254.494500px;}
.y20{bottom:254.955000px;}
.ybe{bottom:257.059500px;}
.ydb{bottom:259.894500px;}
.yb6{bottom:262.788000px;}
.y2f{bottom:268.338000px;}
.y10c{bottom:270.609000px;}
.y1e{bottom:272.955000px;}
.y9b{bottom:274.294500px;}
.yda{bottom:277.894500px;}
.yb5{bottom:282.588000px;}
.y2e{bottom:284.538000px;}
.y10b{bottom:288.609000px;}
.y1f{bottom:290.955000px;}
.y9a{bottom:294.094500px;}
.y1d{bottom:299.658000px;}
.yb4{bottom:302.388000px;}
.y7c{bottom:306.850500px;}
.yd9{bottom:308.650500px;}
.y99{bottom:313.894500px;}
.y55{bottom:313.911000px;}
.y10a{bottom:319.365000px;}
.y1c{bottom:319.458000px;}
.ybd{bottom:322.171500px;}
.yb3{bottom:322.188000px;}
.y7b{bottom:326.650500px;}
.y98{bottom:333.694500px;}
.y54{bottom:333.711000px;}
.y1b{bottom:339.258000px;}
.ybc{bottom:341.971500px;}
.yb2{bottom:341.988000px;}
.y7a{bottom:346.450500px;}
.y97{bottom:353.494500px;}
.y53{bottom:353.511000px;}
.y1a{bottom:359.058000px;}
.ybb{bottom:361.771500px;}
.yb1{bottom:361.788000px;}
.y79{bottom:366.250500px;}
.y109{bottom:369.921000px;}
.yd8{bottom:371.962500px;}
.yab{bottom:373.294500px;}
.y52{bottom:373.311000px;}
.y19{bottom:378.858000px;}
.yba{bottom:381.571500px;}
.yb0{bottom:381.588000px;}
.y78{bottom:386.050500px;}
.y108{bottom:387.921000px;}
.yd7{bottom:391.762500px;}
.yaa{bottom:393.094500px;}
.y51{bottom:393.111000px;}
.y18{bottom:398.658000px;}
.yb9{bottom:401.371500px;}
.yaf{bottom:401.388000px;}
.y77{bottom:405.850500px;}
.y107{bottom:405.921000px;}
.yd6{bottom:411.562500px;}
.y96{bottom:418.606500px;}
.y106{bottom:423.921000px;}
.y76{bottom:425.650500px;}
.y50{bottom:425.667000px;}
.y17{bottom:431.214000px;}
.yd5{bottom:431.362500px;}
.y95{bottom:438.406500px;}
.y105{bottom:441.921000px;}
.y75{bottom:445.450500px;}
.y4f{bottom:445.467000px;}
.y16{bottom:451.014000px;}
.yd4{bottom:451.162500px;}
.y94{bottom:458.206500px;}
.y104{bottom:459.921000px;}
.y74{bottom:465.250500px;}
.y4e{bottom:465.267000px;}
.y15{bottom:470.814000px;}
.yd3{bottom:470.962500px;}
.y103{bottom:477.921000px;}
.y93{bottom:478.006500px;}
.yc3{bottom:480.837000px;}
.y73{bottom:485.050500px;}
.y4d{bottom:485.067000px;}
.y14{bottom:490.614000px;}
.yd2{bottom:490.762500px;}
.y102{bottom:495.921000px;}
.y92{bottom:497.806500px;}
.y72{bottom:504.850500px;}
.y4c{bottom:504.867000px;}
.y13{bottom:510.414000px;}
.yd1{bottom:510.562500px;}
.y101{bottom:513.921000px;}
.y91{bottom:517.606500px;}
.ya9{bottom:524.650500px;}
.y4b{bottom:524.667000px;}
.yd0{bottom:530.362500px;}
.y100{bottom:531.921000px;}
.y71{bottom:537.406500px;}
.y12{bottom:542.970000px;}
.ya8{bottom:544.450500px;}
.y4a{bottom:544.467000px;}
.yff{bottom:549.921000px;}
.ycf{bottom:550.162500px;}
.y70{bottom:557.206500px;}
.y11{bottom:562.770000px;}
.y49{bottom:564.267000px;}
.yfe{bottom:567.921000px;}
.yce{bottom:569.962500px;}
.y6f{bottom:577.006500px;}
.y10{bottom:582.570000px;}
.y48{bottom:584.067000px;}
.yfd{bottom:585.921000px;}
.ycd{bottom:589.762500px;}
.y6e{bottom:596.806500px;}
.yf{bottom:602.370000px;}
.yfc{bottom:603.921000px;}
.ya7{bottom:609.562500px;}
.y6d{bottom:616.606500px;}
.y47{bottom:616.623000px;}
.yfb{bottom:621.921000px;}
.ye{bottom:622.170000px;}
.ya6{bottom:629.362500px;}
.y6c{bottom:636.406500px;}
.y46{bottom:636.423000px;}
.yfa{bottom:639.921000px;}
.yd{bottom:641.970000px;}
.ya5{bottom:649.162500px;}
.y6b{bottom:656.206500px;}
.y45{bottom:656.223000px;}
.yf9{bottom:657.921000px;}
.yc{bottom:661.770000px;}
.ya4{bottom:668.962500px;}
.yf8{bottom:675.921000px;}
.y6a{bottom:676.006500px;}
.y44{bottom:676.023000px;}
.ycc{bottom:681.718500px;}
.ya3{bottom:688.762500px;}
.yf7{bottom:693.921000px;}
.yb{bottom:694.326000px;}
.y43{bottom:695.823000px;}
.ycb{bottom:701.518500px;}
.y69{bottom:708.562500px;}
.yf6{bottom:711.921000px;}
.ya{bottom:714.126000px;}
.y42{bottom:715.623000px;}
.yca{bottom:721.318500px;}
.y68{bottom:728.362500px;}
.yf5{bottom:729.921000px;}
.y9{bottom:733.926000px;}
.y41{bottom:735.423000px;}
.yc9{bottom:741.118500px;}
.yf4{bottom:747.921000px;}
.y67{bottom:748.162500px;}
.y8{bottom:753.726000px;}
.y40{bottom:755.223000px;}
.yc8{bottom:760.918500px;}
.yf3{bottom:765.921000px;}
.y66{bottom:767.962500px;}
.y7{bottom:773.526000px;}
.yc7{bottom:780.718500px;}
.yf2{bottom:783.921000px;}
.y65{bottom:787.762500px;}
.y3f{bottom:787.779000px;}
.y6{bottom:793.326000px;}
.yc6{bottom:800.518500px;}
.yf1{bottom:801.921000px;}
.y64{bottom:807.562500px;}
.y3e{bottom:807.579000px;}
.y5{bottom:813.126000px;}
.yf0{bottom:819.921000px;}
.yc5{bottom:820.318500px;}
.y63{bottom:827.362500px;}
.y4{bottom:832.926000px;}
.yef{bottom:837.921000px;}
.yc4{bottom:840.118500px;}
.y90{bottom:847.162500px;}
.y3{bottom:852.726000px;}
.yee{bottom:855.921000px;}
.ya2{bottom:859.918500px;}
.y8f{bottom:866.962500px;}
.y3d{bottom:872.691000px;}
.yed{bottom:873.921000px;}
.ya1{bottom:879.718500px;}
.y8e{bottom:886.762500px;}
.yec{bottom:891.921000px;}
.y62{bottom:892.474500px;}
.y3c{bottom:892.491000px;}
.ya0{bottom:899.518500px;}
.y8d{bottom:906.562500px;}
.yeb{bottom:909.921000px;}
.y61{bottom:912.274500px;}
.y3b{bottom:912.291000px;}
.y9f{bottom:919.318500px;}
.y8c{bottom:926.362500px;}
.yea{bottom:927.921000px;}
.y60{bottom:932.074500px;}
.y3a{bottom:932.091000px;}
.y9e{bottom:939.118500px;}
.ye9{bottom:945.921000px;}
.y24{bottom:949.635000px;}
.y5f{bottom:951.874500px;}
.y39{bottom:951.891000px;}
.y8b{bottom:958.918500px;}
.ye8{bottom:963.921000px;}
.y5e{bottom:971.674500px;}
.y38{bottom:971.691000px;}
.y8a{bottom:978.718500px;}
.ye7{bottom:981.921000px;}
.y5d{bottom:991.474500px;}
.y37{bottom:991.491000px;}
.y23{bottom:992.835000px;}
.y89{bottom:998.518500px;}
.ye6{bottom:999.921000px;}
.y5c{bottom:1011.274500px;}
.y36{bottom:1011.291000px;}
.ye5{bottom:1017.921000px;}
.y9d{bottom:1018.318500px;}
.y22{bottom:1028.835000px;}
.y5b{bottom:1031.074500px;}
.y35{bottom:1031.091000px;}
.ye4{bottom:1035.921000px;}
.ye3{bottom:1053.921000px;}
.y5a{bottom:1063.630500px;}
.y34{bottom:1063.647000px;}
.ye2{bottom:1071.921000px;}
.y59{bottom:1083.430500px;}
.y33{bottom:1083.447000px;}
.ye1{bottom:1089.921000px;}
.y2{bottom:1100.785500px;}
.y58{bottom:1103.230500px;}
.y32{bottom:1103.247000px;}
.ye0{bottom:1107.921000px;}
.y57{bottom:1123.030500px;}
.y31{bottom:1123.047000px;}
.ydf{bottom:1125.921000px;}
.y56{bottom:1142.830500px;}
.y30{bottom:1142.847000px;}
.yde{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.y7d{bottom:1203.604500px;}
.y87{bottom:1204.695000px;}
.h6{height:0.603405px;}
.hb{height:23.642244px;}
.he{height:23.707453px;}
.hc{height:40.552734px;}
.h10{height:41.689453px;}
.h11{height:43.740234px;}
.h12{height:45.058594px;}
.h7{height:48.114258px;}
.h4{height:49.564453px;}
.hf{height:50.028612px;}
.h5{height:50.874076px;}
.hd{height:52.488281px;}
.ha{height:54.070312px;}
.h3{height:65.610352px;}
.h9{height:87.480469px;}
.h2{height:171.000000px;}
.h8{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:44.645700px;}
.xc{left:46.771650px;}
.x4{left:108.000000px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.x8{left:157.335000px;}
.x9{left:248.587500px;}
.xa{left:320.748000px;}
.x5{left:467.716500px;}
.xb{left:488.976000px;}
.xe{left:727.677000px;}
.x7{left:833.893500px;}
.x6{left:836.019000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002667pt;}
.ls5{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls6{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.011733pt;}
.ls4{letter-spacing:2.816000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws7{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.550667pt;}
.ws2{word-spacing:-6.996000pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:3.801107pt;}
.ws9{word-spacing:3.804899pt;}
._0{margin-left:-8.106667pt;}
._19{margin-left:-5.717867pt;}
._b{margin-left:-2.868800pt;}
._f{margin-left:-1.588800pt;}
._d{width:0.962133pt;}
._9{width:2.029867pt;}
._c{width:3.162133pt;}
._2{width:4.405867pt;}
._5{width:5.491200pt;}
._8{width:7.051733pt;}
._1{width:8.167467pt;}
._4{width:9.296533pt;}
._7{width:10.677333pt;}
._6{width:11.897600pt;}
._10{width:13.657600pt;}
._1e{width:14.812800pt;}
._15{width:15.845867pt;}
._14{width:17.441600pt;}
._13{width:18.491733pt;}
._11{width:19.530133pt;}
._3{width:20.597867pt;}
._a{width:22.287467pt;}
._e{width:24.053333pt;}
._1d{width:24.974400pt;}
._12{width:26.030400pt;}
._20{width:28.784000pt;}
._17{width:29.790933pt;}
._18{width:31.105067pt;}
._16{width:32.037867pt;}
._1f{width:39.418667pt;}
._1a{width:57.123733pt;}
._1b{width:75.385600pt;}
._1c{width:90.091200pt;}
.fs4{font-size:0.746240pt;}
.fs7{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:38.095253pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:41.142533pt;}
.y21{bottom:50.519733pt;}
.y86{bottom:53.595733pt;}
.y2c{bottom:55.542533pt;}
.y2b{bottom:99.602000pt;}
.yc2{bottom:102.830667pt;}
.yae{bottom:106.826667pt;}
.y10f{bottom:107.252667pt;}
.y85{bottom:110.333067pt;}
.y2a{bottom:117.998000pt;}
.y84{bottom:120.737067pt;}
.yad{bottom:122.826667pt;}
.y29{bottom:128.402000pt;}
.y83{bottom:135.137333pt;}
.y28{bottom:146.798667pt;}
.y82{bottom:153.533333pt;}
.y27{bottom:157.202667pt;}
.y88{bottom:163.042667pt;}
.y81{bottom:163.937333pt;}
.y26{bottom:171.602667pt;}
.yc1{bottom:175.697333pt;}
.y80{bottom:178.337333pt;}
.y25{bottom:189.998667pt;}
.yc0{bottom:193.297333pt;}
.y7f{bottom:196.733333pt;}
.yb8{bottom:198.389333pt;}
.ydd{bottom:199.017333pt;}
.y10e{bottom:208.541333pt;}
.yac{bottom:208.617333pt;}
.ybf{bottom:210.897333pt;}
.y7e{bottom:211.133333pt;}
.ydc{bottom:215.017333pt;}
.yb7{bottom:215.989333pt;}
.y10d{bottom:224.541333pt;}
.y9c{bottom:226.217333pt;}
.y20{bottom:226.626667pt;}
.ybe{bottom:228.497333pt;}
.ydb{bottom:231.017333pt;}
.yb6{bottom:233.589333pt;}
.y2f{bottom:238.522667pt;}
.y10c{bottom:240.541333pt;}
.y1e{bottom:242.626667pt;}
.y9b{bottom:243.817333pt;}
.yda{bottom:247.017333pt;}
.yb5{bottom:251.189333pt;}
.y2e{bottom:252.922667pt;}
.y10b{bottom:256.541333pt;}
.y1f{bottom:258.626667pt;}
.y9a{bottom:261.417333pt;}
.y1d{bottom:266.362667pt;}
.yb4{bottom:268.789333pt;}
.y7c{bottom:272.756000pt;}
.yd9{bottom:274.356000pt;}
.y99{bottom:279.017333pt;}
.y55{bottom:279.032000pt;}
.y10a{bottom:283.880000pt;}
.y1c{bottom:283.962667pt;}
.ybd{bottom:286.374667pt;}
.yb3{bottom:286.389333pt;}
.y7b{bottom:290.356000pt;}
.y98{bottom:296.617333pt;}
.y54{bottom:296.632000pt;}
.y1b{bottom:301.562667pt;}
.ybc{bottom:303.974667pt;}
.yb2{bottom:303.989333pt;}
.y7a{bottom:307.956000pt;}
.y97{bottom:314.217333pt;}
.y53{bottom:314.232000pt;}
.y1a{bottom:319.162667pt;}
.ybb{bottom:321.574667pt;}
.yb1{bottom:321.589333pt;}
.y79{bottom:325.556000pt;}
.y109{bottom:328.818667pt;}
.yd8{bottom:330.633333pt;}
.yab{bottom:331.817333pt;}
.y52{bottom:331.832000pt;}
.y19{bottom:336.762667pt;}
.yba{bottom:339.174667pt;}
.yb0{bottom:339.189333pt;}
.y78{bottom:343.156000pt;}
.y108{bottom:344.818667pt;}
.yd7{bottom:348.233333pt;}
.yaa{bottom:349.417333pt;}
.y51{bottom:349.432000pt;}
.y18{bottom:354.362667pt;}
.yb9{bottom:356.774667pt;}
.yaf{bottom:356.789333pt;}
.y77{bottom:360.756000pt;}
.y107{bottom:360.818667pt;}
.yd6{bottom:365.833333pt;}
.y96{bottom:372.094667pt;}
.y106{bottom:376.818667pt;}
.y76{bottom:378.356000pt;}
.y50{bottom:378.370667pt;}
.y17{bottom:383.301333pt;}
.yd5{bottom:383.433333pt;}
.y95{bottom:389.694667pt;}
.y105{bottom:392.818667pt;}
.y75{bottom:395.956000pt;}
.y4f{bottom:395.970667pt;}
.y16{bottom:400.901333pt;}
.yd4{bottom:401.033333pt;}
.y94{bottom:407.294667pt;}
.y104{bottom:408.818667pt;}
.y74{bottom:413.556000pt;}
.y4e{bottom:413.570667pt;}
.y15{bottom:418.501333pt;}
.yd3{bottom:418.633333pt;}
.y103{bottom:424.818667pt;}
.y93{bottom:424.894667pt;}
.yc3{bottom:427.410667pt;}
.y73{bottom:431.156000pt;}
.y4d{bottom:431.170667pt;}
.y14{bottom:436.101333pt;}
.yd2{bottom:436.233333pt;}
.y102{bottom:440.818667pt;}
.y92{bottom:442.494667pt;}
.y72{bottom:448.756000pt;}
.y4c{bottom:448.770667pt;}
.y13{bottom:453.701333pt;}
.yd1{bottom:453.833333pt;}
.y101{bottom:456.818667pt;}
.y91{bottom:460.094667pt;}
.ya9{bottom:466.356000pt;}
.y4b{bottom:466.370667pt;}
.yd0{bottom:471.433333pt;}
.y100{bottom:472.818667pt;}
.y71{bottom:477.694667pt;}
.y12{bottom:482.640000pt;}
.ya8{bottom:483.956000pt;}
.y4a{bottom:483.970667pt;}
.yff{bottom:488.818667pt;}
.ycf{bottom:489.033333pt;}
.y70{bottom:495.294667pt;}
.y11{bottom:500.240000pt;}
.y49{bottom:501.570667pt;}
.yfe{bottom:504.818667pt;}
.yce{bottom:506.633333pt;}
.y6f{bottom:512.894667pt;}
.y10{bottom:517.840000pt;}
.y48{bottom:519.170667pt;}
.yfd{bottom:520.818667pt;}
.ycd{bottom:524.233333pt;}
.y6e{bottom:530.494667pt;}
.yf{bottom:535.440000pt;}
.yfc{bottom:536.818667pt;}
.ya7{bottom:541.833333pt;}
.y6d{bottom:548.094667pt;}
.y47{bottom:548.109333pt;}
.yfb{bottom:552.818667pt;}
.ye{bottom:553.040000pt;}
.ya6{bottom:559.433333pt;}
.y6c{bottom:565.694667pt;}
.y46{bottom:565.709333pt;}
.yfa{bottom:568.818667pt;}
.yd{bottom:570.640000pt;}
.ya5{bottom:577.033333pt;}
.y6b{bottom:583.294667pt;}
.y45{bottom:583.309333pt;}
.yf9{bottom:584.818667pt;}
.yc{bottom:588.240000pt;}
.ya4{bottom:594.633333pt;}
.yf8{bottom:600.818667pt;}
.y6a{bottom:600.894667pt;}
.y44{bottom:600.909333pt;}
.ycc{bottom:605.972000pt;}
.ya3{bottom:612.233333pt;}
.yf7{bottom:616.818667pt;}
.yb{bottom:617.178667pt;}
.y43{bottom:618.509333pt;}
.ycb{bottom:623.572000pt;}
.y69{bottom:629.833333pt;}
.yf6{bottom:632.818667pt;}
.ya{bottom:634.778667pt;}
.y42{bottom:636.109333pt;}
.yca{bottom:641.172000pt;}
.y68{bottom:647.433333pt;}
.yf5{bottom:648.818667pt;}
.y9{bottom:652.378667pt;}
.y41{bottom:653.709333pt;}
.yc9{bottom:658.772000pt;}
.yf4{bottom:664.818667pt;}
.y67{bottom:665.033333pt;}
.y8{bottom:669.978667pt;}
.y40{bottom:671.309333pt;}
.yc8{bottom:676.372000pt;}
.yf3{bottom:680.818667pt;}
.y66{bottom:682.633333pt;}
.y7{bottom:687.578667pt;}
.yc7{bottom:693.972000pt;}
.yf2{bottom:696.818667pt;}
.y65{bottom:700.233333pt;}
.y3f{bottom:700.248000pt;}
.y6{bottom:705.178667pt;}
.yc6{bottom:711.572000pt;}
.yf1{bottom:712.818667pt;}
.y64{bottom:717.833333pt;}
.y3e{bottom:717.848000pt;}
.y5{bottom:722.778667pt;}
.yf0{bottom:728.818667pt;}
.yc5{bottom:729.172000pt;}
.y63{bottom:735.433333pt;}
.y4{bottom:740.378667pt;}
.yef{bottom:744.818667pt;}
.yc4{bottom:746.772000pt;}
.y90{bottom:753.033333pt;}
.y3{bottom:757.978667pt;}
.yee{bottom:760.818667pt;}
.ya2{bottom:764.372000pt;}
.y8f{bottom:770.633333pt;}
.y3d{bottom:775.725333pt;}
.yed{bottom:776.818667pt;}
.ya1{bottom:781.972000pt;}
.y8e{bottom:788.233333pt;}
.yec{bottom:792.818667pt;}
.y62{bottom:793.310667pt;}
.y3c{bottom:793.325333pt;}
.ya0{bottom:799.572000pt;}
.y8d{bottom:805.833333pt;}
.yeb{bottom:808.818667pt;}
.y61{bottom:810.910667pt;}
.y3b{bottom:810.925333pt;}
.y9f{bottom:817.172000pt;}
.y8c{bottom:823.433333pt;}
.yea{bottom:824.818667pt;}
.y60{bottom:828.510667pt;}
.y3a{bottom:828.525333pt;}
.y9e{bottom:834.772000pt;}
.ye9{bottom:840.818667pt;}
.y24{bottom:844.120000pt;}
.y5f{bottom:846.110667pt;}
.y39{bottom:846.125333pt;}
.y8b{bottom:852.372000pt;}
.ye8{bottom:856.818667pt;}
.y5e{bottom:863.710667pt;}
.y38{bottom:863.725333pt;}
.y8a{bottom:869.972000pt;}
.ye7{bottom:872.818667pt;}
.y5d{bottom:881.310667pt;}
.y37{bottom:881.325333pt;}
.y23{bottom:882.520000pt;}
.y89{bottom:887.572000pt;}
.ye6{bottom:888.818667pt;}
.y5c{bottom:898.910667pt;}
.y36{bottom:898.925333pt;}
.ye5{bottom:904.818667pt;}
.y9d{bottom:905.172000pt;}
.y22{bottom:914.520000pt;}
.y5b{bottom:916.510667pt;}
.y35{bottom:916.525333pt;}
.ye4{bottom:920.818667pt;}
.ye3{bottom:936.818667pt;}
.y5a{bottom:945.449333pt;}
.y34{bottom:945.464000pt;}
.ye2{bottom:952.818667pt;}
.y59{bottom:963.049333pt;}
.y33{bottom:963.064000pt;}
.ye1{bottom:968.818667pt;}
.y2{bottom:978.476000pt;}
.y58{bottom:980.649333pt;}
.y32{bottom:980.664000pt;}
.ye0{bottom:984.818667pt;}
.y57{bottom:998.249333pt;}
.y31{bottom:998.264000pt;}
.ydf{bottom:1000.818667pt;}
.y56{bottom:1015.849333pt;}
.y30{bottom:1015.864000pt;}
.yde{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.y7d{bottom:1069.870667pt;}
.y87{bottom:1070.840000pt;}
.h6{height:0.536360pt;}
.hb{height:21.015328pt;}
.he{height:21.073292pt;}
.hc{height:36.046875pt;}
.h10{height:37.057292pt;}
.h11{height:38.880208pt;}
.h12{height:40.052083pt;}
.h7{height:42.768229pt;}
.h4{height:44.057292pt;}
.hf{height:44.469878pt;}
.h5{height:45.221401pt;}
.hd{height:46.656250pt;}
.ha{height:48.062500pt;}
.h3{height:58.320312pt;}
.h9{height:77.760417pt;}
.h2{height:152.000000pt;}
.h8{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:39.685067pt;}
.xc{left:41.574800pt;}
.x4{left:96.000000pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.x8{left:139.853333pt;}
.x9{left:220.966667pt;}
.xa{left:285.109333pt;}
.x5{left:415.748000pt;}
.xb{left:434.645333pt;}
.xe{left:646.824000pt;}
.x7{left:741.238667pt;}
.x6{left:743.128000pt;}
}




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