
    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_2def320c6a89c6bf11450557.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63c82747823b3ef666385ea3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_3139eb4bd1e3dd4da1101455.woff')format("woff");}.ff3{font-family:ff3;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;}
}
.ws5{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.860500px;}
.ws39{word-spacing:-38.661000px;}
.ws4{word-spacing:-38.656800px;}
.ws16{word-spacing:-38.654700px;}
.ws2b{word-spacing:-38.580000px;}
.ws36{word-spacing:-38.160600px;}
.ws17{word-spacing:-38.160000px;}
.ws3b{word-spacing:-38.156400px;}
.ws3{word-spacing:-38.154600px;}
.ws58{word-spacing:-38.152800px;}
.ws4d{word-spacing:-38.151000px;}
.ws23{word-spacing:-38.150400px;}
.ws18{word-spacing:-38.150100px;}
.wse{word-spacing:-38.149200px;}
.ws4c{word-spacing:-38.147400px;}
.ws46{word-spacing:-38.132400px;}
.wsc{word-spacing:-38.094000px;}
.ws7{word-spacing:-38.086200px;}
.ws2{word-spacing:-38.081700px;}
.ws29{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.wsf{word-spacing:-37.942200px;}
.ws33{word-spacing:-37.941900px;}
.ws2f{word-spacing:-37.940400px;}
.ws3f{word-spacing:-37.936800px;}
.ws37{word-spacing:-37.934400px;}
.ws53{word-spacing:-37.922700px;}
.wsd{word-spacing:-37.715400px;}
.ws44{word-spacing:-37.436400px;}
.ws2d{word-spacing:-37.222200px;}
.ws5b{word-spacing:-37.221000px;}
.ws55{word-spacing:-37.220400px;}
.ws24{word-spacing:-37.209600px;}
.ws22{word-spacing:-36.493200px;}
.ws4b{word-spacing:-36.425400px;}
.ws60{word-spacing:-36.423900px;}
.ws47{word-spacing:-35.776800px;}
.ws45{word-spacing:-34.833600px;}
.ws49{word-spacing:-34.560000px;}
.ws34{word-spacing:-34.552800px;}
.ws20{word-spacing:-34.331400px;}
.ws38{word-spacing:-34.322400px;}
.ws31{word-spacing:-33.825000px;}
.ws54{word-spacing:-33.621000px;}
.ws1f{word-spacing:-33.544800px;}
.ws3a{word-spacing:-32.900400px;}
.ws1e{word-spacing:-32.169600px;}
.ws63{word-spacing:-31.679700px;}
.ws3e{word-spacing:-31.670400px;}
.ws50{word-spacing:-31.460400px;}
.ws26{word-spacing:-31.455600px;}
.ws5a{word-spacing:-30.960000px;}
.ws3d{word-spacing:-30.746400px;}
.ws56{word-spacing:-30.729600px;}
.ws27{word-spacing:-30.026400px;}
.ws4a{word-spacing:-29.943000px;}
.ws2e{word-spacing:-29.520000px;}
.ws64{word-spacing:-29.304000px;}
.ws2c{word-spacing:-29.300400px;}
.ws5d{word-spacing:-28.806000px;}
.ws21{word-spacing:-28.578600px;}
.ws35{word-spacing:-28.080000px;}
.ws61{word-spacing:-27.638100px;}
.wsb{word-spacing:-27.360000px;}
.ws19{word-spacing:-27.146400px;}
.ws59{word-spacing:-26.640000px;}
.ws32{word-spacing:-26.418600px;}
.ws1a{word-spacing:-26.409600px;}
.ws42{word-spacing:-25.700400px;}
.ws5f{word-spacing:-25.202400px;}
.ws57{word-spacing:-24.984000px;}
.ws62{word-spacing:-24.460500px;}
.ws4f{word-spacing:-24.260400px;}
.ws41{word-spacing:-24.251400px;}
.ws1c{word-spacing:-23.544000px;}
.ws40{word-spacing:-23.537400px;}
.ws2a{word-spacing:-22.320600px;}
.ws1b{word-spacing:-22.314600px;}
.ws43{word-spacing:-22.091400px;}
.ws8{word-spacing:-21.580200px;}
.ws4e{word-spacing:-21.160800px;}
.ws9{word-spacing:-20.874000px;}
.ws28{word-spacing:-16.562400px;}
.ws5e{word-spacing:-16.344000px;}
.ws15{word-spacing:-15.969600px;}
.ws3c{word-spacing:-15.116400px;}
.ws30{word-spacing:-13.460400px;}
.ws51{word-spacing:-13.385700px;}
.ws1d{word-spacing:-12.022200px;}
.wsa{word-spacing:-12.013800px;}
.ws25{word-spacing:-10.582200px;}
.ws48{word-spacing:-6.262200px;}
.ws5c{word-spacing:-4.813200px;}
.ws52{word-spacing:-3.592800px;}
.ws11{word-spacing:8.150400px;}
.ws10{word-spacing:9.360000px;}
.ws12{word-spacing:11.884500px;}
.ws13{word-spacing:19.656000px;}
.ws65{word-spacing:26.856000px;}
.ws14{word-spacing:33.696000px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.443600px;}
._0{width:1.076400px;}
._e{width:17.092800px;}
._1{width:18.968400px;}
._d{width:20.869200px;}
._b{width:22.420800px;}
._13{width:23.983800px;}
._f{width:25.687200px;}
._10{width:26.950800px;}
._c{width:28.794600px;}
._4{width:29.808000px;}
._9{width:31.501200px;}
._a{width:32.538600px;}
._11{width:34.632600px;}
._15{width:35.841600px;}
._8{width:41.652000px;}
._12{width:43.693200px;}
._3{width:45.144000px;}
._14{width:50.767200px;}
._17{width:52.470000px;}
._16{width:53.913600px;}
._19{width:58.914000px;}
._5{width:65.145600px;}
._6{width:69.336000px;}
._18{width:82.800000px;}
._7{width:91.152000px;}
._1a{width:109.296000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y6f{bottom:101.596500px;}
.y6e{bottom:122.296500px;}
.y28{bottom:141.375000px;}
.y6d{bottom:142.996500px;}
.y27{bottom:162.075000px;}
.y6c{bottom:163.696500px;}
.y26{bottom:182.775000px;}
.y6b{bottom:184.396500px;}
.y25{bottom:203.475000px;}
.y6a{bottom:205.096500px;}
.y69{bottom:225.795000px;}
.y24{bottom:245.236500px;}
.y68{bottom:246.496500px;}
.y23{bottom:265.936500px;}
.y67{bottom:267.196500px;}
.y22{bottom:286.636500px;}
.y66{bottom:287.896500px;}
.y21{bottom:307.336500px;}
.y65{bottom:308.596500px;}
.y20{bottom:328.036500px;}
.y45{bottom:328.396500px;}
.y64{bottom:329.295000px;}
.y44{bottom:349.096500px;}
.y63{bottom:349.996500px;}
.y1f{bottom:369.615000px;}
.y43{bottom:369.795000px;}
.y1e{bottom:390.315000px;}
.y62{bottom:391.575000px;}
.y1d{bottom:411.015000px;}
.y42{bottom:411.375000px;}
.y1c{bottom:431.715000px;}
.y41{bottom:432.075000px;}
.y61{bottom:433.336500px;}
.y1b{bottom:452.415000px;}
.y40{bottom:452.775000px;}
.y60{bottom:454.036500px;}
.y1a{bottom:473.115000px;}
.y3f{bottom:473.475000px;}
.y5f{bottom:474.736500px;}
.y19{bottom:493.815000px;}
.y5e{bottom:495.436500px;}
.y3e{bottom:515.236500px;}
.y5d{bottom:516.136500px;}
.y18{bottom:535.575000px;}
.y3d{bottom:535.936500px;}
.y5c{bottom:536.836500px;}
.y3c{bottom:556.636500px;}
.y17{bottom:577.336500px;}
.y5b{bottom:578.596500px;}
.y16{bottom:598.036500px;}
.y3b{bottom:598.396500px;}
.y3a{bottom:619.096500px;}
.y5a{bottom:620.175000px;}
.y15{bottom:639.615000px;}
.y39{bottom:639.795000px;}
.y59{bottom:640.875000px;}
.y14{bottom:660.315000px;}
.y58{bottom:661.575000px;}
.y13{bottom:681.015000px;}
.y38{bottom:681.375000px;}
.y57{bottom:682.275000px;}
.y12{bottom:701.715000px;}
.y11{bottom:722.415000px;}
.y37{bottom:723.136500px;}
.y56{bottom:724.036500px;}
.y10{bottom:743.115000px;}
.y36{bottom:743.836500px;}
.y55{bottom:744.736500px;}
.y35{bottom:764.536500px;}
.y54{bottom:765.436500px;}
.yf{bottom:784.875000px;}
.y53{bottom:786.136500px;}
.y34{bottom:806.295000px;}
.y52{bottom:806.836500px;}
.ye{bottom:826.636500px;}
.y33{bottom:826.996500px;}
.y51{bottom:827.536500px;}
.yd{bottom:847.336500px;}
.y32{bottom:847.695000px;}
.y50{bottom:848.236500px;}
.yc{bottom:868.036500px;}
.y31{bottom:868.395000px;}
.yb{bottom:888.736500px;}
.y4f{bottom:889.995000px;}
.ya{bottom:909.436500px;}
.y30{bottom:909.975000px;}
.y4e{bottom:910.695000px;}
.y2f{bottom:930.675000px;}
.y4d{bottom:931.395000px;}
.y9{bottom:951.015000px;}
.y4c{bottom:952.095000px;}
.y8{bottom:971.715000px;}
.y2e{bottom:972.436500px;}
.y4b{bottom:993.675000px;}
.y2d{bottom:1014.195000px;}
.y4a{bottom:1014.375000px;}
.y2c{bottom:1034.895000px;}
.y49{bottom:1035.075000px;}
.y48{bottom:1055.775000px;}
.y7{bottom:1076.295000px;}
.y2b{bottom:1076.475000px;}
.y2a{bottom:1097.175000px;}
.y47{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y46{bottom:1118.236500px;}
.y29{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x7{left:144.900000px;}
.x2{left:160.560000px;}
.x6{left:227.160000px;}
.x8{left:314.100000px;}
.x5{left:360.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.542667pt;}
.ws39{word-spacing:-34.365333pt;}
.ws4{word-spacing:-34.361600pt;}
.ws16{word-spacing:-34.359733pt;}
.ws2b{word-spacing:-34.293333pt;}
.ws36{word-spacing:-33.920533pt;}
.ws17{word-spacing:-33.920000pt;}
.ws3b{word-spacing:-33.916800pt;}
.ws3{word-spacing:-33.915200pt;}
.ws58{word-spacing:-33.913600pt;}
.ws4d{word-spacing:-33.912000pt;}
.ws23{word-spacing:-33.911467pt;}
.ws18{word-spacing:-33.911200pt;}
.wse{word-spacing:-33.910400pt;}
.ws4c{word-spacing:-33.908800pt;}
.ws46{word-spacing:-33.895467pt;}
.wsc{word-spacing:-33.861333pt;}
.ws7{word-spacing:-33.854400pt;}
.ws2{word-spacing:-33.850400pt;}
.ws29{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.wsf{word-spacing:-33.726400pt;}
.ws33{word-spacing:-33.726133pt;}
.ws2f{word-spacing:-33.724800pt;}
.ws3f{word-spacing:-33.721600pt;}
.ws37{word-spacing:-33.719467pt;}
.ws53{word-spacing:-33.709067pt;}
.wsd{word-spacing:-33.524800pt;}
.ws44{word-spacing:-33.276800pt;}
.ws2d{word-spacing:-33.086400pt;}
.ws5b{word-spacing:-33.085333pt;}
.ws55{word-spacing:-33.084800pt;}
.ws24{word-spacing:-33.075200pt;}
.ws22{word-spacing:-32.438400pt;}
.ws4b{word-spacing:-32.378133pt;}
.ws60{word-spacing:-32.376800pt;}
.ws47{word-spacing:-31.801600pt;}
.ws45{word-spacing:-30.963200pt;}
.ws49{word-spacing:-30.720000pt;}
.ws34{word-spacing:-30.713600pt;}
.ws20{word-spacing:-30.516800pt;}
.ws38{word-spacing:-30.508800pt;}
.ws31{word-spacing:-30.066667pt;}
.ws54{word-spacing:-29.885333pt;}
.ws1f{word-spacing:-29.817600pt;}
.ws3a{word-spacing:-29.244800pt;}
.ws1e{word-spacing:-28.595200pt;}
.ws63{word-spacing:-28.159733pt;}
.ws3e{word-spacing:-28.151467pt;}
.ws50{word-spacing:-27.964800pt;}
.ws26{word-spacing:-27.960533pt;}
.ws5a{word-spacing:-27.520000pt;}
.ws3d{word-spacing:-27.330133pt;}
.ws56{word-spacing:-27.315200pt;}
.ws27{word-spacing:-26.690133pt;}
.ws4a{word-spacing:-26.616000pt;}
.ws2e{word-spacing:-26.240000pt;}
.ws64{word-spacing:-26.048000pt;}
.ws2c{word-spacing:-26.044800pt;}
.ws5d{word-spacing:-25.605333pt;}
.ws21{word-spacing:-25.403200pt;}
.ws35{word-spacing:-24.960000pt;}
.ws61{word-spacing:-24.567200pt;}
.wsb{word-spacing:-24.320000pt;}
.ws19{word-spacing:-24.130133pt;}
.ws59{word-spacing:-23.680000pt;}
.ws32{word-spacing:-23.483200pt;}
.ws1a{word-spacing:-23.475200pt;}
.ws42{word-spacing:-22.844800pt;}
.ws5f{word-spacing:-22.402133pt;}
.ws57{word-spacing:-22.208000pt;}
.ws62{word-spacing:-21.742667pt;}
.ws4f{word-spacing:-21.564800pt;}
.ws41{word-spacing:-21.556800pt;}
.ws1c{word-spacing:-20.928000pt;}
.ws40{word-spacing:-20.922133pt;}
.ws2a{word-spacing:-19.840533pt;}
.ws1b{word-spacing:-19.835200pt;}
.ws43{word-spacing:-19.636800pt;}
.ws8{word-spacing:-19.182400pt;}
.ws4e{word-spacing:-18.809600pt;}
.ws9{word-spacing:-18.554667pt;}
.ws28{word-spacing:-14.722133pt;}
.ws5e{word-spacing:-14.528000pt;}
.ws15{word-spacing:-14.195200pt;}
.ws3c{word-spacing:-13.436800pt;}
.ws30{word-spacing:-11.964800pt;}
.ws51{word-spacing:-11.898400pt;}
.ws1d{word-spacing:-10.686400pt;}
.wsa{word-spacing:-10.678933pt;}
.ws25{word-spacing:-9.406400pt;}
.ws48{word-spacing:-5.566400pt;}
.ws5c{word-spacing:-4.278400pt;}
.ws52{word-spacing:-3.193600pt;}
.ws11{word-spacing:7.244800pt;}
.ws10{word-spacing:8.320000pt;}
.ws12{word-spacing:10.564000pt;}
.ws13{word-spacing:17.472000pt;}
.ws65{word-spacing:23.872000pt;}
.ws14{word-spacing:29.952000pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.283200pt;}
._0{width:0.956800pt;}
._e{width:15.193600pt;}
._1{width:16.860800pt;}
._d{width:18.550400pt;}
._b{width:19.929600pt;}
._13{width:21.318933pt;}
._f{width:22.833067pt;}
._10{width:23.956267pt;}
._c{width:25.595200pt;}
._4{width:26.496000pt;}
._9{width:28.001067pt;}
._a{width:28.923200pt;}
._11{width:30.784533pt;}
._15{width:31.859200pt;}
._8{width:37.024000pt;}
._12{width:38.838400pt;}
._3{width:40.128000pt;}
._14{width:45.126400pt;}
._17{width:46.640000pt;}
._16{width:47.923200pt;}
._19{width:52.368000pt;}
._5{width:57.907200pt;}
._6{width:61.632000pt;}
._18{width:73.600000pt;}
._7{width:81.024000pt;}
._1a{width:97.152000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y6f{bottom:90.308000pt;}
.y6e{bottom:108.708000pt;}
.y28{bottom:125.666667pt;}
.y6d{bottom:127.108000pt;}
.y27{bottom:144.066667pt;}
.y6c{bottom:145.508000pt;}
.y26{bottom:162.466667pt;}
.y6b{bottom:163.908000pt;}
.y25{bottom:180.866667pt;}
.y6a{bottom:182.308000pt;}
.y69{bottom:200.706667pt;}
.y24{bottom:217.988000pt;}
.y68{bottom:219.108000pt;}
.y23{bottom:236.388000pt;}
.y67{bottom:237.508000pt;}
.y22{bottom:254.788000pt;}
.y66{bottom:255.908000pt;}
.y21{bottom:273.188000pt;}
.y65{bottom:274.308000pt;}
.y20{bottom:291.588000pt;}
.y45{bottom:291.908000pt;}
.y64{bottom:292.706667pt;}
.y44{bottom:310.308000pt;}
.y63{bottom:311.108000pt;}
.y1f{bottom:328.546667pt;}
.y43{bottom:328.706667pt;}
.y1e{bottom:346.946667pt;}
.y62{bottom:348.066667pt;}
.y1d{bottom:365.346667pt;}
.y42{bottom:365.666667pt;}
.y1c{bottom:383.746667pt;}
.y41{bottom:384.066667pt;}
.y61{bottom:385.188000pt;}
.y1b{bottom:402.146667pt;}
.y40{bottom:402.466667pt;}
.y60{bottom:403.588000pt;}
.y1a{bottom:420.546667pt;}
.y3f{bottom:420.866667pt;}
.y5f{bottom:421.988000pt;}
.y19{bottom:438.946667pt;}
.y5e{bottom:440.388000pt;}
.y3e{bottom:457.988000pt;}
.y5d{bottom:458.788000pt;}
.y18{bottom:476.066667pt;}
.y3d{bottom:476.388000pt;}
.y5c{bottom:477.188000pt;}
.y3c{bottom:494.788000pt;}
.y17{bottom:513.188000pt;}
.y5b{bottom:514.308000pt;}
.y16{bottom:531.588000pt;}
.y3b{bottom:531.908000pt;}
.y3a{bottom:550.308000pt;}
.y5a{bottom:551.266667pt;}
.y15{bottom:568.546667pt;}
.y39{bottom:568.706667pt;}
.y59{bottom:569.666667pt;}
.y14{bottom:586.946667pt;}
.y58{bottom:588.066667pt;}
.y13{bottom:605.346667pt;}
.y38{bottom:605.666667pt;}
.y57{bottom:606.466667pt;}
.y12{bottom:623.746667pt;}
.y11{bottom:642.146667pt;}
.y37{bottom:642.788000pt;}
.y56{bottom:643.588000pt;}
.y10{bottom:660.546667pt;}
.y36{bottom:661.188000pt;}
.y55{bottom:661.988000pt;}
.y35{bottom:679.588000pt;}
.y54{bottom:680.388000pt;}
.yf{bottom:697.666667pt;}
.y53{bottom:698.788000pt;}
.y34{bottom:716.706667pt;}
.y52{bottom:717.188000pt;}
.ye{bottom:734.788000pt;}
.y33{bottom:735.108000pt;}
.y51{bottom:735.588000pt;}
.yd{bottom:753.188000pt;}
.y32{bottom:753.506667pt;}
.y50{bottom:753.988000pt;}
.yc{bottom:771.588000pt;}
.y31{bottom:771.906667pt;}
.yb{bottom:789.988000pt;}
.y4f{bottom:791.106667pt;}
.ya{bottom:808.388000pt;}
.y30{bottom:808.866667pt;}
.y4e{bottom:809.506667pt;}
.y2f{bottom:827.266667pt;}
.y4d{bottom:827.906667pt;}
.y9{bottom:845.346667pt;}
.y4c{bottom:846.306667pt;}
.y8{bottom:863.746667pt;}
.y2e{bottom:864.388000pt;}
.y4b{bottom:883.266667pt;}
.y2d{bottom:901.506667pt;}
.y4a{bottom:901.666667pt;}
.y2c{bottom:919.906667pt;}
.y49{bottom:920.066667pt;}
.y48{bottom:938.466667pt;}
.y7{bottom:956.706667pt;}
.y2b{bottom:956.866667pt;}
.y2a{bottom:975.266667pt;}
.y47{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y46{bottom:993.988000pt;}
.y29{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x7{left:128.800000pt;}
.x2{left:142.720000pt;}
.x6{left:201.920000pt;}
.x8{left:279.200000pt;}
.x5{left:320.320000pt;}
}




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