
    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_34d1f56d8afc8dfcc5900157.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_fc2e5b9bdf16593eb178c53f.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_c6224ca1ff2af70415fe409f.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws58{word-spacing:-38.660400px;}
.ws3{word-spacing:-38.655900px;}
.ws4f{word-spacing:-38.650200px;}
.ws5d{word-spacing:-38.648700px;}
.ws3a{word-spacing:-38.636400px;}
.ws19{word-spacing:-38.582100px;}
.ws3f{word-spacing:-38.446800px;}
.wsf{word-spacing:-38.443200px;}
.ws2e{word-spacing:-38.439000px;}
.ws16{word-spacing:-38.434800px;}
.ws1e{word-spacing:-38.156400px;}
.ws4b{word-spacing:-38.151000px;}
.ws59{word-spacing:-38.146500px;}
.ws2{word-spacing:-38.081700px;}
.ws7{word-spacing:-38.078100px;}
.ws0{word-spacing:-37.944000px;}
.ws5{word-spacing:-37.941300px;}
.ws52{word-spacing:-37.939200px;}
.ws35{word-spacing:-37.930800px;}
.ws8{word-spacing:-37.725300px;}
.ws56{word-spacing:-37.717200px;}
.ws4{word-spacing:-37.704600px;}
.ws23{word-spacing:-37.440000px;}
.ws44{word-spacing:-37.436400px;}
.ws34{word-spacing:-37.434600px;}
.ws53{word-spacing:-37.432800px;}
.ws15{word-spacing:-37.431000px;}
.ws4a{word-spacing:-36.986400px;}
.ws36{word-spacing:-36.284400px;}
.ws42{word-spacing:-36.277200px;}
.ws4d{word-spacing:-35.051400px;}
.ws14{word-spacing:-35.043300px;}
.ws4e{word-spacing:-34.557000px;}
.ws12{word-spacing:-34.336800px;}
.ws2d{word-spacing:-34.335000px;}
.ws25{word-spacing:-34.333800px;}
.ws1f{word-spacing:-33.616800px;}
.ws48{word-spacing:-33.615000px;}
.ws50{word-spacing:-33.614400px;}
.ws4c{word-spacing:-33.614100px;}
.ws51{word-spacing:-33.397200px;}
.ws45{word-spacing:-33.375600px;}
.ws3d{word-spacing:-32.889600px;}
.ws33{word-spacing:-32.686800px;}
.ws1b{word-spacing:-32.680800px;}
.ws29{word-spacing:-32.385000px;}
.ws26{word-spacing:-32.180400px;}
.ws2f{word-spacing:-31.958100px;}
.ws39{word-spacing:-31.675200px;}
.ws5c{word-spacing:-30.744000px;}
.ws31{word-spacing:-30.240000px;}
.ws1d{word-spacing:-30.016800px;}
.ws3c{word-spacing:-30.015000px;}
.wsb{word-spacing:-29.939700px;}
.ws55{word-spacing:-29.798400px;}
.ws37{word-spacing:-29.791800px;}
.wsd{word-spacing:-29.293200px;}
.wse{word-spacing:-28.573200px;}
.ws20{word-spacing:-28.080000px;}
.ws24{word-spacing:-26.197200px;}
.ws32{word-spacing:-25.700400px;}
.ws27{word-spacing:-25.196400px;}
.ws22{word-spacing:-24.978600px;}
.ws13{word-spacing:-24.462000px;}
.ws3b{word-spacing:-24.040200px;}
.ws40{word-spacing:-24.017400px;}
.ws54{word-spacing:-23.317200px;}
.ws1a{word-spacing:-22.826400px;}
.ws2a{word-spacing:-22.309200px;}
.ws38{word-spacing:-22.095000px;}
.ws41{word-spacing:-21.367800px;}
.ws1c{word-spacing:-21.159000px;}
.ws21{word-spacing:-20.870100px;}
.ws18{word-spacing:-19.933200px;}
.ws2c{word-spacing:-19.931400px;}
.wsa{word-spacing:-19.927200px;}
.ws9{word-spacing:-19.421100px;}
.ws30{word-spacing:-15.610800px;}
.ws57{word-spacing:-13.959600px;}
.ws2b{word-spacing:-13.674600px;}
.ws17{word-spacing:-13.245000px;}
.ws47{word-spacing:-9.140400px;}
.ws11{word-spacing:-7.700400px;}
.ws10{word-spacing:-7.192800px;}
.ws28{word-spacing:-6.261000px;}
.wsc{word-spacing:-4.095000px;}
.ws46{word-spacing:-2.640600px;}
.ws5a{word-spacing:-1.939200px;}
.ws49{word-spacing:5.258700px;}
.ws3e{word-spacing:5.260800px;}
.ws5b{word-spacing:17.496000px;}
.ws43{word-spacing:17.506800px;}
.ws5e{word-spacing:18.720000px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.380600px;}
._0{width:1.076400px;}
._10{width:17.490000px;}
._1{width:18.968400px;}
._14{width:20.804400px;}
._a{width:22.820400px;}
._9{width:24.564600px;}
._13{width:25.642800px;}
._5{width:27.648000px;}
._7{width:28.702800px;}
._11{width:31.015200px;}
._b{width:32.670000px;}
._e{width:34.128000px;}
._f{width:35.882100px;}
._2{width:37.061100px;}
._3{width:38.253000px;}
._c{width:43.774200px;}
._d{width:44.799000px;}
._18{width:48.024000px;}
._8{width:49.315800px;}
._12{width:51.552000px;}
._6{width:53.265000px;}
._17{width:54.936000px;}
._15{width:62.480400px;}
._19{width:73.440000px;}
._16{width:74.647200px;}
._1a{width:110.227200px;}
.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;}
.y52{bottom:143.896500px;}
.y26{bottom:161.896500px;}
.y25{bottom:182.596500px;}
.y51{bottom:185.655000px;}
.y24{bottom:203.295000px;}
.y50{bottom:206.175000px;}
.y23{bottom:223.996500px;}
.y4f{bottom:226.875000px;}
.y22{bottom:244.696500px;}
.y4e{bottom:247.575000px;}
.y4d{bottom:268.275000px;}
.y21{bottom:286.275000px;}
.y4c{bottom:288.975000px;}
.y20{bottom:306.975000px;}
.y4b{bottom:309.675000px;}
.y1f{bottom:327.675000px;}
.y4a{bottom:330.375000px;}
.y1e{bottom:348.375000px;}
.y49{bottom:351.075000px;}
.y1d{bottom:369.075000px;}
.y48{bottom:371.775000px;}
.y47{bottom:392.475000px;}
.y1c{bottom:410.836500px;}
.y46{bottom:413.175000px;}
.y45{bottom:433.875000px;}
.y1b{bottom:452.596500px;}
.y44{bottom:454.575000px;}
.y1a{bottom:473.295000px;}
.y43{bottom:475.275000px;}
.y19{bottom:493.996500px;}
.y42{bottom:495.975000px;}
.y18{bottom:535.575000px;}
.y41{bottom:537.736500px;}
.y17{bottom:556.275000px;}
.y40{bottom:558.436500px;}
.y16{bottom:576.975000px;}
.y3f{bottom:579.136500px;}
.y15{bottom:597.675000px;}
.y3e{bottom:599.836500px;}
.y3d{bottom:620.536500px;}
.y14{bottom:639.436500px;}
.y3c{bottom:662.295000px;}
.y13{bottom:681.195000px;}
.y3b{bottom:682.996500px;}
.y12{bottom:701.896500px;}
.y3a{bottom:703.695000px;}
.y11{bottom:722.596500px;}
.y39{bottom:724.396500px;}
.y38{bottom:745.096500px;}
.y10{bottom:764.175000px;}
.y5b{bottom:765.795000px;}
.yf{bottom:784.875000px;}
.y5a{bottom:786.496500px;}
.y37{bottom:786.675000px;}
.ye{bottom:805.575000px;}
.y59{bottom:807.195000px;}
.y36{bottom:807.375000px;}
.yd{bottom:826.275000px;}
.y58{bottom:827.895000px;}
.y35{bottom:828.075000px;}
.yc{bottom:846.975000px;}
.y57{bottom:848.596500px;}
.y34{bottom:848.775000px;}
.yb{bottom:867.675000px;}
.y56{bottom:869.295000px;}
.y33{bottom:869.475000px;}
.y55{bottom:889.995000px;}
.y32{bottom:890.175000px;}
.ya{bottom:909.436500px;}
.y54{bottom:910.695000px;}
.y31{bottom:910.875000px;}
.y9{bottom:951.195000px;}
.y53{bottom:952.275000px;}
.y30{bottom:952.636500px;}
.y2f{bottom:973.336500px;}
.y2e{bottom:994.036500px;}
.y2d{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y2c{bottom:1035.436500px;}
.y2b{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y2a{bottom:1076.836500px;}
.y29{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y28{bottom:1118.236500px;}
.y27{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;}
.xb{left:129.600000px;}
.xc{left:156.960000px;}
.x2{left:160.560000px;}
.x9{left:201.420000px;}
.x8{left:205.738500px;}
.x7{left:282.238500px;}
.x6{left:284.220000px;}
.x5{left:295.920000px;}
.xa{left:382.860000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws58{word-spacing:-34.364800pt;}
.ws3{word-spacing:-34.360800pt;}
.ws4f{word-spacing:-34.355733pt;}
.ws5d{word-spacing:-34.354400pt;}
.ws3a{word-spacing:-34.343467pt;}
.ws19{word-spacing:-34.295200pt;}
.ws3f{word-spacing:-34.174933pt;}
.wsf{word-spacing:-34.171733pt;}
.ws2e{word-spacing:-34.168000pt;}
.ws16{word-spacing:-34.164267pt;}
.ws1e{word-spacing:-33.916800pt;}
.ws4b{word-spacing:-33.912000pt;}
.ws59{word-spacing:-33.908000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws7{word-spacing:-33.847200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws5{word-spacing:-33.725600pt;}
.ws52{word-spacing:-33.723733pt;}
.ws35{word-spacing:-33.716267pt;}
.ws8{word-spacing:-33.533600pt;}
.ws56{word-spacing:-33.526400pt;}
.ws4{word-spacing:-33.515200pt;}
.ws23{word-spacing:-33.280000pt;}
.ws44{word-spacing:-33.276800pt;}
.ws34{word-spacing:-33.275200pt;}
.ws53{word-spacing:-33.273600pt;}
.ws15{word-spacing:-33.272000pt;}
.ws4a{word-spacing:-32.876800pt;}
.ws36{word-spacing:-32.252800pt;}
.ws42{word-spacing:-32.246400pt;}
.ws4d{word-spacing:-31.156800pt;}
.ws14{word-spacing:-31.149600pt;}
.ws4e{word-spacing:-30.717333pt;}
.ws12{word-spacing:-30.521600pt;}
.ws2d{word-spacing:-30.520000pt;}
.ws25{word-spacing:-30.518933pt;}
.ws1f{word-spacing:-29.881600pt;}
.ws48{word-spacing:-29.880000pt;}
.ws50{word-spacing:-29.879467pt;}
.ws4c{word-spacing:-29.879200pt;}
.ws51{word-spacing:-29.686400pt;}
.ws45{word-spacing:-29.667200pt;}
.ws3d{word-spacing:-29.235200pt;}
.ws33{word-spacing:-29.054933pt;}
.ws1b{word-spacing:-29.049600pt;}
.ws29{word-spacing:-28.786667pt;}
.ws26{word-spacing:-28.604800pt;}
.ws2f{word-spacing:-28.407200pt;}
.ws39{word-spacing:-28.155733pt;}
.ws5c{word-spacing:-27.328000pt;}
.ws31{word-spacing:-26.880000pt;}
.ws1d{word-spacing:-26.681600pt;}
.ws3c{word-spacing:-26.680000pt;}
.wsb{word-spacing:-26.613067pt;}
.ws55{word-spacing:-26.487467pt;}
.ws37{word-spacing:-26.481600pt;}
.wsd{word-spacing:-26.038400pt;}
.wse{word-spacing:-25.398400pt;}
.ws20{word-spacing:-24.960000pt;}
.ws24{word-spacing:-23.286400pt;}
.ws32{word-spacing:-22.844800pt;}
.ws27{word-spacing:-22.396800pt;}
.ws22{word-spacing:-22.203200pt;}
.ws13{word-spacing:-21.744000pt;}
.ws3b{word-spacing:-21.369067pt;}
.ws40{word-spacing:-21.348800pt;}
.ws54{word-spacing:-20.726400pt;}
.ws1a{word-spacing:-20.290133pt;}
.ws2a{word-spacing:-19.830400pt;}
.ws38{word-spacing:-19.640000pt;}
.ws41{word-spacing:-18.993600pt;}
.ws1c{word-spacing:-18.808000pt;}
.ws21{word-spacing:-18.551200pt;}
.ws18{word-spacing:-17.718400pt;}
.ws2c{word-spacing:-17.716800pt;}
.wsa{word-spacing:-17.713067pt;}
.ws9{word-spacing:-17.263200pt;}
.ws30{word-spacing:-13.876267pt;}
.ws57{word-spacing:-12.408533pt;}
.ws2b{word-spacing:-12.155200pt;}
.ws17{word-spacing:-11.773333pt;}
.ws47{word-spacing:-8.124800pt;}
.ws11{word-spacing:-6.844800pt;}
.ws10{word-spacing:-6.393600pt;}
.ws28{word-spacing:-5.565333pt;}
.wsc{word-spacing:-3.640000pt;}
.ws46{word-spacing:-2.347200pt;}
.ws5a{word-spacing:-1.723733pt;}
.ws49{word-spacing:4.674400pt;}
.ws3e{word-spacing:4.676267pt;}
.ws5b{word-spacing:15.552000pt;}
.ws43{word-spacing:15.561600pt;}
.ws5e{word-spacing:16.640000pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-1.227200pt;}
._0{width:0.956800pt;}
._10{width:15.546667pt;}
._1{width:16.860800pt;}
._14{width:18.492800pt;}
._a{width:20.284800pt;}
._9{width:21.835200pt;}
._13{width:22.793600pt;}
._5{width:24.576000pt;}
._7{width:25.513600pt;}
._11{width:27.569067pt;}
._b{width:29.040000pt;}
._e{width:30.336000pt;}
._f{width:31.895200pt;}
._2{width:32.943200pt;}
._3{width:34.002667pt;}
._c{width:38.910400pt;}
._d{width:39.821333pt;}
._18{width:42.688000pt;}
._8{width:43.836267pt;}
._12{width:45.824000pt;}
._6{width:47.346667pt;}
._17{width:48.832000pt;}
._15{width:55.538133pt;}
._19{width:65.280000pt;}
._16{width:66.353067pt;}
._1a{width:97.979733pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y52{bottom:127.908000pt;}
.y26{bottom:143.908000pt;}
.y25{bottom:162.308000pt;}
.y51{bottom:165.026667pt;}
.y24{bottom:180.706667pt;}
.y50{bottom:183.266667pt;}
.y23{bottom:199.108000pt;}
.y4f{bottom:201.666667pt;}
.y22{bottom:217.508000pt;}
.y4e{bottom:220.066667pt;}
.y4d{bottom:238.466667pt;}
.y21{bottom:254.466667pt;}
.y4c{bottom:256.866667pt;}
.y20{bottom:272.866667pt;}
.y4b{bottom:275.266667pt;}
.y1f{bottom:291.266667pt;}
.y4a{bottom:293.666667pt;}
.y1e{bottom:309.666667pt;}
.y49{bottom:312.066667pt;}
.y1d{bottom:328.066667pt;}
.y48{bottom:330.466667pt;}
.y47{bottom:348.866667pt;}
.y1c{bottom:365.188000pt;}
.y46{bottom:367.266667pt;}
.y45{bottom:385.666667pt;}
.y1b{bottom:402.308000pt;}
.y44{bottom:404.066667pt;}
.y1a{bottom:420.706667pt;}
.y43{bottom:422.466667pt;}
.y19{bottom:439.108000pt;}
.y42{bottom:440.866667pt;}
.y18{bottom:476.066667pt;}
.y41{bottom:477.988000pt;}
.y17{bottom:494.466667pt;}
.y40{bottom:496.388000pt;}
.y16{bottom:512.866667pt;}
.y3f{bottom:514.788000pt;}
.y15{bottom:531.266667pt;}
.y3e{bottom:533.188000pt;}
.y3d{bottom:551.588000pt;}
.y14{bottom:568.388000pt;}
.y3c{bottom:588.706667pt;}
.y13{bottom:605.506667pt;}
.y3b{bottom:607.108000pt;}
.y12{bottom:623.908000pt;}
.y3a{bottom:625.506667pt;}
.y11{bottom:642.308000pt;}
.y39{bottom:643.908000pt;}
.y38{bottom:662.308000pt;}
.y10{bottom:679.266667pt;}
.y5b{bottom:680.706667pt;}
.yf{bottom:697.666667pt;}
.y5a{bottom:699.108000pt;}
.y37{bottom:699.266667pt;}
.ye{bottom:716.066667pt;}
.y59{bottom:717.506667pt;}
.y36{bottom:717.666667pt;}
.yd{bottom:734.466667pt;}
.y58{bottom:735.906667pt;}
.y35{bottom:736.066667pt;}
.yc{bottom:752.866667pt;}
.y57{bottom:754.308000pt;}
.y34{bottom:754.466667pt;}
.yb{bottom:771.266667pt;}
.y56{bottom:772.706667pt;}
.y33{bottom:772.866667pt;}
.y55{bottom:791.106667pt;}
.y32{bottom:791.266667pt;}
.ya{bottom:808.388000pt;}
.y54{bottom:809.506667pt;}
.y31{bottom:809.666667pt;}
.y9{bottom:845.506667pt;}
.y53{bottom:846.466667pt;}
.y30{bottom:846.788000pt;}
.y2f{bottom:865.188000pt;}
.y2e{bottom:883.588000pt;}
.y2d{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y2c{bottom:920.388000pt;}
.y2b{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y2a{bottom:957.188000pt;}
.y29{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y28{bottom:993.988000pt;}
.y27{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;}
.xb{left:115.200000pt;}
.xc{left:139.520000pt;}
.x2{left:142.720000pt;}
.x9{left:179.040000pt;}
.x8{left:182.878667pt;}
.x7{left:250.878667pt;}
.x6{left:252.640000pt;}
.x5{left:263.040000pt;}
.xa{left:340.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; }
  