
    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_054ac1eb24b1019674ec8309.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201000;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_06047bcdfeaf8db09904c9b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.201000;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_b01695998a13e9ca60d2231a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a2ee68179b7a3ef95437c84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.176000;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_64349bc559f35c3a6c044956.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_96483332775e3231c0e99b20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_767f180f84544f6027e4699d.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b38e9f87f9fb0ece3080530d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.176000;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-28.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.200000px;}
.v2{vertical-align:95.220000px;}
.lsc{letter-spacing:-0.306000px;}
.lsf{letter-spacing:-0.260400px;}
.lse{letter-spacing:-0.208200px;}
.lsd{letter-spacing:-0.144000px;}
.ls9{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000006px;}
.ls0{letter-spacing:0.002160px;}
.ls5{letter-spacing:0.084240px;}
.ls6{letter-spacing:0.084960px;}
.lsa{letter-spacing:0.288000px;}
.ls7{letter-spacing:20.147760px;}
.ls4{letter-spacing:39.456000px;}
.ls3{letter-spacing:44.714160px;}
.ls1{letter-spacing:107.316000px;}
.ls8{letter-spacing:161.265600px;}
.ls2{letter-spacing:161.316000px;}
.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;}
}
.wsb{word-spacing:-40.032000px;}
.ws8{word-spacing:-39.985920px;}
.ws9{word-spacing:-39.888000px;}
.ws2{word-spacing:-36.552960px;}
.ws6{word-spacing:-32.497920px;}
.ws5{word-spacing:-29.952006px;}
.ws4{word-spacing:-29.952000px;}
.ws1{word-spacing:-27.360000px;}
.wsc{word-spacing:-22.845600px;}
.ws10{word-spacing:-19.918080px;}
.ws0{word-spacing:-18.194400px;}
.wsd{word-spacing:-13.328640px;}
.wsf{word-spacing:-0.703440px;}
.ws11{word-spacing:0.000000px;}
.wse{word-spacing:1.087200px;}
.wsa{word-spacing:15.365880px;}
.ws7{word-spacing:1052.928000px;}
.ws3{word-spacing:1929.778800px;}
._2{margin-left:-3.281040px;}
._1{margin-left:-1.872000px;}
._0{width:1.062000px;}
._3{width:2.880000px;}
._4{width:3.888000px;}
._5{width:21.283920px;}
._6{width:32.529360px;}
.fc4{color:transparent;}
.fc2{color:rgb(17,48,45);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(78,191,123);}
.fsb{font-size:64.080000px;}
.fs1{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fsa{font-size:120.240000px;}
.fs9{font-size:131.760000px;}
.fs0{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fsd{font-size:149.760000px;}
.fse{font-size:149.904000px;}
.fs4{font-size:156.240000px;}
.fs8{font-size:156.384000px;}
.fs7{font-size:164.689774px;}
.fs3{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.fs5{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:31.572000px;}
.y49{bottom:61.524000px;}
.y4f{bottom:67.572000px;}
.y45{bottom:67.860000px;}
.y4e{bottom:96.372000px;}
.y48{bottom:97.524000px;}
.y4d{bottom:117.972000px;}
.y44{bottom:123.588000px;}
.y47{bottom:133.524000px;}
.y13{bottom:138.630000px;}
.y18{bottom:138.810000px;}
.y4c{bottom:153.975000px;}
.y46{bottom:169.530000px;}
.y43{bottom:179.715000px;}
.y4b{bottom:182.775000px;}
.y4a{bottom:211.575000px;}
.y1f{bottom:276.150000px;}
.y11{bottom:276.195000px;}
.y1d{bottom:321.870000px;}
.y15{bottom:321.915000px;}
.y10{bottom:321.945000px;}
.y42{bottom:383.790000px;}
.y41{bottom:441.570000px;}
.y40{bottom:499.170000px;}
.y3f{bottom:556.770000px;}
.y3e{bottom:628.770000px;}
.y63{bottom:679.680000px;}
.y3d{bottom:686.415000px;}
.y62{bottom:726.480000px;}
.y3c{bottom:744.015000px;}
.y61{bottom:773.280000px;}
.y3b{bottom:816.015000px;}
.y60{bottom:832.680000px;}
.y3a{bottom:873.615000px;}
.y5f{bottom:879.480000px;}
.y39{bottom:931.215000px;}
.y38{bottom:988.815000px;}
.y37{bottom:1075.470000px;}
.y34{bottom:1277.715000px;}
.y36{bottom:1278.435000px;}
.y33{bottom:1320.915000px;}
.y35{bottom:1321.635000px;}
.y32{bottom:1406.085000px;}
.y55{bottom:1476.690000px;}
.y54{bottom:1523.490000px;}
.y31{bottom:1573.170000px;}
.y53{bottom:1581.090000px;}
.y30{bottom:1592.565000px;}
.y52{bottom:1627.890000px;}
.y51{bottom:1674.690000px;}
.y2f{bottom:1696.605000px;}
.y2d{bottom:1818.540000px;}
.y26{bottom:1831.215000px;}
.y2c{bottom:1865.340000px;}
.y25{bottom:1888.815000px;}
.y2b{bottom:1930.140000px;}
.y24{bottom:1935.615000px;}
.y2a{bottom:1976.970000px;}
.y23{bottom:1993.215000px;}
.y29{bottom:2023.770000px;}
.y22{bottom:2040.015000px;}
.y1c{bottom:2069.280000px;}
.y21{bottom:2086.815000px;}
.y28{bottom:2088.570000px;}
.y20{bottom:2133.615000px;}
.y27{bottom:2135.370000px;}
.y1a{bottom:2159.460000px;}
.y4{bottom:2218.710000px;}
.y2e{bottom:2219.250000px;}
.y14{bottom:2249.640000px;}
.y17{bottom:2319.660000px;}
.yf{bottom:2339.820000px;}
.y5a{bottom:2350.290000px;}
.y1b{bottom:2368.260000px;}
.y1e{bottom:2391.150000px;}
.y59{bottom:2404.290000px;}
.y12{bottom:2410.020000px;}
.y58{bottom:2458.290000px;}
.y19{bottom:2458.470000px;}
.y57{bottom:2512.335000px;}
.y16{bottom:2525.835000px;}
.y56{bottom:2566.335000px;}
.ye{bottom:2638.830000px;}
.ya{bottom:2662.485000px;}
.y9{bottom:2709.285000px;}
.yd{bottom:2712.210000px;}
.y8{bottom:2774.085000px;}
.y5e{bottom:2794.140000px;}
.y7{bottom:2820.885000px;}
.y5d{bottom:2840.940000px;}
.y6{bottom:2874.885000px;}
.y5c{bottom:2894.940000px;}
.y5{bottom:2921.685000px;}
.y5b{bottom:2941.770000px;}
.y3{bottom:3008.520000px;}
.y2{bottom:3160.365000px;}
.y1{bottom:3220.845000px;}
.yc{bottom:3343.320000px;}
.yb{bottom:3464.280000px;}
.h17{height:63.787920px;}
.h16{height:63.799920px;}
.h18{height:92.599920px;}
.h19{height:92.739168px;}
.h15{height:116.272080px;}
.h14{height:118.195920px;}
.h13{height:137.421562px;}
.ha{height:139.248000px;}
.h9{height:139.387248px;}
.h2{height:141.552000px;}
.h1c{height:144.817920px;}
.h1a{height:147.214080px;}
.h1b{height:147.355632px;}
.h12{height:150.187500px;}
.h5{height:151.084080px;}
.he{height:153.583920px;}
.hf{height:153.725472px;}
.hd{height:159.255011px;}
.h7{height:162.953438px;}
.h11{height:185.896080px;}
.h4{height:188.971920px;}
.h3{height:189.113472px;}
.h10{height:234.468000px;}
.hb{height:302.940000px;}
.hc{height:303.120000px;}
.h6{height:330.523920px;}
.h8{height:623.700000px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w4{width:329.040000px;}
.w3{width:979.200000px;}
.w1{width:2525.250000px;}
.w2{width:2525.579962px;}
.w0{width:2525.580000px;}
.x0{left:0.000000px;}
.xa{left:7.380000px;}
.xe{left:8.565000px;}
.xc{left:13.605000px;}
.x17{left:65.123962px;}
.x5{left:68.039962px;}
.x24{left:86.939962px;}
.x25{left:89.459962px;}
.x1{left:97.703962px;}
.x1e{left:99.287962px;}
.x22{left:105.119962px;}
.x2{left:107.027962px;}
.x6{left:108.539962px;}
.x3{left:118.331962px;}
.x2f{left:120.779962px;}
.x10{left:147.525000px;}
.x1d{left:149.183962px;}
.x1a{left:158.069962px;}
.x23{left:159.119962px;}
.x21{left:305.459962px;}
.x19{left:330.149962px;}
.x30{left:336.599962px;}
.x1c{left:395.489962px;}
.x2e{left:464.069962px;}
.x20{left:607.064962px;}
.x1b{left:608.609962px;}
.x1f{left:668.984962px;}
.x13{left:1032.044962px;}
.x18{left:1043.279962px;}
.x16{left:1086.044962px;}
.x33{left:1097.279962px;}
.xb{left:1135.080000px;}
.x31{left:1139.324962px;}
.x14{left:1160.744962px;}
.x32{left:1193.324962px;}
.x4{left:1198.544962px;}
.x11{left:1202.324962px;}
.x8{left:1236.524962px;}
.x7{left:1246.289962px;}
.xf{left:1266.044962px;}
.x26{left:1287.644962px;}
.x15{left:1299.929962px;}
.x9{left:1463.940000px;}
.x2c{left:1923.584962px;}
.x2b{left:1972.904962px;}
.x28{left:1985.144962px;}
.x29{left:2012.144962px;}
.xd{left:2027.729962px;}
.x27{left:2095.709962px;}
.x2a{left:2166.089962px;}
.x2d{left:2186.969962px;}
.x12{left:2269.514962px;}
@media print{
.v3{vertical-align:-25.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.400000pt;}
.v2{vertical-align:84.640000pt;}
.lsc{letter-spacing:-0.272000pt;}
.lsf{letter-spacing:-0.231467pt;}
.lse{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000005pt;}
.ls0{letter-spacing:0.001920pt;}
.ls5{letter-spacing:0.074880pt;}
.ls6{letter-spacing:0.075520pt;}
.lsa{letter-spacing:0.256000pt;}
.ls7{letter-spacing:17.909120pt;}
.ls4{letter-spacing:35.072000pt;}
.ls3{letter-spacing:39.745920pt;}
.ls1{letter-spacing:95.392000pt;}
.ls8{letter-spacing:143.347200pt;}
.ls2{letter-spacing:143.392000pt;}
.wsb{word-spacing:-35.584000pt;}
.ws8{word-spacing:-35.543040pt;}
.ws9{word-spacing:-35.456000pt;}
.ws2{word-spacing:-32.491520pt;}
.ws6{word-spacing:-28.887040pt;}
.ws5{word-spacing:-26.624005pt;}
.ws4{word-spacing:-26.624000pt;}
.ws1{word-spacing:-24.320000pt;}
.wsc{word-spacing:-20.307200pt;}
.ws10{word-spacing:-17.704960pt;}
.ws0{word-spacing:-16.172800pt;}
.wsd{word-spacing:-11.847680pt;}
.wsf{word-spacing:-0.625280pt;}
.ws11{word-spacing:0.000000pt;}
.wse{word-spacing:0.966400pt;}
.wsa{word-spacing:13.658560pt;}
.ws7{word-spacing:935.936000pt;}
.ws3{word-spacing:1715.358933pt;}
._2{margin-left:-2.916480pt;}
._1{margin-left:-1.664000pt;}
._0{width:0.944000pt;}
._3{width:2.560000pt;}
._4{width:3.456000pt;}
._5{width:18.919040pt;}
._6{width:28.914987pt;}
.fsb{font-size:56.960000pt;}
.fs1{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fsa{font-size:106.880000pt;}
.fs9{font-size:117.120000pt;}
.fs0{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fsd{font-size:133.120000pt;}
.fse{font-size:133.248000pt;}
.fs4{font-size:138.880000pt;}
.fs8{font-size:139.008000pt;}
.fs7{font-size:146.390910pt;}
.fs3{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.fs5{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:28.064000pt;}
.y49{bottom:54.688000pt;}
.y4f{bottom:60.064000pt;}
.y45{bottom:60.320000pt;}
.y4e{bottom:85.664000pt;}
.y48{bottom:86.688000pt;}
.y4d{bottom:104.864000pt;}
.y44{bottom:109.856000pt;}
.y47{bottom:118.688000pt;}
.y13{bottom:123.226667pt;}
.y18{bottom:123.386667pt;}
.y4c{bottom:136.866667pt;}
.y46{bottom:150.693333pt;}
.y43{bottom:159.746667pt;}
.y4b{bottom:162.466667pt;}
.y4a{bottom:188.066667pt;}
.y1f{bottom:245.466667pt;}
.y11{bottom:245.506667pt;}
.y1d{bottom:286.106667pt;}
.y15{bottom:286.146667pt;}
.y10{bottom:286.173333pt;}
.y42{bottom:341.146667pt;}
.y41{bottom:392.506667pt;}
.y40{bottom:443.706667pt;}
.y3f{bottom:494.906667pt;}
.y3e{bottom:558.906667pt;}
.y63{bottom:604.160000pt;}
.y3d{bottom:610.146667pt;}
.y62{bottom:645.760000pt;}
.y3c{bottom:661.346667pt;}
.y61{bottom:687.360000pt;}
.y3b{bottom:725.346667pt;}
.y60{bottom:740.160000pt;}
.y3a{bottom:776.546667pt;}
.y5f{bottom:781.760000pt;}
.y39{bottom:827.746667pt;}
.y38{bottom:878.946667pt;}
.y37{bottom:955.973333pt;}
.y34{bottom:1135.746667pt;}
.y36{bottom:1136.386667pt;}
.y33{bottom:1174.146667pt;}
.y35{bottom:1174.786667pt;}
.y32{bottom:1249.853333pt;}
.y55{bottom:1312.613333pt;}
.y54{bottom:1354.213333pt;}
.y31{bottom:1398.373333pt;}
.y53{bottom:1405.413333pt;}
.y30{bottom:1415.613333pt;}
.y52{bottom:1447.013333pt;}
.y51{bottom:1488.613333pt;}
.y2f{bottom:1508.093333pt;}
.y2d{bottom:1616.480000pt;}
.y26{bottom:1627.746667pt;}
.y2c{bottom:1658.080000pt;}
.y25{bottom:1678.946667pt;}
.y2b{bottom:1715.680000pt;}
.y24{bottom:1720.546667pt;}
.y2a{bottom:1757.306667pt;}
.y23{bottom:1771.746667pt;}
.y29{bottom:1798.906667pt;}
.y22{bottom:1813.346667pt;}
.y1c{bottom:1839.360000pt;}
.y21{bottom:1854.946667pt;}
.y28{bottom:1856.506667pt;}
.y20{bottom:1896.546667pt;}
.y27{bottom:1898.106667pt;}
.y1a{bottom:1919.520000pt;}
.y4{bottom:1972.186667pt;}
.y2e{bottom:1972.666667pt;}
.y14{bottom:1999.680000pt;}
.y17{bottom:2061.920000pt;}
.yf{bottom:2079.840000pt;}
.y5a{bottom:2089.146667pt;}
.y1b{bottom:2105.120000pt;}
.y1e{bottom:2125.466667pt;}
.y59{bottom:2137.146667pt;}
.y12{bottom:2142.240000pt;}
.y58{bottom:2185.146667pt;}
.y19{bottom:2185.306667pt;}
.y57{bottom:2233.186667pt;}
.y16{bottom:2245.186667pt;}
.y56{bottom:2281.186667pt;}
.ye{bottom:2345.626667pt;}
.ya{bottom:2366.653333pt;}
.y9{bottom:2408.253333pt;}
.yd{bottom:2410.853333pt;}
.y8{bottom:2465.853333pt;}
.y5e{bottom:2483.680000pt;}
.y7{bottom:2507.453333pt;}
.y5d{bottom:2525.280000pt;}
.y6{bottom:2555.453333pt;}
.y5c{bottom:2573.280000pt;}
.y5{bottom:2597.053333pt;}
.y5b{bottom:2614.906667pt;}
.y3{bottom:2674.240000pt;}
.y2{bottom:2809.213333pt;}
.y1{bottom:2862.973333pt;}
.yc{bottom:2971.840000pt;}
.yb{bottom:3079.360000pt;}
.h17{height:56.700373pt;}
.h16{height:56.711040pt;}
.h18{height:82.311040pt;}
.h19{height:82.434816pt;}
.h15{height:103.352960pt;}
.h14{height:105.063040pt;}
.h13{height:122.152500pt;}
.ha{height:123.776000pt;}
.h9{height:123.899776pt;}
.h2{height:125.824000pt;}
.h1c{height:128.727040pt;}
.h1a{height:130.856960pt;}
.h1b{height:130.982784pt;}
.h12{height:133.500000pt;}
.h5{height:134.296960pt;}
.he{height:136.519040pt;}
.hf{height:136.644864pt;}
.hd{height:141.560010pt;}
.h7{height:144.847500pt;}
.h11{height:165.240960pt;}
.h4{height:167.975040pt;}
.h3{height:168.100864pt;}
.h10{height:208.416000pt;}
.hb{height:269.280000pt;}
.hc{height:269.440000pt;}
.h6{height:293.799040pt;}
.h8{height:554.400000pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w4{width:292.480000pt;}
.w3{width:870.400000pt;}
.w1{width:2244.666667pt;}
.w2{width:2244.959967pt;}
.w0{width:2244.960000pt;}
.x0{left:0.000000pt;}
.xa{left:6.560000pt;}
.xe{left:7.613333pt;}
.xc{left:12.093333pt;}
.x17{left:57.887967pt;}
.x5{left:60.479967pt;}
.x24{left:77.279967pt;}
.x25{left:79.519967pt;}
.x1{left:86.847967pt;}
.x1e{left:88.255967pt;}
.x22{left:93.439967pt;}
.x2{left:95.135967pt;}
.x6{left:96.479967pt;}
.x3{left:105.183967pt;}
.x2f{left:107.359967pt;}
.x10{left:131.133333pt;}
.x1d{left:132.607967pt;}
.x1a{left:140.506633pt;}
.x23{left:141.439967pt;}
.x21{left:271.519967pt;}
.x19{left:293.466633pt;}
.x30{left:299.199967pt;}
.x1c{left:351.546633pt;}
.x2e{left:412.506633pt;}
.x20{left:539.613300pt;}
.x1b{left:540.986633pt;}
.x1f{left:594.653300pt;}
.x13{left:917.373300pt;}
.x18{left:927.359967pt;}
.x16{left:965.373300pt;}
.x33{left:975.359967pt;}
.xb{left:1008.960000pt;}
.x31{left:1012.733300pt;}
.x14{left:1031.773300pt;}
.x32{left:1060.733300pt;}
.x4{left:1065.373300pt;}
.x11{left:1068.733300pt;}
.x8{left:1099.133300pt;}
.x7{left:1107.813300pt;}
.xf{left:1125.373300pt;}
.x26{left:1144.573300pt;}
.x15{left:1155.493300pt;}
.x9{left:1301.280000pt;}
.x2c{left:1709.853300pt;}
.x2b{left:1753.693300pt;}
.x28{left:1764.573300pt;}
.x29{left:1788.573300pt;}
.xd{left:1802.426633pt;}
.x27{left:1862.853300pt;}
.x2a{left:1925.413300pt;}
.x2d{left:1943.973300pt;}
.x12{left:2017.346633pt;}
}




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