
    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_153de1cba66b1a0bab573835.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_f36bc55d3cc2a93bbc2d0822.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_d1767aee80362501fa20cc2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_25eb5e4d2feacd8ed7797eb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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;}
.m3{transform:matrix(0.000000,-0.232979,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232979,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232979,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.268265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268265,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268266,0.000000,0.000000,0.250000,0,0);}
.m4{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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.572800px;}
.ls20{letter-spacing:-0.927360px;}
.ls1f{letter-spacing:-0.861120px;}
.ls1e{letter-spacing:-0.794880px;}
.ls1c{letter-spacing:-0.728640px;}
.ls18{letter-spacing:-0.662400px;}
.ls1d{letter-spacing:-0.596160px;}
.ls21{letter-spacing:-0.529920px;}
.ls17{letter-spacing:-0.463680px;}
.ls19{letter-spacing:-0.397440px;}
.ls22{letter-spacing:-0.292320px;}
.ls16{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.198720px;}
.ls1b{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.066240px;}
.ls12{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.019872px;}
.ls24{letter-spacing:0.066240px;}
.ls13{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.084240px;}
.lsc{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.139104px;}
.ls10{letter-spacing:0.168480px;}
.lsd{letter-spacing:0.172224px;}
.lse{letter-spacing:0.178848px;}
.ls27{letter-spacing:0.198720px;}
.ls23{letter-spacing:0.264960px;}
.ls0{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.331200px;}
.ls6{letter-spacing:0.861120px;}
.ls4{letter-spacing:1.589760px;}
.ls7{letter-spacing:1.603008px;}
.ls3{letter-spacing:1.636128px;}
.ls5{letter-spacing:1.649376px;}
.ls2{letter-spacing:3.775680px;}
.ls1{letter-spacing:4.438080px;}
.ls8{letter-spacing:5.166720px;}
.lsa{letter-spacing:5.895360px;}
.lsb{letter-spacing:5.961600px;}
.lsf{letter-spacing:8.809920px;}
.ls25{letter-spacing:15.963840px;}
.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:-19.122480px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-15.301440px;}
.ws2d{word-spacing:-15.235200px;}
.ws2c{word-spacing:-15.168960px;}
.wsa{word-spacing:-15.109344px;}
.ws3{word-spacing:-15.102720px;}
.ws2b{word-spacing:-15.036480px;}
.ws2a{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.904000px;}
.wsb{word-spacing:-14.837760px;}
.ws9{word-spacing:-14.771520px;}
.ws5{word-spacing:-14.705280px;}
.ws8{word-spacing:-14.572800px;}
.ws6{word-spacing:-14.506560px;}
.ws11{word-spacing:-14.440320px;}
.wsd{word-spacing:-14.374080px;}
.ws7{word-spacing:-14.307840px;}
.wsc{word-spacing:-14.241600px;}
.wse{word-spacing:-14.175360px;}
.wsf{word-spacing:-14.109120px;}
.ws10{word-spacing:-14.042880px;}
.ws12{word-spacing:-9.145440px;}
.ws1e{word-spacing:-1.920960px;}
.ws1f{word-spacing:-1.523520px;}
.ws33{word-spacing:-0.861120px;}
.ws23{word-spacing:-0.529920px;}
.ws14{word-spacing:-0.505440px;}
.ws17{word-spacing:-0.504000px;}
.ws1a{word-spacing:-0.331200px;}
.ws24{word-spacing:-0.264960px;}
.ws34{word-spacing:-0.132480px;}
.ws2f{word-spacing:-0.066240px;}
.ws15{word-spacing:0.000000px;}
.ws1b{word-spacing:0.198720px;}
.ws16{word-spacing:0.216000px;}
.ws28{word-spacing:0.331200px;}
.ws19{word-spacing:0.397440px;}
.ws18{word-spacing:0.463680px;}
.ws29{word-spacing:0.596160px;}
.ws30{word-spacing:0.662400px;}
.ws21{word-spacing:0.861120px;}
.ws32{word-spacing:0.927360px;}
.ws1c{word-spacing:3.113280px;}
.ws1d{word-spacing:3.312000px;}
.ws22{word-spacing:6.160320px;}
.ws27{word-spacing:8.015040px;}
.ws25{word-spacing:8.677440px;}
.ws26{word-spacing:8.876160px;}
.ws31{word-spacing:12.453120px;}
.ws2e{word-spacing:16.758720px;}
.ws20{word-spacing:88.761600px;}
.ws13{word-spacing:190.801715px;}
._7{margin-left:-9.134496px;}
._4{margin-left:-5.762664px;}
._1{margin-left:-2.066904px;}
._0{margin-left:-1.053000px;}
._3{width:1.119456px;}
._2{width:5.365440px;}
._6{width:8.677440px;}
._a{width:16.109568px;}
._b{width:17.633088px;}
._5{width:89.324856px;}
._9{width:202.494796px;}
._8{width:212.047256px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(31,35,40);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:25.473600px;}
.fs5{font-size:28.021200px;}
.fs6{font-size:30.068400px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y23{bottom:4.273650px;}
.y22{bottom:17.388000px;}
.y24{bottom:25.521000px;}
.y25{bottom:51.313050px;}
.y26{bottom:77.105100px;}
.y2a{bottom:78.014250px;}
.y27{bottom:102.897150px;}
.y20{bottom:127.118160px;}
.y28{bottom:128.689350px;}
.y1f{bottom:148.894560px;}
.y29{bottom:154.481400px;}
.y1e{bottom:182.726640px;}
.y1d{bottom:204.320880px;}
.y1c{bottom:238.152960px;}
.y1b{bottom:259.929360px;}
.y1a{bottom:281.523600px;}
.y19{bottom:303.346800px;}
.y18{bottom:325.123200px;}
.y17{bottom:358.789680px;}
.y16{bottom:392.621760px;}
.y3f{bottom:415.073520px;}
.y15{bottom:426.288240px;}
.y3e{bottom:448.740000px;}
.y14{bottom:460.120320px;}
.y3d{bottom:482.431680px;}
.y13{bottom:483.155280px;}
.y3c{bottom:504.208080px;}
.y12{bottom:506.372400px;}
.y21{bottom:524.889000px;}
.y11{bottom:525.085200px;}
.y3b{bottom:525.984480px;}
.y3a{bottom:559.650960px;}
.y39{bottom:593.483040px;}
.y38{bottom:627.149520px;}
.y37{bottom:656.311680px;}
.y10{bottom:703.817280px;}
.yf{bottom:727.034400px;}
.ye{bottom:750.251520px;}
.yd{bottom:773.286480px;}
.yc{bottom:796.503600px;}
.yb{bottom:819.720720px;}
.y36{bottom:828.386640px;}
.ya{bottom:842.937840px;}
.y35{bottom:849.980880px;}
.y9{bottom:865.972800px;}
.y34{bottom:883.812960px;}
.y8{bottom:889.189920px;}
.y7{bottom:912.407040px;}
.y33{bottom:917.479440px;}
.y6{bottom:946.073520px;}
.y32{bottom:951.311520px;}
.y31{bottom:972.905760px;}
.y5{bottom:979.740000px;}
.y30{bottom:994.682160px;}
.y2f{bottom:1016.458560px;}
.y4{bottom:1018.260000px;}
.y2e{bottom:1038.234960px;}
.y3{bottom:1058.220000px;}
.y2d{bottom:1071.901440px;}
.y2{bottom:1098.180000px;}
.y2c{bottom:1105.733520px;}
.y1{bottom:1134.900000px;}
.y2b{bottom:1139.400000px;}
.h8{height:18.545477px;}
.h9{height:20.400200px;}
.ha{height:21.890617px;}
.h4{height:47.545312px;}
.h5{height:48.095156px;}
.h3{height:51.679688px;}
.h6{height:53.547019px;}
.h2{height:61.164492px;}
.h7{height:167.170500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:330.523500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.641350px;}
.x8{left:16.513200px;}
.x7{left:21.638400px;}
.x5{left:27.162150px;}
.x1{left:108.000000px;}
.x6{left:146.965500px;}
.xb{left:161.100000px;}
.x3{left:162.217440px;}
.xa{left:413.962560px;}
.x4{left:454.090500px;}
.x2{left:785.370240px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.953600pt;}
.ls20{letter-spacing:-0.824320pt;}
.ls1f{letter-spacing:-0.765440pt;}
.ls1e{letter-spacing:-0.706560pt;}
.ls1c{letter-spacing:-0.647680pt;}
.ls18{letter-spacing:-0.588800pt;}
.ls1d{letter-spacing:-0.529920pt;}
.ls21{letter-spacing:-0.471040pt;}
.ls17{letter-spacing:-0.412160pt;}
.ls19{letter-spacing:-0.353280pt;}
.ls22{letter-spacing:-0.259840pt;}
.ls16{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.176640pt;}
.ls1b{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.058880pt;}
.ls12{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.017664pt;}
.ls24{letter-spacing:0.058880pt;}
.ls13{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.074880pt;}
.lsc{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.123648pt;}
.ls10{letter-spacing:0.149760pt;}
.lsd{letter-spacing:0.153088pt;}
.lse{letter-spacing:0.158976pt;}
.ls27{letter-spacing:0.176640pt;}
.ls23{letter-spacing:0.235520pt;}
.ls0{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.294400pt;}
.ls6{letter-spacing:0.765440pt;}
.ls4{letter-spacing:1.413120pt;}
.ls7{letter-spacing:1.424896pt;}
.ls3{letter-spacing:1.454336pt;}
.ls5{letter-spacing:1.466112pt;}
.ls2{letter-spacing:3.356160pt;}
.ls1{letter-spacing:3.944960pt;}
.ls8{letter-spacing:4.592640pt;}
.lsa{letter-spacing:5.240320pt;}
.lsb{letter-spacing:5.299200pt;}
.lsf{letter-spacing:7.831040pt;}
.ls25{letter-spacing:14.190080pt;}
.ws0{word-spacing:-16.997760pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-13.601280pt;}
.ws2d{word-spacing:-13.542400pt;}
.ws2c{word-spacing:-13.483520pt;}
.wsa{word-spacing:-13.430528pt;}
.ws3{word-spacing:-13.424640pt;}
.ws2b{word-spacing:-13.365760pt;}
.ws2a{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.248000pt;}
.wsb{word-spacing:-13.189120pt;}
.ws9{word-spacing:-13.130240pt;}
.ws5{word-spacing:-13.071360pt;}
.ws8{word-spacing:-12.953600pt;}
.ws6{word-spacing:-12.894720pt;}
.ws11{word-spacing:-12.835840pt;}
.wsd{word-spacing:-12.776960pt;}
.ws7{word-spacing:-12.718080pt;}
.wsc{word-spacing:-12.659200pt;}
.wse{word-spacing:-12.600320pt;}
.wsf{word-spacing:-12.541440pt;}
.ws10{word-spacing:-12.482560pt;}
.ws12{word-spacing:-8.129280pt;}
.ws1e{word-spacing:-1.707520pt;}
.ws1f{word-spacing:-1.354240pt;}
.ws33{word-spacing:-0.765440pt;}
.ws23{word-spacing:-0.471040pt;}
.ws14{word-spacing:-0.449280pt;}
.ws17{word-spacing:-0.448000pt;}
.ws1a{word-spacing:-0.294400pt;}
.ws24{word-spacing:-0.235520pt;}
.ws34{word-spacing:-0.117760pt;}
.ws2f{word-spacing:-0.058880pt;}
.ws15{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.176640pt;}
.ws16{word-spacing:0.192000pt;}
.ws28{word-spacing:0.294400pt;}
.ws19{word-spacing:0.353280pt;}
.ws18{word-spacing:0.412160pt;}
.ws29{word-spacing:0.529920pt;}
.ws30{word-spacing:0.588800pt;}
.ws21{word-spacing:0.765440pt;}
.ws32{word-spacing:0.824320pt;}
.ws1c{word-spacing:2.767360pt;}
.ws1d{word-spacing:2.944000pt;}
.ws22{word-spacing:5.475840pt;}
.ws27{word-spacing:7.124480pt;}
.ws25{word-spacing:7.713280pt;}
.ws26{word-spacing:7.889920pt;}
.ws31{word-spacing:11.069440pt;}
.ws2e{word-spacing:14.896640pt;}
.ws20{word-spacing:78.899200pt;}
.ws13{word-spacing:169.601524pt;}
._7{margin-left:-8.119552pt;}
._4{margin-left:-5.122368pt;}
._1{margin-left:-1.837248pt;}
._0{margin-left:-0.936000pt;}
._3{width:0.995072pt;}
._2{width:4.769280pt;}
._6{width:7.713280pt;}
._a{width:14.319616pt;}
._b{width:15.673856pt;}
._5{width:79.399872pt;}
._9{width:179.995374pt;}
._8{width:188.486450pt;}
.fs4{font-size:22.643200pt;}
.fs5{font-size:24.907733pt;}
.fs6{font-size:26.727467pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:3.798800pt;}
.y22{bottom:15.456000pt;}
.y24{bottom:22.685333pt;}
.y25{bottom:45.611600pt;}
.y26{bottom:68.537867pt;}
.y2a{bottom:69.346000pt;}
.y27{bottom:91.464133pt;}
.y20{bottom:112.993920pt;}
.y28{bottom:114.390533pt;}
.y1f{bottom:132.350720pt;}
.y29{bottom:137.316800pt;}
.y1e{bottom:162.423680pt;}
.y1d{bottom:181.618560pt;}
.y1c{bottom:211.691520pt;}
.y1b{bottom:231.048320pt;}
.y1a{bottom:250.243200pt;}
.y19{bottom:269.641600pt;}
.y18{bottom:288.998400pt;}
.y17{bottom:318.924160pt;}
.y16{bottom:348.997120pt;}
.y3f{bottom:368.954240pt;}
.y15{bottom:378.922880pt;}
.y3e{bottom:398.880000pt;}
.y14{bottom:408.995840pt;}
.y3d{bottom:428.828160pt;}
.y13{bottom:429.471360pt;}
.y3c{bottom:448.184960pt;}
.y12{bottom:450.108800pt;}
.y21{bottom:466.568000pt;}
.y11{bottom:466.742400pt;}
.y3b{bottom:467.541760pt;}
.y3a{bottom:497.467520pt;}
.y39{bottom:527.540480pt;}
.y38{bottom:557.466240pt;}
.y37{bottom:583.388160pt;}
.y10{bottom:625.615360pt;}
.yf{bottom:646.252800pt;}
.ye{bottom:666.890240pt;}
.yd{bottom:687.365760pt;}
.yc{bottom:708.003200pt;}
.yb{bottom:728.640640pt;}
.y36{bottom:736.343680pt;}
.ya{bottom:749.278080pt;}
.y35{bottom:755.538560pt;}
.y9{bottom:769.753600pt;}
.y34{bottom:785.611520pt;}
.y8{bottom:790.391040pt;}
.y7{bottom:811.028480pt;}
.y33{bottom:815.537280pt;}
.y6{bottom:840.954240pt;}
.y32{bottom:845.610240pt;}
.y31{bottom:864.805120pt;}
.y5{bottom:870.880000pt;}
.y30{bottom:884.161920pt;}
.y2f{bottom:903.518720pt;}
.y4{bottom:905.120000pt;}
.y2e{bottom:922.875520pt;}
.y3{bottom:940.640000pt;}
.y2d{bottom:952.801280pt;}
.y2{bottom:976.160000pt;}
.y2c{bottom:982.874240pt;}
.y1{bottom:1008.800000pt;}
.y2b{bottom:1012.800000pt;}
.h8{height:16.484869pt;}
.h9{height:18.133511pt;}
.ha{height:19.458327pt;}
.h4{height:42.262500pt;}
.h5{height:42.751250pt;}
.h3{height:45.937500pt;}
.h6{height:47.597350pt;}
.h2{height:54.368437pt;}
.h7{height:148.596000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:293.798667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.681200pt;}
.x8{left:14.678400pt;}
.x7{left:19.234133pt;}
.x5{left:24.144133pt;}
.x1{left:96.000000pt;}
.x6{left:130.636000pt;}
.xb{left:143.200000pt;}
.x3{left:144.193280pt;}
.xa{left:367.966720pt;}
.x4{left:403.636000pt;}
.x2{left:698.106880pt;}
}




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