
    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_b1cbf47b3f13d6fb6512b46f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_7e8d7338722280d700f27b06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_9c428895adfceb1174e68a6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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;}
.ls28{letter-spacing:-1.716000px;}
.ls2b{letter-spacing:-1.584000px;}
.ls1e{letter-spacing:-1.518000px;}
.ls24{letter-spacing:-1.386000px;}
.ls1c{letter-spacing:-1.320000px;}
.ls27{letter-spacing:-1.287000px;}
.ls26{letter-spacing:-1.254000px;}
.ls1d{letter-spacing:-1.188000px;}
.lsc{letter-spacing:-1.056000px;}
.ls2a{letter-spacing:-0.858000px;}
.ls29{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.726000px;}
.ls1{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.594000px;}
.ls20{letter-spacing:-0.528000px;}
.lsd{letter-spacing:-0.462000px;}
.lsb{letter-spacing:-0.396000px;}
.ls1f{letter-spacing:-0.330000px;}
.ls11{letter-spacing:-0.264000px;}
.lse{letter-spacing:-0.198000px;}
.ls25{letter-spacing:-0.132000px;}
.ls14{letter-spacing:-0.096000px;}
.ls12{letter-spacing:-0.066000px;}
.ls2d{letter-spacing:-0.054000px;}
.ls13{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.132000px;}
.ls2c{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.330000px;}
.ls16{letter-spacing:0.396000px;}
.ls10{letter-spacing:0.462000px;}
.ls19{letter-spacing:0.594000px;}
.ls9{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.726000px;}
.ls17{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.841500px;}
.ls2{letter-spacing:0.858000px;}
.ls15{letter-spacing:0.924000px;}
.ls18{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.056000px;}
.ls4{letter-spacing:1.254000px;}
.ls23{letter-spacing:1.386000px;}
.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:-23.904000px;}
.ws40{word-spacing:-17.226000px;}
.ws30{word-spacing:-16.962000px;}
.ws3{word-spacing:-16.764000px;}
.ws26{word-spacing:-16.698000px;}
.ws31{word-spacing:-16.632000px;}
.ws3a{word-spacing:-16.566000px;}
.ws6{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.434000px;}
.ws4{word-spacing:-16.236000px;}
.ws25{word-spacing:-16.104000px;}
.ws37{word-spacing:-15.708000px;}
.ws39{word-spacing:-15.312000px;}
.ws38{word-spacing:-15.246000px;}
.ws33{word-spacing:-15.180000px;}
.ws3b{word-spacing:-14.916000px;}
.ws35{word-spacing:-14.784000px;}
.ws41{word-spacing:-13.446000px;}
.ws8{word-spacing:-12.240000px;}
.ws3c{word-spacing:-12.192000px;}
.ws7{word-spacing:-12.000000px;}
.ws1{word-spacing:-7.056000px;}
.ws3f{word-spacing:-0.858000px;}
.ws1f{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.726000px;}
.ws12{word-spacing:-0.660000px;}
.wsb{word-spacing:-0.594000px;}
.ws1a{word-spacing:-0.528000px;}
.ws2a{word-spacing:-0.462000px;}
.ws14{word-spacing:-0.396000px;}
.ws11{word-spacing:-0.330000px;}
.ws15{word-spacing:-0.264000px;}
.ws28{word-spacing:-0.198000px;}
.ws16{word-spacing:-0.132000px;}
.wsd{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:0.066000px;}
.ws13{word-spacing:0.132000px;}
.ws1b{word-spacing:0.198000px;}
.ws1c{word-spacing:0.264000px;}
.ws29{word-spacing:0.330000px;}
.ws19{word-spacing:0.396000px;}
.ws2c{word-spacing:0.462000px;}
.ws22{word-spacing:0.528000px;}
.wse{word-spacing:0.594000px;}
.ws2e{word-spacing:0.660000px;}
.wsc{word-spacing:0.726000px;}
.ws10{word-spacing:0.792000px;}
.ws23{word-spacing:0.858000px;}
.ws2f{word-spacing:0.924000px;}
.ws21{word-spacing:0.990000px;}
.wsa{word-spacing:1.122000px;}
.ws18{word-spacing:1.188000px;}
.ws2d{word-spacing:1.254000px;}
.ws17{word-spacing:1.320000px;}
.ws1d{word-spacing:1.386000px;}
.ws20{word-spacing:1.452000px;}
.ws1e{word-spacing:1.518000px;}
.ws2b{word-spacing:1.584000px;}
.ws24{word-spacing:4.248000px;}
.ws34{word-spacing:4.536000px;}
.ws32{word-spacing:4.554000px;}
.ws36{word-spacing:4.579500px;}
.ws2{word-spacing:5.203500px;}
.ws27{word-spacing:35.712000px;}
.ws3d{word-spacing:1078.656000px;}
._8{margin-left:-9.768000px;}
._9{margin-left:-6.102000px;}
._4{margin-left:-4.140000px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.536000px;}
._2{width:1.848000px;}
._7{width:2.904000px;}
._3{width:17.424000px;}
._5{width:48.324000px;}
._6{width:1091.004000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs3{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:53.497500px;}
.y78{bottom:53.572500px;}
.y54{bottom:53.655000px;}
.y24{bottom:70.740000px;}
.y77{bottom:70.815000px;}
.y53{bottom:70.897500px;}
.y23{bottom:87.982500px;}
.y76{bottom:88.057500px;}
.y52{bottom:88.140000px;}
.y22{bottom:105.225000px;}
.y75{bottom:105.300000px;}
.y51{bottom:105.382500px;}
.y21{bottom:122.467500px;}
.y74{bottom:122.542500px;}
.y50{bottom:122.625000px;}
.y20{bottom:139.710000px;}
.y73{bottom:139.785000px;}
.y4f{bottom:139.867500px;}
.y1f{bottom:156.952500px;}
.y72{bottom:157.027500px;}
.y4e{bottom:157.110000px;}
.y1e{bottom:174.195000px;}
.y71{bottom:174.270000px;}
.y4d{bottom:174.352500px;}
.y1d{bottom:191.437500px;}
.y70{bottom:191.512500px;}
.y4c{bottom:191.595000px;}
.y1c{bottom:208.680000px;}
.y6f{bottom:208.755000px;}
.y4b{bottom:208.837500px;}
.y1b{bottom:225.922500px;}
.y6e{bottom:225.997500px;}
.y4a{bottom:226.080000px;}
.y1a{bottom:243.165000px;}
.y6d{bottom:243.240000px;}
.y49{bottom:243.322500px;}
.y19{bottom:260.407500px;}
.y6c{bottom:260.482500px;}
.y48{bottom:260.565000px;}
.y18{bottom:277.650000px;}
.y6b{bottom:277.725000px;}
.y47{bottom:277.807500px;}
.y17{bottom:294.892500px;}
.y6a{bottom:294.967500px;}
.y46{bottom:295.050000px;}
.y16{bottom:312.135000px;}
.y69{bottom:312.210000px;}
.y45{bottom:312.292500px;}
.y15{bottom:329.377500px;}
.y68{bottom:329.452500px;}
.y44{bottom:329.535000px;}
.y14{bottom:346.620000px;}
.y67{bottom:346.695000px;}
.y43{bottom:346.777500px;}
.y13{bottom:363.862500px;}
.y66{bottom:363.937500px;}
.y42{bottom:364.020000px;}
.y12{bottom:381.105000px;}
.y65{bottom:381.180000px;}
.y41{bottom:381.262500px;}
.y11{bottom:398.347500px;}
.y64{bottom:398.422500px;}
.y40{bottom:398.505000px;}
.y10{bottom:415.590000px;}
.y63{bottom:415.665000px;}
.y3f{bottom:415.747500px;}
.yf{bottom:432.832500px;}
.y62{bottom:432.907500px;}
.y3e{bottom:432.990000px;}
.ye{bottom:450.075000px;}
.y61{bottom:450.150000px;}
.y3d{bottom:450.232500px;}
.yd{bottom:467.317500px;}
.y60{bottom:467.392500px;}
.y3c{bottom:467.475000px;}
.yc{bottom:484.560000px;}
.y3b{bottom:484.717500px;}
.y5f{bottom:484.777500px;}
.yb{bottom:501.802500px;}
.y3a{bottom:501.960000px;}
.y5e{bottom:502.020000px;}
.ya{bottom:519.045000px;}
.y39{bottom:519.202500px;}
.y5d{bottom:519.262500px;}
.y9{bottom:536.287500px;}
.y38{bottom:536.445000px;}
.y5c{bottom:536.505000px;}
.y8{bottom:553.530000px;}
.y37{bottom:553.687500px;}
.y5b{bottom:553.747500px;}
.y7{bottom:570.772500px;}
.y36{bottom:570.930000px;}
.y5a{bottom:570.990000px;}
.y6{bottom:588.015000px;}
.y35{bottom:588.172500px;}
.y59{bottom:588.232500px;}
.y5{bottom:605.257500px;}
.y34{bottom:605.415000px;}
.y58{bottom:605.475000px;}
.y4{bottom:622.500000px;}
.y33{bottom:622.657500px;}
.y57{bottom:622.717500px;}
.y32{bottom:639.900000px;}
.y56{bottom:639.960000px;}
.y31{bottom:657.142500px;}
.y55{bottom:657.202500px;}
.y7c{bottom:665.760000px;}
.y30{bottom:674.445000px;}
.y7b{bottom:683.010000px;}
.y2f{bottom:691.687500px;}
.y7a{bottom:708.885000px;}
.y2e{bottom:708.930000px;}
.y79{bottom:726.156000px;}
.y2d{bottom:726.172500px;}
.y2c{bottom:743.415000px;}
.y2{bottom:751.605000px;}
.y2b{bottom:760.657500px;}
.y2a{bottom:777.900000px;}
.y29{bottom:795.142500px;}
.y1{bottom:805.605000px;}
.y27{bottom:808.605000px;}
.y28{bottom:812.385000px;}
.y26{bottom:859.605000px;}
.y3{bottom:922.500000px;}
.h2{height:47.085938px;}
.h4{height:51.216000px;}
.h5{height:57.618000px;}
.h3{height:70.422000px;}
.h1{height:102.432000px;}
.h0{height:892.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x3{left:6.000000px;}
.x4{left:76.200000px;}
.x7{left:77.415000px;}
.x5{left:93.402000px;}
.x8{left:94.624500px;}
.x2{left:201.279000px;}
.xa{left:231.375000px;}
.x1{left:270.975000px;}
.xc{left:341.250000px;}
.x6{left:391.110000px;}
.xb{left:445.425000px;}
.x9{left:456.783000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-1.525333pt;}
.ls2b{letter-spacing:-1.408000pt;}
.ls1e{letter-spacing:-1.349333pt;}
.ls24{letter-spacing:-1.232000pt;}
.ls1c{letter-spacing:-1.173333pt;}
.ls27{letter-spacing:-1.144000pt;}
.ls26{letter-spacing:-1.114667pt;}
.ls1d{letter-spacing:-1.056000pt;}
.lsc{letter-spacing:-0.938667pt;}
.ls2a{letter-spacing:-0.762667pt;}
.ls29{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.645333pt;}
.ls1{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls20{letter-spacing:-0.469333pt;}
.lsd{letter-spacing:-0.410667pt;}
.lsb{letter-spacing:-0.352000pt;}
.ls1f{letter-spacing:-0.293333pt;}
.ls11{letter-spacing:-0.234667pt;}
.lse{letter-spacing:-0.176000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls14{letter-spacing:-0.085333pt;}
.ls12{letter-spacing:-0.058667pt;}
.ls2d{letter-spacing:-0.048000pt;}
.ls13{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.117333pt;}
.ls2c{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.293333pt;}
.ls16{letter-spacing:0.352000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls19{letter-spacing:0.528000pt;}
.ls9{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.645333pt;}
.ls17{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.748000pt;}
.ls2{letter-spacing:0.762667pt;}
.ls15{letter-spacing:0.821333pt;}
.ls18{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.938667pt;}
.ls4{letter-spacing:1.114667pt;}
.ls23{letter-spacing:1.232000pt;}
.ws9{word-spacing:-21.248000pt;}
.ws40{word-spacing:-15.312000pt;}
.ws30{word-spacing:-15.077333pt;}
.ws3{word-spacing:-14.901333pt;}
.ws26{word-spacing:-14.842667pt;}
.ws31{word-spacing:-14.784000pt;}
.ws3a{word-spacing:-14.725333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.608000pt;}
.ws4{word-spacing:-14.432000pt;}
.ws25{word-spacing:-14.314667pt;}
.ws37{word-spacing:-13.962667pt;}
.ws39{word-spacing:-13.610667pt;}
.ws38{word-spacing:-13.552000pt;}
.ws33{word-spacing:-13.493333pt;}
.ws3b{word-spacing:-13.258667pt;}
.ws35{word-spacing:-13.141333pt;}
.ws41{word-spacing:-11.952000pt;}
.ws8{word-spacing:-10.880000pt;}
.ws3c{word-spacing:-10.837333pt;}
.ws7{word-spacing:-10.666667pt;}
.ws1{word-spacing:-6.272000pt;}
.ws3f{word-spacing:-0.762667pt;}
.ws1f{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.645333pt;}
.ws12{word-spacing:-0.586667pt;}
.wsb{word-spacing:-0.528000pt;}
.ws1a{word-spacing:-0.469333pt;}
.ws2a{word-spacing:-0.410667pt;}
.ws14{word-spacing:-0.352000pt;}
.ws11{word-spacing:-0.293333pt;}
.ws15{word-spacing:-0.234667pt;}
.ws28{word-spacing:-0.176000pt;}
.ws16{word-spacing:-0.117333pt;}
.wsd{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.058667pt;}
.ws13{word-spacing:0.117333pt;}
.ws1b{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.234667pt;}
.ws29{word-spacing:0.293333pt;}
.ws19{word-spacing:0.352000pt;}
.ws2c{word-spacing:0.410667pt;}
.ws22{word-spacing:0.469333pt;}
.wse{word-spacing:0.528000pt;}
.ws2e{word-spacing:0.586667pt;}
.wsc{word-spacing:0.645333pt;}
.ws10{word-spacing:0.704000pt;}
.ws23{word-spacing:0.762667pt;}
.ws2f{word-spacing:0.821333pt;}
.ws21{word-spacing:0.880000pt;}
.wsa{word-spacing:0.997333pt;}
.ws18{word-spacing:1.056000pt;}
.ws2d{word-spacing:1.114667pt;}
.ws17{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.232000pt;}
.ws20{word-spacing:1.290667pt;}
.ws1e{word-spacing:1.349333pt;}
.ws2b{word-spacing:1.408000pt;}
.ws24{word-spacing:3.776000pt;}
.ws34{word-spacing:4.032000pt;}
.ws32{word-spacing:4.048000pt;}
.ws36{word-spacing:4.070667pt;}
.ws2{word-spacing:4.625333pt;}
.ws27{word-spacing:31.744000pt;}
.ws3d{word-spacing:958.805333pt;}
._8{margin-left:-8.682667pt;}
._9{margin-left:-5.424000pt;}
._4{margin-left:-3.680000pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.365333pt;}
._2{width:1.642667pt;}
._7{width:2.581333pt;}
._3{width:15.488000pt;}
._5{width:42.954667pt;}
._6{width:969.781333pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:47.553333pt;}
.y78{bottom:47.620000pt;}
.y54{bottom:47.693333pt;}
.y24{bottom:62.880000pt;}
.y77{bottom:62.946667pt;}
.y53{bottom:63.020000pt;}
.y23{bottom:78.206667pt;}
.y76{bottom:78.273333pt;}
.y52{bottom:78.346667pt;}
.y22{bottom:93.533333pt;}
.y75{bottom:93.600000pt;}
.y51{bottom:93.673333pt;}
.y21{bottom:108.860000pt;}
.y74{bottom:108.926667pt;}
.y50{bottom:109.000000pt;}
.y20{bottom:124.186667pt;}
.y73{bottom:124.253333pt;}
.y4f{bottom:124.326667pt;}
.y1f{bottom:139.513333pt;}
.y72{bottom:139.580000pt;}
.y4e{bottom:139.653333pt;}
.y1e{bottom:154.840000pt;}
.y71{bottom:154.906667pt;}
.y4d{bottom:154.980000pt;}
.y1d{bottom:170.166667pt;}
.y70{bottom:170.233333pt;}
.y4c{bottom:170.306667pt;}
.y1c{bottom:185.493333pt;}
.y6f{bottom:185.560000pt;}
.y4b{bottom:185.633333pt;}
.y1b{bottom:200.820000pt;}
.y6e{bottom:200.886667pt;}
.y4a{bottom:200.960000pt;}
.y1a{bottom:216.146667pt;}
.y6d{bottom:216.213333pt;}
.y49{bottom:216.286667pt;}
.y19{bottom:231.473333pt;}
.y6c{bottom:231.540000pt;}
.y48{bottom:231.613333pt;}
.y18{bottom:246.800000pt;}
.y6b{bottom:246.866667pt;}
.y47{bottom:246.940000pt;}
.y17{bottom:262.126667pt;}
.y6a{bottom:262.193333pt;}
.y46{bottom:262.266667pt;}
.y16{bottom:277.453333pt;}
.y69{bottom:277.520000pt;}
.y45{bottom:277.593333pt;}
.y15{bottom:292.780000pt;}
.y68{bottom:292.846667pt;}
.y44{bottom:292.920000pt;}
.y14{bottom:308.106667pt;}
.y67{bottom:308.173333pt;}
.y43{bottom:308.246667pt;}
.y13{bottom:323.433333pt;}
.y66{bottom:323.500000pt;}
.y42{bottom:323.573333pt;}
.y12{bottom:338.760000pt;}
.y65{bottom:338.826667pt;}
.y41{bottom:338.900000pt;}
.y11{bottom:354.086667pt;}
.y64{bottom:354.153333pt;}
.y40{bottom:354.226667pt;}
.y10{bottom:369.413333pt;}
.y63{bottom:369.480000pt;}
.y3f{bottom:369.553333pt;}
.yf{bottom:384.740000pt;}
.y62{bottom:384.806667pt;}
.y3e{bottom:384.880000pt;}
.ye{bottom:400.066667pt;}
.y61{bottom:400.133333pt;}
.y3d{bottom:400.206667pt;}
.yd{bottom:415.393333pt;}
.y60{bottom:415.460000pt;}
.y3c{bottom:415.533333pt;}
.yc{bottom:430.720000pt;}
.y3b{bottom:430.860000pt;}
.y5f{bottom:430.913333pt;}
.yb{bottom:446.046667pt;}
.y3a{bottom:446.186667pt;}
.y5e{bottom:446.240000pt;}
.ya{bottom:461.373333pt;}
.y39{bottom:461.513333pt;}
.y5d{bottom:461.566667pt;}
.y9{bottom:476.700000pt;}
.y38{bottom:476.840000pt;}
.y5c{bottom:476.893333pt;}
.y8{bottom:492.026667pt;}
.y37{bottom:492.166667pt;}
.y5b{bottom:492.220000pt;}
.y7{bottom:507.353333pt;}
.y36{bottom:507.493333pt;}
.y5a{bottom:507.546667pt;}
.y6{bottom:522.680000pt;}
.y35{bottom:522.820000pt;}
.y59{bottom:522.873333pt;}
.y5{bottom:538.006667pt;}
.y34{bottom:538.146667pt;}
.y58{bottom:538.200000pt;}
.y4{bottom:553.333333pt;}
.y33{bottom:553.473333pt;}
.y57{bottom:553.526667pt;}
.y32{bottom:568.800000pt;}
.y56{bottom:568.853333pt;}
.y31{bottom:584.126667pt;}
.y55{bottom:584.180000pt;}
.y7c{bottom:591.786667pt;}
.y30{bottom:599.506667pt;}
.y7b{bottom:607.120000pt;}
.y2f{bottom:614.833333pt;}
.y7a{bottom:630.120000pt;}
.y2e{bottom:630.160000pt;}
.y79{bottom:645.472000pt;}
.y2d{bottom:645.486667pt;}
.y2c{bottom:660.813333pt;}
.y2{bottom:668.093333pt;}
.y2b{bottom:676.140000pt;}
.y2a{bottom:691.466667pt;}
.y29{bottom:706.793333pt;}
.y1{bottom:716.093333pt;}
.y27{bottom:718.760000pt;}
.y28{bottom:722.120000pt;}
.y26{bottom:764.093333pt;}
.y3{bottom:820.000000pt;}
.h2{height:41.854167pt;}
.h4{height:45.525333pt;}
.h5{height:51.216000pt;}
.h3{height:62.597333pt;}
.h1{height:91.050667pt;}
.h0{height:793.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x3{left:5.333333pt;}
.x4{left:67.733333pt;}
.x7{left:68.813333pt;}
.x5{left:83.024000pt;}
.x8{left:84.110667pt;}
.x2{left:178.914667pt;}
.xa{left:205.666667pt;}
.x1{left:240.866667pt;}
.xc{left:303.333333pt;}
.x6{left:347.653333pt;}
.xb{left:395.933333pt;}
.x9{left:406.029333pt;}
}




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