
    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_795594cff387352b4f1ab3e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_956816dcc3ae23281beb2465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_1b8cd418372b26cfbf58a826.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.776855;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_88eaa7e25a64cccfdc69c4d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_63a8f4f997eb2c0c6a071934.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_839ca1dc67083d565d10ca6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_f41c977eb2fe5429d2a3f62d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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;}
.lsd{letter-spacing:-0.606000px;}
.lse{letter-spacing:-0.136200px;}
.lsb{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.013980px;}
.ls9{letter-spacing:0.096600px;}
.lsc{letter-spacing:0.114000px;}
.ls8{letter-spacing:0.725550px;}
.ls7{letter-spacing:1.434000px;}
.ls5{letter-spacing:1.614000px;}
.ls6{letter-spacing:97.267500px;}
.ls1{letter-spacing:97.297500px;}
.ls4{letter-spacing:97.327500px;}
.ls3{letter-spacing:97.350000px;}
.ls2{letter-spacing:97.380000px;}
.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:-180.300000px;}
.ws1{word-spacing:-50.123400px;}
.ws2{word-spacing:-38.068800px;}
.ws7{word-spacing:-33.264000px;}
.ws5{word-spacing:-30.148800px;}
.ws12{word-spacing:-30.138000px;}
.wse{word-spacing:-30.079680px;}
.ws3{word-spacing:-30.065700px;}
.ws10{word-spacing:-30.024000px;}
.wsf{word-spacing:-29.988000px;}
.ws11{word-spacing:-29.929500px;}
.wsd{word-spacing:-29.540250px;}
.wsc{word-spacing:-28.814700px;}
.ws4{word-spacing:-26.312700px;}
.wsa{word-spacing:-23.810700px;}
.wsb{word-spacing:-23.769000px;}
.ws9{word-spacing:-20.057700px;}
.ws8{word-spacing:-20.016000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-12.013950px;}
._5{margin-left:-10.319550px;}
._8{margin-left:-8.455500px;}
._6{margin-left:-7.022550px;}
._2{margin-left:-4.504500px;}
._4{margin-left:-3.321000px;}
._0{margin-left:-1.534500px;}
._3{width:1.479000px;}
._1{width:2.920500px;}
._7{width:3.933150px;}
._9{width:4.950150px;}
._c{width:6.940500px;}
._a{width:32.739600px;}
.fc10{color:rgb(0,125,182);}
.fcf{color:rgb(231,232,227);}
.fce{color:rgb(51,94,110);}
.fcd{color:rgb(109,207,246);}
.fcb{color:rgb(240,102,105);}
.fc6{color:rgb(0,155,218);}
.fc1{color:rgb(254,255,255);}
.fc2{color:transparent;}
.fc9{color:rgb(128,150,166);}
.fc4{color:rgb(37,186,255);}
.fc0{color:rgb(129,151,166);}
.fc3{color:rgb(0,50,73);}
.fc5{color:rgb(121,144,157);}
.fc7{color:rgb(117,200,174);}
.fc8{color:rgb(51,94,111);}
.fca{color:rgb(217,217,217);}
.fcc{color:rgb(255,204,77);}
.fs1{font-size:49.500000px;}
.fs0{font-size:49.650000px;}
.fsb{font-size:72.000000px;}
.fs3{font-size:72.150000px;}
.fs9{font-size:85.500000px;}
.fs8{font-size:85.650000px;}
.fsa{font-size:94.500000px;}
.fs4{font-size:94.650000px;}
.fsc{font-size:103.650000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:108.150000px;}
.fs5{font-size:180.300000px;}
.fs2{font-size:184.650000px;}
.fsd{font-size:193.800000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:40.500000px;}
.y2{bottom:59.737500px;}
.y1{bottom:60.000000px;}
.y2d{bottom:66.750000px;}
.y2b{bottom:68.925000px;}
.y6a{bottom:72.037500px;}
.y22{bottom:75.300000px;}
.y4c{bottom:76.500000px;}
.y4f{bottom:79.837500px;}
.y4d{bottom:79.875000px;}
.y4b{bottom:79.905000px;}
.y48{bottom:79.950000px;}
.y46{bottom:79.995000px;}
.y44{bottom:80.025000px;}
.y42{bottom:80.070000px;}
.y40{bottom:80.100000px;}
.y3e{bottom:80.130000px;}
.y3c{bottom:80.175000px;}
.y3a{bottom:80.220000px;}
.y38{bottom:80.250000px;}
.y36{bottom:80.280000px;}
.y34{bottom:80.880000px;}
.y78{bottom:94.950000px;}
.y2c{bottom:96.037500px;}
.y2a{bottom:98.212500px;}
.y51{bottom:99.780000px;}
.y32{bottom:101.250000px;}
.y69{bottom:110.325000px;}
.y4a{bottom:112.500000px;}
.y21{bottom:120.337500px;}
.y29{bottom:129.112500px;}
.y77{bottom:133.237500px;}
.y5{bottom:133.500000px;}
.y5d{bottom:134.700000px;}
.y14{bottom:135.937500px;}
.y31{bottom:139.537500px;}
.y47{bottom:148.500000px;}
.y68{bottom:155.370000px;}
.y28{bottom:158.400000px;}
.y5c{bottom:159.450000px;}
.y13{bottom:160.725000px;}
.y20{bottom:165.375000px;}
.y24{bottom:174.150000px;}
.y6{bottom:176.100000px;}
.y30{bottom:176.700000px;}
.y76{bottom:178.275000px;}
.y45{bottom:184.500000px;}
.y11{bottom:197.025000px;}
.y23{bottom:198.900000px;}
.y2f{bottom:200.325000px;}
.y1f{bottom:210.450000px;}
.y5b{bottom:211.005000px;}
.y43{bottom:220.500000px;}
.y75{bottom:223.320000px;}
.y67{bottom:225.195000px;}
.y49{bottom:228.450000px;}
.y10{bottom:228.570000px;}
.y2e{bottom:239.745000px;}
.y1e{bottom:255.480000px;}
.y41{bottom:256.500000px;}
.yf{bottom:261.225000px;}
.y74{bottom:269.475000px;}
.y66{bottom:270.225000px;}
.y5a{bottom:275.025000px;}
.y3f{bottom:292.500000px;}
.ye{bottom:293.880000px;}
.y1d{bottom:300.525000px;}
.y73{bottom:314.505000px;}
.y3d{bottom:328.500000px;}
.y4{bottom:338.400000px;}
.y59{bottom:339.030000px;}
.y65{bottom:341.175000px;}
.y72{bottom:352.800000px;}
.y3b{bottom:364.500000px;}
.yd{bottom:371.595000px;}
.y64{bottom:379.470000px;}
.y1c{bottom:380.475000px;}
.y79{bottom:386.475000px;}
.y3{bottom:393.570000px;}
.y71{bottom:397.875000px;}
.y39{bottom:400.500000px;}
.y58{bottom:403.005000px;}
.yc{bottom:404.250000px;}
.y1b{bottom:419.880000px;}
.y37{bottom:436.500000px;}
.y70{bottom:442.905000px;}
.y63{bottom:449.280000px;}
.y57{bottom:454.695000px;}
.y1a{bottom:464.925000px;}
.y35{bottom:472.500000px;}
.y56{bottom:479.445000px;}
.yb{bottom:481.950000px;}
.y6f{bottom:487.950000px;}
.y62{bottom:494.325000px;}
.y19{bottom:510.000000px;}
.ya{bottom:514.620000px;}
.y55{bottom:518.670000px;}
.y33{bottom:528.750000px;}
.y6e{bottom:532.995000px;}
.y61{bottom:539.400000px;}
.y54{bottom:543.450000px;}
.y9{bottom:547.275000px;}
.y18{bottom:555.045000px;}
.y50{bottom:568.125000px;}
.y6d{bottom:571.275000px;}
.y53{bottom:582.675000px;}
.y60{bottom:584.445000px;}
.y17{bottom:598.950000px;}
.y12{bottom:601.575000px;}
.y52{bottom:607.425000px;}
.y6c{bottom:616.320000px;}
.y27{bottom:619.005000px;}
.y8{bottom:624.975000px;}
.y5f{bottom:629.475000px;}
.y16{bottom:633.870000px;}
.y26{bottom:651.675000px;}
.y6b{bottom:661.380000px;}
.y5e{bottom:674.505000px;}
.y25{bottom:678.450000px;}
.y15{bottom:678.900000px;}
.y7{bottom:741.405000px;}
.h2{height:36.182373px;}
.h1{height:36.292017px;}
.h4{height:52.738550px;}
.h13{height:62.496826px;}
.h12{height:62.606470px;}
.h10{height:64.404785px;}
.hb{height:65.377441px;}
.ha{height:65.492139px;}
.h16{height:69.075439px;}
.hd{height:69.185083px;}
.he{height:72.259277px;}
.h5{height:72.373975px;}
.h15{height:75.763696px;}
.h8{height:78.943359px;}
.h7{height:79.053003px;}
.h17{height:81.210938px;}
.hc{height:81.323730px;}
.h9{height:82.696729px;}
.h6{height:135.577148px;}
.h3{height:138.848145px;}
.h18{height:148.188867px;}
.h11{height:176.625000px;}
.hf{height:177.750000px;}
.h14{height:220.500000px;}
.h0{height:810.000000px;}
.w8{width:95.625000px;}
.w9{width:137.250000px;}
.w7{width:140.625000px;}
.w3{width:150.750000px;}
.w4{width:153.000000px;}
.w5{width:158.625000px;}
.w6{width:165.375000px;}
.w2{width:191.250000px;}
.wa{width:303.750000px;}
.w1{width:1444.499978px;}
.w0{width:1444.500000px;}
.x0{left:0.000000px;}
.x15{left:11.362500px;}
.x1f{left:12.375000px;}
.xa{left:13.649978px;}
.x2{left:25.237478px;}
.x6{left:31.874978px;}
.x5{left:36.337478px;}
.x25{left:44.587478px;}
.xb{left:47.437478px;}
.x7{left:65.662478px;}
.x23{left:103.162478px;}
.xc{left:106.012478px;}
.x14{left:124.237478px;}
.x26{left:136.949978px;}
.xe{left:139.799978px;}
.x1d{left:161.399978px;}
.x24{left:171.329978px;}
.xd{left:174.179978px;}
.x4{left:228.254978px;}
.x16{left:295.875000px;}
.x12{left:436.244978px;}
.x17{left:445.500000px;}
.x22{left:460.319978px;}
.x28{left:574.004978px;}
.x18{left:597.375000px;}
.x9{left:752.624978px;}
.x19{left:754.875000px;}
.x13{left:791.879978px;}
.x11{left:829.349978px;}
.x1e{left:834.750000px;}
.x1a{left:919.125000px;}
.x3{left:923.099978px;}
.x20{left:958.500000px;}
.xf{left:996.524978px;}
.x1b{left:1058.625000px;}
.x10{left:1097.444978px;}
.x21{left:1122.750000px;}
.x8{left:1129.694978px;}
.x1c{left:1198.125000px;}
.x27{left:1400.174978px;}
.x1{left:1406.924978px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.538667pt;}
.lse{letter-spacing:-0.121067pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012427pt;}
.ls9{letter-spacing:0.085867pt;}
.lsc{letter-spacing:0.101333pt;}
.ls8{letter-spacing:0.644933pt;}
.ls7{letter-spacing:1.274667pt;}
.ls5{letter-spacing:1.434667pt;}
.ls6{letter-spacing:86.460000pt;}
.ls1{letter-spacing:86.486667pt;}
.ls4{letter-spacing:86.513333pt;}
.ls3{letter-spacing:86.533333pt;}
.ls2{letter-spacing:86.560000pt;}
.ws6{word-spacing:-160.266667pt;}
.ws1{word-spacing:-44.554133pt;}
.ws2{word-spacing:-33.838933pt;}
.ws7{word-spacing:-29.568000pt;}
.ws5{word-spacing:-26.798933pt;}
.ws12{word-spacing:-26.789333pt;}
.wse{word-spacing:-26.737493pt;}
.ws3{word-spacing:-26.725067pt;}
.ws10{word-spacing:-26.688000pt;}
.wsf{word-spacing:-26.656000pt;}
.ws11{word-spacing:-26.604000pt;}
.wsd{word-spacing:-26.258000pt;}
.wsc{word-spacing:-25.613067pt;}
.ws4{word-spacing:-23.389067pt;}
.wsa{word-spacing:-21.165067pt;}
.wsb{word-spacing:-21.128000pt;}
.ws9{word-spacing:-17.829067pt;}
.ws8{word-spacing:-17.792000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-10.679067pt;}
._5{margin-left:-9.172933pt;}
._8{margin-left:-7.516000pt;}
._6{margin-left:-6.242267pt;}
._2{margin-left:-4.004000pt;}
._4{margin-left:-2.952000pt;}
._0{margin-left:-1.364000pt;}
._3{width:1.314667pt;}
._1{width:2.596000pt;}
._7{width:3.496133pt;}
._9{width:4.400133pt;}
._c{width:6.169333pt;}
._a{width:29.101867pt;}
.fs1{font-size:44.000000pt;}
.fs0{font-size:44.133333pt;}
.fsb{font-size:64.000000pt;}
.fs3{font-size:64.133333pt;}
.fs9{font-size:76.000000pt;}
.fs8{font-size:76.133333pt;}
.fsa{font-size:84.000000pt;}
.fs4{font-size:84.133333pt;}
.fsc{font-size:92.133333pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:96.133333pt;}
.fs5{font-size:160.266667pt;}
.fs2{font-size:164.133333pt;}
.fsd{font-size:172.266667pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:36.000000pt;}
.y2{bottom:53.100000pt;}
.y1{bottom:53.333333pt;}
.y2d{bottom:59.333333pt;}
.y2b{bottom:61.266667pt;}
.y6a{bottom:64.033333pt;}
.y22{bottom:66.933333pt;}
.y4c{bottom:68.000000pt;}
.y4f{bottom:70.966667pt;}
.y4d{bottom:71.000000pt;}
.y4b{bottom:71.026667pt;}
.y48{bottom:71.066667pt;}
.y46{bottom:71.106667pt;}
.y44{bottom:71.133333pt;}
.y42{bottom:71.173333pt;}
.y40{bottom:71.200000pt;}
.y3e{bottom:71.226667pt;}
.y3c{bottom:71.266667pt;}
.y3a{bottom:71.306667pt;}
.y38{bottom:71.333333pt;}
.y36{bottom:71.360000pt;}
.y34{bottom:71.893333pt;}
.y78{bottom:84.400000pt;}
.y2c{bottom:85.366667pt;}
.y2a{bottom:87.300000pt;}
.y51{bottom:88.693333pt;}
.y32{bottom:90.000000pt;}
.y69{bottom:98.066667pt;}
.y4a{bottom:100.000000pt;}
.y21{bottom:106.966667pt;}
.y29{bottom:114.766667pt;}
.y77{bottom:118.433333pt;}
.y5{bottom:118.666667pt;}
.y5d{bottom:119.733333pt;}
.y14{bottom:120.833333pt;}
.y31{bottom:124.033333pt;}
.y47{bottom:132.000000pt;}
.y68{bottom:138.106667pt;}
.y28{bottom:140.800000pt;}
.y5c{bottom:141.733333pt;}
.y13{bottom:142.866667pt;}
.y20{bottom:147.000000pt;}
.y24{bottom:154.800000pt;}
.y6{bottom:156.533333pt;}
.y30{bottom:157.066667pt;}
.y76{bottom:158.466667pt;}
.y45{bottom:164.000000pt;}
.y11{bottom:175.133333pt;}
.y23{bottom:176.800000pt;}
.y2f{bottom:178.066667pt;}
.y1f{bottom:187.066667pt;}
.y5b{bottom:187.560000pt;}
.y43{bottom:196.000000pt;}
.y75{bottom:198.506667pt;}
.y67{bottom:200.173333pt;}
.y49{bottom:203.066667pt;}
.y10{bottom:203.173333pt;}
.y2e{bottom:213.106667pt;}
.y1e{bottom:227.093333pt;}
.y41{bottom:228.000000pt;}
.yf{bottom:232.200000pt;}
.y74{bottom:239.533333pt;}
.y66{bottom:240.200000pt;}
.y5a{bottom:244.466667pt;}
.y3f{bottom:260.000000pt;}
.ye{bottom:261.226667pt;}
.y1d{bottom:267.133333pt;}
.y73{bottom:279.560000pt;}
.y3d{bottom:292.000000pt;}
.y4{bottom:300.800000pt;}
.y59{bottom:301.360000pt;}
.y65{bottom:303.266667pt;}
.y72{bottom:313.600000pt;}
.y3b{bottom:324.000000pt;}
.yd{bottom:330.306667pt;}
.y64{bottom:337.306667pt;}
.y1c{bottom:338.200000pt;}
.y79{bottom:343.533333pt;}
.y3{bottom:349.840000pt;}
.y71{bottom:353.666667pt;}
.y39{bottom:356.000000pt;}
.y58{bottom:358.226667pt;}
.yc{bottom:359.333333pt;}
.y1b{bottom:373.226667pt;}
.y37{bottom:388.000000pt;}
.y70{bottom:393.693333pt;}
.y63{bottom:399.360000pt;}
.y57{bottom:404.173333pt;}
.y1a{bottom:413.266667pt;}
.y35{bottom:420.000000pt;}
.y56{bottom:426.173333pt;}
.yb{bottom:428.400000pt;}
.y6f{bottom:433.733333pt;}
.y62{bottom:439.400000pt;}
.y19{bottom:453.333333pt;}
.ya{bottom:457.440000pt;}
.y55{bottom:461.040000pt;}
.y33{bottom:470.000000pt;}
.y6e{bottom:473.773333pt;}
.y61{bottom:479.466667pt;}
.y54{bottom:483.066667pt;}
.y9{bottom:486.466667pt;}
.y18{bottom:493.373333pt;}
.y50{bottom:505.000000pt;}
.y6d{bottom:507.800000pt;}
.y53{bottom:517.933333pt;}
.y60{bottom:519.506667pt;}
.y17{bottom:532.400000pt;}
.y12{bottom:534.733333pt;}
.y52{bottom:539.933333pt;}
.y6c{bottom:547.840000pt;}
.y27{bottom:550.226667pt;}
.y8{bottom:555.533333pt;}
.y5f{bottom:559.533333pt;}
.y16{bottom:563.440000pt;}
.y26{bottom:579.266667pt;}
.y6b{bottom:587.893333pt;}
.y5e{bottom:599.560000pt;}
.y25{bottom:603.066667pt;}
.y15{bottom:603.466667pt;}
.y7{bottom:659.026667pt;}
.h2{height:32.162109pt;}
.h1{height:32.259570pt;}
.h4{height:46.878711pt;}
.h13{height:55.552734pt;}
.h12{height:55.650195pt;}
.h10{height:57.248698pt;}
.hb{height:58.113281pt;}
.ha{height:58.215234pt;}
.h16{height:61.400391pt;}
.hd{height:61.497852pt;}
.he{height:64.230469pt;}
.h5{height:64.332422pt;}
.h15{height:67.345508pt;}
.h8{height:70.171875pt;}
.h7{height:70.269336pt;}
.h17{height:72.187500pt;}
.hc{height:72.287760pt;}
.h9{height:73.508203pt;}
.h6{height:120.513021pt;}
.h3{height:123.420573pt;}
.h18{height:131.723437pt;}
.h11{height:157.000000pt;}
.hf{height:158.000000pt;}
.h14{height:196.000000pt;}
.h0{height:720.000000pt;}
.w8{width:85.000000pt;}
.w9{width:122.000000pt;}
.w7{width:125.000000pt;}
.w3{width:134.000000pt;}
.w4{width:136.000000pt;}
.w5{width:141.000000pt;}
.w6{width:147.000000pt;}
.w2{width:170.000000pt;}
.wa{width:270.000000pt;}
.w1{width:1283.999981pt;}
.w0{width:1284.000000pt;}
.x0{left:0.000000pt;}
.x15{left:10.100000pt;}
.x1f{left:11.000000pt;}
.xa{left:12.133314pt;}
.x2{left:22.433314pt;}
.x6{left:28.333314pt;}
.x5{left:32.299981pt;}
.x25{left:39.633314pt;}
.xb{left:42.166648pt;}
.x7{left:58.366648pt;}
.x23{left:91.699981pt;}
.xc{left:94.233314pt;}
.x14{left:110.433314pt;}
.x26{left:121.733314pt;}
.xe{left:124.266648pt;}
.x1d{left:143.466648pt;}
.x24{left:152.293314pt;}
.xd{left:154.826648pt;}
.x4{left:202.893314pt;}
.x16{left:263.000000pt;}
.x12{left:387.773314pt;}
.x17{left:396.000000pt;}
.x22{left:409.173314pt;}
.x28{left:510.226648pt;}
.x18{left:531.000000pt;}
.x9{left:668.999981pt;}
.x19{left:671.000000pt;}
.x13{left:703.893314pt;}
.x11{left:737.199981pt;}
.x1e{left:742.000000pt;}
.x1a{left:817.000000pt;}
.x3{left:820.533314pt;}
.x20{left:852.000000pt;}
.xf{left:885.799981pt;}
.x1b{left:941.000000pt;}
.x10{left:975.506648pt;}
.x21{left:998.000000pt;}
.x8{left:1004.173314pt;}
.x1c{left:1065.000000pt;}
.x27{left:1244.599981pt;}
.x1{left:1250.599981pt;}
}




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