
    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_f15007690c746911358fddd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f851d238a17a720d2201a7d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ffd15f8760b9db3ed2bc3a10.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_07bf507c5f680c936eb5ccaf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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:10.625013px;}
.v2{vertical-align:77.991709px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.318185px;}
.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;}
}
.ws3{word-spacing:-23.349832px;}
.ws1{word-spacing:-18.346332px;}
.ws40{word-spacing:-4.031626px;}
.ws32{word-spacing:-3.933242px;}
.ws1f{word-spacing:-3.570275px;}
.ws31{word-spacing:-2.725552px;}
.ws39{word-spacing:-2.448377px;}
.ws17{word-spacing:-1.667850px;}
.wsb{word-spacing:-1.583856px;}
.ws30{word-spacing:-1.319880px;}
.ws3e{word-spacing:-1.300082px;}
.ws8{word-spacing:-1.286883px;}
.ws15{word-spacing:-1.201091px;}
.ws18{word-spacing:-0.329970px;}
.ws4{word-spacing:-0.083992px;}
.ws0{word-spacing:-0.065994px;}
.ws2{word-spacing:-0.059995px;}
.ws5{word-spacing:0.000000px;}
.ws2b{word-spacing:0.739133px;}
.ws10{word-spacing:1.049305px;}
.ws3b{word-spacing:1.511263px;}
.ws23{word-spacing:1.630052px;}
.ws7{word-spacing:1.821434px;}
.ws1e{word-spacing:2.065612px;}
.ws2c{word-spacing:2.963131px;}
.wse{word-spacing:3.088519px;}
.ws9{word-spacing:3.319498px;}
.ws33{word-spacing:3.378893px;}
.ws35{word-spacing:3.385492px;}
.ws1d{word-spacing:4.711972px;}
.wsf{word-spacing:5.107936px;}
.ws6{word-spacing:5.470903px;}
.wsa{word-spacing:5.741478px;}
.ws3c{word-spacing:6.249632px;}
.ws34{word-spacing:6.546605px;}
.ws2d{word-spacing:6.592801px;}
.ws2e{word-spacing:6.658795px;}
.ws2a{word-spacing:6.731388px;}
.ws37{word-spacing:7.034960px;}
.ws38{word-spacing:7.054759px;}
.ws11{word-spacing:7.622307px;}
.ws13{word-spacing:7.694900px;}
.ws28{word-spacing:9.635124px;}
.ws36{word-spacing:10.295064px;}
.ws3d{word-spacing:10.935206px;}
.ws3f{word-spacing:10.968203px;}
.ws3a{word-spacing:12.010908px;}
.wsd{word-spacing:12.037306px;}
.ws14{word-spacing:12.802836px;}
.ws26{word-spacing:13.066812px;}
.ws27{word-spacing:16.082738px;}
.ws16{word-spacing:16.973657px;}
.ws25{word-spacing:18.531115px;}
.ws22{word-spacing:19.732206px;}
.ws29{word-spacing:24.939133px;}
.wsc{word-spacing:25.005127px;}
.ws1c{word-spacing:26.278811px;}
.ws12{word-spacing:28.786583px;}
.ws21{word-spacing:36.818053px;}
.ws20{word-spacing:42.552931px;}
.ws1b{word-spacing:49.145732px;}
.ws24{word-spacing:135.188709px;}
.ws1a{word-spacing:174.540931px;}
.ws19{word-spacing:197.645431px;}
.ws2f{word-spacing:284.196562px;}
._8{margin-left:-197.645431px;}
._9{margin-left:-174.540931px;}
._6{margin-left:-25.181454px;}
._0{margin-left:-20.213962px;}
._5{margin-left:-15.016648px;}
._3{margin-left:-6.647402px;}
._b{margin-left:-4.896755px;}
._1{margin-left:-3.636269px;}
._a{margin-left:-2.448377px;}
._4{margin-left:-1.079903px;}
._2{width:1.867630px;}
._f{width:158.049031px;}
._11{width:161.685300px;}
._7{width:174.870901px;}
._d{width:183.714097px;}
._10{width:218.017778px;}
._e{width:236.370710px;}
._c{width:922.444336px;}
.fc1{color:rgb(6,122,61);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:53.995200px;}
.fs4{font-size:59.994600px;}
.fs1{font-size:65.994000px;}
.fs2{font-size:83.992200px;}
.fs3{font-size:179.983200px;}
.y0{bottom:0.000000px;}
.y4d{bottom:24.184500px;}
.y87{bottom:33.465900px;}
.y5{bottom:34.217700px;}
.y83{bottom:40.197900px;}
.y86{bottom:53.264100px;}
.y82{bottom:59.996100px;}
.y7f{bottom:70.628400px;}
.y85{bottom:73.062300px;}
.y4{bottom:73.814100px;}
.y1e{bottom:77.668500px;}
.y81{bottom:79.794300px;}
.y7e{bottom:90.424950px;}
.y84{bottom:92.860500px;}
.y3{bottom:93.612300px;}
.y31{bottom:98.124749px;}
.y80{bottom:99.592500px;}
.y26{bottom:105.432840px;}
.y7d{bottom:110.221500px;}
.y2{bottom:113.410500px;}
.y30{bottom:117.921299px;}
.y25{bottom:123.431220px;}
.y2f{bottom:137.717850px;}
.y24{bottom:141.429600px;}
.y1{bottom:145.708500px;}
.y4c{bottom:148.445174px;}
.y2e{bottom:157.514400px;}
.y23{bottom:159.427980px;}
.y4b{bottom:168.243374px;}
.y2d{bottom:177.310950px;}
.y22{bottom:177.424860px;}
.y4a{bottom:188.041574px;}
.y21{bottom:195.423240px;}
.y2c{bottom:197.107500px;}
.y49{bottom:207.839774px;}
.y90{bottom:212.649000px;}
.y20{bottom:213.421620px;}
.y48{bottom:227.637974px;}
.y7c{bottom:230.266350px;}
.y1f{bottom:231.420000px;}
.y8f{bottom:232.447200px;}
.y2b{bottom:238.957114px;}
.y7b{bottom:250.062900px;}
.y8e{bottom:252.245400px;}
.y63{bottom:259.124849px;}
.y2a{bottom:265.954307px;}
.y47{bottom:267.232724px;}
.y7a{bottom:269.859450px;}
.y8d{bottom:272.043600px;}
.y62{bottom:278.921399px;}
.y73{bottom:282.054900px;}
.y46{bottom:287.030924px;}
.y79{bottom:289.656000px;}
.y8c{bottom:291.841800px;}
.y29{bottom:292.951500px;}
.y61{bottom:298.717949px;}
.y72{bottom:301.851450px;}
.y45{bottom:306.829124px;}
.y8b{bottom:311.640000px;}
.y71{bottom:321.648000px;}
.y78{bottom:324.304799px;}
.y60{bottom:338.314349px;}
.y77{bottom:344.101350px;}
.y1a{bottom:346.412550px;}
.y44{bottom:346.423875px;}
.y5f{bottom:358.112549px;}
.y76{bottom:363.897900px;}
.y19{bottom:366.210750px;}
.y43{bottom:366.220425px;}
.y5e{bottom:377.910749px;}
.y75{bottom:383.694450px;}
.y18{bottom:386.008950px;}
.y42{bottom:386.016975px;}
.y74{bottom:403.491000px;}
.y41{bottom:405.813525px;}
.y28{bottom:414.432840px;}
.y5d{bottom:417.505499px;}
.y17{bottom:425.603700px;}
.y5c{bottom:437.303699px;}
.y27{bottom:439.630500px;}
.y8a{bottom:444.408600px;}
.y16{bottom:445.401900px;}
.y40{bottom:445.409925px;}
.y5b{bottom:457.101899px;}
.y89{bottom:464.206800px;}
.y15{bottom:465.200100px;}
.y3f{bottom:465.208125px;}
.y88{bottom:484.005000px;}
.y14{bottom:484.998300px;}
.y3e{bottom:485.006325px;}
.y5a{bottom:496.696649px;}
.y59{bottom:516.494849px;}
.y13{bottom:524.593050px;}
.y3d{bottom:524.601075px;}
.y58{bottom:536.293049px;}
.y1d{bottom:537.377580px;}
.y12{bottom:544.391250px;}
.y3c{bottom:544.399275px;}
.y6d{bottom:555.036995px;}
.y11{bottom:564.189450px;}
.y3b{bottom:564.197475px;}
.y6c{bottom:574.835195px;}
.y57{bottom:575.887799px;}
.y10{bottom:583.987650px;}
.y3a{bottom:583.995675px;}
.y1c{bottom:591.372540px;}
.y56{bottom:595.685999px;}
.yf{bottom:603.785850px;}
.y39{bottom:603.793875px;}
.y6b{bottom:614.429945px;}
.y55{bottom:615.484199px;}
.y6a{bottom:634.228145px;}
.y54{bottom:635.282399px;}
.ye{bottom:643.382250px;}
.y38{bottom:643.390275px;}
.y1b{bottom:645.367500px;}
.y95{bottom:651.144829px;}
.yd{bottom:663.180450px;}
.y37{bottom:663.188475px;}
.y69{bottom:673.822895px;}
.y53{bottom:674.877150px;}
.yc{bottom:682.978650px;}
.y36{bottom:682.986675px;}
.y94{bottom:689.126026px;}
.y68{bottom:693.621095px;}
.y52{bottom:694.673700px;}
.y67{bottom:713.419295px;}
.y51{bottom:714.470250px;}
.yb{bottom:722.575050px;}
.y35{bottom:722.583075px;}
.y93{bottom:727.390997px;}
.y50{bottom:734.266800px;}
.ya{bottom:742.373250px;}
.y34{bottom:742.381275px;}
.y66{bottom:753.015695px;}
.y92{bottom:761.204673px;}
.y9{bottom:762.171450px;}
.y33{bottom:762.179475px;}
.y65{bottom:772.813895px;}
.y4f{bottom:773.863200px;}
.y91{bottom:780.702600px;}
.y8{bottom:781.969650px;}
.y32{bottom:781.977675px;}
.y64{bottom:792.612095px;}
.y4e{bottom:793.661400px;}
.y7{bottom:812.486640px;}
.y6f{bottom:819.926940px;}
.y6{bottom:837.684300px;}
.y70{bottom:842.466247px;}
.y6e{bottom:845.124600px;}
.h2{height:56.315306px;}
.h6{height:62.572493px;}
.h3{height:68.829680px;}
.h4{height:87.601240px;}
.h7{height:98.226253px;}
.h8{height:146.821389px;}
.h5{height:187.716853px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x13{left:13.959300px;}
.x14{left:40.531500px;}
.x3{left:52.516050px;}
.x11{left:62.467200px;}
.x1e{left:239.292000px;}
.x1b{left:426.361500px;}
.x1{left:443.733000px;}
.x2{left:451.173000px;}
.x15{left:455.059612px;}
.x17{left:531.504000px;}
.x12{left:580.125786px;}
.x1c{left:649.072500px;}
.x18{left:714.112500px;}
.xc{left:864.703726px;}
.x4{left:866.067000px;}
.xd{left:868.885350px;}
.xb{left:870.671689px;}
.xa{left:876.786638px;}
.x9{left:878.013528px;}
.x8{left:883.879500px;}
.x16{left:888.720000px;}
.x23{left:901.946418px;}
.x22{left:908.362685px;}
.x5{left:914.774954px;}
.xf{left:937.266000px;}
.x19{left:942.573000px;}
.x6{left:944.818649px;}
.x1a{left:952.494000px;}
.xe{left:958.623772px;}
.x10{left:964.300989px;}
.x1f{left:1014.339150px;}
.x1d{left:1022.059500px;}
.x20{left:1038.631541px;}
.x7{left:1136.018850px;}
.x21{left:1150.172950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.444456pt;}
.v2{vertical-align:69.325964pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.060609pt;}
.ws3{word-spacing:-20.755406pt;}
.ws1{word-spacing:-16.307851pt;}
.ws40{word-spacing:-3.583667pt;}
.ws32{word-spacing:-3.496215pt;}
.ws1f{word-spacing:-3.173578pt;}
.ws31{word-spacing:-2.422713pt;}
.ws39{word-spacing:-2.176335pt;}
.ws17{word-spacing:-1.482533pt;}
.wsb{word-spacing:-1.407872pt;}
.ws30{word-spacing:-1.173227pt;}
.ws3e{word-spacing:-1.155628pt;}
.ws8{word-spacing:-1.143896pt;}
.ws15{word-spacing:-1.067636pt;}
.ws18{word-spacing:-0.293307pt;}
.ws4{word-spacing:-0.074660pt;}
.ws0{word-spacing:-0.058661pt;}
.ws2{word-spacing:-0.053329pt;}
.ws5{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.657007pt;}
.ws10{word-spacing:0.932715pt;}
.ws3b{word-spacing:1.343345pt;}
.ws23{word-spacing:1.448935pt;}
.ws7{word-spacing:1.619053pt;}
.ws1e{word-spacing:1.836100pt;}
.ws2c{word-spacing:2.633894pt;}
.wse{word-spacing:2.745350pt;}
.ws9{word-spacing:2.950665pt;}
.ws33{word-spacing:3.003460pt;}
.ws35{word-spacing:3.009326pt;}
.ws1d{word-spacing:4.188419pt;}
.wsf{word-spacing:4.540387pt;}
.ws6{word-spacing:4.863025pt;}
.wsa{word-spacing:5.103536pt;}
.ws3c{word-spacing:5.555228pt;}
.ws34{word-spacing:5.819204pt;}
.ws2d{word-spacing:5.860267pt;}
.ws2e{word-spacing:5.918929pt;}
.ws2a{word-spacing:5.983456pt;}
.ws37{word-spacing:6.253298pt;}
.ws38{word-spacing:6.270897pt;}
.ws11{word-spacing:6.775384pt;}
.ws13{word-spacing:6.839911pt;}
.ws28{word-spacing:8.564555pt;}
.ws36{word-spacing:9.151168pt;}
.ws3d{word-spacing:9.720183pt;}
.ws3f{word-spacing:9.749514pt;}
.ws3a{word-spacing:10.676363pt;}
.wsd{word-spacing:10.699827pt;}
.ws14{word-spacing:11.380299pt;}
.ws26{word-spacing:11.614944pt;}
.ws27{word-spacing:14.295767pt;}
.ws16{word-spacing:15.087695pt;}
.ws25{word-spacing:16.472102pt;}
.ws22{word-spacing:17.539739pt;}
.ws29{word-spacing:22.168118pt;}
.wsc{word-spacing:22.226779pt;}
.ws1c{word-spacing:23.358943pt;}
.ws12{word-spacing:25.588074pt;}
.ws21{word-spacing:32.727158pt;}
.ws20{word-spacing:37.824828pt;}
.ws1b{word-spacing:43.685095pt;}
.ws24{word-spacing:120.167741pt;}
.ws1a{word-spacing:155.147494pt;}
.ws19{word-spacing:175.684827pt;}
.ws2f{word-spacing:252.619166pt;}
._8{margin-left:-175.684827pt;}
._9{margin-left:-155.147494pt;}
._6{margin-left:-22.383515pt;}
._0{margin-left:-17.967966pt;}
._5{margin-left:-13.348132pt;}
._3{margin-left:-5.908801pt;}
._b{margin-left:-4.352671pt;}
._1{margin-left:-3.232239pt;}
._a{margin-left:-2.176335pt;}
._4{margin-left:-0.959914pt;}
._2{width:1.660116pt;}
._f{width:140.488027pt;}
._11{width:143.720267pt;}
._7{width:155.440801pt;}
._d{width:163.301420pt;}
._10{width:193.793581pt;}
._e{width:210.107298pt;}
._c{width:819.950521pt;}
.fs0{font-size:47.995733pt;}
.fs4{font-size:53.328533pt;}
.fs1{font-size:58.661333pt;}
.fs2{font-size:74.659733pt;}
.fs3{font-size:159.985067pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:21.497333pt;}
.y87{bottom:29.747467pt;}
.y5{bottom:30.415733pt;}
.y83{bottom:35.731467pt;}
.y86{bottom:47.345867pt;}
.y82{bottom:53.329867pt;}
.y7f{bottom:62.780800pt;}
.y85{bottom:64.944267pt;}
.y4{bottom:65.612533pt;}
.y1e{bottom:69.038667pt;}
.y81{bottom:70.928267pt;}
.y7e{bottom:80.377733pt;}
.y84{bottom:82.542667pt;}
.y3{bottom:83.210933pt;}
.y31{bottom:87.221999pt;}
.y80{bottom:88.526667pt;}
.y26{bottom:93.718080pt;}
.y7d{bottom:97.974667pt;}
.y2{bottom:100.809333pt;}
.y30{bottom:104.818933pt;}
.y25{bottom:109.716640pt;}
.y2f{bottom:122.415866pt;}
.y24{bottom:125.715200pt;}
.y1{bottom:129.518667pt;}
.y4c{bottom:131.951266pt;}
.y2e{bottom:140.012800pt;}
.y23{bottom:141.713760pt;}
.y4b{bottom:149.549666pt;}
.y2d{bottom:157.609733pt;}
.y22{bottom:157.710987pt;}
.y4a{bottom:167.148066pt;}
.y21{bottom:173.709547pt;}
.y2c{bottom:175.206667pt;}
.y49{bottom:184.746466pt;}
.y90{bottom:189.021333pt;}
.y20{bottom:189.708107pt;}
.y48{bottom:202.344866pt;}
.y7c{bottom:204.681200pt;}
.y1f{bottom:205.706667pt;}
.y8f{bottom:206.619733pt;}
.y2b{bottom:212.406324pt;}
.y7b{bottom:222.278133pt;}
.y8e{bottom:224.218133pt;}
.y63{bottom:230.333199pt;}
.y2a{bottom:236.403829pt;}
.y47{bottom:237.540199pt;}
.y7a{bottom:239.875067pt;}
.y8d{bottom:241.816533pt;}
.y62{bottom:247.930132pt;}
.y73{bottom:250.715466pt;}
.y46{bottom:255.138599pt;}
.y79{bottom:257.472000pt;}
.y8c{bottom:259.414933pt;}
.y29{bottom:260.401333pt;}
.y61{bottom:265.527066pt;}
.y72{bottom:268.312400pt;}
.y45{bottom:272.736999pt;}
.y8b{bottom:277.013333pt;}
.y71{bottom:285.909333pt;}
.y78{bottom:288.270933pt;}
.y60{bottom:300.723866pt;}
.y77{bottom:305.867866pt;}
.y1a{bottom:307.922266pt;}
.y44{bottom:307.932333pt;}
.y5f{bottom:318.322266pt;}
.y76{bottom:323.464800pt;}
.y19{bottom:325.520666pt;}
.y43{bottom:325.529266pt;}
.y5e{bottom:335.920666pt;}
.y75{bottom:341.061733pt;}
.y18{bottom:343.119066pt;}
.y42{bottom:343.126200pt;}
.y74{bottom:358.658667pt;}
.y41{bottom:360.723133pt;}
.y28{bottom:368.384747pt;}
.y5d{bottom:371.115999pt;}
.y17{bottom:378.314400pt;}
.y5c{bottom:388.714399pt;}
.y27{bottom:390.782667pt;}
.y8a{bottom:395.029867pt;}
.y16{bottom:395.912800pt;}
.y40{bottom:395.919933pt;}
.y5b{bottom:406.312799pt;}
.y89{bottom:412.628267pt;}
.y15{bottom:413.511200pt;}
.y3f{bottom:413.518333pt;}
.y88{bottom:430.226667pt;}
.y14{bottom:431.109600pt;}
.y3e{bottom:431.116733pt;}
.y5a{bottom:441.508133pt;}
.y59{bottom:459.106533pt;}
.y13{bottom:466.304933pt;}
.y3d{bottom:466.312067pt;}
.y58{bottom:476.704933pt;}
.y1d{bottom:477.668960pt;}
.y12{bottom:483.903333pt;}
.y3c{bottom:483.910467pt;}
.y6d{bottom:493.366218pt;}
.y11{bottom:501.501733pt;}
.y3b{bottom:501.508867pt;}
.y6c{bottom:510.964618pt;}
.y57{bottom:511.900266pt;}
.y10{bottom:519.100133pt;}
.y3a{bottom:519.107267pt;}
.y1c{bottom:525.664480pt;}
.y56{bottom:529.498666pt;}
.yf{bottom:536.698533pt;}
.y39{bottom:536.705667pt;}
.y6b{bottom:546.159951pt;}
.y55{bottom:547.097066pt;}
.y6a{bottom:563.758351pt;}
.y54{bottom:564.695466pt;}
.ye{bottom:571.895333pt;}
.y38{bottom:571.902467pt;}
.y1b{bottom:573.660000pt;}
.y95{bottom:578.795404pt;}
.yd{bottom:589.493733pt;}
.y37{bottom:589.500867pt;}
.y69{bottom:598.953685pt;}
.y53{bottom:599.890800pt;}
.yc{bottom:607.092133pt;}
.y36{bottom:607.099267pt;}
.y94{bottom:612.556467pt;}
.y68{bottom:616.552085pt;}
.y52{bottom:617.487733pt;}
.y67{bottom:634.150485pt;}
.y51{bottom:635.084667pt;}
.yb{bottom:642.288933pt;}
.y35{bottom:642.296067pt;}
.y93{bottom:646.569775pt;}
.y50{bottom:652.681600pt;}
.ya{bottom:659.887333pt;}
.y34{bottom:659.894467pt;}
.y66{bottom:669.347285pt;}
.y92{bottom:676.626376pt;}
.y9{bottom:677.485733pt;}
.y33{bottom:677.492867pt;}
.y65{bottom:686.945685pt;}
.y4f{bottom:687.878400pt;}
.y91{bottom:693.957867pt;}
.y8{bottom:695.084133pt;}
.y32{bottom:695.091267pt;}
.y64{bottom:704.544085pt;}
.y4e{bottom:705.476800pt;}
.y7{bottom:722.210347pt;}
.y6f{bottom:728.823947pt;}
.y6{bottom:744.608267pt;}
.y70{bottom:748.858886pt;}
.y6e{bottom:751.221867pt;}
.h2{height:50.058050pt;}
.h6{height:55.619994pt;}
.h3{height:61.181938pt;}
.h4{height:77.867769pt;}
.h7{height:87.312225pt;}
.h8{height:130.507901pt;}
.h5{height:166.859425pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x13{left:12.408267pt;}
.x14{left:36.028000pt;}
.x3{left:46.680933pt;}
.x11{left:55.526400pt;}
.x1e{left:212.704000pt;}
.x1b{left:378.988000pt;}
.x1{left:394.429333pt;}
.x2{left:401.042667pt;}
.x15{left:404.497433pt;}
.x17{left:472.448000pt;}
.x12{left:515.667365pt;}
.x1c{left:576.953333pt;}
.x18{left:634.766667pt;}
.xc{left:768.625534pt;}
.x4{left:769.837333pt;}
.xd{left:772.342533pt;}
.xb{left:773.930390pt;}
.xa{left:779.365901pt;}
.x9{left:780.456469pt;}
.x8{left:785.670667pt;}
.x16{left:789.973333pt;}
.x23{left:801.730150pt;}
.x22{left:807.433498pt;}
.x5{left:813.133292pt;}
.xf{left:833.125333pt;}
.x19{left:837.842667pt;}
.x6{left:839.838799pt;}
.x1a{left:846.661333pt;}
.xe{left:852.110020pt;}
.x10{left:857.156435pt;}
.x1f{left:901.634800pt;}
.x1d{left:908.497333pt;}
.x20{left:923.228037pt;}
.x7{left:1009.794533pt;}
.x21{left:1022.375956pt;}
}




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