
    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_5dec72dc8f65d1ddf9f4812d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_a74f58a0827233b0088374b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_52ca20927c633c27dd0300f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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_b7b94275ed8a4cd64ba574f0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5c8718ddf298d4815534e136.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_b8b5743073a863e9c93e0ce8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_71162bf1367f8b872a3175de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-63.071100px;}
.ws2e{word-spacing:-55.944000px;}
.ws35{word-spacing:-38.656800px;}
.ws6{word-spacing:-38.654100px;}
.ws16{word-spacing:-38.651400px;}
.ws5d{word-spacing:-38.649900px;}
.ws2b{word-spacing:-38.588400px;}
.ws1c{word-spacing:-38.582100px;}
.ws4f{word-spacing:-38.448000px;}
.wse{word-spacing:-38.435400px;}
.ws5b{word-spacing:-38.428500px;}
.ws44{word-spacing:-38.424000px;}
.ws3{word-spacing:-38.363400px;}
.ws45{word-spacing:-38.353800px;}
.ws5{word-spacing:-38.161500px;}
.ws5e{word-spacing:-38.157300px;}
.ws4e{word-spacing:-38.156400px;}
.ws33{word-spacing:-38.154600px;}
.ws48{word-spacing:-38.152800px;}
.ws53{word-spacing:-38.143200px;}
.ws32{word-spacing:-38.129700px;}
.ws23{word-spacing:-37.944000px;}
.ws50{word-spacing:-37.936800px;}
.ws3f{word-spacing:-37.932300px;}
.ws9{word-spacing:-37.926000px;}
.ws20{word-spacing:-37.925100px;}
.ws4{word-spacing:-37.704600px;}
.ws5f{word-spacing:-37.222800px;}
.ws34{word-spacing:-37.204200px;}
.ws4d{word-spacing:-36.501300px;}
.ws38{word-spacing:-36.495900px;}
.ws21{word-spacing:-35.919900px;}
.ws2f{word-spacing:-34.331400px;}
.ws15{word-spacing:-34.113600px;}
.ws2{word-spacing:-33.547800px;}
.ws43{word-spacing:-33.081600px;}
.wsb{word-spacing:-32.383200px;}
.ws22{word-spacing:-31.960800px;}
.ws3a{word-spacing:-31.885200px;}
.ws39{word-spacing:-31.461300px;}
.ws3b{word-spacing:-31.240200px;}
.ws25{word-spacing:-30.956400px;}
.ws5c{word-spacing:-29.300400px;}
.ws12{word-spacing:-29.296800px;}
.wsc{word-spacing:-29.291400px;}
.wsf{word-spacing:-29.283300px;}
.ws24{word-spacing:-28.788600px;}
.ws37{word-spacing:-28.577400px;}
.ws27{word-spacing:-28.571400px;}
.ws1b{word-spacing:-27.838800px;}
.wsa{word-spacing:-27.640800px;}
.ws41{word-spacing:-27.139200px;}
.ws36{word-spacing:-26.925000px;}
.ws5a{word-spacing:-25.913700px;}
.ws55{word-spacing:-25.704000px;}
.ws54{word-spacing:-25.702800px;}
.ws59{word-spacing:-25.689000px;}
.ws3e{word-spacing:-24.969600px;}
.ws51{word-spacing:-24.262200px;}
.ws4b{word-spacing:-23.547300px;}
.ws4c{word-spacing:-23.538600px;}
.ws1e{word-spacing:-23.023200px;}
.ws31{word-spacing:-19.436400px;}
.ws3d{word-spacing:-18.283200px;}
.ws30{word-spacing:-18.277200px;}
.ws1f{word-spacing:-17.778600px;}
.ws2a{word-spacing:-17.049600px;}
.ws18{word-spacing:-15.836400px;}
.ws8{word-spacing:-15.395400px;}
.ws42{word-spacing:-15.126000px;}
.ws7{word-spacing:-15.112800px;}
.ws40{word-spacing:-14.686800px;}
.ws1d{word-spacing:-14.390400px;}
.ws26{word-spacing:-14.182800px;}
.ws57{word-spacing:-13.249500px;}
.ws56{word-spacing:-13.228500px;}
.ws3c{word-spacing:-12.957000px;}
.ws58{word-spacing:-12.750000px;}
.ws2c{word-spacing:-12.016800px;}
.ws2d{word-spacing:-11.515500px;}
.ws4a{word-spacing:-11.505600px;}
.ws29{word-spacing:-11.295000px;}
.ws49{word-spacing:-11.287200px;}
.ws19{word-spacing:-9.860400px;}
.ws10{word-spacing:-9.135000px;}
.ws17{word-spacing:-8.640000px;}
.ws1a{word-spacing:-7.693200px;}
.ws13{word-spacing:-6.971400px;}
.wsd{word-spacing:-3.373200px;}
.ws52{word-spacing:-1.222200px;}
.ws28{word-spacing:-0.253200px;}
.ws60{word-spacing:0.000000px;}
.ws47{word-spacing:3.819600px;}
.ws46{word-spacing:3.824700px;}
.ws11{word-spacing:7.218000px;}
.ws14{word-spacing:14.628600px;}
.ws1{word-spacing:1871.357400px;}
._16{margin-left:-2.371500px;}
._4{margin-left:-1.024200px;}
._0{width:1.148400px;}
._1c{width:17.386800px;}
._2{width:18.442800px;}
._1{width:19.558800px;}
._f{width:20.643000px;}
._14{width:21.885900px;}
._1a{width:23.528400px;}
._6{width:25.333200px;}
._15{width:26.593800px;}
._9{width:27.759300px;}
._5{width:29.806800px;}
._23{width:31.180500px;}
._1e{width:32.247600px;}
._12{width:34.048800px;}
._1b{width:37.870800px;}
._13{width:39.377400px;}
._19{width:40.605000px;}
._3{width:42.033600px;}
._11{width:43.165800px;}
._1d{width:44.566800px;}
._18{width:45.895200px;}
._10{width:47.542200px;}
._a{width:48.588000px;}
._c{width:50.391000px;}
._d{width:51.538200px;}
._7{width:53.574000px;}
._8{width:54.637800px;}
._17{width:57.709200px;}
._20{width:60.972600px;}
._b{width:64.447800px;}
._e{width:71.777400px;}
._21{width:162.000000px;}
._1f{width:180.000000px;}
._22{width:198.000000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y33{bottom:115.275000px;}
.y32{bottom:135.975000px;}
.y31{bottom:156.675000px;}
.y30{bottom:177.375000px;}
.y2f{bottom:198.075000px;}
.y2e{bottom:239.655000px;}
.y2d{bottom:260.355000px;}
.y2c{bottom:281.055000px;}
.y2b{bottom:301.755000px;}
.y2a{bottom:322.455000px;}
.y29{bottom:343.155000px;}
.y53{bottom:362.955000px;}
.y28{bottom:363.855000px;}
.y52{bottom:383.655000px;}
.y27{bottom:384.555000px;}
.y51{bottom:404.355000px;}
.y26{bottom:405.255000px;}
.y50{bottom:425.055000px;}
.y25{bottom:425.955000px;}
.y4f{bottom:445.755000px;}
.y24{bottom:446.655000px;}
.y4e{bottom:466.455000px;}
.y23{bottom:467.355000px;}
.y4d{bottom:487.155000px;}
.y22{bottom:488.055000px;}
.y4c{bottom:507.855000px;}
.y21{bottom:508.755000px;}
.y4b{bottom:528.555000px;}
.y20{bottom:529.455000px;}
.y4a{bottom:549.255000px;}
.y1f{bottom:550.155000px;}
.y49{bottom:569.955000px;}
.y1e{bottom:570.855000px;}
.y48{bottom:590.655000px;}
.y1d{bottom:591.555000px;}
.y47{bottom:611.355000px;}
.y1c{bottom:612.255000px;}
.y46{bottom:632.055000px;}
.y1b{bottom:632.955000px;}
.y45{bottom:652.755000px;}
.y1a{bottom:653.655000px;}
.y44{bottom:673.455000px;}
.y19{bottom:674.355000px;}
.y43{bottom:694.155000px;}
.y18{bottom:695.055000px;}
.y42{bottom:714.855000px;}
.y17{bottom:715.755000px;}
.y41{bottom:735.555000px;}
.y16{bottom:736.455000px;}
.y15{bottom:757.155000px;}
.y40{bottom:777.315000px;}
.y14{bottom:777.855000px;}
.y3f{bottom:798.015000px;}
.y13{bottom:798.555000px;}
.y3e{bottom:818.715000px;}
.y12{bottom:819.255000px;}
.y3d{bottom:839.415000px;}
.y11{bottom:839.955000px;}
.y3c{bottom:860.115000px;}
.y10{bottom:860.655000px;}
.y3b{bottom:880.815000px;}
.yf{bottom:881.355000px;}
.y3a{bottom:901.515000px;}
.ye{bottom:902.055000px;}
.yd{bottom:922.755000px;}
.y39{bottom:943.095000px;}
.yc{bottom:943.455000px;}
.y38{bottom:963.795000px;}
.yb{bottom:964.155000px;}
.y37{bottom:984.495000px;}
.ya{bottom:984.855000px;}
.y36{bottom:1005.195000px;}
.y9{bottom:1005.555000px;}
.y35{bottom:1025.895000px;}
.y8{bottom:1046.955000px;}
.y7{bottom:1067.655000px;}
.y34{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h7{height:48.761719px;}
.h6{height:48.796875px;}
.h5{height:49.304150px;}
.h8{height:49.992188px;}
.h9{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:180.180000px;}
.x9{left:183.238500px;}
.x5{left:321.300000px;}
.x7{left:339.300000px;}
.x3{left:475.350000px;}
.x6{left:565.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws2e{word-spacing:-49.728000pt;}
.ws35{word-spacing:-34.361600pt;}
.ws6{word-spacing:-34.359200pt;}
.ws16{word-spacing:-34.356800pt;}
.ws5d{word-spacing:-34.355467pt;}
.ws2b{word-spacing:-34.300800pt;}
.ws1c{word-spacing:-34.295200pt;}
.ws4f{word-spacing:-34.176000pt;}
.wse{word-spacing:-34.164800pt;}
.ws5b{word-spacing:-34.158667pt;}
.ws44{word-spacing:-34.154667pt;}
.ws3{word-spacing:-34.100800pt;}
.ws45{word-spacing:-34.092267pt;}
.ws5{word-spacing:-33.921333pt;}
.ws5e{word-spacing:-33.917600pt;}
.ws4e{word-spacing:-33.916800pt;}
.ws33{word-spacing:-33.915200pt;}
.ws48{word-spacing:-33.913600pt;}
.ws53{word-spacing:-33.905067pt;}
.ws32{word-spacing:-33.893067pt;}
.ws23{word-spacing:-33.728000pt;}
.ws50{word-spacing:-33.721600pt;}
.ws3f{word-spacing:-33.717600pt;}
.ws9{word-spacing:-33.712000pt;}
.ws20{word-spacing:-33.711200pt;}
.ws4{word-spacing:-33.515200pt;}
.ws5f{word-spacing:-33.086933pt;}
.ws34{word-spacing:-33.070400pt;}
.ws4d{word-spacing:-32.445600pt;}
.ws38{word-spacing:-32.440800pt;}
.ws21{word-spacing:-31.928800pt;}
.ws2f{word-spacing:-30.516800pt;}
.ws15{word-spacing:-30.323200pt;}
.ws2{word-spacing:-29.820267pt;}
.ws43{word-spacing:-29.405867pt;}
.wsb{word-spacing:-28.785067pt;}
.ws22{word-spacing:-28.409600pt;}
.ws3a{word-spacing:-28.342400pt;}
.ws39{word-spacing:-27.965600pt;}
.ws3b{word-spacing:-27.769067pt;}
.ws25{word-spacing:-27.516800pt;}
.ws5c{word-spacing:-26.044800pt;}
.ws12{word-spacing:-26.041600pt;}
.wsc{word-spacing:-26.036800pt;}
.wsf{word-spacing:-26.029600pt;}
.ws24{word-spacing:-25.589867pt;}
.ws37{word-spacing:-25.402133pt;}
.ws27{word-spacing:-25.396800pt;}
.ws1b{word-spacing:-24.745600pt;}
.wsa{word-spacing:-24.569600pt;}
.ws41{word-spacing:-24.123733pt;}
.ws36{word-spacing:-23.933333pt;}
.ws5a{word-spacing:-23.034400pt;}
.ws55{word-spacing:-22.848000pt;}
.ws54{word-spacing:-22.846933pt;}
.ws59{word-spacing:-22.834667pt;}
.ws3e{word-spacing:-22.195200pt;}
.ws51{word-spacing:-21.566400pt;}
.ws4b{word-spacing:-20.930933pt;}
.ws4c{word-spacing:-20.923200pt;}
.ws1e{word-spacing:-20.465067pt;}
.ws31{word-spacing:-17.276800pt;}
.ws3d{word-spacing:-16.251733pt;}
.ws30{word-spacing:-16.246400pt;}
.ws1f{word-spacing:-15.803200pt;}
.ws2a{word-spacing:-15.155200pt;}
.ws18{word-spacing:-14.076800pt;}
.ws8{word-spacing:-13.684800pt;}
.ws42{word-spacing:-13.445333pt;}
.ws7{word-spacing:-13.433600pt;}
.ws40{word-spacing:-13.054933pt;}
.ws1d{word-spacing:-12.791467pt;}
.ws26{word-spacing:-12.606933pt;}
.ws57{word-spacing:-11.777333pt;}
.ws56{word-spacing:-11.758667pt;}
.ws3c{word-spacing:-11.517333pt;}
.ws58{word-spacing:-11.333333pt;}
.ws2c{word-spacing:-10.681600pt;}
.ws2d{word-spacing:-10.236000pt;}
.ws4a{word-spacing:-10.227200pt;}
.ws29{word-spacing:-10.040000pt;}
.ws49{word-spacing:-10.033067pt;}
.ws19{word-spacing:-8.764800pt;}
.ws10{word-spacing:-8.120000pt;}
.ws17{word-spacing:-7.680000pt;}
.ws1a{word-spacing:-6.838400pt;}
.ws13{word-spacing:-6.196800pt;}
.wsd{word-spacing:-2.998400pt;}
.ws52{word-spacing:-1.086400pt;}
.ws28{word-spacing:-0.225067pt;}
.ws60{word-spacing:0.000000pt;}
.ws47{word-spacing:3.395200pt;}
.ws46{word-spacing:3.399733pt;}
.ws11{word-spacing:6.416000pt;}
.ws14{word-spacing:13.003200pt;}
.ws1{word-spacing:1663.428800pt;}
._16{margin-left:-2.108000pt;}
._4{margin-left:-0.910400pt;}
._0{width:1.020800pt;}
._1c{width:15.454933pt;}
._2{width:16.393600pt;}
._1{width:17.385600pt;}
._f{width:18.349333pt;}
._14{width:19.454133pt;}
._1a{width:20.914133pt;}
._6{width:22.518400pt;}
._15{width:23.638933pt;}
._9{width:24.674933pt;}
._5{width:26.494933pt;}
._23{width:27.716000pt;}
._1e{width:28.664533pt;}
._12{width:30.265600pt;}
._1b{width:33.662933pt;}
._13{width:35.002133pt;}
._19{width:36.093333pt;}
._3{width:37.363200pt;}
._11{width:38.369600pt;}
._1d{width:39.614933pt;}
._18{width:40.795733pt;}
._10{width:42.259733pt;}
._a{width:43.189333pt;}
._c{width:44.792000pt;}
._d{width:45.811733pt;}
._7{width:47.621333pt;}
._8{width:48.566933pt;}
._17{width:51.297067pt;}
._20{width:54.197867pt;}
._b{width:57.286933pt;}
._e{width:63.802133pt;}
._21{width:144.000000pt;}
._1f{width:160.000000pt;}
._22{width:176.000000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y33{bottom:102.466667pt;}
.y32{bottom:120.866667pt;}
.y31{bottom:139.266667pt;}
.y30{bottom:157.666667pt;}
.y2f{bottom:176.066667pt;}
.y2e{bottom:213.026667pt;}
.y2d{bottom:231.426667pt;}
.y2c{bottom:249.826667pt;}
.y2b{bottom:268.226667pt;}
.y2a{bottom:286.626667pt;}
.y29{bottom:305.026667pt;}
.y53{bottom:322.626667pt;}
.y28{bottom:323.426667pt;}
.y52{bottom:341.026667pt;}
.y27{bottom:341.826667pt;}
.y51{bottom:359.426667pt;}
.y26{bottom:360.226667pt;}
.y50{bottom:377.826667pt;}
.y25{bottom:378.626667pt;}
.y4f{bottom:396.226667pt;}
.y24{bottom:397.026667pt;}
.y4e{bottom:414.626667pt;}
.y23{bottom:415.426667pt;}
.y4d{bottom:433.026667pt;}
.y22{bottom:433.826667pt;}
.y4c{bottom:451.426667pt;}
.y21{bottom:452.226667pt;}
.y4b{bottom:469.826667pt;}
.y20{bottom:470.626667pt;}
.y4a{bottom:488.226667pt;}
.y1f{bottom:489.026667pt;}
.y49{bottom:506.626667pt;}
.y1e{bottom:507.426667pt;}
.y48{bottom:525.026667pt;}
.y1d{bottom:525.826667pt;}
.y47{bottom:543.426667pt;}
.y1c{bottom:544.226667pt;}
.y46{bottom:561.826667pt;}
.y1b{bottom:562.626667pt;}
.y45{bottom:580.226667pt;}
.y1a{bottom:581.026667pt;}
.y44{bottom:598.626667pt;}
.y19{bottom:599.426667pt;}
.y43{bottom:617.026667pt;}
.y18{bottom:617.826667pt;}
.y42{bottom:635.426667pt;}
.y17{bottom:636.226667pt;}
.y41{bottom:653.826667pt;}
.y16{bottom:654.626667pt;}
.y15{bottom:673.026667pt;}
.y40{bottom:690.946667pt;}
.y14{bottom:691.426667pt;}
.y3f{bottom:709.346667pt;}
.y13{bottom:709.826667pt;}
.y3e{bottom:727.746667pt;}
.y12{bottom:728.226667pt;}
.y3d{bottom:746.146667pt;}
.y11{bottom:746.626667pt;}
.y3c{bottom:764.546667pt;}
.y10{bottom:765.026667pt;}
.y3b{bottom:782.946667pt;}
.yf{bottom:783.426667pt;}
.y3a{bottom:801.346667pt;}
.ye{bottom:801.826667pt;}
.yd{bottom:820.226667pt;}
.y39{bottom:838.306667pt;}
.yc{bottom:838.626667pt;}
.y38{bottom:856.706667pt;}
.yb{bottom:857.026667pt;}
.y37{bottom:875.106667pt;}
.ya{bottom:875.426667pt;}
.y36{bottom:893.506667pt;}
.y9{bottom:893.826667pt;}
.y35{bottom:911.906667pt;}
.y8{bottom:930.626667pt;}
.y7{bottom:949.026667pt;}
.y34{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h7{height:43.343750pt;}
.h6{height:43.375000pt;}
.h5{height:43.825911pt;}
.h8{height:44.437500pt;}
.h9{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:160.160000pt;}
.x9{left:162.878667pt;}
.x5{left:285.600000pt;}
.x7{left:301.600000pt;}
.x3{left:422.533333pt;}
.x6{left:502.720000pt;}
}




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