
    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_0920dd2284f6b229361c52bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_85f020fef69c603b27d4e004.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_709428e47ff90fa9800b9db6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_fbbe548070df22c08799ea08.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_52bc60a6d2f88c92df7d4a47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_794d14b1b03144ce3e42b28e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_82e7905087edce53fee2ee8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_9c27a19f5de8dd23f57a4ae3.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-18.840000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.158000px;}
.ls13{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.756000px;}
.ls11{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.696000px;}
.ls1e{letter-spacing:-0.618000px;}
.ls1c{letter-spacing:-0.430800px;}
.ls1f{letter-spacing:-0.408600px;}
.lse{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.358800px;}
.ls20{letter-spacing:-0.348600px;}
.ls10{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.145200px;}
.ls21{letter-spacing:-0.083400px;}
.ls1b{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.470784px;}
.ls15{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.508200px;}
.ls6{letter-spacing:0.552096px;}
.lsb{letter-spacing:0.585120px;}
.ls7{letter-spacing:0.665280px;}
.ls8{letter-spacing:0.673920px;}
.ls22{letter-spacing:1.326000px;}
.ls16{letter-spacing:1.872000px;}
.ls4{letter-spacing:4.464000px;}
.ls3{letter-spacing:21.711456px;}
.ls2{letter-spacing:37.584000px;}
.ls0{letter-spacing:60.624000px;}
.lsa{letter-spacing:388.716480px;}
.ls9{letter-spacing:392.088000px;}
.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;}
}
.ws7{word-spacing:-50.688000px;}
.ws6{word-spacing:-49.320000px;}
.ws5{word-spacing:-49.248000px;}
.wsa{word-spacing:-49.208544px;}
.ws4{word-spacing:-49.176000px;}
.wsc{word-spacing:-49.032000px;}
.wsd{word-spacing:-48.744000px;}
.ws9{word-spacing:-48.703344px;}
.ws0{word-spacing:-48.528000px;}
.ws1{word-spacing:-48.096000px;}
.wsb{word-spacing:-48.092544px;}
.ws2{word-spacing:-47.808000px;}
.ws3{word-spacing:-47.736000px;}
.ws8{word-spacing:-47.690544px;}
.ws10{word-spacing:-43.791720px;}
.wse{word-spacing:-43.283520px;}
.ws12{word-spacing:-42.907464px;}
.wsf{word-spacing:-42.852720px;}
.ws11{word-spacing:-42.665520px;}
.ws13{word-spacing:-38.076480px;}
.ws14{word-spacing:0.000000px;}
._10{margin-left:-18.737760px;}
._9{margin-left:-10.197120px;}
._a{margin-left:-7.050240px;}
._4{margin-left:-5.279040px;}
._6{margin-left:-4.213440px;}
._0{margin-left:-2.872800px;}
._2{margin-left:-1.340640px;}
._1{width:1.415520px;}
._3{width:3.414240px;}
._7{width:4.980000px;}
._5{width:6.063360px;}
._8{width:7.237920px;}
._12{width:20.499744px;}
._11{width:21.975552px;}
._e{width:36.464640px;}
._d{width:37.833120px;}
._f{width:39.673920px;}
._b{width:61.632000px;}
._c{width:63.800640px;}
._15{width:225.499200px;}
._17{width:346.893600px;}
._16{width:388.836480px;}
._13{width:469.256160px;}
._14{width:721.332480px;}
.fc6{color:transparent;}
.fc4{color:rgb(99,37,35);}
.fc3{color:rgb(149,55,53);}
.fc2{color:rgb(96,74,123);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:102.240000px;}
.fsb{font-size:144.000000px;}
.fs3{font-size:168.480000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:180.144000px;}
.fs0{font-size:191.520000px;}
.fsa{font-size:191.664000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs4{font-size:335.520000px;}
.fs5{font-size:335.664000px;}
.fs6{font-size:354.240000px;}
.y0{bottom:0.000000px;}
.y62{bottom:34.488000px;}
.y61{bottom:120.924000px;}
.y60{bottom:207.330000px;}
.y5f{bottom:293.730000px;}
.y5e{bottom:380.130000px;}
.y40{bottom:443.955000px;}
.y5d{bottom:466.530000px;}
.y3f{bottom:510.555000px;}
.y5c{bottom:552.960000px;}
.y3e{bottom:596.955000px;}
.y5b{bottom:639.360000px;}
.y29{bottom:640.290000px;}
.y3d{bottom:683.355000px;}
.y28{bottom:694.290000px;}
.y5a{bottom:725.760000px;}
.y27{bottom:748.335000px;}
.y3c{bottom:769.785000px;}
.y26{bottom:797.655000px;}
.y25{bottom:833.655000px;}
.y3b{bottom:856.185000px;}
.y24{bottom:891.255000px;}
.y3a{bottom:942.585000px;}
.y23{bottom:948.855000px;}
.y22{bottom:1006.455000px;}
.y39{bottom:1028.985000px;}
.y21{bottom:1064.055000px;}
.y38{bottom:1115.385000px;}
.y20{bottom:1121.685000px;}
.y1f{bottom:1179.285000px;}
.y37{bottom:1201.830000px;}
.y1e{bottom:1236.885000px;}
.y36{bottom:1288.230000px;}
.y1d{bottom:1294.485000px;}
.y1c{bottom:1352.085000px;}
.y35{bottom:1374.630000px;}
.y1b{bottom:1409.685000px;}
.y59{bottom:1415.490000px;}
.y34{bottom:1461.030000px;}
.y1a{bottom:1467.285000px;}
.y58{bottom:1473.090000px;}
.y19{bottom:1524.930000px;}
.y57{bottom:1530.720000px;}
.y33{bottom:1547.460000px;}
.y18{bottom:1582.530000px;}
.y56{bottom:1588.320000px;}
.y32{bottom:1633.860000px;}
.y17{bottom:1640.130000px;}
.y55{bottom:1645.920000px;}
.y16{bottom:1697.730000px;}
.y54{bottom:1703.520000px;}
.y31{bottom:1720.260000px;}
.y15{bottom:1755.330000px;}
.y53{bottom:1761.120000px;}
.y30{bottom:1806.660000px;}
.y14{bottom:1812.930000px;}
.y13{bottom:1870.530000px;}
.y2f{bottom:1893.060000px;}
.y4d{bottom:1928.445000px;}
.y2e{bottom:1979.490000px;}
.y4{bottom:2094.120000px;}
.y3{bottom:2180.520000px;}
.y2{bottom:2266.920000px;}
.y4c{bottom:2348.025000px;}
.y1{bottom:2353.320000px;}
.y49{bottom:2572.485000px;}
.y52{bottom:2594.985000px;}
.y48{bottom:2630.445000px;}
.y51{bottom:2681.385000px;}
.y2d{bottom:2689.920000px;}
.y47{bottom:2697.045000px;}
.y50{bottom:2767.785000px;}
.y2c{bottom:2776.320000px;}
.y46{bottom:2783.445000px;}
.y4f{bottom:2854.230000px;}
.y2b{bottom:2862.720000px;}
.y45{bottom:2869.890000px;}
.y4e{bottom:2940.630000px;}
.y2a{bottom:2949.120000px;}
.y44{bottom:2956.290000px;}
.y4a{bottom:3045.135000px;}
.y43{bottom:3047.400000px;}
.y4b{bottom:3156.045000px;}
.ya{bottom:3241.620000px;}
.y9{bottom:3312.900000px;}
.y8{bottom:3384.180000px;}
.y7{bottom:3455.490000px;}
.y6{bottom:3526.770000px;}
.y5{bottom:3609.210000px;}
.ye{bottom:3674.595000px;}
.yd{bottom:3726.435000px;}
.yc{bottom:3784.035000px;}
.yb{bottom:3838.755000px;}
.y12{bottom:3881.985000px;}
.y42{bottom:3889.470000px;}
.y41{bottom:3947.070000px;}
.y11{bottom:3987.105000px;}
.y10{bottom:4087.950000px;}
.yf{bottom:4188.750000px;}
.hd{height:73.385156px;}
.h8{height:120.930469px;}
.he{height:125.156250px;}
.hf{height:125.256375px;}
.hc{height:130.921875px;}
.h7{height:131.295937px;}
.h3{height:133.166250px;}
.h2{height:137.467969px;}
.h14{height:137.571328px;}
.h11{height:146.632500px;}
.h10{height:146.742750px;}
.h4{height:155.039062px;}
.h5{height:155.142422px;}
.h6{height:169.796250px;}
.h12{height:196.852380px;}
.h13{height:199.749375px;}
.h9{height:233.291250px;}
.ha{height:240.930703px;}
.hb{height:246.307500px;}
.h1{height:4252.500000px;}
.h0{height:4252.680000px;}
.w1{width:3401.999997px;}
.w0{width:3402.000000px;}
.x0{left:0.000000px;}
.x1a{left:121.391997px;}
.xa{left:136.115997px;}
.x1{left:215.384997px;}
.x3{left:312.689997px;}
.x13{left:368.069997px;}
.x17{left:376.559997px;}
.x8{left:397.589997px;}
.x9{left:1015.769997px;}
.x18{left:1108.079997px;}
.x5{left:1123.739997px;}
.x19{left:1150.019997px;}
.xb{left:1292.909997px;}
.x14{left:1495.469997px;}
.x11{left:1584.389997px;}
.xc{left:1618.409997px;}
.x6{left:1652.654997px;}
.x16{left:1669.469997px;}
.x15{left:1711.979997px;}
.x2{left:1716.839997px;}
.x7{left:1735.124997px;}
.x4{left:1884.164997px;}
.xe{left:2341.439997px;}
.xf{left:2379.239997px;}
.x12{left:2443.499997px;}
.x10{left:2503.049997px;}
.xd{left:2563.199997px;}
@media print{
.v1{vertical-align:-16.746667pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.029333pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.672000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.618667pt;}
.ls1e{letter-spacing:-0.549333pt;}
.ls1c{letter-spacing:-0.382933pt;}
.ls1f{letter-spacing:-0.363200pt;}
.lse{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.318933pt;}
.ls20{letter-spacing:-0.309867pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.129067pt;}
.ls21{letter-spacing:-0.074133pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.418475pt;}
.ls15{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.451733pt;}
.ls6{letter-spacing:0.490752pt;}
.lsb{letter-spacing:0.520107pt;}
.ls7{letter-spacing:0.591360pt;}
.ls8{letter-spacing:0.599040pt;}
.ls22{letter-spacing:1.178667pt;}
.ls16{letter-spacing:1.664000pt;}
.ls4{letter-spacing:3.968000pt;}
.ls3{letter-spacing:19.299072pt;}
.ls2{letter-spacing:33.408000pt;}
.ls0{letter-spacing:53.888000pt;}
.lsa{letter-spacing:345.525760pt;}
.ls9{letter-spacing:348.522667pt;}
.ws7{word-spacing:-45.056000pt;}
.ws6{word-spacing:-43.840000pt;}
.ws5{word-spacing:-43.776000pt;}
.wsa{word-spacing:-43.740928pt;}
.ws4{word-spacing:-43.712000pt;}
.wsc{word-spacing:-43.584000pt;}
.wsd{word-spacing:-43.328000pt;}
.ws9{word-spacing:-43.291861pt;}
.ws0{word-spacing:-43.136000pt;}
.ws1{word-spacing:-42.752000pt;}
.wsb{word-spacing:-42.748928pt;}
.ws2{word-spacing:-42.496000pt;}
.ws3{word-spacing:-42.432000pt;}
.ws8{word-spacing:-42.391595pt;}
.ws10{word-spacing:-38.925973pt;}
.wse{word-spacing:-38.474240pt;}
.ws12{word-spacing:-38.139968pt;}
.wsf{word-spacing:-38.091307pt;}
.ws11{word-spacing:-37.924907pt;}
.ws13{word-spacing:-33.845760pt;}
.ws14{word-spacing:0.000000pt;}
._10{margin-left:-16.655787pt;}
._9{margin-left:-9.064107pt;}
._a{margin-left:-6.266880pt;}
._4{margin-left:-4.692480pt;}
._6{margin-left:-3.745280pt;}
._0{margin-left:-2.553600pt;}
._2{margin-left:-1.191680pt;}
._1{width:1.258240pt;}
._3{width:3.034880pt;}
._7{width:4.426667pt;}
._5{width:5.389653pt;}
._8{width:6.433707pt;}
._12{width:18.221995pt;}
._11{width:19.533824pt;}
._e{width:32.413013pt;}
._d{width:33.629440pt;}
._f{width:35.265707pt;}
._b{width:54.784000pt;}
._c{width:56.711680pt;}
._15{width:200.443733pt;}
._17{width:308.349867pt;}
._16{width:345.632427pt;}
._13{width:417.116587pt;}
._14{width:641.184427pt;}
.fs7{font-size:90.880000pt;}
.fsb{font-size:128.000000pt;}
.fs3{font-size:149.760000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:160.128000pt;}
.fs0{font-size:170.240000pt;}
.fsa{font-size:170.368000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs4{font-size:298.240000pt;}
.fs5{font-size:298.368000pt;}
.fs6{font-size:314.880000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:30.656000pt;}
.y61{bottom:107.488000pt;}
.y60{bottom:184.293333pt;}
.y5f{bottom:261.093333pt;}
.y5e{bottom:337.893333pt;}
.y40{bottom:394.626667pt;}
.y5d{bottom:414.693333pt;}
.y3f{bottom:453.826667pt;}
.y5c{bottom:491.520000pt;}
.y3e{bottom:530.626667pt;}
.y5b{bottom:568.320000pt;}
.y29{bottom:569.146667pt;}
.y3d{bottom:607.426667pt;}
.y28{bottom:617.146667pt;}
.y5a{bottom:645.120000pt;}
.y27{bottom:665.186667pt;}
.y3c{bottom:684.253333pt;}
.y26{bottom:709.026667pt;}
.y25{bottom:741.026667pt;}
.y3b{bottom:761.053333pt;}
.y24{bottom:792.226667pt;}
.y3a{bottom:837.853333pt;}
.y23{bottom:843.426667pt;}
.y22{bottom:894.626667pt;}
.y39{bottom:914.653333pt;}
.y21{bottom:945.826667pt;}
.y38{bottom:991.453333pt;}
.y20{bottom:997.053333pt;}
.y1f{bottom:1048.253333pt;}
.y37{bottom:1068.293333pt;}
.y1e{bottom:1099.453333pt;}
.y36{bottom:1145.093333pt;}
.y1d{bottom:1150.653333pt;}
.y1c{bottom:1201.853333pt;}
.y35{bottom:1221.893333pt;}
.y1b{bottom:1253.053333pt;}
.y59{bottom:1258.213333pt;}
.y34{bottom:1298.693333pt;}
.y1a{bottom:1304.253333pt;}
.y58{bottom:1309.413333pt;}
.y19{bottom:1355.493333pt;}
.y57{bottom:1360.640000pt;}
.y33{bottom:1375.520000pt;}
.y18{bottom:1406.693333pt;}
.y56{bottom:1411.840000pt;}
.y32{bottom:1452.320000pt;}
.y17{bottom:1457.893333pt;}
.y55{bottom:1463.040000pt;}
.y16{bottom:1509.093333pt;}
.y54{bottom:1514.240000pt;}
.y31{bottom:1529.120000pt;}
.y15{bottom:1560.293333pt;}
.y53{bottom:1565.440000pt;}
.y30{bottom:1605.920000pt;}
.y14{bottom:1611.493333pt;}
.y13{bottom:1662.693333pt;}
.y2f{bottom:1682.720000pt;}
.y4d{bottom:1714.173333pt;}
.y2e{bottom:1759.546667pt;}
.y4{bottom:1861.440000pt;}
.y3{bottom:1938.240000pt;}
.y2{bottom:2015.040000pt;}
.y4c{bottom:2087.133333pt;}
.y1{bottom:2091.840000pt;}
.y49{bottom:2286.653333pt;}
.y52{bottom:2306.653333pt;}
.y48{bottom:2338.173333pt;}
.y51{bottom:2383.453333pt;}
.y2d{bottom:2391.040000pt;}
.y47{bottom:2397.373333pt;}
.y50{bottom:2460.253333pt;}
.y2c{bottom:2467.840000pt;}
.y46{bottom:2474.173333pt;}
.y4f{bottom:2537.093333pt;}
.y2b{bottom:2544.640000pt;}
.y45{bottom:2551.013333pt;}
.y4e{bottom:2613.893333pt;}
.y2a{bottom:2621.440000pt;}
.y44{bottom:2627.813333pt;}
.y4a{bottom:2706.786667pt;}
.y43{bottom:2708.800000pt;}
.y4b{bottom:2805.373333pt;}
.ya{bottom:2881.440000pt;}
.y9{bottom:2944.800000pt;}
.y8{bottom:3008.160000pt;}
.y7{bottom:3071.546667pt;}
.y6{bottom:3134.906667pt;}
.y5{bottom:3208.186667pt;}
.ye{bottom:3266.306667pt;}
.yd{bottom:3312.386667pt;}
.yc{bottom:3363.586667pt;}
.yb{bottom:3412.226667pt;}
.y12{bottom:3450.653333pt;}
.y42{bottom:3457.306667pt;}
.y41{bottom:3508.506667pt;}
.y11{bottom:3544.093333pt;}
.y10{bottom:3633.733333pt;}
.yf{bottom:3723.333333pt;}
.hd{height:65.231250pt;}
.h8{height:107.493750pt;}
.he{height:111.250000pt;}
.hf{height:111.339000pt;}
.hc{height:116.375000pt;}
.h7{height:116.707500pt;}
.h3{height:118.370000pt;}
.h2{height:122.193750pt;}
.h14{height:122.285625pt;}
.h11{height:130.340000pt;}
.h10{height:130.438000pt;}
.h4{height:137.812500pt;}
.h5{height:137.904375pt;}
.h6{height:150.930000pt;}
.h12{height:174.979894pt;}
.h13{height:177.555000pt;}
.h9{height:207.370000pt;}
.ha{height:214.160625pt;}
.hb{height:218.940000pt;}
.h1{height:3780.000000pt;}
.h0{height:3780.160000pt;}
.w1{width:3023.999998pt;}
.w0{width:3024.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:107.903998pt;}
.xa{left:120.991998pt;}
.x1{left:191.453331pt;}
.x3{left:277.946664pt;}
.x13{left:327.173331pt;}
.x17{left:334.719998pt;}
.x8{left:353.413331pt;}
.x9{left:902.906664pt;}
.x18{left:984.959998pt;}
.x5{left:998.879998pt;}
.x19{left:1022.239998pt;}
.xb{left:1149.253331pt;}
.x14{left:1329.306664pt;}
.x11{left:1408.346664pt;}
.xc{left:1438.586664pt;}
.x6{left:1469.026664pt;}
.x16{left:1483.973331pt;}
.x15{left:1521.759998pt;}
.x2{left:1526.079998pt;}
.x7{left:1542.333331pt;}
.x4{left:1674.813331pt;}
.xe{left:2081.279998pt;}
.xf{left:2114.879998pt;}
.x12{left:2171.999998pt;}
.x10{left:2224.933331pt;}
.xd{left:2278.399998pt;}
}




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