
    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_092165d46eec38af6242656d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_6b2f5ea306bd013813c6496a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_3c122ba4955ef4e5f08e20d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_9138d6e39b30583ebfdb5379.woff')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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:23.754000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003300px;}
.ls5{letter-spacing:0.840017px;}
.ls1{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.986766px;}
.ls6{letter-spacing:2.987675px;}
.ls2{letter-spacing:2.988017px;}
.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;}
}
.ws5{word-spacing:-16.438350px;}
.ws7{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.920027px;}
.ws2f{word-spacing:-11.955150px;}
.ws9{word-spacing:-0.053798px;}
.ws3c{word-spacing:0.000000px;}
.ws1e{word-spacing:0.358654px;}
.ws31{word-spacing:0.418429px;}
.ws22{word-spacing:0.597756px;}
.ws61{word-spacing:1.195515px;}
.ws17{word-spacing:1.374839px;}
.ws59{word-spacing:1.769362px;}
.ws21{word-spacing:2.450800px;}
.ws1b{word-spacing:2.510575px;}
.ws15{word-spacing:2.570351px;}
.ws32{word-spacing:2.630126px;}
.ws2b{word-spacing:2.869229px;}
.ws23{word-spacing:2.929004px;}
.ws1a{word-spacing:3.646312px;}
.wsc{word-spacing:3.927283px;}
.ws5a{word-spacing:4.112572px;}
.ws40{word-spacing:4.124516px;}
.ws16{word-spacing:4.184292px;}
.ws2c{word-spacing:4.303843px;}
.ws29{word-spacing:4.602721px;}
.ws37{word-spacing:4.782060px;}
.ws11{word-spacing:5.864026px;}
.ws2e{word-spacing:5.927276px;}
.ws2d{word-spacing:5.940233px;}
.ws4{word-spacing:5.977560px;}
.ws2a{word-spacing:6.336214px;}
.ws1f{word-spacing:6.515540px;}
.ws3d{word-spacing:6.551422px;}
.ws2{word-spacing:6.575340px;}
.wsf{word-spacing:6.724800px;}
.ws26{word-spacing:6.814418px;}
.ws49{word-spacing:6.874194px;}
.wse{word-spacing:7.424179px;}
.ws4c{word-spacing:7.603475px;}
.ws34{word-spacing:7.711052px;}
.ws60{word-spacing:8.081681px;}
.ws39{word-spacing:8.308808px;}
.ws14{word-spacing:8.368584px;}
.ws51{word-spacing:8.488135px;}
.ws25{word-spacing:8.547911px;}
.ws3a{word-spacing:8.787013px;}
.ws33{word-spacing:8.966340px;}
.ws1d{word-spacing:9.145667px;}
.ws3e{word-spacing:9.324994px;}
.ws3f{word-spacing:9.384769px;}
.ws5d{word-spacing:9.659761px;}
.ws20{word-spacing:9.803198px;}
.ws24{word-spacing:10.520506px;}
.ws42{word-spacing:10.759608px;}
.ws3b{word-spacing:10.807456px;}
.ws36{word-spacing:10.855276px;}
.ws30{word-spacing:11.417140px;}
.ws44{word-spacing:11.476915px;}
.ws53{word-spacing:11.536691px;}
.ws38{word-spacing:11.775793px;}
.ws1c{word-spacing:11.835569px;}
.ws4d{word-spacing:11.895344px;}
.ws48{word-spacing:12.014896px;}
.ws18{word-spacing:12.134447px;}
.ws28{word-spacing:12.313774px;}
.ws4e{word-spacing:12.672427px;}
.ws4b{word-spacing:12.732203px;}
.wsd{word-spacing:12.857818px;}
.ws52{word-spacing:12.911530px;}
.wsb{word-spacing:12.911616px;}
.wsa{word-spacing:13.826189px;}
.ws0{word-spacing:14.346180px;}
.ws19{word-spacing:14.405920px;}
.ws47{word-spacing:14.465695px;}
.ws1{word-spacing:14.493058px;}
.ws6{word-spacing:14.496000px;}
.ws8{word-spacing:14.496542px;}
.ws5b{word-spacing:15.015668px;}
.ws58{word-spacing:15.159130px;}
.ws4a{word-spacing:15.362329px;}
.ws35{word-spacing:15.541656px;}
.ws45{word-spacing:15.601432px;}
.ws27{word-spacing:15.720983px;}
.ws41{word-spacing:16.438290px;}
.ws57{word-spacing:16.545928px;}
.ws62{word-spacing:16.785031px;}
.ws50{word-spacing:17.514251px;}
.ws12{word-spacing:17.932680px;}
.ws56{word-spacing:18.363110px;}
.ws43{word-spacing:18.709763px;}
.ws55{word-spacing:19.068416px;}
.ws10{word-spacing:19.259827px;}
.ws3{word-spacing:20.861684px;}
.ws46{word-spacing:21.100787px;}
.ws54{word-spacing:21.519216px;}
.ws4f{word-spacing:21.638767px;}
.ws63{word-spacing:24.245044px;}
.ws5f{word-spacing:25.488380px;}
.ws5e{word-spacing:31.465955px;}
.ws5c{word-spacing:61.975498px;}
._c{margin-left:-6.647063px;}
._2{margin-left:-5.262972px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._3{margin-left:-1.022179px;}
._4{width:2.988780px;}
._7{width:19.510805px;}
._d{width:29.887875px;}
._a{width:31.023542px;}
._6{width:37.060965px;}
._b{width:39.069430px;}
._5{width:45.525211px;}
._8{width:51.407016px;}
._9{width:58.759415px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:113.332500px;}
.y3b{bottom:130.440000px;}
.y2f{bottom:131.265000px;}
.y75{bottom:134.121000px;}
.y3a{bottom:143.890500px;}
.y51{bottom:147.039000px;}
.y74{bottom:147.570000px;}
.y2e{bottom:149.199000px;}
.y50{bottom:160.488000px;}
.y73{bottom:161.020500px;}
.y2d{bottom:167.131500px;}
.y72{bottom:174.469500px;}
.y71{bottom:187.920000px;}
.y2c{bottom:190.761000px;}
.y70{bottom:201.369000px;}
.y6f{bottom:214.818000px;}
.y2b{bottom:220.182000px;}
.y6e{bottom:228.268500px;}
.y2a{bottom:238.114500px;}
.y6d{bottom:241.717500px;}
.y6c{bottom:255.166500px;}
.y29{bottom:256.047000px;}
.y6b{bottom:268.617000px;}
.y28{bottom:273.979500px;}
.y6a{bottom:282.066000px;}
.y27{bottom:291.913500px;}
.y69{bottom:295.516500px;}
.y68{bottom:308.965500px;}
.y26{bottom:309.846000px;}
.y67{bottom:322.414500px;}
.y25{bottom:327.778500px;}
.y66{bottom:335.865000px;}
.y24{bottom:345.711000px;}
.y65{bottom:349.314000px;}
.y64{bottom:362.763000px;}
.y23{bottom:363.643500px;}
.y63{bottom:376.213500px;}
.y22{bottom:381.576000px;}
.y62{bottom:389.662500px;}
.y21{bottom:399.510000px;}
.y61{bottom:403.111500px;}
.y4f{bottom:409.099500px;}
.y39{bottom:414.354000px;}
.y60{bottom:416.562000px;}
.y20{bottom:417.442500px;}
.y4e{bottom:427.032000px;}
.y5f{bottom:430.011000px;}
.y38{bottom:432.286500px;}
.y1f{bottom:435.375000px;}
.y4d{bottom:444.964500px;}
.y37{bottom:450.219000px;}
.y5e{bottom:452.083500px;}
.y1e{bottom:453.307500px;}
.y4c{bottom:462.897000px;}
.y36{bottom:468.151500px;}
.y1d{bottom:471.240000px;}
.y5d{bottom:479.742000px;}
.y4b{bottom:480.831000px;}
.y1c{bottom:489.337500px;}
.y4a{bottom:498.763500px;}
.y35{bottom:499.789500px;}
.y5c{bottom:502.321500px;}
.y1b{bottom:507.271500px;}
.y34{bottom:513.240000px;}
.y49{bottom:516.696000px;}
.y1a{bottom:525.204000px;}
.y5b{bottom:529.981500px;}
.y48{bottom:534.628500px;}
.y19{bottom:543.136500px;}
.y5a{bottom:547.914000px;}
.y47{bottom:552.561000px;}
.y18{bottom:561.069000px;}
.y59{bottom:565.846500px;}
.y46{bottom:570.493500px;}
.y17{bottom:579.001500px;}
.y58{bottom:583.779000px;}
.y45{bottom:588.427500px;}
.y16{bottom:596.934000px;}
.y57{bottom:601.713000px;}
.y44{bottom:606.360000px;}
.y15{bottom:614.868000px;}
.y56{bottom:619.645500px;}
.y43{bottom:624.292500px;}
.y14{bottom:632.800500px;}
.y55{bottom:637.578000px;}
.y42{bottom:642.225000px;}
.y13{bottom:650.733000px;}
.y54{bottom:655.510500px;}
.y41{bottom:660.157500px;}
.y12{bottom:668.665500px;}
.y53{bottom:673.443000px;}
.y40{bottom:678.090000px;}
.y11{bottom:686.598000px;}
.y52{bottom:691.375500px;}
.y3f{bottom:696.024000px;}
.y10{bottom:710.227500px;}
.y3e{bottom:713.956500px;}
.yf{bottom:743.803500px;}
.ye{bottom:758.746500px;}
.y3d{bottom:762.273000px;}
.yd{bottom:773.856000px;}
.y3c{bottom:775.722000px;}
.yc{bottom:788.800500px;}
.y33{bottom:794.778000px;}
.yb{bottom:803.743500px;}
.y32{bottom:812.710500px;}
.ya{bottom:818.688000px;}
.y31{bottom:830.643000px;}
.y9{bottom:833.632500px;}
.y8{bottom:848.575500px;}
.y7{bottom:918.042000px;}
.y6{bottom:936.534000px;}
.y5{bottom:955.027500px;}
.y4{bottom:973.521000px;}
.y3{bottom:992.235000px;}
.y2{bottom:1039.309500px;}
.y1{bottom:1081.152000px;}
.h7{height:34.765576px;}
.h6{height:37.174694px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:43.456861px;}
.h2{height:57.215774px;}
.h1{height:104.296729px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:73.446000px;}
.x12{left:88.389000px;}
.x5{left:118.159500px;}
.x4{left:122.149500px;}
.x1{left:142.810500px;}
.x3{left:166.933500px;}
.x7{left:169.110000px;}
.x6{left:181.012500px;}
.x2{left:192.862500px;}
.x14{left:203.428500px;}
.xa{left:381.889500px;}
.x9{left:385.879500px;}
.x8{left:431.329500px;}
.xc{left:435.411000px;}
.xb{left:444.744000px;}
.x15{left:467.967000px;}
.x1a{left:473.944500px;}
.x16{left:482.910000px;}
.x1b{left:495.355500px;}
.x18{left:591.090000px;}
.x19{left:614.418000px;}
.x17{left:622.711500px;}
.xf{left:645.619500px;}
.x10{left:659.779500px;}
.xe{left:666.870000px;}
.xd{left:669.465000px;}
.x11{left:680.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002933pt;}
.ls5{letter-spacing:0.746682pt;}
.ls1{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.654903pt;}
.ls6{letter-spacing:2.655711pt;}
.ls2{letter-spacing:2.656015pt;}
.ws5{word-spacing:-14.611867pt;}
.ws7{word-spacing:-13.283467pt;}
.ws13{word-spacing:-13.262246pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws9{word-spacing:-0.047821pt;}
.ws3c{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.318803pt;}
.ws31{word-spacing:0.371937pt;}
.ws22{word-spacing:0.531339pt;}
.ws61{word-spacing:1.062680pt;}
.ws17{word-spacing:1.222079pt;}
.ws59{word-spacing:1.572766pt;}
.ws21{word-spacing:2.178489pt;}
.ws1b{word-spacing:2.231622pt;}
.ws15{word-spacing:2.284756pt;}
.ws32{word-spacing:2.337890pt;}
.ws2b{word-spacing:2.550426pt;}
.ws23{word-spacing:2.603559pt;}
.ws1a{word-spacing:3.241166pt;}
.wsc{word-spacing:3.490918pt;}
.ws5a{word-spacing:3.655619pt;}
.ws40{word-spacing:3.666237pt;}
.ws16{word-spacing:3.719371pt;}
.ws2c{word-spacing:3.825638pt;}
.ws29{word-spacing:4.091308pt;}
.ws37{word-spacing:4.250720pt;}
.ws11{word-spacing:5.212467pt;}
.ws2e{word-spacing:5.268690pt;}
.ws2d{word-spacing:5.280207pt;}
.ws4{word-spacing:5.313387pt;}
.ws2a{word-spacing:5.632190pt;}
.ws1f{word-spacing:5.791591pt;}
.ws3d{word-spacing:5.823486pt;}
.ws2{word-spacing:5.844747pt;}
.wsf{word-spacing:5.977600pt;}
.ws26{word-spacing:6.057261pt;}
.ws49{word-spacing:6.110395pt;}
.wse{word-spacing:6.599270pt;}
.ws4c{word-spacing:6.758645pt;}
.ws34{word-spacing:6.854269pt;}
.ws60{word-spacing:7.183717pt;}
.ws39{word-spacing:7.385607pt;}
.ws14{word-spacing:7.438741pt;}
.ws51{word-spacing:7.545009pt;}
.ws25{word-spacing:7.598143pt;}
.ws3a{word-spacing:7.810678pt;}
.ws33{word-spacing:7.970080pt;}
.ws1d{word-spacing:8.129482pt;}
.ws3e{word-spacing:8.288883pt;}
.ws3f{word-spacing:8.342017pt;}
.ws5d{word-spacing:8.586454pt;}
.ws20{word-spacing:8.713954pt;}
.ws24{word-spacing:9.351561pt;}
.ws42{word-spacing:9.564096pt;}
.ws3b{word-spacing:9.606627pt;}
.ws36{word-spacing:9.649134pt;}
.ws30{word-spacing:10.148569pt;}
.ws44{word-spacing:10.201702pt;}
.ws53{word-spacing:10.254836pt;}
.ws38{word-spacing:10.467372pt;}
.ws1c{word-spacing:10.520506pt;}
.ws4d{word-spacing:10.573639pt;}
.ws48{word-spacing:10.679907pt;}
.ws18{word-spacing:10.786175pt;}
.ws28{word-spacing:10.945577pt;}
.ws4e{word-spacing:11.264380pt;}
.ws4b{word-spacing:11.317514pt;}
.wsd{word-spacing:11.429171pt;}
.ws52{word-spacing:11.476915pt;}
.wsb{word-spacing:11.476992pt;}
.wsa{word-spacing:12.289946pt;}
.ws0{word-spacing:12.752160pt;}
.ws19{word-spacing:12.805262pt;}
.ws47{word-spacing:12.858396pt;}
.ws1{word-spacing:12.882718pt;}
.ws6{word-spacing:12.885333pt;}
.ws8{word-spacing:12.885815pt;}
.ws5b{word-spacing:13.347261pt;}
.ws58{word-spacing:13.474782pt;}
.ws4a{word-spacing:13.655404pt;}
.ws35{word-spacing:13.814805pt;}
.ws45{word-spacing:13.867939pt;}
.ws27{word-spacing:13.974207pt;}
.ws41{word-spacing:14.611813pt;}
.ws57{word-spacing:14.707491pt;}
.ws62{word-spacing:14.920027pt;}
.ws50{word-spacing:15.568223pt;}
.ws12{word-spacing:15.940160pt;}
.ws56{word-spacing:16.322765pt;}
.ws43{word-spacing:16.630900pt;}
.ws55{word-spacing:16.949703pt;}
.ws10{word-spacing:17.119846pt;}
.ws3{word-spacing:18.543719pt;}
.ws46{word-spacing:18.756255pt;}
.ws54{word-spacing:19.128192pt;}
.ws4f{word-spacing:19.234460pt;}
.ws63{word-spacing:21.551150pt;}
.ws5f{word-spacing:22.656338pt;}
.ws5e{word-spacing:27.969738pt;}
.ws5c{word-spacing:55.089331pt;}
._c{margin-left:-5.908501pt;}
._2{margin-left:-4.678197pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._3{margin-left:-0.908603pt;}
._4{width:2.656693pt;}
._7{width:17.342938pt;}
._d{width:26.567000pt;}
._a{width:27.576482pt;}
._6{width:32.943080pt;}
._b{width:34.728382pt;}
._5{width:40.466854pt;}
._8{width:45.695125pt;}
._9{width:52.230591pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:100.740000pt;}
.y3b{bottom:115.946667pt;}
.y2f{bottom:116.680000pt;}
.y75{bottom:119.218667pt;}
.y3a{bottom:127.902667pt;}
.y51{bottom:130.701333pt;}
.y74{bottom:131.173333pt;}
.y2e{bottom:132.621333pt;}
.y50{bottom:142.656000pt;}
.y73{bottom:143.129333pt;}
.y2d{bottom:148.561333pt;}
.y72{bottom:155.084000pt;}
.y71{bottom:167.040000pt;}
.y2c{bottom:169.565333pt;}
.y70{bottom:178.994667pt;}
.y6f{bottom:190.949333pt;}
.y2b{bottom:195.717333pt;}
.y6e{bottom:202.905333pt;}
.y2a{bottom:211.657333pt;}
.y6d{bottom:214.860000pt;}
.y6c{bottom:226.814667pt;}
.y29{bottom:227.597333pt;}
.y6b{bottom:238.770667pt;}
.y28{bottom:243.537333pt;}
.y6a{bottom:250.725333pt;}
.y27{bottom:259.478667pt;}
.y69{bottom:262.681333pt;}
.y68{bottom:274.636000pt;}
.y26{bottom:275.418667pt;}
.y67{bottom:286.590667pt;}
.y25{bottom:291.358667pt;}
.y66{bottom:298.546667pt;}
.y24{bottom:307.298667pt;}
.y65{bottom:310.501333pt;}
.y64{bottom:322.456000pt;}
.y23{bottom:323.238667pt;}
.y63{bottom:334.412000pt;}
.y22{bottom:339.178667pt;}
.y62{bottom:346.366667pt;}
.y21{bottom:355.120000pt;}
.y61{bottom:358.321333pt;}
.y4f{bottom:363.644000pt;}
.y39{bottom:368.314667pt;}
.y60{bottom:370.277333pt;}
.y20{bottom:371.060000pt;}
.y4e{bottom:379.584000pt;}
.y5f{bottom:382.232000pt;}
.y38{bottom:384.254667pt;}
.y1f{bottom:387.000000pt;}
.y4d{bottom:395.524000pt;}
.y37{bottom:400.194667pt;}
.y5e{bottom:401.852000pt;}
.y1e{bottom:402.940000pt;}
.y4c{bottom:411.464000pt;}
.y36{bottom:416.134667pt;}
.y1d{bottom:418.880000pt;}
.y5d{bottom:426.437333pt;}
.y4b{bottom:427.405333pt;}
.y1c{bottom:434.966667pt;}
.y4a{bottom:443.345333pt;}
.y35{bottom:444.257333pt;}
.y5c{bottom:446.508000pt;}
.y1b{bottom:450.908000pt;}
.y34{bottom:456.213333pt;}
.y49{bottom:459.285333pt;}
.y1a{bottom:466.848000pt;}
.y5b{bottom:471.094667pt;}
.y48{bottom:475.225333pt;}
.y19{bottom:482.788000pt;}
.y5a{bottom:487.034667pt;}
.y47{bottom:491.165333pt;}
.y18{bottom:498.728000pt;}
.y59{bottom:502.974667pt;}
.y46{bottom:507.105333pt;}
.y17{bottom:514.668000pt;}
.y58{bottom:518.914667pt;}
.y45{bottom:523.046667pt;}
.y16{bottom:530.608000pt;}
.y57{bottom:534.856000pt;}
.y44{bottom:538.986667pt;}
.y15{bottom:546.549333pt;}
.y56{bottom:550.796000pt;}
.y43{bottom:554.926667pt;}
.y14{bottom:562.489333pt;}
.y55{bottom:566.736000pt;}
.y42{bottom:570.866667pt;}
.y13{bottom:578.429333pt;}
.y54{bottom:582.676000pt;}
.y41{bottom:586.806667pt;}
.y12{bottom:594.369333pt;}
.y53{bottom:598.616000pt;}
.y40{bottom:602.746667pt;}
.y11{bottom:610.309333pt;}
.y52{bottom:614.556000pt;}
.y3f{bottom:618.688000pt;}
.y10{bottom:631.313333pt;}
.y3e{bottom:634.628000pt;}
.yf{bottom:661.158667pt;}
.ye{bottom:674.441333pt;}
.y3d{bottom:677.576000pt;}
.yd{bottom:687.872000pt;}
.y3c{bottom:689.530667pt;}
.yc{bottom:701.156000pt;}
.y33{bottom:706.469333pt;}
.yb{bottom:714.438667pt;}
.y32{bottom:722.409333pt;}
.ya{bottom:727.722667pt;}
.y31{bottom:738.349333pt;}
.y9{bottom:741.006667pt;}
.y8{bottom:754.289333pt;}
.y7{bottom:816.037333pt;}
.y6{bottom:832.474667pt;}
.y5{bottom:848.913333pt;}
.y4{bottom:865.352000pt;}
.y3{bottom:881.986667pt;}
.y2{bottom:923.830667pt;}
.y1{bottom:961.024000pt;}
.h7{height:30.902734pt;}
.h6{height:33.044173pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:38.628321pt;}
.h2{height:50.858466pt;}
.h1{height:92.708203pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:65.285333pt;}
.x12{left:78.568000pt;}
.x5{left:105.030667pt;}
.x4{left:108.577333pt;}
.x1{left:126.942667pt;}
.x3{left:148.385333pt;}
.x7{left:150.320000pt;}
.x6{left:160.900000pt;}
.x2{left:171.433333pt;}
.x14{left:180.825333pt;}
.xa{left:339.457333pt;}
.x9{left:343.004000pt;}
.x8{left:383.404000pt;}
.xc{left:387.032000pt;}
.xb{left:395.328000pt;}
.x15{left:415.970667pt;}
.x1a{left:421.284000pt;}
.x16{left:429.253333pt;}
.x1b{left:440.316000pt;}
.x18{left:525.413333pt;}
.x19{left:546.149333pt;}
.x17{left:553.521333pt;}
.xf{left:573.884000pt;}
.x10{left:586.470667pt;}
.xe{left:592.773333pt;}
.xd{left:595.080000pt;}
.x11{left:605.200000pt;}
}




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