
    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_db51c08dfd55ff79b07d0abc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_08c0bfbe5721d044ac5249fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_fd4077dd64a0f17d00bdb2ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_2a4f35607f1114dfd5c756ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_51b774b45bd6576ed9a3b35c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,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);}
.ma{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:29.883030px;}
.ls0{letter-spacing:29.892538px;}
.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;}
}
.ws20{word-spacing:-14.824349px;}
.ws15{word-spacing:-14.405920px;}
.ws6{word-spacing:-13.748388px;}
.ws21{word-spacing:-12.313774px;}
.wse{word-spacing:-12.194222px;}
.ws19{word-spacing:-11.895344px;}
.ws14{word-spacing:-11.596466px;}
.ws1a{word-spacing:-11.476915px;}
.ws23{word-spacing:-11.357364px;}
.ws1f{word-spacing:-11.178037px;}
.ws22{word-spacing:-10.699832px;}
.ws7{word-spacing:-10.580281px;}
.ws1c{word-spacing:-10.400954px;}
.ws9{word-spacing:-10.281403px;}
.wsd{word-spacing:-10.161852px;}
.ws11{word-spacing:-10.102076px;}
.wsc{word-spacing:-10.042301px;}
.ws2{word-spacing:-9.982525px;}
.ws17{word-spacing:-9.972247px;}
.wsf{word-spacing:-9.922750px;}
.ws1{word-spacing:-9.862974px;}
.ws3{word-spacing:-9.743423px;}
.wsa{word-spacing:-9.683647px;}
.wsb{word-spacing:-9.623872px;}
.ws1b{word-spacing:-9.564096px;}
.ws12{word-spacing:-8.727238px;}
.ws5{word-spacing:-8.667462px;}
.ws25{word-spacing:-7.232848px;}
.ws8{word-spacing:-4.244068px;}
.ws24{word-spacing:-3.466985px;}
.ws18{word-spacing:-0.071731px;}
.ws1e{word-spacing:-0.059776px;}
.ws13{word-spacing:0.000000px;}
.ws1d{word-spacing:19.867184px;}
.ws16{word-spacing:19.868324px;}
.ws4{word-spacing:26.827469px;}
.ws10{word-spacing:31.322414px;}
.ws0{word-spacing:32.192873px;}
._b{margin-left:-8.756003px;}
._f{margin-left:-7.211339px;}
._a{margin-left:-4.901599px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.597183px;}
._1{width:1.673717px;}
._c{width:19.345786px;}
._3{width:20.959727px;}
._6{width:22.513892px;}
._7{width:24.904916px;}
._2{width:25.980877px;}
._8{width:27.197898px;}
._d{width:29.089208px;}
._5{width:30.344496px;}
._e{width:36.288540px;}
._9{width:44.379755px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2b{bottom:63.168000px;}
.y55{bottom:112.597500px;}
.y54{bottom:130.530000px;}
.y2a{bottom:145.609500px;}
.y53{bottom:157.429500px;}
.y29{bottom:163.542000px;}
.y52{bottom:175.362000px;}
.y28{bottom:181.474500px;}
.y51{bottom:202.261500px;}
.y27{bottom:208.374000px;}
.y50{bottom:220.194000px;}
.y26{bottom:226.306500px;}
.y4f{bottom:238.126500px;}
.y25{bottom:244.239000px;}
.y4e{bottom:256.060500px;}
.y24{bottom:271.138500px;}
.y4d{bottom:283.644000px;}
.y23{bottom:289.071000px;}
.y22{bottom:324.937500px;}
.y4c{bottom:325.476000px;}
.y21{bottom:342.870000px;}
.y4b{bottom:352.375500px;}
.y20{bottom:369.768000px;}
.y4a{bottom:379.275000px;}
.y1f{bottom:387.702000px;}
.y49{bottom:397.207500px;}
.y1e{bottom:405.634500px;}
.y48{bottom:415.140000px;}
.y1d{bottom:423.567000px;}
.y47{bottom:442.039500px;}
.y1c{bottom:450.466500px;}
.y1b{bottom:468.399000px;}
.y46{bottom:468.937500px;}
.y1a{bottom:486.331500px;}
.y45{bottom:495.837000px;}
.y19{bottom:513.231000px;}
.y44{bottom:513.769500px;}
.y43{bottom:531.703500px;}
.y18{bottom:540.814500px;}
.y42{bottom:549.636000px;}
.y41{bottom:567.568500px;}
.y17{bottom:582.646500px;}
.y40{bottom:585.501000px;}
.y16{bottom:600.580500px;}
.y3f{bottom:612.400500px;}
.y15{bottom:618.513000px;}
.y14{bottom:636.445500px;}
.y3e{bottom:639.300000px;}
.y13{bottom:654.378000px;}
.y3d{bottom:657.232500px;}
.y12{bottom:672.310500px;}
.y3c{bottom:675.165000px;}
.y11{bottom:690.243000px;}
.y3b{bottom:702.064500px;}
.y10{bottom:708.177000px;}
.y3a{bottom:719.997000px;}
.yf{bottom:726.109500px;}
.y5f{bottom:737.929500px;}
.y39{bottom:747.580500px;}
.ye{bottom:753.007500px;}
.y5e{bottom:755.862000px;}
.y5d{bottom:773.794500px;}
.yd{bottom:779.907000px;}
.y38{bottom:789.412500px;}
.yc{bottom:797.839500px;}
.y5c{bottom:800.694000px;}
.y37{bottom:807.346500px;}
.yb{bottom:815.773500px;}
.y5b{bottom:818.626500px;}
.y36{bottom:825.279000px;}
.ya{bottom:833.706000px;}
.y5a{bottom:836.559000px;}
.y35{bottom:843.211500px;}
.y9{bottom:851.638500px;}
.y34{bottom:861.144000px;}
.y59{bottom:863.458500px;}
.y8{bottom:869.571000px;}
.y33{bottom:879.076500px;}
.y58{bottom:881.391000px;}
.y32{bottom:897.009000px;}
.y7{bottom:897.154500px;}
.y57{bottom:908.290500px;}
.y31{bottom:914.943000px;}
.y56{bottom:935.874000px;}
.y6{bottom:938.988000px;}
.y30{bottom:941.841000px;}
.y5{bottom:956.920500px;}
.y2f{bottom:959.773500px;}
.y2e{bottom:977.707500px;}
.y4{bottom:983.820000px;}
.y3{bottom:1001.752500px;}
.y2d{bottom:1005.291000px;}
.y2{bottom:1029.336000px;}
.y2c{bottom:1047.123000px;}
.y1{bottom:1065.055500px;}
.h4{height:41.484266px;}
.h3{height:44.831700px;}
.h2{height:53.798400px;}
.h1{height:64.557900px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:105.877500px;}
.x1{left:108.000000px;}
.x2{left:126.264000px;}
.xe{left:145.360500px;}
.xf{left:159.141000px;}
.x3{left:162.172500px;}
.x4{left:177.669000px;}
.xb{left:211.059000px;}
.x10{left:312.498000px;}
.xc{left:383.661000px;}
.x11{left:406.644000px;}
.xd{left:455.263500px;}
.x5{left:514.492500px;}
.x9{left:569.677500px;}
.x12{left:574.161000px;}
.x15{left:606.645000px;}
.x6{left:624.330000px;}
.x13{left:625.711500px;}
.x7{left:633.409500px;}
.xa{left:660.946500px;}
.x14{left:708.007500px;}
.x16{left:716.482500px;}
.x8{left:806.013000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:26.562693pt;}
.ls0{letter-spacing:26.571145pt;}
.ws20{word-spacing:-13.177199pt;}
.ws15{word-spacing:-12.805262pt;}
.ws6{word-spacing:-12.220789pt;}
.ws21{word-spacing:-10.945577pt;}
.wse{word-spacing:-10.839309pt;}
.ws19{word-spacing:-10.573639pt;}
.ws14{word-spacing:-10.307970pt;}
.ws1a{word-spacing:-10.201702pt;}
.ws23{word-spacing:-10.095435pt;}
.ws1f{word-spacing:-9.936033pt;}
.ws22{word-spacing:-9.510962pt;}
.ws7{word-spacing:-9.404694pt;}
.ws1c{word-spacing:-9.245293pt;}
.ws9{word-spacing:-9.139025pt;}
.wsd{word-spacing:-9.032757pt;}
.ws11{word-spacing:-8.979623pt;}
.wsc{word-spacing:-8.926490pt;}
.ws2{word-spacing:-8.873356pt;}
.ws17{word-spacing:-8.864219pt;}
.wsf{word-spacing:-8.820222pt;}
.ws1{word-spacing:-8.767088pt;}
.ws3{word-spacing:-8.660820pt;}
.wsa{word-spacing:-8.607686pt;}
.wsb{word-spacing:-8.554553pt;}
.ws1b{word-spacing:-8.501419pt;}
.ws12{word-spacing:-7.757545pt;}
.ws5{word-spacing:-7.704411pt;}
.ws25{word-spacing:-6.429198pt;}
.ws8{word-spacing:-3.772505pt;}
.ws24{word-spacing:-3.081764pt;}
.ws18{word-spacing:-0.063761pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws13{word-spacing:0.000000pt;}
.ws1d{word-spacing:17.659719pt;}
.ws16{word-spacing:17.660733pt;}
.ws4{word-spacing:23.846639pt;}
.ws10{word-spacing:27.842146pt;}
.ws0{word-spacing:28.615887pt;}
._b{margin-left:-7.783114pt;}
._f{margin-left:-6.410079pt;}
._a{margin-left:-4.356977pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-1.419718pt;}
._1{width:1.487748pt;}
._c{width:17.196254pt;}
._3{width:18.630868pt;}
._6{width:20.012349pt;}
._7{width:22.137703pt;}
._2{width:23.094113pt;}
._8{width:24.175909pt;}
._d{width:25.857074pt;}
._5{width:26.972885pt;}
._e{width:32.256480pt;}
._9{width:39.448671pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:56.149333pt;}
.y55{bottom:100.086667pt;}
.y54{bottom:116.026667pt;}
.y2a{bottom:129.430667pt;}
.y53{bottom:139.937333pt;}
.y29{bottom:145.370667pt;}
.y52{bottom:155.877333pt;}
.y28{bottom:161.310667pt;}
.y51{bottom:179.788000pt;}
.y27{bottom:185.221333pt;}
.y50{bottom:195.728000pt;}
.y26{bottom:201.161333pt;}
.y4f{bottom:211.668000pt;}
.y25{bottom:217.101333pt;}
.y4e{bottom:227.609333pt;}
.y24{bottom:241.012000pt;}
.y4d{bottom:252.128000pt;}
.y23{bottom:256.952000pt;}
.y22{bottom:288.833333pt;}
.y4c{bottom:289.312000pt;}
.y21{bottom:304.773333pt;}
.y4b{bottom:313.222667pt;}
.y20{bottom:328.682667pt;}
.y4a{bottom:337.133333pt;}
.y1f{bottom:344.624000pt;}
.y49{bottom:353.073333pt;}
.y1e{bottom:360.564000pt;}
.y48{bottom:369.013333pt;}
.y1d{bottom:376.504000pt;}
.y47{bottom:392.924000pt;}
.y1c{bottom:400.414667pt;}
.y1b{bottom:416.354667pt;}
.y46{bottom:416.833333pt;}
.y1a{bottom:432.294667pt;}
.y45{bottom:440.744000pt;}
.y19{bottom:456.205333pt;}
.y44{bottom:456.684000pt;}
.y43{bottom:472.625333pt;}
.y18{bottom:480.724000pt;}
.y42{bottom:488.565333pt;}
.y41{bottom:504.505333pt;}
.y17{bottom:517.908000pt;}
.y40{bottom:520.445333pt;}
.y16{bottom:533.849333pt;}
.y3f{bottom:544.356000pt;}
.y15{bottom:549.789333pt;}
.y14{bottom:565.729333pt;}
.y3e{bottom:568.266667pt;}
.y13{bottom:581.669333pt;}
.y3d{bottom:584.206667pt;}
.y12{bottom:597.609333pt;}
.y3c{bottom:600.146667pt;}
.y11{bottom:613.549333pt;}
.y3b{bottom:624.057333pt;}
.y10{bottom:629.490667pt;}
.y3a{bottom:639.997333pt;}
.yf{bottom:645.430667pt;}
.y5f{bottom:655.937333pt;}
.y39{bottom:664.516000pt;}
.ye{bottom:669.340000pt;}
.y5e{bottom:671.877333pt;}
.y5d{bottom:687.817333pt;}
.yd{bottom:693.250667pt;}
.y38{bottom:701.700000pt;}
.yc{bottom:709.190667pt;}
.y5c{bottom:711.728000pt;}
.y37{bottom:717.641333pt;}
.yb{bottom:725.132000pt;}
.y5b{bottom:727.668000pt;}
.y36{bottom:733.581333pt;}
.ya{bottom:741.072000pt;}
.y5a{bottom:743.608000pt;}
.y35{bottom:749.521333pt;}
.y9{bottom:757.012000pt;}
.y34{bottom:765.461333pt;}
.y59{bottom:767.518667pt;}
.y8{bottom:772.952000pt;}
.y33{bottom:781.401333pt;}
.y58{bottom:783.458667pt;}
.y32{bottom:797.341333pt;}
.y7{bottom:797.470667pt;}
.y57{bottom:807.369333pt;}
.y31{bottom:813.282667pt;}
.y56{bottom:831.888000pt;}
.y6{bottom:834.656000pt;}
.y30{bottom:837.192000pt;}
.y5{bottom:850.596000pt;}
.y2f{bottom:853.132000pt;}
.y2e{bottom:869.073333pt;}
.y4{bottom:874.506667pt;}
.y3{bottom:890.446667pt;}
.y2d{bottom:893.592000pt;}
.y2{bottom:914.965333pt;}
.y2c{bottom:930.776000pt;}
.y1{bottom:946.716000pt;}
.h4{height:36.874903pt;}
.h3{height:39.850400pt;}
.h2{height:47.820800pt;}
.h1{height:57.384800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:94.113333pt;}
.x1{left:96.000000pt;}
.x2{left:112.234667pt;}
.xe{left:129.209333pt;}
.xf{left:141.458667pt;}
.x3{left:144.153333pt;}
.x4{left:157.928000pt;}
.xb{left:187.608000pt;}
.x10{left:277.776000pt;}
.xc{left:341.032000pt;}
.x11{left:361.461333pt;}
.xd{left:404.678667pt;}
.x5{left:457.326667pt;}
.x9{left:506.380000pt;}
.x12{left:510.365333pt;}
.x15{left:539.240000pt;}
.x6{left:554.960000pt;}
.x13{left:556.188000pt;}
.x7{left:563.030667pt;}
.xa{left:587.508000pt;}
.x14{left:629.340000pt;}
.x16{left:636.873333pt;}
.x8{left:716.456000pt;}
}




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