
    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_7b332f9d89bea41dfd1c9d9f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_28b752bfcb6a4daa622d362e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_e403241022dc1aa5a84451e4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402832;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;}
.ls1c{letter-spacing:-4.968000px;}
.ls31{letter-spacing:-3.780000px;}
.ls22{letter-spacing:-3.174000px;}
.ls20{letter-spacing:-2.277000px;}
.ls2b{letter-spacing:-2.142000px;}
.ls29{letter-spacing:-2.025000px;}
.ls13{letter-spacing:-1.932000px;}
.ls1d{letter-spacing:-1.863000px;}
.ls9{letter-spacing:-1.794000px;}
.ls26{letter-spacing:-1.518000px;}
.ls7{letter-spacing:-1.380000px;}
.lsa{letter-spacing:-1.311000px;}
.ls33{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-1.173000px;}
.ls6{letter-spacing:-1.104000px;}
.ls16{letter-spacing:-0.966000px;}
.ls2e{letter-spacing:-0.945000px;}
.ls27{letter-spacing:-0.897000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.759000px;}
.lsd{letter-spacing:-0.750000px;}
.ls19{letter-spacing:-0.690000px;}
.ls32{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.621000px;}
.ls30{letter-spacing:-0.567000px;}
.ls1e{letter-spacing:-0.483000px;}
.ls4{letter-spacing:-0.480000px;}
.ls2d{letter-spacing:-0.378000px;}
.ls5{letter-spacing:-0.345000px;}
.ls2{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.138000px;}
.ls1{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.138000px;}
.ls1a{letter-spacing:0.552000px;}
.ls25{letter-spacing:0.759000px;}
.ls15{letter-spacing:0.966000px;}
.ls17{letter-spacing:1.104000px;}
.lsf{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.587000px;}
.lsc{letter-spacing:2.400000px;}
.ls12{letter-spacing:4.830000px;}
.ls2c{letter-spacing:5.859000px;}
.lse{letter-spacing:6.000000px;}
.ls2f{letter-spacing:6.300000px;}
.ls2a{letter-spacing:6.867000px;}
.ls3{letter-spacing:6.900000px;}
.ls1f{letter-spacing:467.099400px;}
.lsb{letter-spacing:468.899400px;}
.ls28{letter-spacing:469.949400px;}
.ls18{letter-spacing:936.351000px;}
.ls23{letter-spacing:945.501000px;}
.ls0{letter-spacing:959.692800px;}
.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;}
.ws2a{word-spacing:-24.570000px;}
.ws20{word-spacing:-21.075000px;}
.wsc{word-spacing:-20.325000px;}
.ws24{word-spacing:-20.148000px;}
.wsf{word-spacing:-19.389000px;}
.ws29{word-spacing:-19.050000px;}
.ws21{word-spacing:-16.215000px;}
.ws1{word-spacing:-15.939000px;}
.ws10{word-spacing:-15.870000px;}
.ws2{word-spacing:-15.663000px;}
.ws3{word-spacing:-15.249000px;}
.ws1a{word-spacing:-15.180000px;}
.wse{word-spacing:-15.111000px;}
.ws2b{word-spacing:-13.620000px;}
.wsd{word-spacing:-13.062000px;}
.ws6{word-spacing:-6.900000px;}
.ws30{word-spacing:-6.300000px;}
.ws12{word-spacing:-6.000000px;}
.ws2d{word-spacing:-5.859000px;}
.ws15{word-spacing:-4.830000px;}
.ws11{word-spacing:-2.400000px;}
.ws23{word-spacing:-1.587000px;}
.ws19{word-spacing:-1.104000px;}
.ws17{word-spacing:-0.966000px;}
.ws1c{word-spacing:-0.552000px;}
.ws25{word-spacing:-0.138000px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:0.138000px;}
.ws5{word-spacing:0.252000px;}
.ws8{word-spacing:0.345000px;}
.ws2e{word-spacing:0.378000px;}
.ws7{word-spacing:0.480000px;}
.ws1f{word-spacing:0.483000px;}
.ws31{word-spacing:0.567000px;}
.ws14{word-spacing:0.621000px;}
.ws33{word-spacing:0.660000px;}
.ws1b{word-spacing:0.690000px;}
.ws9{word-spacing:0.759000px;}
.ws1d{word-spacing:0.828000px;}
.ws28{word-spacing:0.897000px;}
.ws2f{word-spacing:0.945000px;}
.ws18{word-spacing:0.966000px;}
.wsa{word-spacing:1.311000px;}
.ws16{word-spacing:1.380000px;}
.ws27{word-spacing:1.518000px;}
.wsb{word-spacing:1.794000px;}
.ws26{word-spacing:1.932000px;}
.ws2c{word-spacing:2.142000px;}
.ws22{word-spacing:2.277000px;}
.ws32{word-spacing:3.780000px;}
.ws1e{word-spacing:4.968000px;}
._b{margin-left:-9.426300px;}
._7{margin-left:-6.846000px;}
._a{margin-left:-5.282100px;}
._5{margin-left:-3.474000px;}
._3{margin-left:-2.393700px;}
._4{margin-left:-1.332900px;}
._2{width:1.241100px;}
._1{width:2.400000px;}
._9{width:3.961200px;}
._6{width:5.036400px;}
._8{width:6.900000px;}
._12{width:7.929246px;}
._e{width:8.939454px;}
._c{width:10.277523px;}
._d{width:11.290500px;}
._f{width:12.360900px;}
._11{width:37.929000px;}
._10{width:39.737100px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.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;}
.y4a{bottom:51.309000px;}
.y1{bottom:51.310050px;}
.y48{bottom:106.165350px;}
.y70{bottom:106.268850px;}
.y1f{bottom:106.320900px;}
.y47{bottom:126.589350px;}
.y1e{bottom:127.210650px;}
.y6f{bottom:127.227600px;}
.y46{bottom:147.013350px;}
.y1d{bottom:148.100400px;}
.y6e{bottom:148.186350px;}
.y45{bottom:167.437350px;}
.y1c{bottom:168.990150px;}
.y6d{bottom:169.145100px;}
.y44{bottom:187.861350px;}
.y1b{bottom:189.879900px;}
.y6c{bottom:190.103850px;}
.y43{bottom:208.285350px;}
.y1a{bottom:210.769650px;}
.y6b{bottom:211.062600px;}
.y42{bottom:228.709350px;}
.y19{bottom:231.659400px;}
.y6a{bottom:232.021350px;}
.y41{bottom:249.133350px;}
.y18{bottom:252.549150px;}
.y69{bottom:252.980100px;}
.y40{bottom:269.557350px;}
.y17{bottom:273.438900px;}
.y68{bottom:273.938850px;}
.y3f{bottom:289.981350px;}
.y16{bottom:294.328650px;}
.y67{bottom:294.897600px;}
.y3e{bottom:310.405350px;}
.y15{bottom:315.218400px;}
.y66{bottom:315.856350px;}
.y3d{bottom:330.829350px;}
.y14{bottom:336.108150px;}
.y65{bottom:336.815100px;}
.y3c{bottom:351.253350px;}
.y13{bottom:356.997900px;}
.y64{bottom:357.773850px;}
.y3b{bottom:371.677350px;}
.y12{bottom:377.887650px;}
.y11{bottom:377.889150px;}
.y63{bottom:378.732600px;}
.y3a{bottom:392.101350px;}
.y62{bottom:399.691350px;}
.y83{bottom:407.665950px;}
.y39{bottom:412.525350px;}
.y61{bottom:420.650100px;}
.y82{bottom:427.915950px;}
.y38{bottom:432.949350px;}
.y60{bottom:441.608850px;}
.y81{bottom:448.165950px;}
.y37{bottom:453.373350px;}
.y5f{bottom:462.567600px;}
.y80{bottom:468.415950px;}
.y10{bottom:469.682550px;}
.y36{bottom:473.797350px;}
.y5e{bottom:483.526350px;}
.y7f{bottom:488.665950px;}
.yf{bottom:491.327550px;}
.y35{bottom:494.221350px;}
.y5d{bottom:504.485100px;}
.y34{bottom:514.645350px;}
.y7e{bottom:521.665950px;}
.y5c{bottom:525.443850px;}
.y33{bottom:535.069350px;}
.ye{bottom:542.779050px;}
.y5b{bottom:546.402600px;}
.y32{bottom:555.493350px;}
.y7d{bottom:563.141100px;}
.y5a{bottom:567.361350px;}
.yd{bottom:574.909050px;}
.y31{bottom:575.917350px;}
.y7c{bottom:583.395600px;}
.y59{bottom:588.320100px;}
.y30{bottom:596.341350px;}
.y7b{bottom:603.650100px;}
.yc{bottom:607.039050px;}
.y58{bottom:609.278850px;}
.y2f{bottom:616.765350px;}
.y57{bottom:630.237600px;}
.y7a{bottom:632.409600px;}
.y2e{bottom:637.189350px;}
.yb{bottom:639.169050px;}
.y56{bottom:651.196350px;}
.y79{bottom:652.664100px;}
.y2d{bottom:657.613350px;}
.ya{bottom:671.299050px;}
.y55{bottom:672.155100px;}
.y2c{bottom:678.037350px;}
.y78{bottom:681.423600px;}
.y54{bottom:693.113850px;}
.y2b{bottom:698.461350px;}
.y77{bottom:701.678100px;}
.y9{bottom:703.440450px;}
.y53{bottom:714.072600px;}
.y2a{bottom:718.885350px;}
.y76{bottom:730.437600px;}
.y52{bottom:735.031350px;}
.y29{bottom:739.309350px;}
.y51{bottom:755.990100px;}
.y28{bottom:759.733350px;}
.y8{bottom:765.327450px;}
.y50{bottom:776.948850px;}
.y27{bottom:780.157350px;}
.y7{bottom:786.972450px;}
.y4f{bottom:797.907600px;}
.y26{bottom:800.581350px;}
.y75{bottom:801.443850px;}
.y6{bottom:808.617450px;}
.y4e{bottom:818.866350px;}
.y25{bottom:821.005350px;}
.y74{bottom:821.695350px;}
.y5{bottom:830.262450px;}
.y4d{bottom:839.825100px;}
.y24{bottom:841.429350px;}
.y73{bottom:841.946850px;}
.y4{bottom:851.907450px;}
.y4c{bottom:860.783850px;}
.y23{bottom:861.853350px;}
.y72{bottom:862.198350px;}
.y4b{bottom:881.742600px;}
.y3{bottom:882.057450px;}
.y22{bottom:882.277350px;}
.y71{bottom:882.449850px;}
.y21{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.h9{height:46.757812px;}
.ha{height:55.488281px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.h8{height:67.214355px;}
.h2{height:73.059082px;}
.hb{height:73.063282px;}
.h5{height:81.826172px;}
.h6{height:105.205078px;}
.h7{height:148.214355px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:79.083900px;}
.x9{left:80.938650px;}
.x8{left:83.686650px;}
.x1{left:85.039350px;}
.x7{left:104.214450px;}
.x6{left:106.094700px;}
.x5{left:111.114450px;}
.x3{left:231.904200px;}
.x2{left:233.719200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.ls1c{letter-spacing:-4.416000pt;}
.ls31{letter-spacing:-3.360000pt;}
.ls22{letter-spacing:-2.821333pt;}
.ls20{letter-spacing:-2.024000pt;}
.ls2b{letter-spacing:-1.904000pt;}
.ls29{letter-spacing:-1.800000pt;}
.ls13{letter-spacing:-1.717333pt;}
.ls1d{letter-spacing:-1.656000pt;}
.ls9{letter-spacing:-1.594667pt;}
.ls26{letter-spacing:-1.349333pt;}
.ls7{letter-spacing:-1.226667pt;}
.lsa{letter-spacing:-1.165333pt;}
.ls33{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-1.042667pt;}
.ls6{letter-spacing:-0.981333pt;}
.ls16{letter-spacing:-0.858667pt;}
.ls2e{letter-spacing:-0.840000pt;}
.ls27{letter-spacing:-0.797333pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.674667pt;}
.lsd{letter-spacing:-0.666667pt;}
.ls19{letter-spacing:-0.613333pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.552000pt;}
.ls30{letter-spacing:-0.504000pt;}
.ls1e{letter-spacing:-0.429333pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls2d{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:-0.306667pt;}
.ls2{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.122667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.122667pt;}
.ls1a{letter-spacing:0.490667pt;}
.ls25{letter-spacing:0.674667pt;}
.ls15{letter-spacing:0.858667pt;}
.ls17{letter-spacing:0.981333pt;}
.lsf{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.410667pt;}
.lsc{letter-spacing:2.133333pt;}
.ls12{letter-spacing:4.293333pt;}
.ls2c{letter-spacing:5.208000pt;}
.lse{letter-spacing:5.333333pt;}
.ls2f{letter-spacing:5.600000pt;}
.ls2a{letter-spacing:6.104000pt;}
.ls3{letter-spacing:6.133333pt;}
.ls1f{letter-spacing:415.199467pt;}
.lsb{letter-spacing:416.799467pt;}
.ls28{letter-spacing:417.732800pt;}
.ls18{letter-spacing:832.312000pt;}
.ls23{letter-spacing:840.445333pt;}
.ls0{letter-spacing:853.060267pt;}
.ws0{word-spacing:-49.758281pt;}
.ws2a{word-spacing:-21.840000pt;}
.ws20{word-spacing:-18.733333pt;}
.wsc{word-spacing:-18.066667pt;}
.ws24{word-spacing:-17.909333pt;}
.wsf{word-spacing:-17.234667pt;}
.ws29{word-spacing:-16.933333pt;}
.ws21{word-spacing:-14.413333pt;}
.ws1{word-spacing:-14.168000pt;}
.ws10{word-spacing:-14.106667pt;}
.ws2{word-spacing:-13.922667pt;}
.ws3{word-spacing:-13.554667pt;}
.ws1a{word-spacing:-13.493333pt;}
.wse{word-spacing:-13.432000pt;}
.ws2b{word-spacing:-12.106667pt;}
.wsd{word-spacing:-11.610667pt;}
.ws6{word-spacing:-6.133333pt;}
.ws30{word-spacing:-5.600000pt;}
.ws12{word-spacing:-5.333333pt;}
.ws2d{word-spacing:-5.208000pt;}
.ws15{word-spacing:-4.293333pt;}
.ws11{word-spacing:-2.133333pt;}
.ws23{word-spacing:-1.410667pt;}
.ws19{word-spacing:-0.981333pt;}
.ws17{word-spacing:-0.858667pt;}
.ws1c{word-spacing:-0.490667pt;}
.ws25{word-spacing:-0.122667pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:0.122667pt;}
.ws5{word-spacing:0.224000pt;}
.ws8{word-spacing:0.306667pt;}
.ws2e{word-spacing:0.336000pt;}
.ws7{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.429333pt;}
.ws31{word-spacing:0.504000pt;}
.ws14{word-spacing:0.552000pt;}
.ws33{word-spacing:0.586667pt;}
.ws1b{word-spacing:0.613333pt;}
.ws9{word-spacing:0.674667pt;}
.ws1d{word-spacing:0.736000pt;}
.ws28{word-spacing:0.797333pt;}
.ws2f{word-spacing:0.840000pt;}
.ws18{word-spacing:0.858667pt;}
.wsa{word-spacing:1.165333pt;}
.ws16{word-spacing:1.226667pt;}
.ws27{word-spacing:1.349333pt;}
.wsb{word-spacing:1.594667pt;}
.ws26{word-spacing:1.717333pt;}
.ws2c{word-spacing:1.904000pt;}
.ws22{word-spacing:2.024000pt;}
.ws32{word-spacing:3.360000pt;}
.ws1e{word-spacing:4.416000pt;}
._b{margin-left:-8.378933pt;}
._7{margin-left:-6.085333pt;}
._a{margin-left:-4.695200pt;}
._5{margin-left:-3.088000pt;}
._3{margin-left:-2.127733pt;}
._4{margin-left:-1.184800pt;}
._2{width:1.103200pt;}
._1{width:2.133333pt;}
._9{width:3.521067pt;}
._6{width:4.476800pt;}
._8{width:6.133333pt;}
._12{width:7.048219pt;}
._e{width:7.946181pt;}
._c{width:9.135576pt;}
._d{width:10.036000pt;}
._f{width:10.987467pt;}
._11{width:33.714667pt;}
._10{width:35.321867pt;}
._0{width:514.133333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.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;}
.y4a{bottom:45.608000pt;}
.y1{bottom:45.608933pt;}
.y48{bottom:94.369200pt;}
.y70{bottom:94.461200pt;}
.y1f{bottom:94.507467pt;}
.y47{bottom:112.523867pt;}
.y1e{bottom:113.076133pt;}
.y6f{bottom:113.091200pt;}
.y46{bottom:130.678533pt;}
.y1d{bottom:131.644800pt;}
.y6e{bottom:131.721200pt;}
.y45{bottom:148.833200pt;}
.y1c{bottom:150.213467pt;}
.y6d{bottom:150.351200pt;}
.y44{bottom:166.987867pt;}
.y1b{bottom:168.782133pt;}
.y6c{bottom:168.981200pt;}
.y43{bottom:185.142533pt;}
.y1a{bottom:187.350800pt;}
.y6b{bottom:187.611200pt;}
.y42{bottom:203.297200pt;}
.y19{bottom:205.919467pt;}
.y6a{bottom:206.241200pt;}
.y41{bottom:221.451867pt;}
.y18{bottom:224.488133pt;}
.y69{bottom:224.871200pt;}
.y40{bottom:239.606533pt;}
.y17{bottom:243.056800pt;}
.y68{bottom:243.501200pt;}
.y3f{bottom:257.761200pt;}
.y16{bottom:261.625467pt;}
.y67{bottom:262.131200pt;}
.y3e{bottom:275.915867pt;}
.y15{bottom:280.194133pt;}
.y66{bottom:280.761200pt;}
.y3d{bottom:294.070533pt;}
.y14{bottom:298.762800pt;}
.y65{bottom:299.391200pt;}
.y3c{bottom:312.225200pt;}
.y13{bottom:317.331467pt;}
.y64{bottom:318.021200pt;}
.y3b{bottom:330.379867pt;}
.y12{bottom:335.900133pt;}
.y11{bottom:335.901467pt;}
.y63{bottom:336.651200pt;}
.y3a{bottom:348.534533pt;}
.y62{bottom:355.281200pt;}
.y83{bottom:362.369733pt;}
.y39{bottom:366.689200pt;}
.y61{bottom:373.911200pt;}
.y82{bottom:380.369733pt;}
.y38{bottom:384.843867pt;}
.y60{bottom:392.541200pt;}
.y81{bottom:398.369733pt;}
.y37{bottom:402.998533pt;}
.y5f{bottom:411.171200pt;}
.y80{bottom:416.369733pt;}
.y10{bottom:417.495600pt;}
.y36{bottom:421.153200pt;}
.y5e{bottom:429.801200pt;}
.y7f{bottom:434.369733pt;}
.yf{bottom:436.735600pt;}
.y35{bottom:439.307867pt;}
.y5d{bottom:448.431200pt;}
.y34{bottom:457.462533pt;}
.y7e{bottom:463.703067pt;}
.y5c{bottom:467.061200pt;}
.y33{bottom:475.617200pt;}
.ye{bottom:482.470267pt;}
.y5b{bottom:485.691200pt;}
.y32{bottom:493.771867pt;}
.y7d{bottom:500.569867pt;}
.y5a{bottom:504.321200pt;}
.yd{bottom:511.030267pt;}
.y31{bottom:511.926533pt;}
.y7c{bottom:518.573867pt;}
.y59{bottom:522.951200pt;}
.y30{bottom:530.081200pt;}
.y7b{bottom:536.577867pt;}
.yc{bottom:539.590267pt;}
.y58{bottom:541.581200pt;}
.y2f{bottom:548.235867pt;}
.y57{bottom:560.211200pt;}
.y7a{bottom:562.141867pt;}
.y2e{bottom:566.390533pt;}
.yb{bottom:568.150267pt;}
.y56{bottom:578.841200pt;}
.y79{bottom:580.145867pt;}
.y2d{bottom:584.545200pt;}
.ya{bottom:596.710267pt;}
.y55{bottom:597.471200pt;}
.y2c{bottom:602.699867pt;}
.y78{bottom:605.709867pt;}
.y54{bottom:616.101200pt;}
.y2b{bottom:620.854533pt;}
.y77{bottom:623.713867pt;}
.y9{bottom:625.280400pt;}
.y53{bottom:634.731200pt;}
.y2a{bottom:639.009200pt;}
.y76{bottom:649.277867pt;}
.y52{bottom:653.361200pt;}
.y29{bottom:657.163867pt;}
.y51{bottom:671.991200pt;}
.y28{bottom:675.318533pt;}
.y8{bottom:680.291067pt;}
.y50{bottom:690.621200pt;}
.y27{bottom:693.473200pt;}
.y7{bottom:699.531067pt;}
.y4f{bottom:709.251200pt;}
.y26{bottom:711.627867pt;}
.y75{bottom:712.394533pt;}
.y6{bottom:718.771067pt;}
.y4e{bottom:727.881200pt;}
.y25{bottom:729.782533pt;}
.y74{bottom:730.395867pt;}
.y5{bottom:738.011067pt;}
.y4d{bottom:746.511200pt;}
.y24{bottom:747.937200pt;}
.y73{bottom:748.397200pt;}
.y4{bottom:757.251067pt;}
.y4c{bottom:765.141200pt;}
.y23{bottom:766.091867pt;}
.y72{bottom:766.398533pt;}
.y4b{bottom:783.771200pt;}
.y3{bottom:784.051067pt;}
.y22{bottom:784.246533pt;}
.y71{bottom:784.399867pt;}
.y21{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.h9{height:41.562500pt;}
.ha{height:49.322917pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.h8{height:59.746094pt;}
.h2{height:64.941406pt;}
.hb{height:64.945140pt;}
.h5{height:72.734375pt;}
.h6{height:93.515625pt;}
.h7{height:131.746094pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:70.296800pt;}
.x9{left:71.945467pt;}
.x8{left:74.388133pt;}
.x1{left:75.590533pt;}
.x7{left:92.635067pt;}
.x6{left:94.306400pt;}
.x5{left:98.768400pt;}
.x3{left:206.137067pt;}
.x2{left:207.750400pt;}
}




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