
    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_c8ab319c2c8cacbc80e97933.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ea5ee057f224825288e3b41d.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_3226679f69f9c0f0d20b3533.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_29682293ea7e5f39f21f354b.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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_95c8c0a81aa20eb0a402caf7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_a1f7596171e53758a39a420b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.379920px;}
.lse{letter-spacing:0.900000px;}
.lsc{letter-spacing:12.240000px;}
.ls9{letter-spacing:16.506720px;}
.ls8{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._12{margin-left:-7.813680px;}
._1f{margin-left:-6.454080px;}
._1a{margin-left:-5.440080px;}
._14{margin-left:-4.200960px;}
._b{margin-left:-2.241120px;}
._0{margin-left:-1.080000px;}
._13{width:1.193520px;}
._1{width:2.220000px;}
._17{width:3.245280px;}
._19{width:4.917360px;}
._1b{width:6.594240px;}
._15{width:8.035680px;}
._16{width:9.176400px;}
._6{width:10.800000px;}
._1c{width:11.946960px;}
._1e{width:13.626720px;}
._18{width:16.015680px;}
._10{width:18.948000px;}
._22{width:20.795760px;}
._1d{width:28.326240px;}
._24{width:49.363440px;}
._23{width:50.391840px;}
._21{width:57.025920px;}
._20{width:58.923360px;}
._7{width:76.284960px;}
._11{width:132.780000px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._f{width:199.584000px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1097.040000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y50{bottom:5.760000px;}
.ye{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.y53{bottom:13.860000px;}
.y8{bottom:18.180000px;}
.yc{bottom:38.160000px;}
.y5{bottom:40.320000px;}
.yb{bottom:59.940000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.120000px;}
.ya{bottom:81.720000px;}
.y3{bottom:96.330000px;}
.y3b{bottom:109.800000px;}
.y88{bottom:114.480000px;}
.y6a{bottom:118.260000px;}
.y2{bottom:125.670000px;}
.y3a{bottom:129.600000px;}
.y87{bottom:133.920000px;}
.y85{bottom:135.720000px;}
.y69{bottom:138.060000px;}
.y39{bottom:149.400000px;}
.y86{bottom:153.180000px;}
.y84{bottom:155.520000px;}
.y68{bottom:157.860000px;}
.y38{bottom:169.380000px;}
.y83{bottom:175.500000px;}
.y67{bottom:177.660000px;}
.y37{bottom:189.180000px;}
.y82{bottom:195.300000px;}
.y66{bottom:197.460000px;}
.y36{bottom:208.980000px;}
.y81{bottom:215.130000px;}
.y65{bottom:217.470000px;}
.y35{bottom:228.810000px;}
.y80{bottom:234.930000px;}
.y64{bottom:237.270000px;}
.y34{bottom:248.610000px;}
.y7f{bottom:254.730000px;}
.y63{bottom:257.070000px;}
.y33{bottom:268.590000px;}
.y7e{bottom:274.530000px;}
.y62{bottom:276.870000px;}
.y32{bottom:288.390000px;}
.y7d{bottom:294.510000px;}
.y61{bottom:296.670000px;}
.y31{bottom:308.190000px;}
.y7c{bottom:314.310000px;}
.y60{bottom:316.650000px;}
.y30{bottom:327.990000px;}
.y7b{bottom:334.110000px;}
.y5f{bottom:336.450000px;}
.y2f{bottom:347.790000px;}
.y7a{bottom:353.910000px;}
.y5e{bottom:356.250000px;}
.y2e{bottom:367.770000px;}
.y79{bottom:373.710000px;}
.y5d{bottom:376.050000px;}
.y2d{bottom:387.570000px;}
.y78{bottom:393.690000px;}
.y5c{bottom:395.850000px;}
.y2c{bottom:407.370000px;}
.y77{bottom:413.490000px;}
.y5b{bottom:415.830000px;}
.y2b{bottom:427.170000px;}
.y76{bottom:433.290000px;}
.y5a{bottom:435.630000px;}
.y2a{bottom:447.015000px;}
.y75{bottom:453.135000px;}
.y59{bottom:455.475000px;}
.y29{bottom:466.995000px;}
.y74{bottom:472.935000px;}
.y58{bottom:475.275000px;}
.y28{bottom:486.795000px;}
.y73{bottom:492.915000px;}
.y57{bottom:495.075000px;}
.y27{bottom:506.595000px;}
.y72{bottom:512.715000px;}
.y56{bottom:515.055000px;}
.y26{bottom:526.395000px;}
.y71{bottom:532.515000px;}
.y55{bottom:534.855000px;}
.y25{bottom:546.195000px;}
.y70{bottom:552.315000px;}
.y54{bottom:554.655000px;}
.y24{bottom:566.175000px;}
.y6f{bottom:572.115000px;}
.y52{bottom:574.095000px;}
.y23{bottom:585.975000px;}
.y6e{bottom:592.095000px;}
.y22{bottom:605.775000px;}
.y51{bottom:611.715000px;}
.y6d{bottom:611.895000px;}
.y21{bottom:625.575000px;}
.y6c{bottom:631.695000px;}
.y4f{bottom:640.875000px;}
.y20{bottom:645.375000px;}
.y6b{bottom:651.495000px;}
.y1f{bottom:665.355000px;}
.y4e{bottom:671.295000px;}
.y1e{bottom:685.185000px;}
.y4d{bottom:691.305000px;}
.y1d{bottom:704.985000px;}
.y4c{bottom:711.105000px;}
.y1c{bottom:724.785000px;}
.y4b{bottom:730.905000px;}
.y1b{bottom:744.585000px;}
.y4a{bottom:750.705000px;}
.y1a{bottom:764.565000px;}
.y49{bottom:770.505000px;}
.y19{bottom:784.365000px;}
.y48{bottom:790.485000px;}
.y18{bottom:804.165000px;}
.y47{bottom:810.285000px;}
.y17{bottom:823.965000px;}
.y46{bottom:830.085000px;}
.y16{bottom:843.765000px;}
.y45{bottom:849.885000px;}
.y15{bottom:863.745000px;}
.y44{bottom:869.685000px;}
.y14{bottom:883.545000px;}
.y43{bottom:889.665000px;}
.y13{bottom:908.565000px;}
.y42{bottom:909.465000px;}
.y12{bottom:923.730000px;}
.y41{bottom:929.310000px;}
.y11{bottom:945.510000px;}
.y40{bottom:949.110000px;}
.y3f{bottom:968.910000px;}
.y10{bottom:970.530000px;}
.y3e{bottom:988.890000px;}
.yf{bottom:1002.210000px;}
.y3d{bottom:1008.690000px;}
.y3c{bottom:1028.490000px;}
.y9{bottom:1046.130000px;}
.y1{bottom:1062.330000px;}
.y7{bottom:1096.530000px;}
.h6{height:2.010938px;}
.h10{height:19.800000px;}
.hb{height:21.420000px;}
.hd{height:27.147656px;}
.h11{height:27.900000px;}
.h7{height:33.480000px;}
.he{height:41.726953px;}
.hf{height:42.164648px;}
.h12{height:43.506914px;}
.h13{height:45.024258px;}
.h8{height:46.251562px;}
.h4{height:46.736719px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:6.480000px;}
.wa{width:89.136000px;}
.w9{width:94.680000px;}
.w8{width:95.796000px;}
.w7{width:99.936000px;}
.w3{width:130.896000px;}
.w6{width:166.710000px;}
.wb{width:192.990000px;}
.w2{width:649.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xe{left:9.900000px;}
.xc{left:52.919987px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x7{left:61.919987px;}
.xd{left:63.540000px;}
.x14{left:81.035987px;}
.x15{left:108.035987px;}
.x4{left:118.290000px;}
.xb{left:147.995987px;}
.xf{left:231.330000px;}
.xa{left:255.314987px;}
.x10{left:332.175000px;}
.x8{left:425.984987px;}
.x11{left:429.045000px;}
.x9{left:445.784987px;}
.x12{left:524.805000px;}
.x13{left:615.030000px;}
.x3{left:705.930000px;}
.x6{left:832.860000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.337707pt;}
.lse{letter-spacing:0.800000pt;}
.lsc{letter-spacing:10.880000pt;}
.ls9{letter-spacing:14.672640pt;}
.ls8{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._12{margin-left:-6.945493pt;}
._1f{margin-left:-5.736960pt;}
._1a{margin-left:-4.835627pt;}
._14{margin-left:-3.734187pt;}
._b{margin-left:-1.992107pt;}
._0{margin-left:-0.960000pt;}
._13{width:1.060907pt;}
._1{width:1.973333pt;}
._17{width:2.884693pt;}
._19{width:4.370987pt;}
._1b{width:5.861547pt;}
._15{width:7.142827pt;}
._16{width:8.156800pt;}
._6{width:9.600000pt;}
._1c{width:10.619520pt;}
._1e{width:12.112640pt;}
._18{width:14.236160pt;}
._10{width:16.842667pt;}
._22{width:18.485120pt;}
._1d{width:25.178880pt;}
._24{width:43.878613pt;}
._23{width:44.792747pt;}
._21{width:50.689707pt;}
._20{width:52.376320pt;}
._7{width:67.808853pt;}
._11{width:118.026667pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._f{width:177.408000pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:975.146667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:5.120000pt;}
.ye{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.y53{bottom:12.320000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:33.920000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.280000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.440000pt;}
.ya{bottom:72.640000pt;}
.y3{bottom:85.626667pt;}
.y3b{bottom:97.600000pt;}
.y88{bottom:101.760000pt;}
.y6a{bottom:105.120000pt;}
.y2{bottom:111.706667pt;}
.y3a{bottom:115.200000pt;}
.y87{bottom:119.040000pt;}
.y85{bottom:120.640000pt;}
.y69{bottom:122.720000pt;}
.y39{bottom:132.800000pt;}
.y86{bottom:136.160000pt;}
.y84{bottom:138.240000pt;}
.y68{bottom:140.320000pt;}
.y38{bottom:150.560000pt;}
.y83{bottom:156.000000pt;}
.y67{bottom:157.920000pt;}
.y37{bottom:168.160000pt;}
.y82{bottom:173.600000pt;}
.y66{bottom:175.520000pt;}
.y36{bottom:185.760000pt;}
.y81{bottom:191.226667pt;}
.y65{bottom:193.306667pt;}
.y35{bottom:203.386667pt;}
.y80{bottom:208.826667pt;}
.y64{bottom:210.906667pt;}
.y34{bottom:220.986667pt;}
.y7f{bottom:226.426667pt;}
.y63{bottom:228.506667pt;}
.y33{bottom:238.746667pt;}
.y7e{bottom:244.026667pt;}
.y62{bottom:246.106667pt;}
.y32{bottom:256.346667pt;}
.y7d{bottom:261.786667pt;}
.y61{bottom:263.706667pt;}
.y31{bottom:273.946667pt;}
.y7c{bottom:279.386667pt;}
.y60{bottom:281.466667pt;}
.y30{bottom:291.546667pt;}
.y7b{bottom:296.986667pt;}
.y5f{bottom:299.066667pt;}
.y2f{bottom:309.146667pt;}
.y7a{bottom:314.586667pt;}
.y5e{bottom:316.666667pt;}
.y2e{bottom:326.906667pt;}
.y79{bottom:332.186667pt;}
.y5d{bottom:334.266667pt;}
.y2d{bottom:344.506667pt;}
.y78{bottom:349.946667pt;}
.y5c{bottom:351.866667pt;}
.y2c{bottom:362.106667pt;}
.y77{bottom:367.546667pt;}
.y5b{bottom:369.626667pt;}
.y2b{bottom:379.706667pt;}
.y76{bottom:385.146667pt;}
.y5a{bottom:387.226667pt;}
.y2a{bottom:397.346667pt;}
.y75{bottom:402.786667pt;}
.y59{bottom:404.866667pt;}
.y29{bottom:415.106667pt;}
.y74{bottom:420.386667pt;}
.y58{bottom:422.466667pt;}
.y28{bottom:432.706667pt;}
.y73{bottom:438.146667pt;}
.y57{bottom:440.066667pt;}
.y27{bottom:450.306667pt;}
.y72{bottom:455.746667pt;}
.y56{bottom:457.826667pt;}
.y26{bottom:467.906667pt;}
.y71{bottom:473.346667pt;}
.y55{bottom:475.426667pt;}
.y25{bottom:485.506667pt;}
.y70{bottom:490.946667pt;}
.y54{bottom:493.026667pt;}
.y24{bottom:503.266667pt;}
.y6f{bottom:508.546667pt;}
.y52{bottom:510.306667pt;}
.y23{bottom:520.866667pt;}
.y6e{bottom:526.306667pt;}
.y22{bottom:538.466667pt;}
.y51{bottom:543.746667pt;}
.y6d{bottom:543.906667pt;}
.y21{bottom:556.066667pt;}
.y6c{bottom:561.506667pt;}
.y4f{bottom:569.666667pt;}
.y20{bottom:573.666667pt;}
.y6b{bottom:579.106667pt;}
.y1f{bottom:591.426667pt;}
.y4e{bottom:596.706667pt;}
.y1e{bottom:609.053333pt;}
.y4d{bottom:614.493333pt;}
.y1d{bottom:626.653333pt;}
.y4c{bottom:632.093333pt;}
.y1c{bottom:644.253333pt;}
.y4b{bottom:649.693333pt;}
.y1b{bottom:661.853333pt;}
.y4a{bottom:667.293333pt;}
.y1a{bottom:679.613333pt;}
.y49{bottom:684.893333pt;}
.y19{bottom:697.213333pt;}
.y48{bottom:702.653333pt;}
.y18{bottom:714.813333pt;}
.y47{bottom:720.253333pt;}
.y17{bottom:732.413333pt;}
.y46{bottom:737.853333pt;}
.y16{bottom:750.013333pt;}
.y45{bottom:755.453333pt;}
.y15{bottom:767.773333pt;}
.y44{bottom:773.053333pt;}
.y14{bottom:785.373333pt;}
.y43{bottom:790.813333pt;}
.y13{bottom:807.613333pt;}
.y42{bottom:808.413333pt;}
.y12{bottom:821.093333pt;}
.y41{bottom:826.053333pt;}
.y11{bottom:840.453333pt;}
.y40{bottom:843.653333pt;}
.y3f{bottom:861.253333pt;}
.y10{bottom:862.693333pt;}
.y3e{bottom:879.013333pt;}
.yf{bottom:890.853333pt;}
.y3d{bottom:896.613333pt;}
.y3c{bottom:914.213333pt;}
.y9{bottom:929.893333pt;}
.y1{bottom:944.293333pt;}
.y7{bottom:974.693333pt;}
.h6{height:1.787500pt;}
.h10{height:17.600000pt;}
.hb{height:19.040000pt;}
.hd{height:24.131250pt;}
.h11{height:24.800000pt;}
.h7{height:29.760000pt;}
.he{height:37.090625pt;}
.hf{height:37.479688pt;}
.h12{height:38.672812pt;}
.h13{height:40.021563pt;}
.h8{height:41.112500pt;}
.h4{height:41.543750pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:5.760000pt;}
.wa{width:79.232000pt;}
.w9{width:84.160000pt;}
.w8{width:85.152000pt;}
.w7{width:88.832000pt;}
.w3{width:116.352000pt;}
.w6{width:148.186667pt;}
.wb{width:171.546667pt;}
.w2{width:577.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xe{left:8.800000pt;}
.xc{left:47.039988pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x7{left:55.039988pt;}
.xd{left:56.480000pt;}
.x14{left:72.031988pt;}
.x15{left:96.031988pt;}
.x4{left:105.146667pt;}
.xb{left:131.551988pt;}
.xf{left:205.626667pt;}
.xa{left:226.946655pt;}
.x10{left:295.266667pt;}
.x8{left:378.653322pt;}
.x11{left:381.373333pt;}
.x9{left:396.253322pt;}
.x12{left:466.493333pt;}
.x13{left:546.693333pt;}
.x3{left:627.493333pt;}
.x6{left:740.320000pt;}
}




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