
    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_77eea67fdf21b08a308a3dd7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de766087fa018c8d987486d7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2b5d93eb8c0f519a89211ecd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d428ec0d5e99ac197bca309b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a06ed6fffd41e5c056eb210a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935567;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);}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.640000px;}
.v1{vertical-align:30.420000px;}
.lsf{letter-spacing:-1.134000px;}
.ls2{letter-spacing:-0.984000px;}
.ls4{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.507000px;}
.lsa{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.178800px;}
.ls1{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001440px;}
.lsc{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.457800px;}
.lsd{letter-spacing:0.601920px;}
.ls6{letter-spacing:0.610560px;}
.ls5{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.984000px;}
.ls11{letter-spacing:1.746000px;}
.lse{letter-spacing:13.265280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws1{word-spacing:-30.024000px;}
.ws2{word-spacing:-24.019200px;}
.ws6{word-spacing:-19.026720px;}
.ws3{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.109320px;}
.ws5{word-spacing:-17.430720px;}
.wsc{word-spacing:-17.280720px;}
.wsb{word-spacing:-16.306440px;}
.ws4{word-spacing:-15.212160px;}
.ws7{word-spacing:-11.609280px;}
.ws9{word-spacing:-11.430480px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-6.181920px;}
._5{margin-left:-5.135040px;}
._7{margin-left:-3.240000px;}
._20{margin-left:-2.239200px;}
._0{margin-left:-1.226880px;}
._1{width:1.200960px;}
._4{width:2.761920px;}
._3{width:4.199040px;}
._16{width:5.215200px;}
._6{width:6.396000px;}
._a{width:7.948800px;}
._b{width:9.331200px;}
._c{width:10.500480px;}
._e{width:12.071520px;}
._11{width:13.446720px;}
._10{width:15.004800px;}
._f{width:16.162560px;}
._15{width:17.360640px;}
._12{width:19.525920px;}
._d{width:20.560320px;}
._1a{width:21.602880px;}
._1c{width:22.639680px;}
._1b{width:24.177600px;}
._19{width:25.280640px;}
._18{width:26.331840px;}
._9{width:27.480960px;}
._8{width:29.180160px;}
._17{width:35.309280px;}
._14{width:36.517440px;}
._13{width:38.304480px;}
._1f{width:55.745280px;}
._1e{width:57.032640px;}
._1d{width:60.024480px;}
.fc3{color:rgb(20,19,20);}
.fc2{color:transparent;}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:86.400000px;}
.fs1{font-size:102.240000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:56.160000px;}
.y2b{bottom:56.520000px;}
.y2a{bottom:73.476000px;}
.y29{bottom:93.274500px;}
.y28{bottom:116.314500px;}
.ya4{bottom:118.836000px;}
.y21{bottom:124.956000px;}
.y89{bottom:126.036000px;}
.y62{bottom:126.396000px;}
.y22{bottom:134.320500px;}
.y3c{bottom:136.116000px;}
.y40{bottom:136.836000px;}
.y88{bottom:140.796000px;}
.y27{bottom:144.394500px;}
.ya3{bottom:147.276000px;}
.y8e{bottom:154.830000px;}
.y61{bottom:155.190000px;}
.y20{bottom:155.910000px;}
.y70{bottom:165.270000px;}
.y3b{bottom:167.070000px;}
.y3f{bottom:167.790000px;}
.y87{bottom:171.750000px;}
.ya2{bottom:176.070000px;}
.y8d{bottom:183.270000px;}
.y60{bottom:183.630000px;}
.y1f{bottom:186.870000px;}
.y6f{bottom:193.755000px;}
.y26{bottom:196.264500px;}
.y3a{bottom:196.635000px;}
.y3e{bottom:198.795000px;}
.y86{bottom:202.755000px;}
.y5f{bottom:211.755000px;}
.y1e{bottom:218.235000px;}
.y6e{bottom:222.195000px;}
.y39{bottom:225.075000px;}
.y85{bottom:234.075000px;}
.y5e{bottom:240.195000px;}
.y3d{bottom:240.555000px;}
.y25{bottom:248.104500px;}
.y1d{bottom:249.195000px;}
.ya1{bottom:250.995000px;}
.y38{bottom:253.515000px;}
.y84{bottom:265.035000px;}
.y5d{bottom:268.635000px;}
.y8c{bottom:268.995000px;}
.ya0{bottom:279.435000px;}
.y1c{bottom:280.155000px;}
.y37{bottom:281.955000px;}
.y24{bottom:295.264500px;}
.y83{bottom:295.995000px;}
.y5c{bottom:297.075000px;}
.y9f{bottom:307.515000px;}
.y1b{bottom:311.115000px;}
.y36{bottom:312.195000px;}
.y23{bottom:324.829500px;}
.y5b{bottom:325.545000px;}
.y82{bottom:326.985000px;}
.y9e{bottom:335.985000px;}
.y1a{bottom:342.465000px;}
.y35{bottom:343.185000px;}
.y5a{bottom:353.985000px;}
.y81{bottom:358.305000px;}
.y9d{bottom:364.425000px;}
.y19{bottom:373.425000px;}
.y34{bottom:374.145000px;}
.yb6{bottom:377.025000px;}
.y59{bottom:382.425000px;}
.y80{bottom:389.265000px;}
.y9c{bottom:392.865000px;}
.y18{bottom:404.385000px;}
.y33{bottom:405.105000px;}
.yb5{bottom:407.265000px;}
.y6d{bottom:410.865000px;}
.y58{bottom:411.225000px;}
.y7f{bottom:420.225000px;}
.y32{bottom:425.625000px;}
.y17{bottom:435.345000px;}
.yb4{bottom:438.225000px;}
.y6c{bottom:439.305000px;}
.y57{bottom:439.665000px;}
.y31{bottom:444.750000px;}
.y7e{bottom:451.230000px;}
.y30{bottom:464.190000px;}
.y16{bottom:466.710000px;}
.y6b{bottom:467.790000px;}
.yb3{bottom:469.230000px;}
.y7d{bottom:482.550000px;}
.y2f{bottom:482.910000px;}
.y56{bottom:485.790000px;}
.y6a{bottom:496.590000px;}
.y15{bottom:497.670000px;}
.yb2{bottom:500.190000px;}
.y2e{bottom:501.630000px;}
.y7c{bottom:513.510000px;}
.y55{bottom:514.590000px;}
.y9b{bottom:525.030000px;}
.y8b{bottom:525.390000px;}
.y14{bottom:528.630000px;}
.y2d{bottom:529.710000px;}
.yb1{bottom:531.510000px;}
.y54{bottom:543.030000px;}
.y7b{bottom:544.470000px;}
.y9a{bottom:553.470000px;}
.y13{bottom:559.590000px;}
.yb0{bottom:562.470000px;}
.y53{bottom:571.500000px;}
.y7a{bottom:575.460000px;}
.y99{bottom:581.940000px;}
.y12{bottom:590.580000px;}
.yaf{bottom:593.460000px;}
.y52{bottom:599.940000px;}
.y69{bottom:600.300000px;}
.y79{bottom:606.780000px;}
.y98{bottom:610.380000px;}
.y11{bottom:621.900000px;}
.yae{bottom:624.420000px;}
.y51{bottom:628.380000px;}
.y78{bottom:637.740000px;}
.y97{bottom:638.820000px;}
.y10{bottom:652.860000px;}
.yad{bottom:655.380000px;}
.y8a{bottom:656.820000px;}
.y50{bottom:657.180000px;}
.yf{bottom:683.820000px;}
.y77{bottom:685.260000px;}
.y68{bottom:685.620000px;}
.yac{bottom:686.700000px;}
.y4f{bottom:703.290000px;}
.y96{bottom:713.730000px;}
.y76{bottom:714.090000px;}
.ye{bottom:714.810000px;}
.yab{bottom:717.690000px;}
.y4e{bottom:731.730000px;}
.y95{bottom:742.530000px;}
.yd{bottom:746.130000px;}
.yaa{bottom:748.650000px;}
.y4d{bottom:760.170000px;}
.y94{bottom:770.970000px;}
.yc{bottom:777.090000px;}
.ya9{bottom:779.610000px;}
.y4c{bottom:788.610000px;}
.y93{bottom:799.050000px;}
.yb{bottom:808.050000px;}
.ya8{bottom:810.930000px;}
.y4b{bottom:817.050000px;}
.y92{bottom:827.895000px;}
.ya{bottom:839.055000px;}
.ya7{bottom:841.935000px;}
.y4a{bottom:845.535000px;}
.y67{bottom:845.895000px;}
.y9{bottom:870.375000px;}
.ya6{bottom:872.895000px;}
.y49{bottom:873.975000px;}
.y8{bottom:901.335000px;}
.y75{bottom:902.415000px;}
.y66{bottom:902.775000px;}
.y48{bottom:920.415000px;}
.y65{bottom:930.855000px;}
.ya5{bottom:931.215000px;}
.y7{bottom:932.295000px;}
.y47{bottom:948.885000px;}
.y74{bottom:959.325000px;}
.y91{bottom:959.685000px;}
.y6{bottom:963.285000px;}
.y46{bottom:977.325000px;}
.y73{bottom:987.765000px;}
.y5{bottom:994.605000px;}
.y64{bottom:1005.765000px;}
.y45{bottom:1006.125000px;}
.y90{bottom:1016.205000px;}
.y72{bottom:1016.565000px;}
.y4{bottom:1025.565000px;}
.y44{bottom:1034.205000px;}
.y8f{bottom:1045.005000px;}
.y3{bottom:1056.525000px;}
.y63{bottom:1063.005000px;}
.y43{bottom:1063.365000px;}
.y2{bottom:1087.530000px;}
.y42{bottom:1091.490000px;}
.y1{bottom:1118.850000px;}
.y41{bottom:1119.930000px;}
.y71{bottom:1120.290000px;}
.h8{height:62.163910px;}
.h7{height:63.078750px;}
.h9{height:69.086250px;}
.hc{height:73.794375px;}
.hb{height:73.974375px;}
.h2{height:75.093750px;}
.h6{height:81.101250px;}
.h4{height:106.633125px;}
.ha{height:112.640625px;}
.h5{height:187.734375px;}
.h3{height:348.210000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:649.350000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:10.786500px;}
.x2{left:113.449500px;}
.x1{left:127.476000px;}
.x7{left:646.095000px;}
.x5{left:666.285000px;}
.x6{left:749.130000px;}
.x4{left:757.410000px;}
@media print{
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.680000pt;}
.v1{vertical-align:27.040000pt;}
.lsf{letter-spacing:-1.008000pt;}
.ls2{letter-spacing:-0.874667pt;}
.ls4{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.450667pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.158933pt;}
.ls1{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001280pt;}
.lsc{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.406933pt;}
.lsd{letter-spacing:0.535040pt;}
.ls6{letter-spacing:0.542720pt;}
.ls5{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.874667pt;}
.ls11{letter-spacing:1.552000pt;}
.lse{letter-spacing:11.791360pt;}
.ws8{word-spacing:-58.880000pt;}
.ws1{word-spacing:-26.688000pt;}
.ws2{word-spacing:-21.350400pt;}
.ws6{word-spacing:-16.912640pt;}
.ws3{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.097173pt;}
.ws5{word-spacing:-15.493973pt;}
.wsc{word-spacing:-15.360640pt;}
.wsb{word-spacing:-14.494613pt;}
.ws4{word-spacing:-13.521920pt;}
.ws7{word-spacing:-10.319360pt;}
.ws9{word-spacing:-10.160427pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-5.495040pt;}
._5{margin-left:-4.564480pt;}
._7{margin-left:-2.880000pt;}
._20{margin-left:-1.990400pt;}
._0{margin-left:-1.090560pt;}
._1{width:1.067520pt;}
._4{width:2.455040pt;}
._3{width:3.732480pt;}
._16{width:4.635733pt;}
._6{width:5.685333pt;}
._a{width:7.065600pt;}
._b{width:8.294400pt;}
._c{width:9.333760pt;}
._e{width:10.730240pt;}
._11{width:11.952640pt;}
._10{width:13.337600pt;}
._f{width:14.366720pt;}
._15{width:15.431680pt;}
._12{width:17.356373pt;}
._d{width:18.275840pt;}
._1a{width:19.202560pt;}
._1c{width:20.124160pt;}
._1b{width:21.491200pt;}
._19{width:22.471680pt;}
._18{width:23.406080pt;}
._9{width:24.427520pt;}
._8{width:25.937920pt;}
._17{width:31.386027pt;}
._14{width:32.459947pt;}
._13{width:34.048427pt;}
._1f{width:49.551360pt;}
._1e{width:50.695680pt;}
._1d{width:53.355093pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:76.800000pt;}
.fs1{font-size:90.880000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:49.920000pt;}
.y2b{bottom:50.240000pt;}
.y2a{bottom:65.312000pt;}
.y29{bottom:82.910667pt;}
.y28{bottom:103.390667pt;}
.ya4{bottom:105.632000pt;}
.y21{bottom:111.072000pt;}
.y89{bottom:112.032000pt;}
.y62{bottom:112.352000pt;}
.y22{bottom:119.396000pt;}
.y3c{bottom:120.992000pt;}
.y40{bottom:121.632000pt;}
.y88{bottom:125.152000pt;}
.y27{bottom:128.350667pt;}
.ya3{bottom:130.912000pt;}
.y8e{bottom:137.626667pt;}
.y61{bottom:137.946667pt;}
.y20{bottom:138.586667pt;}
.y70{bottom:146.906667pt;}
.y3b{bottom:148.506667pt;}
.y3f{bottom:149.146667pt;}
.y87{bottom:152.666667pt;}
.ya2{bottom:156.506667pt;}
.y8d{bottom:162.906667pt;}
.y60{bottom:163.226667pt;}
.y1f{bottom:166.106667pt;}
.y6f{bottom:172.226667pt;}
.y26{bottom:174.457333pt;}
.y3a{bottom:174.786667pt;}
.y3e{bottom:176.706667pt;}
.y86{bottom:180.226667pt;}
.y5f{bottom:188.226667pt;}
.y1e{bottom:193.986667pt;}
.y6e{bottom:197.506667pt;}
.y39{bottom:200.066667pt;}
.y85{bottom:208.066667pt;}
.y5e{bottom:213.506667pt;}
.y3d{bottom:213.826667pt;}
.y25{bottom:220.537333pt;}
.y1d{bottom:221.506667pt;}
.ya1{bottom:223.106667pt;}
.y38{bottom:225.346667pt;}
.y84{bottom:235.586667pt;}
.y5d{bottom:238.786667pt;}
.y8c{bottom:239.106667pt;}
.ya0{bottom:248.386667pt;}
.y1c{bottom:249.026667pt;}
.y37{bottom:250.626667pt;}
.y24{bottom:262.457333pt;}
.y83{bottom:263.106667pt;}
.y5c{bottom:264.066667pt;}
.y9f{bottom:273.346667pt;}
.y1b{bottom:276.546667pt;}
.y36{bottom:277.506667pt;}
.y23{bottom:288.737333pt;}
.y5b{bottom:289.373333pt;}
.y82{bottom:290.653333pt;}
.y9e{bottom:298.653333pt;}
.y1a{bottom:304.413333pt;}
.y35{bottom:305.053333pt;}
.y5a{bottom:314.653333pt;}
.y81{bottom:318.493333pt;}
.y9d{bottom:323.933333pt;}
.y19{bottom:331.933333pt;}
.y34{bottom:332.573333pt;}
.yb6{bottom:335.133333pt;}
.y59{bottom:339.933333pt;}
.y80{bottom:346.013333pt;}
.y9c{bottom:349.213333pt;}
.y18{bottom:359.453333pt;}
.y33{bottom:360.093333pt;}
.yb5{bottom:362.013333pt;}
.y6d{bottom:365.213333pt;}
.y58{bottom:365.533333pt;}
.y7f{bottom:373.533333pt;}
.y32{bottom:378.333333pt;}
.y17{bottom:386.973333pt;}
.yb4{bottom:389.533333pt;}
.y6c{bottom:390.493333pt;}
.y57{bottom:390.813333pt;}
.y31{bottom:395.333333pt;}
.y7e{bottom:401.093333pt;}
.y30{bottom:412.613333pt;}
.y16{bottom:414.853333pt;}
.y6b{bottom:415.813333pt;}
.yb3{bottom:417.093333pt;}
.y7d{bottom:428.933333pt;}
.y2f{bottom:429.253333pt;}
.y56{bottom:431.813333pt;}
.y6a{bottom:441.413333pt;}
.y15{bottom:442.373333pt;}
.yb2{bottom:444.613333pt;}
.y2e{bottom:445.893333pt;}
.y7c{bottom:456.453333pt;}
.y55{bottom:457.413333pt;}
.y9b{bottom:466.693333pt;}
.y8b{bottom:467.013333pt;}
.y14{bottom:469.893333pt;}
.y2d{bottom:470.853333pt;}
.yb1{bottom:472.453333pt;}
.y54{bottom:482.693333pt;}
.y7b{bottom:483.973333pt;}
.y9a{bottom:491.973333pt;}
.y13{bottom:497.413333pt;}
.yb0{bottom:499.973333pt;}
.y53{bottom:508.000000pt;}
.y7a{bottom:511.520000pt;}
.y99{bottom:517.280000pt;}
.y12{bottom:524.960000pt;}
.yaf{bottom:527.520000pt;}
.y52{bottom:533.280000pt;}
.y69{bottom:533.600000pt;}
.y79{bottom:539.360000pt;}
.y98{bottom:542.560000pt;}
.y11{bottom:552.800000pt;}
.yae{bottom:555.040000pt;}
.y51{bottom:558.560000pt;}
.y78{bottom:566.880000pt;}
.y97{bottom:567.840000pt;}
.y10{bottom:580.320000pt;}
.yad{bottom:582.560000pt;}
.y8a{bottom:583.840000pt;}
.y50{bottom:584.160000pt;}
.yf{bottom:607.840000pt;}
.y77{bottom:609.120000pt;}
.y68{bottom:609.440000pt;}
.yac{bottom:610.400000pt;}
.y4f{bottom:625.146667pt;}
.y96{bottom:634.426667pt;}
.y76{bottom:634.746667pt;}
.ye{bottom:635.386667pt;}
.yab{bottom:637.946667pt;}
.y4e{bottom:650.426667pt;}
.y95{bottom:660.026667pt;}
.yd{bottom:663.226667pt;}
.yaa{bottom:665.466667pt;}
.y4d{bottom:675.706667pt;}
.y94{bottom:685.306667pt;}
.yc{bottom:690.746667pt;}
.ya9{bottom:692.986667pt;}
.y4c{bottom:700.986667pt;}
.y93{bottom:710.266667pt;}
.yb{bottom:718.266667pt;}
.ya8{bottom:720.826667pt;}
.y4b{bottom:726.266667pt;}
.y92{bottom:735.906667pt;}
.ya{bottom:745.826667pt;}
.ya7{bottom:748.386667pt;}
.y4a{bottom:751.586667pt;}
.y67{bottom:751.906667pt;}
.y9{bottom:773.666667pt;}
.ya6{bottom:775.906667pt;}
.y49{bottom:776.866667pt;}
.y8{bottom:801.186667pt;}
.y75{bottom:802.146667pt;}
.y66{bottom:802.466667pt;}
.y48{bottom:818.146667pt;}
.y65{bottom:827.426667pt;}
.ya5{bottom:827.746667pt;}
.y7{bottom:828.706667pt;}
.y47{bottom:843.453333pt;}
.y74{bottom:852.733333pt;}
.y91{bottom:853.053333pt;}
.y6{bottom:856.253333pt;}
.y46{bottom:868.733333pt;}
.y73{bottom:878.013333pt;}
.y5{bottom:884.093333pt;}
.y64{bottom:894.013333pt;}
.y45{bottom:894.333333pt;}
.y90{bottom:903.293333pt;}
.y72{bottom:903.613333pt;}
.y4{bottom:911.613333pt;}
.y44{bottom:919.293333pt;}
.y8f{bottom:928.893333pt;}
.y3{bottom:939.133333pt;}
.y63{bottom:944.893333pt;}
.y43{bottom:945.213333pt;}
.y2{bottom:966.693333pt;}
.y42{bottom:970.213333pt;}
.y1{bottom:994.533333pt;}
.y41{bottom:995.493333pt;}
.y71{bottom:995.813333pt;}
.h8{height:55.256809pt;}
.h7{height:56.070000pt;}
.h9{height:61.410000pt;}
.hc{height:65.595000pt;}
.hb{height:65.755000pt;}
.h2{height:66.750000pt;}
.h6{height:72.090000pt;}
.h4{height:94.785000pt;}
.ha{height:100.125000pt;}
.h5{height:166.875000pt;}
.h3{height:309.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:577.200000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:9.588000pt;}
.x2{left:100.844000pt;}
.x1{left:113.312000pt;}
.x7{left:574.306667pt;}
.x5{left:592.253333pt;}
.x6{left:665.893333pt;}
.x4{left:673.253333pt;}
}




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