
    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_bf46c9bcc5f2cb25b0e5f5b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086914;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_46bd5e904db44c142c84fe8b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_165835e7c72193f80a0619fa.woff')format("woff");}.ff3{font-family:ff3;line-height:1.404297;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_6fd929b683e903e7beb0e66a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.086914;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:ff5;src:url('chunks/assets/font_a2ec24ae43edeafc09c8a5da.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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:ff6;src:url('chunks/assets/font_5c60c8bef19ec53faf2f8d44.woff')format("woff");}.ff6{font-family:ff6;line-height:1.404297;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:ff7;src:url('chunks/assets/font_cef5b280e398a7abe0e0436f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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:ff8;src:url('chunks/assets/font_c6deaa698245e6a049d05743.woff')format("woff");}.ff8{font-family:ff8;line-height:1.118164;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:ff9;src:url('chunks/assets/font_6e13a2715c8f959cbee9b5cc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.890200px;}
.v1{vertical-align:81.000000px;}
.ls4{letter-spacing:-1.092000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.lsb{letter-spacing:0.450000px;}
.ls8{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.400000px;}
.ls5{letter-spacing:2.484000px;}
.ls1{letter-spacing:5.700000px;}
.lse{letter-spacing:5.760000px;}
.lsc{letter-spacing:6.000000px;}
.ls6{letter-spacing:6.264000px;}
.ls3{letter-spacing:7.260000px;}
.ls7{letter-spacing:466.484400px;}
.ls11{letter-spacing:466.492200px;}
.lsf{letter-spacing:466.874400px;}
.lsd{letter-spacing:939.471000px;}
.ls10{letter-spacing:943.521000px;}
.ls0{letter-spacing:953.017800px;}
.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:-55.978066px;}
.ws1{word-spacing:-30.348000px;}
.ws2{word-spacing:-26.496000px;}
.ws0{word-spacing:-22.560000px;}
.ws9{word-spacing:-21.525000px;}
.ws4{word-spacing:-19.389000px;}
.wse{word-spacing:-17.043000px;}
.ws10{word-spacing:-14.820000px;}
.wsa{word-spacing:-13.902000px;}
.wsb{word-spacing:-11.303787px;}
.ws6{word-spacing:-7.260000px;}
.wsd{word-spacing:-6.000000px;}
.wsf{word-spacing:-5.760000px;}
.ws8{word-spacing:-2.484000px;}
.wsc{word-spacing:-2.400000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:1.092000px;}
._a{margin-left:-12.669900px;}
._d{margin-left:-7.205100px;}
._11{margin-left:-6.137100px;}
._b{margin-left:-5.076000px;}
._c{margin-left:-3.909600px;}
._2{margin-left:-2.828100px;}
._3{margin-left:-1.002300px;}
._8{width:1.238400px;}
._1{width:2.400000px;}
._9{width:3.543600px;}
._4{width:5.312400px;}
._5{width:6.423600px;}
._6{width:7.506000px;}
._7{width:8.689200px;}
._e{width:10.370400px;}
._10{width:11.412600px;}
._f{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y96{bottom:106.165350px;}
.y20{bottom:106.279650px;}
.y48{bottom:106.293300px;}
.y6f{bottom:106.296300px;}
.y47{bottom:123.546300px;}
.y6e{bottom:123.549300px;}
.y95{bottom:126.589350px;}
.y1f{bottom:126.617400px;}
.y46{bottom:143.794800px;}
.y1e{bottom:146.955150px;}
.y94{bottom:147.013350px;}
.y45{bottom:162.289200px;}
.y1d{bottom:167.292900px;}
.y93{bottom:167.437350px;}
.y6d{bottom:170.542350px;}
.y44{bottom:179.542200px;}
.y1c{bottom:187.630650px;}
.y92{bottom:187.861350px;}
.y6c{bottom:190.880100px;}
.y43{bottom:196.795200px;}
.y1b{bottom:207.968400px;}
.y91{bottom:208.285350px;}
.y6b{bottom:211.217850px;}
.y42{bottom:214.048200px;}
.y1a{bottom:228.306150px;}
.y90{bottom:228.709350px;}
.y6a{bottom:231.555600px;}
.y41{bottom:234.296700px;}
.y19{bottom:248.643900px;}
.y8f{bottom:249.133350px;}
.y69{bottom:251.893350px;}
.y18{bottom:268.981650px;}
.y8e{bottom:269.557350px;}
.y68{bottom:272.231100px;}
.y40{bottom:278.307150px;}
.y17{bottom:289.319400px;}
.y8d{bottom:289.981350px;}
.y67{bottom:292.568850px;}
.y3f{bottom:298.899600px;}
.y16{bottom:309.657150px;}
.y8c{bottom:310.405350px;}
.y66{bottom:312.906600px;}
.y3e{bottom:319.720350px;}
.y15{bottom:329.994900px;}
.y8b{bottom:330.829350px;}
.y65{bottom:333.244350px;}
.y3d{bottom:340.541100px;}
.y14{bottom:350.332650px;}
.y8a{bottom:351.253350px;}
.y64{bottom:353.582100px;}
.y3c{bottom:361.361850px;}
.y13{bottom:370.670400px;}
.y89{bottom:371.677350px;}
.y63{bottom:373.919850px;}
.y3b{bottom:382.182600px;}
.y12{bottom:391.008150px;}
.y88{bottom:392.101350px;}
.y62{bottom:394.257600px;}
.y3a{bottom:403.003350px;}
.y11{bottom:411.345900px;}
.y87{bottom:412.525350px;}
.y61{bottom:414.595350px;}
.y39{bottom:423.824100px;}
.y10{bottom:431.683650px;}
.y86{bottom:432.949350px;}
.y60{bottom:434.933100px;}
.y38{bottom:444.644850px;}
.yf{bottom:452.021400px;}
.ye{bottom:452.022900px;}
.y85{bottom:453.373350px;}
.y5f{bottom:455.270850px;}
.y37{bottom:465.465600px;}
.y84{bottom:473.797350px;}
.y5e{bottom:475.608600px;}
.y36{bottom:486.286350px;}
.y83{bottom:494.221350px;}
.y5d{bottom:495.946350px;}
.y35{bottom:507.107100px;}
.y82{bottom:514.645350px;}
.y5c{bottom:516.284100px;}
.y34{bottom:527.927850px;}
.y81{bottom:535.069350px;}
.y5b{bottom:536.621850px;}
.yd{bottom:542.706600px;}
.y33{bottom:548.748600px;}
.y80{bottom:555.493350px;}
.y5a{bottom:556.959600px;}
.yc{bottom:563.796600px;}
.ya5{bottom:564.941550px;}
.y32{bottom:569.569350px;}
.y7f{bottom:575.917350px;}
.y59{bottom:577.297350px;}
.ya4{bottom:585.191550px;}
.y31{bottom:590.390100px;}
.y7e{bottom:596.341350px;}
.y58{bottom:597.635100px;}
.ya3{bottom:605.441550px;}
.y30{bottom:611.210850px;}
.yb{bottom:614.647200px;}
.y7d{bottom:616.765350px;}
.y57{bottom:617.972850px;}
.ya2{bottom:625.691550px;}
.y2f{bottom:632.031600px;}
.y7c{bottom:637.189350px;}
.y56{bottom:638.310600px;}
.ya{bottom:646.227150px;}
.y2e{bottom:652.852350px;}
.y7b{bottom:657.613350px;}
.y55{bottom:658.648350px;}
.ya1{bottom:658.691550px;}
.y2d{bottom:673.673100px;}
.y9{bottom:677.817150px;}
.y7a{bottom:678.037350px;}
.y54{bottom:678.986100px;}
.y2c{bottom:694.493850px;}
.y79{bottom:698.461350px;}
.y53{bottom:699.323850px;}
.ya0{bottom:700.186350px;}
.y8{bottom:709.407150px;}
.y2b{bottom:715.314600px;}
.y78{bottom:718.885350px;}
.y52{bottom:719.661600px;}
.y9f{bottom:720.437850px;}
.y2a{bottom:736.135350px;}
.y77{bottom:739.309350px;}
.y51{bottom:739.999350px;}
.y9e{bottom:740.689350px;}
.y7{bottom:740.993850px;}
.y29{bottom:756.956100px;}
.y76{bottom:759.733350px;}
.y50{bottom:760.337100px;}
.y9d{bottom:760.940850px;}
.y28{bottom:777.776850px;}
.y75{bottom:780.157350px;}
.y4f{bottom:780.674850px;}
.y9c{bottom:781.192350px;}
.y27{bottom:798.597600px;}
.y74{bottom:800.581350px;}
.y4e{bottom:801.012600px;}
.y9b{bottom:801.443850px;}
.y6{bottom:802.332150px;}
.y26{bottom:819.418350px;}
.y73{bottom:821.005350px;}
.y4d{bottom:821.350350px;}
.y9a{bottom:821.695350px;}
.y5{bottom:831.927150px;}
.y25{bottom:840.239100px;}
.y72{bottom:841.429350px;}
.y4c{bottom:841.688100px;}
.y99{bottom:841.946850px;}
.y4{bottom:853.017150px;}
.y24{bottom:861.059850px;}
.y71{bottom:861.853350px;}
.y4b{bottom:862.025850px;}
.y98{bottom:862.198350px;}
.y23{bottom:881.880600px;}
.y70{bottom:882.277350px;}
.y4a{bottom:882.363600px;}
.y97{bottom:882.449850px;}
.y3{bottom:882.612150px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.he{height:34.028742px;}
.hb{height:40.898438px;}
.hf{height:46.010742px;}
.h13{height:46.696289px;}
.h10{height:50.018555px;}
.h5{height:50.947266px;}
.h4{height:51.123047px;}
.h3{height:53.679199px;}
.h11{height:55.576172px;}
.ha{height:58.791504px;}
.hd{height:58.822704px;}
.hc{height:59.704704px;}
.h14{height:60.880371px;}
.h8{height:61.347656px;}
.h2{height:63.903809px;}
.h12{height:63.912598px;}
.h6{height:71.572266px;}
.h7{height:92.021484px;}
.h9{height:169.153583px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.920200px;}
.x4{left:83.701950px;}
.x1{left:85.039350px;}
.x6{left:104.245800px;}
.x7{left:105.953550px;}
.x5{left:116.752050px;}
.x3{left:232.218000px;}
.x2{left:233.491050px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.902400pt;}
.v1{vertical-align:72.000000pt;}
.ls4{letter-spacing:-0.970667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.lsb{letter-spacing:0.400000pt;}
.ls8{letter-spacing:1.866667pt;}
.lsa{letter-spacing:2.133333pt;}
.ls5{letter-spacing:2.208000pt;}
.ls1{letter-spacing:5.066667pt;}
.lse{letter-spacing:5.120000pt;}
.lsc{letter-spacing:5.333333pt;}
.ls6{letter-spacing:5.568000pt;}
.ls3{letter-spacing:6.453333pt;}
.ls7{letter-spacing:414.652800pt;}
.ls11{letter-spacing:414.659733pt;}
.lsf{letter-spacing:414.999467pt;}
.lsd{letter-spacing:835.085333pt;}
.ls10{letter-spacing:838.685333pt;}
.ls0{letter-spacing:847.126933pt;}
.ws3{word-spacing:-49.758281pt;}
.ws1{word-spacing:-26.976000pt;}
.ws2{word-spacing:-23.552000pt;}
.ws0{word-spacing:-20.053333pt;}
.ws9{word-spacing:-19.133333pt;}
.ws4{word-spacing:-17.234667pt;}
.wse{word-spacing:-15.149333pt;}
.ws10{word-spacing:-13.173333pt;}
.wsa{word-spacing:-12.357333pt;}
.wsb{word-spacing:-10.047811pt;}
.ws6{word-spacing:-6.453333pt;}
.wsd{word-spacing:-5.333333pt;}
.wsf{word-spacing:-5.120000pt;}
.ws8{word-spacing:-2.208000pt;}
.wsc{word-spacing:-2.133333pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.970667pt;}
._a{margin-left:-11.262133pt;}
._d{margin-left:-6.404533pt;}
._11{margin-left:-5.455200pt;}
._b{margin-left:-4.512000pt;}
._c{margin-left:-3.475200pt;}
._2{margin-left:-2.513867pt;}
._3{margin-left:-0.890933pt;}
._8{width:1.100800pt;}
._1{width:2.133333pt;}
._9{width:3.149867pt;}
._4{width:4.722133pt;}
._5{width:5.709867pt;}
._6{width:6.672000pt;}
._7{width:7.723733pt;}
._e{width:9.218133pt;}
._10{width:10.144533pt;}
._f{width:38.617920pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y96{bottom:94.369200pt;}
.y20{bottom:94.470800pt;}
.y48{bottom:94.482933pt;}
.y6f{bottom:94.485600pt;}
.y47{bottom:109.818933pt;}
.y6e{bottom:109.821600pt;}
.y95{bottom:112.523867pt;}
.y1f{bottom:112.548800pt;}
.y46{bottom:127.817600pt;}
.y1e{bottom:130.626800pt;}
.y94{bottom:130.678533pt;}
.y45{bottom:144.257067pt;}
.y1d{bottom:148.704800pt;}
.y93{bottom:148.833200pt;}
.y6d{bottom:151.593200pt;}
.y44{bottom:159.593067pt;}
.y1c{bottom:166.782800pt;}
.y92{bottom:166.987867pt;}
.y6c{bottom:169.671200pt;}
.y43{bottom:174.929067pt;}
.y1b{bottom:184.860800pt;}
.y91{bottom:185.142533pt;}
.y6b{bottom:187.749200pt;}
.y42{bottom:190.265067pt;}
.y1a{bottom:202.938800pt;}
.y90{bottom:203.297200pt;}
.y6a{bottom:205.827200pt;}
.y41{bottom:208.263733pt;}
.y19{bottom:221.016800pt;}
.y8f{bottom:221.451867pt;}
.y69{bottom:223.905200pt;}
.y18{bottom:239.094800pt;}
.y8e{bottom:239.606533pt;}
.y68{bottom:241.983200pt;}
.y40{bottom:247.384133pt;}
.y17{bottom:257.172800pt;}
.y8d{bottom:257.761200pt;}
.y67{bottom:260.061200pt;}
.y3f{bottom:265.688533pt;}
.y16{bottom:275.250800pt;}
.y8c{bottom:275.915867pt;}
.y66{bottom:278.139200pt;}
.y3e{bottom:284.195867pt;}
.y15{bottom:293.328800pt;}
.y8b{bottom:294.070533pt;}
.y65{bottom:296.217200pt;}
.y3d{bottom:302.703200pt;}
.y14{bottom:311.406800pt;}
.y8a{bottom:312.225200pt;}
.y64{bottom:314.295200pt;}
.y3c{bottom:321.210533pt;}
.y13{bottom:329.484800pt;}
.y89{bottom:330.379867pt;}
.y63{bottom:332.373200pt;}
.y3b{bottom:339.717867pt;}
.y12{bottom:347.562800pt;}
.y88{bottom:348.534533pt;}
.y62{bottom:350.451200pt;}
.y3a{bottom:358.225200pt;}
.y11{bottom:365.640800pt;}
.y87{bottom:366.689200pt;}
.y61{bottom:368.529200pt;}
.y39{bottom:376.732533pt;}
.y10{bottom:383.718800pt;}
.y86{bottom:384.843867pt;}
.y60{bottom:386.607200pt;}
.y38{bottom:395.239867pt;}
.yf{bottom:401.796800pt;}
.ye{bottom:401.798133pt;}
.y85{bottom:402.998533pt;}
.y5f{bottom:404.685200pt;}
.y37{bottom:413.747200pt;}
.y84{bottom:421.153200pt;}
.y5e{bottom:422.763200pt;}
.y36{bottom:432.254533pt;}
.y83{bottom:439.307867pt;}
.y5d{bottom:440.841200pt;}
.y35{bottom:450.761867pt;}
.y82{bottom:457.462533pt;}
.y5c{bottom:458.919200pt;}
.y34{bottom:469.269200pt;}
.y81{bottom:475.617200pt;}
.y5b{bottom:476.997200pt;}
.yd{bottom:482.405867pt;}
.y33{bottom:487.776533pt;}
.y80{bottom:493.771867pt;}
.y5a{bottom:495.075200pt;}
.yc{bottom:501.152533pt;}
.ya5{bottom:502.170267pt;}
.y32{bottom:506.283867pt;}
.y7f{bottom:511.926533pt;}
.y59{bottom:513.153200pt;}
.ya4{bottom:520.170267pt;}
.y31{bottom:524.791200pt;}
.y7e{bottom:530.081200pt;}
.y58{bottom:531.231200pt;}
.ya3{bottom:538.170267pt;}
.y30{bottom:543.298533pt;}
.yb{bottom:546.353067pt;}
.y7d{bottom:548.235867pt;}
.y57{bottom:549.309200pt;}
.ya2{bottom:556.170267pt;}
.y2f{bottom:561.805867pt;}
.y7c{bottom:566.390533pt;}
.y56{bottom:567.387200pt;}
.ya{bottom:574.424133pt;}
.y2e{bottom:580.313200pt;}
.y7b{bottom:584.545200pt;}
.y55{bottom:585.465200pt;}
.ya1{bottom:585.503600pt;}
.y2d{bottom:598.820533pt;}
.y9{bottom:602.504133pt;}
.y7a{bottom:602.699867pt;}
.y54{bottom:603.543200pt;}
.y2c{bottom:617.327867pt;}
.y79{bottom:620.854533pt;}
.y53{bottom:621.621200pt;}
.ya0{bottom:622.387867pt;}
.y8{bottom:630.584133pt;}
.y2b{bottom:635.835200pt;}
.y78{bottom:639.009200pt;}
.y52{bottom:639.699200pt;}
.y9f{bottom:640.389200pt;}
.y2a{bottom:654.342533pt;}
.y77{bottom:657.163867pt;}
.y51{bottom:657.777200pt;}
.y9e{bottom:658.390533pt;}
.y7{bottom:658.661200pt;}
.y29{bottom:672.849867pt;}
.y76{bottom:675.318533pt;}
.y50{bottom:675.855200pt;}
.y9d{bottom:676.391867pt;}
.y28{bottom:691.357200pt;}
.y75{bottom:693.473200pt;}
.y4f{bottom:693.933200pt;}
.y9c{bottom:694.393200pt;}
.y27{bottom:709.864533pt;}
.y74{bottom:711.627867pt;}
.y4e{bottom:712.011200pt;}
.y9b{bottom:712.394533pt;}
.y6{bottom:713.184133pt;}
.y26{bottom:728.371867pt;}
.y73{bottom:729.782533pt;}
.y4d{bottom:730.089200pt;}
.y9a{bottom:730.395867pt;}
.y5{bottom:739.490800pt;}
.y25{bottom:746.879200pt;}
.y72{bottom:747.937200pt;}
.y4c{bottom:748.167200pt;}
.y99{bottom:748.397200pt;}
.y4{bottom:758.237467pt;}
.y24{bottom:765.386533pt;}
.y71{bottom:766.091867pt;}
.y4b{bottom:766.245200pt;}
.y98{bottom:766.398533pt;}
.y23{bottom:783.893867pt;}
.y70{bottom:784.246533pt;}
.y4a{bottom:784.323200pt;}
.y97{bottom:784.399867pt;}
.y3{bottom:784.544133pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.he{height:30.247771pt;}
.hb{height:36.354167pt;}
.hf{height:40.898438pt;}
.h13{height:41.507812pt;}
.h10{height:44.460938pt;}
.h5{height:45.286458pt;}
.h4{height:45.442708pt;}
.h3{height:47.714844pt;}
.h11{height:49.401042pt;}
.ha{height:52.259115pt;}
.hd{height:52.286848pt;}
.hc{height:53.070848pt;}
.h14{height:54.115885pt;}
.h8{height:54.531250pt;}
.h2{height:56.803385pt;}
.h12{height:56.811198pt;}
.h6{height:63.619792pt;}
.h7{height:81.796875pt;}
.h9{height:150.358740pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.929067pt;}
.x4{left:74.401733pt;}
.x1{left:75.590533pt;}
.x6{left:92.662933pt;}
.x7{left:94.180933pt;}
.x5{left:103.779600pt;}
.x3{left:206.416000pt;}
.x2{left:207.547600pt;}
}




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