
    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_58fe81f1b483f2580cb81dff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_23c57e043612de1318cc8d93.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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_76810b755921f38c61b8931a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_95cf0eeaadcd7100484b4154.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_4d948af9e18b0529d721c020.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_90d6aab6f72655855b224ebe.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_93a39c580d1d0bacafb2ff08.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsb{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.058320px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.720000px;}
.ls0{letter-spacing:57.029760px;}
.ls1{letter-spacing:201.209760px;}
.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;}
}
.ws6{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.437760px;}
.ws2{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._13{margin-left:-5.256000px;}
._9{margin-left:-3.384000px;}
._a{margin-left:-2.376000px;}
._1{margin-left:-1.050000px;}
._0{width:1.340640px;}
._2{width:2.850000px;}
._6{width:4.134000px;}
._7{width:5.154000px;}
._14{width:6.480000px;}
._10{width:7.560000px;}
._8{width:8.856000px;}
._4{width:10.368000px;}
._5{width:11.376000px;}
._f{width:12.411360px;}
._1e{width:13.412640px;}
._c{width:14.472000px;}
._d{width:15.552000px;}
._e{width:16.875360px;}
._18{width:19.035360px;}
._12{width:20.088000px;}
._11{width:21.456000px;}
._1d{width:22.941360px;}
._16{width:24.048000px;}
._17{width:25.299360px;}
._b{width:26.568000px;}
._15{width:28.035360px;}
._20{width:29.850000px;}
._1f{width:31.392000px;}
._19{width:32.904000px;}
._1a{width:34.056000px;}
._21{width:37.944000px;}
._1c{width:39.828000px;}
._1b{width:40.896000px;}
._3{width:66.168000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.600000px;}
.y8{bottom:10.980000px;}
.y7{bottom:30.780000px;}
.y4{bottom:37.620000px;}
.y6{bottom:50.580000px;}
.yd{bottom:56.520000px;}
.y3{bottom:61.740000px;}
.y5{bottom:70.200000px;}
.yc{bottom:73.080000px;}
.yb{bottom:88.560000px;}
.ya{bottom:104.076000px;}
.y78{bottom:133.416000px;}
.y36{bottom:136.116000px;}
.ya2{bottom:138.636000px;}
.y5f{bottom:143.676000px;}
.y8d{bottom:153.930000px;}
.y77{bottom:155.730000px;}
.y35{bottom:158.430000px;}
.ya1{bottom:173.010000px;}
.y8c{bottom:176.430000px;}
.y5e{bottom:178.050000px;}
.y34{bottom:180.750000px;}
.y8b{bottom:198.750000px;}
.y5d{bottom:200.370000px;}
.y33{bottom:203.070000px;}
.ya0{bottom:207.390000px;}
.y8a{bottom:221.070000px;}
.y5c{bottom:222.690000px;}
.y32{bottom:225.570000px;}
.y9f{bottom:241.770000px;}
.y89{bottom:243.390000px;}
.y5b{bottom:245.010000px;}
.y31{bottom:247.890000px;}
.y9e{bottom:264.090000px;}
.y88{bottom:265.710000px;}
.y5a{bottom:267.330000px;}
.y30{bottom:270.210000px;}
.y87{bottom:288.030000px;}
.y59{bottom:289.650000px;}
.y2f{bottom:292.530000px;}
.y9d{bottom:298.290000px;}
.y76{bottom:301.710000px;}
.y58{bottom:311.970000px;}
.y2e{bottom:314.850000px;}
.y9c{bottom:320.790000px;}
.y86{bottom:322.410000px;}
.y75{bottom:324.030000px;}
.y57{bottom:334.290000px;}
.y2d{bottom:337.170000px;}
.y85{bottom:344.730000px;}
.y74{bottom:346.350000px;}
.y9b{bottom:355.035000px;}
.y56{bottom:356.835000px;}
.y98{bottom:358.455000px;}
.y2c{bottom:359.535000px;}
.y84{bottom:367.095000px;}
.y73{bottom:368.715000px;}
.y9a{bottom:377.355000px;}
.y55{bottom:379.155000px;}
.y97{bottom:380.775000px;}
.y2b{bottom:381.855000px;}
.y83{bottom:389.415000px;}
.y72{bottom:391.035000px;}
.y54{bottom:401.475000px;}
.y96{bottom:403.095000px;}
.y2a{bottom:404.175000px;}
.y82{bottom:411.735000px;}
.y71{bottom:413.355000px;}
.y95{bottom:425.415000px;}
.y29{bottom:426.495000px;}
.y81{bottom:434.055000px;}
.y53{bottom:435.675000px;}
.y99{bottom:446.115000px;}
.y94{bottom:447.735000px;}
.y28{bottom:448.815000px;}
.y80{bottom:456.375000px;}
.y70{bottom:458.175000px;}
.y52{bottom:470.055000px;}
.y6f{bottom:480.495000px;}
.y27{bottom:483.195000px;}
.y7f{bottom:490.755000px;}
.y51{bottom:492.375000px;}
.y7e{bottom:513.075000px;}
.y50{bottom:514.695000px;}
.y26{bottom:517.575000px;}
.y4f{bottom:537.015000px;}
.y25{bottom:539.895000px;}
.y7d{bottom:547.455000px;}
.y4e{bottom:559.515000px;}
.y24{bottom:574.275000px;}
.y4d{bottom:581.835000px;}
.y23{bottom:596.595000px;}
.y4c{bottom:604.155000px;}
.y22{bottom:618.945000px;}
.y4b{bottom:626.505000px;}
.y21{bottom:641.265000px;}
.y4a{bottom:648.825000px;}
.y20{bottom:663.585000px;}
.y6e{bottom:671.145000px;}
.y49{bottom:683.205000px;}
.y1f{bottom:685.905000px;}
.y6d{bottom:693.465000px;}
.y1e{bottom:708.225000px;}
.y6c{bottom:715.785000px;}
.y48{bottom:717.405000px;}
.y1d{bottom:730.725000px;}
.y6b{bottom:738.105000px;}
.y47{bottom:739.905000px;}
.y93{bottom:750.165000px;}
.y1c{bottom:753.045000px;}
.y7c{bottom:760.425000px;}
.y46{bottom:762.225000px;}
.y6a{bottom:772.485000px;}
.y1b{bottom:775.365000px;}
.y7b{bottom:782.925000px;}
.y45{bottom:784.545000px;}
.y69{bottom:794.805000px;}
.y1a{bottom:797.685000px;}
.y44{bottom:806.865000px;}
.y68{bottom:817.125000px;}
.y19{bottom:820.005000px;}
.y43{bottom:829.185000px;}
.y67{bottom:839.445000px;}
.y18{bottom:842.325000px;}
.y42{bottom:851.505000px;}
.y66{bottom:861.765000px;}
.y17{bottom:864.645000px;}
.y41{bottom:873.825000px;}
.y65{bottom:884.310000px;}
.y40{bottom:896.190000px;}
.y16{bottom:899.070000px;}
.y64{bottom:906.630000px;}
.y3f{bottom:918.510000px;}
.y63{bottom:928.950000px;}
.y15{bottom:933.450000px;}
.y3e{bottom:940.830000px;}
.y62{bottom:951.270000px;}
.y92{bottom:952.890000px;}
.y14{bottom:954.150000px;}
.y3d{bottom:963.330000px;}
.y61{bottom:973.590000px;}
.y13{bottom:974.850000px;}
.y91{bottom:975.210000px;}
.y3c{bottom:985.650000px;}
.y12{bottom:995.550000px;}
.y60{bottom:995.910000px;}
.y90{bottom:997.530000px;}
.y3b{bottom:1007.970000px;}
.y11{bottom:1016.250000px;}
.ya3{bottom:1018.230000px;}
.y8f{bottom:1019.850000px;}
.y3a{bottom:1030.290000px;}
.y10{bottom:1036.950000px;}
.y8e{bottom:1042.170000px;}
.y39{bottom:1052.610000px;}
.y7a{bottom:1064.670000px;}
.yf{bottom:1071.150000px;}
.y38{bottom:1074.930000px;}
.y79{bottom:1086.990000px;}
.ye{bottom:1106.430000px;}
.y37{bottom:1109.310000px;}
.y9{bottom:1130.550000px;}
.y1{bottom:1146.240000px;}
.h7{height:40.579102px;}
.h8{height:50.273438px;}
.hb{height:50.800781px;}
.h9{height:53.709961px;}
.ha{height:59.436914px;}
.h6{height:59.439023px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h2{height:84.600000px;}
.h4{height:95.245664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:124.200000px;}
.w4{width:159.690000px;}
.w3{width:386.025000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6{left:39.420000px;}
.x7{left:56.520000px;}
.x8{left:70.740000px;}
.x2{left:98.094000px;}
.x1{left:108.036000px;}
.x9{left:124.955987px;}
.xf{left:150.509987px;}
.xd{left:212.969987px;}
.x3{left:232.230000px;}
.xc{left:303.734987px;}
.xb{left:311.474987px;}
.xe{left:371.594987px;}
.xa{left:384.014987px;}
.x5{left:618.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls0{letter-spacing:50.693120pt;}
.ls1{letter-spacing:178.853120pt;}
.ws6{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws2{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._13{margin-left:-4.672000pt;}
._9{margin-left:-3.008000pt;}
._a{margin-left:-2.112000pt;}
._1{margin-left:-0.933333pt;}
._0{width:1.191680pt;}
._2{width:2.533333pt;}
._6{width:3.674667pt;}
._7{width:4.581333pt;}
._14{width:5.760000pt;}
._10{width:6.720000pt;}
._8{width:7.872000pt;}
._4{width:9.216000pt;}
._5{width:10.112000pt;}
._f{width:11.032320pt;}
._1e{width:11.922347pt;}
._c{width:12.864000pt;}
._d{width:13.824000pt;}
._e{width:15.000320pt;}
._18{width:16.920320pt;}
._12{width:17.856000pt;}
._11{width:19.072000pt;}
._1d{width:20.392320pt;}
._16{width:21.376000pt;}
._17{width:22.488320pt;}
._b{width:23.616000pt;}
._15{width:24.920320pt;}
._20{width:26.533333pt;}
._1f{width:27.904000pt;}
._19{width:29.248000pt;}
._1a{width:30.272000pt;}
._21{width:33.728000pt;}
._1c{width:35.402667pt;}
._1b{width:36.352000pt;}
._3{width:58.816000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.200000pt;}
.y8{bottom:9.760000pt;}
.y7{bottom:27.360000pt;}
.y4{bottom:33.440000pt;}
.y6{bottom:44.960000pt;}
.yd{bottom:50.240000pt;}
.y3{bottom:54.880000pt;}
.y5{bottom:62.400000pt;}
.yc{bottom:64.960000pt;}
.yb{bottom:78.720000pt;}
.ya{bottom:92.512000pt;}
.y78{bottom:118.592000pt;}
.y36{bottom:120.992000pt;}
.ya2{bottom:123.232000pt;}
.y5f{bottom:127.712000pt;}
.y8d{bottom:136.826667pt;}
.y77{bottom:138.426667pt;}
.y35{bottom:140.826667pt;}
.ya1{bottom:153.786667pt;}
.y8c{bottom:156.826667pt;}
.y5e{bottom:158.266667pt;}
.y34{bottom:160.666667pt;}
.y8b{bottom:176.666667pt;}
.y5d{bottom:178.106667pt;}
.y33{bottom:180.506667pt;}
.ya0{bottom:184.346667pt;}
.y8a{bottom:196.506667pt;}
.y5c{bottom:197.946667pt;}
.y32{bottom:200.506667pt;}
.y9f{bottom:214.906667pt;}
.y89{bottom:216.346667pt;}
.y5b{bottom:217.786667pt;}
.y31{bottom:220.346667pt;}
.y9e{bottom:234.746667pt;}
.y88{bottom:236.186667pt;}
.y5a{bottom:237.626667pt;}
.y30{bottom:240.186667pt;}
.y87{bottom:256.026667pt;}
.y59{bottom:257.466667pt;}
.y2f{bottom:260.026667pt;}
.y9d{bottom:265.146667pt;}
.y76{bottom:268.186667pt;}
.y58{bottom:277.306667pt;}
.y2e{bottom:279.866667pt;}
.y9c{bottom:285.146667pt;}
.y86{bottom:286.586667pt;}
.y75{bottom:288.026667pt;}
.y57{bottom:297.146667pt;}
.y2d{bottom:299.706667pt;}
.y85{bottom:306.426667pt;}
.y74{bottom:307.866667pt;}
.y9b{bottom:315.586667pt;}
.y56{bottom:317.186667pt;}
.y98{bottom:318.626667pt;}
.y2c{bottom:319.586667pt;}
.y84{bottom:326.306667pt;}
.y73{bottom:327.746667pt;}
.y9a{bottom:335.426667pt;}
.y55{bottom:337.026667pt;}
.y97{bottom:338.466667pt;}
.y2b{bottom:339.426667pt;}
.y83{bottom:346.146667pt;}
.y72{bottom:347.586667pt;}
.y54{bottom:356.866667pt;}
.y96{bottom:358.306667pt;}
.y2a{bottom:359.266667pt;}
.y82{bottom:365.986667pt;}
.y71{bottom:367.426667pt;}
.y95{bottom:378.146667pt;}
.y29{bottom:379.106667pt;}
.y81{bottom:385.826667pt;}
.y53{bottom:387.266667pt;}
.y99{bottom:396.546667pt;}
.y94{bottom:397.986667pt;}
.y28{bottom:398.946667pt;}
.y80{bottom:405.666667pt;}
.y70{bottom:407.266667pt;}
.y52{bottom:417.826667pt;}
.y6f{bottom:427.106667pt;}
.y27{bottom:429.506667pt;}
.y7f{bottom:436.226667pt;}
.y51{bottom:437.666667pt;}
.y7e{bottom:456.066667pt;}
.y50{bottom:457.506667pt;}
.y26{bottom:460.066667pt;}
.y4f{bottom:477.346667pt;}
.y25{bottom:479.906667pt;}
.y7d{bottom:486.626667pt;}
.y4e{bottom:497.346667pt;}
.y24{bottom:510.466667pt;}
.y4d{bottom:517.186667pt;}
.y23{bottom:530.306667pt;}
.y4c{bottom:537.026667pt;}
.y22{bottom:550.173333pt;}
.y4b{bottom:556.893333pt;}
.y21{bottom:570.013333pt;}
.y4a{bottom:576.733333pt;}
.y20{bottom:589.853333pt;}
.y6e{bottom:596.573333pt;}
.y49{bottom:607.293333pt;}
.y1f{bottom:609.693333pt;}
.y6d{bottom:616.413333pt;}
.y1e{bottom:629.533333pt;}
.y6c{bottom:636.253333pt;}
.y48{bottom:637.693333pt;}
.y1d{bottom:649.533333pt;}
.y6b{bottom:656.093333pt;}
.y47{bottom:657.693333pt;}
.y93{bottom:666.813333pt;}
.y1c{bottom:669.373333pt;}
.y7c{bottom:675.933333pt;}
.y46{bottom:677.533333pt;}
.y6a{bottom:686.653333pt;}
.y1b{bottom:689.213333pt;}
.y7b{bottom:695.933333pt;}
.y45{bottom:697.373333pt;}
.y69{bottom:706.493333pt;}
.y1a{bottom:709.053333pt;}
.y44{bottom:717.213333pt;}
.y68{bottom:726.333333pt;}
.y19{bottom:728.893333pt;}
.y43{bottom:737.053333pt;}
.y67{bottom:746.173333pt;}
.y18{bottom:748.733333pt;}
.y42{bottom:756.893333pt;}
.y66{bottom:766.013333pt;}
.y17{bottom:768.573333pt;}
.y41{bottom:776.733333pt;}
.y65{bottom:786.053333pt;}
.y40{bottom:796.613333pt;}
.y16{bottom:799.173333pt;}
.y64{bottom:805.893333pt;}
.y3f{bottom:816.453333pt;}
.y63{bottom:825.733333pt;}
.y15{bottom:829.733333pt;}
.y3e{bottom:836.293333pt;}
.y62{bottom:845.573333pt;}
.y92{bottom:847.013333pt;}
.y14{bottom:848.133333pt;}
.y3d{bottom:856.293333pt;}
.y61{bottom:865.413333pt;}
.y13{bottom:866.533333pt;}
.y91{bottom:866.853333pt;}
.y3c{bottom:876.133333pt;}
.y12{bottom:884.933333pt;}
.y60{bottom:885.253333pt;}
.y90{bottom:886.693333pt;}
.y3b{bottom:895.973333pt;}
.y11{bottom:903.333333pt;}
.ya3{bottom:905.093333pt;}
.y8f{bottom:906.533333pt;}
.y3a{bottom:915.813333pt;}
.y10{bottom:921.733333pt;}
.y8e{bottom:926.373333pt;}
.y39{bottom:935.653333pt;}
.y7a{bottom:946.373333pt;}
.yf{bottom:952.133333pt;}
.y38{bottom:955.493333pt;}
.y79{bottom:966.213333pt;}
.ye{bottom:983.493333pt;}
.y37{bottom:986.053333pt;}
.y9{bottom:1004.933333pt;}
.y1{bottom:1018.880000pt;}
.h7{height:36.070312pt;}
.h8{height:44.687500pt;}
.hb{height:45.156250pt;}
.h9{height:47.742188pt;}
.ha{height:52.832812pt;}
.h6{height:52.834688pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h2{height:75.200000pt;}
.h4{height:84.662813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:110.400000pt;}
.w4{width:141.946667pt;}
.w3{width:343.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6{left:35.040000pt;}
.x7{left:50.240000pt;}
.x8{left:62.880000pt;}
.x2{left:87.194667pt;}
.x1{left:96.032000pt;}
.x9{left:111.071988pt;}
.xf{left:133.786655pt;}
.xd{left:189.306655pt;}
.x3{left:206.426667pt;}
.xc{left:269.986655pt;}
.xb{left:276.866655pt;}
.xe{left:330.306655pt;}
.xa{left:341.346655pt;}
.x5{left:549.573333pt;}
}




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