
    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_0e4a42e7488979514d9cc3cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_ed7dc1d9c5d4933af55eec81.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_556c345f11ed443e0b49a8a8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a19a0f711cb77cb13ae27cf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fc14807f52115f990362e48c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21df6e40b2d7470fd578e77d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb38d27c0c38559f4cd48b2c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a529cbff6f01392a1d0854b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.lsb{letter-spacing:-3.378000px;}
.lsd{letter-spacing:-2.250000px;}
.ls8{letter-spacing:-0.900000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.675000px;}
.lsa{letter-spacing:1.089000px;}
.ls9{letter-spacing:1.125000px;}
.ls5{letter-spacing:1.128000px;}
.ls1{letter-spacing:1.516500px;}
.lsc{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.164500px;}
.lsf{letter-spacing:2.190000px;}
.ls0{letter-spacing:2.250000px;}
.lse{letter-spacing:2.430000px;}
.ls3{letter-spacing:7.875000px;}
.ls4{letter-spacing:32.745000px;}
.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;}
}
.ws7{word-spacing:-19.125000px;}
.ws4{word-spacing:-19.035000px;}
.ws2{word-spacing:-17.550000px;}
.ws1{word-spacing:-16.875000px;}
.ws0{word-spacing:-14.625000px;}
.ws5{word-spacing:-12.375000px;}
.ws6{word-spacing:-10.125000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-8.563500px;}
._c{margin-left:-7.375500px;}
._9{margin-left:-5.695500px;}
._5{margin-left:-4.122000px;}
._0{margin-left:-2.448000px;}
._3{margin-left:-1.008000px;}
._2{width:1.368000px;}
._4{width:2.880000px;}
._1{width:4.464000px;}
._a{width:6.331500px;}
._7{width:8.316000px;}
._d{width:10.036500px;}
._18{width:11.118000px;}
._8{width:12.330000px;}
._f{width:14.233500px;}
._11{width:15.421500px;}
._b{width:17.284500px;}
._15{width:18.561000px;}
._10{width:20.020500px;}
._17{width:22.186500px;}
._12{width:23.940000px;}
._19{width:25.819500px;}
._14{width:28.224000px;}
._13{width:32.755500px;}
._16{width:36.706500px;}
._6{width:970.287000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:31.500000px;}
.fs5{font-size:40.500000px;}
.fs1{font-size:49.500000px;}
.fs2{font-size:58.500000px;}
.fs4{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:76.500000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.750000px;}
.y3d{bottom:55.200000px;}
.y5{bottom:57.450000px;}
.y4{bottom:76.575000px;}
.y3c{bottom:110.362500px;}
.y3b{bottom:115.987500px;}
.y74{bottom:123.900000px;}
.y3a{bottom:125.025000px;}
.y73{bottom:129.525000px;}
.y72{bottom:137.400000px;}
.y78{bottom:138.525000px;}
.y71{bottom:143.025000px;}
.y70{bottom:150.900000px;}
.y8a{bottom:153.150000px;}
.y6f{bottom:156.525000px;}
.y6e{bottom:165.555000px;}
.y6d{bottom:171.180000px;}
.y77{bottom:179.055000px;}
.y6c{bottom:180.180000px;}
.y83{bottom:184.680000px;}
.y38{bottom:185.805000px;}
.y39{bottom:191.430000px;}
.y82{bottom:192.570000px;}
.y85{bottom:193.695000px;}
.y76{bottom:200.445000px;}
.y81{bottom:207.195000px;}
.y37{bottom:208.320000px;}
.y80{bottom:220.725000px;}
.y6a{bottom:221.850000px;}
.y7f{bottom:226.350000px;}
.y6b{bottom:227.475000px;}
.y36{bottom:229.725000px;}
.y7e{bottom:235.350000px;}
.y69{bottom:244.350000px;}
.y89{bottom:249.975000px;}
.y35{bottom:251.100000px;}
.y68{bottom:265.755000px;}
.y34{bottom:273.630000px;}
.y67{bottom:288.270000px;}
.y33{bottom:295.050000px;}
.y66{bottom:309.675000px;}
.y32{bottom:317.550000px;}
.y65{bottom:331.050000px;}
.y7d{bottom:336.675000px;}
.y31{bottom:338.970000px;}
.y64{bottom:353.580000px;}
.y30{bottom:360.330000px;}
.y63{bottom:374.955000px;}
.y2f{bottom:382.875000px;}
.y62{bottom:397.500000px;}
.y88{bottom:403.125000px;}
.y2e{bottom:404.250000px;}
.y61{bottom:418.875000px;}
.y7c{bottom:424.530000px;}
.y2d{bottom:426.795000px;}
.y60{bottom:440.295000px;}
.y2c{bottom:444.780000px;}
.y2b{bottom:458.280000px;}
.y5f{bottom:462.795000px;}
.y2a{bottom:475.200000px;}
.y5e{bottom:484.200000px;}
.y29{bottom:493.200000px;}
.y5d{bottom:506.700000px;}
.y28{bottom:510.075000px;}
.y27{bottom:526.995000px;}
.y5b{bottom:528.105000px;}
.y5c{bottom:533.745000px;}
.y26{bottom:544.980000px;}
.y5a{bottom:549.495000px;}
.y25{bottom:561.900000px;}
.y59{bottom:572.025000px;}
.y24{bottom:578.775000px;}
.y58{bottom:593.400000px;}
.y23{bottom:596.820000px;}
.y7b{bottom:599.070000px;}
.y22{bottom:613.695000px;}
.y57{bottom:615.945000px;}
.y21{bottom:630.570000px;}
.y56{bottom:637.320000px;}
.y87{bottom:642.975000px;}
.y20{bottom:648.600000px;}
.y55{bottom:658.725000px;}
.y75{bottom:664.350000px;}
.y1f{bottom:665.475000px;}
.y54{bottom:681.225000px;}
.y1e{bottom:682.350000px;}
.y1d{bottom:700.380000px;}
.y53{bottom:702.645000px;}
.y1c{bottom:717.255000px;}
.y51{bottom:724.005000px;}
.y52{bottom:729.675000px;}
.y1b{bottom:734.175000px;}
.y50{bottom:746.550000px;}
.y1a{bottom:752.175000px;}
.y4f{bottom:767.925000px;}
.y19{bottom:769.080000px;}
.y8b{bottom:773.580000px;}
.y18{bottom:785.955000px;}
.y4e{bottom:790.455000px;}
.y17{bottom:803.955000px;}
.y4d{bottom:811.830000px;}
.y7a{bottom:817.500000px;}
.y16{bottom:820.875000px;}
.y4c{bottom:833.250000px;}
.y15{bottom:837.750000px;}
.y14{bottom:855.795000px;}
.y86{bottom:861.420000px;}
.y13{bottom:872.670000px;}
.y4b{bottom:877.170000px;}
.y12{bottom:892.920000px;}
.y4a{bottom:899.700000px;}
.y11{bottom:913.200000px;}
.y48{bottom:921.075000px;}
.y49{bottom:926.700000px;}
.y10{bottom:933.450000px;}
.y47{bottom:942.495000px;}
.yf{bottom:953.745000px;}
.y46{bottom:964.995000px;}
.ye{bottom:976.245000px;}
.y45{bottom:986.400000px;}
.yd{bottom:998.775000px;}
.y44{bottom:1008.900000px;}
.yc{bottom:1024.650000px;}
.y43{bottom:1030.320000px;}
.yb{bottom:1050.570000px;}
.y42{bottom:1051.695000px;}
.ya{bottom:1073.100000px;}
.y41{bottom:1074.225000px;}
.y79{bottom:1079.850000px;}
.y9{bottom:1089.975000px;}
.y40{bottom:1095.600000px;}
.y84{bottom:1101.225000px;}
.y8{bottom:1106.850000px;}
.y3f{bottom:1118.130000px;}
.y7{bottom:1124.880000px;}
.y3e{bottom:1139.505000px;}
.y6{bottom:1141.755000px;}
.y3{bottom:1165.425000px;}
.y1{bottom:1182.300000px;}
.hf{height:21.994629px;}
.h2{height:27.037500px;}
.he{height:28.278809px;}
.h10{height:34.562988px;}
.hc{height:34.925537px;}
.h5{height:40.798828px;}
.ha{height:40.847168px;}
.h6{height:41.275635px;}
.hd{height:47.131348px;}
.h8{height:47.625732px;}
.hb{height:48.216797px;}
.h4{height:50.273438px;}
.h3{height:50.414062px;}
.h9{height:51.075439px;}
.h7{height:53.975830px;}
.h11{height:55.634766px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:52.912500px;}
.w2{width:617.280000px;}
.w4{width:893.249973px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x1{left:108.150000px;}
.xf{left:112.649987px;}
.x23{left:117.149987px;}
.x5{left:137.437487px;}
.x35{left:139.687487px;}
.x3{left:161.070000px;}
.xc{left:162.179987px;}
.x2f{left:184.724973px;}
.x2d{left:185.849973px;}
.x30{left:195.974987px;}
.x2e{left:197.144987px;}
.x31{left:210.644973px;}
.x32{left:221.894987px;}
.x18{left:229.799973px;}
.x19{left:235.424987px;}
.x9{left:259.094987px;}
.x24{left:280.454973px;}
.x25{left:291.749987px;}
.x7{left:318.749987px;}
.x8{left:323.279987px;}
.xe{left:324.404987px;}
.x6{left:339.044987px;}
.x2b{left:390.869973px;}
.x21{left:398.744973px;}
.x2c{left:402.119987px;}
.x26{left:408.869973px;}
.x22{left:409.979987px;}
.xa{left:420.149987px;}
.xb{left:421.274987px;}
.xd{left:425.774987px;}
.x4{left:447.194987px;}
.x14{left:459.569973px;}
.x15{left:465.194987px;}
.x10{left:537.299973px;}
.x11{left:542.924987px;}
.x33{left:548.549973px;}
.x34{left:559.799987px;}
.x1e{left:603.749973px;}
.x1f{left:609.374987px;}
.x20{left:665.699973px;}
.x1a{left:667.949973px;}
.x16{left:671.324973px;}
.x1b{left:673.574987px;}
.x17{left:676.949987px;}
.x29{left:679.199973px;}
.x2a{left:690.479987px;}
.x12{left:693.854973px;}
.x13{left:699.494987px;}
.x27{left:770.444973px;}
.x1c{left:777.224973px;}
.x28{left:781.724987px;}
.x1d{left:782.849987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.lsb{letter-spacing:-3.002667pt;}
.lsd{letter-spacing:-2.000000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.600000pt;}
.lsa{letter-spacing:0.968000pt;}
.ls9{letter-spacing:1.000000pt;}
.ls5{letter-spacing:1.002667pt;}
.ls1{letter-spacing:1.348000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls2{letter-spacing:1.924000pt;}
.lsf{letter-spacing:1.946667pt;}
.ls0{letter-spacing:2.000000pt;}
.lse{letter-spacing:2.160000pt;}
.ls3{letter-spacing:7.000000pt;}
.ls4{letter-spacing:29.106667pt;}
.ws7{word-spacing:-17.000000pt;}
.ws4{word-spacing:-16.920000pt;}
.ws2{word-spacing:-15.600000pt;}
.ws1{word-spacing:-15.000000pt;}
.ws0{word-spacing:-13.000000pt;}
.ws5{word-spacing:-11.000000pt;}
.ws6{word-spacing:-9.000000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-7.612000pt;}
._c{margin-left:-6.556000pt;}
._9{margin-left:-5.062667pt;}
._5{margin-left:-3.664000pt;}
._0{margin-left:-2.176000pt;}
._3{margin-left:-0.896000pt;}
._2{width:1.216000pt;}
._4{width:2.560000pt;}
._1{width:3.968000pt;}
._a{width:5.628000pt;}
._7{width:7.392000pt;}
._d{width:8.921333pt;}
._18{width:9.882667pt;}
._8{width:10.960000pt;}
._f{width:12.652000pt;}
._11{width:13.708000pt;}
._b{width:15.364000pt;}
._15{width:16.498667pt;}
._10{width:17.796000pt;}
._17{width:19.721333pt;}
._12{width:21.280000pt;}
._19{width:22.950667pt;}
._14{width:25.088000pt;}
._13{width:29.116000pt;}
._16{width:32.628000pt;}
._6{width:862.477333pt;}
.fs6{font-size:28.000000pt;}
.fs5{font-size:36.000000pt;}
.fs1{font-size:44.000000pt;}
.fs2{font-size:52.000000pt;}
.fs4{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:68.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.000000pt;}
.y3d{bottom:49.066667pt;}
.y5{bottom:51.066667pt;}
.y4{bottom:68.066667pt;}
.y3c{bottom:98.100000pt;}
.y3b{bottom:103.100000pt;}
.y74{bottom:110.133333pt;}
.y3a{bottom:111.133333pt;}
.y73{bottom:115.133333pt;}
.y72{bottom:122.133333pt;}
.y78{bottom:123.133333pt;}
.y71{bottom:127.133333pt;}
.y70{bottom:134.133333pt;}
.y8a{bottom:136.133333pt;}
.y6f{bottom:139.133333pt;}
.y6e{bottom:147.160000pt;}
.y6d{bottom:152.160000pt;}
.y77{bottom:159.160000pt;}
.y6c{bottom:160.160000pt;}
.y83{bottom:164.160000pt;}
.y38{bottom:165.160000pt;}
.y39{bottom:170.160000pt;}
.y82{bottom:171.173333pt;}
.y85{bottom:172.173333pt;}
.y76{bottom:178.173333pt;}
.y81{bottom:184.173333pt;}
.y37{bottom:185.173333pt;}
.y80{bottom:196.200000pt;}
.y6a{bottom:197.200000pt;}
.y7f{bottom:201.200000pt;}
.y6b{bottom:202.200000pt;}
.y36{bottom:204.200000pt;}
.y7e{bottom:209.200000pt;}
.y69{bottom:217.200000pt;}
.y89{bottom:222.200000pt;}
.y35{bottom:223.200000pt;}
.y68{bottom:236.226667pt;}
.y34{bottom:243.226667pt;}
.y67{bottom:256.240000pt;}
.y33{bottom:262.266667pt;}
.y66{bottom:275.266667pt;}
.y32{bottom:282.266667pt;}
.y65{bottom:294.266667pt;}
.y7d{bottom:299.266667pt;}
.y31{bottom:301.306667pt;}
.y64{bottom:314.293333pt;}
.y30{bottom:320.293333pt;}
.y63{bottom:333.293333pt;}
.y2f{bottom:340.333333pt;}
.y62{bottom:353.333333pt;}
.y88{bottom:358.333333pt;}
.y2e{bottom:359.333333pt;}
.y61{bottom:372.333333pt;}
.y7c{bottom:377.360000pt;}
.y2d{bottom:379.373333pt;}
.y60{bottom:391.373333pt;}
.y2c{bottom:395.360000pt;}
.y2b{bottom:407.360000pt;}
.y5f{bottom:411.373333pt;}
.y2a{bottom:422.400000pt;}
.y5e{bottom:430.400000pt;}
.y29{bottom:438.400000pt;}
.y5d{bottom:450.400000pt;}
.y28{bottom:453.400000pt;}
.y27{bottom:468.440000pt;}
.y5b{bottom:469.426667pt;}
.y5c{bottom:474.440000pt;}
.y26{bottom:484.426667pt;}
.y5a{bottom:488.440000pt;}
.y25{bottom:499.466667pt;}
.y59{bottom:508.466667pt;}
.y24{bottom:514.466667pt;}
.y58{bottom:527.466667pt;}
.y23{bottom:530.506667pt;}
.y7b{bottom:532.506667pt;}
.y22{bottom:545.506667pt;}
.y57{bottom:547.506667pt;}
.y21{bottom:560.506667pt;}
.y56{bottom:566.506667pt;}
.y87{bottom:571.533333pt;}
.y20{bottom:576.533333pt;}
.y55{bottom:585.533333pt;}
.y75{bottom:590.533333pt;}
.y1f{bottom:591.533333pt;}
.y54{bottom:605.533333pt;}
.y1e{bottom:606.533333pt;}
.y1d{bottom:622.560000pt;}
.y53{bottom:624.573333pt;}
.y1c{bottom:637.560000pt;}
.y51{bottom:643.560000pt;}
.y52{bottom:648.600000pt;}
.y1b{bottom:652.600000pt;}
.y50{bottom:663.600000pt;}
.y1a{bottom:668.600000pt;}
.y4f{bottom:682.600000pt;}
.y19{bottom:683.626667pt;}
.y8b{bottom:687.626667pt;}
.y18{bottom:698.626667pt;}
.y4e{bottom:702.626667pt;}
.y17{bottom:714.626667pt;}
.y4d{bottom:721.626667pt;}
.y7a{bottom:726.666667pt;}
.y16{bottom:729.666667pt;}
.y4c{bottom:740.666667pt;}
.y15{bottom:744.666667pt;}
.y14{bottom:760.706667pt;}
.y86{bottom:765.706667pt;}
.y13{bottom:775.706667pt;}
.y4b{bottom:779.706667pt;}
.y12{bottom:793.706667pt;}
.y4a{bottom:799.733333pt;}
.y11{bottom:811.733333pt;}
.y48{bottom:818.733333pt;}
.y49{bottom:823.733333pt;}
.y10{bottom:829.733333pt;}
.y47{bottom:837.773333pt;}
.yf{bottom:847.773333pt;}
.y46{bottom:857.773333pt;}
.ye{bottom:867.773333pt;}
.y45{bottom:876.800000pt;}
.yd{bottom:887.800000pt;}
.y44{bottom:896.800000pt;}
.yc{bottom:910.800000pt;}
.y43{bottom:915.840000pt;}
.yb{bottom:933.840000pt;}
.y42{bottom:934.840000pt;}
.ya{bottom:953.866667pt;}
.y41{bottom:954.866667pt;}
.y79{bottom:959.866667pt;}
.y9{bottom:968.866667pt;}
.y40{bottom:973.866667pt;}
.y84{bottom:978.866667pt;}
.y8{bottom:983.866667pt;}
.y3f{bottom:993.893333pt;}
.y7{bottom:999.893333pt;}
.y3e{bottom:1012.893333pt;}
.y6{bottom:1014.893333pt;}
.y3{bottom:1035.933333pt;}
.y1{bottom:1050.933333pt;}
.hf{height:19.550781pt;}
.h2{height:24.033333pt;}
.he{height:25.136719pt;}
.h10{height:30.722656pt;}
.hc{height:31.044922pt;}
.h5{height:36.265625pt;}
.ha{height:36.308594pt;}
.h6{height:36.689453pt;}
.hd{height:41.894531pt;}
.h8{height:42.333984pt;}
.hb{height:42.859375pt;}
.h4{height:44.687500pt;}
.h3{height:44.812500pt;}
.h9{height:45.400391pt;}
.h7{height:47.978516pt;}
.h11{height:49.453125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:47.033333pt;}
.w2{width:548.693333pt;}
.w4{width:793.999976pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x1{left:96.133333pt;}
.xf{left:100.133322pt;}
.x23{left:104.133322pt;}
.x5{left:122.166655pt;}
.x35{left:124.166655pt;}
.x3{left:143.173333pt;}
.xc{left:144.159988pt;}
.x2f{left:164.199976pt;}
.x2d{left:165.199976pt;}
.x30{left:174.199988pt;}
.x2e{left:175.239988pt;}
.x31{left:187.239976pt;}
.x32{left:197.239988pt;}
.x18{left:204.266643pt;}
.x19{left:209.266655pt;}
.x9{left:230.306655pt;}
.x24{left:249.293310pt;}
.x25{left:259.333322pt;}
.x7{left:283.333322pt;}
.x8{left:287.359988pt;}
.xe{left:288.359988pt;}
.x6{left:301.373322pt;}
.x2b{left:347.439976pt;}
.x21{left:354.439976pt;}
.x2c{left:357.439988pt;}
.x26{left:363.439976pt;}
.x22{left:364.426655pt;}
.xa{left:373.466655pt;}
.xb{left:374.466655pt;}
.xd{left:378.466655pt;}
.x4{left:397.506655pt;}
.x14{left:408.506643pt;}
.x15{left:413.506655pt;}
.x10{left:477.599976pt;}
.x11{left:482.599988pt;}
.x33{left:487.599976pt;}
.x34{left:497.599988pt;}
.x1e{left:536.666643pt;}
.x1f{left:541.666655pt;}
.x20{left:591.733310pt;}
.x1a{left:593.733310pt;}
.x16{left:596.733310pt;}
.x1b{left:598.733322pt;}
.x17{left:601.733322pt;}
.x29{left:603.733310pt;}
.x2a{left:613.759988pt;}
.x12{left:616.759976pt;}
.x13{left:621.773322pt;}
.x27{left:684.839976pt;}
.x1c{left:690.866643pt;}
.x28{left:694.866655pt;}
.x1d{left:695.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; }
  