
    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_1f3cf1cf462c861724e256b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_71da5359ba02129bd7e65a20.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_84dd01e9cd5444d42a679184.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9373b804ed0274dbde4f194c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_73ae5cb8a790601ff0fe2da7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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;}
.ls2{letter-spacing:-5.299200px;}
.lsd{letter-spacing:-3.312000px;}
.ls17{letter-spacing:-1.339800px;}
.ls7{letter-spacing:-1.320000px;}
.ls15{letter-spacing:-1.300200px;}
.ls16{letter-spacing:-1.280400px;}
.ls18{letter-spacing:-0.679800px;}
.lsb{letter-spacing:-0.039600px;}
.ls11{letter-spacing:-0.033000px;}
.lse{letter-spacing:-0.026400px;}
.ls3{letter-spacing:-0.019800px;}
.lsc{letter-spacing:-0.013200px;}
.lsa{letter-spacing:-0.006600px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.006600px;}
.ls14{letter-spacing:0.013200px;}
.ls13{letter-spacing:0.019800px;}
.ls10{letter-spacing:0.026400px;}
.lsf{letter-spacing:0.033000px;}
.ls5{letter-spacing:0.105600px;}
.ls6{letter-spacing:0.818400px;}
.ls8{letter-spacing:1.194600px;}
.ls4{letter-spacing:1.320000px;}
.ls0{letter-spacing:1.854600px;}
.ls9{letter-spacing:8.507400px;}
.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:-96.000000px;}
.ws7{word-spacing:-60.000000px;}
.ws2{word-spacing:-24.000000px;}
.ws0{word-spacing:-18.700800px;}
.ws6{word-spacing:-17.820000px;}
.ws5{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws9{word-spacing:-0.039600px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.640200px;}
.wsc{word-spacing:2.567400px;}
.wsa{word-spacing:3.312000px;}
.wsb{word-spacing:8.322600px;}
.wse{word-spacing:17.285400px;}
._9{margin-left:-18.341400px;}
._14{margin-left:-17.289000px;}
._1c{margin-left:-15.932400px;}
._1a{margin-left:-8.811000px;}
._2{margin-left:-7.319400px;}
._1{margin-left:-5.424000px;}
._6{margin-left:-3.954600px;}
._b{margin-left:-2.780400px;}
._8{margin-left:-1.299000px;}
._5{width:1.874400px;}
._7{width:2.937000px;}
._3{width:4.243800px;}
._0{width:5.289600px;}
._11{width:6.346200px;}
._18{width:7.398000px;}
._e{width:8.401800px;}
._4{width:9.576600px;}
._a{width:11.114400px;}
._d{width:12.190200px;}
._10{width:13.830000px;}
._f{width:15.075600px;}
._13{width:16.302000px;}
._17{width:17.615400px;}
._19{width:18.843000px;}
._16{width:20.097000px;}
._12{width:22.017600px;}
._1b{width:24.129600px;}
._c{width:29.086200px;}
._15{width:41.586600px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:79.418100px;}
.y4d{bottom:83.487600px;}
.y76{bottom:84.789600px;}
.y9f{bottom:84.987600px;}
.y22{bottom:101.021700px;}
.y4c{bottom:103.287600px;}
.y75{bottom:104.589600px;}
.y9e{bottom:104.787600px;}
.y21{bottom:120.371250px;}
.y4b{bottom:123.087600px;}
.y74{bottom:124.389600px;}
.y9d{bottom:124.587600px;}
.y20{bottom:139.720800px;}
.y4a{bottom:142.887600px;}
.y73{bottom:144.189600px;}
.y9c{bottom:144.387600px;}
.y1f{bottom:159.070350px;}
.y49{bottom:162.687600px;}
.y72{bottom:163.989600px;}
.y9b{bottom:164.187600px;}
.y1e{bottom:178.419900px;}
.y48{bottom:182.487600px;}
.y71{bottom:183.789600px;}
.y9a{bottom:183.987600px;}
.y1d{bottom:197.769450px;}
.y47{bottom:202.287600px;}
.y70{bottom:203.589600px;}
.y99{bottom:203.787600px;}
.y1c{bottom:217.119000px;}
.y46{bottom:222.087600px;}
.y6f{bottom:223.389600px;}
.y98{bottom:223.587600px;}
.y1b{bottom:236.468550px;}
.y45{bottom:241.887600px;}
.y6e{bottom:243.189600px;}
.y97{bottom:243.387600px;}
.y1a{bottom:255.818100px;}
.y44{bottom:261.687600px;}
.y6d{bottom:262.989600px;}
.y96{bottom:263.187600px;}
.y19{bottom:275.167650px;}
.y43{bottom:281.487600px;}
.y6c{bottom:282.789600px;}
.y95{bottom:282.987600px;}
.y18{bottom:294.517200px;}
.y42{bottom:301.287600px;}
.y6b{bottom:302.589600px;}
.y94{bottom:302.787600px;}
.y17{bottom:313.866750px;}
.y41{bottom:321.087600px;}
.y6a{bottom:322.389600px;}
.y93{bottom:322.587600px;}
.y16{bottom:333.216300px;}
.y40{bottom:340.887600px;}
.y69{bottom:342.189600px;}
.y92{bottom:342.387600px;}
.y15{bottom:352.565850px;}
.y3f{bottom:360.687600px;}
.y68{bottom:361.989600px;}
.y91{bottom:362.187600px;}
.y14{bottom:371.915400px;}
.y3e{bottom:380.487600px;}
.y67{bottom:381.789600px;}
.y90{bottom:381.987600px;}
.y13{bottom:391.264950px;}
.y3d{bottom:400.287600px;}
.y66{bottom:401.589600px;}
.y8f{bottom:401.787600px;}
.y12{bottom:410.614500px;}
.y3c{bottom:420.087600px;}
.y65{bottom:421.389600px;}
.y8e{bottom:421.587600px;}
.y11{bottom:429.964050px;}
.y3b{bottom:439.887600px;}
.y64{bottom:441.189600px;}
.y8d{bottom:441.387600px;}
.y10{bottom:449.313600px;}
.y3a{bottom:459.687600px;}
.y63{bottom:460.989600px;}
.y8c{bottom:461.187600px;}
.yf{bottom:468.663150px;}
.y39{bottom:479.487600px;}
.y62{bottom:480.789600px;}
.y8b{bottom:480.987600px;}
.ye{bottom:488.012700px;}
.y38{bottom:499.287600px;}
.y61{bottom:500.589600px;}
.y8a{bottom:500.787600px;}
.yd{bottom:507.362250px;}
.y37{bottom:519.087600px;}
.y60{bottom:520.389600px;}
.y89{bottom:520.587600px;}
.yc{bottom:526.711800px;}
.y36{bottom:538.887600px;}
.y5f{bottom:540.189600px;}
.y88{bottom:540.387600px;}
.yb{bottom:546.061350px;}
.y35{bottom:558.687600px;}
.y5e{bottom:559.989600px;}
.y87{bottom:560.187600px;}
.ya{bottom:565.410900px;}
.y34{bottom:578.487600px;}
.y5d{bottom:579.789600px;}
.y86{bottom:579.987600px;}
.y9{bottom:584.760450px;}
.y33{bottom:598.287600px;}
.y5c{bottom:599.589600px;}
.y85{bottom:599.787600px;}
.y8{bottom:604.110000px;}
.y32{bottom:618.087600px;}
.y5b{bottom:619.389600px;}
.y84{bottom:619.587600px;}
.y7{bottom:623.459550px;}
.y31{bottom:637.887600px;}
.y5a{bottom:639.189600px;}
.y83{bottom:639.387600px;}
.y6{bottom:642.809100px;}
.y30{bottom:657.687600px;}
.y59{bottom:658.989600px;}
.y82{bottom:659.187600px;}
.y2f{bottom:677.487600px;}
.y58{bottom:678.789600px;}
.y81{bottom:678.987600px;}
.ya6{bottom:684.246600px;}
.y2e{bottom:697.287600px;}
.y57{bottom:698.589600px;}
.y80{bottom:698.787600px;}
.y5{bottom:700.259100px;}
.y2d{bottom:717.087600px;}
.y4{bottom:718.259400px;}
.y56{bottom:718.389600px;}
.y7f{bottom:718.587600px;}
.ya5{bottom:722.046750px;}
.y2c{bottom:736.887600px;}
.y3{bottom:737.759100px;}
.y55{bottom:738.189600px;}
.y7e{bottom:738.387600px;}
.ya4{bottom:741.846750px;}
.y2b{bottom:756.687600px;}
.y54{bottom:757.989600px;}
.y7d{bottom:758.187600px;}
.ya3{bottom:761.646750px;}
.y2a{bottom:776.487600px;}
.y53{bottom:777.789600px;}
.y7c{bottom:777.987600px;}
.ya2{bottom:781.446750px;}
.y2{bottom:785.774100px;}
.y29{bottom:796.287600px;}
.y52{bottom:797.589600px;}
.y7b{bottom:797.787600px;}
.ya1{bottom:801.246750px;}
.y1{bottom:814.574100px;}
.y28{bottom:816.087600px;}
.y7a{bottom:817.587600px;}
.ya0{bottom:821.046750px;}
.y27{bottom:835.887600px;}
.y51{bottom:837.189600px;}
.y79{bottom:837.387600px;}
.y26{bottom:855.687600px;}
.y78{bottom:857.187600px;}
.y50{bottom:864.189600px;}
.y25{bottom:875.487600px;}
.y77{bottom:876.987600px;}
.y4e{bottom:925.985100px;}
.y24{bottom:927.225600px;}
.y4f{bottom:927.485100px;}
.h8{height:37.303711px;}
.h5{height:44.730469px;}
.h7{height:47.961914px;}
.h6{height:52.646484px;}
.ha{height:53.291016px;}
.h4{height:57.911133px;}
.hb{height:58.072266px;}
.h9{height:58.620117px;}
.hd{height:60.996094px;}
.h3{height:65.062500px;}
.hc{height:79.936523px;}
.h2{height:85.265625px;}
.h0{height:977.748600px;}
.h1{height:978.000000px;}
.w0{width:680.686050px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x8{left:95.384550px;}
.x7{left:99.634650px;}
.x9{left:129.399300px;}
.x6{left:133.651050px;}
.xc{left:237.485550px;}
.x2{left:271.460850px;}
.x1{left:284.104050px;}
.xd{left:295.796550px;}
.xa{left:303.211050px;}
.x3{left:406.757550px;}
.x4{left:412.567200px;}
.x5{left:432.416550px;}
.xb{left:571.232550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-4.710400pt;}
.lsd{letter-spacing:-2.944000pt;}
.ls17{letter-spacing:-1.190933pt;}
.ls7{letter-spacing:-1.173333pt;}
.ls15{letter-spacing:-1.155733pt;}
.ls16{letter-spacing:-1.138133pt;}
.ls18{letter-spacing:-0.604267pt;}
.lsb{letter-spacing:-0.035200pt;}
.ls11{letter-spacing:-0.029333pt;}
.lse{letter-spacing:-0.023467pt;}
.ls3{letter-spacing:-0.017600pt;}
.lsc{letter-spacing:-0.011733pt;}
.lsa{letter-spacing:-0.005867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005867pt;}
.ls14{letter-spacing:0.011733pt;}
.ls13{letter-spacing:0.017600pt;}
.ls10{letter-spacing:0.023467pt;}
.lsf{letter-spacing:0.029333pt;}
.ls5{letter-spacing:0.093867pt;}
.ls6{letter-spacing:0.727467pt;}
.ls8{letter-spacing:1.061867pt;}
.ls4{letter-spacing:1.173333pt;}
.ls0{letter-spacing:1.648533pt;}
.ls9{letter-spacing:7.562133pt;}
.ws1{word-spacing:-85.333333pt;}
.ws7{word-spacing:-53.333333pt;}
.ws2{word-spacing:-21.333333pt;}
.ws0{word-spacing:-16.622933pt;}
.ws6{word-spacing:-15.840000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws9{word-spacing:-0.035200pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.569067pt;}
.wsc{word-spacing:2.282133pt;}
.wsa{word-spacing:2.944000pt;}
.wsb{word-spacing:7.397867pt;}
.wse{word-spacing:15.364800pt;}
._9{margin-left:-16.303467pt;}
._14{margin-left:-15.368000pt;}
._1c{margin-left:-14.162133pt;}
._1a{margin-left:-7.832000pt;}
._2{margin-left:-6.506133pt;}
._1{margin-left:-4.821333pt;}
._6{margin-left:-3.515200pt;}
._b{margin-left:-2.471467pt;}
._8{margin-left:-1.154667pt;}
._5{width:1.666133pt;}
._7{width:2.610667pt;}
._3{width:3.772267pt;}
._0{width:4.701867pt;}
._11{width:5.641067pt;}
._18{width:6.576000pt;}
._e{width:7.468267pt;}
._4{width:8.512533pt;}
._a{width:9.879467pt;}
._d{width:10.835733pt;}
._10{width:12.293333pt;}
._f{width:13.400533pt;}
._13{width:14.490667pt;}
._17{width:15.658133pt;}
._19{width:16.749333pt;}
._16{width:17.864000pt;}
._12{width:19.571200pt;}
._1b{width:21.448533pt;}
._c{width:25.854400pt;}
._15{width:36.965867pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:70.593867pt;}
.y4d{bottom:74.211200pt;}
.y76{bottom:75.368533pt;}
.y9f{bottom:75.544533pt;}
.y22{bottom:89.797067pt;}
.y4c{bottom:91.811200pt;}
.y75{bottom:92.968533pt;}
.y9e{bottom:93.144533pt;}
.y21{bottom:106.996667pt;}
.y4b{bottom:109.411200pt;}
.y74{bottom:110.568533pt;}
.y9d{bottom:110.744533pt;}
.y20{bottom:124.196267pt;}
.y4a{bottom:127.011200pt;}
.y73{bottom:128.168533pt;}
.y9c{bottom:128.344533pt;}
.y1f{bottom:141.395867pt;}
.y49{bottom:144.611200pt;}
.y72{bottom:145.768533pt;}
.y9b{bottom:145.944533pt;}
.y1e{bottom:158.595467pt;}
.y48{bottom:162.211200pt;}
.y71{bottom:163.368533pt;}
.y9a{bottom:163.544533pt;}
.y1d{bottom:175.795067pt;}
.y47{bottom:179.811200pt;}
.y70{bottom:180.968533pt;}
.y99{bottom:181.144533pt;}
.y1c{bottom:192.994667pt;}
.y46{bottom:197.411200pt;}
.y6f{bottom:198.568533pt;}
.y98{bottom:198.744533pt;}
.y1b{bottom:210.194267pt;}
.y45{bottom:215.011200pt;}
.y6e{bottom:216.168533pt;}
.y97{bottom:216.344533pt;}
.y1a{bottom:227.393867pt;}
.y44{bottom:232.611200pt;}
.y6d{bottom:233.768533pt;}
.y96{bottom:233.944533pt;}
.y19{bottom:244.593467pt;}
.y43{bottom:250.211200pt;}
.y6c{bottom:251.368533pt;}
.y95{bottom:251.544533pt;}
.y18{bottom:261.793067pt;}
.y42{bottom:267.811200pt;}
.y6b{bottom:268.968533pt;}
.y94{bottom:269.144533pt;}
.y17{bottom:278.992667pt;}
.y41{bottom:285.411200pt;}
.y6a{bottom:286.568533pt;}
.y93{bottom:286.744533pt;}
.y16{bottom:296.192267pt;}
.y40{bottom:303.011200pt;}
.y69{bottom:304.168533pt;}
.y92{bottom:304.344533pt;}
.y15{bottom:313.391867pt;}
.y3f{bottom:320.611200pt;}
.y68{bottom:321.768533pt;}
.y91{bottom:321.944533pt;}
.y14{bottom:330.591467pt;}
.y3e{bottom:338.211200pt;}
.y67{bottom:339.368533pt;}
.y90{bottom:339.544533pt;}
.y13{bottom:347.791067pt;}
.y3d{bottom:355.811200pt;}
.y66{bottom:356.968533pt;}
.y8f{bottom:357.144533pt;}
.y12{bottom:364.990667pt;}
.y3c{bottom:373.411200pt;}
.y65{bottom:374.568533pt;}
.y8e{bottom:374.744533pt;}
.y11{bottom:382.190267pt;}
.y3b{bottom:391.011200pt;}
.y64{bottom:392.168533pt;}
.y8d{bottom:392.344533pt;}
.y10{bottom:399.389867pt;}
.y3a{bottom:408.611200pt;}
.y63{bottom:409.768533pt;}
.y8c{bottom:409.944533pt;}
.yf{bottom:416.589467pt;}
.y39{bottom:426.211200pt;}
.y62{bottom:427.368533pt;}
.y8b{bottom:427.544533pt;}
.ye{bottom:433.789067pt;}
.y38{bottom:443.811200pt;}
.y61{bottom:444.968533pt;}
.y8a{bottom:445.144533pt;}
.yd{bottom:450.988667pt;}
.y37{bottom:461.411200pt;}
.y60{bottom:462.568533pt;}
.y89{bottom:462.744533pt;}
.yc{bottom:468.188267pt;}
.y36{bottom:479.011200pt;}
.y5f{bottom:480.168533pt;}
.y88{bottom:480.344533pt;}
.yb{bottom:485.387867pt;}
.y35{bottom:496.611200pt;}
.y5e{bottom:497.768533pt;}
.y87{bottom:497.944533pt;}
.ya{bottom:502.587467pt;}
.y34{bottom:514.211200pt;}
.y5d{bottom:515.368533pt;}
.y86{bottom:515.544533pt;}
.y9{bottom:519.787067pt;}
.y33{bottom:531.811200pt;}
.y5c{bottom:532.968533pt;}
.y85{bottom:533.144533pt;}
.y8{bottom:536.986667pt;}
.y32{bottom:549.411200pt;}
.y5b{bottom:550.568533pt;}
.y84{bottom:550.744533pt;}
.y7{bottom:554.186267pt;}
.y31{bottom:567.011200pt;}
.y5a{bottom:568.168533pt;}
.y83{bottom:568.344533pt;}
.y6{bottom:571.385867pt;}
.y30{bottom:584.611200pt;}
.y59{bottom:585.768533pt;}
.y82{bottom:585.944533pt;}
.y2f{bottom:602.211200pt;}
.y58{bottom:603.368533pt;}
.y81{bottom:603.544533pt;}
.ya6{bottom:608.219200pt;}
.y2e{bottom:619.811200pt;}
.y57{bottom:620.968533pt;}
.y80{bottom:621.144533pt;}
.y5{bottom:622.452533pt;}
.y2d{bottom:637.411200pt;}
.y4{bottom:638.452800pt;}
.y56{bottom:638.568533pt;}
.y7f{bottom:638.744533pt;}
.ya5{bottom:641.819333pt;}
.y2c{bottom:655.011200pt;}
.y3{bottom:655.785867pt;}
.y55{bottom:656.168533pt;}
.y7e{bottom:656.344533pt;}
.ya4{bottom:659.419333pt;}
.y2b{bottom:672.611200pt;}
.y54{bottom:673.768533pt;}
.y7d{bottom:673.944533pt;}
.ya3{bottom:677.019333pt;}
.y2a{bottom:690.211200pt;}
.y53{bottom:691.368533pt;}
.y7c{bottom:691.544533pt;}
.ya2{bottom:694.619333pt;}
.y2{bottom:698.465867pt;}
.y29{bottom:707.811200pt;}
.y52{bottom:708.968533pt;}
.y7b{bottom:709.144533pt;}
.ya1{bottom:712.219333pt;}
.y1{bottom:724.065867pt;}
.y28{bottom:725.411200pt;}
.y7a{bottom:726.744533pt;}
.ya0{bottom:729.819333pt;}
.y27{bottom:743.011200pt;}
.y51{bottom:744.168533pt;}
.y79{bottom:744.344533pt;}
.y26{bottom:760.611200pt;}
.y78{bottom:761.944533pt;}
.y50{bottom:768.168533pt;}
.y25{bottom:778.211200pt;}
.y77{bottom:779.544533pt;}
.y4e{bottom:823.097867pt;}
.y24{bottom:824.200533pt;}
.y4f{bottom:824.431200pt;}
.h8{height:33.158854pt;}
.h5{height:39.760417pt;}
.h7{height:42.632812pt;}
.h6{height:46.796875pt;}
.ha{height:47.369792pt;}
.h4{height:51.476562pt;}
.hb{height:51.619792pt;}
.h9{height:52.106771pt;}
.hd{height:54.218750pt;}
.h3{height:57.833333pt;}
.hc{height:71.054688pt;}
.h2{height:75.791667pt;}
.h0{height:869.109867pt;}
.h1{height:869.333333pt;}
.w0{width:605.054267pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x8{left:84.786267pt;}
.x7{left:88.564133pt;}
.x9{left:115.021600pt;}
.x6{left:118.800933pt;}
.xc{left:211.098267pt;}
.x2{left:241.298533pt;}
.x1{left:252.536933pt;}
.xd{left:262.930267pt;}
.xa{left:269.520933pt;}
.x3{left:361.562267pt;}
.x4{left:366.726400pt;}
.x5{left:384.370267pt;}
.xb{left:507.762267pt;}
}




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