
    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_25b19730316c71ee012d1fef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_c92e9049c1d5baceb30ae552.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_f1c8159a792662c727f40a20.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_f08f0c43f75ccedb77ce378d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_34b36a121489119153e6d07b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')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_f3322e81ba0718f0432f712c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.060000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls15{letter-spacing:-4.680000px;}
.ls7{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls6{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls12{letter-spacing:11.466720px;}
.lsd{letter-spacing:41.706720px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsb{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.328000px;}
.ws3{word-spacing:-10.440000px;}
.wsd{word-spacing:-10.260000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1450.261440px;}
._6{margin-left:-1444.152600px;}
._5{margin-left:-931.236480px;}
._7{margin-left:-578.139840px;}
._4{margin-left:-8.213760px;}
._19{margin-left:-7.075920px;}
._e{margin-left:-6.015120px;}
._9{margin-left:-4.927920px;}
._a{margin-left:-3.908160px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.088640px;}
._0{width:1.244880px;}
._12{width:2.262960px;}
._d{width:3.276480px;}
._f{width:4.601520px;}
._c{width:6.502080px;}
._b{width:7.565040px;}
._10{width:9.262800px;}
._11{width:10.876320px;}
._14{width:12.690000px;}
._13{width:13.877280px;}
._15{width:16.492080px;}
._17{width:17.764320px;}
._16{width:18.824400px;}
._18{width:20.926080px;}
._1a{width:25.326000px;}
.fc3{color:rgb(0,29,53);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:10.620000px;}
.y9e{bottom:30.600000px;}
.y9b{bottom:34.740000px;}
.y9d{bottom:50.400000px;}
.y6{bottom:66.240000px;}
.y9c{bottom:70.200000px;}
.y99{bottom:94.500000px;}
.y92{bottom:97.020000px;}
.y5e{bottom:108.720000px;}
.y33{bottom:109.080000px;}
.y98{bottom:114.480000px;}
.y91{bottom:116.820000px;}
.y5d{bottom:128.520000px;}
.y32{bottom:128.880000px;}
.y97{bottom:134.280000px;}
.y90{bottom:136.620000px;}
.y9a{bottom:138.240000px;}
.y5c{bottom:148.320000px;}
.y31{bottom:148.680000px;}
.y96{bottom:154.080000px;}
.y8f{bottom:156.600000px;}
.y5b{bottom:168.120000px;}
.y30{bottom:168.480000px;}
.y95{bottom:173.880000px;}
.y8e{bottom:176.400000px;}
.y5a{bottom:184.860000px;}
.y2f{bottom:188.280000px;}
.y94{bottom:193.680000px;}
.y8d{bottom:196.200000px;}
.y2e{bottom:208.260000px;}
.y93{bottom:213.690000px;}
.y8c{bottom:216.030000px;}
.y2d{bottom:228.090000px;}
.y69{bottom:233.490000px;}
.y8b{bottom:235.830000px;}
.y2c{bottom:247.890000px;}
.y68{bottom:253.290000px;}
.y8a{bottom:255.810000px;}
.y2b{bottom:267.690000px;}
.y67{bottom:273.090000px;}
.y89{bottom:275.610000px;}
.y2a{bottom:287.490000px;}
.y66{bottom:292.890000px;}
.y88{bottom:295.410000px;}
.y29{bottom:307.470000px;}
.y65{bottom:312.870000px;}
.y87{bottom:315.210000px;}
.y28{bottom:327.270000px;}
.y64{bottom:332.670000px;}
.y86{bottom:335.010000px;}
.y27{bottom:347.070000px;}
.y63{bottom:352.470000px;}
.y85{bottom:354.990000px;}
.y26{bottom:366.870000px;}
.y62{bottom:372.270000px;}
.y84{bottom:374.790000px;}
.y25{bottom:386.670000px;}
.y61{bottom:392.070000px;}
.y83{bottom:394.590000px;}
.y24{bottom:406.650000px;}
.y60{bottom:412.050000px;}
.y82{bottom:414.390000px;}
.y23{bottom:426.450000px;}
.y5f{bottom:431.850000px;}
.y81{bottom:434.190000px;}
.y22{bottom:446.295000px;}
.y59{bottom:451.695000px;}
.y80{bottom:454.215000px;}
.y21{bottom:466.095000px;}
.y58{bottom:471.495000px;}
.y7f{bottom:474.015000px;}
.y20{bottom:485.895000px;}
.y57{bottom:491.295000px;}
.y7e{bottom:493.815000px;}
.y1f{bottom:505.875000px;}
.y56{bottom:511.275000px;}
.y7d{bottom:513.615000px;}
.y1e{bottom:525.675000px;}
.y55{bottom:531.075000px;}
.y7c{bottom:533.415000px;}
.y1d{bottom:545.475000px;}
.y54{bottom:550.875000px;}
.y7b{bottom:553.395000px;}
.y1c{bottom:567.615000px;}
.y53{bottom:570.675000px;}
.y7a{bottom:573.195000px;}
.y52{bottom:590.475000px;}
.y79{bottom:592.995000px;}
.y1b{bottom:596.415000px;}
.y51{bottom:610.455000px;}
.y78{bottom:612.795000px;}
.y1a{bottom:616.215000px;}
.y50{bottom:630.255000px;}
.y77{bottom:632.595000px;}
.y19{bottom:636.015000px;}
.y4f{bottom:650.055000px;}
.y76{bottom:652.575000px;}
.y18{bottom:655.815000px;}
.y4e{bottom:669.855000px;}
.y75{bottom:672.375000px;}
.y17{bottom:675.795000px;}
.y4d{bottom:689.685000px;}
.y74{bottom:692.205000px;}
.y16{bottom:695.625000px;}
.y4c{bottom:709.665000px;}
.y73{bottom:712.005000px;}
.y15{bottom:715.425000px;}
.y4b{bottom:729.465000px;}
.y72{bottom:731.805000px;}
.y14{bottom:735.225000px;}
.y4a{bottom:749.265000px;}
.y71{bottom:751.785000px;}
.y13{bottom:755.025000px;}
.y49{bottom:769.065000px;}
.y70{bottom:771.585000px;}
.y12{bottom:775.005000px;}
.y48{bottom:788.865000px;}
.y6f{bottom:791.385000px;}
.y11{bottom:794.805000px;}
.y47{bottom:808.845000px;}
.y6e{bottom:811.185000px;}
.y10{bottom:814.605000px;}
.y46{bottom:828.645000px;}
.y6d{bottom:830.985000px;}
.yf{bottom:834.405000px;}
.y45{bottom:848.445000px;}
.y6c{bottom:850.965000px;}
.ye{bottom:854.205000px;}
.y44{bottom:868.245000px;}
.y6b{bottom:870.765000px;}
.yd{bottom:874.005000px;}
.y6a{bottom:887.325000px;}
.y43{bottom:888.045000px;}
.yc{bottom:896.145000px;}
.y42{bottom:908.025000px;}
.yb{bottom:921.390000px;}
.y41{bottom:927.870000px;}
.ya{bottom:936.510000px;}
.y40{bottom:947.670000px;}
.y9{bottom:957.750000px;}
.y3f{bottom:967.470000px;}
.y8{bottom:981.150000px;}
.y3e{bottom:987.270000px;}
.y3d{bottom:1007.250000px;}
.y7{bottom:1013.010000px;}
.y3c{bottom:1027.050000px;}
.y3b{bottom:1046.850000px;}
.y5{bottom:1051.350000px;}
.y3a{bottom:1066.650000px;}
.y4{bottom:1082.130000px;}
.y39{bottom:1086.450000px;}
.y38{bottom:1106.430000px;}
.y3{bottom:1112.910000px;}
.y37{bottom:1126.230000px;}
.y2{bottom:1143.870000px;}
.y36{bottom:1146.030000px;}
.y35{bottom:1165.860000px;}
.y1{bottom:1177.740000px;}
.y34{bottom:1193.400000px;}
.hd{height:2.010938px;}
.h7{height:27.147656px;}
.h5{height:41.726953px;}
.h8{height:42.164648px;}
.ha{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.hb{height:49.255313px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.hc{height:84.276000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:210.855000px;}
.w4{width:580.965000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x3{left:51.839987px;}
.x2{left:52.919987px;}
.x1{left:54.179987px;}
.x4{left:72.539987px;}
.x5{left:74.519987px;}
.x6{left:79.919987px;}
.x8{left:81.035987px;}
.x7{left:95.615987px;}
.xe{left:108.035987px;}
.xf{left:191.370000px;}
.xd{left:248.249987px;}
.x10{left:264.855000px;}
.xa{left:288.794987px;}
.xb{left:446.144987px;}
.xc{left:693.509987px;}
.x9{left:718.889987px;}
@media print{
.v3{vertical-align:-18.720000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls15{letter-spacing:-4.160000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls6{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls12{letter-spacing:10.192640pt;}
.lsd{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsb{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.736000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsd{word-spacing:-9.120000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1289.121280pt;}
._6{margin-left:-1283.691200pt;}
._5{margin-left:-827.765760pt;}
._7{margin-left:-513.902080pt;}
._4{margin-left:-7.301120pt;}
._19{margin-left:-6.289707pt;}
._e{margin-left:-5.346773pt;}
._9{margin-left:-4.380373pt;}
._a{margin-left:-3.473920pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-0.967680pt;}
._0{width:1.106560pt;}
._12{width:2.011520pt;}
._d{width:2.912427pt;}
._f{width:4.090240pt;}
._c{width:5.779627pt;}
._b{width:6.724480pt;}
._10{width:8.233600pt;}
._11{width:9.667840pt;}
._14{width:11.280000pt;}
._13{width:12.335360pt;}
._15{width:14.659627pt;}
._17{width:15.790507pt;}
._16{width:16.732800pt;}
._18{width:18.600960pt;}
._1a{width:22.512000pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:9.440000pt;}
.y9e{bottom:27.200000pt;}
.y9b{bottom:30.880000pt;}
.y9d{bottom:44.800000pt;}
.y6{bottom:58.880000pt;}
.y9c{bottom:62.400000pt;}
.y99{bottom:84.000000pt;}
.y92{bottom:86.240000pt;}
.y5e{bottom:96.640000pt;}
.y33{bottom:96.960000pt;}
.y98{bottom:101.760000pt;}
.y91{bottom:103.840000pt;}
.y5d{bottom:114.240000pt;}
.y32{bottom:114.560000pt;}
.y97{bottom:119.360000pt;}
.y90{bottom:121.440000pt;}
.y9a{bottom:122.880000pt;}
.y5c{bottom:131.840000pt;}
.y31{bottom:132.160000pt;}
.y96{bottom:136.960000pt;}
.y8f{bottom:139.200000pt;}
.y5b{bottom:149.440000pt;}
.y30{bottom:149.760000pt;}
.y95{bottom:154.560000pt;}
.y8e{bottom:156.800000pt;}
.y5a{bottom:164.320000pt;}
.y2f{bottom:167.360000pt;}
.y94{bottom:172.160000pt;}
.y8d{bottom:174.400000pt;}
.y2e{bottom:185.120000pt;}
.y93{bottom:189.946667pt;}
.y8c{bottom:192.026667pt;}
.y2d{bottom:202.746667pt;}
.y69{bottom:207.546667pt;}
.y8b{bottom:209.626667pt;}
.y2c{bottom:220.346667pt;}
.y68{bottom:225.146667pt;}
.y8a{bottom:227.386667pt;}
.y2b{bottom:237.946667pt;}
.y67{bottom:242.746667pt;}
.y89{bottom:244.986667pt;}
.y2a{bottom:255.546667pt;}
.y66{bottom:260.346667pt;}
.y88{bottom:262.586667pt;}
.y29{bottom:273.306667pt;}
.y65{bottom:278.106667pt;}
.y87{bottom:280.186667pt;}
.y28{bottom:290.906667pt;}
.y64{bottom:295.706667pt;}
.y86{bottom:297.786667pt;}
.y27{bottom:308.506667pt;}
.y63{bottom:313.306667pt;}
.y85{bottom:315.546667pt;}
.y26{bottom:326.106667pt;}
.y62{bottom:330.906667pt;}
.y84{bottom:333.146667pt;}
.y25{bottom:343.706667pt;}
.y61{bottom:348.506667pt;}
.y83{bottom:350.746667pt;}
.y24{bottom:361.466667pt;}
.y60{bottom:366.266667pt;}
.y82{bottom:368.346667pt;}
.y23{bottom:379.066667pt;}
.y5f{bottom:383.866667pt;}
.y81{bottom:385.946667pt;}
.y22{bottom:396.706667pt;}
.y59{bottom:401.506667pt;}
.y80{bottom:403.746667pt;}
.y21{bottom:414.306667pt;}
.y58{bottom:419.106667pt;}
.y7f{bottom:421.346667pt;}
.y20{bottom:431.906667pt;}
.y57{bottom:436.706667pt;}
.y7e{bottom:438.946667pt;}
.y1f{bottom:449.666667pt;}
.y56{bottom:454.466667pt;}
.y7d{bottom:456.546667pt;}
.y1e{bottom:467.266667pt;}
.y55{bottom:472.066667pt;}
.y7c{bottom:474.146667pt;}
.y1d{bottom:484.866667pt;}
.y54{bottom:489.666667pt;}
.y7b{bottom:491.906667pt;}
.y1c{bottom:504.546667pt;}
.y53{bottom:507.266667pt;}
.y7a{bottom:509.506667pt;}
.y52{bottom:524.866667pt;}
.y79{bottom:527.106667pt;}
.y1b{bottom:530.146667pt;}
.y51{bottom:542.626667pt;}
.y78{bottom:544.706667pt;}
.y1a{bottom:547.746667pt;}
.y50{bottom:560.226667pt;}
.y77{bottom:562.306667pt;}
.y19{bottom:565.346667pt;}
.y4f{bottom:577.826667pt;}
.y76{bottom:580.066667pt;}
.y18{bottom:582.946667pt;}
.y4e{bottom:595.426667pt;}
.y75{bottom:597.666667pt;}
.y17{bottom:600.706667pt;}
.y4d{bottom:613.053333pt;}
.y74{bottom:615.293333pt;}
.y16{bottom:618.333333pt;}
.y4c{bottom:630.813333pt;}
.y73{bottom:632.893333pt;}
.y15{bottom:635.933333pt;}
.y4b{bottom:648.413333pt;}
.y72{bottom:650.493333pt;}
.y14{bottom:653.533333pt;}
.y4a{bottom:666.013333pt;}
.y71{bottom:668.253333pt;}
.y13{bottom:671.133333pt;}
.y49{bottom:683.613333pt;}
.y70{bottom:685.853333pt;}
.y12{bottom:688.893333pt;}
.y48{bottom:701.213333pt;}
.y6f{bottom:703.453333pt;}
.y11{bottom:706.493333pt;}
.y47{bottom:718.973333pt;}
.y6e{bottom:721.053333pt;}
.y10{bottom:724.093333pt;}
.y46{bottom:736.573333pt;}
.y6d{bottom:738.653333pt;}
.yf{bottom:741.693333pt;}
.y45{bottom:754.173333pt;}
.y6c{bottom:756.413333pt;}
.ye{bottom:759.293333pt;}
.y44{bottom:771.773333pt;}
.y6b{bottom:774.013333pt;}
.yd{bottom:776.893333pt;}
.y6a{bottom:788.733333pt;}
.y43{bottom:789.373333pt;}
.yc{bottom:796.573333pt;}
.y42{bottom:807.133333pt;}
.yb{bottom:819.013333pt;}
.y41{bottom:824.773333pt;}
.ya{bottom:832.453333pt;}
.y40{bottom:842.373333pt;}
.y9{bottom:851.333333pt;}
.y3f{bottom:859.973333pt;}
.y8{bottom:872.133333pt;}
.y3e{bottom:877.573333pt;}
.y3d{bottom:895.333333pt;}
.y7{bottom:900.453333pt;}
.y3c{bottom:912.933333pt;}
.y3b{bottom:930.533333pt;}
.y5{bottom:934.533333pt;}
.y3a{bottom:948.133333pt;}
.y4{bottom:961.893333pt;}
.y39{bottom:965.733333pt;}
.y38{bottom:983.493333pt;}
.y3{bottom:989.253333pt;}
.y37{bottom:1001.093333pt;}
.y2{bottom:1016.773333pt;}
.y36{bottom:1018.693333pt;}
.y35{bottom:1036.320000pt;}
.y1{bottom:1046.880000pt;}
.y34{bottom:1060.800000pt;}
.hd{height:1.787500pt;}
.h7{height:24.131250pt;}
.h5{height:37.090625pt;}
.h8{height:37.479688pt;}
.ha{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.hb{height:43.782500pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.hc{height:74.912000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:187.426667pt;}
.w4{width:516.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x3{left:46.079988pt;}
.x2{left:47.039988pt;}
.x1{left:48.159988pt;}
.x4{left:64.479988pt;}
.x5{left:66.239988pt;}
.x6{left:71.039988pt;}
.x8{left:72.031988pt;}
.x7{left:84.991988pt;}
.xe{left:96.031988pt;}
.xf{left:170.106667pt;}
.xd{left:220.666655pt;}
.x10{left:235.426667pt;}
.xa{left:256.706655pt;}
.xb{left:396.573322pt;}
.xc{left:616.453322pt;}
.x9{left:639.013322pt;}
}




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