
    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_a2f814e81eb960c19255e800.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_9e2b846eff2e38923a666626.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_1764b899d9093ced735ee64b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_498299d37ac5499822553532.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_43fcf9ab76e9a492e5826c11.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_b35d7919fc815a89e75abc2b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v1{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.422000px;}
.ls5{letter-spacing:21.221280px;}
.ls9{letter-spacing:33.984000px;}
.ls1{letter-spacing:112.860000px;}
.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;}
}
.ws9{word-spacing:-40.608000px;}
.ws3{word-spacing:-21.420000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.064000px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-4.464000px;}
._13{margin-left:-3.024000px;}
._0{margin-left:-1.457280px;}
._1{width:1.080960px;}
._4{width:2.147040px;}
._9{width:3.312000px;}
._a{width:4.836000px;}
._b{width:6.816000px;}
._c{width:7.872000px;}
._d{width:9.504000px;}
._15{width:10.944000px;}
._f{width:12.288000px;}
._e{width:13.320000px;}
._18{width:14.424000px;}
._19{width:15.552000px;}
._1a{width:16.654080px;}
._1f{width:19.800000px;}
._20{width:21.023040px;}
._1b{width:22.032000px;}
._1c{width:23.232000px;}
._1e{width:24.932160px;}
._3{width:25.950960px;}
._10{width:27.401040px;}
._5{width:29.302560px;}
._6{width:30.328320px;}
._17{width:31.464000px;}
._1d{width:32.849280px;}
._12{width:33.977280px;}
._11{width:35.040000px;}
._23{width:49.464000px;}
._25{width:52.272000px;}
._26{width:53.724000px;}
._2b{width:64.872000px;}
._16{width:69.624000px;}
._8{width:112.873440px;}
._7{width:114.241680px;}
._21{width:120.672000px;}
._22{width:121.763040px;}
._29{width:169.896000px;}
._2a{width:171.528000px;}
._27{width:189.408000px;}
._28{width:206.208000px;}
._2c{width:236.608320px;}
._2{width:1832.717760px;}
._24{width:2279.880000px;}
.fc2{color:rgb(215,29,149);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.600000px;}
.y4{bottom:77.616000px;}
.y3{bottom:117.216000px;}
.y2{bottom:137.016000px;}
.y1{bottom:156.270000px;}
.y6f{bottom:176.610000px;}
.y31{bottom:180.030000px;}
.ya0{bottom:187.050000px;}
.y4f{bottom:193.890000px;}
.y30{bottom:200.730000px;}
.y83{bottom:204.330000px;}
.y6e{bottom:207.750000px;}
.y2f{bottom:221.430000px;}
.y4e{bottom:225.030000px;}
.y9f{bottom:228.450000px;}
.y82{bottom:235.290000px;}
.y6d{bottom:238.710000px;}
.y2e{bottom:242.130000px;}
.y9e{bottom:249.150000px;}
.y4d{bottom:255.990000px;}
.y2d{bottom:262.830000px;}
.y81{bottom:266.250000px;}
.y6c{bottom:269.850000px;}
.y2c{bottom:283.530000px;}
.y4c{bottom:286.950000px;}
.y9d{bottom:290.550000px;}
.y80{bottom:297.390000px;}
.y6b{bottom:300.810000px;}
.y2b{bottom:304.230000px;}
.y9c{bottom:311.250000px;}
.y4b{bottom:318.090000px;}
.y89{bottom:321.510000px;}
.y2a{bottom:324.930000px;}
.y7f{bottom:328.350000px;}
.y6a{bottom:331.950000px;}
.y88{bottom:342.255000px;}
.y29{bottom:345.675000px;}
.y4a{bottom:349.095000px;}
.y9b{bottom:352.695000px;}
.y7e{bottom:359.535000px;}
.y69{bottom:362.955000px;}
.y28{bottom:366.375000px;}
.y87{bottom:373.395000px;}
.y49{bottom:380.235000px;}
.y27{bottom:387.075000px;}
.y7d{bottom:390.495000px;}
.y68{bottom:394.095000px;}
.y86{bottom:404.355000px;}
.y26{bottom:407.775000px;}
.y48{bottom:411.195000px;}
.y9a{bottom:414.795000px;}
.y7c{bottom:421.635000px;}
.y67{bottom:425.055000px;}
.y25{bottom:428.475000px;}
.y85{bottom:435.495000px;}
.y47{bottom:442.335000px;}
.y24{bottom:449.175000px;}
.y7b{bottom:452.595000px;}
.y66{bottom:456.195000px;}
.y84{bottom:466.455000px;}
.y23{bottom:469.875000px;}
.y46{bottom:473.295000px;}
.y65{bottom:476.895000px;}
.y7a{bottom:483.735000px;}
.y22{bottom:490.575000px;}
.y64{bottom:497.595000px;}
.y45{bottom:504.435000px;}
.y21{bottom:511.275000px;}
.y79{bottom:514.695000px;}
.y99{bottom:518.295000px;}
.y63{bottom:528.555000px;}
.y20{bottom:531.975000px;}
.y44{bottom:535.395000px;}
.y98{bottom:538.995000px;}
.y78{bottom:545.835000px;}
.y1f{bottom:552.675000px;}
.y62{bottom:559.695000px;}
.y43{bottom:566.535000px;}
.y1e{bottom:573.375000px;}
.y77{bottom:576.795000px;}
.y97{bottom:580.395000px;}
.y61{bottom:590.655000px;}
.y1d{bottom:594.075000px;}
.y42{bottom:597.495000px;}
.y96{bottom:601.095000px;}
.y76{bottom:607.965000px;}
.y1c{bottom:614.805000px;}
.y60{bottom:621.645000px;}
.y41{bottom:628.665000px;}
.y1b{bottom:635.505000px;}
.y75{bottom:638.925000px;}
.y95{bottom:642.345000px;}
.y5f{bottom:652.785000px;}
.y1a{bottom:656.205000px;}
.y40{bottom:659.625000px;}
.y94{bottom:663.045000px;}
.y74{bottom:670.065000px;}
.y19{bottom:676.905000px;}
.y5e{bottom:683.745000px;}
.y3f{bottom:690.765000px;}
.y18{bottom:697.605000px;}
.y73{bottom:701.025000px;}
.y93{bottom:704.445000px;}
.y5d{bottom:714.885000px;}
.y17{bottom:718.305000px;}
.y3e{bottom:721.725000px;}
.y92{bottom:725.145000px;}
.y72{bottom:732.165000px;}
.y16{bottom:739.005000px;}
.y5c{bottom:745.845000px;}
.y3d{bottom:752.865000px;}
.y15{bottom:759.705000px;}
.y71{bottom:763.125000px;}
.y91{bottom:766.545000px;}
.y5b{bottom:776.985000px;}
.y14{bottom:780.405000px;}
.y3c{bottom:783.825000px;}
.y70{bottom:784.365000px;}
.y90{bottom:787.245000px;}
.y13{bottom:801.105000px;}
.y5a{bottom:807.945000px;}
.y3b{bottom:814.965000px;}
.y12{bottom:821.805000px;}
.y8f{bottom:828.645000px;}
.y59{bottom:839.085000px;}
.y11{bottom:842.505000px;}
.y3a{bottom:845.925000px;}
.y8e{bottom:849.345000px;}
.y10{bottom:863.205000px;}
.y58{bottom:870.045000px;}
.y39{bottom:877.110000px;}
.yf{bottom:883.950000px;}
.y8d{bottom:890.790000px;}
.y57{bottom:901.230000px;}
.ye{bottom:904.650000px;}
.y38{bottom:908.070000px;}
.y8c{bottom:911.490000px;}
.yd{bottom:925.890000px;}
.y56{bottom:932.190000px;}
.y37{bottom:939.210000px;}
.yc{bottom:950.730000px;}
.y8b{bottom:952.890000px;}
.y55{bottom:963.330000px;}
.y36{bottom:970.170000px;}
.y8a{bottom:973.590000px;}
.yb{bottom:978.450000px;}
.y54{bottom:994.290000px;}
.y35{bottom:1001.310000px;}
.ya{bottom:1005.990000px;}
.ya4{bottom:1014.990000px;}
.y53{bottom:1025.430000px;}
.y34{bottom:1032.270000px;}
.y9{bottom:1033.530000px;}
.ya3{bottom:1035.690000px;}
.y52{bottom:1056.390000px;}
.y8{bottom:1061.250000px;}
.y33{bottom:1063.410000px;}
.ya2{bottom:1077.090000px;}
.y51{bottom:1087.530000px;}
.y7{bottom:1088.790000px;}
.y32{bottom:1094.370000px;}
.ya1{bottom:1097.790000px;}
.y6{bottom:1115.610000px;}
.y50{bottom:1118.490000px;}
.h7{height:59.343750px;}
.h2{height:59.383125px;}
.h8{height:63.949219px;}
.h6{height:64.546875px;}
.h3{height:65.884219px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x7{left:154.649987px;}
.x4{left:180.749987px;}
.x3{left:290.774987px;}
.x5{left:312.914987px;}
.x6{left:467.924987px;}
.x2{left:808.169987px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls3{letter-spacing:1.264000pt;}
.ls5{letter-spacing:18.863360pt;}
.ls9{letter-spacing:30.208000pt;}
.ls1{letter-spacing:100.320000pt;}
.ws9{word-spacing:-36.096000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-3.968000pt;}
._13{margin-left:-2.688000pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.960853pt;}
._4{width:1.908480pt;}
._9{width:2.944000pt;}
._a{width:4.298667pt;}
._b{width:6.058667pt;}
._c{width:6.997333pt;}
._d{width:8.448000pt;}
._15{width:9.728000pt;}
._f{width:10.922667pt;}
._e{width:11.840000pt;}
._18{width:12.821333pt;}
._19{width:13.824000pt;}
._1a{width:14.803627pt;}
._1f{width:17.600000pt;}
._20{width:18.687147pt;}
._1b{width:19.584000pt;}
._1c{width:20.650667pt;}
._1e{width:22.161920pt;}
._3{width:23.067520pt;}
._10{width:24.356480pt;}
._5{width:26.046720pt;}
._6{width:26.958507pt;}
._17{width:27.968000pt;}
._1d{width:29.199360pt;}
._12{width:30.202027pt;}
._11{width:31.146667pt;}
._23{width:43.968000pt;}
._25{width:46.464000pt;}
._26{width:47.754667pt;}
._2b{width:57.664000pt;}
._16{width:61.888000pt;}
._8{width:100.331947pt;}
._7{width:101.548160pt;}
._21{width:107.264000pt;}
._22{width:108.233813pt;}
._29{width:151.018667pt;}
._2a{width:152.469333pt;}
._27{width:168.362667pt;}
._28{width:183.296000pt;}
._2c{width:210.318507pt;}
._2{width:1629.082453pt;}
._24{width:2026.560000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:68.992000pt;}
.y3{bottom:104.192000pt;}
.y2{bottom:121.792000pt;}
.y1{bottom:138.906667pt;}
.y6f{bottom:156.986667pt;}
.y31{bottom:160.026667pt;}
.ya0{bottom:166.266667pt;}
.y4f{bottom:172.346667pt;}
.y30{bottom:178.426667pt;}
.y83{bottom:181.626667pt;}
.y6e{bottom:184.666667pt;}
.y2f{bottom:196.826667pt;}
.y4e{bottom:200.026667pt;}
.y9f{bottom:203.066667pt;}
.y82{bottom:209.146667pt;}
.y6d{bottom:212.186667pt;}
.y2e{bottom:215.226667pt;}
.y9e{bottom:221.466667pt;}
.y4d{bottom:227.546667pt;}
.y2d{bottom:233.626667pt;}
.y81{bottom:236.666667pt;}
.y6c{bottom:239.866667pt;}
.y2c{bottom:252.026667pt;}
.y4c{bottom:255.066667pt;}
.y9d{bottom:258.266667pt;}
.y80{bottom:264.346667pt;}
.y6b{bottom:267.386667pt;}
.y2b{bottom:270.426667pt;}
.y9c{bottom:276.666667pt;}
.y4b{bottom:282.746667pt;}
.y89{bottom:285.786667pt;}
.y2a{bottom:288.826667pt;}
.y7f{bottom:291.866667pt;}
.y6a{bottom:295.066667pt;}
.y88{bottom:304.226667pt;}
.y29{bottom:307.266667pt;}
.y4a{bottom:310.306667pt;}
.y9b{bottom:313.506667pt;}
.y7e{bottom:319.586667pt;}
.y69{bottom:322.626667pt;}
.y28{bottom:325.666667pt;}
.y87{bottom:331.906667pt;}
.y49{bottom:337.986667pt;}
.y27{bottom:344.066667pt;}
.y7d{bottom:347.106667pt;}
.y68{bottom:350.306667pt;}
.y86{bottom:359.426667pt;}
.y26{bottom:362.466667pt;}
.y48{bottom:365.506667pt;}
.y9a{bottom:368.706667pt;}
.y7c{bottom:374.786667pt;}
.y67{bottom:377.826667pt;}
.y25{bottom:380.866667pt;}
.y85{bottom:387.106667pt;}
.y47{bottom:393.186667pt;}
.y24{bottom:399.266667pt;}
.y7b{bottom:402.306667pt;}
.y66{bottom:405.506667pt;}
.y84{bottom:414.626667pt;}
.y23{bottom:417.666667pt;}
.y46{bottom:420.706667pt;}
.y65{bottom:423.906667pt;}
.y7a{bottom:429.986667pt;}
.y22{bottom:436.066667pt;}
.y64{bottom:442.306667pt;}
.y45{bottom:448.386667pt;}
.y21{bottom:454.466667pt;}
.y79{bottom:457.506667pt;}
.y99{bottom:460.706667pt;}
.y63{bottom:469.826667pt;}
.y20{bottom:472.866667pt;}
.y44{bottom:475.906667pt;}
.y98{bottom:479.106667pt;}
.y78{bottom:485.186667pt;}
.y1f{bottom:491.266667pt;}
.y62{bottom:497.506667pt;}
.y43{bottom:503.586667pt;}
.y1e{bottom:509.666667pt;}
.y77{bottom:512.706667pt;}
.y97{bottom:515.906667pt;}
.y61{bottom:525.026667pt;}
.y1d{bottom:528.066667pt;}
.y42{bottom:531.106667pt;}
.y96{bottom:534.306667pt;}
.y76{bottom:540.413333pt;}
.y1c{bottom:546.493333pt;}
.y60{bottom:552.573333pt;}
.y41{bottom:558.813333pt;}
.y1b{bottom:564.893333pt;}
.y75{bottom:567.933333pt;}
.y95{bottom:570.973333pt;}
.y5f{bottom:580.253333pt;}
.y1a{bottom:583.293333pt;}
.y40{bottom:586.333333pt;}
.y94{bottom:589.373333pt;}
.y74{bottom:595.613333pt;}
.y19{bottom:601.693333pt;}
.y5e{bottom:607.773333pt;}
.y3f{bottom:614.013333pt;}
.y18{bottom:620.093333pt;}
.y73{bottom:623.133333pt;}
.y93{bottom:626.173333pt;}
.y5d{bottom:635.453333pt;}
.y17{bottom:638.493333pt;}
.y3e{bottom:641.533333pt;}
.y92{bottom:644.573333pt;}
.y72{bottom:650.813333pt;}
.y16{bottom:656.893333pt;}
.y5c{bottom:662.973333pt;}
.y3d{bottom:669.213333pt;}
.y15{bottom:675.293333pt;}
.y71{bottom:678.333333pt;}
.y91{bottom:681.373333pt;}
.y5b{bottom:690.653333pt;}
.y14{bottom:693.693333pt;}
.y3c{bottom:696.733333pt;}
.y70{bottom:697.213333pt;}
.y90{bottom:699.773333pt;}
.y13{bottom:712.093333pt;}
.y5a{bottom:718.173333pt;}
.y3b{bottom:724.413333pt;}
.y12{bottom:730.493333pt;}
.y8f{bottom:736.573333pt;}
.y59{bottom:745.853333pt;}
.y11{bottom:748.893333pt;}
.y3a{bottom:751.933333pt;}
.y8e{bottom:754.973333pt;}
.y10{bottom:767.293333pt;}
.y58{bottom:773.373333pt;}
.y39{bottom:779.653333pt;}
.yf{bottom:785.733333pt;}
.y8d{bottom:791.813333pt;}
.y57{bottom:801.093333pt;}
.ye{bottom:804.133333pt;}
.y38{bottom:807.173333pt;}
.y8c{bottom:810.213333pt;}
.yd{bottom:823.013333pt;}
.y56{bottom:828.613333pt;}
.y37{bottom:834.853333pt;}
.yc{bottom:845.093333pt;}
.y8b{bottom:847.013333pt;}
.y55{bottom:856.293333pt;}
.y36{bottom:862.373333pt;}
.y8a{bottom:865.413333pt;}
.yb{bottom:869.733333pt;}
.y54{bottom:883.813333pt;}
.y35{bottom:890.053333pt;}
.ya{bottom:894.213333pt;}
.ya4{bottom:902.213333pt;}
.y53{bottom:911.493333pt;}
.y34{bottom:917.573333pt;}
.y9{bottom:918.693333pt;}
.ya3{bottom:920.613333pt;}
.y52{bottom:939.013333pt;}
.y8{bottom:943.333333pt;}
.y33{bottom:945.253333pt;}
.ya2{bottom:957.413333pt;}
.y51{bottom:966.693333pt;}
.y7{bottom:967.813333pt;}
.y32{bottom:972.773333pt;}
.ya1{bottom:975.813333pt;}
.y6{bottom:991.653333pt;}
.y50{bottom:994.213333pt;}
.h7{height:52.750000pt;}
.h2{height:52.785000pt;}
.h8{height:56.843750pt;}
.h6{height:57.375000pt;}
.h3{height:58.563750pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x7{left:137.466655pt;}
.x4{left:160.666655pt;}
.x3{left:258.466655pt;}
.x5{left:278.146655pt;}
.x6{left:415.933322pt;}
.x2{left:718.373322pt;}
}




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