
    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_9cb9ede1f28491889cacb076.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_3fa2ad47a36048e84acc85b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_bcdcf0fa4be4f04429c42be4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_df5e747fff79aaf483b77731.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_e2246563a5207e192f85e3da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.057617;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_b21b5c7df718b1a077522f6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_42554107275b7090118ef705.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854004;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_35138757e00aed806ef0907e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.326000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.468000px;}
.ls8{letter-spacing:0.888000px;}
.ls2{letter-spacing:1.368000px;}
.ls6{letter-spacing:2.164500px;}
.ls9{letter-spacing:2.196000px;}
.ls7{letter-spacing:2.250000px;}
.ls0{letter-spacing:33.954000px;}
.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;}
}
.ws2{word-spacing:-18.468000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.875000px;}
.ws8{word-spacing:-16.821000px;}
.ws5{word-spacing:-16.789500px;}
.ws7{word-spacing:-15.513000px;}
.ws4{word-spacing:-14.625000px;}
.ws3{word-spacing:-13.518000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-5.235600px;}
._b{margin-left:-4.224000px;}
._4{margin-left:-2.954400px;}
._1{margin-left:-1.512000px;}
._0{width:1.298400px;}
._3{width:2.793600px;}
._6{width:4.101600px;}
._2{width:5.107200px;}
._9{width:6.388800px;}
._a{width:7.662000px;}
._7{width:8.738400px;}
._8{width:9.796800px;}
._5{width:13.689600px;}
._d{width:17.995200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs3{font-size:58.500000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:81.150000px;}
.y0{bottom:0.000000px;}
.y32{bottom:4.485000px;}
.ybb{bottom:4.492500px;}
.yd{bottom:4.500000px;}
.y96{bottom:4.507500px;}
.y19{bottom:4.515000px;}
.y71{bottom:4.530000px;}
.y1e{bottom:4.537500px;}
.y9b{bottom:4.545000px;}
.y21{bottom:9.000000px;}
.y1c{bottom:9.045000px;}
.y14{bottom:10.125000px;}
.y10{bottom:10.140000px;}
.y2d{bottom:10.155000px;}
.yb{bottom:10.170000px;}
.y6f{bottom:24.795000px;}
.y23{bottom:33.750000px;}
.y35{bottom:33.780000px;}
.y27{bottom:34.920000px;}
.y12{bottom:57.405000px;}
.y2f{bottom:57.412500px;}
.y16{bottom:57.420000px;}
.y1f{bottom:57.450000px;}
.y1a{bottom:57.465000px;}
.y25{bottom:58.545000px;}
.ye{bottom:58.575000px;}
.y2b{bottom:58.590000px;}
.ybd{bottom:85.575000px;}
.y99{bottom:86.700000px;}
.y20{bottom:87.825000px;}
.y29{bottom:96.825000px;}
.ybc{bottom:106.950000px;}
.y98{bottom:108.075000px;}
.y50{bottom:115.950000px;}
.y1d{bottom:121.575000px;}
.y97{bottom:128.362500px;}
.y6d{bottom:130.612500px;}
.y4f{bottom:137.362500px;}
.yba{bottom:148.612500px;}
.y95{bottom:149.737500px;}
.y6c{bottom:151.995000px;}
.y4a{bottom:159.855000px;}
.y4e{bottom:163.230000px;}
.yb9{bottom:170.025000px;}
.y94{bottom:171.150000px;}
.y13{bottom:179.025000px;}
.y6b{bottom:184.650000px;}
.y49{bottom:185.775000px;}
.y56{bottom:188.025000px;}
.y93{bottom:191.400000px;}
.y6a{bottom:209.445000px;}
.y48{bottom:210.570000px;}
.yb8{bottom:211.695000px;}
.y55{bottom:212.820000px;}
.y11{bottom:213.945000px;}
.yb7{bottom:233.070000px;}
.y92{bottom:234.195000px;}
.y5b{bottom:240.945000px;}
.y44{bottom:253.350000px;}
.y47{bottom:254.475000px;}
.yb6{bottom:274.725000px;}
.y91{bottom:275.850000px;}
.y5a{bottom:280.350000px;}
.y67{bottom:290.475000px;}
.y43{bottom:292.755000px;}
.yb5{bottom:296.130000px;}
.y90{bottom:297.255000px;}
.y59{bottom:306.255000px;}
.y66{bottom:311.895000px;}
.y42{bottom:314.130000px;}
.y8f{bottom:317.505000px;}
.y65{bottom:333.300000px;}
.y41{bottom:334.425000px;}
.y46{bottom:335.550000px;}
.yb4{bottom:337.800000px;}
.y8e{bottom:338.925000px;}
.y34{bottom:344.550000px;}
.y38{bottom:354.675000px;}
.y64{bottom:358.050000px;}
.y69{bottom:359.175000px;}
.y40{bottom:360.300000px;}
.y37{bottom:380.580000px;}
.y5f{bottom:395.205000px;}
.yb3{bottom:400.830000px;}
.y26{bottom:401.955000px;}
.y2e{bottom:416.625000px;}
.y8d{bottom:422.250000px;}
.y36{bottom:423.375000px;}
.y28{bottom:426.750000px;}
.y3b{bottom:431.250000px;}
.y5e{bottom:433.500000px;}
.yb2{bottom:442.500000px;}
.y8c{bottom:443.625000px;}
.y1b{bottom:451.500000px;}
.y3a{bottom:452.625000px;}
.y5d{bottom:454.875000px;}
.y24{bottom:460.530000px;}
.yb1{bottom:463.905000px;}
.y8b{bottom:465.030000px;}
.y39{bottom:478.530000px;}
.y5c{bottom:479.670000px;}
.y18{bottom:485.280000px;}
.yb0{bottom:505.575000px;}
.y54{bottom:506.700000px;}
.y63{bottom:515.700000px;}
.y3f{bottom:517.950000px;}
.yaf{bottom:526.950000px;}
.y53{bottom:528.075000px;}
.y62{bottom:537.075000px;}
.y3e{bottom:539.325000px;}
.yf{bottom:542.730000px;}
.y8a{bottom:548.355000px;}
.y52{bottom:549.495000px;}
.y61{bottom:558.480000px;}
.y45{bottom:559.620000px;}
.y3d{bottom:560.745000px;}
.yae{bottom:568.605000px;}
.y89{bottom:569.730000px;}
.y51{bottom:574.245000px;}
.yc{bottom:576.495000px;}
.y68{bottom:583.275000px;}
.y60{bottom:584.400000px;}
.y3c{bottom:585.525000px;}
.yad{bottom:590.025000px;}
.y88{bottom:591.150000px;}
.y87{bottom:611.400000px;}
.yac{bottom:631.695000px;}
.y86{bottom:632.820000px;}
.yab{bottom:653.070000px;}
.y85{bottom:654.195000px;}
.ybe{bottom:656.445000px;}
.y84{bottom:674.475000px;}
.yaa{bottom:694.725000px;}
.y83{bottom:695.850000px;}
.ya9{bottom:716.130000px;}
.y82{bottom:717.255000px;}
.y4d{bottom:719.520000px;}
.y33{bottom:731.880000px;}
.y81{bottom:737.505000px;}
.y58{bottom:739.770000px;}
.y4c{bottom:740.880000px;}
.ya8{bottom:757.800000px;}
.y80{bottom:758.925000px;}
.y57{bottom:765.675000px;}
.y4b{bottom:766.800000px;}
.ya7{bottom:779.175000px;}
.y2c{bottom:780.300000px;}
.y22{bottom:790.455000px;}
.y31{bottom:790.470000px;}
.y7f{bottom:800.580000px;}
.y17{bottom:814.080000px;}
.ya6{bottom:820.830000px;}
.y7e{bottom:821.955000px;}
.ya5{bottom:842.250000px;}
.y7d{bottom:843.375000px;}
.y15{bottom:849.000000px;}
.y7c{bottom:863.625000px;}
.ya4{bottom:883.920000px;}
.y7b{bottom:885.045000px;}
.ya{bottom:903.030000px;}
.ya3{bottom:905.295000px;}
.y7a{bottom:906.405000px;}
.y79{bottom:926.700000px;}
.y9{bottom:945.825000px;}
.ya2{bottom:946.950000px;}
.y78{bottom:948.075000px;}
.ya1{bottom:968.370000px;}
.y77{bottom:969.495000px;}
.y8{bottom:986.370000px;}
.y76{bottom:989.730000px;}
.ya0{bottom:1010.025000px;}
.y7{bottom:1011.150000px;}
.y75{bottom:1031.400000px;}
.y6{bottom:1034.775000px;}
.y9f{bottom:1051.695000px;}
.y74{bottom:1052.820000px;}
.y5{bottom:1059.570000px;}
.y9e{bottom:1073.070000px;}
.y73{bottom:1074.195000px;}
.y4{bottom:1083.225000px;}
.y72{bottom:1094.475000px;}
.y3{bottom:1107.975000px;}
.y9d{bottom:1114.725000px;}
.y70{bottom:1115.850000px;}
.y30{bottom:1120.380000px;}
.y2{bottom:1132.755000px;}
.y9c{bottom:1136.130000px;}
.y6e{bottom:1137.255000px;}
.y2a{bottom:1144.005000px;}
.y1{bottom:1156.380000px;}
.y9a{bottom:1157.505000px;}
.h1b{height:19.162500px;}
.h1a{height:20.235000px;}
.h19{height:20.250000px;}
.h1c{height:20.272500px;}
.h18{height:20.287500px;}
.he{height:32.625000px;}
.hd{height:32.662500px;}
.hb{height:33.750000px;}
.h9{height:33.787500px;}
.h15{height:39.260742px;}
.h8{height:39.418945px;}
.h17{height:40.537500px;}
.h13{height:42.532471px;}
.h14{height:42.703857px;}
.h3{height:52.347656px;}
.h4{height:52.558594px;}
.h5{height:52.769531px;}
.h6{height:55.863281px;}
.hf{height:57.412500px;}
.h12{height:57.450000px;}
.h10{height:58.575000px;}
.h2{height:59.237915px;}
.h16{height:60.855469px;}
.h7{height:74.953125px;}
.ha{height:325.410000px;}
.h11{height:328.755000px;}
.hc{height:328.800000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w6{width:87.862500px;}
.w5{width:94.650000px;}
.w8{width:125.062500px;}
.w7{width:128.400000px;}
.w9{width:143.062500px;}
.w4{width:301.875000px;}
.w3{width:397.650000px;}
.w2{width:700.650000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.912500px;}
.x3c{left:8.985000px;}
.x2c{left:10.162500px;}
.x41{left:11.280000px;}
.x29{left:12.412500px;}
.x2b{left:13.537500px;}
.x27{left:15.787500px;}
.x16{left:16.912500px;}
.x25{left:20.287500px;}
.x1e{left:21.412500px;}
.x1a{left:24.780000px;}
.x43{left:28.170000px;}
.x3e{left:29.280000px;}
.x26{left:32.700000px;}
.x18{left:33.825000px;}
.x14{left:34.950000px;}
.x24{left:37.200000px;}
.x3f{left:45.075000px;}
.x11{left:52.950000px;}
.xb{left:54.075000px;}
.x1f{left:56.325000px;}
.x10{left:57.450000px;}
.xd{left:75.495000px;}
.x9{left:93.525000px;}
.x5{left:96.900000px;}
.x3{left:127.274987px;}
.x4{left:128.400000px;}
.x31{left:154.304987px;}
.x1{left:181.349987px;}
.xc{left:199.380000px;}
.x2d{left:219.675000px;}
.x2a{left:221.925000px;}
.x3a{left:223.050000px;}
.x2{left:235.424987px;}
.x28{left:237.720000px;}
.x20{left:266.970000px;}
.x22{left:268.125000px;}
.x23{left:291.750000px;}
.x8{left:296.250000px;}
.x13{left:298.500000px;}
.x1c{left:300.750000px;}
.x3b{left:310.920000px;}
.xf{left:316.530000px;}
.x19{left:318.795000px;}
.x21{left:390.900000px;}
.x6{left:395.400000px;}
.xa{left:397.650000px;}
.x17{left:402.150000px;}
.x1b{left:406.650000px;}
.x15{left:408.900000px;}
.x12{left:413.400000px;}
.xe{left:420.195000px;}
.x3d{left:440.445000px;}
.x7{left:527.175000px;}
.x40{left:569.970000px;}
.x42{left:695.025000px;}
.x33{left:744.569987px;}
.x37{left:796.379987px;}
.x32{left:803.129987px;}
.x36{left:814.424987px;}
.x38{left:823.424987px;}
.x2f{left:825.674987px;}
.x34{left:826.799987px;}
.x2e{left:830.174987px;}
.x30{left:832.424987px;}
.x35{left:834.674987px;}
.x39{left:836.954987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.178667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.416000pt;}
.ls8{letter-spacing:0.789333pt;}
.ls2{letter-spacing:1.216000pt;}
.ls6{letter-spacing:1.924000pt;}
.ls9{letter-spacing:1.952000pt;}
.ls7{letter-spacing:2.000000pt;}
.ls0{letter-spacing:30.181333pt;}
.ws2{word-spacing:-16.416000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.000000pt;}
.ws8{word-spacing:-14.952000pt;}
.ws5{word-spacing:-14.924000pt;}
.ws7{word-spacing:-13.789333pt;}
.ws4{word-spacing:-13.000000pt;}
.ws3{word-spacing:-12.016000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-4.653867pt;}
._b{margin-left:-3.754667pt;}
._4{margin-left:-2.626133pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.154133pt;}
._3{width:2.483200pt;}
._6{width:3.645867pt;}
._2{width:4.539733pt;}
._9{width:5.678933pt;}
._a{width:6.810667pt;}
._7{width:7.767467pt;}
._8{width:8.708267pt;}
._5{width:12.168533pt;}
._d{width:15.995733pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:52.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:72.133333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.986667pt;}
.ybb{bottom:3.993333pt;}
.yd{bottom:4.000000pt;}
.y96{bottom:4.006667pt;}
.y19{bottom:4.013333pt;}
.y71{bottom:4.026667pt;}
.y1e{bottom:4.033333pt;}
.y9b{bottom:4.040000pt;}
.y21{bottom:8.000000pt;}
.y1c{bottom:8.040000pt;}
.y14{bottom:9.000000pt;}
.y10{bottom:9.013333pt;}
.y2d{bottom:9.026667pt;}
.yb{bottom:9.040000pt;}
.y6f{bottom:22.040000pt;}
.y23{bottom:30.000000pt;}
.y35{bottom:30.026667pt;}
.y27{bottom:31.040000pt;}
.y12{bottom:51.026667pt;}
.y2f{bottom:51.033333pt;}
.y16{bottom:51.040000pt;}
.y1f{bottom:51.066667pt;}
.y1a{bottom:51.080000pt;}
.y25{bottom:52.040000pt;}
.ye{bottom:52.066667pt;}
.y2b{bottom:52.080000pt;}
.ybd{bottom:76.066667pt;}
.y99{bottom:77.066667pt;}
.y20{bottom:78.066667pt;}
.y29{bottom:86.066667pt;}
.ybc{bottom:95.066667pt;}
.y98{bottom:96.066667pt;}
.y50{bottom:103.066667pt;}
.y1d{bottom:108.066667pt;}
.y97{bottom:114.100000pt;}
.y6d{bottom:116.100000pt;}
.y4f{bottom:122.100000pt;}
.yba{bottom:132.100000pt;}
.y95{bottom:133.100000pt;}
.y6c{bottom:135.106667pt;}
.y4a{bottom:142.093333pt;}
.y4e{bottom:145.093333pt;}
.yb9{bottom:151.133333pt;}
.y94{bottom:152.133333pt;}
.y13{bottom:159.133333pt;}
.y6b{bottom:164.133333pt;}
.y49{bottom:165.133333pt;}
.y56{bottom:167.133333pt;}
.y93{bottom:170.133333pt;}
.y6a{bottom:186.173333pt;}
.y48{bottom:187.173333pt;}
.yb8{bottom:188.173333pt;}
.y55{bottom:189.173333pt;}
.y11{bottom:190.173333pt;}
.yb7{bottom:207.173333pt;}
.y92{bottom:208.173333pt;}
.y5b{bottom:214.173333pt;}
.y44{bottom:225.200000pt;}
.y47{bottom:226.200000pt;}
.yb6{bottom:244.200000pt;}
.y91{bottom:245.200000pt;}
.y5a{bottom:249.200000pt;}
.y67{bottom:258.200000pt;}
.y43{bottom:260.226667pt;}
.yb5{bottom:263.226667pt;}
.y90{bottom:264.226667pt;}
.y59{bottom:272.226667pt;}
.y66{bottom:277.240000pt;}
.y42{bottom:279.226667pt;}
.y8f{bottom:282.226667pt;}
.y65{bottom:296.266667pt;}
.y41{bottom:297.266667pt;}
.y46{bottom:298.266667pt;}
.yb4{bottom:300.266667pt;}
.y8e{bottom:301.266667pt;}
.y34{bottom:306.266667pt;}
.y38{bottom:315.266667pt;}
.y64{bottom:318.266667pt;}
.y69{bottom:319.266667pt;}
.y40{bottom:320.266667pt;}
.y37{bottom:338.293333pt;}
.y5f{bottom:351.293333pt;}
.yb3{bottom:356.293333pt;}
.y26{bottom:357.293333pt;}
.y2e{bottom:370.333333pt;}
.y8d{bottom:375.333333pt;}
.y36{bottom:376.333333pt;}
.y28{bottom:379.333333pt;}
.y3b{bottom:383.333333pt;}
.y5e{bottom:385.333333pt;}
.yb2{bottom:393.333333pt;}
.y8c{bottom:394.333333pt;}
.y1b{bottom:401.333333pt;}
.y3a{bottom:402.333333pt;}
.y5d{bottom:404.333333pt;}
.y24{bottom:409.360000pt;}
.yb1{bottom:412.360000pt;}
.y8b{bottom:413.360000pt;}
.y39{bottom:425.360000pt;}
.y5c{bottom:426.373333pt;}
.y18{bottom:431.360000pt;}
.yb0{bottom:449.400000pt;}
.y54{bottom:450.400000pt;}
.y63{bottom:458.400000pt;}
.y3f{bottom:460.400000pt;}
.yaf{bottom:468.400000pt;}
.y53{bottom:469.400000pt;}
.y62{bottom:477.400000pt;}
.y3e{bottom:479.400000pt;}
.yf{bottom:482.426667pt;}
.y8a{bottom:487.426667pt;}
.y52{bottom:488.440000pt;}
.y61{bottom:496.426667pt;}
.y45{bottom:497.440000pt;}
.y3d{bottom:498.440000pt;}
.yae{bottom:505.426667pt;}
.y89{bottom:506.426667pt;}
.y51{bottom:510.440000pt;}
.yc{bottom:512.440000pt;}
.y68{bottom:518.466667pt;}
.y60{bottom:519.466667pt;}
.y3c{bottom:520.466667pt;}
.yad{bottom:524.466667pt;}
.y88{bottom:525.466667pt;}
.y87{bottom:543.466667pt;}
.yac{bottom:561.506667pt;}
.y86{bottom:562.506667pt;}
.yab{bottom:580.506667pt;}
.y85{bottom:581.506667pt;}
.ybe{bottom:583.506667pt;}
.y84{bottom:599.533333pt;}
.yaa{bottom:617.533333pt;}
.y83{bottom:618.533333pt;}
.ya9{bottom:636.560000pt;}
.y82{bottom:637.560000pt;}
.y4d{bottom:639.573333pt;}
.y33{bottom:650.560000pt;}
.y81{bottom:655.560000pt;}
.y58{bottom:657.573333pt;}
.y4c{bottom:658.560000pt;}
.ya8{bottom:673.600000pt;}
.y80{bottom:674.600000pt;}
.y57{bottom:680.600000pt;}
.y4b{bottom:681.600000pt;}
.ya7{bottom:692.600000pt;}
.y2c{bottom:693.600000pt;}
.y22{bottom:702.626667pt;}
.y31{bottom:702.640000pt;}
.y7f{bottom:711.626667pt;}
.y17{bottom:723.626667pt;}
.ya6{bottom:729.626667pt;}
.y7e{bottom:730.626667pt;}
.ya5{bottom:748.666667pt;}
.y7d{bottom:749.666667pt;}
.y15{bottom:754.666667pt;}
.y7c{bottom:767.666667pt;}
.ya4{bottom:785.706667pt;}
.y7b{bottom:786.706667pt;}
.ya{bottom:802.693333pt;}
.ya3{bottom:804.706667pt;}
.y7a{bottom:805.693333pt;}
.y79{bottom:823.733333pt;}
.y9{bottom:840.733333pt;}
.ya2{bottom:841.733333pt;}
.y78{bottom:842.733333pt;}
.ya1{bottom:860.773333pt;}
.y77{bottom:861.773333pt;}
.y8{bottom:876.773333pt;}
.y76{bottom:879.760000pt;}
.ya0{bottom:897.800000pt;}
.y7{bottom:898.800000pt;}
.y75{bottom:916.800000pt;}
.y6{bottom:919.800000pt;}
.y9f{bottom:934.840000pt;}
.y74{bottom:935.840000pt;}
.y5{bottom:941.840000pt;}
.y9e{bottom:953.840000pt;}
.y73{bottom:954.840000pt;}
.y4{bottom:962.866667pt;}
.y72{bottom:972.866667pt;}
.y3{bottom:984.866667pt;}
.y9d{bottom:990.866667pt;}
.y70{bottom:991.866667pt;}
.y30{bottom:995.893333pt;}
.y2{bottom:1006.893333pt;}
.y9c{bottom:1009.893333pt;}
.y6e{bottom:1010.893333pt;}
.y2a{bottom:1016.893333pt;}
.y1{bottom:1027.893333pt;}
.y9a{bottom:1028.893333pt;}
.h1b{height:17.033333pt;}
.h1a{height:17.986667pt;}
.h19{height:18.000000pt;}
.h1c{height:18.020000pt;}
.h18{height:18.033333pt;}
.he{height:29.000000pt;}
.hd{height:29.033333pt;}
.hb{height:30.000000pt;}
.h9{height:30.033333pt;}
.h15{height:34.898438pt;}
.h8{height:35.039062pt;}
.h17{height:36.033333pt;}
.h13{height:37.806641pt;}
.h14{height:37.958984pt;}
.h3{height:46.531250pt;}
.h4{height:46.718750pt;}
.h5{height:46.906250pt;}
.h6{height:49.656250pt;}
.hf{height:51.033333pt;}
.h12{height:51.066667pt;}
.h10{height:52.066667pt;}
.h2{height:52.655924pt;}
.h16{height:54.093750pt;}
.h7{height:66.625000pt;}
.ha{height:289.253333pt;}
.h11{height:292.226667pt;}
.hc{height:292.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w6{width:78.100000pt;}
.w5{width:84.133333pt;}
.w8{width:111.166667pt;}
.w7{width:114.133333pt;}
.w9{width:127.166667pt;}
.w4{width:268.333333pt;}
.w3{width:353.466667pt;}
.w2{width:622.800000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.033333pt;}
.x3c{left:7.986667pt;}
.x2c{left:9.033333pt;}
.x41{left:10.026667pt;}
.x29{left:11.033333pt;}
.x2b{left:12.033333pt;}
.x27{left:14.033333pt;}
.x16{left:15.033333pt;}
.x25{left:18.033333pt;}
.x1e{left:19.033333pt;}
.x1a{left:22.026667pt;}
.x43{left:25.040000pt;}
.x3e{left:26.026667pt;}
.x26{left:29.066667pt;}
.x18{left:30.066667pt;}
.x14{left:31.066667pt;}
.x24{left:33.066667pt;}
.x3f{left:40.066667pt;}
.x11{left:47.066667pt;}
.xb{left:48.066667pt;}
.x1f{left:50.066667pt;}
.x10{left:51.066667pt;}
.xd{left:67.106667pt;}
.x9{left:83.133333pt;}
.x5{left:86.133333pt;}
.x3{left:113.133322pt;}
.x4{left:114.133333pt;}
.x31{left:137.159988pt;}
.x1{left:161.199988pt;}
.xc{left:177.226667pt;}
.x2d{left:195.266667pt;}
.x2a{left:197.266667pt;}
.x3a{left:198.266667pt;}
.x2{left:209.266655pt;}
.x28{left:211.306667pt;}
.x20{left:237.306667pt;}
.x22{left:238.333333pt;}
.x23{left:259.333333pt;}
.x8{left:263.333333pt;}
.x13{left:265.333333pt;}
.x1c{left:267.333333pt;}
.x3b{left:276.373333pt;}
.xf{left:281.360000pt;}
.x19{left:283.373333pt;}
.x21{left:347.466667pt;}
.x6{left:351.466667pt;}
.xa{left:353.466667pt;}
.x17{left:357.466667pt;}
.x1b{left:361.466667pt;}
.x15{left:363.466667pt;}
.x12{left:367.466667pt;}
.xe{left:373.506667pt;}
.x3d{left:391.506667pt;}
.x7{left:468.600000pt;}
.x40{left:506.640000pt;}
.x42{left:617.800000pt;}
.x33{left:661.839988pt;}
.x37{left:707.893322pt;}
.x32{left:713.893322pt;}
.x36{left:723.933322pt;}
.x38{left:731.933322pt;}
.x2f{left:733.933322pt;}
.x34{left:734.933322pt;}
.x2e{left:737.933322pt;}
.x30{left:739.933322pt;}
.x35{left:741.933322pt;}
.x39{left:743.959988pt;}
}




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