
    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_f9fa97c5d3a6c71c4fb25383.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184570;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_46000f6f7817cf1b1ae7eb8b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_7379d95823c7edb2a17a854f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_26b26a4f5197ae1f67e0bf03.woff')format("woff");}.ff4{font-family:ff4;line-height:0.913086;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_8c354d1c680866dda7b542ba.woff')format("woff");}.ff5{font-family:ff5;line-height:1.184570;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_3709c15524796249d302d5b9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.050781;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:81.000000px;}
.ls5{letter-spacing:-10.368000px;}
.ls26{letter-spacing:-4.002000px;}
.ls24{letter-spacing:-3.381000px;}
.ls1c{letter-spacing:-2.415000px;}
.lsf{letter-spacing:-2.208000px;}
.ls1f{letter-spacing:-1.794000px;}
.ls28{letter-spacing:-1.656000px;}
.ls20{letter-spacing:-1.587000px;}
.ls1e{letter-spacing:-1.518000px;}
.ls10{letter-spacing:-1.449000px;}
.lse{letter-spacing:-1.380000px;}
.ls18{letter-spacing:-1.311000px;}
.lsd{letter-spacing:-1.242000px;}
.ls29{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.104000px;}
.ls23{letter-spacing:-1.035000px;}
.ls22{letter-spacing:-0.966000px;}
.ls14{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.897000px;}
.lsc{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.759000px;}
.ls1b{letter-spacing:-0.690000px;}
.lsb{letter-spacing:-0.621000px;}
.ls1a{letter-spacing:-0.552000px;}
.ls17{letter-spacing:-0.483000px;}
.ls19{letter-spacing:-0.345000px;}
.ls4{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.207000px;}
.ls8{letter-spacing:-0.138000px;}
.ls2{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.069000px;}
.ls1{letter-spacing:0.759000px;}
.ls11{letter-spacing:1.104000px;}
.ls16{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.587000px;}
.ls13{letter-spacing:2.400000px;}
.ls3{letter-spacing:5.940000px;}
.ls15{letter-spacing:6.000000px;}
.ls12{letter-spacing:468.041400px;}
.ls27{letter-spacing:468.566400px;}
.ls0{letter-spacing:1011.498000px;}
.ls1d{letter-spacing:1013.046000px;}
.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:-55.978066px;}
.ws15{word-spacing:-20.175000px;}
.ws0{word-spacing:-19.980000px;}
.ws6{word-spacing:-19.389000px;}
.ws17{word-spacing:-19.044000px;}
.ws7{word-spacing:-17.043000px;}
.ws21{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.353000px;}
.ws2{word-spacing:-16.284000px;}
.ws3{word-spacing:-16.215000px;}
.ws23{word-spacing:-16.077000px;}
.ws4{word-spacing:-15.801000px;}
.ws5{word-spacing:-15.663000px;}
.ws9{word-spacing:-15.594000px;}
.ws22{word-spacing:-15.525000px;}
.ws2f{word-spacing:-15.456000px;}
.ws8{word-spacing:-14.835000px;}
.ws30{word-spacing:-13.620000px;}
.ws16{word-spacing:-13.062000px;}
.ws1a{word-spacing:-6.000000px;}
.wsb{word-spacing:-5.940000px;}
.ws19{word-spacing:-2.400000px;}
.ws27{word-spacing:-1.587000px;}
.ws14{word-spacing:-1.104000px;}
.ws1c{word-spacing:-0.759000px;}
.ws2a{word-spacing:-0.414000px;}
.ws2d{word-spacing:-0.069000px;}
.wsa{word-spacing:0.000000px;}
.wsf{word-spacing:0.138000px;}
.ws10{word-spacing:0.207000px;}
.wsc{word-spacing:0.300000px;}
.ws2c{word-spacing:0.345000px;}
.ws1b{word-spacing:0.483000px;}
.ws1e{word-spacing:0.552000px;}
.ws11{word-spacing:0.621000px;}
.ws31{word-spacing:0.690000px;}
.ws12{word-spacing:0.759000px;}
.ws13{word-spacing:0.828000px;}
.wse{word-spacing:0.897000px;}
.ws28{word-spacing:0.966000px;}
.ws29{word-spacing:1.035000px;}
.wsd{word-spacing:1.104000px;}
.ws1d{word-spacing:1.311000px;}
.ws33{word-spacing:1.449000px;}
.ws24{word-spacing:1.518000px;}
.ws26{word-spacing:1.587000px;}
.ws32{word-spacing:1.656000px;}
.ws25{word-spacing:1.794000px;}
.ws1f{word-spacing:2.346000px;}
.ws20{word-spacing:2.415000px;}
.ws2b{word-spacing:3.381000px;}
.ws2e{word-spacing:4.002000px;}
._5{margin-left:-5.922600px;}
._c{margin-left:-4.672109px;}
._9{margin-left:-3.040200px;}
._1{margin-left:-2.010000px;}
._d{margin-left:-1.000500px;}
._a{width:1.016400px;}
._3{width:2.022300px;}
._8{width:3.294000px;}
._f{width:4.797600px;}
._4{width:5.848500px;}
._6{width:7.491000px;}
._7{width:8.661000px;}
._e{width:9.795300px;}
._b{width:10.877100px;}
._10{width:12.157919px;}
._2{width:13.170000px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y74{bottom:106.165500px;}
.y4c{bottom:106.269000px;}
.y24{bottom:106.406250px;}
.y73{bottom:126.589500px;}
.y23{bottom:126.744000px;}
.y4b{bottom:127.227750px;}
.y72{bottom:147.013500px;}
.y22{bottom:147.081750px;}
.y4a{bottom:148.186500px;}
.y21{bottom:167.419500px;}
.y71{bottom:167.437500px;}
.y49{bottom:169.145250px;}
.y20{bottom:187.757250px;}
.y70{bottom:187.861500px;}
.y48{bottom:190.104000px;}
.y1f{bottom:208.095000px;}
.y6f{bottom:208.285500px;}
.y47{bottom:211.062750px;}
.y1e{bottom:228.432750px;}
.y6e{bottom:228.709500px;}
.y46{bottom:232.021500px;}
.y1d{bottom:248.770500px;}
.y6d{bottom:249.133500px;}
.y45{bottom:252.980250px;}
.y1c{bottom:269.108250px;}
.y6c{bottom:269.557500px;}
.y44{bottom:273.939000px;}
.y1b{bottom:289.446000px;}
.y6b{bottom:289.981500px;}
.y43{bottom:294.897750px;}
.y1a{bottom:309.783750px;}
.y6a{bottom:310.405500px;}
.y42{bottom:315.856500px;}
.y19{bottom:330.121500px;}
.y69{bottom:330.829500px;}
.y41{bottom:336.815250px;}
.y18{bottom:350.459250px;}
.y68{bottom:351.253500px;}
.y40{bottom:357.774000px;}
.y17{bottom:370.797000px;}
.y67{bottom:371.677500px;}
.y3f{bottom:378.732750px;}
.y16{bottom:391.134750px;}
.y66{bottom:392.101500px;}
.y3e{bottom:399.691500px;}
.y15{bottom:411.472500px;}
.y65{bottom:412.525500px;}
.y3d{bottom:420.650250px;}
.y14{bottom:431.810250px;}
.y64{bottom:432.949500px;}
.y3c{bottom:441.609000px;}
.y13{bottom:452.148000px;}
.y63{bottom:453.373500px;}
.y3b{bottom:462.567750px;}
.y12{bottom:472.485750px;}
.y62{bottom:473.797500px;}
.y3a{bottom:483.526500px;}
.y87{bottom:483.942000px;}
.y11{bottom:492.823500px;}
.y61{bottom:494.221500px;}
.y86{bottom:504.192000px;}
.y39{bottom:504.485250px;}
.y10{bottom:513.161250px;}
.y60{bottom:514.645500px;}
.y85{bottom:524.442000px;}
.y38{bottom:525.444000px;}
.yf{bottom:533.499000px;}
.y5f{bottom:535.069500px;}
.y37{bottom:546.402750px;}
.ye{bottom:553.836750px;}
.y5e{bottom:555.493500px;}
.y84{bottom:557.442000px;}
.y36{bottom:567.361500px;}
.yd{bottom:574.174500px;}
.y5d{bottom:575.917500px;}
.y35{bottom:588.320250px;}
.yc{bottom:594.512250px;}
.y5c{bottom:596.341500px;}
.y83{bottom:598.929000px;}
.y34{bottom:609.279000px;}
.yb{bottom:614.850000px;}
.ya{bottom:614.851500px;}
.y5b{bottom:616.765500px;}
.y82{bottom:619.180500px;}
.y33{bottom:630.237750px;}
.y5a{bottom:637.189500px;}
.y81{bottom:639.432000px;}
.y32{bottom:651.196500px;}
.y59{bottom:657.613500px;}
.y80{bottom:659.683500px;}
.y31{bottom:672.155250px;}
.y9{bottom:675.793500px;}
.y58{bottom:678.037500px;}
.y7f{bottom:679.935000px;}
.y30{bottom:693.114000px;}
.y57{bottom:698.461500px;}
.y7e{bottom:700.186500px;}
.y8{bottom:707.383500px;}
.y2f{bottom:714.072750px;}
.y56{bottom:718.885500px;}
.y7d{bottom:720.438000px;}
.y2e{bottom:735.031500px;}
.y7{bottom:738.973500px;}
.y55{bottom:739.309500px;}
.y7c{bottom:740.689500px;}
.y2d{bottom:755.990250px;}
.y54{bottom:759.733500px;}
.y7b{bottom:760.941000px;}
.y6{bottom:770.563500px;}
.y2c{bottom:776.949000px;}
.y53{bottom:780.157500px;}
.y7a{bottom:781.192500px;}
.y2b{bottom:797.907750px;}
.y52{bottom:800.581500px;}
.y79{bottom:801.444000px;}
.y2a{bottom:818.866500px;}
.y51{bottom:821.005500px;}
.y78{bottom:821.695500px;}
.y5{bottom:831.921000px;}
.y29{bottom:839.825250px;}
.y50{bottom:841.429500px;}
.y77{bottom:841.947000px;}
.y4{bottom:853.011000px;}
.y28{bottom:860.784000px;}
.y4f{bottom:861.853500px;}
.y76{bottom:862.198500px;}
.y27{bottom:881.742750px;}
.y4e{bottom:882.277500px;}
.y75{bottom:882.450000px;}
.y3{bottom:882.606000px;}
.y26{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y25{bottom:948.189000px;}
.y4d{bottom:966.189000px;}
.h8{height:45.679688px;}
.h9{height:50.947266px;}
.h4{height:57.099609px;}
.h3{height:59.954590px;}
.h7{height:65.664551px;}
.h2{height:71.374512px;}
.h5{height:102.779297px;}
.h6{height:162.928264px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:81.488700px;}
.x6{left:83.650800px;}
.x1{left:85.039350px;}
.x8{left:104.092050px;}
.x7{left:105.679050px;}
.x5{left:115.563300px;}
.x3{left:230.595000px;}
.x2{left:233.113500px;}
.x9{left:234.205500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.ls5{letter-spacing:-9.216000pt;}
.ls26{letter-spacing:-3.557333pt;}
.ls24{letter-spacing:-3.005333pt;}
.ls1c{letter-spacing:-2.146667pt;}
.lsf{letter-spacing:-1.962667pt;}
.ls1f{letter-spacing:-1.594667pt;}
.ls28{letter-spacing:-1.472000pt;}
.ls20{letter-spacing:-1.410667pt;}
.ls1e{letter-spacing:-1.349333pt;}
.ls10{letter-spacing:-1.288000pt;}
.lse{letter-spacing:-1.226667pt;}
.ls18{letter-spacing:-1.165333pt;}
.lsd{letter-spacing:-1.104000pt;}
.ls29{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.981333pt;}
.ls23{letter-spacing:-0.920000pt;}
.ls22{letter-spacing:-0.858667pt;}
.ls14{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.797333pt;}
.lsc{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.674667pt;}
.ls1b{letter-spacing:-0.613333pt;}
.lsb{letter-spacing:-0.552000pt;}
.ls1a{letter-spacing:-0.490667pt;}
.ls17{letter-spacing:-0.429333pt;}
.ls19{letter-spacing:-0.306667pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.184000pt;}
.ls8{letter-spacing:-0.122667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.061333pt;}
.ls1{letter-spacing:0.674667pt;}
.ls11{letter-spacing:0.981333pt;}
.ls16{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.410667pt;}
.ls13{letter-spacing:2.133333pt;}
.ls3{letter-spacing:5.280000pt;}
.ls15{letter-spacing:5.333333pt;}
.ls12{letter-spacing:416.036800pt;}
.ls27{letter-spacing:416.503467pt;}
.ls0{letter-spacing:899.109333pt;}
.ls1d{letter-spacing:900.485333pt;}
.ws1{word-spacing:-49.758281pt;}
.ws15{word-spacing:-17.933333pt;}
.ws0{word-spacing:-17.760000pt;}
.ws6{word-spacing:-17.234667pt;}
.ws17{word-spacing:-16.928000pt;}
.ws7{word-spacing:-15.149333pt;}
.ws21{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.536000pt;}
.ws2{word-spacing:-14.474667pt;}
.ws3{word-spacing:-14.413333pt;}
.ws23{word-spacing:-14.290667pt;}
.ws4{word-spacing:-14.045333pt;}
.ws5{word-spacing:-13.922667pt;}
.ws9{word-spacing:-13.861333pt;}
.ws22{word-spacing:-13.800000pt;}
.ws2f{word-spacing:-13.738667pt;}
.ws8{word-spacing:-13.186667pt;}
.ws30{word-spacing:-12.106667pt;}
.ws16{word-spacing:-11.610667pt;}
.ws1a{word-spacing:-5.333333pt;}
.wsb{word-spacing:-5.280000pt;}
.ws19{word-spacing:-2.133333pt;}
.ws27{word-spacing:-1.410667pt;}
.ws14{word-spacing:-0.981333pt;}
.ws1c{word-spacing:-0.674667pt;}
.ws2a{word-spacing:-0.368000pt;}
.ws2d{word-spacing:-0.061333pt;}
.wsa{word-spacing:0.000000pt;}
.wsf{word-spacing:0.122667pt;}
.ws10{word-spacing:0.184000pt;}
.wsc{word-spacing:0.266667pt;}
.ws2c{word-spacing:0.306667pt;}
.ws1b{word-spacing:0.429333pt;}
.ws1e{word-spacing:0.490667pt;}
.ws11{word-spacing:0.552000pt;}
.ws31{word-spacing:0.613333pt;}
.ws12{word-spacing:0.674667pt;}
.ws13{word-spacing:0.736000pt;}
.wse{word-spacing:0.797333pt;}
.ws28{word-spacing:0.858667pt;}
.ws29{word-spacing:0.920000pt;}
.wsd{word-spacing:0.981333pt;}
.ws1d{word-spacing:1.165333pt;}
.ws33{word-spacing:1.288000pt;}
.ws24{word-spacing:1.349333pt;}
.ws26{word-spacing:1.410667pt;}
.ws32{word-spacing:1.472000pt;}
.ws25{word-spacing:1.594667pt;}
.ws1f{word-spacing:2.085333pt;}
.ws20{word-spacing:2.146667pt;}
.ws2b{word-spacing:3.005333pt;}
.ws2e{word-spacing:3.557333pt;}
._5{margin-left:-5.264533pt;}
._c{margin-left:-4.152986pt;}
._9{margin-left:-2.702400pt;}
._1{margin-left:-1.786667pt;}
._d{margin-left:-0.889333pt;}
._a{width:0.903467pt;}
._3{width:1.797600pt;}
._8{width:2.928000pt;}
._f{width:4.264533pt;}
._4{width:5.198667pt;}
._6{width:6.658667pt;}
._7{width:7.698667pt;}
._e{width:8.706933pt;}
._b{width:9.668533pt;}
._10{width:10.807039pt;}
._2{width:11.706667pt;}
._0{width:514.133333pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y74{bottom:94.369333pt;}
.y4c{bottom:94.461333pt;}
.y24{bottom:94.583333pt;}
.y73{bottom:112.524000pt;}
.y23{bottom:112.661333pt;}
.y4b{bottom:113.091333pt;}
.y72{bottom:130.678667pt;}
.y22{bottom:130.739333pt;}
.y4a{bottom:131.721333pt;}
.y21{bottom:148.817333pt;}
.y71{bottom:148.833333pt;}
.y49{bottom:150.351333pt;}
.y20{bottom:166.895333pt;}
.y70{bottom:166.988000pt;}
.y48{bottom:168.981333pt;}
.y1f{bottom:184.973333pt;}
.y6f{bottom:185.142667pt;}
.y47{bottom:187.611333pt;}
.y1e{bottom:203.051333pt;}
.y6e{bottom:203.297333pt;}
.y46{bottom:206.241333pt;}
.y1d{bottom:221.129333pt;}
.y6d{bottom:221.452000pt;}
.y45{bottom:224.871333pt;}
.y1c{bottom:239.207333pt;}
.y6c{bottom:239.606667pt;}
.y44{bottom:243.501333pt;}
.y1b{bottom:257.285333pt;}
.y6b{bottom:257.761333pt;}
.y43{bottom:262.131333pt;}
.y1a{bottom:275.363333pt;}
.y6a{bottom:275.916000pt;}
.y42{bottom:280.761333pt;}
.y19{bottom:293.441333pt;}
.y69{bottom:294.070667pt;}
.y41{bottom:299.391333pt;}
.y18{bottom:311.519333pt;}
.y68{bottom:312.225333pt;}
.y40{bottom:318.021333pt;}
.y17{bottom:329.597333pt;}
.y67{bottom:330.380000pt;}
.y3f{bottom:336.651333pt;}
.y16{bottom:347.675333pt;}
.y66{bottom:348.534667pt;}
.y3e{bottom:355.281333pt;}
.y15{bottom:365.753333pt;}
.y65{bottom:366.689333pt;}
.y3d{bottom:373.911333pt;}
.y14{bottom:383.831333pt;}
.y64{bottom:384.844000pt;}
.y3c{bottom:392.541333pt;}
.y13{bottom:401.909333pt;}
.y63{bottom:402.998667pt;}
.y3b{bottom:411.171333pt;}
.y12{bottom:419.987333pt;}
.y62{bottom:421.153333pt;}
.y3a{bottom:429.801333pt;}
.y87{bottom:430.170667pt;}
.y11{bottom:438.065333pt;}
.y61{bottom:439.308000pt;}
.y86{bottom:448.170667pt;}
.y39{bottom:448.431333pt;}
.y10{bottom:456.143333pt;}
.y60{bottom:457.462667pt;}
.y85{bottom:466.170667pt;}
.y38{bottom:467.061333pt;}
.yf{bottom:474.221333pt;}
.y5f{bottom:475.617333pt;}
.y37{bottom:485.691333pt;}
.ye{bottom:492.299333pt;}
.y5e{bottom:493.772000pt;}
.y84{bottom:495.504000pt;}
.y36{bottom:504.321333pt;}
.yd{bottom:510.377333pt;}
.y5d{bottom:511.926667pt;}
.y35{bottom:522.951333pt;}
.yc{bottom:528.455333pt;}
.y5c{bottom:530.081333pt;}
.y83{bottom:532.381333pt;}
.y34{bottom:541.581333pt;}
.yb{bottom:546.533333pt;}
.ya{bottom:546.534667pt;}
.y5b{bottom:548.236000pt;}
.y82{bottom:550.382667pt;}
.y33{bottom:560.211333pt;}
.y5a{bottom:566.390667pt;}
.y81{bottom:568.384000pt;}
.y32{bottom:578.841333pt;}
.y59{bottom:584.545333pt;}
.y80{bottom:586.385333pt;}
.y31{bottom:597.471333pt;}
.y9{bottom:600.705333pt;}
.y58{bottom:602.700000pt;}
.y7f{bottom:604.386667pt;}
.y30{bottom:616.101333pt;}
.y57{bottom:620.854667pt;}
.y7e{bottom:622.388000pt;}
.y8{bottom:628.785333pt;}
.y2f{bottom:634.731333pt;}
.y56{bottom:639.009333pt;}
.y7d{bottom:640.389333pt;}
.y2e{bottom:653.361333pt;}
.y7{bottom:656.865333pt;}
.y55{bottom:657.164000pt;}
.y7c{bottom:658.390667pt;}
.y2d{bottom:671.991333pt;}
.y54{bottom:675.318667pt;}
.y7b{bottom:676.392000pt;}
.y6{bottom:684.945333pt;}
.y2c{bottom:690.621333pt;}
.y53{bottom:693.473333pt;}
.y7a{bottom:694.393333pt;}
.y2b{bottom:709.251333pt;}
.y52{bottom:711.628000pt;}
.y79{bottom:712.394667pt;}
.y2a{bottom:727.881333pt;}
.y51{bottom:729.782667pt;}
.y78{bottom:730.396000pt;}
.y5{bottom:739.485333pt;}
.y29{bottom:746.511333pt;}
.y50{bottom:747.937333pt;}
.y77{bottom:748.397333pt;}
.y4{bottom:758.232000pt;}
.y28{bottom:765.141333pt;}
.y4f{bottom:766.092000pt;}
.y76{bottom:766.398667pt;}
.y27{bottom:783.771333pt;}
.y4e{bottom:784.246667pt;}
.y75{bottom:784.400000pt;}
.y3{bottom:784.538667pt;}
.y26{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y25{bottom:842.834667pt;}
.y4d{bottom:858.834667pt;}
.h8{height:40.604167pt;}
.h9{height:45.286458pt;}
.h4{height:50.755208pt;}
.h3{height:53.292969pt;}
.h7{height:58.368490pt;}
.h2{height:63.444010pt;}
.h5{height:91.359375pt;}
.h6{height:144.825124pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:72.434400pt;}
.x6{left:74.356267pt;}
.x1{left:75.590533pt;}
.x8{left:92.526267pt;}
.x7{left:93.936933pt;}
.x5{left:102.722933pt;}
.x3{left:204.973333pt;}
.x2{left:207.212000pt;}
.x9{left:208.182667pt;}
}




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