
    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_359ec015accaea825755a52d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_ddc4f76196436c6cb476ba17.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_4819d33eb479ef559ef6b3b1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_e41e6f8cf539290f994229f1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_35288f0c2424a1a590468dc2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_082aea45c648882451c1aa77.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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;}
.ls12{letter-spacing:-1.848000px;}
.lse{letter-spacing:-1.326000px;}
.lsf{letter-spacing:-1.128000px;}
.ls16{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.762000px;}
.ls14{letter-spacing:-0.606000px;}
.lsd{letter-spacing:-0.524400px;}
.ls15{letter-spacing:-0.348600px;}
.lsc{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.078000px;}
.ls13{letter-spacing:-0.040320px;}
.ls9{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.112200px;}
.ls8{letter-spacing:0.248400px;}
.lsb{letter-spacing:0.250800px;}
.ls11{letter-spacing:0.285000px;}
.ls18{letter-spacing:0.309600px;}
.ls5{letter-spacing:67.174560px;}
.ls2{letter-spacing:69.603840px;}
.ls1{letter-spacing:107.649504px;}
.ls0{letter-spacing:107.763840px;}
.ls3{letter-spacing:137.376000px;}
.ls4{letter-spacing:157.644000px;}
.ls7{letter-spacing:208.523520px;}
.ls6{letter-spacing:283.968000px;}
.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;}
}
.ws4{word-spacing:-182.188800px;}
.ws0{word-spacing:-88.194240px;}
.ws2{word-spacing:-61.345440px;}
.ws36{word-spacing:-46.049760px;}
.ws3{word-spacing:-38.401920px;}
.ws17{word-spacing:-34.496640px;}
.ws23{word-spacing:-34.148040px;}
.ws37{word-spacing:-27.097200px;}
.ws33{word-spacing:-2.235840px;}
.ws35{word-spacing:-1.955520px;}
.ws38{word-spacing:0.000000px;}
.ws34{word-spacing:2.280960px;}
.ws22{word-spacing:2.643840px;}
.ws1f{word-spacing:3.058560px;}
.ws1d{word-spacing:3.458880px;}
.ws1e{word-spacing:5.009040px;}
.ws21{word-spacing:5.880960px;}
.ws10{word-spacing:7.007400px;}
.wsf{word-spacing:7.306560px;}
.wsd{word-spacing:7.683840px;}
.ws11{word-spacing:9.066240px;}
.wse{word-spacing:9.514800px;}
.ws8{word-spacing:9.832320px;}
.wsa{word-spacing:9.838080px;}
.wsc{word-spacing:10.653120px;}
.ws6{word-spacing:10.658160px;}
.ws7{word-spacing:11.424720px;}
.ws12{word-spacing:11.640960px;}
.wsb{word-spacing:12.360960px;}
.ws9{word-spacing:12.442320px;}
.ws14{word-spacing:23.909760px;}
.ws13{word-spacing:23.970240px;}
.ws15{word-spacing:24.108480px;}
.ws1c{word-spacing:25.963200px;}
.ws1a{word-spacing:26.141760px;}
.ws18{word-spacing:26.294400px;}
.ws1b{word-spacing:28.175760px;}
.ws19{word-spacing:28.234800px;}
.ws26{word-spacing:35.593920px;}
.ws24{word-spacing:35.746560px;}
.ws20{word-spacing:37.722240px;}
.ws2c{word-spacing:39.813120px;}
.ws32{word-spacing:39.922560px;}
.ws30{word-spacing:40.014720px;}
.ws2e{word-spacing:40.396800px;}
.ws2d{word-spacing:40.469760px;}
.ws27{word-spacing:41.135040px;}
.ws29{word-spacing:41.964480px;}
.ws2b{word-spacing:42.183360px;}
.ws2f{word-spacing:42.334560px;}
.ws5{word-spacing:44.879040px;}
.ws2a{word-spacing:45.480960px;}
.ws16{word-spacing:59.279040px;}
.ws25{word-spacing:70.994880px;}
.ws31{word-spacing:74.891520px;}
.ws28{word-spacing:76.679040px;}
.ws1{word-spacing:113.466720px;}
._2{margin-left:-20.292480px;}
._13{margin-left:-18.634032px;}
._a{margin-left:-17.580240px;}
._8{margin-left:-12.726000px;}
._6{margin-left:-10.930752px;}
._17{margin-left:-9.311040px;}
._3{margin-left:-8.195040px;}
._7{margin-left:-7.126560px;}
._0{margin-left:-5.853600px;}
._1{margin-left:-4.292640px;}
._4{margin-left:-2.731680px;}
._5{margin-left:-1.170720px;}
._9{width:1.768032px;}
._10{width:2.935440px;}
._14{width:5.098320px;}
._16{width:6.496560px;}
._15{width:24.389040px;}
._12{width:33.281568px;}
._f{width:38.375520px;}
._c{width:43.458720px;}
._b{width:45.475200px;}
._d{width:59.499840px;}
._e{width:62.215680px;}
._11{width:78.201408px;}
.fc0{color:rgb(7,66,110);}
.fsb{font-size:118.800000px;}
.fs4{font-size:152.640000px;}
.fs6{font-size:152.784000px;}
.fs8{font-size:169.920000px;}
.fs3{font-size:203.760000px;}
.fs9{font-size:237.600000px;}
.fsa{font-size:237.744000px;}
.fs5{font-size:271.440000px;}
.fs7{font-size:288.864000px;}
.fs0{font-size:390.240000px;}
.fs1{font-size:390.384000px;}
.fs2{font-size:509.040000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:322.125000px;}
.y4e{bottom:357.765000px;}
.y4d{bottom:393.405000px;}
.y31{bottom:412.920000px;}
.y4c{bottom:429.045000px;}
.y30{bottom:518.220000px;}
.y14{bottom:532.365000px;}
.y34{bottom:554.865000px;}
.y2f{bottom:570.960000px;}
.y13{bottom:583.305000px;}
.y12{bottom:634.245000px;}
.y33{bottom:660.165000px;}
.y2e{bottom:676.260000px;}
.y11{bottom:692.970000px;}
.y32{bottom:765.645000px;}
.y2d{bottom:781.560000px;}
.y2c{bottom:887.040000px;}
.y44{bottom:1098.360000px;}
.y43{bottom:1149.120000px;}
.y1{bottom:1169.205000px;}
.y55{bottom:1181.085000px;}
.y42{bottom:1200.060000px;}
.y41{bottom:1251.000000px;}
.y40{bottom:1301.940000px;}
.y3f{bottom:1352.700000px;}
.y3e{bottom:1403.640000px;}
.y1e{bottom:1439.535000px;}
.y3d{bottom:1454.580000px;}
.y1d{bottom:1485.255000px;}
.y3c{bottom:1509.870000px;}
.y1c{bottom:1531.155000px;}
.y1b{bottom:1576.875000px;}
.y1a{bottom:1622.775000px;}
.y19{bottom:1668.495000px;}
.y18{bottom:1714.215000px;}
.y17{bottom:1760.115000px;}
.y16{bottom:1805.835000px;}
.y2{bottom:1861.170000px;}
.y15{bottom:1903.035000px;}
.y3b{bottom:2207.085000px;}
.y3a{bottom:2268.105000px;}
.y39{bottom:2325.885000px;}
.y3{bottom:2346.270000px;}
.y38{bottom:2375.025000px;}
.y37{bottom:2436.045000px;}
.y36{bottom:2497.065000px;}
.y53{bottom:2697.735000px;}
.y52{bottom:2746.875000px;}
.y51{bottom:2807.895000px;}
.y4{bottom:2835.030000px;}
.y50{bottom:2868.915000px;}
.y49{bottom:3172.860000px;}
.y6{bottom:3200.250000px;}
.y48{bottom:3222.000000px;}
.y5{bottom:3307.350000px;}
.y4b{bottom:3319.815000px;}
.y4a{bottom:3368.955000px;}
.y47{bottom:3455.745000px;}
.y46{bottom:3501.465000px;}
.y45{bottom:3550.605000px;}
.y2b{bottom:3625.530000px;}
.yc{bottom:3640.755000px;}
.y2a{bottom:3671.250000px;}
.yb{bottom:3686.475000px;}
.y29{bottom:3716.970000px;}
.ya{bottom:3735.615000px;}
.y28{bottom:3762.870000px;}
.y27{bottom:3808.590000px;}
.y54{bottom:3838.320000px;}
.y26{bottom:3854.490000px;}
.y25{bottom:3905.820000px;}
.y10{bottom:3936.780000px;}
.yf{bottom:3982.710000px;}
.ye{bottom:4028.430000px;}
.y24{bottom:4048.170000px;}
.yd{bottom:4082.070000px;}
.y23{bottom:4093.890000px;}
.y22{bottom:4139.790000px;}
.y21{bottom:4185.510000px;}
.y35{bottom:4198.860000px;}
.y20{bottom:4231.410000px;}
.y1f{bottom:4282.710000px;}
.y9{bottom:4491.030000px;}
.y8{bottom:4643.670000px;}
.y7{bottom:4796.310000px;}
.h11{height:121.642383px;}
.h7{height:151.820156px;}
.h9{height:151.963383px;}
.he{height:156.292031px;}
.hf{height:156.439477px;}
.hc{height:169.007344px;}
.hb{height:173.985469px;}
.h6{height:208.635117px;}
.hd{height:243.284766px;}
.h10{height:243.432211px;}
.h8{height:277.934414px;}
.h2{height:294.966563px;}
.ha{height:295.775297px;}
.h3{height:399.576797px;}
.h4{height:399.724242px;}
.h5{height:521.219180px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.xb{left:52.631947px;}
.x1{left:246.989947px;}
.x2{left:540.329947px;}
.x10{left:915.584947px;}
.x17{left:923.114947px;}
.x6{left:940.754947px;}
.x11{left:958.784947px;}
.x3{left:979.844947px;}
.x7{left:1049.834947px;}
.x18{left:1175.474947px;}
.x8{left:1228.934947px;}
.xf{left:1275.629947px;}
.xd{left:1277.174947px;}
.xe{left:1334.414947px;}
.x4{left:1493.894947px;}
.xc{left:1898.969947px;}
.x5{left:2159.999947px;}
.x14{left:2201.729947px;}
.x1c{left:2391.269947px;}
.x12{left:2449.694947px;}
.x15{left:2454.089947px;}
.x16{left:2511.329947px;}
.x1d{left:2648.309947px;}
.x1e{left:2705.549947px;}
.x9{left:2763.569947px;}
.xa{left:2768.294947px;}
.x13{left:2780.669947px;}
.x1a{left:2828.849947px;}
.x1b{left:2830.349947px;}
.x19{left:2835.929947px;}
.x1f{left:2951.249947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.642667pt;}
.lse{letter-spacing:-1.178667pt;}
.lsf{letter-spacing:-1.002667pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.677333pt;}
.ls14{letter-spacing:-0.538667pt;}
.lsd{letter-spacing:-0.466133pt;}
.ls15{letter-spacing:-0.309867pt;}
.lsc{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.069333pt;}
.ls13{letter-spacing:-0.035840pt;}
.ls9{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.099733pt;}
.ls8{letter-spacing:0.220800pt;}
.lsb{letter-spacing:0.222933pt;}
.ls11{letter-spacing:0.253333pt;}
.ls18{letter-spacing:0.275200pt;}
.ls5{letter-spacing:59.710720pt;}
.ls2{letter-spacing:61.870080pt;}
.ls1{letter-spacing:95.688448pt;}
.ls0{letter-spacing:95.790080pt;}
.ls3{letter-spacing:122.112000pt;}
.ls4{letter-spacing:140.128000pt;}
.ls7{letter-spacing:185.354240pt;}
.ls6{letter-spacing:252.416000pt;}
.ws4{word-spacing:-161.945600pt;}
.ws0{word-spacing:-78.394880pt;}
.ws2{word-spacing:-54.529280pt;}
.ws36{word-spacing:-40.933120pt;}
.ws3{word-spacing:-34.135040pt;}
.ws17{word-spacing:-30.663680pt;}
.ws23{word-spacing:-30.353813pt;}
.ws37{word-spacing:-24.086400pt;}
.ws33{word-spacing:-1.987413pt;}
.ws35{word-spacing:-1.738240pt;}
.ws38{word-spacing:0.000000pt;}
.ws34{word-spacing:2.027520pt;}
.ws22{word-spacing:2.350080pt;}
.ws1f{word-spacing:2.718720pt;}
.ws1d{word-spacing:3.074560pt;}
.ws1e{word-spacing:4.452480pt;}
.ws21{word-spacing:5.227520pt;}
.ws10{word-spacing:6.228800pt;}
.wsf{word-spacing:6.494720pt;}
.wsd{word-spacing:6.830080pt;}
.ws11{word-spacing:8.058880pt;}
.wse{word-spacing:8.457600pt;}
.ws8{word-spacing:8.739840pt;}
.wsa{word-spacing:8.744960pt;}
.wsc{word-spacing:9.469440pt;}
.ws6{word-spacing:9.473920pt;}
.ws7{word-spacing:10.155307pt;}
.ws12{word-spacing:10.347520pt;}
.wsb{word-spacing:10.987520pt;}
.ws9{word-spacing:11.059840pt;}
.ws14{word-spacing:21.253120pt;}
.ws13{word-spacing:21.306880pt;}
.ws15{word-spacing:21.429760pt;}
.ws1c{word-spacing:23.078400pt;}
.ws1a{word-spacing:23.237120pt;}
.ws18{word-spacing:23.372800pt;}
.ws1b{word-spacing:25.045120pt;}
.ws19{word-spacing:25.097600pt;}
.ws26{word-spacing:31.639040pt;}
.ws24{word-spacing:31.774720pt;}
.ws20{word-spacing:33.530880pt;}
.ws2c{word-spacing:35.389440pt;}
.ws32{word-spacing:35.486720pt;}
.ws30{word-spacing:35.568640pt;}
.ws2e{word-spacing:35.908267pt;}
.ws2d{word-spacing:35.973120pt;}
.ws27{word-spacing:36.564480pt;}
.ws29{word-spacing:37.301760pt;}
.ws2b{word-spacing:37.496320pt;}
.ws2f{word-spacing:37.630720pt;}
.ws5{word-spacing:39.892480pt;}
.ws2a{word-spacing:40.427520pt;}
.ws16{word-spacing:52.692480pt;}
.ws25{word-spacing:63.106560pt;}
.ws31{word-spacing:66.570240pt;}
.ws28{word-spacing:68.159147pt;}
.ws1{word-spacing:100.859307pt;}
._2{margin-left:-18.037760pt;}
._13{margin-left:-16.563584pt;}
._a{margin-left:-15.626880pt;}
._8{margin-left:-11.312000pt;}
._6{margin-left:-9.716224pt;}
._17{margin-left:-8.276480pt;}
._3{margin-left:-7.284480pt;}
._7{margin-left:-6.334720pt;}
._0{margin-left:-5.203200pt;}
._1{margin-left:-3.815680pt;}
._4{margin-left:-2.428160pt;}
._5{margin-left:-1.040640pt;}
._9{width:1.571584pt;}
._10{width:2.609280pt;}
._14{width:4.531840pt;}
._16{width:5.774720pt;}
._15{width:21.679147pt;}
._12{width:29.583616pt;}
._f{width:34.111573pt;}
._c{width:38.629973pt;}
._b{width:40.422400pt;}
._d{width:52.888747pt;}
._e{width:55.302827pt;}
._11{width:69.512363pt;}
.fsb{font-size:105.600000pt;}
.fs4{font-size:135.680000pt;}
.fs6{font-size:135.808000pt;}
.fs8{font-size:151.040000pt;}
.fs3{font-size:181.120000pt;}
.fs9{font-size:211.200000pt;}
.fsa{font-size:211.328000pt;}
.fs5{font-size:241.280000pt;}
.fs7{font-size:256.768000pt;}
.fs0{font-size:346.880000pt;}
.fs1{font-size:347.008000pt;}
.fs2{font-size:452.480000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:286.333333pt;}
.y4e{bottom:318.013333pt;}
.y4d{bottom:349.693333pt;}
.y31{bottom:367.040000pt;}
.y4c{bottom:381.373333pt;}
.y30{bottom:460.640000pt;}
.y14{bottom:473.213333pt;}
.y34{bottom:493.213333pt;}
.y2f{bottom:507.520000pt;}
.y13{bottom:518.493333pt;}
.y12{bottom:563.773333pt;}
.y33{bottom:586.813333pt;}
.y2e{bottom:601.120000pt;}
.y11{bottom:615.973333pt;}
.y32{bottom:680.573333pt;}
.y2d{bottom:694.720000pt;}
.y2c{bottom:788.480000pt;}
.y44{bottom:976.320000pt;}
.y43{bottom:1021.440000pt;}
.y1{bottom:1039.293333pt;}
.y55{bottom:1049.853333pt;}
.y42{bottom:1066.720000pt;}
.y41{bottom:1112.000000pt;}
.y40{bottom:1157.280000pt;}
.y3f{bottom:1202.400000pt;}
.y3e{bottom:1247.680000pt;}
.y1e{bottom:1279.586667pt;}
.y3d{bottom:1292.960000pt;}
.y1d{bottom:1320.226667pt;}
.y3c{bottom:1342.106667pt;}
.y1c{bottom:1361.026667pt;}
.y1b{bottom:1401.666667pt;}
.y1a{bottom:1442.466667pt;}
.y19{bottom:1483.106667pt;}
.y18{bottom:1523.746667pt;}
.y17{bottom:1564.546667pt;}
.y16{bottom:1605.186667pt;}
.y2{bottom:1654.373333pt;}
.y15{bottom:1691.586667pt;}
.y3b{bottom:1961.853333pt;}
.y3a{bottom:2016.093333pt;}
.y39{bottom:2067.453333pt;}
.y3{bottom:2085.573333pt;}
.y38{bottom:2111.133333pt;}
.y37{bottom:2165.373333pt;}
.y36{bottom:2219.613333pt;}
.y53{bottom:2397.986667pt;}
.y52{bottom:2441.666667pt;}
.y51{bottom:2495.906667pt;}
.y4{bottom:2520.026667pt;}
.y50{bottom:2550.146667pt;}
.y49{bottom:2820.320000pt;}
.y6{bottom:2844.666667pt;}
.y48{bottom:2864.000000pt;}
.y5{bottom:2939.866667pt;}
.y4b{bottom:2950.946667pt;}
.y4a{bottom:2994.626667pt;}
.y47{bottom:3071.773333pt;}
.y46{bottom:3112.413333pt;}
.y45{bottom:3156.093333pt;}
.y2b{bottom:3222.693333pt;}
.yc{bottom:3236.226667pt;}
.y2a{bottom:3263.333333pt;}
.yb{bottom:3276.866667pt;}
.y29{bottom:3303.973333pt;}
.ya{bottom:3320.546667pt;}
.y28{bottom:3344.773333pt;}
.y27{bottom:3385.413333pt;}
.y54{bottom:3411.840000pt;}
.y26{bottom:3426.213333pt;}
.y25{bottom:3471.840000pt;}
.y10{bottom:3499.360000pt;}
.yf{bottom:3540.186667pt;}
.ye{bottom:3580.826667pt;}
.y24{bottom:3598.373333pt;}
.yd{bottom:3628.506667pt;}
.y23{bottom:3639.013333pt;}
.y22{bottom:3679.813333pt;}
.y21{bottom:3720.453333pt;}
.y35{bottom:3732.320000pt;}
.y20{bottom:3761.253333pt;}
.y1f{bottom:3806.853333pt;}
.y9{bottom:3992.026667pt;}
.y8{bottom:4127.706667pt;}
.y7{bottom:4263.386667pt;}
.h11{height:108.126563pt;}
.h7{height:134.951250pt;}
.h9{height:135.078562pt;}
.he{height:138.926250pt;}
.hf{height:139.057312pt;}
.hc{height:150.228750pt;}
.hb{height:154.653750pt;}
.h6{height:185.453437pt;}
.hd{height:216.253125pt;}
.h10{height:216.384188pt;}
.h8{height:247.052813pt;}
.h2{height:262.192500pt;}
.ha{height:262.911375pt;}
.h3{height:355.179375pt;}
.h4{height:355.310437pt;}
.h5{height:463.305938pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.xb{left:46.783953pt;}
.x1{left:219.546619pt;}
.x2{left:480.293286pt;}
.x10{left:813.853286pt;}
.x17{left:820.546619pt;}
.x6{left:836.226619pt;}
.x11{left:852.253286pt;}
.x3{left:870.973286pt;}
.x7{left:933.186619pt;}
.x18{left:1044.866619pt;}
.x8{left:1092.386619pt;}
.xf{left:1133.893286pt;}
.xd{left:1135.266619pt;}
.xe{left:1186.146619pt;}
.x4{left:1327.906619pt;}
.xc{left:1687.973286pt;}
.x5{left:1919.999953pt;}
.x14{left:1957.093286pt;}
.x1c{left:2125.573286pt;}
.x12{left:2177.506619pt;}
.x15{left:2181.413286pt;}
.x16{left:2232.293286pt;}
.x1d{left:2354.053286pt;}
.x1e{left:2404.933286pt;}
.x9{left:2456.506619pt;}
.xa{left:2460.706619pt;}
.x13{left:2471.706619pt;}
.x1a{left:2514.533286pt;}
.x1b{left:2515.866619pt;}
.x19{left:2520.826619pt;}
.x1f{left:2623.333286pt;}
}




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