
    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_72651261a95f9decc063538d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_03593373db5213b5d3940c06.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_01e40fdc293c48c38af84ea1.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-30.993750px;}
.wsd{word-spacing:-3.730912px;}
.ws35{word-spacing:-3.730022px;}
.ws23{word-spacing:-3.443098px;}
.ws3e{word-spacing:-2.940979px;}
.ws4e{word-spacing:-2.725786px;}
.ws27{word-spacing:-2.582323px;}
.ws48{word-spacing:-2.438861px;}
.ws53{word-spacing:-2.367130px;}
.ws3c{word-spacing:-2.295398px;}
.ws43{word-spacing:-2.223667px;}
.ws29{word-spacing:-2.151936px;}
.ws7{word-spacing:-2.094547px;}
.ws41{word-spacing:-1.936742px;}
.ws8{word-spacing:-1.636365px;}
.ws11{word-spacing:-1.506355px;}
.ws2c{word-spacing:-1.362893px;}
.ws30{word-spacing:-1.219430px;}
.ws4b{word-spacing:-1.075968px;}
.ws54{word-spacing:-0.932506px;}
.ws12{word-spacing:-0.789043px;}
.ws28{word-spacing:-0.645581px;}
.ws6{word-spacing:-0.327273px;}
.ws16{word-spacing:-0.103292px;}
.ws67{word-spacing:-0.071731px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.065455px;}
.ws13{word-spacing:0.071731px;}
.ws47{word-spacing:0.215194px;}
.ws25{word-spacing:0.286925px;}
.ws24{word-spacing:0.430387px;}
.ws39{word-spacing:0.502118px;}
.ws49{word-spacing:0.573850px;}
.ws44{word-spacing:0.645581px;}
.ws4a{word-spacing:0.717312px;}
.ws10{word-spacing:0.789043px;}
.ws2{word-spacing:0.850910px;}
.ws21{word-spacing:0.932506px;}
.ws1e{word-spacing:1.075968px;}
.ws5a{word-spacing:1.291162px;}
.ws46{word-spacing:1.362893px;}
.ws2d{word-spacing:1.434624px;}
.wsc{word-spacing:1.636365px;}
.ws26{word-spacing:1.649818px;}
.wsa{word-spacing:1.701820px;}
.ws1a{word-spacing:1.865011px;}
.ws38{word-spacing:2.008474px;}
.ws14{word-spacing:2.151936px;}
.ws52{word-spacing:2.438861px;}
.ws45{word-spacing:2.582323px;}
.ws50{word-spacing:2.725786px;}
.ws2a{word-spacing:2.797517px;}
.ws64{word-spacing:3.156173px;}
.ws3d{word-spacing:3.227904px;}
.ws3f{word-spacing:3.443098px;}
.ws22{word-spacing:3.586560px;}
.ws4f{word-spacing:3.730022px;}
.ws32{word-spacing:3.801754px;}
.ws62{word-spacing:3.945216px;}
.ws34{word-spacing:4.088678px;}
.ws3{word-spacing:4.189094px;}
.ws5d{word-spacing:4.232141px;}
.ws20{word-spacing:4.303872px;}
.ws31{word-spacing:4.375603px;}
.ws40{word-spacing:4.447334px;}
.ws60{word-spacing:4.519066px;}
.ws4{word-spacing:4.647277px;}
.ws55{word-spacing:4.805990px;}
.ws3b{word-spacing:5.092915px;}
.wsb{word-spacing:5.236368px;}
.ws4d{word-spacing:5.236378px;}
.ws15{word-spacing:5.308109px;}
.ws17{word-spacing:5.379840px;}
.ws33{word-spacing:5.451571px;}
.ws19{word-spacing:5.523302px;}
.ws5{word-spacing:5.825459px;}
.ws3a{word-spacing:5.881958px;}
.ws1d{word-spacing:6.025421px;}
.ws36{word-spacing:6.312346px;}
.ws1f{word-spacing:6.599270px;}
.ws1c{word-spacing:6.742733px;}
.ws2b{word-spacing:6.886195px;}
.ws2e{word-spacing:7.460045px;}
.ws42{word-spacing:7.746970px;}
.ws2f{word-spacing:7.962163px;}
.ws37{word-spacing:8.105626px;}
.ws5c{word-spacing:8.249088px;}
.ws18{word-spacing:8.320819px;}
.ws1b{word-spacing:9.109862px;}
.ws51{word-spacing:9.540250px;}
.ws4c{word-spacing:10.114099px;}
.wsf{word-spacing:10.401024px;}
.ws59{word-spacing:14.920090px;}
.ws66{word-spacing:16.785101px;}
.ws5f{word-spacing:17.861069px;}
.ws57{word-spacing:18.793574px;}
.ws5b{word-spacing:19.510886px;}
.ws65{word-spacing:21.017242px;}
.ws63{word-spacing:21.806285px;}
.ws61{word-spacing:22.380134px;}
.ws56{word-spacing:22.738790px;}
.ws58{word-spacing:23.169178px;}
.wse{word-spacing:25.719808px;}
.ws5e{word-spacing:30.557491px;}
._12{margin-left:-7.643638px;}
._a{margin-left:-5.534075px;}
._2{margin-left:-4.339125px;}
._3{margin-left:-3.099375px;}
._0{margin-left:-1.859625px;}
._10{width:15.698360px;}
._18{width:16.779715px;}
._1c{width:17.932800px;}
._7{width:19.570925px;}
._1b{width:20.708772px;}
._4{width:21.946412px;}
._6{width:23.779141px;}
._8{width:25.777450px;}
._b{width:27.109007px;}
._9{width:28.922607px;}
._15{width:30.766531px;}
._11{width:32.204396px;}
._5{width:33.605106px;}
._f{width:35.249753px;}
._17{width:36.306760px;}
._1{width:38.432250px;}
._d{width:40.241203px;}
._e{width:42.106214px;}
._13{width:43.408148px;}
._19{width:44.683151px;}
._16{width:45.749572px;}
._14{width:46.845860px;}
._c{width:50.217226px;}
._1a{width:52.650701px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y1b{bottom:108.000000px;}
.y5d{bottom:126.982500px;}
.y1a{bottom:134.890500px;}
.y5c{bottom:153.874500px;}
.y19{bottom:161.781000px;}
.y38{bottom:161.782500px;}
.y5b{bottom:180.765000px;}
.y18{bottom:188.673000px;}
.y49{bottom:207.232500px;}
.y5a{bottom:207.655500px;}
.y17{bottom:215.563500px;}
.y16{bottom:242.454000px;}
.y59{bottom:253.107000px;}
.y37{bottom:261.015000px;}
.y48{bottom:275.788500px;}
.y15{bottom:287.905500px;}
.y47{bottom:302.679000px;}
.y58{bottom:322.150500px;}
.y36{bottom:329.571000px;}
.y57{bottom:349.041000px;}
.y35{bottom:356.461500px;}
.y14{bottom:356.625000px;}
.y56{bottom:375.933000px;}
.y13{bottom:381.847500px;}
.y34{bottom:383.352000px;}
.y55{bottom:402.823500px;}
.y12{bottom:407.068500px;}
.y69{bottom:409.755000px;}
.y33{bottom:410.242500px;}
.y54{bottom:429.714000px;}
.y11{bottom:432.291000px;}
.y68{bottom:436.645500px;}
.y32{bottom:437.134500px;}
.y53{bottom:456.604500px;}
.y10{bottom:457.512000px;}
.y67{bottom:463.536000px;}
.y31{bottom:464.025000px;}
.yf{bottom:482.734500px;}
.y66{bottom:490.428000px;}
.y30{bottom:490.915500px;}
.y52{bottom:502.056000px;}
.ye{bottom:507.955500px;}
.y65{bottom:517.318500px;}
.y2f{bottom:517.806000px;}
.yd{bottom:533.178000px;}
.y64{bottom:544.209000px;}
.y2e{bottom:544.698000px;}
.yc{bottom:558.400500px;}
.y51{bottom:571.099500px;}
.y2d{bottom:571.588500px;}
.yb{bottom:583.621500px;}
.y50{bottom:597.991500px;}
.y2c{bottom:598.479000px;}
.ya{bottom:608.844000px;}
.y46{bottom:617.040000px;}
.y4f{bottom:624.882000px;}
.y2b{bottom:625.369500px;}
.y9{bottom:634.065000px;}
.y4e{bottom:651.772500px;}
.y2a{bottom:652.261500px;}
.y8{bottom:659.287500px;}
.y4d{bottom:678.663000px;}
.y29{bottom:679.152000px;}
.y45{bottom:685.596000px;}
.y7{bottom:693.355500px;}
.y4c{bottom:705.555000px;}
.y28{bottom:706.042500px;}
.y44{bottom:712.486500px;}
.y4b{bottom:732.445500px;}
.y27{bottom:732.933000px;}
.y43{bottom:739.377000px;}
.y63{bottom:759.336000px;}
.y26{bottom:759.823500px;}
.y6{bottom:760.066500px;}
.y42{bottom:766.267500px;}
.y4a{bottom:777.897000px;}
.y62{bottom:786.226500px;}
.y25{bottom:786.715500px;}
.y41{bottom:793.158000px;}
.y5{bottom:793.449000px;}
.y61{bottom:813.118500px;}
.y24{bottom:813.606000px;}
.y40{bottom:820.050000px;}
.y4{bottom:826.830000px;}
.y60{bottom:840.009000px;}
.y23{bottom:840.496500px;}
.y3f{bottom:846.940500px;}
.y5f{bottom:866.899500px;}
.y22{bottom:867.387000px;}
.y3e{bottom:873.831000px;}
.y3{bottom:887.110500px;}
.y21{bottom:894.279000px;}
.y3d{bottom:900.721500px;}
.y5e{bottom:912.351000px;}
.y20{bottom:921.169500px;}
.y3c{bottom:927.613500px;}
.y2{bottom:933.474000px;}
.y3b{bottom:954.504000px;}
.y1f{bottom:966.621000px;}
.y1{bottom:979.837500px;}
.y3a{bottom:981.394500px;}
.y39{bottom:1008.285000px;}
.y1e{bottom:1035.177000px;}
.y1d{bottom:1062.067500px;}
.h4{height:45.032765px;}
.h3{height:45.294583px;}
.h6{height:49.351066px;}
.h2{height:59.221114px;}
.h5{height:71.478341px;}
.h1{height:85.294800px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x2{left:134.917500px;}
.x1{left:148.524000px;}
.x9{left:151.897500px;}
.x8{left:176.443500px;}
.x6{left:263.532000px;}
.x5{left:282.532500px;}
.x4{left:363.240000px;}
.x3{left:424.101000px;}
.x7{left:428.556000px;}
.xb{left:454.516500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-27.550000pt;}
.wsd{word-spacing:-3.316366pt;}
.ws35{word-spacing:-3.315575pt;}
.ws23{word-spacing:-3.060531pt;}
.ws3e{word-spacing:-2.614204pt;}
.ws4e{word-spacing:-2.422921pt;}
.ws27{word-spacing:-2.295398pt;}
.ws48{word-spacing:-2.167876pt;}
.ws53{word-spacing:-2.104115pt;}
.ws3c{word-spacing:-2.040354pt;}
.ws43{word-spacing:-1.976593pt;}
.ws29{word-spacing:-1.912832pt;}
.ws7{word-spacing:-1.861820pt;}
.ws41{word-spacing:-1.721549pt;}
.ws8{word-spacing:-1.454547pt;}
.ws11{word-spacing:-1.338982pt;}
.ws2c{word-spacing:-1.211460pt;}
.ws30{word-spacing:-1.083938pt;}
.ws4b{word-spacing:-0.956416pt;}
.ws54{word-spacing:-0.828894pt;}
.ws12{word-spacing:-0.701372pt;}
.ws28{word-spacing:-0.573850pt;}
.ws6{word-spacing:-0.290909pt;}
.ws16{word-spacing:-0.091815pt;}
.ws67{word-spacing:-0.063761pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.058182pt;}
.ws13{word-spacing:0.063761pt;}
.ws47{word-spacing:0.191283pt;}
.ws25{word-spacing:0.255044pt;}
.ws24{word-spacing:0.382566pt;}
.ws39{word-spacing:0.446327pt;}
.ws49{word-spacing:0.510089pt;}
.ws44{word-spacing:0.573850pt;}
.ws4a{word-spacing:0.637611pt;}
.ws10{word-spacing:0.701372pt;}
.ws2{word-spacing:0.756364pt;}
.ws21{word-spacing:0.828894pt;}
.ws1e{word-spacing:0.956416pt;}
.ws5a{word-spacing:1.147699pt;}
.ws46{word-spacing:1.211460pt;}
.ws2d{word-spacing:1.275221pt;}
.wsc{word-spacing:1.454547pt;}
.ws26{word-spacing:1.466505pt;}
.wsa{word-spacing:1.512729pt;}
.ws1a{word-spacing:1.657788pt;}
.ws38{word-spacing:1.785310pt;}
.ws14{word-spacing:1.912832pt;}
.ws52{word-spacing:2.167876pt;}
.ws45{word-spacing:2.295398pt;}
.ws50{word-spacing:2.422921pt;}
.ws2a{word-spacing:2.486682pt;}
.ws64{word-spacing:2.805487pt;}
.ws3d{word-spacing:2.869248pt;}
.ws3f{word-spacing:3.060531pt;}
.ws22{word-spacing:3.188053pt;}
.ws4f{word-spacing:3.315575pt;}
.ws32{word-spacing:3.379337pt;}
.ws62{word-spacing:3.506859pt;}
.ws34{word-spacing:3.634381pt;}
.ws3{word-spacing:3.723639pt;}
.ws5d{word-spacing:3.761903pt;}
.ws20{word-spacing:3.825664pt;}
.ws31{word-spacing:3.889425pt;}
.ws40{word-spacing:3.953186pt;}
.ws60{word-spacing:4.016947pt;}
.ws4{word-spacing:4.130913pt;}
.ws55{word-spacing:4.271991pt;}
.ws3b{word-spacing:4.527036pt;}
.wsb{word-spacing:4.654549pt;}
.ws4d{word-spacing:4.654558pt;}
.ws15{word-spacing:4.718319pt;}
.ws17{word-spacing:4.782080pt;}
.ws33{word-spacing:4.845841pt;}
.ws19{word-spacing:4.909602pt;}
.ws5{word-spacing:5.178186pt;}
.ws3a{word-spacing:5.228407pt;}
.ws1d{word-spacing:5.355930pt;}
.ws36{word-spacing:5.610974pt;}
.ws1f{word-spacing:5.866018pt;}
.ws1c{word-spacing:5.993540pt;}
.ws2b{word-spacing:6.121062pt;}
.ws2e{word-spacing:6.631151pt;}
.ws42{word-spacing:6.886195pt;}
.ws2f{word-spacing:7.077478pt;}
.ws37{word-spacing:7.205001pt;}
.ws5c{word-spacing:7.332523pt;}
.ws18{word-spacing:7.396284pt;}
.ws1b{word-spacing:8.097655pt;}
.ws51{word-spacing:8.480222pt;}
.ws4c{word-spacing:8.990310pt;}
.wsf{word-spacing:9.245355pt;}
.ws59{word-spacing:13.262302pt;}
.ws66{word-spacing:14.920090pt;}
.ws5f{word-spacing:15.876506pt;}
.ws57{word-spacing:16.705399pt;}
.ws5b{word-spacing:17.343010pt;}
.ws65{word-spacing:18.681993pt;}
.ws63{word-spacing:19.383364pt;}
.ws61{word-spacing:19.893453pt;}
.ws56{word-spacing:20.212258pt;}
.ws58{word-spacing:20.594825pt;}
.wse{word-spacing:22.862051pt;}
.ws5e{word-spacing:27.162214pt;}
._12{margin-left:-6.794345pt;}
._a{margin-left:-4.919178pt;}
._2{margin-left:-3.857000pt;}
._3{margin-left:-2.755000pt;}
._0{margin-left:-1.653000pt;}
._10{width:13.954098pt;}
._18{width:14.915302pt;}
._1c{width:15.940267pt;}
._7{width:17.396378pt;}
._1b{width:18.407797pt;}
._4{width:19.507922pt;}
._6{width:21.137014pt;}
._8{width:22.913289pt;}
._b{width:24.096895pt;}
._9{width:25.708984pt;}
._15{width:27.348027pt;}
._11{width:28.626130pt;}
._5{width:29.871205pt;}
._f{width:31.333114pt;}
._17{width:32.272675pt;}
._1{width:34.162000pt;}
._d{width:35.769958pt;}
._e{width:37.427746pt;}
._13{width:38.585021pt;}
._19{width:39.718357pt;}
._16{width:40.666286pt;}
._14{width:41.640764pt;}
._c{width:44.637534pt;}
._1a{width:46.800623pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y1b{bottom:96.000000pt;}
.y5d{bottom:112.873333pt;}
.y1a{bottom:119.902667pt;}
.y5c{bottom:136.777333pt;}
.y19{bottom:143.805333pt;}
.y38{bottom:143.806667pt;}
.y5b{bottom:160.680000pt;}
.y18{bottom:167.709333pt;}
.y49{bottom:184.206667pt;}
.y5a{bottom:184.582667pt;}
.y17{bottom:191.612000pt;}
.y16{bottom:215.514667pt;}
.y59{bottom:224.984000pt;}
.y37{bottom:232.013333pt;}
.y48{bottom:245.145333pt;}
.y15{bottom:255.916000pt;}
.y47{bottom:269.048000pt;}
.y58{bottom:286.356000pt;}
.y36{bottom:292.952000pt;}
.y57{bottom:310.258667pt;}
.y35{bottom:316.854667pt;}
.y14{bottom:317.000000pt;}
.y56{bottom:334.162667pt;}
.y13{bottom:339.420000pt;}
.y34{bottom:340.757333pt;}
.y55{bottom:358.065333pt;}
.y12{bottom:361.838667pt;}
.y69{bottom:364.226667pt;}
.y33{bottom:364.660000pt;}
.y54{bottom:381.968000pt;}
.y11{bottom:384.258667pt;}
.y68{bottom:388.129333pt;}
.y32{bottom:388.564000pt;}
.y53{bottom:405.870667pt;}
.y10{bottom:406.677333pt;}
.y67{bottom:412.032000pt;}
.y31{bottom:412.466667pt;}
.yf{bottom:429.097333pt;}
.y66{bottom:435.936000pt;}
.y30{bottom:436.369333pt;}
.y52{bottom:446.272000pt;}
.ye{bottom:451.516000pt;}
.y65{bottom:459.838667pt;}
.y2f{bottom:460.272000pt;}
.yd{bottom:473.936000pt;}
.y64{bottom:483.741333pt;}
.y2e{bottom:484.176000pt;}
.yc{bottom:496.356000pt;}
.y51{bottom:507.644000pt;}
.y2d{bottom:508.078667pt;}
.yb{bottom:518.774667pt;}
.y50{bottom:531.548000pt;}
.y2c{bottom:531.981333pt;}
.ya{bottom:541.194667pt;}
.y46{bottom:548.480000pt;}
.y4f{bottom:555.450667pt;}
.y2b{bottom:555.884000pt;}
.y9{bottom:563.613333pt;}
.y4e{bottom:579.353333pt;}
.y2a{bottom:579.788000pt;}
.y8{bottom:586.033333pt;}
.y4d{bottom:603.256000pt;}
.y29{bottom:603.690667pt;}
.y45{bottom:609.418667pt;}
.y7{bottom:616.316000pt;}
.y4c{bottom:627.160000pt;}
.y28{bottom:627.593333pt;}
.y44{bottom:633.321333pt;}
.y4b{bottom:651.062667pt;}
.y27{bottom:651.496000pt;}
.y43{bottom:657.224000pt;}
.y63{bottom:674.965333pt;}
.y26{bottom:675.398667pt;}
.y6{bottom:675.614667pt;}
.y42{bottom:681.126667pt;}
.y4a{bottom:691.464000pt;}
.y62{bottom:698.868000pt;}
.y25{bottom:699.302667pt;}
.y41{bottom:705.029333pt;}
.y5{bottom:705.288000pt;}
.y61{bottom:722.772000pt;}
.y24{bottom:723.205333pt;}
.y40{bottom:728.933333pt;}
.y4{bottom:734.960000pt;}
.y60{bottom:746.674667pt;}
.y23{bottom:747.108000pt;}
.y3f{bottom:752.836000pt;}
.y5f{bottom:770.577333pt;}
.y22{bottom:771.010667pt;}
.y3e{bottom:776.738667pt;}
.y3{bottom:788.542667pt;}
.y21{bottom:794.914667pt;}
.y3d{bottom:800.641333pt;}
.y5e{bottom:810.978667pt;}
.y20{bottom:818.817333pt;}
.y3c{bottom:824.545333pt;}
.y2{bottom:829.754667pt;}
.y3b{bottom:848.448000pt;}
.y1f{bottom:859.218667pt;}
.y1{bottom:870.966667pt;}
.y3a{bottom:872.350667pt;}
.y39{bottom:896.253333pt;}
.y1e{bottom:920.157333pt;}
.y1d{bottom:944.060000pt;}
.h4{height:40.029124pt;}
.h3{height:40.261852pt;}
.h6{height:43.867614pt;}
.h2{height:52.640990pt;}
.h5{height:63.536303pt;}
.h1{height:75.817600pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x2{left:119.926667pt;}
.x1{left:132.021333pt;}
.x9{left:135.020000pt;}
.x8{left:156.838667pt;}
.x6{left:234.250667pt;}
.x5{left:251.140000pt;}
.x4{left:322.880000pt;}
.x3{left:376.978667pt;}
.x7{left:380.938667pt;}
.xb{left:404.014667pt;}
}




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