
    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_d2b4add7a69d32943f9c5ded.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_ce4b2e415a51bfc139138c04.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_906fefc459d04fa5eea24c51.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.086000px;}
.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;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws53{word-spacing:-38.876400px;}
.ws19{word-spacing:-38.873700px;}
.ws2{word-spacing:-38.870100px;}
.ws34{word-spacing:-38.660400px;}
.ws7{word-spacing:-38.642400px;}
.ws10{word-spacing:-38.636400px;}
.wse{word-spacing:-38.435400px;}
.wsb{word-spacing:-38.380200px;}
.wsf{word-spacing:-38.370600px;}
.ws13{word-spacing:-38.281800px;}
.ws18{word-spacing:-38.166000px;}
.ws2d{word-spacing:-38.160000px;}
.ws2c{word-spacing:-38.154000px;}
.ws23{word-spacing:-38.150100px;}
.wsd{word-spacing:-38.145600px;}
.ws4c{word-spacing:-38.141100px;}
.ws45{word-spacing:-38.135100px;}
.wsa{word-spacing:-37.944000px;}
.ws6{word-spacing:-37.940400px;}
.ws3c{word-spacing:-37.936800px;}
.ws1a{word-spacing:-37.922400px;}
.ws3e{word-spacing:-37.728000px;}
.ws3d{word-spacing:-37.662000px;}
.ws54{word-spacing:-37.656000px;}
.wsc{word-spacing:-37.429200px;}
.ws2a{word-spacing:-37.417500px;}
.ws4{word-spacing:-37.366200px;}
.ws25{word-spacing:-36.504000px;}
.ws20{word-spacing:-36.363600px;}
.ws37{word-spacing:-35.780400px;}
.ws4b{word-spacing:-35.070000px;}
.ws2f{word-spacing:-34.556400px;}
.ws50{word-spacing:-33.840000px;}
.ws3{word-spacing:-33.547800px;}
.ws41{word-spacing:-33.120000px;}
.ws1b{word-spacing:-33.114600px;}
.ws51{word-spacing:-32.910000px;}
.ws3f{word-spacing:-32.904000px;}
.ws40{word-spacing:-32.900400px;}
.ws27{word-spacing:-32.190000px;}
.ws32{word-spacing:-31.968000px;}
.ws1d{word-spacing:-30.230400px;}
.ws3a{word-spacing:-30.024000px;}
.ws44{word-spacing:-29.299500px;}
.ws30{word-spacing:-28.584000px;}
.ws35{word-spacing:-28.574100px;}
.ws49{word-spacing:-28.368000px;}
.ws39{word-spacing:-28.080000px;}
.ws2e{word-spacing:-28.071000px;}
.ws4f{word-spacing:-27.864000px;}
.ws3b{word-spacing:-27.360000px;}
.ws52{word-spacing:-26.424000px;}
.ws33{word-spacing:-26.404200px;}
.ws1f{word-spacing:-24.478800px;}
.ws21{word-spacing:-23.544000px;}
.ws4a{word-spacing:-23.040000px;}
.ws22{word-spacing:-23.022000px;}
.ws24{word-spacing:-22.608000px;}
.ws26{word-spacing:-22.104000px;}
.ws42{word-spacing:-22.102200px;}
.ws1e{word-spacing:-22.093200px;}
.ws48{word-spacing:-19.224000px;}
.ws2b{word-spacing:-18.006000px;}
.ws17{word-spacing:-17.997300px;}
.ws29{word-spacing:-17.784000px;}
.ws16{word-spacing:-17.267400px;}
.ws12{word-spacing:-13.670100px;}
.ws11{word-spacing:-12.960000px;}
.ws1c{word-spacing:-8.195400px;}
.ws9{word-spacing:-7.488000px;}
.ws8{word-spacing:-7.189200px;}
.ws43{word-spacing:-6.258000px;}
.ws38{word-spacing:-5.544000px;}
.ws31{word-spacing:-5.529600px;}
.ws36{word-spacing:-4.805100px;}
.ws14{word-spacing:-4.302000px;}
.ws15{word-spacing:-4.104000px;}
.ws46{word-spacing:-3.888000px;}
.ws47{word-spacing:-2.664000px;}
.ws55{word-spacing:0.000000px;}
.ws28{word-spacing:10.806000px;}
.ws4d{word-spacing:14.610000px;}
.ws4e{word-spacing:15.336000px;}
._0{margin-left:-1.110600px;}
._4{width:1.219500px;}
._5{width:16.996500px;}
._1{width:18.144000px;}
._7{width:19.224000px;}
._10{width:20.956500px;}
._17{width:21.966000px;}
._b{width:24.030900px;}
._13{width:25.350000px;}
._c{width:26.799300px;}
._11{width:28.885500px;}
._14{width:30.620700px;}
._f{width:31.656600px;}
._e{width:33.118800px;}
._d{width:35.557200px;}
._2{width:36.560100px;}
._16{width:37.763100px;}
._a{width:39.288000px;}
._8{width:43.431300px;}
._6{width:49.813200px;}
._12{width:51.737700px;}
._15{width:53.199900px;}
._18{width:71.718000px;}
._9{width:104.013000px;}
._3{width:287.934000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:46.800000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y2d{bottom:108.436500px;}
.y2c{bottom:129.136500px;}
.y4e{bottom:148.215000px;}
.y2b{bottom:149.836500px;}
.y2a{bottom:170.536500px;}
.y4d{bottom:184.036500px;}
.y29{bottom:191.236500px;}
.y28{bottom:211.936500px;}
.y4c{bottom:219.675000px;}
.y27{bottom:232.636500px;}
.y26{bottom:253.336500px;}
.y4b{bottom:255.315000px;}
.y25{bottom:274.036500px;}
.y4a{bottom:276.015000px;}
.y24{bottom:294.736500px;}
.y49{bottom:296.715000px;}
.y23{bottom:315.436500px;}
.y48{bottom:332.536500px;}
.y22{bottom:336.136500px;}
.y47{bottom:353.236500px;}
.y21{bottom:356.836500px;}
.y46{bottom:373.936500px;}
.y20{bottom:377.536500px;}
.y45{bottom:394.636500px;}
.y1f{bottom:398.236500px;}
.y44{bottom:415.336500px;}
.y1e{bottom:418.936500px;}
.y43{bottom:436.036500px;}
.y1d{bottom:439.636500px;}
.y42{bottom:456.736500px;}
.y1c{bottom:460.336500px;}
.y1b{bottom:481.036500px;}
.y41{bottom:492.375000px;}
.y1a{bottom:501.736500px;}
.y40{bottom:513.075000px;}
.y19{bottom:522.436500px;}
.y3f{bottom:533.775000px;}
.y18{bottom:543.136500px;}
.y3e{bottom:554.475000px;}
.y17{bottom:563.836500px;}
.y3d{bottom:575.175000px;}
.y3c{bottom:595.875000px;}
.y16{bottom:605.236500px;}
.y3b{bottom:631.515000px;}
.y15{bottom:646.636500px;}
.y3a{bottom:652.215000px;}
.y14{bottom:667.336500px;}
.y39{bottom:672.915000px;}
.y38{bottom:693.615000px;}
.y13{bottom:708.736500px;}
.y37{bottom:714.315000px;}
.y12{bottom:729.436500px;}
.y36{bottom:735.015000px;}
.y35{bottom:755.715000px;}
.y11{bottom:770.836500px;}
.y34{bottom:776.415000px;}
.y10{bottom:791.536500px;}
.y33{bottom:797.115000px;}
.yf{bottom:832.936500px;}
.y32{bottom:853.636500px;}
.ye{bottom:874.336500px;}
.yd{bottom:895.036500px;}
.y31{bottom:915.736500px;}
.yc{bottom:936.436500px;}
.y30{bottom:957.136500px;}
.yb{bottom:977.836500px;}
.ya{bottom:998.536500px;}
.y2f{bottom:1019.236500px;}
.y9{bottom:1054.875000px;}
.y8{bottom:1075.575000px;}
.y2e{bottom:1096.275000px;}
.y7{bottom:1116.975000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:49.304150px;}
.h6{height:63.175781px;}
.h3{height:63.949219px;}
.h7{height:64.818258px;}
.h2{height:74.873877px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:127.620000px;}
.xa{left:132.120000px;}
.x3{left:145.620000px;}
.x5{left:157.500000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x6{left:413.820000px;}
.x8{left:447.300000px;}
.x4{left:470.025000px;}
.x7{left:611.638500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:16.965333pt;}
.ws5{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws53{word-spacing:-34.556800pt;}
.ws19{word-spacing:-34.554400pt;}
.ws2{word-spacing:-34.551200pt;}
.ws34{word-spacing:-34.364800pt;}
.ws7{word-spacing:-34.348800pt;}
.ws10{word-spacing:-34.343467pt;}
.wse{word-spacing:-34.164800pt;}
.wsb{word-spacing:-34.115733pt;}
.wsf{word-spacing:-34.107200pt;}
.ws13{word-spacing:-34.028267pt;}
.ws18{word-spacing:-33.925333pt;}
.ws2d{word-spacing:-33.920000pt;}
.ws2c{word-spacing:-33.914667pt;}
.ws23{word-spacing:-33.911200pt;}
.wsd{word-spacing:-33.907200pt;}
.ws4c{word-spacing:-33.903200pt;}
.ws45{word-spacing:-33.897867pt;}
.wsa{word-spacing:-33.728000pt;}
.ws6{word-spacing:-33.724800pt;}
.ws3c{word-spacing:-33.721600pt;}
.ws1a{word-spacing:-33.708800pt;}
.ws3e{word-spacing:-33.536000pt;}
.ws3d{word-spacing:-33.477333pt;}
.ws54{word-spacing:-33.472000pt;}
.wsc{word-spacing:-33.270400pt;}
.ws2a{word-spacing:-33.260000pt;}
.ws4{word-spacing:-33.214400pt;}
.ws25{word-spacing:-32.448000pt;}
.ws20{word-spacing:-32.323200pt;}
.ws37{word-spacing:-31.804800pt;}
.ws4b{word-spacing:-31.173333pt;}
.ws2f{word-spacing:-30.716800pt;}
.ws50{word-spacing:-30.080000pt;}
.ws3{word-spacing:-29.820267pt;}
.ws41{word-spacing:-29.440000pt;}
.ws1b{word-spacing:-29.435200pt;}
.ws51{word-spacing:-29.253333pt;}
.ws3f{word-spacing:-29.248000pt;}
.ws40{word-spacing:-29.244800pt;}
.ws27{word-spacing:-28.613333pt;}
.ws32{word-spacing:-28.416000pt;}
.ws1d{word-spacing:-26.871467pt;}
.ws3a{word-spacing:-26.688000pt;}
.ws44{word-spacing:-26.044000pt;}
.ws30{word-spacing:-25.408000pt;}
.ws35{word-spacing:-25.399200pt;}
.ws49{word-spacing:-25.216000pt;}
.ws39{word-spacing:-24.960000pt;}
.ws2e{word-spacing:-24.952000pt;}
.ws4f{word-spacing:-24.768000pt;}
.ws3b{word-spacing:-24.320000pt;}
.ws52{word-spacing:-23.488000pt;}
.ws33{word-spacing:-23.470400pt;}
.ws1f{word-spacing:-21.758933pt;}
.ws21{word-spacing:-20.928000pt;}
.ws4a{word-spacing:-20.480000pt;}
.ws22{word-spacing:-20.464000pt;}
.ws24{word-spacing:-20.096000pt;}
.ws26{word-spacing:-19.648000pt;}
.ws42{word-spacing:-19.646400pt;}
.ws1e{word-spacing:-19.638400pt;}
.ws48{word-spacing:-17.088000pt;}
.ws2b{word-spacing:-16.005333pt;}
.ws17{word-spacing:-15.997600pt;}
.ws29{word-spacing:-15.808000pt;}
.ws16{word-spacing:-15.348800pt;}
.ws12{word-spacing:-12.151200pt;}
.ws11{word-spacing:-11.520000pt;}
.ws1c{word-spacing:-7.284800pt;}
.ws9{word-spacing:-6.656000pt;}
.ws8{word-spacing:-6.390400pt;}
.ws43{word-spacing:-5.562667pt;}
.ws38{word-spacing:-4.928000pt;}
.ws31{word-spacing:-4.915200pt;}
.ws36{word-spacing:-4.271200pt;}
.ws14{word-spacing:-3.824000pt;}
.ws15{word-spacing:-3.648000pt;}
.ws46{word-spacing:-3.456000pt;}
.ws47{word-spacing:-2.368000pt;}
.ws55{word-spacing:0.000000pt;}
.ws28{word-spacing:9.605333pt;}
.ws4d{word-spacing:12.986667pt;}
.ws4e{word-spacing:13.632000pt;}
._0{margin-left:-0.987200pt;}
._4{width:1.084000pt;}
._5{width:15.108000pt;}
._1{width:16.128000pt;}
._7{width:17.088000pt;}
._10{width:18.628000pt;}
._17{width:19.525333pt;}
._b{width:21.360800pt;}
._13{width:22.533333pt;}
._c{width:23.821600pt;}
._11{width:25.676000pt;}
._14{width:27.218400pt;}
._f{width:28.139200pt;}
._e{width:29.438933pt;}
._d{width:31.606400pt;}
._2{width:32.497867pt;}
._16{width:33.567200pt;}
._a{width:34.922667pt;}
._8{width:38.605600pt;}
._6{width:44.278400pt;}
._12{width:45.989067pt;}
._15{width:47.288800pt;}
._18{width:63.749333pt;}
._9{width:92.456000pt;}
._3{width:255.941333pt;}
.fs3{font-size:41.600000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y2d{bottom:96.388000pt;}
.y2c{bottom:114.788000pt;}
.y4e{bottom:131.746667pt;}
.y2b{bottom:133.188000pt;}
.y2a{bottom:151.588000pt;}
.y4d{bottom:163.588000pt;}
.y29{bottom:169.988000pt;}
.y28{bottom:188.388000pt;}
.y4c{bottom:195.266667pt;}
.y27{bottom:206.788000pt;}
.y26{bottom:225.188000pt;}
.y4b{bottom:226.946667pt;}
.y25{bottom:243.588000pt;}
.y4a{bottom:245.346667pt;}
.y24{bottom:261.988000pt;}
.y49{bottom:263.746667pt;}
.y23{bottom:280.388000pt;}
.y48{bottom:295.588000pt;}
.y22{bottom:298.788000pt;}
.y47{bottom:313.988000pt;}
.y21{bottom:317.188000pt;}
.y46{bottom:332.388000pt;}
.y20{bottom:335.588000pt;}
.y45{bottom:350.788000pt;}
.y1f{bottom:353.988000pt;}
.y44{bottom:369.188000pt;}
.y1e{bottom:372.388000pt;}
.y43{bottom:387.588000pt;}
.y1d{bottom:390.788000pt;}
.y42{bottom:405.988000pt;}
.y1c{bottom:409.188000pt;}
.y1b{bottom:427.588000pt;}
.y41{bottom:437.666667pt;}
.y1a{bottom:445.988000pt;}
.y40{bottom:456.066667pt;}
.y19{bottom:464.388000pt;}
.y3f{bottom:474.466667pt;}
.y18{bottom:482.788000pt;}
.y3e{bottom:492.866667pt;}
.y17{bottom:501.188000pt;}
.y3d{bottom:511.266667pt;}
.y3c{bottom:529.666667pt;}
.y16{bottom:537.988000pt;}
.y3b{bottom:561.346667pt;}
.y15{bottom:574.788000pt;}
.y3a{bottom:579.746667pt;}
.y14{bottom:593.188000pt;}
.y39{bottom:598.146667pt;}
.y38{bottom:616.546667pt;}
.y13{bottom:629.988000pt;}
.y37{bottom:634.946667pt;}
.y12{bottom:648.388000pt;}
.y36{bottom:653.346667pt;}
.y35{bottom:671.746667pt;}
.y11{bottom:685.188000pt;}
.y34{bottom:690.146667pt;}
.y10{bottom:703.588000pt;}
.y33{bottom:708.546667pt;}
.yf{bottom:740.388000pt;}
.y32{bottom:758.788000pt;}
.ye{bottom:777.188000pt;}
.yd{bottom:795.588000pt;}
.y31{bottom:813.988000pt;}
.yc{bottom:832.388000pt;}
.y30{bottom:850.788000pt;}
.yb{bottom:869.188000pt;}
.ya{bottom:887.588000pt;}
.y2f{bottom:905.988000pt;}
.y9{bottom:937.666667pt;}
.y8{bottom:956.066667pt;}
.y2e{bottom:974.466667pt;}
.y7{bottom:992.866667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:43.825911pt;}
.h6{height:56.156250pt;}
.h3{height:56.843750pt;}
.h7{height:57.616229pt;}
.h2{height:66.554557pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:113.440000pt;}
.xa{left:117.440000pt;}
.x3{left:129.440000pt;}
.x5{left:140.000000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x6{left:367.840000pt;}
.x8{left:397.600000pt;}
.x4{left:417.800000pt;}
.x7{left:543.678667pt;}
}




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