
    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_39d650ff614cb2d922b6a229.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_ffbee8164dd85261e438f247.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_601c2131eeeb0a4e15cf1b68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721191;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_ffbee8164dd85261e438f247.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_601c2131eeeb0a4e15cf1b68.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.721191;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:ff6;src:url('chunks/assets/font_fd0c581d1d543611f92e339c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715000;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:ff7;src:url('chunks/assets/font_4947cb66237198b6adb31fe4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840000;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:ff8;src:url('chunks/assets/font_f63efb66fe3ca8e4fd6f38a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.076000;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:ff9;src:url('chunks/assets/font_b694c404066f3bc279496570.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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:ffa;src:url('chunks/assets/font_74bd4d51955aad297313bdfe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.721191;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:ffb;src:url('chunks/assets/font_fa0abd24a0b5864eae9aba76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.858000;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:ffc;src:url('chunks/assets/font_ba7056006e03cf928b28217e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.906000;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);}
.m2{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,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;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.282177px;}
.ls2{letter-spacing:0.564354px;}
.ls0{letter-spacing:0.857385px;}
.ls1{letter-spacing:1.362630px;}
.ls8{letter-spacing:2.850000px;}
.ls7{letter-spacing:3.990000px;}
.ls6{letter-spacing:4.620000px;}
.ls5{letter-spacing:7.200000px;}
.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;}
}
.ws3{word-spacing:-12.810836px;}
.ws24{word-spacing:-12.258000px;}
.ws2{word-spacing:-10.215000px;}
.ws18{word-spacing:-3.990000px;}
.ws2a{word-spacing:-3.705000px;}
.ws31{word-spacing:-3.078000px;}
.ws2c{word-spacing:-2.223000px;}
.ws11{word-spacing:-2.109000px;}
.ws23{word-spacing:-2.052000px;}
.ws30{word-spacing:-1.824000px;}
.ws1b{word-spacing:-1.653000px;}
.ws2e{word-spacing:-1.539000px;}
.ws1{word-spacing:-1.417135px;}
.ws6{word-spacing:-1.362630px;}
.ws19{word-spacing:-1.197000px;}
.ws1a{word-spacing:-1.140000px;}
.ws0{word-spacing:-0.891680px;}
.ws5{word-spacing:-0.857385px;}
.ws34{word-spacing:-0.855000px;}
.ws14{word-spacing:-0.684000px;}
.ws22{word-spacing:-0.627000px;}
.ws8{word-spacing:-0.570000px;}
.ws7{word-spacing:-0.282177px;}
.ws25{word-spacing:-0.210000px;}
.ws2d{word-spacing:-0.114000px;}
.ws4{word-spacing:0.000000px;}
.ws21{word-spacing:0.057000px;}
.ws1d{word-spacing:0.285000px;}
.ws33{word-spacing:0.570000px;}
.ws1f{word-spacing:0.627000px;}
.ws20{word-spacing:1.026000px;}
.ws10{word-spacing:1.140000px;}
.ws37{word-spacing:1.254000px;}
.ws38{word-spacing:1.539000px;}
.ws2f{word-spacing:1.824000px;}
.wsb{word-spacing:2.166000px;}
.ws17{word-spacing:2.394000px;}
.ws15{word-spacing:3.021000px;}
.ws1c{word-spacing:3.078000px;}
.ws13{word-spacing:3.363000px;}
.ws12{word-spacing:3.648000px;}
.ws2b{word-spacing:3.705000px;}
.ws26{word-spacing:3.819000px;}
.ws36{word-spacing:3.933000px;}
.ws32{word-spacing:4.104000px;}
.ws1e{word-spacing:4.161000px;}
.wsc{word-spacing:4.560000px;}
.wsd{word-spacing:4.617000px;}
.wsa{word-spacing:5.472000px;}
.ws28{word-spacing:5.700000px;}
.ws9{word-spacing:5.928000px;}
.ws35{word-spacing:5.985000px;}
.wse{word-spacing:7.410000px;}
.ws29{word-spacing:7.695000px;}
.ws27{word-spacing:8.094000px;}
.ws16{word-spacing:9.348000px;}
.wsf{word-spacing:13.395000px;}
._4{margin-left:-8.984400px;}
._5{margin-left:-6.276000px;}
._7{margin-left:-4.753800px;}
._1{margin-left:-3.555000px;}
._2{margin-left:-2.355000px;}
._0{margin-left:-1.305000px;}
._3{width:1.176000px;}
._6{width:3.548730px;}
.fc4{color:rgb(102,109,107);}
.fc3{color:transparent;}
.fc5{color:rgb(235,153,153);}
.fc2{color:rgb(59,72,71);}
.fc1{color:rgb(50,50,56);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:34.295400px;}
.fs8{font-size:39.900000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:45.600000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:54.505200px;}
.fs5{font-size:56.435400px;}
.fs6{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.928550px;}
.y55{bottom:45.928950px;}
.y30{bottom:100.984200px;}
.y2f{bottom:118.084200px;}
.y2e{bottom:135.184200px;}
.y53{bottom:146.998650px;}
.y2d{bottom:152.284200px;}
.y52{bottom:164.098650px;}
.y2c{bottom:169.384200px;}
.y2b{bottom:186.484200px;}
.y2a{bottom:203.584200px;}
.y51{bottom:216.298650px;}
.y29{bottom:220.684200px;}
.y50{bottom:233.398650px;}
.y28{bottom:237.784200px;}
.y4f{bottom:250.498650px;}
.y27{bottom:254.884200px;}
.y4e{bottom:267.598650px;}
.y26{bottom:271.984200px;}
.y25{bottom:289.084200px;}
.y4d{bottom:301.798650px;}
.y24{bottom:306.184200px;}
.y4c{bottom:318.898650px;}
.y23{bottom:323.284200px;}
.y4b{bottom:335.998650px;}
.y22{bottom:340.384200px;}
.y4a{bottom:353.098650px;}
.y21{bottom:357.484200px;}
.y49{bottom:370.198650px;}
.y48{bottom:387.298650px;}
.y20{bottom:391.684200px;}
.y47{bottom:404.398650px;}
.y1f{bottom:408.784200px;}
.y46{bottom:421.498650px;}
.y1e{bottom:425.884350px;}
.y45{bottom:438.598650px;}
.y1d{bottom:442.984200px;}
.y44{bottom:455.698650px;}
.y1c{bottom:460.084200px;}
.y43{bottom:489.898650px;}
.y1b{bottom:494.284200px;}
.y42{bottom:506.998650px;}
.y1a{bottom:511.384350px;}
.y41{bottom:524.098650px;}
.y19{bottom:528.484200px;}
.y40{bottom:541.198650px;}
.y18{bottom:545.584200px;}
.y3f{bottom:558.298650px;}
.y17{bottom:562.684200px;}
.y3e{bottom:575.398650px;}
.y16{bottom:579.784200px;}
.y3d{bottom:592.498650px;}
.y10{bottom:597.565800px;}
.y3c{bottom:609.598650px;}
.y15{bottom:613.984200px;}
.y3b{bottom:626.698650px;}
.y14{bottom:631.084200px;}
.yf{bottom:631.596600px;}
.y3a{bottom:643.798650px;}
.y13{bottom:648.184200px;}
.ye{bottom:648.527250px;}
.y39{bottom:660.898650px;}
.y12{bottom:665.284200px;}
.yd{bottom:665.457900px;}
.y38{bottom:677.998650px;}
.y11{bottom:682.384200px;}
.yc{bottom:682.388700px;}
.y37{bottom:695.098650px;}
.y36{bottom:712.198650px;}
.y35{bottom:729.298650px;}
.yb{bottom:737.647650px;}
.y34{bottom:746.398650px;}
.y54{bottom:763.498650px;}
.y6{bottom:775.565400px;}
.y5{bottom:789.065400px;}
.y3{bottom:807.873000px;}
.ya{bottom:813.183450px;}
.y33{bottom:821.409450px;}
.y9{bottom:826.683450px;}
.y2{bottom:839.762100px;}
.y31{bottom:839.850750px;}
.y32{bottom:839.976450px;}
.y8{bottom:840.183450px;}
.y1{bottom:851.181750px;}
.y7{bottom:855.183450px;}
.h3{height:24.733548px;}
.h7{height:31.500000px;}
.h6{height:32.220000px;}
.hc{height:34.398000px;}
.hd{height:38.577600px;}
.hf{height:38.664000px;}
.h5{height:39.308682px;}
.h9{height:40.407746px;}
.hb{height:40.812000px;}
.h2{height:42.960000px;}
.ha{height:46.220593px;}
.he{height:50.958000px;}
.h8{height:59.400000px;}
.h4{height:62.715000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:88.548000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:25.873350px;}
.x2{left:84.876600px;}
.xc{left:100.984350px;}
.x6{left:102.215550px;}
.x8{left:121.275900px;}
.x3{left:182.132550px;}
.x5{left:253.071750px;}
.x9{left:264.494550px;}
.x7{left:306.381000px;}
.xd{left:310.518600px;}
.xe{left:366.780300px;}
.x4{left:667.559100px;}
.xb{left:1122.314550px;}
.x1{left:1215.361500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.250824pt;}
.ls2{letter-spacing:0.501648pt;}
.ls0{letter-spacing:0.762120pt;}
.ls1{letter-spacing:1.211227pt;}
.ls8{letter-spacing:2.533333pt;}
.ls7{letter-spacing:3.546667pt;}
.ls6{letter-spacing:4.106667pt;}
.ls5{letter-spacing:6.400000pt;}
.ws3{word-spacing:-11.387410pt;}
.ws24{word-spacing:-10.896000pt;}
.ws2{word-spacing:-9.080000pt;}
.ws18{word-spacing:-3.546667pt;}
.ws2a{word-spacing:-3.293333pt;}
.ws31{word-spacing:-2.736000pt;}
.ws2c{word-spacing:-1.976000pt;}
.ws11{word-spacing:-1.874667pt;}
.ws23{word-spacing:-1.824000pt;}
.ws30{word-spacing:-1.621333pt;}
.ws1b{word-spacing:-1.469333pt;}
.ws2e{word-spacing:-1.368000pt;}
.ws1{word-spacing:-1.259676pt;}
.ws6{word-spacing:-1.211227pt;}
.ws19{word-spacing:-1.064000pt;}
.ws1a{word-spacing:-1.013333pt;}
.ws0{word-spacing:-0.792605pt;}
.ws5{word-spacing:-0.762120pt;}
.ws34{word-spacing:-0.760000pt;}
.ws14{word-spacing:-0.608000pt;}
.ws22{word-spacing:-0.557333pt;}
.ws8{word-spacing:-0.506667pt;}
.ws7{word-spacing:-0.250824pt;}
.ws25{word-spacing:-0.186667pt;}
.ws2d{word-spacing:-0.101333pt;}
.ws4{word-spacing:0.000000pt;}
.ws21{word-spacing:0.050667pt;}
.ws1d{word-spacing:0.253333pt;}
.ws33{word-spacing:0.506667pt;}
.ws1f{word-spacing:0.557333pt;}
.ws20{word-spacing:0.912000pt;}
.ws10{word-spacing:1.013333pt;}
.ws37{word-spacing:1.114667pt;}
.ws38{word-spacing:1.368000pt;}
.ws2f{word-spacing:1.621333pt;}
.wsb{word-spacing:1.925333pt;}
.ws17{word-spacing:2.128000pt;}
.ws15{word-spacing:2.685333pt;}
.ws1c{word-spacing:2.736000pt;}
.ws13{word-spacing:2.989333pt;}
.ws12{word-spacing:3.242667pt;}
.ws2b{word-spacing:3.293333pt;}
.ws26{word-spacing:3.394667pt;}
.ws36{word-spacing:3.496000pt;}
.ws32{word-spacing:3.648000pt;}
.ws1e{word-spacing:3.698667pt;}
.wsc{word-spacing:4.053333pt;}
.wsd{word-spacing:4.104000pt;}
.wsa{word-spacing:4.864000pt;}
.ws28{word-spacing:5.066667pt;}
.ws9{word-spacing:5.269333pt;}
.ws35{word-spacing:5.320000pt;}
.wse{word-spacing:6.586667pt;}
.ws29{word-spacing:6.840000pt;}
.ws27{word-spacing:7.194667pt;}
.ws16{word-spacing:8.309333pt;}
.wsf{word-spacing:11.906667pt;}
._4{margin-left:-7.986133pt;}
._5{margin-left:-5.578667pt;}
._7{margin-left:-4.225600pt;}
._1{margin-left:-3.160000pt;}
._2{margin-left:-2.093333pt;}
._0{margin-left:-1.160000pt;}
._3{width:1.045333pt;}
._6{width:3.154427pt;}
.fs1{font-size:30.484800pt;}
.fs8{font-size:35.466667pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:40.533333pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:48.449067pt;}
.fs5{font-size:50.164800pt;}
.fs6{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.380933pt;}
.y55{bottom:40.825733pt;}
.y30{bottom:89.763733pt;}
.y2f{bottom:104.963733pt;}
.y2e{bottom:120.163733pt;}
.y53{bottom:130.665467pt;}
.y2d{bottom:135.363733pt;}
.y52{bottom:145.865467pt;}
.y2c{bottom:150.563733pt;}
.y2b{bottom:165.763733pt;}
.y2a{bottom:180.963733pt;}
.y51{bottom:192.265467pt;}
.y29{bottom:196.163733pt;}
.y50{bottom:207.465467pt;}
.y28{bottom:211.363733pt;}
.y4f{bottom:222.665467pt;}
.y27{bottom:226.563733pt;}
.y4e{bottom:237.865467pt;}
.y26{bottom:241.763733pt;}
.y25{bottom:256.963733pt;}
.y4d{bottom:268.265467pt;}
.y24{bottom:272.163733pt;}
.y4c{bottom:283.465467pt;}
.y23{bottom:287.363733pt;}
.y4b{bottom:298.665467pt;}
.y22{bottom:302.563733pt;}
.y4a{bottom:313.865467pt;}
.y21{bottom:317.763733pt;}
.y49{bottom:329.065467pt;}
.y48{bottom:344.265467pt;}
.y20{bottom:348.163733pt;}
.y47{bottom:359.465467pt;}
.y1f{bottom:363.363733pt;}
.y46{bottom:374.665467pt;}
.y1e{bottom:378.563867pt;}
.y45{bottom:389.865467pt;}
.y1d{bottom:393.763733pt;}
.y44{bottom:405.065467pt;}
.y1c{bottom:408.963733pt;}
.y43{bottom:435.465467pt;}
.y1b{bottom:439.363733pt;}
.y42{bottom:450.665467pt;}
.y1a{bottom:454.563867pt;}
.y41{bottom:465.865467pt;}
.y19{bottom:469.763733pt;}
.y40{bottom:481.065467pt;}
.y18{bottom:484.963733pt;}
.y3f{bottom:496.265467pt;}
.y17{bottom:500.163733pt;}
.y3e{bottom:511.465467pt;}
.y16{bottom:515.363733pt;}
.y3d{bottom:526.665467pt;}
.y10{bottom:531.169600pt;}
.y3c{bottom:541.865467pt;}
.y15{bottom:545.763733pt;}
.y3b{bottom:557.065467pt;}
.y14{bottom:560.963733pt;}
.yf{bottom:561.419200pt;}
.y3a{bottom:572.265467pt;}
.y13{bottom:576.163733pt;}
.ye{bottom:576.468667pt;}
.y39{bottom:587.465467pt;}
.y12{bottom:591.363733pt;}
.yd{bottom:591.518133pt;}
.y38{bottom:602.665467pt;}
.y11{bottom:606.563733pt;}
.yc{bottom:606.567733pt;}
.y37{bottom:617.865467pt;}
.y36{bottom:633.065467pt;}
.y35{bottom:648.265467pt;}
.yb{bottom:655.686800pt;}
.y34{bottom:663.465467pt;}
.y54{bottom:678.665467pt;}
.y6{bottom:689.391467pt;}
.y5{bottom:701.391467pt;}
.y3{bottom:718.109333pt;}
.ya{bottom:722.829733pt;}
.y33{bottom:730.141733pt;}
.y9{bottom:734.829733pt;}
.y2{bottom:746.455200pt;}
.y31{bottom:746.534000pt;}
.y32{bottom:746.645733pt;}
.y8{bottom:746.829733pt;}
.y1{bottom:756.606000pt;}
.y7{bottom:760.163067pt;}
.h3{height:21.985376pt;}
.h7{height:28.000000pt;}
.h6{height:28.640000pt;}
.hc{height:30.576000pt;}
.hd{height:34.291200pt;}
.hf{height:34.368000pt;}
.h5{height:34.941051pt;}
.h9{height:35.917997pt;}
.hb{height:36.277333pt;}
.h2{height:38.186667pt;}
.ha{height:41.084971pt;}
.he{height:45.296000pt;}
.h8{height:52.800000pt;}
.h4{height:55.746667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:78.709333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:22.998533pt;}
.x2{left:75.445867pt;}
.xc{left:89.763867pt;}
.x6{left:90.858267pt;}
.x8{left:107.800800pt;}
.x3{left:161.895600pt;}
.x5{left:224.952667pt;}
.x9{left:235.106267pt;}
.x7{left:272.338667pt;}
.xd{left:276.016533pt;}
.xe{left:326.026933pt;}
.x4{left:593.385867pt;}
.xb{left:997.612933pt;}
.x1{left:1080.321333pt;}
}




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