
    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_93720b6abd74c4fad1a3ed17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_e45062803dbb9d37626cfa5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_3b5d465f5197619d2bb5dd3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_b11aba729524d9a8f419aff1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.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_d1a78c6fc3668b5e56b96557.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_74a7c98983e9b4d1d0bcb2c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_25dee8653c775ce6b0c5375b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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);}
.m2{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.374045px;}
.ls11{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.144000px;}
.ls8{letter-spacing:34.818606px;}
.lsc{letter-spacing:179.453525px;}
.ls4{letter-spacing:210.240000px;}
.ls1{letter-spacing:240.912000px;}
.ls5{letter-spacing:241.686048px;}
.ls6{letter-spacing:241.752000px;}
.ls0{letter-spacing:264.960000px;}
.ls2{letter-spacing:275.709600px;}
.ls3{letter-spacing:275.760000px;}
.ls7{letter-spacing:306.669600px;}
.lse{letter-spacing:487.674979px;}
.lsa{letter-spacing:489.049924px;}
.lsf{letter-spacing:491.212994px;}
.lsd{letter-spacing:492.217426px;}
.ls10{letter-spacing:818.013451px;}
.ls9{letter-spacing:828.303035px;}
.lsb{letter-spacing:1191.124911px;}
.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;}
}
.ws0{word-spacing:-65.566800px;}
.ws1{word-spacing:-42.120000px;}
.ws5{word-spacing:-21.089935px;}
.ws2{word-spacing:-0.600000px;}
.wsc{word-spacing:0.000000px;}
.ws3{word-spacing:0.336000px;}
.ws4{word-spacing:0.408000px;}
.ws6{word-spacing:49.578259px;}
.wsb{word-spacing:120.899574px;}
.ws8{word-spacing:142.800285px;}
.ws7{word-spacing:150.030520px;}
.wsa{word-spacing:153.540034px;}
.ws9{word-spacing:452.703444px;}
._5{margin-left:-10.087200px;}
._4{margin-left:-9.078480px;}
._9{margin-left:-8.069760px;}
._6{margin-left:-7.061040px;}
._8{margin-left:-5.043600px;}
._b{margin-left:-2.376000px;}
._2{margin-left:-1.201680px;}
._0{width:1.080000px;}
._1{width:2.160000px;}
._c{width:39.672000px;}
._a{width:48.388080px;}
._7{width:51.093120px;}
._3{width:56.537280px;}
._11{width:250.953795px;}
._10{width:258.184030px;}
._e{width:286.804959px;}
._d{width:618.765734px;}
._f{width:625.995969px;}
.fc4{color:rgb(106,107,109);}
.fc3{color:rgb(0,50,153);}
.fc2{color:rgb(16,51,102);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(36,82,45);}
.fc0{color:rgb(30,100,200);}
.fsb{font-size:108.153510px;}
.fs8{font-size:120.240000px;}
.fsa{font-size:126.742821px;}
.fsc{font-size:151.787810px;}
.fs9{font-size:176.832798px;}
.fs4{font-size:216.000000px;}
.fs7{font-size:216.144000px;}
.fs5{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.fs2{font-size:300.240000px;}
.fs3{font-size:336.240000px;}
.fs1{font-size:360.000000px;}
.fs0{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:7.245235px;}
.y55{bottom:8.089013px;}
.y4a{bottom:24.375791px;}
.y48{bottom:41.476346px;}
.y54{bottom:43.264404px;}
.y53{bottom:78.442046px;}
.y7{bottom:86.760000px;}
.y9{bottom:110.052000px;}
.y52{bottom:113.618188px;}
.y51{bottom:148.794330px;}
.y6{bottom:162.720000px;}
.y50{bottom:183.935970px;}
.y8{bottom:189.255000px;}
.y4f{bottom:219.112112px;}
.y4e{bottom:254.288254px;}
.y5{bottom:256.140000px;}
.y4d{bottom:289.464395px;}
.y4c{bottom:324.640537px;}
.y4b{bottom:359.816679px;}
.y46{bottom:394.992821px;}
.y1e{bottom:477.285000px;}
.y1d{bottom:542.085000px;}
.y2f{bottom:580.785000px;}
.y1c{bottom:636.945000px;}
.y2e{bottom:645.585000px;}
.y1b{bottom:701.745000px;}
.y2d{bottom:740.445000px;}
.y1a{bottom:796.470000px;}
.y2c{bottom:835.125000px;}
.y5f{bottom:900.510000px;}
.y2b{bottom:930.030000px;}
.y5e{bottom:943.710000px;}
.y3a{bottom:977.325000px;}
.y5d{bottom:986.910000px;}
.y39{bottom:1013.325000px;}
.y5c{bottom:1030.110000px;}
.y2a{bottom:1056.930000px;}
.y5b{bottom:1073.310000px;}
.y45{bottom:1160.775000px;}
.y29{bottom:1405.050000px;}
.y28{bottom:1499.730000px;}
.y47{bottom:1548.522585px;}
.y27{bottom:1594.590000px;}
.y26{bottom:1689.270000px;}
.y44{bottom:1712.595000px;}
.y43{bottom:1748.595000px;}
.y25{bottom:1766.130000px;}
.y42{bottom:1784.595000px;}
.y41{bottom:1820.595000px;}
.y24{bottom:1843.020000px;}
.y40{bottom:1856.595000px;}
.y3f{bottom:1892.625000px;}
.y3e{bottom:1928.625000px;}
.y23{bottom:1937.700000px;}
.y3d{bottom:1964.625000px;}
.y3c{bottom:2000.625000px;}
.y22{bottom:2032.560000px;}
.y3b{bottom:2036.625000px;}
.y21{bottom:2127.420000px;}
.y5a{bottom:2178.750000px;}
.y59{bottom:2221.950000px;}
.y20{bottom:2222.100000px;}
.y58{bottom:2265.150000px;}
.y57{bottom:2308.350000px;}
.y1f{bottom:2316.960000px;}
.y56{bottom:2351.550000px;}
.y19{bottom:2443.860000px;}
.y30{bottom:2693.595000px;}
.y38{bottom:2719.875000px;}
.y13{bottom:2738.190000px;}
.y37{bottom:2770.275000px;}
.y12{bottom:2802.990000px;}
.y11{bottom:2897.670000px;}
.y10{bottom:2974.530000px;}
.y36{bottom:3034.770000px;}
.yf{bottom:3039.330000px;}
.y31{bottom:3053.910000px;}
.ye{bottom:3134.190000px;}
.y34{bottom:3190.680000px;}
.yd{bottom:3198.990000px;}
.y33{bottom:3226.140000px;}
.y32{bottom:3247.230000px;}
.yc{bottom:3293.670000px;}
.yb{bottom:3388.530000px;}
.y35{bottom:3474.180000px;}
.ya{bottom:3515.430000px;}
.y18{bottom:3818.310000px;}
.y17{bottom:3912.990000px;}
.y16{bottom:4007.850000px;}
.y15{bottom:4072.650000px;}
.y14{bottom:4199.550000px;}
.y2{bottom:4398.045000px;}
.y1{bottom:4549.065000px;}
.y4{bottom:4824.285000px;}
.y3{bottom:4931.490000px;}
.h12{height:68.552225px;}
.h11{height:79.213997px;}
.hf{height:88.066406px;}
.hc{height:90.180000px;}
.h14{height:91.412952px;}
.he{height:92.829215px;}
.h15{height:111.172712px;}
.hd{height:129.516210px;}
.h6{height:158.203125px;}
.ha{height:158.308594px;}
.h9{height:159.996094px;}
.hb{height:160.102758px;}
.h7{height:193.535156px;}
.h8{height:193.640625px;}
.h4{height:219.902344px;}
.h5{height:246.269531px;}
.h3{height:263.671875px;}
.h2{height:395.507812px;}
.h10{height:456.303550px;}
.h13{height:457.199840px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w6{width:83.844479px;}
.w4{width:84.744419px;}
.w5{width:458.939723px;}
.w3{width:458.939792px;}
.w7{width:459.899647px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1d{left:6.299595px;}
.x1f{left:8.099470px;}
.x27{left:11.736724px;}
.x26{left:13.536549px;}
.x20{left:15.336499px;}
.x23{left:22.528524px;}
.x21{left:130.753878px;}
.x1{left:149.939947px;}
.xd{left:164.309947px;}
.xb{left:207.149947px;}
.xe{left:252.149947px;}
.xc{left:292.289947px;}
.x25{left:395.823887px;}
.x24{left:397.623762px;}
.x3{left:1129.529947px;}
.x28{left:1250.789947px;}
.x29{left:1252.184947px;}
.xf{left:1266.944947px;}
.x1c{left:1292.939859px;}
.x1a{left:1322.279947px;}
.x1e{left:1329.012479px;}
.x1b{left:1351.979947px;}
.x22{left:1581.490815px;}
.x7{left:1673.924947px;}
.x8{left:1959.089947px;}
.x9{left:2044.229947px;}
.xa{left:2129.189947px;}
.x2{left:2504.624947px;}
.x6{left:2869.304947px;}
.x10{left:2876.549947px;}
.x5{left:2915.564947px;}
.x12{left:3009.059947px;}
.x13{left:3021.659947px;}
.x17{left:3055.574947px;}
.x16{left:3110.144947px;}
.x11{left:3128.834947px;}
.x19{left:3259.439947px;}
.x4{left:3264.269947px;}
.x14{left:3270.749947px;}
.x18{left:3311.639947px;}
.x15{left:3337.349947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.221373pt;}
.ls11{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls8{letter-spacing:30.949872pt;}
.lsc{letter-spacing:159.514244pt;}
.ls4{letter-spacing:186.880000pt;}
.ls1{letter-spacing:214.144000pt;}
.ls5{letter-spacing:214.832043pt;}
.ls6{letter-spacing:214.890667pt;}
.ls0{letter-spacing:235.520000pt;}
.ls2{letter-spacing:245.075200pt;}
.ls3{letter-spacing:245.120000pt;}
.ls7{letter-spacing:272.595200pt;}
.lse{letter-spacing:433.488870pt;}
.lsa{letter-spacing:434.711043pt;}
.lsf{letter-spacing:436.633772pt;}
.lsd{letter-spacing:437.526601pt;}
.ls10{letter-spacing:727.123068pt;}
.ls9{letter-spacing:736.269364pt;}
.lsb{letter-spacing:1058.777699pt;}
.ws0{word-spacing:-58.281600pt;}
.ws1{word-spacing:-37.440000pt;}
.ws5{word-spacing:-18.746608pt;}
.ws2{word-spacing:-0.533333pt;}
.wsc{word-spacing:0.000000pt;}
.ws3{word-spacing:0.298667pt;}
.ws4{word-spacing:0.362667pt;}
.ws6{word-spacing:44.069564pt;}
.wsb{word-spacing:107.466288pt;}
.ws8{word-spacing:126.933587pt;}
.ws7{word-spacing:133.360462pt;}
.wsa{word-spacing:136.480030pt;}
.ws9{word-spacing:402.403061pt;}
._5{margin-left:-8.966400pt;}
._4{margin-left:-8.069760pt;}
._9{margin-left:-7.173120pt;}
._6{margin-left:-6.276480pt;}
._8{margin-left:-4.483200pt;}
._b{margin-left:-2.112000pt;}
._2{margin-left:-1.068160pt;}
._0{width:0.960000pt;}
._1{width:1.920000pt;}
._c{width:35.264000pt;}
._a{width:43.011627pt;}
._7{width:45.416107pt;}
._3{width:50.255360pt;}
._11{width:223.070040pt;}
._10{width:229.496916pt;}
._e{width:254.937741pt;}
._d{width:550.013986pt;}
._f{width:556.440861pt;}
.fsb{font-size:96.136454pt;}
.fs8{font-size:106.880000pt;}
.fsa{font-size:112.660286pt;}
.fsc{font-size:134.922498pt;}
.fs9{font-size:157.184710pt;}
.fs4{font-size:192.000000pt;}
.fs7{font-size:192.128000pt;}
.fs5{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.fs2{font-size:266.880000pt;}
.fs3{font-size:298.880000pt;}
.fs1{font-size:320.000000pt;}
.fs0{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:6.440209pt;}
.y55{bottom:7.190233pt;}
.y4a{bottom:21.667370pt;}
.y48{bottom:36.867863pt;}
.y54{bottom:38.457248pt;}
.y53{bottom:69.726263pt;}
.y7{bottom:77.120000pt;}
.y9{bottom:97.824000pt;}
.y52{bottom:100.993945pt;}
.y51{bottom:132.261626pt;}
.y6{bottom:144.640000pt;}
.y50{bottom:163.498640pt;}
.y8{bottom:168.226667pt;}
.y4f{bottom:194.766322pt;}
.y4e{bottom:226.034003pt;}
.y5{bottom:227.680000pt;}
.y4d{bottom:257.301685pt;}
.y4c{bottom:288.569366pt;}
.y4b{bottom:319.837048pt;}
.y46{bottom:351.104729pt;}
.y1e{bottom:424.253333pt;}
.y1d{bottom:481.853333pt;}
.y2f{bottom:516.253333pt;}
.y1c{bottom:566.173333pt;}
.y2e{bottom:573.853333pt;}
.y1b{bottom:623.773333pt;}
.y2d{bottom:658.173333pt;}
.y1a{bottom:707.973333pt;}
.y2c{bottom:742.333333pt;}
.y5f{bottom:800.453333pt;}
.y2b{bottom:826.693333pt;}
.y5e{bottom:838.853333pt;}
.y3a{bottom:868.733333pt;}
.y5d{bottom:877.253333pt;}
.y39{bottom:900.733333pt;}
.y5c{bottom:915.653333pt;}
.y2a{bottom:939.493333pt;}
.y5b{bottom:954.053333pt;}
.y45{bottom:1031.800000pt;}
.y29{bottom:1248.933333pt;}
.y28{bottom:1333.093333pt;}
.y47{bottom:1376.464520pt;}
.y27{bottom:1417.413333pt;}
.y26{bottom:1501.573333pt;}
.y44{bottom:1522.306667pt;}
.y43{bottom:1554.306667pt;}
.y25{bottom:1569.893333pt;}
.y42{bottom:1586.306667pt;}
.y41{bottom:1618.306667pt;}
.y24{bottom:1638.240000pt;}
.y40{bottom:1650.306667pt;}
.y3f{bottom:1682.333333pt;}
.y3e{bottom:1714.333333pt;}
.y23{bottom:1722.400000pt;}
.y3d{bottom:1746.333333pt;}
.y3c{bottom:1778.333333pt;}
.y22{bottom:1806.720000pt;}
.y3b{bottom:1810.333333pt;}
.y21{bottom:1891.040000pt;}
.y5a{bottom:1936.666667pt;}
.y59{bottom:1975.066667pt;}
.y20{bottom:1975.200000pt;}
.y58{bottom:2013.466667pt;}
.y57{bottom:2051.866667pt;}
.y1f{bottom:2059.520000pt;}
.y56{bottom:2090.266667pt;}
.y19{bottom:2172.320000pt;}
.y30{bottom:2394.306667pt;}
.y38{bottom:2417.666667pt;}
.y13{bottom:2433.946667pt;}
.y37{bottom:2462.466667pt;}
.y12{bottom:2491.546667pt;}
.y11{bottom:2575.706667pt;}
.y10{bottom:2644.026667pt;}
.y36{bottom:2697.573333pt;}
.yf{bottom:2701.626667pt;}
.y31{bottom:2714.586667pt;}
.ye{bottom:2785.946667pt;}
.y34{bottom:2836.160000pt;}
.yd{bottom:2843.546667pt;}
.y33{bottom:2867.680000pt;}
.y32{bottom:2886.426667pt;}
.yc{bottom:2927.706667pt;}
.yb{bottom:3012.026667pt;}
.y35{bottom:3088.160000pt;}
.ya{bottom:3124.826667pt;}
.y18{bottom:3394.053333pt;}
.y17{bottom:3478.213333pt;}
.y16{bottom:3562.533333pt;}
.y15{bottom:3620.133333pt;}
.y14{bottom:3732.933333pt;}
.y2{bottom:3909.373333pt;}
.y1{bottom:4043.613333pt;}
.y4{bottom:4288.253333pt;}
.y3{bottom:4383.546667pt;}
.h12{height:60.935311pt;}
.h11{height:70.412442pt;}
.hf{height:78.281250pt;}
.hc{height:80.160000pt;}
.h14{height:81.255958pt;}
.he{height:82.514858pt;}
.h15{height:98.820189pt;}
.hd{height:115.125520pt;}
.h6{height:140.625000pt;}
.ha{height:140.718750pt;}
.h9{height:142.218750pt;}
.hb{height:142.313563pt;}
.h7{height:172.031250pt;}
.h8{height:172.125000pt;}
.h4{height:195.468750pt;}
.h5{height:218.906250pt;}
.h3{height:234.375000pt;}
.h2{height:351.562500pt;}
.h10{height:405.603155pt;}
.h13{height:406.399858pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w6{width:74.528425pt;}
.w4{width:75.328373pt;}
.w5{width:407.946420pt;}
.w3{width:407.946482pt;}
.w7{width:408.799687pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:5.599640pt;}
.x1f{left:7.199529pt;}
.x27{left:10.432644pt;}
.x26{left:12.032488pt;}
.x20{left:13.632443pt;}
.x23{left:20.025355pt;}
.x21{left:116.225670pt;}
.x1{left:133.279953pt;}
.xd{left:146.053286pt;}
.xb{left:184.133286pt;}
.xe{left:224.133286pt;}
.xc{left:259.813286pt;}
.x25{left:351.843455pt;}
.x24{left:353.443344pt;}
.x3{left:1004.026619pt;}
.x28{left:1111.813286pt;}
.x29{left:1113.053286pt;}
.xf{left:1126.173286pt;}
.x1c{left:1149.279875pt;}
.x1a{left:1175.359953pt;}
.x1e{left:1181.344425pt;}
.x1b{left:1201.759953pt;}
.x22{left:1405.769614pt;}
.x7{left:1487.933286pt;}
.x8{left:1741.413286pt;}
.x9{left:1817.093286pt;}
.xa{left:1892.613286pt;}
.x2{left:2226.333286pt;}
.x6{left:2550.493286pt;}
.x10{left:2556.933286pt;}
.x5{left:2591.613286pt;}
.x12{left:2674.719953pt;}
.x13{left:2685.919953pt;}
.x17{left:2716.066619pt;}
.x16{left:2764.573286pt;}
.x11{left:2781.186619pt;}
.x19{left:2897.279953pt;}
.x4{left:2901.573286pt;}
.x14{left:2907.333286pt;}
.x18{left:2943.679953pt;}
.x15{left:2966.533286pt;}
}




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