
    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_8e8bc03654455b65ac1bf02e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0794fccab6ab108da928b7e5.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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_277bfc9cd65ab30919a4e628.woff')format("woff");}.ff4{font-family:ff4;line-height:0.880859;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_f895b8ec1b08c5c184086084.woff')format("woff");}.ff5{font-family:ff5;line-height:0.880859;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_7d102d268dd6f74524972898.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899902;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_ab333a8d0e23c4ab79f324e4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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;}
.ls15{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000001px;}
.ls17{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.196560px;}
.lsb{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.648000px;}
.ls1f{letter-spacing:1.368000px;}
.ls4{letter-spacing:2.088000px;}
.lsa{letter-spacing:2.808000px;}
.ls1{letter-spacing:3.528000px;}
.ls12{letter-spacing:5.688000px;}
.ls20{letter-spacing:5.976000px;}
.ls16{letter-spacing:6.408000px;}
.ls9{letter-spacing:7.848000px;}
.ls6{letter-spacing:9.288000px;}
.ls8{letter-spacing:11.448000px;}
.ls10{letter-spacing:12.888000px;}
.ls21{letter-spacing:13.608000px;}
.ls13{letter-spacing:14.328000px;}
.ls19{letter-spacing:15.768000px;}
.ls1e{letter-spacing:17.928000px;}
.ls1d{letter-spacing:18.648000px;}
.ls1c{letter-spacing:18.828000px;}
.ls1a{letter-spacing:22.248000px;}
.ls0{letter-spacing:178.327440px;}
.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;}
}
.ws2{word-spacing:-23.671440px;}
.ws4{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.232001px;}
.ws3{word-spacing:-20.232000px;}
.wsb{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.088000px;}
.ws6{word-spacing:-19.584000px;}
.ws1{word-spacing:-19.440000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.152560px;}
.ws0{word-spacing:0.000000px;}
._1b{margin-left:-5.947200px;}
._17{margin-left:-4.824000px;}
._d{margin-left:-3.456000px;}
._c{margin-left:-2.304000px;}
._3{margin-left:-1.179360px;}
._0{width:1.195200px;}
._2{width:2.607360px;}
._6{width:3.843360px;}
._5{width:5.256000px;}
._11{width:6.408000px;}
._15{width:7.460160px;}
._f{width:8.496000px;}
._10{width:9.576000px;}
._b{width:10.656000px;}
._7{width:12.384000px;}
._8{width:13.708800px;}
._12{width:15.003360px;}
._9{width:16.488000px;}
._a{width:17.640000px;}
._18{width:19.125600px;}
._16{width:22.176000px;}
._13{width:24.120000px;}
._4{width:25.272000px;}
._21{width:26.712000px;}
._1f{width:27.720000px;}
._1c{width:28.872000px;}
._20{width:30.240000px;}
._1a{width:31.548000px;}
._19{width:32.688000px;}
._1d{width:43.200000px;}
._1e{width:44.424000px;}
._e{width:178.241520px;}
._1{width:435.454080px;}
._14{width:843.924000px;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:58.356000px;}
.y4{bottom:78.516000px;}
.y3{bottom:98.136000px;}
.y2{bottom:119.556000px;}
.y1{bottom:143.676000px;}
.y37{bottom:174.630000px;}
.y64{bottom:181.470000px;}
.y7a{bottom:206.490000px;}
.y1c{bottom:207.210000px;}
.y36{bottom:213.510000px;}
.y5d{bottom:219.810000px;}
.y63{bottom:220.170000px;}
.y79{bottom:245.190000px;}
.y1b{bottom:245.910000px;}
.y35{bottom:252.210000px;}
.y5c{bottom:258.690000px;}
.y62{bottom:258.870000px;}
.y78{bottom:284.070000px;}
.y1a{bottom:284.790000px;}
.y34{bottom:290.955000px;}
.y5b{bottom:297.435000px;}
.y61{bottom:297.615000px;}
.y77{bottom:322.815000px;}
.y19{bottom:323.535000px;}
.y33{bottom:329.655000px;}
.y5a{bottom:336.135000px;}
.y60{bottom:336.315000px;}
.y76{bottom:361.515000px;}
.y18{bottom:362.235000px;}
.y32{bottom:368.355000px;}
.y59{bottom:374.835000px;}
.y5f{bottom:375.195000px;}
.y75{bottom:400.215000px;}
.y17{bottom:400.935000px;}
.y31{bottom:407.235000px;}
.y58{bottom:413.535000px;}
.y5e{bottom:413.895000px;}
.y74{bottom:438.915000px;}
.y16{bottom:439.635000px;}
.y30{bottom:445.935000px;}
.y57{bottom:452.415000px;}
.y48{bottom:452.595000px;}
.y73{bottom:477.795000px;}
.y15{bottom:478.335000px;}
.y2f{bottom:484.635000px;}
.y56{bottom:491.115000px;}
.y47{bottom:491.295000px;}
.y72{bottom:516.495000px;}
.y14{bottom:517.215000px;}
.y2e{bottom:523.335000px;}
.y55{bottom:529.815000px;}
.y46{bottom:529.995000px;}
.y71{bottom:555.225000px;}
.y13{bottom:555.945000px;}
.y2d{bottom:562.065000px;}
.y54{bottom:568.545000px;}
.y45{bottom:568.905000px;}
.y70{bottom:593.925000px;}
.y12{bottom:594.645000px;}
.y2c{bottom:600.765000px;}
.y53{bottom:607.245000px;}
.y44{bottom:607.605000px;}
.y6f{bottom:632.625000px;}
.y11{bottom:633.345000px;}
.y2b{bottom:639.645000px;}
.y52{bottom:646.125000px;}
.y43{bottom:646.305000px;}
.y6e{bottom:671.325000px;}
.y10{bottom:672.045000px;}
.y2a{bottom:678.345000px;}
.y51{bottom:684.825000px;}
.y42{bottom:685.005000px;}
.y6d{bottom:710.205000px;}
.yf{bottom:710.925000px;}
.y29{bottom:717.045000px;}
.y50{bottom:723.525000px;}
.y41{bottom:723.705000px;}
.y6c{bottom:748.905000px;}
.ye{bottom:749.625000px;}
.y28{bottom:755.745000px;}
.y4f{bottom:762.225000px;}
.y40{bottom:762.585000px;}
.y6b{bottom:787.605000px;}
.yd{bottom:788.325000px;}
.y27{bottom:794.445000px;}
.y4e{bottom:800.925000px;}
.y3f{bottom:801.285000px;}
.y6a{bottom:826.350000px;}
.yc{bottom:827.070000px;}
.y26{bottom:833.370000px;}
.y4d{bottom:839.670000px;}
.y3e{bottom:840.030000px;}
.y69{bottom:865.050000px;}
.yb{bottom:868.650000px;}
.y25{bottom:872.070000px;}
.y4c{bottom:878.550000px;}
.y3d{bottom:878.730000px;}
.y68{bottom:903.930000px;}
.y24{bottom:910.770000px;}
.ya{bottom:913.830000px;}
.y4b{bottom:917.250000px;}
.y3c{bottom:917.430000px;}
.y67{bottom:942.630000px;}
.y23{bottom:949.470000px;}
.y9{bottom:950.370000px;}
.y3b{bottom:956.130000px;}
.y4a{bottom:958.830000px;}
.y8{bottom:982.050000px;}
.y66{bottom:982.410000px;}
.y22{bottom:988.170000px;}
.y3a{bottom:995.010000px;}
.y49{bottom:995.190000px;}
.y7{bottom:1020.750000px;}
.y65{bottom:1023.450000px;}
.y21{bottom:1027.050000px;}
.y39{bottom:1033.710000px;}
.y20{bottom:1052.610000px;}
.y6{bottom:1065.210000px;}
.y38{bottom:1072.440000px;}
.y1f{bottom:1072.620000px;}
.y1e{bottom:1094.760000px;}
.y1d{bottom:1116.360000px;}
.h7{height:41.668242px;}
.h9{height:47.988281px;}
.h1{height:50.743477px;}
.h2{height:56.245781px;}
.h5{height:61.136719px;}
.h6{height:62.191406px;}
.h3{height:65.884219px;}
.h8{height:71.529961px;}
.h4{height:81.311836px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.x2{left:148.535986px;}
.x3{left:160.949986px;}
.x6{left:162.029986px;}
.x8{left:421.814986px;}
.x7{left:480.494986px;}
.x4{left:488.054986px;}
.x5{left:652.964986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000001pt;}
.ls17{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.174720pt;}
.lsb{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:1.216000pt;}
.ls4{letter-spacing:1.856000pt;}
.lsa{letter-spacing:2.496000pt;}
.ls1{letter-spacing:3.136000pt;}
.ls12{letter-spacing:5.056000pt;}
.ls20{letter-spacing:5.312000pt;}
.ls16{letter-spacing:5.696000pt;}
.ls9{letter-spacing:6.976000pt;}
.ls6{letter-spacing:8.256000pt;}
.ls8{letter-spacing:10.176000pt;}
.ls10{letter-spacing:11.456000pt;}
.ls21{letter-spacing:12.096000pt;}
.ls13{letter-spacing:12.736000pt;}
.ls19{letter-spacing:14.016000pt;}
.ls1e{letter-spacing:15.936000pt;}
.ls1d{letter-spacing:16.576000pt;}
.ls1c{letter-spacing:16.736000pt;}
.ls1a{letter-spacing:19.776000pt;}
.ls0{letter-spacing:158.513280pt;}
.ws2{word-spacing:-21.041280pt;}
.ws4{word-spacing:-18.176000pt;}
.ws7{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.984001pt;}
.ws3{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.856000pt;}
.ws6{word-spacing:-17.408000pt;}
.ws1{word-spacing:-17.280000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.246720pt;}
.ws0{word-spacing:0.000000pt;}
._1b{margin-left:-5.286400pt;}
._17{margin-left:-4.288000pt;}
._d{margin-left:-3.072000pt;}
._c{margin-left:-2.048000pt;}
._3{margin-left:-1.048320pt;}
._0{width:1.062400pt;}
._2{width:2.317653pt;}
._6{width:3.416320pt;}
._5{width:4.672000pt;}
._11{width:5.696000pt;}
._15{width:6.631253pt;}
._f{width:7.552000pt;}
._10{width:8.512000pt;}
._b{width:9.472000pt;}
._7{width:11.008000pt;}
._8{width:12.185600pt;}
._12{width:13.336320pt;}
._9{width:14.656000pt;}
._a{width:15.680000pt;}
._18{width:17.000533pt;}
._16{width:19.712000pt;}
._13{width:21.440000pt;}
._4{width:22.464000pt;}
._21{width:23.744000pt;}
._1f{width:24.640000pt;}
._1c{width:25.664000pt;}
._20{width:26.880000pt;}
._1a{width:28.042667pt;}
._19{width:29.056000pt;}
._1d{width:38.400000pt;}
._1e{width:39.488000pt;}
._e{width:158.436907pt;}
._1{width:387.070293pt;}
._14{width:750.154667pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.872000pt;}
.y4{bottom:69.792000pt;}
.y3{bottom:87.232000pt;}
.y2{bottom:106.272000pt;}
.y1{bottom:127.712000pt;}
.y37{bottom:155.226667pt;}
.y64{bottom:161.306667pt;}
.y7a{bottom:183.546667pt;}
.y1c{bottom:184.186667pt;}
.y36{bottom:189.786667pt;}
.y5d{bottom:195.386667pt;}
.y63{bottom:195.706667pt;}
.y79{bottom:217.946667pt;}
.y1b{bottom:218.586667pt;}
.y35{bottom:224.186667pt;}
.y5c{bottom:229.946667pt;}
.y62{bottom:230.106667pt;}
.y78{bottom:252.506667pt;}
.y1a{bottom:253.146667pt;}
.y34{bottom:258.626667pt;}
.y5b{bottom:264.386667pt;}
.y61{bottom:264.546667pt;}
.y77{bottom:286.946667pt;}
.y19{bottom:287.586667pt;}
.y33{bottom:293.026667pt;}
.y5a{bottom:298.786667pt;}
.y60{bottom:298.946667pt;}
.y76{bottom:321.346667pt;}
.y18{bottom:321.986667pt;}
.y32{bottom:327.426667pt;}
.y59{bottom:333.186667pt;}
.y5f{bottom:333.506667pt;}
.y75{bottom:355.746667pt;}
.y17{bottom:356.386667pt;}
.y31{bottom:361.986667pt;}
.y58{bottom:367.586667pt;}
.y5e{bottom:367.906667pt;}
.y74{bottom:390.146667pt;}
.y16{bottom:390.786667pt;}
.y30{bottom:396.386667pt;}
.y57{bottom:402.146667pt;}
.y48{bottom:402.306667pt;}
.y73{bottom:424.706667pt;}
.y15{bottom:425.186667pt;}
.y2f{bottom:430.786667pt;}
.y56{bottom:436.546667pt;}
.y47{bottom:436.706667pt;}
.y72{bottom:459.106667pt;}
.y14{bottom:459.746667pt;}
.y2e{bottom:465.186667pt;}
.y55{bottom:470.946667pt;}
.y46{bottom:471.106667pt;}
.y71{bottom:493.533333pt;}
.y13{bottom:494.173333pt;}
.y2d{bottom:499.613333pt;}
.y54{bottom:505.373333pt;}
.y45{bottom:505.693333pt;}
.y70{bottom:527.933333pt;}
.y12{bottom:528.573333pt;}
.y2c{bottom:534.013333pt;}
.y53{bottom:539.773333pt;}
.y44{bottom:540.093333pt;}
.y6f{bottom:562.333333pt;}
.y11{bottom:562.973333pt;}
.y2b{bottom:568.573333pt;}
.y52{bottom:574.333333pt;}
.y43{bottom:574.493333pt;}
.y6e{bottom:596.733333pt;}
.y10{bottom:597.373333pt;}
.y2a{bottom:602.973333pt;}
.y51{bottom:608.733333pt;}
.y42{bottom:608.893333pt;}
.y6d{bottom:631.293333pt;}
.yf{bottom:631.933333pt;}
.y29{bottom:637.373333pt;}
.y50{bottom:643.133333pt;}
.y41{bottom:643.293333pt;}
.y6c{bottom:665.693333pt;}
.ye{bottom:666.333333pt;}
.y28{bottom:671.773333pt;}
.y4f{bottom:677.533333pt;}
.y40{bottom:677.853333pt;}
.y6b{bottom:700.093333pt;}
.yd{bottom:700.733333pt;}
.y27{bottom:706.173333pt;}
.y4e{bottom:711.933333pt;}
.y3f{bottom:712.253333pt;}
.y6a{bottom:734.533333pt;}
.yc{bottom:735.173333pt;}
.y26{bottom:740.773333pt;}
.y4d{bottom:746.373333pt;}
.y3e{bottom:746.693333pt;}
.y69{bottom:768.933333pt;}
.yb{bottom:772.133333pt;}
.y25{bottom:775.173333pt;}
.y4c{bottom:780.933333pt;}
.y3d{bottom:781.093333pt;}
.y68{bottom:803.493333pt;}
.y24{bottom:809.573333pt;}
.ya{bottom:812.293333pt;}
.y4b{bottom:815.333333pt;}
.y3c{bottom:815.493333pt;}
.y67{bottom:837.893333pt;}
.y23{bottom:843.973333pt;}
.y9{bottom:844.773333pt;}
.y3b{bottom:849.893333pt;}
.y4a{bottom:852.293333pt;}
.y8{bottom:872.933333pt;}
.y66{bottom:873.253333pt;}
.y22{bottom:878.373333pt;}
.y3a{bottom:884.453333pt;}
.y49{bottom:884.613333pt;}
.y7{bottom:907.333333pt;}
.y65{bottom:909.733333pt;}
.y21{bottom:912.933333pt;}
.y39{bottom:918.853333pt;}
.y20{bottom:935.653333pt;}
.y6{bottom:946.853333pt;}
.y38{bottom:953.280000pt;}
.y1f{bottom:953.440000pt;}
.y1e{bottom:973.120000pt;}
.y1d{bottom:992.320000pt;}
.h7{height:37.038437pt;}
.h9{height:42.656250pt;}
.h1{height:45.105313pt;}
.h2{height:49.996250pt;}
.h5{height:54.343750pt;}
.h6{height:55.281250pt;}
.h3{height:58.563750pt;}
.h8{height:63.582187pt;}
.h4{height:72.277187pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:132.031988pt;}
.x3{left:143.066655pt;}
.x6{left:144.026655pt;}
.x8{left:374.946655pt;}
.x7{left:427.106655pt;}
.x4{left:433.826655pt;}
.x5{left:580.413321pt;}
}




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