
    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_9914b8bbb1360dcd5a662c11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_4ef7a47f1865b7038061d8c3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5d0f90749a32cc4c8082ccbc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;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_5cccb6d0c1897c14617e79f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_97cbbe93c9d059723c513e26.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_4c7b0361773faf90ec918eb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_7829347bc00b0745efb496ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_2564a88ee5b32cdd2fe82939.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_f9aefe1114c86dad888417de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.759033;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:ffa;src:url('chunks/assets/font_91d1281a7787fbb7991f3baa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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;}
.v1{vertical-align:21.978000px;}
.lsb{letter-spacing:-2.580000px;}
.lsa{letter-spacing:-0.480000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.007800px;}
.ls9{letter-spacing:0.021000px;}
.ls0{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.257600px;}
.ls3{letter-spacing:2.100000px;}
.ls7{letter-spacing:6.240000px;}
.ls2{letter-spacing:6.241200px;}
.ls6{letter-spacing:10.320000px;}
.ls8{letter-spacing:18.453600px;}
.ls4{letter-spacing:20.460000px;}
.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:-18.000000px;}
.wsf{word-spacing:-17.100000px;}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws8{word-spacing:-10.320000px;}
.wsc{word-spacing:-6.240000px;}
.ws15{word-spacing:-2.580000px;}
.ws9{word-spacing:-2.100000px;}
.wse{word-spacing:-1.440000px;}
.ws5{word-spacing:-0.960000px;}
.ws17{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.816000px;}
.ws6{word-spacing:-0.336000px;}
.ws12{word-spacing:-0.240000px;}
.ws1{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.480000px;}
.ws14{word-spacing:2.580000px;}
.ws18{word-spacing:3.240000px;}
.wsd{word-spacing:4.020000px;}
.ws13{word-spacing:4.080000px;}
.ws7{word-spacing:10.320000px;}
.ws11{word-spacing:12.840000px;}
.ws19{word-spacing:14.700000px;}
.wsb{word-spacing:15.420000px;}
.wsa{word-spacing:24.240000px;}
.ws1a{word-spacing:27.480000px;}
._17{margin-left:-15.756600px;}
._15{margin-left:-14.741400px;}
._1b{margin-left:-11.568000px;}
._6{margin-left:-10.441800px;}
._0{margin-left:-6.750000px;}
._1{margin-left:-5.293200px;}
._4{margin-left:-3.556800px;}
._2{margin-left:-2.160000px;}
._7{margin-left:-1.046400px;}
._3{width:1.920000px;}
._11{width:3.070200px;}
._10{width:4.326000px;}
._c{width:6.183000px;}
._e{width:7.320000px;}
._16{width:9.243600px;}
._5{width:10.315200px;}
._8{width:11.352000px;}
._d{width:13.254000px;}
._b{width:16.162200px;}
._13{width:18.400200px;}
._1a{width:19.572600px;}
._a{width:20.916000px;}
._9{width:24.246000px;}
._f{width:25.602000px;}
._19{width:26.739000px;}
._18{width:28.314000px;}
._12{width:29.346000px;}
._14{width:32.142000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:38.478000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:55.955700px;}
.y1{bottom:56.664300px;}
.y6e{bottom:103.158300px;}
.y3c{bottom:104.261100px;}
.y23{bottom:106.054500px;}
.y3b{bottom:122.261100px;}
.y6d{bottom:122.958300px;}
.y22{bottom:124.054500px;}
.y3a{bottom:140.261100px;}
.y21{bottom:142.054500px;}
.y39{bottom:158.261100px;}
.y20{bottom:172.810350px;}
.y38{bottom:176.261100px;}
.y6c{bottom:177.518400px;}
.y6b{bottom:191.918400px;}
.y37{bottom:194.261100px;}
.y1f{bottom:203.566350px;}
.y6a{bottom:206.318400px;}
.y36{bottom:212.261100px;}
.y69{bottom:220.718400px;}
.y1e{bottom:221.566350px;}
.y35{bottom:230.261100px;}
.y68{bottom:235.118400px;}
.y1d{bottom:239.566350px;}
.y34{bottom:248.261100px;}
.y67{bottom:249.518400px;}
.y1c{bottom:261.818250px;}
.y66{bottom:263.918400px;}
.y33{bottom:266.261100px;}
.y65{bottom:278.318400px;}
.y1b{bottom:279.818250px;}
.y32{bottom:284.261100px;}
.y64{bottom:292.718400px;}
.y1a{bottom:297.818250px;}
.y31{bottom:302.261100px;}
.y63{bottom:307.118400px;}
.y19{bottom:315.818250px;}
.y30{bottom:320.261100px;}
.y62{bottom:321.518400px;}
.y18{bottom:333.818250px;}
.y61{bottom:335.918400px;}
.y60{bottom:350.318400px;}
.y2f{bottom:351.016950px;}
.y17{bottom:351.818250px;}
.y5f{bottom:364.718400px;}
.y16{bottom:374.070300px;}
.y5e{bottom:379.118400px;}
.y2e{bottom:391.423800px;}
.y15{bottom:392.070300px;}
.y5d{bottom:393.518400px;}
.y5c{bottom:407.918400px;}
.y2d{bottom:409.423800px;}
.y14{bottom:410.070300px;}
.y5b{bottom:422.318400px;}
.y13{bottom:428.070300px;}
.y5a{bottom:436.718400px;}
.y12{bottom:450.322200px;}
.y59{bottom:451.118400px;}
.y58{bottom:465.518400px;}
.y11{bottom:468.322200px;}
.y57{bottom:479.918400px;}
.y10{bottom:486.322200px;}
.y56{bottom:494.318400px;}
.yf{bottom:504.322200px;}
.y55{bottom:508.718400px;}
.ye{bottom:522.322200px;}
.y54{bottom:523.118400px;}
.y53{bottom:537.518400px;}
.y52{bottom:551.918400px;}
.yd{bottom:553.078050px;}
.y51{bottom:566.318400px;}
.y50{bottom:580.718400px;}
.y4f{bottom:595.118400px;}
.y4e{bottom:609.518400px;}
.y4d{bottom:623.918400px;}
.yc{bottom:634.857600px;}
.y4c{bottom:638.318400px;}
.y4b{bottom:652.718400px;}
.yb{bottom:662.613600px;}
.y4a{bottom:667.118400px;}
.ya{bottom:677.013450px;}
.y49{bottom:681.518400px;}
.y9{bottom:691.413600px;}
.y48{bottom:695.918400px;}
.y8{bottom:705.813600px;}
.y47{bottom:723.074400px;}
.y7{bottom:737.221500px;}
.y46{bottom:753.380250px;}
.y6{bottom:754.973400px;}
.y45{bottom:771.380250px;}
.y5{bottom:782.977350px;}
.y44{bottom:789.380250px;}
.y2c{bottom:794.638950px;}
.y43{bottom:807.380250px;}
.y2b{bottom:812.638950px;}
.y4{bottom:817.985250px;}
.y42{bottom:825.380250px;}
.y2a{bottom:830.638950px;}
.y3{bottom:835.737150px;}
.y41{bottom:847.632150px;}
.y29{bottom:852.891000px;}
.y2{bottom:857.337150px;}
.y40{bottom:865.632150px;}
.y28{bottom:870.891000px;}
.y3f{bottom:883.632150px;}
.y3e{bottom:901.632150px;}
.y27{bottom:901.646850px;}
.y25{bottom:927.827700px;}
.y24{bottom:948.827700px;}
.y3d{bottom:951.848250px;}
.h9{height:32.531250px;}
.h5{height:33.328125px;}
.he{height:35.411133px;}
.hc{height:36.375000px;}
.h7{height:42.117188px;}
.h8{height:42.632812px;}
.h2{height:45.468750px;}
.hb{height:48.468750px;}
.h4{height:48.796875px;}
.ha{height:52.646484px;}
.hd{height:53.291016px;}
.h6{height:57.911133px;}
.h3{height:63.949219px;}
.h1{height:1011.750000px;}
.h0{height:1011.969000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.xe{left:76.535400px;}
.x8{left:93.543300px;}
.x2{left:97.576050px;}
.x6{left:101.350350px;}
.x9{left:110.551200px;}
.x12{left:114.803100px;}
.xb{left:119.055150px;}
.xd{left:192.121500px;}
.x7{left:203.412900px;}
.x3{left:210.453900px;}
.x4{left:257.778600px;}
.x10{left:276.422100px;}
.xc{left:277.646250px;}
.x11{left:294.004950px;}
.x5{left:296.973150px;}
.xf{left:310.516350px;}
.xa{left:331.805250px;}
.x1{left:613.053000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.lsb{letter-spacing:-2.293333pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.006933pt;}
.ls9{letter-spacing:0.018667pt;}
.ls0{letter-spacing:0.853333pt;}
.lsc{letter-spacing:1.117867pt;}
.ls3{letter-spacing:1.866667pt;}
.ls7{letter-spacing:5.546667pt;}
.ls2{letter-spacing:5.547733pt;}
.ls6{letter-spacing:9.173333pt;}
.ls8{letter-spacing:16.403200pt;}
.ls4{letter-spacing:18.186667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.200000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws8{word-spacing:-9.173333pt;}
.wsc{word-spacing:-5.546667pt;}
.ws15{word-spacing:-2.293333pt;}
.ws9{word-spacing:-1.866667pt;}
.wse{word-spacing:-1.280000pt;}
.ws5{word-spacing:-0.853333pt;}
.ws17{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.725333pt;}
.ws6{word-spacing:-0.298667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.426667pt;}
.ws14{word-spacing:2.293333pt;}
.ws18{word-spacing:2.880000pt;}
.wsd{word-spacing:3.573333pt;}
.ws13{word-spacing:3.626667pt;}
.ws7{word-spacing:9.173333pt;}
.ws11{word-spacing:11.413333pt;}
.ws19{word-spacing:13.066667pt;}
.wsb{word-spacing:13.706667pt;}
.wsa{word-spacing:21.546667pt;}
.ws1a{word-spacing:24.426667pt;}
._17{margin-left:-14.005867pt;}
._15{margin-left:-13.103467pt;}
._1b{margin-left:-10.282667pt;}
._6{margin-left:-9.281600pt;}
._0{margin-left:-6.000000pt;}
._1{margin-left:-4.705067pt;}
._4{margin-left:-3.161600pt;}
._2{margin-left:-1.920000pt;}
._7{margin-left:-0.930133pt;}
._3{width:1.706667pt;}
._11{width:2.729067pt;}
._10{width:3.845333pt;}
._c{width:5.496000pt;}
._e{width:6.506667pt;}
._16{width:8.216533pt;}
._5{width:9.169067pt;}
._8{width:10.090667pt;}
._d{width:11.781333pt;}
._b{width:14.366400pt;}
._13{width:16.355733pt;}
._1a{width:17.397867pt;}
._a{width:18.592000pt;}
._9{width:21.552000pt;}
._f{width:22.757333pt;}
._19{width:23.768000pt;}
._18{width:25.168000pt;}
._12{width:26.085333pt;}
._14{width:28.570667pt;}
.fs4{font-size:34.202667pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:49.738400pt;}
.y1{bottom:50.368267pt;}
.y6e{bottom:91.696267pt;}
.y3c{bottom:92.676533pt;}
.y23{bottom:94.270667pt;}
.y3b{bottom:108.676533pt;}
.y6d{bottom:109.296267pt;}
.y22{bottom:110.270667pt;}
.y3a{bottom:124.676533pt;}
.y21{bottom:126.270667pt;}
.y39{bottom:140.676533pt;}
.y20{bottom:153.609200pt;}
.y38{bottom:156.676533pt;}
.y6c{bottom:157.794133pt;}
.y6b{bottom:170.594133pt;}
.y37{bottom:172.676533pt;}
.y1f{bottom:180.947867pt;}
.y6a{bottom:183.394133pt;}
.y36{bottom:188.676533pt;}
.y69{bottom:196.194133pt;}
.y1e{bottom:196.947867pt;}
.y35{bottom:204.676533pt;}
.y68{bottom:208.994133pt;}
.y1d{bottom:212.947867pt;}
.y34{bottom:220.676533pt;}
.y67{bottom:221.794133pt;}
.y1c{bottom:232.727333pt;}
.y66{bottom:234.594133pt;}
.y33{bottom:236.676533pt;}
.y65{bottom:247.394133pt;}
.y1b{bottom:248.727333pt;}
.y32{bottom:252.676533pt;}
.y64{bottom:260.194133pt;}
.y1a{bottom:264.727333pt;}
.y31{bottom:268.676533pt;}
.y63{bottom:272.994133pt;}
.y19{bottom:280.727333pt;}
.y30{bottom:284.676533pt;}
.y62{bottom:285.794133pt;}
.y18{bottom:296.727333pt;}
.y61{bottom:298.594133pt;}
.y60{bottom:311.394133pt;}
.y2f{bottom:312.015067pt;}
.y17{bottom:312.727333pt;}
.y5f{bottom:324.194133pt;}
.y16{bottom:332.506933pt;}
.y5e{bottom:336.994133pt;}
.y2e{bottom:347.932267pt;}
.y15{bottom:348.506933pt;}
.y5d{bottom:349.794133pt;}
.y5c{bottom:362.594133pt;}
.y2d{bottom:363.932267pt;}
.y14{bottom:364.506933pt;}
.y5b{bottom:375.394133pt;}
.y13{bottom:380.506933pt;}
.y5a{bottom:388.194133pt;}
.y12{bottom:400.286400pt;}
.y59{bottom:400.994133pt;}
.y58{bottom:413.794133pt;}
.y11{bottom:416.286400pt;}
.y57{bottom:426.594133pt;}
.y10{bottom:432.286400pt;}
.y56{bottom:439.394133pt;}
.yf{bottom:448.286400pt;}
.y55{bottom:452.194133pt;}
.ye{bottom:464.286400pt;}
.y54{bottom:464.994133pt;}
.y53{bottom:477.794133pt;}
.y52{bottom:490.594133pt;}
.yd{bottom:491.624933pt;}
.y51{bottom:503.394133pt;}
.y50{bottom:516.194133pt;}
.y4f{bottom:528.994133pt;}
.y4e{bottom:541.794133pt;}
.y4d{bottom:554.594133pt;}
.yc{bottom:564.317867pt;}
.y4c{bottom:567.394133pt;}
.y4b{bottom:580.194133pt;}
.yb{bottom:588.989867pt;}
.y4a{bottom:592.994133pt;}
.ya{bottom:601.789733pt;}
.y49{bottom:605.794133pt;}
.y9{bottom:614.589867pt;}
.y48{bottom:618.594133pt;}
.y8{bottom:627.389867pt;}
.y47{bottom:642.732800pt;}
.y7{bottom:655.308000pt;}
.y46{bottom:669.671333pt;}
.y6{bottom:671.087467pt;}
.y45{bottom:685.671333pt;}
.y5{bottom:695.979867pt;}
.y44{bottom:701.671333pt;}
.y2c{bottom:706.345733pt;}
.y43{bottom:717.671333pt;}
.y2b{bottom:722.345733pt;}
.y4{bottom:727.098000pt;}
.y42{bottom:733.671333pt;}
.y2a{bottom:738.345733pt;}
.y3{bottom:742.877467pt;}
.y41{bottom:753.450800pt;}
.y29{bottom:758.125333pt;}
.y2{bottom:762.077467pt;}
.y40{bottom:769.450800pt;}
.y28{bottom:774.125333pt;}
.y3f{bottom:785.450800pt;}
.y3e{bottom:801.450800pt;}
.y27{bottom:801.463867pt;}
.y25{bottom:824.735733pt;}
.y24{bottom:843.402400pt;}
.y3d{bottom:846.087333pt;}
.h9{height:28.916667pt;}
.h5{height:29.625000pt;}
.he{height:31.476562pt;}
.hc{height:32.333333pt;}
.h7{height:37.437500pt;}
.h8{height:37.895833pt;}
.h2{height:40.416667pt;}
.hb{height:43.083333pt;}
.h4{height:43.375000pt;}
.ha{height:46.796875pt;}
.hd{height:47.369792pt;}
.h6{height:51.476562pt;}
.h3{height:56.843750pt;}
.h1{height:899.333333pt;}
.h0{height:899.528000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.xe{left:68.031467pt;}
.x8{left:83.149600pt;}
.x2{left:86.734267pt;}
.x6{left:90.089200pt;}
.x9{left:98.267733pt;}
.x12{left:102.047200pt;}
.xb{left:105.826800pt;}
.xd{left:170.774667pt;}
.x7{left:180.811467pt;}
.x3{left:187.070133pt;}
.x4{left:229.136533pt;}
.x10{left:245.708533pt;}
.xc{left:246.796667pt;}
.x11{left:261.337733pt;}
.x5{left:263.976133pt;}
.xf{left:276.014533pt;}
.xa{left:294.938000pt;}
.x1{left:544.936000pt;}
}




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