
    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_3e5189858aff23055e1ef06b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_74a25a8f984c79cb50e0098f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_48d8d684b19ecea4eabbe399.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3f63674c43a8e9032bd8ae0c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_11bc767c3f47289ae2cf830f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_910b052204d5dbbaf30741e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.720000px;}
.ls7{letter-spacing:12.240000px;}
.ls3{letter-spacing:66.960000px;}
.ls2{letter-spacing:75.600000px;}
.ls1{letter-spacing:89.280000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-5.112000px;}
._e{margin-left:-3.168000px;}
._9{margin-left:-2.106000px;}
._1{margin-left:-1.098000px;}
._0{width:1.434000px;}
._2{width:2.460000px;}
._a{width:3.600000px;}
._b{width:4.626000px;}
._10{width:6.264000px;}
._11{width:8.070000px;}
._5{width:9.594000px;}
._3{width:11.088000px;}
._4{width:12.312000px;}
._6{width:14.112000px;}
._7{width:15.696000px;}
._12{width:16.704000px;}
._f{width:19.890000px;}
._16{width:20.994000px;}
._19{width:22.854000px;}
._c{width:25.704000px;}
._d{width:27.390000px;}
._13{width:28.974000px;}
._8{width:30.960000px;}
._18{width:32.064000px;}
._1a{width:37.368000px;}
._14{width:41.976000px;}
._15{width:43.272000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.600000px;}
.y4{bottom:77.076000px;}
.y66{bottom:120.636000px;}
.yb3{bottom:121.356000px;}
.y2d{bottom:122.616000px;}
.y5e{bottom:125.496000px;}
.yb2{bottom:138.636000px;}
.y65{bottom:141.336000px;}
.y2c{bottom:143.316000px;}
.y5d{bottom:146.196000px;}
.yb1{bottom:155.910000px;}
.y2b{bottom:164.010000px;}
.y5c{bottom:166.890000px;}
.yb0{bottom:173.010000px;}
.y64{bottom:182.370000px;}
.y2a{bottom:184.710000px;}
.y5b{bottom:187.590000px;}
.y98{bottom:188.310000px;}
.yaf{bottom:190.290000px;}
.y63{bottom:203.070000px;}
.y29{bottom:205.410000px;}
.yae{bottom:207.570000px;}
.y5a{bottom:208.290000px;}
.y97{bottom:209.010000px;}
.y62{bottom:224.130000px;}
.yad{bottom:224.490000px;}
.y28{bottom:226.110000px;}
.y59{bottom:228.990000px;}
.y96{bottom:229.710000px;}
.yac{bottom:241.770000px;}
.y61{bottom:244.830000px;}
.y27{bottom:246.810000px;}
.y58{bottom:249.690000px;}
.y95{bottom:250.410000px;}
.yab{bottom:259.770000px;}
.y60{bottom:264.810000px;}
.y57{bottom:270.390000px;}
.y94{bottom:271.110000px;}
.y5f{bottom:278.310000px;}
.y77{bottom:279.210000px;}
.yaa{bottom:280.470000px;}
.y26{bottom:287.850000px;}
.y56{bottom:291.090000px;}
.y93{bottom:291.810000px;}
.y76{bottom:299.910000px;}
.ya9{bottom:301.530000px;}
.y25{bottom:308.550000px;}
.y55{bottom:311.790000px;}
.y92{bottom:312.510000px;}
.y75{bottom:320.610000px;}
.ya8{bottom:322.230000px;}
.y24{bottom:329.655000px;}
.y54{bottom:332.535000px;}
.y91{bottom:333.255000px;}
.y74{bottom:341.355000px;}
.ya7{bottom:342.975000px;}
.y23{bottom:350.355000px;}
.y53{bottom:353.235000px;}
.y90{bottom:353.955000px;}
.y73{bottom:362.055000px;}
.ya6{bottom:363.675000px;}
.y22{bottom:371.055000px;}
.y52{bottom:373.935000px;}
.y8f{bottom:374.655000px;}
.y72{bottom:382.755000px;}
.ya5{bottom:384.375000px;}
.y21{bottom:391.755000px;}
.y51{bottom:394.635000px;}
.y8e{bottom:395.355000px;}
.y71{bottom:403.455000px;}
.ya4{bottom:405.075000px;}
.y20{bottom:412.455000px;}
.y50{bottom:415.335000px;}
.y8d{bottom:416.055000px;}
.y70{bottom:423.975000px;}
.ya3{bottom:425.775000px;}
.y1f{bottom:433.155000px;}
.y4f{bottom:436.035000px;}
.y8c{bottom:436.755000px;}
.y6f{bottom:444.675000px;}
.ya2{bottom:446.475000px;}
.y1e{bottom:453.855000px;}
.y4e{bottom:456.735000px;}
.y8b{bottom:457.455000px;}
.ya1{bottom:467.175000px;}
.y1d{bottom:474.555000px;}
.y4d{bottom:477.435000px;}
.y8a{bottom:478.155000px;}
.y6e{bottom:485.715000px;}
.ya0{bottom:487.875000px;}
.y1c{bottom:495.255000px;}
.y4c{bottom:498.135000px;}
.y89{bottom:498.855000px;}
.y6d{bottom:506.415000px;}
.y9f{bottom:508.575000px;}
.y1b{bottom:515.955000px;}
.y4b{bottom:518.835000px;}
.y88{bottom:519.555000px;}
.y6c{bottom:527.475000px;}
.y1a{bottom:536.655000px;}
.y4a{bottom:539.535000px;}
.y87{bottom:540.255000px;}
.y6b{bottom:548.175000px;}
.y9e{bottom:549.615000px;}
.y19{bottom:557.355000px;}
.y49{bottom:560.235000px;}
.y86{bottom:560.955000px;}
.y6a{bottom:568.155000px;}
.y9d{bottom:570.315000px;}
.y18{bottom:578.055000px;}
.y48{bottom:580.935000px;}
.y85{bottom:581.655000px;}
.y69{bottom:585.435000px;}
.y17{bottom:598.785000px;}
.y68{bottom:598.965000px;}
.y47{bottom:601.485000px;}
.y84{bottom:602.385000px;}
.y9c{bottom:612.105000px;}
.y46{bottom:622.185000px;}
.y83{bottom:623.085000px;}
.y9b{bottom:631.905000px;}
.y16{bottom:640.185000px;}
.y45{bottom:642.525000px;}
.y67{bottom:642.885000px;}
.y82{bottom:643.785000px;}
.y9a{bottom:649.185000px;}
.y15{bottom:660.525000px;}
.y99{bottom:662.685000px;}
.y44{bottom:663.585000px;}
.y81{bottom:664.485000px;}
.y14{bottom:681.585000px;}
.y43{bottom:684.285000px;}
.y80{bottom:685.185000px;}
.y13{bottom:702.285000px;}
.y42{bottom:704.985000px;}
.y7f{bottom:705.885000px;}
.y12{bottom:722.985000px;}
.y41{bottom:725.685000px;}
.y7e{bottom:726.585000px;}
.y11{bottom:743.685000px;}
.y40{bottom:746.385000px;}
.y7d{bottom:747.285000px;}
.y10{bottom:764.385000px;}
.y3f{bottom:767.085000px;}
.y7c{bottom:767.985000px;}
.yf{bottom:785.085000px;}
.y3e{bottom:787.785000px;}
.y7b{bottom:788.685000px;}
.ye{bottom:805.785000px;}
.y3d{bottom:808.485000px;}
.y3c{bottom:829.185000px;}
.y7a{bottom:830.085000px;}
.yc4{bottom:840.345000px;}
.yd{bottom:847.005000px;}
.y3b{bottom:849.885000px;}
.y79{bottom:850.065000px;}
.yc3{bottom:860.685000px;}
.yc{bottom:867.390000px;}
.y3a{bottom:870.630000px;}
.yc2{bottom:877.830000px;}
.y78{bottom:880.890000px;}
.yb{bottom:888.090000px;}
.y39{bottom:891.330000px;}
.yc1{bottom:895.470000px;}
.y38{bottom:912.030000px;}
.yc0{bottom:912.930000px;}
.ya{bottom:929.850000px;}
.ybf{bottom:930.210000px;}
.y37{bottom:932.730000px;}
.ybe{bottom:947.490000px;}
.y9{bottom:950.550000px;}
.y36{bottom:953.430000px;}
.ybd{bottom:964.770000px;}
.y8{bottom:970.890000px;}
.y35{bottom:974.130000px;}
.ybc{bottom:982.230000px;}
.y7{bottom:991.590000px;}
.y34{bottom:994.830000px;}
.ybb{bottom:999.870000px;}
.y6{bottom:1012.290000px;}
.y33{bottom:1015.530000px;}
.yba{bottom:1017.150000px;}
.yb9{bottom:1034.610000px;}
.y32{bottom:1036.230000px;}
.yb8{bottom:1052.250000px;}
.y31{bottom:1056.930000px;}
.yb7{bottom:1069.350000px;}
.y30{bottom:1077.630000px;}
.yb6{bottom:1086.990000px;}
.y2f{bottom:1098.330000px;}
.yb5{bottom:1104.450000px;}
.y2e{bottom:1119.030000px;}
.yb4{bottom:1121.730000px;}
.y3{bottom:1163.340000px;}
.y2{bottom:1182.060000px;}
.y1{bottom:1197.540000px;}
.h2{height:52.971680px;}
.h3{height:57.927656px;}
.h9{height:58.621992px;}
.hc{height:58.651172px;}
.hb{height:60.226875px;}
.h4{height:65.010937px;}
.h5{height:70.628906px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.h8{height:74.704922px;}
.ha{height:74.884922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.415987px;}
.xb{left:112.715987px;}
.xc{left:115.055987px;}
.x6{left:117.215987px;}
.x14{left:122.795987px;}
.x5{left:125.675987px;}
.xf{left:127.655987px;}
.x16{left:129.635987px;}
.x9{left:137.015987px;}
.xd{left:150.149987px;}
.x1{left:164.369987px;}
.x17{left:198.029987px;}
.xa{left:226.289987px;}
.x11{left:262.334987px;}
.xe{left:321.554987px;}
.x13{left:363.854987px;}
.x7{left:373.574987px;}
.x4{left:434.084987px;}
.x8{left:446.504987px;}
.x12{left:616.649987px;}
.x2{left:644.549987px;}
.x15{left:683.069987px;}
.x10{left:786.059987px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls7{letter-spacing:10.880000pt;}
.ls3{letter-spacing:59.520000pt;}
.ls2{letter-spacing:67.200000pt;}
.ls1{letter-spacing:79.360000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-4.544000pt;}
._e{margin-left:-2.816000pt;}
._9{margin-left:-1.872000pt;}
._1{margin-left:-0.976000pt;}
._0{width:1.274667pt;}
._2{width:2.186667pt;}
._a{width:3.200000pt;}
._b{width:4.112000pt;}
._10{width:5.568000pt;}
._11{width:7.173333pt;}
._5{width:8.528000pt;}
._3{width:9.856000pt;}
._4{width:10.944000pt;}
._6{width:12.544000pt;}
._7{width:13.952000pt;}
._12{width:14.848000pt;}
._f{width:17.680000pt;}
._16{width:18.661333pt;}
._19{width:20.314667pt;}
._c{width:22.848000pt;}
._d{width:24.346667pt;}
._13{width:25.754667pt;}
._8{width:27.520000pt;}
._18{width:28.501333pt;}
._1a{width:33.216000pt;}
._14{width:37.312000pt;}
._15{width:38.464000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:68.512000pt;}
.y66{bottom:107.232000pt;}
.yb3{bottom:107.872000pt;}
.y2d{bottom:108.992000pt;}
.y5e{bottom:111.552000pt;}
.yb2{bottom:123.232000pt;}
.y65{bottom:125.632000pt;}
.y2c{bottom:127.392000pt;}
.y5d{bottom:129.952000pt;}
.yb1{bottom:138.586667pt;}
.y2b{bottom:145.786667pt;}
.y5c{bottom:148.346667pt;}
.yb0{bottom:153.786667pt;}
.y64{bottom:162.106667pt;}
.y2a{bottom:164.186667pt;}
.y5b{bottom:166.746667pt;}
.y98{bottom:167.386667pt;}
.yaf{bottom:169.146667pt;}
.y63{bottom:180.506667pt;}
.y29{bottom:182.586667pt;}
.yae{bottom:184.506667pt;}
.y5a{bottom:185.146667pt;}
.y97{bottom:185.786667pt;}
.y62{bottom:199.226667pt;}
.yad{bottom:199.546667pt;}
.y28{bottom:200.986667pt;}
.y59{bottom:203.546667pt;}
.y96{bottom:204.186667pt;}
.yac{bottom:214.906667pt;}
.y61{bottom:217.626667pt;}
.y27{bottom:219.386667pt;}
.y58{bottom:221.946667pt;}
.y95{bottom:222.586667pt;}
.yab{bottom:230.906667pt;}
.y60{bottom:235.386667pt;}
.y57{bottom:240.346667pt;}
.y94{bottom:240.986667pt;}
.y5f{bottom:247.386667pt;}
.y77{bottom:248.186667pt;}
.yaa{bottom:249.306667pt;}
.y26{bottom:255.866667pt;}
.y56{bottom:258.746667pt;}
.y93{bottom:259.386667pt;}
.y76{bottom:266.586667pt;}
.ya9{bottom:268.026667pt;}
.y25{bottom:274.266667pt;}
.y55{bottom:277.146667pt;}
.y92{bottom:277.786667pt;}
.y75{bottom:284.986667pt;}
.ya8{bottom:286.426667pt;}
.y24{bottom:293.026667pt;}
.y54{bottom:295.586667pt;}
.y91{bottom:296.226667pt;}
.y74{bottom:303.426667pt;}
.ya7{bottom:304.866667pt;}
.y23{bottom:311.426667pt;}
.y53{bottom:313.986667pt;}
.y90{bottom:314.626667pt;}
.y73{bottom:321.826667pt;}
.ya6{bottom:323.266667pt;}
.y22{bottom:329.826667pt;}
.y52{bottom:332.386667pt;}
.y8f{bottom:333.026667pt;}
.y72{bottom:340.226667pt;}
.ya5{bottom:341.666667pt;}
.y21{bottom:348.226667pt;}
.y51{bottom:350.786667pt;}
.y8e{bottom:351.426667pt;}
.y71{bottom:358.626667pt;}
.ya4{bottom:360.066667pt;}
.y20{bottom:366.626667pt;}
.y50{bottom:369.186667pt;}
.y8d{bottom:369.826667pt;}
.y70{bottom:376.866667pt;}
.ya3{bottom:378.466667pt;}
.y1f{bottom:385.026667pt;}
.y4f{bottom:387.586667pt;}
.y8c{bottom:388.226667pt;}
.y6f{bottom:395.266667pt;}
.ya2{bottom:396.866667pt;}
.y1e{bottom:403.426667pt;}
.y4e{bottom:405.986667pt;}
.y8b{bottom:406.626667pt;}
.ya1{bottom:415.266667pt;}
.y1d{bottom:421.826667pt;}
.y4d{bottom:424.386667pt;}
.y8a{bottom:425.026667pt;}
.y6e{bottom:431.746667pt;}
.ya0{bottom:433.666667pt;}
.y1c{bottom:440.226667pt;}
.y4c{bottom:442.786667pt;}
.y89{bottom:443.426667pt;}
.y6d{bottom:450.146667pt;}
.y9f{bottom:452.066667pt;}
.y1b{bottom:458.626667pt;}
.y4b{bottom:461.186667pt;}
.y88{bottom:461.826667pt;}
.y6c{bottom:468.866667pt;}
.y1a{bottom:477.026667pt;}
.y4a{bottom:479.586667pt;}
.y87{bottom:480.226667pt;}
.y6b{bottom:487.266667pt;}
.y9e{bottom:488.546667pt;}
.y19{bottom:495.426667pt;}
.y49{bottom:497.986667pt;}
.y86{bottom:498.626667pt;}
.y6a{bottom:505.026667pt;}
.y9d{bottom:506.946667pt;}
.y18{bottom:513.826667pt;}
.y48{bottom:516.386667pt;}
.y85{bottom:517.026667pt;}
.y69{bottom:520.386667pt;}
.y17{bottom:532.253333pt;}
.y68{bottom:532.413333pt;}
.y47{bottom:534.653333pt;}
.y84{bottom:535.453333pt;}
.y9c{bottom:544.093333pt;}
.y46{bottom:553.053333pt;}
.y83{bottom:553.853333pt;}
.y9b{bottom:561.693333pt;}
.y16{bottom:569.053333pt;}
.y45{bottom:571.133333pt;}
.y67{bottom:571.453333pt;}
.y82{bottom:572.253333pt;}
.y9a{bottom:577.053333pt;}
.y15{bottom:587.133333pt;}
.y99{bottom:589.053333pt;}
.y44{bottom:589.853333pt;}
.y81{bottom:590.653333pt;}
.y14{bottom:605.853333pt;}
.y43{bottom:608.253333pt;}
.y80{bottom:609.053333pt;}
.y13{bottom:624.253333pt;}
.y42{bottom:626.653333pt;}
.y7f{bottom:627.453333pt;}
.y12{bottom:642.653333pt;}
.y41{bottom:645.053333pt;}
.y7e{bottom:645.853333pt;}
.y11{bottom:661.053333pt;}
.y40{bottom:663.453333pt;}
.y7d{bottom:664.253333pt;}
.y10{bottom:679.453333pt;}
.y3f{bottom:681.853333pt;}
.y7c{bottom:682.653333pt;}
.yf{bottom:697.853333pt;}
.y3e{bottom:700.253333pt;}
.y7b{bottom:701.053333pt;}
.ye{bottom:716.253333pt;}
.y3d{bottom:718.653333pt;}
.y3c{bottom:737.053333pt;}
.y7a{bottom:737.853333pt;}
.yc4{bottom:746.973333pt;}
.yd{bottom:752.893333pt;}
.y3b{bottom:755.453333pt;}
.y79{bottom:755.613333pt;}
.yc3{bottom:765.053333pt;}
.yc{bottom:771.013333pt;}
.y3a{bottom:773.893333pt;}
.yc2{bottom:780.293333pt;}
.y78{bottom:783.013333pt;}
.yb{bottom:789.413333pt;}
.y39{bottom:792.293333pt;}
.yc1{bottom:795.973333pt;}
.y38{bottom:810.693333pt;}
.yc0{bottom:811.493333pt;}
.ya{bottom:826.533333pt;}
.ybf{bottom:826.853333pt;}
.y37{bottom:829.093333pt;}
.ybe{bottom:842.213333pt;}
.y9{bottom:844.933333pt;}
.y36{bottom:847.493333pt;}
.ybd{bottom:857.573333pt;}
.y8{bottom:863.013333pt;}
.y35{bottom:865.893333pt;}
.ybc{bottom:873.093333pt;}
.y7{bottom:881.413333pt;}
.y34{bottom:884.293333pt;}
.ybb{bottom:888.773333pt;}
.y6{bottom:899.813333pt;}
.y33{bottom:902.693333pt;}
.yba{bottom:904.133333pt;}
.yb9{bottom:919.653333pt;}
.y32{bottom:921.093333pt;}
.yb8{bottom:935.333333pt;}
.y31{bottom:939.493333pt;}
.yb7{bottom:950.533333pt;}
.y30{bottom:957.893333pt;}
.yb6{bottom:966.213333pt;}
.y2f{bottom:976.293333pt;}
.yb5{bottom:981.733333pt;}
.y2e{bottom:994.693333pt;}
.yb4{bottom:997.093333pt;}
.y3{bottom:1034.080000pt;}
.y2{bottom:1050.720000pt;}
.y1{bottom:1064.480000pt;}
.h2{height:47.085938pt;}
.h3{height:51.491250pt;}
.h9{height:52.108438pt;}
.hc{height:52.134375pt;}
.hb{height:53.535000pt;}
.h4{height:57.787500pt;}
.h5{height:62.781250pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.h8{height:66.404375pt;}
.ha{height:66.564375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.591988pt;}
.xb{left:100.191988pt;}
.xc{left:102.271988pt;}
.x6{left:104.191988pt;}
.x14{left:109.151988pt;}
.x5{left:111.711988pt;}
.xf{left:113.471988pt;}
.x16{left:115.231988pt;}
.x9{left:121.791988pt;}
.xd{left:133.466655pt;}
.x1{left:146.106655pt;}
.x17{left:176.026655pt;}
.xa{left:201.146655pt;}
.x11{left:233.186655pt;}
.xe{left:285.826655pt;}
.x13{left:323.426655pt;}
.x7{left:332.066655pt;}
.x4{left:385.853322pt;}
.x8{left:396.893322pt;}
.x12{left:548.133322pt;}
.x2{left:572.933322pt;}
.x15{left:607.173322pt;}
.x10{left:698.719988pt;}
}




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