
    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_c2e3324875019afa28fb68fa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124512;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_4a64978ed08d37521dc0226b.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_caaf5692e59a8ad7c0c07f51.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_64377cb8b95ef628fdb94d25.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124512;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_ba578724debc637a67ac9fa3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.377930;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_a5e22170f462bb5a3f7ad1a5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.680176;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:16.920000px;}
.v1{vertical-align:81.000000px;}
.lsf{letter-spacing:-2.139000px;}
.ls10{letter-spacing:-1.518000px;}
.ls13{letter-spacing:-1.380000px;}
.ls7{letter-spacing:-1.311000px;}
.ls6{letter-spacing:-1.242000px;}
.ls4{letter-spacing:-1.188000px;}
.ls21{letter-spacing:-0.840000px;}
.ls11{letter-spacing:-0.690000px;}
.ls20{letter-spacing:-0.621000px;}
.ls18{letter-spacing:-0.552000px;}
.ls14{letter-spacing:-0.345000px;}
.ls17{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.138000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.586500px;}
.ls1c{letter-spacing:0.690000px;}
.lsc{letter-spacing:1.050000px;}
.ls5{letter-spacing:1.104000px;}
.ls3{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.344000px;}
.ls15{letter-spacing:1.350000px;}
.lse{letter-spacing:1.380000px;}
.ls1f{letter-spacing:1.449000px;}
.ls12{letter-spacing:1.587000px;}
.lsa{letter-spacing:2.322000px;}
.lsb{letter-spacing:2.400000px;}
.ls1b{letter-spacing:2.711700px;}
.ls2{letter-spacing:6.000000px;}
.ls19{letter-spacing:12.144000px;}
.ls8{letter-spacing:465.262800px;}
.ls1a{letter-spacing:465.450600px;}
.ls1e{letter-spacing:936.348000px;}
.ls16{letter-spacing:943.518000px;}
.ls0{letter-spacing:955.644000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-55.978066px;}
.ws8{word-spacing:-22.125000px;}
.wsa{word-spacing:-20.769000px;}
.ws1{word-spacing:-15.801000px;}
.ws18{word-spacing:-13.980000px;}
.ws9{word-spacing:-13.146000px;}
.ws15{word-spacing:-12.144000px;}
.ws3{word-spacing:-6.000000px;}
.wsb{word-spacing:-2.400000px;}
.wsf{word-spacing:-1.587000px;}
.ws12{word-spacing:-1.350000px;}
.ws4{word-spacing:-1.260000px;}
.ws6{word-spacing:-1.104000px;}
.ws16{word-spacing:-0.690000px;}
.ws2{word-spacing:0.000000px;}
.ws17{word-spacing:0.138000px;}
.ws13{word-spacing:0.240000px;}
.ws11{word-spacing:0.345000px;}
.ws14{word-spacing:0.552000px;}
.ws19{word-spacing:0.621000px;}
.wse{word-spacing:0.690000px;}
.ws5{word-spacing:1.188000px;}
.ws7{word-spacing:1.311000px;}
.ws10{word-spacing:1.380000px;}
.wsd{word-spacing:1.518000px;}
.wsc{word-spacing:2.139000px;}
._11{margin-left:-15.824400px;}
._13{margin-left:-13.645500px;}
._15{margin-left:-12.415500px;}
._12{margin-left:-11.378100px;}
._14{margin-left:-10.329600px;}
._a{margin-left:-7.573200px;}
._d{margin-left:-5.716200px;}
._9{margin-left:-4.478700px;}
._7{margin-left:-2.575800px;}
._6{margin-left:-1.172100px;}
._2{width:1.398900px;}
._1{width:2.400000px;}
._8{width:3.752700px;}
._c{width:4.811400px;}
._3{width:5.979300px;}
._4{width:7.283400px;}
._5{width:8.562600px;}
._b{width:9.927300px;}
._f{width:11.181000px;}
._e{width:12.631200px;}
._16{width:14.974500px;}
._10{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.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;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y6c{bottom:106.165500px;}
.y45{bottom:106.275000px;}
.y1c{bottom:106.374750px;}
.y44{bottom:123.528000px;}
.y6b{bottom:126.589500px;}
.y1b{bottom:126.850500px;}
.y43{bottom:140.781000px;}
.y6a{bottom:147.013500px;}
.y1a{bottom:147.326250px;}
.y42{bottom:158.034000px;}
.y69{bottom:167.437500px;}
.y19{bottom:167.802000px;}
.y41{bottom:175.287000px;}
.y68{bottom:187.861500px;}
.y18{bottom:188.277750px;}
.y40{bottom:192.540000px;}
.y67{bottom:208.285500px;}
.y17{bottom:208.753500px;}
.y3f{bottom:209.793000px;}
.y3e{bottom:227.046000px;}
.y66{bottom:228.709500px;}
.y16{bottom:229.229250px;}
.y3d{bottom:247.294500px;}
.y65{bottom:249.133500px;}
.y15{bottom:249.705000px;}
.y64{bottom:269.557500px;}
.y14{bottom:270.180750px;}
.y63{bottom:289.981500px;}
.y13{bottom:290.656500px;}
.y12{bottom:290.658000px;}
.y3c{bottom:291.519000px;}
.y62{bottom:310.405500px;}
.y3b{bottom:311.891250px;}
.y61{bottom:330.829500px;}
.y3a{bottom:332.263500px;}
.y60{bottom:351.253500px;}
.y39{bottom:352.635750px;}
.y11{bottom:361.149000px;}
.y5f{bottom:371.677500px;}
.y38{bottom:373.008000px;}
.y10{bottom:382.389000px;}
.y5e{bottom:392.101500px;}
.y37{bottom:393.380250px;}
.y5d{bottom:412.525500px;}
.y36{bottom:413.752500px;}
.y5c{bottom:432.949500px;}
.yf{bottom:433.414500px;}
.y35{bottom:434.124750px;}
.y5b{bottom:453.373500px;}
.y34{bottom:454.497000px;}
.ye{bottom:465.145500px;}
.y5a{bottom:473.797500px;}
.y33{bottom:474.869250px;}
.y59{bottom:494.221500px;}
.y32{bottom:495.241500px;}
.yd{bottom:496.876500px;}
.y58{bottom:514.645500px;}
.y31{bottom:515.613750px;}
.yc{bottom:528.607500px;}
.y57{bottom:535.069500px;}
.y30{bottom:535.986000px;}
.y7c{bottom:544.692000px;}
.y56{bottom:555.493500px;}
.y2f{bottom:556.358250px;}
.yb{bottom:560.338500px;}
.y7b{bottom:564.942000px;}
.y55{bottom:575.917500px;}
.y2e{bottom:576.730500px;}
.y7a{bottom:585.192000px;}
.ya{bottom:592.069500px;}
.y54{bottom:596.341500px;}
.y2d{bottom:597.102750px;}
.y79{bottom:605.442000px;}
.y53{bottom:616.765500px;}
.y2c{bottom:617.475000px;}
.y52{bottom:637.189500px;}
.y2b{bottom:637.847250px;}
.y78{bottom:638.442000px;}
.y9{bottom:653.557500px;}
.y51{bottom:657.613500px;}
.y2a{bottom:658.219500px;}
.y50{bottom:678.037500px;}
.y29{bottom:678.591750px;}
.y77{bottom:679.935000px;}
.y8{bottom:685.300500px;}
.y4f{bottom:698.461500px;}
.y28{bottom:698.964000px;}
.y76{bottom:700.186500px;}
.y7{bottom:717.025500px;}
.y4e{bottom:718.885500px;}
.y27{bottom:719.336250px;}
.y75{bottom:720.438000px;}
.y4d{bottom:739.309500px;}
.y26{bottom:739.708500px;}
.y74{bottom:740.689500px;}
.y4c{bottom:759.733500px;}
.y25{bottom:760.080750px;}
.y73{bottom:760.941000px;}
.y4b{bottom:780.157500px;}
.y24{bottom:780.453000px;}
.y72{bottom:781.192500px;}
.y4a{bottom:800.581500px;}
.y23{bottom:800.825250px;}
.y71{bottom:801.444000px;}
.y6{bottom:810.240000px;}
.y49{bottom:821.005500px;}
.y22{bottom:821.197500px;}
.y70{bottom:821.695500px;}
.y5{bottom:831.480000px;}
.y48{bottom:841.429500px;}
.y21{bottom:841.569750px;}
.y6f{bottom:841.947000px;}
.y4{bottom:852.720000px;}
.y47{bottom:861.853500px;}
.y20{bottom:861.957000px;}
.y6e{bottom:862.198500px;}
.y46{bottom:882.277500px;}
.y1f{bottom:882.329250px;}
.y6d{bottom:882.450000px;}
.y3{bottom:882.465000px;}
.y1e{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y1d{bottom:948.189000px;}
.hb{height:34.872492px;}
.ha{height:41.648438px;}
.hc{height:46.854492px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.h8{height:59.869629px;}
.hd{height:60.512695px;}
.h2{height:65.075684px;}
.he{height:67.236328px;}
.hf{height:67.719727px;}
.h6{height:72.884766px;}
.h9{height:77.321777px;}
.h5{height:93.708984px;}
.h7{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.938050px;}
.x4{left:83.288400px;}
.x1{left:85.039350px;}
.x6{left:105.051750px;}
.x7{left:106.565700px;}
.x5{left:115.174350px;}
.x3{left:232.218000px;}
.x2{left:233.415000px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.040000pt;}
.v1{vertical-align:72.000000pt;}
.lsf{letter-spacing:-1.901333pt;}
.ls10{letter-spacing:-1.349333pt;}
.ls13{letter-spacing:-1.226667pt;}
.ls7{letter-spacing:-1.165333pt;}
.ls6{letter-spacing:-1.104000pt;}
.ls4{letter-spacing:-1.056000pt;}
.ls21{letter-spacing:-0.746667pt;}
.ls11{letter-spacing:-0.613333pt;}
.ls20{letter-spacing:-0.552000pt;}
.ls18{letter-spacing:-0.490667pt;}
.ls14{letter-spacing:-0.306667pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.122667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.521333pt;}
.ls1c{letter-spacing:0.613333pt;}
.lsc{letter-spacing:0.933333pt;}
.ls5{letter-spacing:0.981333pt;}
.ls3{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.194667pt;}
.ls15{letter-spacing:1.200000pt;}
.lse{letter-spacing:1.226667pt;}
.ls1f{letter-spacing:1.288000pt;}
.ls12{letter-spacing:1.410667pt;}
.lsa{letter-spacing:2.064000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls1b{letter-spacing:2.410400pt;}
.ls2{letter-spacing:5.333333pt;}
.ls19{letter-spacing:10.794667pt;}
.ls8{letter-spacing:413.566933pt;}
.ls1a{letter-spacing:413.733867pt;}
.ls1e{letter-spacing:832.309333pt;}
.ls16{letter-spacing:838.682667pt;}
.ls0{letter-spacing:849.461333pt;}
.ws0{word-spacing:-49.758281pt;}
.ws8{word-spacing:-19.666667pt;}
.wsa{word-spacing:-18.461333pt;}
.ws1{word-spacing:-14.045333pt;}
.ws18{word-spacing:-12.426667pt;}
.ws9{word-spacing:-11.685333pt;}
.ws15{word-spacing:-10.794667pt;}
.ws3{word-spacing:-5.333333pt;}
.wsb{word-spacing:-2.133333pt;}
.wsf{word-spacing:-1.410667pt;}
.ws12{word-spacing:-1.200000pt;}
.ws4{word-spacing:-1.120000pt;}
.ws6{word-spacing:-0.981333pt;}
.ws16{word-spacing:-0.613333pt;}
.ws2{word-spacing:0.000000pt;}
.ws17{word-spacing:0.122667pt;}
.ws13{word-spacing:0.213333pt;}
.ws11{word-spacing:0.306667pt;}
.ws14{word-spacing:0.490667pt;}
.ws19{word-spacing:0.552000pt;}
.wse{word-spacing:0.613333pt;}
.ws5{word-spacing:1.056000pt;}
.ws7{word-spacing:1.165333pt;}
.ws10{word-spacing:1.226667pt;}
.wsd{word-spacing:1.349333pt;}
.wsc{word-spacing:1.901333pt;}
._11{margin-left:-14.066133pt;}
._13{margin-left:-12.129333pt;}
._15{margin-left:-11.036000pt;}
._12{margin-left:-10.113867pt;}
._14{margin-left:-9.181867pt;}
._a{margin-left:-6.731733pt;}
._d{margin-left:-5.081067pt;}
._9{margin-left:-3.981067pt;}
._7{margin-left:-2.289600pt;}
._6{margin-left:-1.041867pt;}
._2{width:1.243467pt;}
._1{width:2.133333pt;}
._8{width:3.335733pt;}
._c{width:4.276800pt;}
._3{width:5.314933pt;}
._4{width:6.474133pt;}
._5{width:7.611200pt;}
._b{width:8.824267pt;}
._f{width:9.938667pt;}
._e{width:11.227733pt;}
._16{width:13.310667pt;}
._10{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;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y6c{bottom:94.369333pt;}
.y45{bottom:94.466667pt;}
.y1c{bottom:94.555333pt;}
.y44{bottom:109.802667pt;}
.y6b{bottom:112.524000pt;}
.y1b{bottom:112.756000pt;}
.y43{bottom:125.138667pt;}
.y6a{bottom:130.678667pt;}
.y1a{bottom:130.956667pt;}
.y42{bottom:140.474667pt;}
.y69{bottom:148.833333pt;}
.y19{bottom:149.157333pt;}
.y41{bottom:155.810667pt;}
.y68{bottom:166.988000pt;}
.y18{bottom:167.358000pt;}
.y40{bottom:171.146667pt;}
.y67{bottom:185.142667pt;}
.y17{bottom:185.558667pt;}
.y3f{bottom:186.482667pt;}
.y3e{bottom:201.818667pt;}
.y66{bottom:203.297333pt;}
.y16{bottom:203.759333pt;}
.y3d{bottom:219.817333pt;}
.y65{bottom:221.452000pt;}
.y15{bottom:221.960000pt;}
.y64{bottom:239.606667pt;}
.y14{bottom:240.160667pt;}
.y63{bottom:257.761333pt;}
.y13{bottom:258.361333pt;}
.y12{bottom:258.362667pt;}
.y3c{bottom:259.128000pt;}
.y62{bottom:275.916000pt;}
.y3b{bottom:277.236667pt;}
.y61{bottom:294.070667pt;}
.y3a{bottom:295.345333pt;}
.y60{bottom:312.225333pt;}
.y39{bottom:313.454000pt;}
.y11{bottom:321.021333pt;}
.y5f{bottom:330.380000pt;}
.y38{bottom:331.562667pt;}
.y10{bottom:339.901333pt;}
.y5e{bottom:348.534667pt;}
.y37{bottom:349.671333pt;}
.y5d{bottom:366.689333pt;}
.y36{bottom:367.780000pt;}
.y5c{bottom:384.844000pt;}
.yf{bottom:385.257333pt;}
.y35{bottom:385.888667pt;}
.y5b{bottom:402.998667pt;}
.y34{bottom:403.997333pt;}
.ye{bottom:413.462667pt;}
.y5a{bottom:421.153333pt;}
.y33{bottom:422.106000pt;}
.y59{bottom:439.308000pt;}
.y32{bottom:440.214667pt;}
.yd{bottom:441.668000pt;}
.y58{bottom:457.462667pt;}
.y31{bottom:458.323333pt;}
.yc{bottom:469.873333pt;}
.y57{bottom:475.617333pt;}
.y30{bottom:476.432000pt;}
.y7c{bottom:484.170667pt;}
.y56{bottom:493.772000pt;}
.y2f{bottom:494.540667pt;}
.yb{bottom:498.078667pt;}
.y7b{bottom:502.170667pt;}
.y55{bottom:511.926667pt;}
.y2e{bottom:512.649333pt;}
.y7a{bottom:520.170667pt;}
.ya{bottom:526.284000pt;}
.y54{bottom:530.081333pt;}
.y2d{bottom:530.758000pt;}
.y79{bottom:538.170667pt;}
.y53{bottom:548.236000pt;}
.y2c{bottom:548.866667pt;}
.y52{bottom:566.390667pt;}
.y2b{bottom:566.975333pt;}
.y78{bottom:567.504000pt;}
.y9{bottom:580.940000pt;}
.y51{bottom:584.545333pt;}
.y2a{bottom:585.084000pt;}
.y50{bottom:602.700000pt;}
.y29{bottom:603.192667pt;}
.y77{bottom:604.386667pt;}
.y8{bottom:609.156000pt;}
.y4f{bottom:620.854667pt;}
.y28{bottom:621.301333pt;}
.y76{bottom:622.388000pt;}
.y7{bottom:637.356000pt;}
.y4e{bottom:639.009333pt;}
.y27{bottom:639.410000pt;}
.y75{bottom:640.389333pt;}
.y4d{bottom:657.164000pt;}
.y26{bottom:657.518667pt;}
.y74{bottom:658.390667pt;}
.y4c{bottom:675.318667pt;}
.y25{bottom:675.627333pt;}
.y73{bottom:676.392000pt;}
.y4b{bottom:693.473333pt;}
.y24{bottom:693.736000pt;}
.y72{bottom:694.393333pt;}
.y4a{bottom:711.628000pt;}
.y23{bottom:711.844667pt;}
.y71{bottom:712.394667pt;}
.y6{bottom:720.213333pt;}
.y49{bottom:729.782667pt;}
.y22{bottom:729.953333pt;}
.y70{bottom:730.396000pt;}
.y5{bottom:739.093333pt;}
.y48{bottom:747.937333pt;}
.y21{bottom:748.062000pt;}
.y6f{bottom:748.397333pt;}
.y4{bottom:757.973333pt;}
.y47{bottom:766.092000pt;}
.y20{bottom:766.184000pt;}
.y6e{bottom:766.398667pt;}
.y46{bottom:784.246667pt;}
.y1f{bottom:784.292667pt;}
.y6d{bottom:784.400000pt;}
.y3{bottom:784.413333pt;}
.y1e{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y1d{bottom:842.834667pt;}
.hb{height:30.997771pt;}
.ha{height:37.020833pt;}
.hc{height:41.648438pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.h8{height:53.217448pt;}
.hd{height:53.789062pt;}
.h2{height:57.845052pt;}
.he{height:59.765625pt;}
.hf{height:60.195312pt;}
.h6{height:64.786458pt;}
.h9{height:68.730469pt;}
.h5{height:83.296875pt;}
.h7{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.944933pt;}
.x4{left:74.034133pt;}
.x1{left:75.590533pt;}
.x6{left:93.379333pt;}
.x7{left:94.725067pt;}
.x5{left:102.377200pt;}
.x3{left:206.416000pt;}
.x2{left:207.480000pt;}
}




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