
    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_a7930754553d87ef7eb9180f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706543;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_b101d37236d7bb96418c1774.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_3df3079a3c61198bd030d8a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_5d3320ee44fe00a2d5b7e628.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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;}
.ls23{letter-spacing:-0.906000px;}
.ls28{letter-spacing:-0.394800px;}
.ls1c{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.306600px;}
.ls27{letter-spacing:-0.295800px;}
.ls20{letter-spacing:-0.280200px;}
.ls21{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.079800px;}
.ls1f{letter-spacing:-0.053280px;}
.ls17{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.021300px;}
.ls7{letter-spacing:0.026460px;}
.ls1a{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.162720px;}
.ls25{letter-spacing:0.165600px;}
.ls26{letter-spacing:0.197400px;}
.lsb{letter-spacing:0.245400px;}
.ls24{letter-spacing:0.247800px;}
.ls6{letter-spacing:0.280080px;}
.ls9{letter-spacing:0.306720px;}
.lsc{letter-spacing:0.325200px;}
.lsd{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.612000px;}
.ls1e{letter-spacing:0.774000px;}
.ls14{letter-spacing:3.042720px;}
.ls15{letter-spacing:3.762720px;}
.ls16{letter-spacing:5.922720px;}
.ls3{letter-spacing:10.386720px;}
.ls12{letter-spacing:16.722720px;}
.ls13{letter-spacing:17.442720px;}
.ls11{letter-spacing:17.562720px;}
.ls4{letter-spacing:17.586720px;}
.lse{letter-spacing:23.202720px;}
.lsf{letter-spacing:23.922720px;}
.ls10{letter-spacing:24.642720px;}
.lsa{letter-spacing:43.322688px;}
.ls2{letter-spacing:55.026720px;}
.ls1{letter-spacing:201.186720px;}
.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;}
}
.ws16{word-spacing:-167.760000px;}
.wsa{word-spacing:-120.384000px;}
.ws7{word-spacing:-120.240000px;}
.ws6{word-spacing:-67.427280px;}
.ws5{word-spacing:-67.265280px;}
.wsf{word-spacing:-66.714612px;}
.ws2{word-spacing:-66.706560px;}
.ws0{word-spacing:-66.573480px;}
.ws1{word-spacing:-66.546480px;}
.wse{word-spacing:-66.506712px;}
.ws3{word-spacing:-66.346680px;}
.ws4{word-spacing:-66.293280px;}
.ws10{word-spacing:-65.787312px;}
.ws17{word-spacing:-46.997280px;}
.ws14{word-spacing:-46.962480px;}
.ws12{word-spacing:-46.925112px;}
.ws11{word-spacing:-46.922712px;}
.ws13{word-spacing:-46.842912px;}
.ws15{word-spacing:-46.834680px;}
.ws18{word-spacing:-46.341480px;}
.ws19{word-spacing:-46.242480px;}
.ws8{word-spacing:-33.533520px;}
.wsb{word-spacing:-33.493212px;}
.wsd{word-spacing:-33.426720px;}
.ws9{word-spacing:-33.373440px;}
.wsc{word-spacing:-33.146520px;}
.ws1a{word-spacing:0.000000px;}
._25{margin-left:-17.990880px;}
._17{margin-left:-13.718016px;}
._8{margin-left:-12.602160px;}
._22{margin-left:-11.286000px;}
._d{margin-left:-9.551040px;}
._f{margin-left:-7.633680px;}
._18{margin-left:-6.076224px;}
._1{margin-left:-5.020560px;}
._10{margin-left:-2.970480px;}
._0{margin-left:-1.585440px;}
._2{width:1.201440px;}
._c{width:2.878800px;}
._e{width:4.510560px;}
._24{width:5.593440px;}
._23{width:6.700080px;}
._16{width:8.049312px;}
._a{width:10.190880px;}
._9{width:11.480400px;}
._11{width:14.506560px;}
._12{width:15.642240px;}
._19{width:16.871616px;}
._b{width:17.932320px;}
._1c{width:19.001520px;}
._1d{width:20.025840px;}
._21{width:22.476480px;}
._20{width:23.842080px;}
._15{width:25.612560px;}
._13{width:26.626080px;}
._14{width:27.726960px;}
._5{width:34.537440px;}
._3{width:35.719680px;}
._4{width:36.865920px;}
._1f{width:43.677312px;}
._1b{width:45.692040px;}
._1a{width:46.797240px;}
._7{width:54.291120px;}
._1e{width:122.468400px;}
._6{width:201.224400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsb{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs5{font-size:216.000000px;}
.fs6{font-size:239.760000px;}
.fs9{font-size:239.904000px;}
.fs0{font-size:264.240000px;}
.fs4{font-size:306.000000px;}
.fs2{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.fs3{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:68.076000px;}
.y29{bottom:100.476000px;}
.y28{bottom:132.876000px;}
.y27{bottom:172.470000px;}
.y26{bottom:212.070000px;}
.y25{bottom:244.470000px;}
.y24{bottom:284.070000px;}
.y23{bottom:323.670000px;}
.y22{bottom:356.115000px;}
.y31{bottom:372.420000px;}
.y21{bottom:388.470000px;}
.y20{bottom:428.115000px;}
.y30{bottom:437.220000px;}
.y1f{bottom:467.715000px;}
.y1e{bottom:500.115000px;}
.y2f{bottom:502.020000px;}
.y1d{bottom:532.515000px;}
.y2e{bottom:566.820000px;}
.y1c{bottom:572.115000px;}
.y1b{bottom:611.715000px;}
.y2d{bottom:631.620000px;}
.y1a{bottom:644.115000px;}
.y19{bottom:683.715000px;}
.y2c{bottom:696.420000px;}
.y18{bottom:723.315000px;}
.y17{bottom:755.715000px;}
.y2b{bottom:761.220000px;}
.y16{bottom:788.115000px;}
.ye{bottom:941.430000px;}
.y32{bottom:945.540000px;}
.y48{bottom:1073.910000px;}
.y47{bottom:1136.010000px;}
.y46{bottom:1176.330000px;}
.y45{bottom:1226.730000px;}
.y44{bottom:1277.175000px;}
.y43{bottom:1317.495000px;}
.y42{bottom:1357.815000px;}
.y41{bottom:1408.215000px;}
.y40{bottom:1458.615000px;}
.y3f{bottom:1498.935000px;}
.y3e{bottom:1549.335000px;}
.y3d{bottom:1599.735000px;}
.y3c{bottom:1640.055000px;}
.y3b{bottom:1680.375000px;}
.y3a{bottom:1730.775000px;}
.y39{bottom:1781.175000px;}
.y38{bottom:1831.575000px;}
.y37{bottom:1881.975000px;}
.y36{bottom:1932.375000px;}
.y35{bottom:1982.775000px;}
.y34{bottom:2033.175000px;}
.y33{bottom:2073.495000px;}
.y1{bottom:2231.460000px;}
.y15{bottom:2600.610000px;}
.y14{bottom:2672.610000px;}
.y13{bottom:2744.640000px;}
.y12{bottom:2816.640000px;}
.y11{bottom:2888.640000px;}
.y10{bottom:2960.640000px;}
.yf{bottom:3032.640000px;}
.yd{bottom:3196.770000px;}
.yc{bottom:3568.425000px;}
.yb{bottom:3607.305000px;}
.ya{bottom:3646.185000px;}
.y5{bottom:3661.095000px;}
.y9{bottom:3685.065000px;}
.y8{bottom:3723.945000px;}
.y7{bottom:3762.825000px;}
.y4{bottom:3764.955000px;}
.y6{bottom:3801.705000px;}
.y3{bottom:3913.815000px;}
.y2{bottom:4021.815000px;}
.h8{height:125.406562px;}
.h9{height:125.556750px;}
.hc{height:174.968437px;}
.hb{height:175.118625px;}
.h6{height:225.281250px;}
.h7{height:250.062187px;}
.ha{height:250.212375px;}
.h1{height:275.594063px;}
.h5{height:318.550781px;}
.h3{height:375.468750px;}
.h2{height:375.618938px;}
.h4{height:550.437187px;}
.h0{height:4252.500000px;}
.w0{width:3402.000000px;}
.x0{left:0.000000px;}
.x5{left:125.316000px;}
.x10{left:158.505000px;}
.x11{left:173.085000px;}
.x13{left:177.405000px;}
.x12{left:193.605000px;}
.x2{left:366.330000px;}
.x3{left:486.210000px;}
.xc{left:749.700000px;}
.x8{left:751.575000px;}
.x6{left:849.135000px;}
.xb{left:868.245000px;}
.x9{left:937.515000px;}
.x4{left:1200.315000px;}
.x7{left:1213.635000px;}
.xa{left:1291.215000px;}
.x1{left:1302.870000px;}
.xd{left:2296.080000px;}
.xe{left:2306.520000px;}
.xf{left:2549.955000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-0.805333pt;}
.ls28{letter-spacing:-0.350933pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.272533pt;}
.ls27{letter-spacing:-0.262933pt;}
.ls20{letter-spacing:-0.249067pt;}
.ls21{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.070933pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.018933pt;}
.ls7{letter-spacing:0.023520pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.144640pt;}
.ls25{letter-spacing:0.147200pt;}
.ls26{letter-spacing:0.175467pt;}
.lsb{letter-spacing:0.218133pt;}
.ls24{letter-spacing:0.220267pt;}
.ls6{letter-spacing:0.248960pt;}
.ls9{letter-spacing:0.272640pt;}
.lsc{letter-spacing:0.289067pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.544000pt;}
.ls1e{letter-spacing:0.688000pt;}
.ls14{letter-spacing:2.704640pt;}
.ls15{letter-spacing:3.344640pt;}
.ls16{letter-spacing:5.264640pt;}
.ls3{letter-spacing:9.232640pt;}
.ls12{letter-spacing:14.864640pt;}
.ls13{letter-spacing:15.504640pt;}
.ls11{letter-spacing:15.611307pt;}
.ls4{letter-spacing:15.632640pt;}
.lse{letter-spacing:20.624640pt;}
.lsf{letter-spacing:21.264640pt;}
.ls10{letter-spacing:21.904640pt;}
.lsa{letter-spacing:38.509056pt;}
.ls2{letter-spacing:48.912640pt;}
.ls1{letter-spacing:178.832640pt;}
.ws16{word-spacing:-149.120000pt;}
.wsa{word-spacing:-107.008000pt;}
.ws7{word-spacing:-106.880000pt;}
.ws6{word-spacing:-59.935360pt;}
.ws5{word-spacing:-59.791360pt;}
.wsf{word-spacing:-59.301877pt;}
.ws2{word-spacing:-59.294720pt;}
.ws0{word-spacing:-59.176427pt;}
.ws1{word-spacing:-59.152427pt;}
.wse{word-spacing:-59.117077pt;}
.ws3{word-spacing:-58.974827pt;}
.ws4{word-spacing:-58.927360pt;}
.ws10{word-spacing:-58.477611pt;}
.ws17{word-spacing:-41.775360pt;}
.ws14{word-spacing:-41.744427pt;}
.ws12{word-spacing:-41.711211pt;}
.ws11{word-spacing:-41.709077pt;}
.ws13{word-spacing:-41.638144pt;}
.ws15{word-spacing:-41.630827pt;}
.ws18{word-spacing:-41.192427pt;}
.ws19{word-spacing:-41.104427pt;}
.ws8{word-spacing:-29.807573pt;}
.wsb{word-spacing:-29.771744pt;}
.wsd{word-spacing:-29.712640pt;}
.ws9{word-spacing:-29.665280pt;}
.wsc{word-spacing:-29.463573pt;}
.ws1a{word-spacing:0.000000pt;}
._25{margin-left:-15.991893pt;}
._17{margin-left:-12.193792pt;}
._8{margin-left:-11.201920pt;}
._22{margin-left:-10.032000pt;}
._d{margin-left:-8.489813pt;}
._f{margin-left:-6.785493pt;}
._18{margin-left:-5.401088pt;}
._1{margin-left:-4.462720pt;}
._10{margin-left:-2.640427pt;}
._0{margin-left:-1.409280pt;}
._2{width:1.067947pt;}
._c{width:2.558933pt;}
._e{width:4.009387pt;}
._24{width:4.971947pt;}
._23{width:5.955627pt;}
._16{width:7.154944pt;}
._a{width:9.058560pt;}
._9{width:10.204800pt;}
._11{width:12.894720pt;}
._12{width:13.904213pt;}
._19{width:14.996992pt;}
._b{width:15.939840pt;}
._1c{width:16.890240pt;}
._1d{width:17.800747pt;}
._21{width:19.979093pt;}
._20{width:21.192960pt;}
._15{width:22.766720pt;}
._13{width:23.667627pt;}
._14{width:24.646187pt;}
._5{width:30.699947pt;}
._3{width:31.750827pt;}
._4{width:32.769707pt;}
._1f{width:38.824277pt;}
._1b{width:40.615147pt;}
._1a{width:41.597547pt;}
._7{width:48.258773pt;}
._1e{width:108.860800pt;}
._6{width:178.866133pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsb{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs5{font-size:192.000000pt;}
.fs6{font-size:213.120000pt;}
.fs9{font-size:213.248000pt;}
.fs0{font-size:234.880000pt;}
.fs4{font-size:272.000000pt;}
.fs2{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.fs3{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:60.512000pt;}
.y29{bottom:89.312000pt;}
.y28{bottom:118.112000pt;}
.y27{bottom:153.306667pt;}
.y26{bottom:188.506667pt;}
.y25{bottom:217.306667pt;}
.y24{bottom:252.506667pt;}
.y23{bottom:287.706667pt;}
.y22{bottom:316.546667pt;}
.y31{bottom:331.040000pt;}
.y21{bottom:345.306667pt;}
.y20{bottom:380.546667pt;}
.y30{bottom:388.640000pt;}
.y1f{bottom:415.746667pt;}
.y1e{bottom:444.546667pt;}
.y2f{bottom:446.240000pt;}
.y1d{bottom:473.346667pt;}
.y2e{bottom:503.840000pt;}
.y1c{bottom:508.546667pt;}
.y1b{bottom:543.746667pt;}
.y2d{bottom:561.440000pt;}
.y1a{bottom:572.546667pt;}
.y19{bottom:607.746667pt;}
.y2c{bottom:619.040000pt;}
.y18{bottom:642.946667pt;}
.y17{bottom:671.746667pt;}
.y2b{bottom:676.640000pt;}
.y16{bottom:700.546667pt;}
.ye{bottom:836.826667pt;}
.y32{bottom:840.480000pt;}
.y48{bottom:954.586667pt;}
.y47{bottom:1009.786667pt;}
.y46{bottom:1045.626667pt;}
.y45{bottom:1090.426667pt;}
.y44{bottom:1135.266667pt;}
.y43{bottom:1171.106667pt;}
.y42{bottom:1206.946667pt;}
.y41{bottom:1251.746667pt;}
.y40{bottom:1296.546667pt;}
.y3f{bottom:1332.386667pt;}
.y3e{bottom:1377.186667pt;}
.y3d{bottom:1421.986667pt;}
.y3c{bottom:1457.826667pt;}
.y3b{bottom:1493.666667pt;}
.y3a{bottom:1538.466667pt;}
.y39{bottom:1583.266667pt;}
.y38{bottom:1628.066667pt;}
.y37{bottom:1672.866667pt;}
.y36{bottom:1717.666667pt;}
.y35{bottom:1762.466667pt;}
.y34{bottom:1807.266667pt;}
.y33{bottom:1843.106667pt;}
.y1{bottom:1983.520000pt;}
.y15{bottom:2311.653333pt;}
.y14{bottom:2375.653333pt;}
.y13{bottom:2439.680000pt;}
.y12{bottom:2503.680000pt;}
.y11{bottom:2567.680000pt;}
.y10{bottom:2631.680000pt;}
.yf{bottom:2695.680000pt;}
.yd{bottom:2841.573333pt;}
.yc{bottom:3171.933333pt;}
.yb{bottom:3206.493333pt;}
.ya{bottom:3241.053333pt;}
.y5{bottom:3254.306667pt;}
.y9{bottom:3275.613333pt;}
.y8{bottom:3310.173333pt;}
.y7{bottom:3344.733333pt;}
.y4{bottom:3346.626667pt;}
.y6{bottom:3379.293333pt;}
.y3{bottom:3478.946667pt;}
.y2{bottom:3574.946667pt;}
.h8{height:111.472500pt;}
.h9{height:111.606000pt;}
.hc{height:155.527500pt;}
.hb{height:155.661000pt;}
.h6{height:200.250000pt;}
.h7{height:222.277500pt;}
.ha{height:222.411000pt;}
.h1{height:244.972500pt;}
.h5{height:283.156250pt;}
.h3{height:333.750000pt;}
.h2{height:333.883500pt;}
.h4{height:489.277500pt;}
.h0{height:3780.000000pt;}
.w0{width:3024.000000pt;}
.x0{left:0.000000pt;}
.x5{left:111.392000pt;}
.x10{left:140.893333pt;}
.x11{left:153.853333pt;}
.x13{left:157.693333pt;}
.x12{left:172.093333pt;}
.x2{left:325.626667pt;}
.x3{left:432.186667pt;}
.xc{left:666.400000pt;}
.x8{left:668.066667pt;}
.x6{left:754.786667pt;}
.xb{left:771.773333pt;}
.x9{left:833.346667pt;}
.x4{left:1066.946667pt;}
.x7{left:1078.786667pt;}
.xa{left:1147.746667pt;}
.x1{left:1158.106667pt;}
.xd{left:2040.960000pt;}
.xe{left:2050.240000pt;}
.xf{left:2266.626667pt;}
}




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