
    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_3ecbd8a39ebebf0b3ba5a1df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_753ccaf213661a7f0151cae4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_ef94f3f31b4fa12b3af1d7be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088867;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_6d46c8a43a1e4b4f7a0c5526.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_bbc6bce0a76f2ac603ac2fec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_bbbc02cb0b72ca212bb560de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_cbc43a0b3fecd1eaa7d667c9.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.378600px;}
.ls17{letter-spacing:-0.369600px;}
.lsb{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.028080px;}
.ls15{letter-spacing:-0.018720px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.208080px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.369600px;}
.lsa{letter-spacing:0.378600px;}
.ls1{letter-spacing:1.260000px;}
.lsf{letter-spacing:8.460000px;}
.ls3{letter-spacing:9.180000px;}
.ls12{letter-spacing:9.900000px;}
.ls13{letter-spacing:11.340000px;}
.ls4{letter-spacing:14.940000px;}
.lsd{letter-spacing:15.660000px;}
.ls19{letter-spacing:21.221280px;}
.ls1a{letter-spacing:22.860000px;}
.ls2{letter-spacing:25.020000px;}
.lsc{letter-spacing:39.420000px;}
.ls7{letter-spacing:41.580000px;}
.ls10{letter-spacing:91.236000px;}
.ls18{letter-spacing:600.276000px;}
.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:-21.438600px;}
.ws4{word-spacing:-21.429600px;}
.ws0{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.041280px;}
.ws8{word-spacing:-21.031920px;}
.ws9{word-spacing:-20.690400px;}
.ws3{word-spacing:0.000000px;}
._2c{margin-left:-9.509040px;}
._31{margin-left:-8.439840px;}
._1f{margin-left:-5.475600px;}
._15{margin-left:-4.464720px;}
._16{margin-left:-3.464640px;}
._1b{margin-left:-2.196960px;}
._0{margin-left:-1.131840px;}
._1{width:1.353840px;}
._6{width:2.442960px;}
._1a{width:3.817920px;}
._11{width:5.033040px;}
._7{width:6.726000px;}
._e{width:7.956240px;}
._d{width:9.134640px;}
._9{width:10.698480px;}
._1e{width:11.962080px;}
._10{width:13.936080px;}
._f{width:14.994720px;}
._3{width:16.210800px;}
._4{width:17.400960px;}
._5{width:19.384080px;}
._a{width:22.254480px;}
._8{width:23.502960px;}
._c{width:24.864480px;}
._b{width:25.890240px;}
._2e{width:27.049440px;}
._29{width:28.051920px;}
._20{width:29.147040px;}
._1c{width:31.253040px;}
._1d{width:32.452320px;}
._17{width:34.696080px;}
._2{width:35.717760px;}
._12{width:37.252560px;}
._30{width:39.069600px;}
._13{width:40.435200px;}
._14{width:41.783040px;}
._25{width:43.636320px;}
._26{width:44.647200px;}
._22{width:47.709360px;}
._32{width:48.728640px;}
._2a{width:50.038560px;}
._27{width:53.239680px;}
._28{width:54.455760px;}
._2f{width:56.777760px;}
._23{width:76.911120px;}
._24{width:78.470880px;}
._18{width:87.309360px;}
._19{width:88.746240px;}
._21{width:123.816000px;}
._2d{width:146.689680px;}
._2b{width:148.238400px;}
._33{width:843.240000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y79{bottom:20.340000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y77{bottom:110.736000px;}
.y2b{bottom:111.456000px;}
.y98{bottom:122.256000px;}
.y76{bottom:134.856000px;}
.y2a{bottom:135.576000px;}
.y97{bottom:146.376000px;}
.y53{bottom:147.096000px;}
.y75{bottom:159.150000px;}
.y29{bottom:159.690000px;}
.y96{bottom:170.670000px;}
.y52{bottom:171.210000px;}
.y74{bottom:183.270000px;}
.y28{bottom:183.810000px;}
.y95{bottom:194.790000px;}
.y51{bottom:195.330000px;}
.y73{bottom:207.390000px;}
.y94{bottom:218.910000px;}
.y50{bottom:219.450000px;}
.y27{bottom:219.990000px;}
.y72{bottom:231.510000px;}
.y93{bottom:243.030000px;}
.y4f{bottom:243.750000px;}
.y26{bottom:244.110000px;}
.y71{bottom:255.630000px;}
.y92{bottom:267.150000px;}
.y4e{bottom:267.870000px;}
.y25{bottom:268.230000px;}
.y70{bottom:279.795000px;}
.y91{bottom:291.315000px;}
.y4d{bottom:292.035000px;}
.y24{bottom:292.395000px;}
.y6f{bottom:303.915000px;}
.y90{bottom:315.435000px;}
.y4c{bottom:316.155000px;}
.y23{bottom:316.515000px;}
.y6e{bottom:328.215000px;}
.y8f{bottom:339.735000px;}
.y4b{bottom:340.275000px;}
.y22{bottom:340.815000px;}
.y6d{bottom:352.335000px;}
.y8e{bottom:363.855000px;}
.y4a{bottom:364.395000px;}
.y21{bottom:364.935000px;}
.y6c{bottom:376.455000px;}
.y49{bottom:388.515000px;}
.y20{bottom:389.055000px;}
.y6b{bottom:400.575000px;}
.y8d{bottom:412.095000px;}
.y48{bottom:412.815000px;}
.y1f{bottom:413.175000px;}
.y6a{bottom:424.695000px;}
.y8c{bottom:436.215000px;}
.y47{bottom:436.935000px;}
.y1e{bottom:437.295000px;}
.y69{bottom:448.815000px;}
.y8b{bottom:460.335000px;}
.y46{bottom:461.055000px;}
.y1d{bottom:461.415000px;}
.y68{bottom:473.115000px;}
.y8a{bottom:484.635000px;}
.y45{bottom:485.175000px;}
.y1c{bottom:485.715000px;}
.y67{bottom:497.235000px;}
.y89{bottom:508.755000px;}
.y44{bottom:509.295000px;}
.y1b{bottom:509.835000px;}
.y66{bottom:521.355000px;}
.y88{bottom:532.875000px;}
.y43{bottom:533.415000px;}
.y1a{bottom:533.955000px;}
.y65{bottom:545.475000px;}
.y87{bottom:557.025000px;}
.y42{bottom:557.745000px;}
.y64{bottom:569.625000px;}
.y19{bottom:570.165000px;}
.y86{bottom:581.145000px;}
.y41{bottom:581.865000px;}
.y63{bottom:593.745000px;}
.y18{bottom:594.285000px;}
.y85{bottom:605.265000px;}
.y40{bottom:605.985000px;}
.y62{bottom:618.045000px;}
.y17{bottom:618.405000px;}
.y84{bottom:629.565000px;}
.y3f{bottom:630.105000px;}
.y61{bottom:642.165000px;}
.y16{bottom:642.525000px;}
.y83{bottom:653.685000px;}
.y3e{bottom:654.225000px;}
.y60{bottom:666.285000px;}
.y15{bottom:666.645000px;}
.y82{bottom:677.805000px;}
.y3d{bottom:678.345000px;}
.y5f{bottom:690.405000px;}
.y14{bottom:690.765000px;}
.y81{bottom:701.925000px;}
.y3c{bottom:702.465000px;}
.y5e{bottom:714.525000px;}
.y13{bottom:715.065000px;}
.y80{bottom:722.265000px;}
.y3b{bottom:726.765000px;}
.y5d{bottom:738.645000px;}
.y12{bottom:739.185000px;}
.y3a{bottom:750.885000px;}
.y5c{bottom:762.765000px;}
.y7f{bottom:762.945000px;}
.y11{bottom:763.305000px;}
.y39{bottom:775.005000px;}
.y5b{bottom:787.065000px;}
.y10{bottom:787.425000px;}
.y38{bottom:799.125000px;}
.y7e{bottom:803.805000px;}
.y5a{bottom:811.185000px;}
.yf{bottom:811.545000px;}
.y37{bottom:823.245000px;}
.y59{bottom:835.305000px;}
.ye{bottom:835.665000px;}
.y7d{bottom:844.530000px;}
.y36{bottom:847.410000px;}
.y58{bottom:859.470000px;}
.yd{bottom:860.010000px;}
.y35{bottom:871.710000px;}
.y57{bottom:883.590000px;}
.y7c{bottom:885.210000px;}
.y34{bottom:895.830000px;}
.yc{bottom:902.130000px;}
.y56{bottom:907.710000px;}
.y33{bottom:919.950000px;}
.y7b{bottom:925.890000px;}
.yb{bottom:926.250000px;}
.y55{bottom:932.010000px;}
.y32{bottom:944.070000px;}
.ya{bottom:950.370000px;}
.y54{bottom:956.130000px;}
.y7a{bottom:966.750000px;}
.y31{bottom:980.250000px;}
.y9{bottom:992.490000px;}
.y30{bottom:1004.370000px;}
.y78{bottom:1007.430000px;}
.y8{bottom:1016.610000px;}
.y2f{bottom:1028.490000px;}
.y2e{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y2d{bottom:1076.730000px;}
.y6{bottom:1083.030000px;}
.y2c{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h7{height:39.960000px;}
.h8{height:39.996000px;}
.h4{height:73.545469px;}
.h5{height:74.244727px;}
.h6{height:82.635820px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h9{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:156.090000px;}
.w4{width:222.510000px;}
.w5{width:337.035000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x1{left:85.319987px;}
.xe{left:88.020000px;}
.x5{left:89.099987px;}
.x7{left:104.795987px;}
.x12{left:112.355987px;}
.x3{left:129.275987px;}
.xb{left:139.355987px;}
.x6{left:153.569987px;}
.x4{left:193.169987px;}
.x9{left:214.409987px;}
.x10{left:244.830000px;}
.x8{left:266.249987px;}
.xa{left:297.749987px;}
.xc{left:430.814987px;}
.x2{left:436.034987px;}
.x11{left:468.075000px;}
.xd{left:715.109987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.336533pt;}
.ls17{letter-spacing:-0.328533pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.024960pt;}
.ls15{letter-spacing:-0.016640pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.184960pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.328533pt;}
.lsa{letter-spacing:0.336533pt;}
.ls1{letter-spacing:1.120000pt;}
.lsf{letter-spacing:7.520000pt;}
.ls3{letter-spacing:8.160000pt;}
.ls12{letter-spacing:8.800000pt;}
.ls13{letter-spacing:10.080000pt;}
.ls4{letter-spacing:13.280000pt;}
.lsd{letter-spacing:13.920000pt;}
.ls19{letter-spacing:18.863360pt;}
.ls1a{letter-spacing:20.320000pt;}
.ls2{letter-spacing:22.240000pt;}
.lsc{letter-spacing:35.040000pt;}
.ls7{letter-spacing:36.960000pt;}
.ls10{letter-spacing:81.098667pt;}
.ls18{letter-spacing:533.578667pt;}
.ws1{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.048533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.703360pt;}
.ws8{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.391467pt;}
.ws3{word-spacing:0.000000pt;}
._2c{margin-left:-8.452480pt;}
._31{margin-left:-7.502080pt;}
._1f{margin-left:-4.867200pt;}
._15{margin-left:-3.968640pt;}
._16{margin-left:-3.079680pt;}
._1b{margin-left:-1.952853pt;}
._0{margin-left:-1.006080pt;}
._1{width:1.203413pt;}
._6{width:2.171520pt;}
._1a{width:3.393707pt;}
._11{width:4.473813pt;}
._7{width:5.978667pt;}
._e{width:7.072213pt;}
._d{width:8.119680pt;}
._9{width:9.509760pt;}
._1e{width:10.632960pt;}
._10{width:12.387627pt;}
._f{width:13.328640pt;}
._3{width:14.409600pt;}
._4{width:15.467520pt;}
._5{width:17.230293pt;}
._a{width:19.781760pt;}
._8{width:20.891520pt;}
._c{width:22.101760pt;}
._b{width:23.013547pt;}
._2e{width:24.043947pt;}
._29{width:24.935040pt;}
._20{width:25.908480pt;}
._1c{width:27.780480pt;}
._1d{width:28.846507pt;}
._17{width:30.840960pt;}
._2{width:31.749120pt;}
._12{width:33.113387pt;}
._30{width:34.728533pt;}
._13{width:35.942400pt;}
._14{width:37.140480pt;}
._25{width:38.787840pt;}
._26{width:39.686400pt;}
._22{width:42.408320pt;}
._32{width:43.314347pt;}
._2a{width:44.478720pt;}
._27{width:47.324160pt;}
._28{width:48.405120pt;}
._2f{width:50.469120pt;}
._23{width:68.365440pt;}
._24{width:69.751893pt;}
._18{width:77.608320pt;}
._19{width:78.885547pt;}
._21{width:110.058667pt;}
._2d{width:130.390827pt;}
._2b{width:131.767467pt;}
._33{width:749.546667pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:18.080000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y77{bottom:98.432000pt;}
.y2b{bottom:99.072000pt;}
.y98{bottom:108.672000pt;}
.y76{bottom:119.872000pt;}
.y2a{bottom:120.512000pt;}
.y97{bottom:130.112000pt;}
.y53{bottom:130.752000pt;}
.y75{bottom:141.466667pt;}
.y29{bottom:141.946667pt;}
.y96{bottom:151.706667pt;}
.y52{bottom:152.186667pt;}
.y74{bottom:162.906667pt;}
.y28{bottom:163.386667pt;}
.y95{bottom:173.146667pt;}
.y51{bottom:173.626667pt;}
.y73{bottom:184.346667pt;}
.y94{bottom:194.586667pt;}
.y50{bottom:195.066667pt;}
.y27{bottom:195.546667pt;}
.y72{bottom:205.786667pt;}
.y93{bottom:216.026667pt;}
.y4f{bottom:216.666667pt;}
.y26{bottom:216.986667pt;}
.y71{bottom:227.226667pt;}
.y92{bottom:237.466667pt;}
.y4e{bottom:238.106667pt;}
.y25{bottom:238.426667pt;}
.y70{bottom:248.706667pt;}
.y91{bottom:258.946667pt;}
.y4d{bottom:259.586667pt;}
.y24{bottom:259.906667pt;}
.y6f{bottom:270.146667pt;}
.y90{bottom:280.386667pt;}
.y4c{bottom:281.026667pt;}
.y23{bottom:281.346667pt;}
.y6e{bottom:291.746667pt;}
.y8f{bottom:301.986667pt;}
.y4b{bottom:302.466667pt;}
.y22{bottom:302.946667pt;}
.y6d{bottom:313.186667pt;}
.y8e{bottom:323.426667pt;}
.y4a{bottom:323.906667pt;}
.y21{bottom:324.386667pt;}
.y6c{bottom:334.626667pt;}
.y49{bottom:345.346667pt;}
.y20{bottom:345.826667pt;}
.y6b{bottom:356.066667pt;}
.y8d{bottom:366.306667pt;}
.y48{bottom:366.946667pt;}
.y1f{bottom:367.266667pt;}
.y6a{bottom:377.506667pt;}
.y8c{bottom:387.746667pt;}
.y47{bottom:388.386667pt;}
.y1e{bottom:388.706667pt;}
.y69{bottom:398.946667pt;}
.y8b{bottom:409.186667pt;}
.y46{bottom:409.826667pt;}
.y1d{bottom:410.146667pt;}
.y68{bottom:420.546667pt;}
.y8a{bottom:430.786667pt;}
.y45{bottom:431.266667pt;}
.y1c{bottom:431.746667pt;}
.y67{bottom:441.986667pt;}
.y89{bottom:452.226667pt;}
.y44{bottom:452.706667pt;}
.y1b{bottom:453.186667pt;}
.y66{bottom:463.426667pt;}
.y88{bottom:473.666667pt;}
.y43{bottom:474.146667pt;}
.y1a{bottom:474.626667pt;}
.y65{bottom:484.866667pt;}
.y87{bottom:495.133333pt;}
.y42{bottom:495.773333pt;}
.y64{bottom:506.333333pt;}
.y19{bottom:506.813333pt;}
.y86{bottom:516.573333pt;}
.y41{bottom:517.213333pt;}
.y63{bottom:527.773333pt;}
.y18{bottom:528.253333pt;}
.y85{bottom:538.013333pt;}
.y40{bottom:538.653333pt;}
.y62{bottom:549.373333pt;}
.y17{bottom:549.693333pt;}
.y84{bottom:559.613333pt;}
.y3f{bottom:560.093333pt;}
.y61{bottom:570.813333pt;}
.y16{bottom:571.133333pt;}
.y83{bottom:581.053333pt;}
.y3e{bottom:581.533333pt;}
.y60{bottom:592.253333pt;}
.y15{bottom:592.573333pt;}
.y82{bottom:602.493333pt;}
.y3d{bottom:602.973333pt;}
.y5f{bottom:613.693333pt;}
.y14{bottom:614.013333pt;}
.y81{bottom:623.933333pt;}
.y3c{bottom:624.413333pt;}
.y5e{bottom:635.133333pt;}
.y13{bottom:635.613333pt;}
.y80{bottom:642.013333pt;}
.y3b{bottom:646.013333pt;}
.y5d{bottom:656.573333pt;}
.y12{bottom:657.053333pt;}
.y3a{bottom:667.453333pt;}
.y5c{bottom:678.013333pt;}
.y7f{bottom:678.173333pt;}
.y11{bottom:678.493333pt;}
.y39{bottom:688.893333pt;}
.y5b{bottom:699.613333pt;}
.y10{bottom:699.933333pt;}
.y38{bottom:710.333333pt;}
.y7e{bottom:714.493333pt;}
.y5a{bottom:721.053333pt;}
.yf{bottom:721.373333pt;}
.y37{bottom:731.773333pt;}
.y59{bottom:742.493333pt;}
.ye{bottom:742.813333pt;}
.y7d{bottom:750.693333pt;}
.y36{bottom:753.253333pt;}
.y58{bottom:763.973333pt;}
.yd{bottom:764.453333pt;}
.y35{bottom:774.853333pt;}
.y57{bottom:785.413333pt;}
.y7c{bottom:786.853333pt;}
.y34{bottom:796.293333pt;}
.yc{bottom:801.893333pt;}
.y56{bottom:806.853333pt;}
.y33{bottom:817.733333pt;}
.y7b{bottom:823.013333pt;}
.yb{bottom:823.333333pt;}
.y55{bottom:828.453333pt;}
.y32{bottom:839.173333pt;}
.ya{bottom:844.773333pt;}
.y54{bottom:849.893333pt;}
.y7a{bottom:859.333333pt;}
.y31{bottom:871.333333pt;}
.y9{bottom:882.213333pt;}
.y30{bottom:892.773333pt;}
.y78{bottom:895.493333pt;}
.y8{bottom:903.653333pt;}
.y2f{bottom:914.213333pt;}
.y2e{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y2d{bottom:957.093333pt;}
.y6{bottom:962.693333pt;}
.y2c{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h7{height:35.520000pt;}
.h8{height:35.552000pt;}
.h4{height:65.373750pt;}
.h5{height:65.995312pt;}
.h6{height:73.454062pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h9{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:138.746667pt;}
.w4{width:197.786667pt;}
.w5{width:299.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x1{left:75.839988pt;}
.xe{left:78.240000pt;}
.x5{left:79.199988pt;}
.x7{left:93.151988pt;}
.x12{left:99.871988pt;}
.x3{left:114.911988pt;}
.xb{left:123.871988pt;}
.x6{left:136.506655pt;}
.x4{left:171.706655pt;}
.x9{left:190.586655pt;}
.x10{left:217.626667pt;}
.x8{left:236.666655pt;}
.xa{left:264.666655pt;}
.xc{left:382.946655pt;}
.x2{left:387.586655pt;}
.x11{left:416.066667pt;}
.xd{left:635.653322pt;}
}




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