
    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_2fe981094814ae1a0ea5e609.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_c59e1efc1eb1d987bc916b9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967000;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_b06bf521319e6f2dc28af2e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_110f18ef9a9a9baf333e9965.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.840000;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_9b97d67dd7d250d1e6624173.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.965000;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_f887fb8799fd85e6a8424892.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.829000;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_c755ab3ae2b1387989214077.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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:ff8;src:url('chunks/assets/font_c3c952fb9ec5403fdd8c09aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.915039;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.595000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-2.331000px;}
.ls4{letter-spacing:-0.756000px;}
.ls1c{letter-spacing:-0.708000px;}
.ls3{letter-spacing:-0.693000px;}
.ls1{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.441000px;}
.lsf{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.189000px;}
.ls2{letter-spacing:-0.126000px;}
.ls14{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.063000px;}
.ls5{letter-spacing:0.126000px;}
.ls13{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.252000px;}
.ls11{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.441000px;}
.ls19{letter-spacing:0.468000px;}
.ls12{letter-spacing:0.567000px;}
.ls15{letter-spacing:0.684000px;}
.ls6{letter-spacing:0.756000px;}
.lse{letter-spacing:0.819000px;}
.lsd{letter-spacing:0.882000px;}
.lsc{letter-spacing:0.945000px;}
.ls17{letter-spacing:1.071000px;}
.ls10{letter-spacing:1.197000px;}
.ls18{letter-spacing:1.323000px;}
.ls1b{letter-spacing:3.936000px;}
.ls1a{letter-spacing:4.800000px;}
.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;}
}
.ws7{word-spacing:-60.000000px;}
.ws0{word-spacing:-14.364000px;}
.ws1{word-spacing:-13.986000px;}
.ws4{word-spacing:-13.923000px;}
.ws5{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.734000px;}
.ws3{word-spacing:-13.419000px;}
.ws6{word-spacing:-13.230000px;}
.ws33{word-spacing:-8.424000px;}
.ws34{word-spacing:-4.800000px;}
.ws35{word-spacing:-3.936000px;}
.wse{word-spacing:-3.150000px;}
.wsf{word-spacing:-3.087000px;}
.ws10{word-spacing:-2.961000px;}
.ws26{word-spacing:-2.835000px;}
.ws12{word-spacing:-2.772000px;}
.ws22{word-spacing:-2.646000px;}
.ws2e{word-spacing:-2.520000px;}
.ws19{word-spacing:-2.331000px;}
.ws20{word-spacing:-1.638000px;}
.ws2c{word-spacing:-1.116000px;}
.ws1d{word-spacing:-0.945000px;}
.ws15{word-spacing:-0.756000px;}
.ws1e{word-spacing:-0.693000px;}
.ws9{word-spacing:-0.315000px;}
.ws27{word-spacing:-0.189000px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:0.189000px;}
.ws28{word-spacing:0.252000px;}
.ws18{word-spacing:0.315000px;}
.ws2a{word-spacing:0.378000px;}
.wsa{word-spacing:0.504000px;}
.ws29{word-spacing:0.756000px;}
.ws17{word-spacing:0.882000px;}
.ws23{word-spacing:1.008000px;}
.ws21{word-spacing:1.386000px;}
.ws13{word-spacing:2.331000px;}
.wsd{word-spacing:2.583000px;}
.wsb{word-spacing:3.339000px;}
.wsc{word-spacing:3.465000px;}
.ws2b{word-spacing:3.969000px;}
.ws11{word-spacing:4.032000px;}
.ws30{word-spacing:4.095000px;}
.ws24{word-spacing:4.158000px;}
.ws25{word-spacing:4.284000px;}
.ws14{word-spacing:4.410000px;}
.ws2f{word-spacing:4.536000px;}
.ws2d{word-spacing:4.725000px;}
.ws37{word-spacing:4.800000px;}
.ws1c{word-spacing:4.851000px;}
.ws1a{word-spacing:5.544000px;}
.ws36{word-spacing:5.790000px;}
.ws31{word-spacing:6.237000px;}
.ws1f{word-spacing:6.489000px;}
.ws1b{word-spacing:7.245000px;}
.ws32{word-spacing:8.001000px;}
._9{margin-left:-13.923000px;}
._b{margin-left:-12.353400px;}
._3{margin-left:-9.547200px;}
._6{margin-left:-5.216400px;}
._0{margin-left:-4.046400px;}
._5{margin-left:-3.011400px;}
._1{margin-left:-1.929600px;}
._2{width:1.684800px;}
._4{width:2.977200px;}
._7{width:5.103900px;}
._c{width:7.254000px;}
._d{width:9.594000px;}
._8{width:38.115000px;}
._a{width:49.062000px;}
.fc4{color:rgb(235,113,5);}
.fc3{color:rgb(140,139,145);}
.fc2{color:rgb(2,18,55);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(11,187,239);}
.fs4{font-size:36.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:6.269850px;}
.y40{bottom:363.534000px;}
.y23{bottom:447.086700px;}
.y30{bottom:451.656450px;}
.y22{bottom:465.088950px;}
.y37{bottom:465.154050px;}
.y2f{bottom:467.410950px;}
.y21{bottom:483.091200px;}
.y36{bottom:483.156300px;}
.y2e{bottom:483.165450px;}
.y20{bottom:501.093450px;}
.y35{bottom:501.158550px;}
.y1f{bottom:519.095700px;}
.y34{bottom:519.160800px;}
.y1e{bottom:537.097950px;}
.y33{bottom:537.163050px;}
.y1d{bottom:555.100200px;}
.y32{bottom:555.165300px;}
.y1c{bottom:573.102450px;}
.y38{bottom:589.561050px;}
.y1b{bottom:591.104700px;}
.y1a{bottom:609.106950px;}
.y31{bottom:642.653550px;}
.y2d{bottom:645.064200px;}
.y19{bottom:645.111450px;}
.y2c{bottom:663.066450px;}
.y18{bottom:663.113700px;}
.y2b{bottom:681.068700px;}
.y17{bottom:681.115950px;}
.y2a{bottom:699.070950px;}
.y16{bottom:699.118200px;}
.y15{bottom:717.120450px;}
.y29{bottom:735.075450px;}
.y14{bottom:735.122700px;}
.y28{bottom:753.077700px;}
.y13{bottom:753.124950px;}
.y27{bottom:771.079950px;}
.y12{bottom:771.127200px;}
.y26{bottom:789.082200px;}
.y11{bottom:789.129450px;}
.y25{bottom:807.084450px;}
.y10{bottom:807.131700px;}
.y24{bottom:825.086700px;}
.yf{bottom:825.133950px;}
.ye{bottom:843.136200px;}
.yd{bottom:861.138450px;}
.y3a{bottom:863.410800px;}
.yc{bottom:879.140700px;}
.y39{bottom:879.165300px;}
.yb{bottom:915.145200px;}
.ya{bottom:933.147450px;}
.y9{bottom:951.149700px;}
.y8{bottom:969.151950px;}
.y7{bottom:987.154200px;}
.y6{bottom:1005.156450px;}
.y5{bottom:1023.158700px;}
.y4{bottom:1041.160950px;}
.y3{bottom:1059.163200px;}
.y2{bottom:1077.165450px;}
.y3b{bottom:1095.165450px;}
.y1{bottom:1113.165300px;}
.y3d{bottom:1196.554500px;}
.y3f{bottom:1201.738500px;}
.y3c{bottom:1203.165300px;}
.hd{height:19.009500px;}
.ha{height:27.648000px;}
.h9{height:41.472000px;}
.h4{height:41.580000px;}
.h10{height:42.363281px;}
.he{height:43.776000px;}
.h6{height:48.384000px;}
.h7{height:49.455000px;}
.h5{height:49.581000px;}
.h3{height:50.274000px;}
.h8{height:66.741000px;}
.hc{height:73.728000px;}
.hf{height:76.608000px;}
.hb{height:78.000000px;}
.h2{height:110.592000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:886.911000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:6.003000px;}
.x7{left:59.899650px;}
.x2{left:63.779550px;}
.x1{left:65.905500px;}
.xe{left:87.165000px;}
.x3{left:331.655550px;}
.x4{left:348.665550px;}
.x5{left:599.531550px;}
.x8{left:608.031450px;}
.x6{left:616.541550px;}
.x9{left:652.483050px;}
.xd{left:686.272200px;}
.xa{left:852.522600px;}
.xb{left:856.771650px;}
@media print{
.v1{vertical-align:-10.306667pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.072000pt;}
.ls4{letter-spacing:-0.672000pt;}
.ls1c{letter-spacing:-0.629333pt;}
.ls3{letter-spacing:-0.616000pt;}
.ls1{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.392000pt;}
.lsf{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.168000pt;}
.ls2{letter-spacing:-0.112000pt;}
.ls14{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.056000pt;}
.ls5{letter-spacing:0.112000pt;}
.ls13{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.224000pt;}
.ls11{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.392000pt;}
.ls19{letter-spacing:0.416000pt;}
.ls12{letter-spacing:0.504000pt;}
.ls15{letter-spacing:0.608000pt;}
.ls6{letter-spacing:0.672000pt;}
.lse{letter-spacing:0.728000pt;}
.lsd{letter-spacing:0.784000pt;}
.lsc{letter-spacing:0.840000pt;}
.ls17{letter-spacing:0.952000pt;}
.ls10{letter-spacing:1.064000pt;}
.ls18{letter-spacing:1.176000pt;}
.ls1b{letter-spacing:3.498667pt;}
.ls1a{letter-spacing:4.266667pt;}
.ws7{word-spacing:-53.333333pt;}
.ws0{word-spacing:-12.768000pt;}
.ws1{word-spacing:-12.432000pt;}
.ws4{word-spacing:-12.376000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.208000pt;}
.ws3{word-spacing:-11.928000pt;}
.ws6{word-spacing:-11.760000pt;}
.ws33{word-spacing:-7.488000pt;}
.ws34{word-spacing:-4.266667pt;}
.ws35{word-spacing:-3.498667pt;}
.wse{word-spacing:-2.800000pt;}
.wsf{word-spacing:-2.744000pt;}
.ws10{word-spacing:-2.632000pt;}
.ws26{word-spacing:-2.520000pt;}
.ws12{word-spacing:-2.464000pt;}
.ws22{word-spacing:-2.352000pt;}
.ws2e{word-spacing:-2.240000pt;}
.ws19{word-spacing:-2.072000pt;}
.ws20{word-spacing:-1.456000pt;}
.ws2c{word-spacing:-0.992000pt;}
.ws1d{word-spacing:-0.840000pt;}
.ws15{word-spacing:-0.672000pt;}
.ws1e{word-spacing:-0.616000pt;}
.ws9{word-spacing:-0.280000pt;}
.ws27{word-spacing:-0.168000pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:0.168000pt;}
.ws28{word-spacing:0.224000pt;}
.ws18{word-spacing:0.280000pt;}
.ws2a{word-spacing:0.336000pt;}
.wsa{word-spacing:0.448000pt;}
.ws29{word-spacing:0.672000pt;}
.ws17{word-spacing:0.784000pt;}
.ws23{word-spacing:0.896000pt;}
.ws21{word-spacing:1.232000pt;}
.ws13{word-spacing:2.072000pt;}
.wsd{word-spacing:2.296000pt;}
.wsb{word-spacing:2.968000pt;}
.wsc{word-spacing:3.080000pt;}
.ws2b{word-spacing:3.528000pt;}
.ws11{word-spacing:3.584000pt;}
.ws30{word-spacing:3.640000pt;}
.ws24{word-spacing:3.696000pt;}
.ws25{word-spacing:3.808000pt;}
.ws14{word-spacing:3.920000pt;}
.ws2f{word-spacing:4.032000pt;}
.ws2d{word-spacing:4.200000pt;}
.ws37{word-spacing:4.266667pt;}
.ws1c{word-spacing:4.312000pt;}
.ws1a{word-spacing:4.928000pt;}
.ws36{word-spacing:5.146667pt;}
.ws31{word-spacing:5.544000pt;}
.ws1f{word-spacing:5.768000pt;}
.ws1b{word-spacing:6.440000pt;}
.ws32{word-spacing:7.112000pt;}
._9{margin-left:-12.376000pt;}
._b{margin-left:-10.980800pt;}
._3{margin-left:-8.486400pt;}
._6{margin-left:-4.636800pt;}
._0{margin-left:-3.596800pt;}
._5{margin-left:-2.676800pt;}
._1{margin-left:-1.715200pt;}
._2{width:1.497600pt;}
._4{width:2.646400pt;}
._7{width:4.536800pt;}
._c{width:6.448000pt;}
._d{width:8.528000pt;}
._8{width:33.880000pt;}
._a{width:43.610667pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:5.573200pt;}
.y40{bottom:323.141333pt;}
.y23{bottom:397.410400pt;}
.y30{bottom:401.472400pt;}
.y22{bottom:413.412400pt;}
.y37{bottom:413.470267pt;}
.y2f{bottom:415.476400pt;}
.y21{bottom:429.414400pt;}
.y36{bottom:429.472267pt;}
.y2e{bottom:429.480400pt;}
.y20{bottom:445.416400pt;}
.y35{bottom:445.474267pt;}
.y1f{bottom:461.418400pt;}
.y34{bottom:461.476267pt;}
.y1e{bottom:477.420400pt;}
.y33{bottom:477.478267pt;}
.y1d{bottom:493.422400pt;}
.y32{bottom:493.480267pt;}
.y1c{bottom:509.424400pt;}
.y38{bottom:524.054267pt;}
.y1b{bottom:525.426400pt;}
.y1a{bottom:541.428400pt;}
.y31{bottom:571.247600pt;}
.y2d{bottom:573.390400pt;}
.y19{bottom:573.432400pt;}
.y2c{bottom:589.392400pt;}
.y18{bottom:589.434400pt;}
.y2b{bottom:605.394400pt;}
.y17{bottom:605.436400pt;}
.y2a{bottom:621.396400pt;}
.y16{bottom:621.438400pt;}
.y15{bottom:637.440400pt;}
.y29{bottom:653.400400pt;}
.y14{bottom:653.442400pt;}
.y28{bottom:669.402400pt;}
.y13{bottom:669.444400pt;}
.y27{bottom:685.404400pt;}
.y12{bottom:685.446400pt;}
.y26{bottom:701.406400pt;}
.y11{bottom:701.448400pt;}
.y25{bottom:717.408400pt;}
.y10{bottom:717.450400pt;}
.y24{bottom:733.410400pt;}
.yf{bottom:733.452400pt;}
.ye{bottom:749.454400pt;}
.yd{bottom:765.456400pt;}
.y3a{bottom:767.476267pt;}
.yc{bottom:781.458400pt;}
.y39{bottom:781.480267pt;}
.yb{bottom:813.462400pt;}
.ya{bottom:829.464400pt;}
.y9{bottom:845.466400pt;}
.y8{bottom:861.468400pt;}
.y7{bottom:877.470400pt;}
.y6{bottom:893.472400pt;}
.y5{bottom:909.474400pt;}
.y4{bottom:925.476400pt;}
.y3{bottom:941.478400pt;}
.y2{bottom:957.480400pt;}
.y3b{bottom:973.480400pt;}
.y1{bottom:989.480267pt;}
.y3d{bottom:1063.604000pt;}
.y3f{bottom:1068.212000pt;}
.y3c{bottom:1069.480267pt;}
.hd{height:16.897333pt;}
.ha{height:24.576000pt;}
.h9{height:36.864000pt;}
.h4{height:36.960000pt;}
.h10{height:37.656250pt;}
.he{height:38.912000pt;}
.h6{height:43.008000pt;}
.h7{height:43.960000pt;}
.h5{height:44.072000pt;}
.h3{height:44.688000pt;}
.h8{height:59.325333pt;}
.hc{height:65.536000pt;}
.hf{height:68.096000pt;}
.hb{height:69.333333pt;}
.h2{height:98.304000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:788.365333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:5.336000pt;}
.x7{left:53.244133pt;}
.x2{left:56.692933pt;}
.x1{left:58.582667pt;}
.xe{left:77.480000pt;}
.x3{left:294.804933pt;}
.x4{left:309.924933pt;}
.x5{left:532.916933pt;}
.x8{left:540.472400pt;}
.x6{left:548.036933pt;}
.x9{left:579.984933pt;}
.xd{left:610.019733pt;}
.xa{left:757.797867pt;}
.xb{left:761.574800pt;}
}




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