
    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_fc1d012643289e083dd0eaef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114746;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_e351cff6e3a3e5daaafef40c.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_ce79c34ef4fc93492d5426c0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_522e41df3f62876656219175.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056152;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_1a989e6bf31ae9db3727ae93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_b01d6ae038b5acd3953cbb05.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bad3e964e850fed015d8a4fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f776ba5810e17a91db1560d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d647ebaa336b259c1801bd61.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_18eb27e31bd7408be77ea65a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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:ffb;src:url('chunks/assets/font_e900f8848d877afad5c995f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.072754;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.378600px;}
.ls1{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.129600px;}
.ls9{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.252720px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:21.221280px;}
.ls5{letter-spacing:26.261280px;}
.lsf{letter-spacing:33.264000px;}
.lse{letter-spacing:33.984000px;}
.lsd{letter-spacing:45.701280px;}
.ls3{letter-spacing:127.980000px;}
.ls2{letter-spacing:191.484000px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.488000px;}
.ws1{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-2.073120px;}
._0{margin-left:-1.054080px;}
._1{width:1.244400px;}
._7{width:2.617680px;}
._6{width:4.297920px;}
._3{width:5.782080px;}
._2{width:6.816000px;}
._f{width:8.361600px;}
._e{width:9.899280px;}
._9{width:11.067840px;}
._8{width:12.286080px;}
._a{width:13.722720px;}
._1b{width:14.802000px;}
._5{width:16.344000px;}
._17{width:17.876640px;}
._1a{width:19.206720px;}
._4{width:21.384000px;}
._1d{width:22.576320px;}
._10{width:24.429600px;}
._11{width:25.904880px;}
._1c{width:28.978560px;}
._19{width:30.790800px;}
._12{width:32.600880px;}
._15{width:35.802000px;}
._16{width:37.026720px;}
._b{width:41.520000px;}
._c{width:43.804800px;}
._d{width:45.321120px;}
._13{width:69.666480px;}
._14{width:70.677360px;}
._1e{width:86.935680px;}
._18{width:127.416000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:35.856000px;}
.y2{bottom:55.476000px;}
.y87{bottom:90.936000px;}
.y7b{bottom:111.636000px;}
.y30{bottom:111.996000px;}
.y57{bottom:114.696000px;}
.y86{bottom:132.696000px;}
.y7a{bottom:139.356000px;}
.y2f{bottom:139.716000px;}
.y56{bottom:142.416000px;}
.y85{bottom:153.390000px;}
.y79{bottom:167.070000px;}
.y2e{bottom:167.430000px;}
.y55{bottom:170.130000px;}
.y84{bottom:174.090000px;}
.y83{bottom:194.790000px;}
.y78{bottom:194.970000px;}
.y2d{bottom:195.150000px;}
.y54{bottom:197.850000px;}
.y82{bottom:215.490000px;}
.y77{bottom:222.690000px;}
.y2c{bottom:223.050000px;}
.y53{bottom:225.750000px;}
.y81{bottom:236.190000px;}
.y76{bottom:250.410000px;}
.y2b{bottom:250.770000px;}
.y52{bottom:253.470000px;}
.y80{bottom:256.890000px;}
.y7f{bottom:277.590000px;}
.y75{bottom:278.130000px;}
.y2a{bottom:278.490000px;}
.y51{bottom:281.190000px;}
.y7e{bottom:298.335000px;}
.y74{bottom:306.075000px;}
.y29{bottom:306.435000px;}
.y50{bottom:308.955000px;}
.y7d{bottom:319.035000px;}
.y73{bottom:333.795000px;}
.y28{bottom:334.155000px;}
.y4f{bottom:336.855000px;}
.y7c{bottom:339.735000px;}
.y72{bottom:361.515000px;}
.y27{bottom:361.875000px;}
.y4e{bottom:364.575000px;}
.y71{bottom:389.415000px;}
.y26{bottom:389.595000px;}
.y4d{bottom:392.295000px;}
.y70{bottom:417.135000px;}
.y25{bottom:417.495000px;}
.y4c{bottom:420.195000px;}
.y6f{bottom:444.855000px;}
.y24{bottom:445.215000px;}
.y4b{bottom:447.915000px;}
.y6e{bottom:472.575000px;}
.y23{bottom:472.935000px;}
.y4a{bottom:475.635000px;}
.y6d{bottom:500.475000px;}
.y22{bottom:500.835000px;}
.y49{bottom:503.355000px;}
.y6c{bottom:528.195000px;}
.y21{bottom:528.555000px;}
.y48{bottom:531.255000px;}
.y20{bottom:552.135000px;}
.y6b{bottom:555.915000px;}
.y47{bottom:558.975000px;}
.y1f{bottom:572.865000px;}
.y6a{bottom:583.845000px;}
.y46{bottom:586.725000px;}
.y1e{bottom:593.565000px;}
.y69{bottom:611.565000px;}
.y1d{bottom:614.265000px;}
.y45{bottom:614.625000px;}
.y1c{bottom:634.965000px;}
.y68{bottom:639.285000px;}
.y44{bottom:642.345000px;}
.y1b{bottom:655.665000px;}
.y67{bottom:667.005000px;}
.y43{bottom:670.065000px;}
.y1a{bottom:676.365000px;}
.y66{bottom:694.905000px;}
.y19{bottom:697.065000px;}
.y42{bottom:697.785000px;}
.y18{bottom:717.765000px;}
.y65{bottom:722.625000px;}
.y41{bottom:725.685000px;}
.y17{bottom:738.465000px;}
.y64{bottom:750.345000px;}
.y40{bottom:753.405000px;}
.y16{bottom:759.165000px;}
.y63{bottom:778.065000px;}
.y15{bottom:779.865000px;}
.y3f{bottom:781.125000px;}
.y14{bottom:800.565000px;}
.y62{bottom:805.965000px;}
.y3e{bottom:808.845000px;}
.y13{bottom:821.265000px;}
.y61{bottom:833.685000px;}
.y3d{bottom:836.745000px;}
.y12{bottom:841.965000px;}
.y60{bottom:861.450000px;}
.y11{bottom:863.610000px;}
.y3c{bottom:864.510000px;}
.y10{bottom:884.670000px;}
.y5f{bottom:889.350000px;}
.y3b{bottom:892.230000px;}
.yf{bottom:905.370000px;}
.y5e{bottom:917.070000px;}
.y3a{bottom:920.130000px;}
.ye{bottom:926.070000px;}
.y5d{bottom:944.790000px;}
.yd{bottom:946.770000px;}
.y39{bottom:947.850000px;}
.yc{bottom:967.470000px;}
.y5c{bottom:972.510000px;}
.y38{bottom:975.570000px;}
.yb{bottom:988.170000px;}
.y5b{bottom:1000.410000px;}
.y37{bottom:1003.290000px;}
.ya{bottom:1008.870000px;}
.y5a{bottom:1028.130000px;}
.y9{bottom:1030.110000px;}
.y36{bottom:1031.190000px;}
.y8{bottom:1054.230000px;}
.y59{bottom:1055.850000px;}
.y35{bottom:1058.910000px;}
.y7{bottom:1078.350000px;}
.y58{bottom:1085.010000px;}
.y34{bottom:1086.630000px;}
.y6{bottom:1102.470000px;}
.y33{bottom:1114.530000px;}
.y5{bottom:1140.300000px;}
.y32{bottom:1142.280000px;}
.y31{bottom:1170.000000px;}
.y4{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h8{height:58.819922px;}
.h6{height:60.503906px;}
.h2{height:65.884219px;}
.h5{height:70.628906px;}
.hc{height:70.664062px;}
.hd{height:71.613281px;}
.h3{height:72.562500px;}
.hb{height:74.004654px;}
.h7{height:82.676953px;}
.h4{height:84.898125px;}
.h9{height:86.585445px;}
.ha{height:87.695156px;}
.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:42.479987px;}
.x10{left:57.959987px;}
.x4{left:84.959987px;}
.x5{left:105.155987px;}
.xe{left:111.995987px;}
.xf{left:138.995987px;}
.x6{left:221.789987px;}
.xb{left:251.849987px;}
.x8{left:257.609987px;}
.xc{left:302.474987px;}
.x11{left:313.454987px;}
.x9{left:327.314987px;}
.x7{left:328.934987px;}
.x2{left:369.254987px;}
.xa{left:383.474987px;}
.x12{left:404.534987px;}
.xd{left:443.774987px;}
.x3{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.336533pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.115200pt;}
.ls9{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.224640pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:18.863360pt;}
.ls5{letter-spacing:23.343360pt;}
.lsf{letter-spacing:29.568000pt;}
.lse{letter-spacing:30.208000pt;}
.lsd{letter-spacing:40.623360pt;}
.ls3{letter-spacing:113.760000pt;}
.ls2{letter-spacing:170.208000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.656000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-1.842773pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.106133pt;}
._7{width:2.326827pt;}
._6{width:3.820373pt;}
._3{width:5.139627pt;}
._2{width:6.058667pt;}
._f{width:7.432533pt;}
._e{width:8.799360pt;}
._9{width:9.838080pt;}
._8{width:10.920960pt;}
._a{width:12.197973pt;}
._1b{width:13.157333pt;}
._5{width:14.528000pt;}
._17{width:15.890347pt;}
._1a{width:17.072640pt;}
._4{width:19.008000pt;}
._1d{width:20.067840pt;}
._10{width:21.715200pt;}
._11{width:23.026560pt;}
._1c{width:25.758720pt;}
._19{width:27.369600pt;}
._12{width:28.978560pt;}
._15{width:31.824000pt;}
._16{width:32.912640pt;}
._b{width:36.906667pt;}
._c{width:38.937600pt;}
._d{width:40.285440pt;}
._13{width:61.925760pt;}
._14{width:62.824320pt;}
._1e{width:77.276160pt;}
._18{width:113.258667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:31.872000pt;}
.y2{bottom:49.312000pt;}
.y87{bottom:80.832000pt;}
.y7b{bottom:99.232000pt;}
.y30{bottom:99.552000pt;}
.y57{bottom:101.952000pt;}
.y86{bottom:117.952000pt;}
.y7a{bottom:123.872000pt;}
.y2f{bottom:124.192000pt;}
.y56{bottom:126.592000pt;}
.y85{bottom:136.346667pt;}
.y79{bottom:148.506667pt;}
.y2e{bottom:148.826667pt;}
.y55{bottom:151.226667pt;}
.y84{bottom:154.746667pt;}
.y83{bottom:173.146667pt;}
.y78{bottom:173.306667pt;}
.y2d{bottom:173.466667pt;}
.y54{bottom:175.866667pt;}
.y82{bottom:191.546667pt;}
.y77{bottom:197.946667pt;}
.y2c{bottom:198.266667pt;}
.y53{bottom:200.666667pt;}
.y81{bottom:209.946667pt;}
.y76{bottom:222.586667pt;}
.y2b{bottom:222.906667pt;}
.y52{bottom:225.306667pt;}
.y80{bottom:228.346667pt;}
.y7f{bottom:246.746667pt;}
.y75{bottom:247.226667pt;}
.y2a{bottom:247.546667pt;}
.y51{bottom:249.946667pt;}
.y7e{bottom:265.186667pt;}
.y74{bottom:272.066667pt;}
.y29{bottom:272.386667pt;}
.y50{bottom:274.626667pt;}
.y7d{bottom:283.586667pt;}
.y73{bottom:296.706667pt;}
.y28{bottom:297.026667pt;}
.y4f{bottom:299.426667pt;}
.y7c{bottom:301.986667pt;}
.y72{bottom:321.346667pt;}
.y27{bottom:321.666667pt;}
.y4e{bottom:324.066667pt;}
.y71{bottom:346.146667pt;}
.y26{bottom:346.306667pt;}
.y4d{bottom:348.706667pt;}
.y70{bottom:370.786667pt;}
.y25{bottom:371.106667pt;}
.y4c{bottom:373.506667pt;}
.y6f{bottom:395.426667pt;}
.y24{bottom:395.746667pt;}
.y4b{bottom:398.146667pt;}
.y6e{bottom:420.066667pt;}
.y23{bottom:420.386667pt;}
.y4a{bottom:422.786667pt;}
.y6d{bottom:444.866667pt;}
.y22{bottom:445.186667pt;}
.y49{bottom:447.426667pt;}
.y6c{bottom:469.506667pt;}
.y21{bottom:469.826667pt;}
.y48{bottom:472.226667pt;}
.y20{bottom:490.786667pt;}
.y6b{bottom:494.146667pt;}
.y47{bottom:496.866667pt;}
.y1f{bottom:509.213333pt;}
.y6a{bottom:518.973333pt;}
.y46{bottom:521.533333pt;}
.y1e{bottom:527.613333pt;}
.y69{bottom:543.613333pt;}
.y1d{bottom:546.013333pt;}
.y45{bottom:546.333333pt;}
.y1c{bottom:564.413333pt;}
.y68{bottom:568.253333pt;}
.y44{bottom:570.973333pt;}
.y1b{bottom:582.813333pt;}
.y67{bottom:592.893333pt;}
.y43{bottom:595.613333pt;}
.y1a{bottom:601.213333pt;}
.y66{bottom:617.693333pt;}
.y19{bottom:619.613333pt;}
.y42{bottom:620.253333pt;}
.y18{bottom:638.013333pt;}
.y65{bottom:642.333333pt;}
.y41{bottom:645.053333pt;}
.y17{bottom:656.413333pt;}
.y64{bottom:666.973333pt;}
.y40{bottom:669.693333pt;}
.y16{bottom:674.813333pt;}
.y63{bottom:691.613333pt;}
.y15{bottom:693.213333pt;}
.y3f{bottom:694.333333pt;}
.y14{bottom:711.613333pt;}
.y62{bottom:716.413333pt;}
.y3e{bottom:718.973333pt;}
.y13{bottom:730.013333pt;}
.y61{bottom:741.053333pt;}
.y3d{bottom:743.773333pt;}
.y12{bottom:748.413333pt;}
.y60{bottom:765.733333pt;}
.y11{bottom:767.653333pt;}
.y3c{bottom:768.453333pt;}
.y10{bottom:786.373333pt;}
.y5f{bottom:790.533333pt;}
.y3b{bottom:793.093333pt;}
.yf{bottom:804.773333pt;}
.y5e{bottom:815.173333pt;}
.y3a{bottom:817.893333pt;}
.ye{bottom:823.173333pt;}
.y5d{bottom:839.813333pt;}
.yd{bottom:841.573333pt;}
.y39{bottom:842.533333pt;}
.yc{bottom:859.973333pt;}
.y5c{bottom:864.453333pt;}
.y38{bottom:867.173333pt;}
.yb{bottom:878.373333pt;}
.y5b{bottom:889.253333pt;}
.y37{bottom:891.813333pt;}
.ya{bottom:896.773333pt;}
.y5a{bottom:913.893333pt;}
.y9{bottom:915.653333pt;}
.y36{bottom:916.613333pt;}
.y8{bottom:937.093333pt;}
.y59{bottom:938.533333pt;}
.y35{bottom:941.253333pt;}
.y7{bottom:958.533333pt;}
.y58{bottom:964.453333pt;}
.y34{bottom:965.893333pt;}
.y6{bottom:979.973333pt;}
.y33{bottom:990.693333pt;}
.y5{bottom:1013.600000pt;}
.y32{bottom:1015.360000pt;}
.y31{bottom:1040.000000pt;}
.y4{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:52.284375pt;}
.h6{height:53.781250pt;}
.h2{height:58.563750pt;}
.h5{height:62.781250pt;}
.hc{height:62.812500pt;}
.hd{height:63.656250pt;}
.h3{height:64.500000pt;}
.hb{height:65.781915pt;}
.h7{height:73.490625pt;}
.h4{height:75.465000pt;}
.h9{height:76.964840pt;}
.ha{height:77.951250pt;}
.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:37.759988pt;}
.x10{left:51.519988pt;}
.x4{left:75.519988pt;}
.x5{left:93.471988pt;}
.xe{left:99.551988pt;}
.xf{left:123.551988pt;}
.x6{left:197.146655pt;}
.xb{left:223.866655pt;}
.x8{left:228.986655pt;}
.xc{left:268.866655pt;}
.x11{left:278.626655pt;}
.x9{left:290.946655pt;}
.x7{left:292.386655pt;}
.x2{left:328.226655pt;}
.xa{left:340.866655pt;}
.x12{left:359.586655pt;}
.xd{left:394.466655pt;}
.x3{left:396.866655pt;}
}




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