
    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_b9af4d25c83c84791cc15fa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a62c18094d363e7ac75597e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_79105e9c98e538615cce65b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_0eb942c5966f63caca7276a1.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_b1f847462df9ba11d6d7d705.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws5{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws40{word-spacing:-38.874300px;}
.wsc{word-spacing:-38.653200px;}
.wsa{word-spacing:-38.635200px;}
.ws35{word-spacing:-38.160000px;}
.ws3c{word-spacing:-38.159100px;}
.wsb{word-spacing:-38.151900px;}
.ws46{word-spacing:-38.135700px;}
.ws3e{word-spacing:-38.088000px;}
.ws3{word-spacing:-38.086800px;}
.ws36{word-spacing:-38.075400px;}
.ws34{word-spacing:-37.944000px;}
.ws2f{word-spacing:-37.936800px;}
.ws48{word-spacing:-37.933200px;}
.ws4{word-spacing:-37.862100px;}
.ws7{word-spacing:-37.720800px;}
.ws3a{word-spacing:-37.665900px;}
.ws1b{word-spacing:-37.440000px;}
.ws42{word-spacing:-37.434000px;}
.ws2c{word-spacing:-37.226400px;}
.ws6{word-spacing:-37.218600px;}
.ws44{word-spacing:-37.210500px;}
.ws20{word-spacing:-36.720000px;}
.ws11{word-spacing:-35.784000px;}
.ws2e{word-spacing:-35.776800px;}
.ws16{word-spacing:-35.280000px;}
.ws1a{word-spacing:-34.844400px;}
.ws23{word-spacing:-34.560000px;}
.ws2a{word-spacing:-34.344000px;}
.ws43{word-spacing:-33.837300px;}
.ws3f{word-spacing:-33.624000px;}
.ws2{word-spacing:-33.547800px;}
.wsf{word-spacing:-33.120000px;}
.ws17{word-spacing:-32.904000px;}
.ws15{word-spacing:-32.400000px;}
.ws28{word-spacing:-31.680000px;}
.ws13{word-spacing:-31.464000px;}
.ws2d{word-spacing:-30.524400px;}
.ws10{word-spacing:-29.520000px;}
.ws12{word-spacing:-29.300400px;}
.ws1d{word-spacing:-27.144000px;}
.ws19{word-spacing:-27.136800px;}
.ws29{word-spacing:-26.424000px;}
.ws1e{word-spacing:-26.198400px;}
.ws39{word-spacing:-25.689300px;}
.ws33{word-spacing:-24.990000px;}
.ws21{word-spacing:-24.480000px;}
.ws14{word-spacing:-24.474000px;}
.ws26{word-spacing:-22.107300px;}
.ws25{word-spacing:-21.888000px;}
.ws1c{word-spacing:-21.600000px;}
.ws37{word-spacing:-21.599100px;}
.ws3d{word-spacing:-21.384000px;}
.ws18{word-spacing:-21.168000px;}
.ws27{word-spacing:-20.664000px;}
.ws41{word-spacing:-20.093100px;}
.ws32{word-spacing:-19.944000px;}
.ws45{word-spacing:-19.000800px;}
.wse{word-spacing:-18.000000px;}
.ws30{word-spacing:-17.062200px;}
.ws3b{word-spacing:-15.839100px;}
.ws22{word-spacing:-12.240000px;}
.ws38{word-spacing:-9.135900px;}
.ws9{word-spacing:-8.928000px;}
.ws2b{word-spacing:-8.640000px;}
.ws8{word-spacing:-8.553600px;}
.ws1f{word-spacing:-6.044400px;}
.wsd{word-spacing:-3.160800px;}
.ws24{word-spacing:-2.151600px;}
.ws0{word-spacing:0.000000px;}
.ws31{word-spacing:5.046000px;}
.ws47{word-spacing:12.470400px;}
._5{margin-left:-2.118000px;}
._3{margin-left:-1.115700px;}
._1{width:1.894200px;}
._f{width:16.776000px;}
._2{width:18.934800px;}
._a{width:21.189300px;}
._0{width:22.505400px;}
._1d{width:24.192900px;}
._b{width:25.632000px;}
._11{width:27.539400px;}
._e{width:29.880000px;}
._21{width:31.665300px;}
._13{width:32.983800px;}
._10{width:35.503800px;}
._7{width:36.713400px;}
._1c{width:38.447700px;}
._9{width:40.032000px;}
._1e{width:41.595300px;}
._16{width:43.206000px;}
._15{width:44.353800px;}
._8{width:46.245300px;}
._4{width:48.585600px;}
._c{width:50.449800px;}
._6{width:53.999100px;}
._17{width:55.215600px;}
._1a{width:58.911000px;}
._20{width:62.118000px;}
._12{width:63.144000px;}
._18{width:68.723700px;}
._d{width:70.056000px;}
._19{width:71.569500px;}
._23{width:74.874000px;}
._1f{width:78.989100px;}
._14{width:87.205200px;}
._1b{width:94.032000px;}
._22{width:108.424200px;}
._24{width:137.520000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:32.475000px;}
.y31{bottom:101.775000px;}
.y30{bottom:122.475000px;}
.y2f{bottom:143.175000px;}
.y2e{bottom:163.875000px;}
.y2d{bottom:184.575000px;}
.y2c{bottom:205.275000px;}
.y2b{bottom:225.975000px;}
.y2a{bottom:246.675000px;}
.y29{bottom:267.375000px;}
.y28{bottom:288.075000px;}
.y4e{bottom:290.236500px;}
.y27{bottom:308.775000px;}
.y4d{bottom:310.936500px;}
.y26{bottom:329.475000px;}
.y4c{bottom:346.575000px;}
.y25{bottom:350.175000px;}
.y4b{bottom:367.275000px;}
.y24{bottom:370.875000px;}
.y23{bottom:391.575000px;}
.y4a{bottom:402.915000px;}
.y22{bottom:412.275000px;}
.y49{bottom:423.615000px;}
.y21{bottom:432.975000px;}
.y20{bottom:453.675000px;}
.y48{bottom:459.436500px;}
.y1f{bottom:474.375000px;}
.y47{bottom:480.136500px;}
.y1e{bottom:495.075000px;}
.y46{bottom:500.836500px;}
.y1d{bottom:530.715000px;}
.y45{bottom:536.475000px;}
.y1c{bottom:551.415000px;}
.y44{bottom:557.175000px;}
.y1b{bottom:572.115000px;}
.y1a{bottom:592.815000px;}
.y19{bottom:613.515000px;}
.y43{bottom:628.636500px;}
.y18{bottom:634.215000px;}
.y42{bottom:649.336500px;}
.y17{bottom:654.915000px;}
.y16{bottom:675.615000px;}
.y41{bottom:684.975000px;}
.y15{bottom:696.315000px;}
.y40{bottom:705.675000px;}
.y14{bottom:717.015000px;}
.y13{bottom:737.715000px;}
.y3f{bottom:741.315000px;}
.y12{bottom:758.415000px;}
.y3e{bottom:762.015000px;}
.y11{bottom:779.115000px;}
.y3d{bottom:797.836500px;}
.y10{bottom:799.815000px;}
.y3c{bottom:818.536500px;}
.yf{bottom:820.515000px;}
.y3b{bottom:839.236500px;}
.ye{bottom:856.336500px;}
.y3a{bottom:874.875000px;}
.yd{bottom:891.975000px;}
.y39{bottom:895.575000px;}
.yc{bottom:912.675000px;}
.y38{bottom:931.215000px;}
.yb{bottom:948.315000px;}
.y37{bottom:967.036500px;}
.ya{bottom:984.136500px;}
.y36{bottom:987.736500px;}
.y35{bottom:1008.436500px;}
.y9{bottom:1019.775000px;}
.y34{bottom:1029.136500px;}
.y33{bottom:1049.836500px;}
.y8{bottom:1055.415000px;}
.y32{bottom:1070.536500px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:63.457031px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.xb{left:132.120000px;}
.x5{left:136.800000px;}
.x6{left:348.300000px;}
.x3{left:515.880000px;}
.xa{left:585.720000px;}
.x2{left:604.620000px;}
.x7{left:691.560000px;}
.x9{left:708.478500px;}
.x8{left:709.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws40{word-spacing:-34.554933pt;}
.wsc{word-spacing:-34.358400pt;}
.wsa{word-spacing:-34.342400pt;}
.ws35{word-spacing:-33.920000pt;}
.ws3c{word-spacing:-33.919200pt;}
.wsb{word-spacing:-33.912800pt;}
.ws46{word-spacing:-33.898400pt;}
.ws3e{word-spacing:-33.856000pt;}
.ws3{word-spacing:-33.854933pt;}
.ws36{word-spacing:-33.844800pt;}
.ws34{word-spacing:-33.728000pt;}
.ws2f{word-spacing:-33.721600pt;}
.ws48{word-spacing:-33.718400pt;}
.ws4{word-spacing:-33.655200pt;}
.ws7{word-spacing:-33.529600pt;}
.ws3a{word-spacing:-33.480800pt;}
.ws1b{word-spacing:-33.280000pt;}
.ws42{word-spacing:-33.274667pt;}
.ws2c{word-spacing:-33.090133pt;}
.ws6{word-spacing:-33.083200pt;}
.ws44{word-spacing:-33.076000pt;}
.ws20{word-spacing:-32.640000pt;}
.ws11{word-spacing:-31.808000pt;}
.ws2e{word-spacing:-31.801600pt;}
.ws16{word-spacing:-31.360000pt;}
.ws1a{word-spacing:-30.972800pt;}
.ws23{word-spacing:-30.720000pt;}
.ws2a{word-spacing:-30.528000pt;}
.ws43{word-spacing:-30.077600pt;}
.ws3f{word-spacing:-29.888000pt;}
.ws2{word-spacing:-29.820267pt;}
.wsf{word-spacing:-29.440000pt;}
.ws17{word-spacing:-29.248000pt;}
.ws15{word-spacing:-28.800000pt;}
.ws28{word-spacing:-28.160000pt;}
.ws13{word-spacing:-27.968000pt;}
.ws2d{word-spacing:-27.132800pt;}
.ws10{word-spacing:-26.240000pt;}
.ws12{word-spacing:-26.044800pt;}
.ws1d{word-spacing:-24.128000pt;}
.ws19{word-spacing:-24.121600pt;}
.ws29{word-spacing:-23.488000pt;}
.ws1e{word-spacing:-23.287467pt;}
.ws39{word-spacing:-22.834933pt;}
.ws33{word-spacing:-22.213333pt;}
.ws21{word-spacing:-21.760000pt;}
.ws14{word-spacing:-21.754667pt;}
.ws26{word-spacing:-19.650933pt;}
.ws25{word-spacing:-19.456000pt;}
.ws1c{word-spacing:-19.200000pt;}
.ws37{word-spacing:-19.199200pt;}
.ws3d{word-spacing:-19.008000pt;}
.ws18{word-spacing:-18.816000pt;}
.ws27{word-spacing:-18.368000pt;}
.ws41{word-spacing:-17.860533pt;}
.ws32{word-spacing:-17.728000pt;}
.ws45{word-spacing:-16.889600pt;}
.wse{word-spacing:-16.000000pt;}
.ws30{word-spacing:-15.166400pt;}
.ws3b{word-spacing:-14.079200pt;}
.ws22{word-spacing:-10.880000pt;}
.ws38{word-spacing:-8.120800pt;}
.ws9{word-spacing:-7.936000pt;}
.ws2b{word-spacing:-7.680000pt;}
.ws8{word-spacing:-7.603200pt;}
.ws1f{word-spacing:-5.372800pt;}
.wsd{word-spacing:-2.809600pt;}
.ws24{word-spacing:-1.912533pt;}
.ws0{word-spacing:0.000000pt;}
.ws31{word-spacing:4.485333pt;}
.ws47{word-spacing:11.084800pt;}
._5{margin-left:-1.882667pt;}
._3{margin-left:-0.991733pt;}
._1{width:1.683733pt;}
._f{width:14.912000pt;}
._2{width:16.830933pt;}
._a{width:18.834933pt;}
._0{width:20.004800pt;}
._1d{width:21.504800pt;}
._b{width:22.784000pt;}
._11{width:24.479467pt;}
._e{width:26.560000pt;}
._21{width:28.146933pt;}
._13{width:29.318933pt;}
._10{width:31.558933pt;}
._7{width:32.634133pt;}
._1c{width:34.175733pt;}
._9{width:35.584000pt;}
._1e{width:36.973600pt;}
._16{width:38.405333pt;}
._15{width:39.425600pt;}
._8{width:41.106933pt;}
._4{width:43.187200pt;}
._c{width:44.844267pt;}
._6{width:47.999200pt;}
._17{width:49.080533pt;}
._1a{width:52.365333pt;}
._20{width:55.216000pt;}
._12{width:56.128000pt;}
._18{width:61.087733pt;}
._d{width:62.272000pt;}
._19{width:63.617333pt;}
._23{width:66.554667pt;}
._1f{width:70.212533pt;}
._14{width:77.515733pt;}
._1b{width:83.584000pt;}
._22{width:96.377067pt;}
._24{width:122.240000pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:28.866667pt;}
.y31{bottom:90.466667pt;}
.y30{bottom:108.866667pt;}
.y2f{bottom:127.266667pt;}
.y2e{bottom:145.666667pt;}
.y2d{bottom:164.066667pt;}
.y2c{bottom:182.466667pt;}
.y2b{bottom:200.866667pt;}
.y2a{bottom:219.266667pt;}
.y29{bottom:237.666667pt;}
.y28{bottom:256.066667pt;}
.y4e{bottom:257.988000pt;}
.y27{bottom:274.466667pt;}
.y4d{bottom:276.388000pt;}
.y26{bottom:292.866667pt;}
.y4c{bottom:308.066667pt;}
.y25{bottom:311.266667pt;}
.y4b{bottom:326.466667pt;}
.y24{bottom:329.666667pt;}
.y23{bottom:348.066667pt;}
.y4a{bottom:358.146667pt;}
.y22{bottom:366.466667pt;}
.y49{bottom:376.546667pt;}
.y21{bottom:384.866667pt;}
.y20{bottom:403.266667pt;}
.y48{bottom:408.388000pt;}
.y1f{bottom:421.666667pt;}
.y47{bottom:426.788000pt;}
.y1e{bottom:440.066667pt;}
.y46{bottom:445.188000pt;}
.y1d{bottom:471.746667pt;}
.y45{bottom:476.866667pt;}
.y1c{bottom:490.146667pt;}
.y44{bottom:495.266667pt;}
.y1b{bottom:508.546667pt;}
.y1a{bottom:526.946667pt;}
.y19{bottom:545.346667pt;}
.y43{bottom:558.788000pt;}
.y18{bottom:563.746667pt;}
.y42{bottom:577.188000pt;}
.y17{bottom:582.146667pt;}
.y16{bottom:600.546667pt;}
.y41{bottom:608.866667pt;}
.y15{bottom:618.946667pt;}
.y40{bottom:627.266667pt;}
.y14{bottom:637.346667pt;}
.y13{bottom:655.746667pt;}
.y3f{bottom:658.946667pt;}
.y12{bottom:674.146667pt;}
.y3e{bottom:677.346667pt;}
.y11{bottom:692.546667pt;}
.y3d{bottom:709.188000pt;}
.y10{bottom:710.946667pt;}
.y3c{bottom:727.588000pt;}
.yf{bottom:729.346667pt;}
.y3b{bottom:745.988000pt;}
.ye{bottom:761.188000pt;}
.y3a{bottom:777.666667pt;}
.yd{bottom:792.866667pt;}
.y39{bottom:796.066667pt;}
.yc{bottom:811.266667pt;}
.y38{bottom:827.746667pt;}
.yb{bottom:842.946667pt;}
.y37{bottom:859.588000pt;}
.ya{bottom:874.788000pt;}
.y36{bottom:877.988000pt;}
.y35{bottom:896.388000pt;}
.y9{bottom:906.466667pt;}
.y34{bottom:914.788000pt;}
.y33{bottom:933.188000pt;}
.y8{bottom:938.146667pt;}
.y32{bottom:951.588000pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:56.406250pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.xb{left:117.440000pt;}
.x5{left:121.600000pt;}
.x6{left:309.600000pt;}
.x3{left:458.560000pt;}
.xa{left:520.640000pt;}
.x2{left:537.440000pt;}
.x7{left:614.720000pt;}
.x9{left:629.758667pt;}
.x8{left:630.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; }
  