
    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_6f24af5b42014233f1cd636f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_acbb454adf411af5909c51fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_d3b189c90b79fa663ee3a64c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_9114c127be077b0d66daaaec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_4821dd44ec1198379207ab1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.887695;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_0c8f4291fc884f9598ad1d55.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.156738;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:ff8;src:url('chunks/assets/font_e16e16be1918bc6c1fe0f35a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:ff9;src:url('chunks/assets/font_147ae7dc021efa418921f42f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.ls12{letter-spacing:-19.140000px;}
.ls1c{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.984000px;}
.ls11{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.414600px;}
.ls1a{letter-spacing:-0.305400px;}
.ls2e{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.109200px;}
.ls2{letter-spacing:-0.106800px;}
.ls2f{letter-spacing:-0.093600px;}
.ls2a{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.224640px;}
.ls17{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.305280px;}
.ls1b{letter-spacing:0.305400px;}
.ls2c{letter-spacing:0.413280px;}
.ls14{letter-spacing:0.442080px;}
.ls29{letter-spacing:0.612000px;}
.ls28{letter-spacing:0.613440px;}
.ls4{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.944640px;}
.ls8{letter-spacing:2.384640px;}
.ls19{letter-spacing:2.465280px;}
.ls18{letter-spacing:3.905280px;}
.ls15{letter-spacing:4.625280px;}
.ls1e{letter-spacing:5.345280px;}
.ls25{letter-spacing:6.065280px;}
.ls16{letter-spacing:6.785280px;}
.ls2d{letter-spacing:7.146720px;}
.ls1f{letter-spacing:7.505280px;}
.ls1d{letter-spacing:9.665280px;}
.ls22{letter-spacing:11.285280px;}
.lsf{letter-spacing:12.545280px;}
.ls10{letter-spacing:13.985280px;}
.ls21{letter-spacing:14.705280px;}
.ls7{letter-spacing:20.465280px;}
.ls20{letter-spacing:21.185280px;}
.ls24{letter-spacing:37.745280px;}
.ls2b{letter-spacing:40.226688px;}
.ls26{letter-spacing:40.266720px;}
.ls27{letter-spacing:90.666720px;}
.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;}
}
.ws1{word-spacing:-20.016000px;}
.wsb{word-spacing:-18.720120px;}
.ws7{word-spacing:-18.676920px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.262320px;}
.wsa{word-spacing:-18.109320px;}
.wsc{word-spacing:-18.000120px;}
.wse{word-spacing:-17.956920px;}
.ws8{word-spacing:-17.586720px;}
.wsd{word-spacing:-17.388720px;}
.ws11{word-spacing:-17.225280px;}
.ws13{word-spacing:-16.666560px;}
.wsf{word-spacing:-16.653312px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws12{word-spacing:-16.466712px;}
.ws2{word-spacing:-15.812640px;}
.ws10{word-spacing:-13.450752px;}
.ws4{word-spacing:0.000000px;}
._21{margin-left:-20.104080px;}
._b{margin-left:-14.788800px;}
._2f{margin-left:-11.518800px;}
._16{margin-left:-4.751040px;}
._3{margin-left:-3.585600px;}
._4{margin-left:-2.075040px;}
._7{margin-left:-1.015920px;}
._2{width:1.080480px;}
._22{width:2.104800px;}
._5{width:3.107520px;}
._6{width:4.296720px;}
._10{width:5.624880px;}
._12{width:7.374240px;}
._8{width:8.605440px;}
._1{width:10.034880px;}
._0{width:11.236080px;}
._17{width:12.254400px;}
._14{width:13.645440px;}
._13{width:15.036480px;}
._1d{width:16.758720px;}
._30{width:17.816160px;}
._11{width:19.739520px;}
._31{width:20.769120px;}
._15{width:21.792960px;}
._26{width:22.808160px;}
._9{width:23.963760px;}
._19{width:24.972480px;}
._24{width:26.006400px;}
._d{width:27.249600px;}
._2b{width:28.670880px;}
._23{width:29.767680px;}
._1e{width:31.132800px;}
._1f{width:32.523840px;}
._a{width:33.883920px;}
._1c{width:35.403120px;}
._2c{width:36.534960px;}
._28{width:37.564320px;}
._c{width:38.592000px;}
._1a{width:40.538880px;}
._1b{width:41.554080px;}
._2d{width:42.728640px;}
._20{width:44.887680px;}
._e{width:46.235520px;}
._f{width:47.648160px;}
._18{width:50.408640px;}
._25{width:52.395840px;}
._27{width:53.632320px;}
._2e{width:59.947200px;}
._2a{width:66.284880px;}
._29{width:67.653360px;}
._32{width:90.666720px;}
._33{width:847.542720px;}
.fc2{color:rgb(0,0,238);}
.fc1{color:rgb(255,98,76);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.384000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.420000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y4c{bottom:122.076000px;}
.y28{bottom:123.336000px;}
.y67{bottom:135.576000px;}
.y4b{bottom:140.976000px;}
.y27{bottom:142.416000px;}
.y66{bottom:152.850000px;}
.y4a{bottom:159.870000px;}
.y26{bottom:161.310000px;}
.y65{bottom:170.130000px;}
.y49{bottom:178.950000px;}
.y25{bottom:180.210000px;}
.y64{bottom:187.230000px;}
.y48{bottom:197.850000px;}
.y24{bottom:199.290000px;}
.y63{bottom:204.510000px;}
.y47{bottom:216.930000px;}
.y23{bottom:218.190000px;}
.y62{bottom:221.790000px;}
.y53{bottom:234.435000px;}
.y46{bottom:235.875000px;}
.y22{bottom:237.315000px;}
.y61{bottom:239.115000px;}
.y45{bottom:254.955000px;}
.y21{bottom:256.215000px;}
.y60{bottom:256.395000px;}
.y87{bottom:270.075000px;}
.y5f{bottom:273.675000px;}
.y44{bottom:273.855000px;}
.y20{bottom:275.115000px;}
.y86{bottom:287.355000px;}
.y5e{bottom:290.775000px;}
.y43{bottom:292.755000px;}
.y1f{bottom:294.195000px;}
.y85{bottom:304.635000px;}
.y5d{bottom:308.055000px;}
.y42{bottom:311.835000px;}
.y1e{bottom:313.095000px;}
.y84{bottom:321.915000px;}
.y5c{bottom:325.335000px;}
.y41{bottom:330.735000px;}
.y1d{bottom:332.175000px;}
.y83{bottom:339.195000px;}
.y5b{bottom:342.615000px;}
.y4f{bottom:348.375000px;}
.y40{bottom:349.815000px;}
.y1c{bottom:351.075000px;}
.y82{bottom:356.295000px;}
.y5a{bottom:359.895000px;}
.y3f{bottom:368.715000px;}
.y1b{bottom:369.975000px;}
.y81{bottom:373.935000px;}
.y59{bottom:376.995000px;}
.y4e{bottom:386.175000px;}
.y3e{bottom:387.615000px;}
.y1a{bottom:389.055000px;}
.y80{bottom:392.655000px;}
.y58{bottom:394.275000px;}
.y3d{bottom:406.695000px;}
.y19{bottom:407.775000px;}
.y7f{bottom:409.935000px;}
.y57{bottom:411.555000px;}
.y4d{bottom:424.185000px;}
.y18{bottom:425.085000px;}
.y3c{bottom:425.625000px;}
.y7e{bottom:427.065000px;}
.y56{bottom:428.865000px;}
.y17{bottom:442.365000px;}
.y7d{bottom:444.345000px;}
.y3b{bottom:444.705000px;}
.y55{bottom:446.145000px;}
.y16{bottom:459.465000px;}
.y7c{bottom:461.625000px;}
.y3a{bottom:463.605000px;}
.y7b{bottom:478.905000px;}
.y52{bottom:481.065000px;}
.y39{bottom:482.505000px;}
.y15{bottom:485.745000px;}
.y7a{bottom:496.185000px;}
.y38{bottom:501.585000px;}
.y14{bottom:503.025000px;}
.y79{bottom:513.285000px;}
.y37{bottom:520.485000px;}
.y13{bottom:520.845000px;}
.y78{bottom:530.565000px;}
.y50{bottom:538.125000px;}
.y36{bottom:539.565000px;}
.y12{bottom:541.005000px;}
.y77{bottom:547.845000px;}
.y11{bottom:558.285000px;}
.y35{bottom:558.465000px;}
.y76{bottom:565.125000px;}
.y10{bottom:575.385000px;}
.y34{bottom:577.365000px;}
.y75{bottom:582.405000px;}
.yf{bottom:592.665000px;}
.y33{bottom:596.445000px;}
.y74{bottom:599.685000px;}
.ye{bottom:610.530000px;}
.y32{bottom:615.390000px;}
.y73{bottom:616.830000px;}
.yd{bottom:630.690000px;}
.y72{bottom:634.110000px;}
.y31{bottom:634.470000px;}
.yc{bottom:647.970000px;}
.y71{bottom:651.390000px;}
.y30{bottom:653.370000px;}
.yb{bottom:665.250000px;}
.y70{bottom:668.670000px;}
.y2f{bottom:672.270000px;}
.ya{bottom:683.070000px;}
.y6f{bottom:685.950000px;}
.y2e{bottom:691.350000px;}
.y6e{bottom:703.230000px;}
.y9{bottom:703.770000px;}
.y2d{bottom:710.250000px;}
.y6d{bottom:720.330000px;}
.y8{bottom:724.110000px;}
.y54{bottom:727.890000px;}
.y2c{bottom:729.330000px;}
.y6c{bottom:737.610000px;}
.y7{bottom:743.370000px;}
.y51{bottom:746.790000px;}
.y2b{bottom:748.230000px;}
.y6b{bottom:754.890000px;}
.y6{bottom:764.070000px;}
.y2a{bottom:767.310000px;}
.y6a{bottom:772.170000px;}
.y5{bottom:784.770000px;}
.y29{bottom:786.210000px;}
.y69{bottom:789.450000px;}
.y4{bottom:805.140000px;}
.y68{bottom:806.760000px;}
.h8{height:44.090508px;}
.h7{height:45.549492px;}
.h3{height:46.251562px;}
.h9{height:52.417969px;}
.h2{height:53.603086px;}
.hf{height:53.732250px;}
.he{height:54.390938px;}
.hd{height:54.522000px;}
.h4{height:59.415469px;}
.ha{height:60.288750px;}
.hb{height:61.998750px;}
.h6{height:64.582031px;}
.hc{height:65.175469px;}
.h5{height:65.531250px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x2{left:80.855991px;}
.xd{left:83.375991px;}
.xa{left:107.675991px;}
.x5{left:109.655991px;}
.x8{left:121.355991px;}
.x4{left:122.615991px;}
.x9{left:134.855991px;}
.x6{left:224.174991px;}
.x7{left:247.394991px;}
.x1{left:302.294991px;}
.x3{left:314.714991px;}
.xf{left:380.984991px;}
.xe{left:412.844991px;}
.xb{left:441.104991px;}
.xc{left:447.044991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.ls12{letter-spacing:-17.013333pt;}
.ls1c{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.874667pt;}
.ls11{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.368533pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls2e{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls2f{letter-spacing:-0.083200pt;}
.ls2a{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.199680pt;}
.ls17{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.271360pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls2c{letter-spacing:0.367360pt;}
.ls14{letter-spacing:0.392960pt;}
.ls29{letter-spacing:0.544000pt;}
.ls28{letter-spacing:0.545280pt;}
.ls4{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.839680pt;}
.ls8{letter-spacing:2.119680pt;}
.ls19{letter-spacing:2.191360pt;}
.ls18{letter-spacing:3.471360pt;}
.ls15{letter-spacing:4.111360pt;}
.ls1e{letter-spacing:4.751360pt;}
.ls25{letter-spacing:5.391360pt;}
.ls16{letter-spacing:6.031360pt;}
.ls2d{letter-spacing:6.352640pt;}
.ls1f{letter-spacing:6.671360pt;}
.ls1d{letter-spacing:8.591360pt;}
.ls22{letter-spacing:10.031360pt;}
.lsf{letter-spacing:11.151360pt;}
.ls10{letter-spacing:12.431360pt;}
.ls21{letter-spacing:13.071360pt;}
.ls7{letter-spacing:18.191360pt;}
.ls20{letter-spacing:18.831360pt;}
.ls24{letter-spacing:33.551360pt;}
.ls2b{letter-spacing:35.757056pt;}
.ls26{letter-spacing:35.792640pt;}
.ls27{letter-spacing:80.592640pt;}
.ws1{word-spacing:-17.792000pt;}
.wsb{word-spacing:-16.640107pt;}
.ws7{word-spacing:-16.601707pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.233173pt;}
.wsa{word-spacing:-16.097173pt;}
.wsc{word-spacing:-16.000107pt;}
.wse{word-spacing:-15.961707pt;}
.ws8{word-spacing:-15.632640pt;}
.wsd{word-spacing:-15.456640pt;}
.ws11{word-spacing:-15.311360pt;}
.ws13{word-spacing:-14.814720pt;}
.wsf{word-spacing:-14.802944pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws12{word-spacing:-14.637077pt;}
.ws2{word-spacing:-14.055680pt;}
.ws10{word-spacing:-11.956224pt;}
.ws4{word-spacing:0.000000pt;}
._21{margin-left:-17.870293pt;}
._b{margin-left:-13.145600pt;}
._2f{margin-left:-10.238933pt;}
._16{margin-left:-4.223147pt;}
._3{margin-left:-3.187200pt;}
._4{margin-left:-1.844480pt;}
._7{margin-left:-0.903040pt;}
._2{width:0.960427pt;}
._22{width:1.870933pt;}
._5{width:2.762240pt;}
._6{width:3.819307pt;}
._10{width:4.999893pt;}
._12{width:6.554880pt;}
._8{width:7.649280pt;}
._1{width:8.919893pt;}
._0{width:9.987627pt;}
._17{width:10.892800pt;}
._14{width:12.129280pt;}
._13{width:13.365760pt;}
._1d{width:14.896640pt;}
._30{width:15.836587pt;}
._11{width:17.546240pt;}
._31{width:18.461440pt;}
._15{width:19.371520pt;}
._26{width:20.273920pt;}
._9{width:21.301120pt;}
._19{width:22.197760pt;}
._24{width:23.116800pt;}
._d{width:24.221867pt;}
._2b{width:25.485227pt;}
._23{width:26.460160pt;}
._1e{width:27.673600pt;}
._1f{width:28.910080pt;}
._a{width:30.119040pt;}
._1c{width:31.469440pt;}
._2c{width:32.475520pt;}
._28{width:33.390507pt;}
._c{width:34.304000pt;}
._1a{width:36.034560pt;}
._1b{width:36.936960pt;}
._2d{width:37.981013pt;}
._20{width:39.900160pt;}
._e{width:41.098240pt;}
._f{width:42.353920pt;}
._18{width:44.807680pt;}
._25{width:46.574080pt;}
._27{width:47.673173pt;}
._2e{width:53.286400pt;}
._2a{width:58.919893pt;}
._29{width:60.136320pt;}
._32{width:80.592640pt;}
._33{width:753.371307pt;}
.fs6{font-size:43.008000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.040000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y4c{bottom:108.512000pt;}
.y28{bottom:109.632000pt;}
.y67{bottom:120.512000pt;}
.y4b{bottom:125.312000pt;}
.y27{bottom:126.592000pt;}
.y66{bottom:135.866667pt;}
.y4a{bottom:142.106667pt;}
.y26{bottom:143.386667pt;}
.y65{bottom:151.226667pt;}
.y49{bottom:159.066667pt;}
.y25{bottom:160.186667pt;}
.y64{bottom:166.426667pt;}
.y48{bottom:175.866667pt;}
.y24{bottom:177.146667pt;}
.y63{bottom:181.786667pt;}
.y47{bottom:192.826667pt;}
.y23{bottom:193.946667pt;}
.y62{bottom:197.146667pt;}
.y53{bottom:208.386667pt;}
.y46{bottom:209.666667pt;}
.y22{bottom:210.946667pt;}
.y61{bottom:212.546667pt;}
.y45{bottom:226.626667pt;}
.y21{bottom:227.746667pt;}
.y60{bottom:227.906667pt;}
.y87{bottom:240.066667pt;}
.y5f{bottom:243.266667pt;}
.y44{bottom:243.426667pt;}
.y20{bottom:244.546667pt;}
.y86{bottom:255.426667pt;}
.y5e{bottom:258.466667pt;}
.y43{bottom:260.226667pt;}
.y1f{bottom:261.506667pt;}
.y85{bottom:270.786667pt;}
.y5d{bottom:273.826667pt;}
.y42{bottom:277.186667pt;}
.y1e{bottom:278.306667pt;}
.y84{bottom:286.146667pt;}
.y5c{bottom:289.186667pt;}
.y41{bottom:293.986667pt;}
.y1d{bottom:295.266667pt;}
.y83{bottom:301.506667pt;}
.y5b{bottom:304.546667pt;}
.y4f{bottom:309.666667pt;}
.y40{bottom:310.946667pt;}
.y1c{bottom:312.066667pt;}
.y82{bottom:316.706667pt;}
.y5a{bottom:319.906667pt;}
.y3f{bottom:327.746667pt;}
.y1b{bottom:328.866667pt;}
.y81{bottom:332.386667pt;}
.y59{bottom:335.106667pt;}
.y4e{bottom:343.266667pt;}
.y3e{bottom:344.546667pt;}
.y1a{bottom:345.826667pt;}
.y80{bottom:349.026667pt;}
.y58{bottom:350.466667pt;}
.y3d{bottom:361.506667pt;}
.y19{bottom:362.466667pt;}
.y7f{bottom:364.386667pt;}
.y57{bottom:365.826667pt;}
.y4d{bottom:377.053333pt;}
.y18{bottom:377.853333pt;}
.y3c{bottom:378.333333pt;}
.y7e{bottom:379.613333pt;}
.y56{bottom:381.213333pt;}
.y17{bottom:393.213333pt;}
.y7d{bottom:394.973333pt;}
.y3b{bottom:395.293333pt;}
.y55{bottom:396.573333pt;}
.y16{bottom:408.413333pt;}
.y7c{bottom:410.333333pt;}
.y3a{bottom:412.093333pt;}
.y7b{bottom:425.693333pt;}
.y52{bottom:427.613333pt;}
.y39{bottom:428.893333pt;}
.y15{bottom:431.773333pt;}
.y7a{bottom:441.053333pt;}
.y38{bottom:445.853333pt;}
.y14{bottom:447.133333pt;}
.y79{bottom:456.253333pt;}
.y37{bottom:462.653333pt;}
.y13{bottom:462.973333pt;}
.y78{bottom:471.613333pt;}
.y50{bottom:478.333333pt;}
.y36{bottom:479.613333pt;}
.y12{bottom:480.893333pt;}
.y77{bottom:486.973333pt;}
.y11{bottom:496.253333pt;}
.y35{bottom:496.413333pt;}
.y76{bottom:502.333333pt;}
.y10{bottom:511.453333pt;}
.y34{bottom:513.213333pt;}
.y75{bottom:517.693333pt;}
.yf{bottom:526.813333pt;}
.y33{bottom:530.173333pt;}
.y74{bottom:533.053333pt;}
.ye{bottom:542.693333pt;}
.y32{bottom:547.013333pt;}
.y73{bottom:548.293333pt;}
.yd{bottom:560.613333pt;}
.y72{bottom:563.653333pt;}
.y31{bottom:563.973333pt;}
.yc{bottom:575.973333pt;}
.y71{bottom:579.013333pt;}
.y30{bottom:580.773333pt;}
.yb{bottom:591.333333pt;}
.y70{bottom:594.373333pt;}
.y2f{bottom:597.573333pt;}
.ya{bottom:607.173333pt;}
.y6f{bottom:609.733333pt;}
.y2e{bottom:614.533333pt;}
.y6e{bottom:625.093333pt;}
.y9{bottom:625.573333pt;}
.y2d{bottom:631.333333pt;}
.y6d{bottom:640.293333pt;}
.y8{bottom:643.653333pt;}
.y54{bottom:647.013333pt;}
.y2c{bottom:648.293333pt;}
.y6c{bottom:655.653333pt;}
.y7{bottom:660.773333pt;}
.y51{bottom:663.813333pt;}
.y2b{bottom:665.093333pt;}
.y6b{bottom:671.013333pt;}
.y6{bottom:679.173333pt;}
.y2a{bottom:682.053333pt;}
.y6a{bottom:686.373333pt;}
.y5{bottom:697.573333pt;}
.y29{bottom:698.853333pt;}
.y69{bottom:701.733333pt;}
.y4{bottom:715.680000pt;}
.y68{bottom:717.120000pt;}
.h8{height:39.191562pt;}
.h7{height:40.488438pt;}
.h3{height:41.112500pt;}
.h9{height:46.593750pt;}
.h2{height:47.647188pt;}
.hf{height:47.762000pt;}
.he{height:48.347500pt;}
.hd{height:48.464000pt;}
.h4{height:52.813750pt;}
.ha{height:53.590000pt;}
.hb{height:55.110000pt;}
.h6{height:57.406250pt;}
.hc{height:57.933750pt;}
.h5{height:58.250000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x2{left:71.871992pt;}
.xd{left:74.111992pt;}
.xa{left:95.711992pt;}
.x5{left:97.471992pt;}
.x8{left:107.871992pt;}
.x4{left:108.991992pt;}
.x9{left:119.871992pt;}
.x6{left:199.266658pt;}
.x7{left:219.906658pt;}
.x1{left:268.706658pt;}
.x3{left:279.746658pt;}
.xf{left:338.653325pt;}
.xe{left:366.973325pt;}
.xb{left:392.093325pt;}
.xc{left:397.373325pt;}
}




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