
    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_39e38f1a9eb82aaa2cdbd82e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_837df720dfaf1421cc791805.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955078;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_3e48f86d4193a480acef1786.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_77c33ff6c7ca30830818b0ec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e16674601fb467ca8ebe5ef.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4f7ae3ed0462ba1b9d74afa9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0144072cef239a70787721c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.835938;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_ac748c657bd5169cb3fefd4b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.262080px;}
.lse{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.305400px;}
.lsc{letter-spacing:2.340000px;}
.lsb{letter-spacing:2.880000px;}
.ls13{letter-spacing:3.600000px;}
.ls12{letter-spacing:4.320000px;}
.ls5{letter-spacing:14.400000px;}
.ls8{letter-spacing:16.865280px;}
.lsa{letter-spacing:18.305280px;}
.ls11{letter-spacing:39.881280px;}
.ls14{letter-spacing:55.440000px;}
.ls1{letter-spacing:199.416000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.wsc{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-5.124480px;}
._b{margin-left:-3.627360px;}
._a{margin-left:-2.555760px;}
._0{margin-left:-1.254240px;}
._2{width:1.121520px;}
._8{width:2.165280px;}
._4{width:3.300720px;}
._5{width:4.504080px;}
._16{width:5.695920px;}
._9{width:6.752880px;}
._e{width:7.880160px;}
._7{width:9.482640px;}
._6{width:10.762320px;}
._1b{width:12.453120px;}
._d{width:13.459920px;}
._12{width:15.036480px;}
._10{width:16.089360px;}
._1a{width:17.852160px;}
._3{width:19.017600px;}
._c{width:20.916000px;}
._f{width:22.111200px;}
._15{width:23.175360px;}
._19{width:24.212160px;}
._13{width:25.237440px;}
._14{width:26.474880px;}
._17{width:27.510720px;}
._18{width:28.597440px;}
._1d{width:30.139200px;}
._1e{width:31.861440px;}
._11{width:34.255920px;}
._20{width:36.365760px;}
._22{width:41.713920px;}
._21{width:43.056000px;}
._2e{width:48.394080px;}
._2d{width:49.476960px;}
._26{width:53.460000px;}
._2a{width:55.177920px;}
._29{width:61.007040px;}
._27{width:63.468000px;}
._28{width:64.760400px;}
._24{width:68.421360px;}
._23{width:70.020000px;}
._1f{width:95.220000px;}
._2c{width:97.041600px;}
._2b{width:98.300160px;}
._25{width:107.460000px;}
._2f{width:250.652160px;}
._30{width:251.683680px;}
._1{width:969.088800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:6.840000px;}
.y5{bottom:70.416000px;}
.y41{bottom:110.376000px;}
.y40{bottom:114.876000px;}
.y3f{bottom:124.236000px;}
.y3e{bottom:128.736000px;}
.ya0{bottom:129.636000px;}
.y81{bottom:137.916000px;}
.y3d{bottom:139.356000px;}
.y7a{bottom:142.416000px;}
.y9f{bottom:151.410000px;}
.y79{bottom:151.770000px;}
.y80{bottom:156.270000px;}
.y78{bottom:165.630000px;}
.y7f{bottom:167.070000px;}
.y77{bottom:170.130000px;}
.y9e{bottom:173.190000px;}
.y3b{bottom:173.910000px;}
.y76{bottom:179.310000px;}
.y3c{bottom:179.850000px;}
.y89{bottom:180.750000px;}
.y75{bottom:183.810000px;}
.y74{bottom:193.170000px;}
.y9d{bottom:194.970000px;}
.y3a{bottom:195.690000px;}
.y73{bottom:197.670000px;}
.y72{bottom:207.030000px;}
.y86{bottom:208.470000px;}
.y9c{bottom:211.530000px;}
.y7e{bottom:216.930000px;}
.y38{bottom:217.650000px;}
.y90{bottom:220.710000px;}
.y71{bottom:222.150000px;}
.y88{bottom:222.870000px;}
.y39{bottom:223.590000px;}
.y8f{bottom:225.210000px;}
.y9b{bottom:234.570000px;}
.y8e{bottom:236.010000px;}
.y7d{bottom:238.710000px;}
.y9a{bottom:239.070000px;}
.y37{bottom:239.430000px;}
.y99{bottom:249.870000px;}
.y70{bottom:260.490000px;}
.y36{bottom:261.210000px;}
.y6f{bottom:282.270000px;}
.y35{bottom:282.990000px;}
.y6e{bottom:304.230000px;}
.y34{bottom:304.770000px;}
.y98{bottom:310.170000px;}
.y6d{bottom:326.010000px;}
.y33{bottom:326.730000px;}
.y93{bottom:331.950000px;}
.y32{bottom:344.775000px;}
.y6c{bottom:347.835000px;}
.y31{bottom:358.455000px;}
.y6b{bottom:369.615000px;}
.y30{bottom:373.035000px;}
.y87{bottom:375.555000px;}
.y2f{bottom:390.315000px;}
.y6a{bottom:391.395000px;}
.y2e{bottom:407.595000px;}
.y69{bottom:413.355000px;}
.y85{bottom:419.295000px;}
.y2d{bottom:424.695000px;}
.y68{bottom:435.135000px;}
.y2c{bottom:441.975000px;}
.y67{bottom:456.915000px;}
.y2b{bottom:459.255000px;}
.y97{bottom:462.855000px;}
.y2a{bottom:476.535000px;}
.y66{bottom:478.695000px;}
.y92{bottom:484.635000px;}
.y29{bottom:493.815000px;}
.y65{bottom:500.655000px;}
.y28{bottom:511.095000px;}
.y64{bottom:522.435000px;}
.y27{bottom:528.195000px;}
.y63{bottom:544.215000px;}
.y26{bottom:545.475000px;}
.y84{bottom:550.155000px;}
.y25{bottom:562.755000px;}
.y62{bottom:565.995000px;}
.y7c{bottom:571.935000px;}
.y24{bottom:580.035000px;}
.y60{bottom:587.775000px;}
.y61{bottom:593.715000px;}
.y23{bottom:597.315000px;}
.y5f{bottom:609.765000px;}
.y22{bottom:614.625000px;}
.y96{bottom:615.705000px;}
.y5e{bottom:631.545000px;}
.y21{bottom:631.725000px;}
.y20{bottom:649.005000px;}
.y5c{bottom:653.325000px;}
.y5d{bottom:659.265000px;}
.y1f{bottom:666.285000px;}
.y5b{bottom:675.105000px;}
.y8d{bottom:681.045000px;}
.y1e{bottom:683.565000px;}
.y5a{bottom:697.065000px;}
.y1d{bottom:700.845000px;}
.y8c{bottom:703.005000px;}
.y1c{bottom:717.945000px;}
.y59{bottom:718.845000px;}
.y1b{bottom:735.225000px;}
.y57{bottom:740.625000px;}
.y58{bottom:746.565000px;}
.y1a{bottom:752.505000px;}
.y56{bottom:762.405000px;}
.y7b{bottom:768.345000px;}
.y19{bottom:769.785000px;}
.y55{bottom:784.185000px;}
.y18{bottom:787.065000px;}
.y17{bottom:804.345000px;}
.y54{bottom:806.145000px;}
.y83{bottom:812.085000px;}
.y16{bottom:821.445000px;}
.y53{bottom:827.925000px;}
.y8b{bottom:833.865000px;}
.y15{bottom:838.725000px;}
.y51{bottom:849.705000px;}
.y52{bottom:855.645000px;}
.y14{bottom:856.005000px;}
.y50{bottom:871.530000px;}
.y13{bottom:873.330000px;}
.y95{bottom:877.470000px;}
.y12{bottom:890.970000px;}
.y4e{bottom:893.310000px;}
.y4f{bottom:899.250000px;}
.y4d{bottom:915.270000px;}
.y11{bottom:915.990000px;}
.y82{bottom:921.210000px;}
.y10{bottom:928.950000px;}
.y4c{bottom:937.050000px;}
.y91{bottom:942.990000px;}
.yf{bottom:947.850000px;}
.y4b{bottom:958.830000px;}
.ye{bottom:965.670000px;}
.y4a{bottom:980.610000px;}
.yd{bottom:981.150000px;}
.y8a{bottom:986.550000px;}
.y48{bottom:1002.570000px;}
.yc{bottom:1003.650000px;}
.y49{bottom:1008.510000px;}
.y47{bottom:1024.350000px;}
.yb{bottom:1025.610000px;}
.ya{bottom:1044.150000px;}
.y46{bottom:1046.130000px;}
.y94{bottom:1052.070000px;}
.y9{bottom:1061.250000px;}
.y45{bottom:1067.910000px;}
.y8{bottom:1078.530000px;}
.y43{bottom:1089.690000px;}
.y44{bottom:1095.630000px;}
.y7{bottom:1095.810000px;}
.y42{bottom:1111.650000px;}
.y6{bottom:1113.090000px;}
.y4{bottom:1130.370000px;}
.y2{bottom:1144.440000px;}
.y1{bottom:1178.100000px;}
.h12{height:21.114844px;}
.h13{height:21.760312px;}
.h3{height:26.640000px;}
.hc{height:29.158594px;}
.hf{height:33.683203px;}
.ha{height:34.036523px;}
.h6{height:39.760312px;}
.h5{height:41.726953px;}
.h7{height:42.164648px;}
.h8{height:46.251562px;}
.h11{height:46.736719px;}
.h14{height:48.224531px;}
.he{height:49.255313px;}
.h2{height:50.273438px;}
.h4{height:51.996094px;}
.hd{height:52.918594px;}
.hb{height:53.224453px;}
.h10{height:54.596250px;}
.h9{height:56.155781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:53.100000px;}
.w4{width:627.405000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x1{left:108.035987px;}
.x4{left:110.915987px;}
.x25{left:115.595987px;}
.x7{left:123.155987px;}
.x1f{left:129.275987px;}
.x2a{left:135.035987px;}
.x54{left:140.075987px;}
.x1e{left:150.509987px;}
.x2b{left:156.269987px;}
.x3{left:161.130000px;}
.x26{left:169.769987px;}
.x9{left:176.789987px;}
.xa{left:178.589987px;}
.xc{left:184.889973px;}
.xd{left:190.109987px;}
.x43{left:202.169973px;}
.x50{left:203.249973px;}
.x52{left:205.589973px;}
.x44{left:212.609987px;}
.x51{left:213.689987px;}
.x53{left:216.029987px;}
.x4e{left:218.909973px;}
.x4f{left:229.349987px;}
.x8{left:262.289987px;}
.x3b{left:273.449987px;}
.x5{left:276.149987px;}
.x31{left:318.674973px;}
.x3c{left:322.274973px;}
.x10{left:324.074987px;}
.x32{left:329.114987px;}
.x3d{left:332.714987px;}
.x4c{left:350.354973px;}
.x1c{left:352.154973px;}
.x1d{left:357.374987px;}
.x4d{left:360.794987px;}
.x2c{left:367.814987px;}
.x4a{left:408.314973px;}
.x4b{left:418.754987px;}
.xb{left:420.194987px;}
.x23{left:423.074973px;}
.x3a{left:430.454973px;}
.x24{left:433.514987px;}
.x15{left:435.314973px;}
.x16{left:440.534987px;}
.x27{left:444.494987px;}
.x6{left:446.474987px;}
.x36{left:476.744973px;}
.x37{left:487.184987px;}
.x40{left:508.064973px;}
.x38{left:510.944973px;}
.x48{left:517.244973px;}
.x41{left:518.504987px;}
.x39{left:521.384987px;}
.x49{left:527.684987px;}
.xe{left:556.304973px;}
.xf{left:561.524987px;}
.x28{left:569.804973px;}
.x29{left:580.244987px;}
.x2d{left:587.084973px;}
.x2e{left:597.524987px;}
.x42{left:607.424973px;}
.x33{left:608.684973px;}
.x35{left:617.864973px;}
.x34{left:619.124987px;}
.x13{left:629.024973px;}
.x14{left:634.244987px;}
.x17{left:640.364987px;}
.x46{left:653.324973px;}
.x47{left:663.809987px;}
.x21{left:670.829973px;}
.x1a{left:673.709973px;}
.x2f{left:675.869973px;}
.x1b{left:678.929987px;}
.x22{left:681.269987px;}
.x18{left:683.789973px;}
.x30{left:686.309987px;}
.x19{left:689.009987px;}
.x45{left:691.709987px;}
.x3e{left:741.029973px;}
.x3f{left:751.469987px;}
.x20{left:774.689973px;}
.x11{left:779.909973px;}
.x12{left:785.129987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.271467pt;}
.lsc{letter-spacing:2.080000pt;}
.lsb{letter-spacing:2.560000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls12{letter-spacing:3.840000pt;}
.ls5{letter-spacing:12.800000pt;}
.ls8{letter-spacing:14.991360pt;}
.lsa{letter-spacing:16.271360pt;}
.ls11{letter-spacing:35.450027pt;}
.ls14{letter-spacing:49.280000pt;}
.ls1{letter-spacing:177.258667pt;}
.wsa{word-spacing:-58.880000pt;}
.wsc{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-4.555093pt;}
._b{margin-left:-3.224320pt;}
._a{margin-left:-2.271787pt;}
._0{margin-left:-1.114880pt;}
._2{width:0.996907pt;}
._8{width:1.924693pt;}
._4{width:2.933973pt;}
._5{width:4.003627pt;}
._16{width:5.063040pt;}
._9{width:6.002560pt;}
._e{width:7.004587pt;}
._7{width:8.429013pt;}
._6{width:9.566507pt;}
._1b{width:11.069440pt;}
._d{width:11.964373pt;}
._12{width:13.365760pt;}
._10{width:14.301653pt;}
._1a{width:15.868587pt;}
._3{width:16.904533pt;}
._c{width:18.592000pt;}
._f{width:19.654400pt;}
._15{width:20.600320pt;}
._19{width:21.521920pt;}
._13{width:22.433280pt;}
._14{width:23.533227pt;}
._17{width:24.453973pt;}
._18{width:25.419947pt;}
._1d{width:26.790400pt;}
._1e{width:28.321280pt;}
._11{width:30.449707pt;}
._20{width:32.325120pt;}
._22{width:37.079040pt;}
._21{width:38.272000pt;}
._2e{width:43.016960pt;}
._2d{width:43.979520pt;}
._26{width:47.520000pt;}
._2a{width:49.047040pt;}
._29{width:54.228480pt;}
._27{width:56.416000pt;}
._28{width:57.564800pt;}
._24{width:60.818987pt;}
._23{width:62.240000pt;}
._1f{width:84.640000pt;}
._2c{width:86.259200pt;}
._2b{width:87.377920pt;}
._25{width:95.520000pt;}
._2f{width:222.801920pt;}
._30{width:223.718827pt;}
._1{width:861.412267pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:6.080000pt;}
.y5{bottom:62.592000pt;}
.y41{bottom:98.112000pt;}
.y40{bottom:102.112000pt;}
.y3f{bottom:110.432000pt;}
.y3e{bottom:114.432000pt;}
.ya0{bottom:115.232000pt;}
.y81{bottom:122.592000pt;}
.y3d{bottom:123.872000pt;}
.y7a{bottom:126.592000pt;}
.y9f{bottom:134.586667pt;}
.y79{bottom:134.906667pt;}
.y80{bottom:138.906667pt;}
.y78{bottom:147.226667pt;}
.y7f{bottom:148.506667pt;}
.y77{bottom:151.226667pt;}
.y9e{bottom:153.946667pt;}
.y3b{bottom:154.586667pt;}
.y76{bottom:159.386667pt;}
.y3c{bottom:159.866667pt;}
.y89{bottom:160.666667pt;}
.y75{bottom:163.386667pt;}
.y74{bottom:171.706667pt;}
.y9d{bottom:173.306667pt;}
.y3a{bottom:173.946667pt;}
.y73{bottom:175.706667pt;}
.y72{bottom:184.026667pt;}
.y86{bottom:185.306667pt;}
.y9c{bottom:188.026667pt;}
.y7e{bottom:192.826667pt;}
.y38{bottom:193.466667pt;}
.y90{bottom:196.186667pt;}
.y71{bottom:197.466667pt;}
.y88{bottom:198.106667pt;}
.y39{bottom:198.746667pt;}
.y8f{bottom:200.186667pt;}
.y9b{bottom:208.506667pt;}
.y8e{bottom:209.786667pt;}
.y7d{bottom:212.186667pt;}
.y9a{bottom:212.506667pt;}
.y37{bottom:212.826667pt;}
.y99{bottom:222.106667pt;}
.y70{bottom:231.546667pt;}
.y36{bottom:232.186667pt;}
.y6f{bottom:250.906667pt;}
.y35{bottom:251.546667pt;}
.y6e{bottom:270.426667pt;}
.y34{bottom:270.906667pt;}
.y98{bottom:275.706667pt;}
.y6d{bottom:289.786667pt;}
.y33{bottom:290.426667pt;}
.y93{bottom:295.066667pt;}
.y32{bottom:306.466667pt;}
.y6c{bottom:309.186667pt;}
.y31{bottom:318.626667pt;}
.y6b{bottom:328.546667pt;}
.y30{bottom:331.586667pt;}
.y87{bottom:333.826667pt;}
.y2f{bottom:346.946667pt;}
.y6a{bottom:347.906667pt;}
.y2e{bottom:362.306667pt;}
.y69{bottom:367.426667pt;}
.y85{bottom:372.706667pt;}
.y2d{bottom:377.506667pt;}
.y68{bottom:386.786667pt;}
.y2c{bottom:392.866667pt;}
.y67{bottom:406.146667pt;}
.y2b{bottom:408.226667pt;}
.y97{bottom:411.426667pt;}
.y2a{bottom:423.586667pt;}
.y66{bottom:425.506667pt;}
.y92{bottom:430.786667pt;}
.y29{bottom:438.946667pt;}
.y65{bottom:445.026667pt;}
.y28{bottom:454.306667pt;}
.y64{bottom:464.386667pt;}
.y27{bottom:469.506667pt;}
.y63{bottom:483.746667pt;}
.y26{bottom:484.866667pt;}
.y84{bottom:489.026667pt;}
.y25{bottom:500.226667pt;}
.y62{bottom:503.106667pt;}
.y7c{bottom:508.386667pt;}
.y24{bottom:515.586667pt;}
.y60{bottom:522.466667pt;}
.y61{bottom:527.746667pt;}
.y23{bottom:530.946667pt;}
.y5f{bottom:542.013333pt;}
.y22{bottom:546.333333pt;}
.y96{bottom:547.293333pt;}
.y5e{bottom:561.373333pt;}
.y21{bottom:561.533333pt;}
.y20{bottom:576.893333pt;}
.y5c{bottom:580.733333pt;}
.y5d{bottom:586.013333pt;}
.y1f{bottom:592.253333pt;}
.y5b{bottom:600.093333pt;}
.y8d{bottom:605.373333pt;}
.y1e{bottom:607.613333pt;}
.y5a{bottom:619.613333pt;}
.y1d{bottom:622.973333pt;}
.y8c{bottom:624.893333pt;}
.y1c{bottom:638.173333pt;}
.y59{bottom:638.973333pt;}
.y1b{bottom:653.533333pt;}
.y57{bottom:658.333333pt;}
.y58{bottom:663.613333pt;}
.y1a{bottom:668.893333pt;}
.y56{bottom:677.693333pt;}
.y7b{bottom:682.973333pt;}
.y19{bottom:684.253333pt;}
.y55{bottom:697.053333pt;}
.y18{bottom:699.613333pt;}
.y17{bottom:714.973333pt;}
.y54{bottom:716.573333pt;}
.y83{bottom:721.853333pt;}
.y16{bottom:730.173333pt;}
.y53{bottom:735.933333pt;}
.y8b{bottom:741.213333pt;}
.y15{bottom:745.533333pt;}
.y51{bottom:755.293333pt;}
.y52{bottom:760.573333pt;}
.y14{bottom:760.893333pt;}
.y50{bottom:774.693333pt;}
.y13{bottom:776.293333pt;}
.y95{bottom:779.973333pt;}
.y12{bottom:791.973333pt;}
.y4e{bottom:794.053333pt;}
.y4f{bottom:799.333333pt;}
.y4d{bottom:813.573333pt;}
.y11{bottom:814.213333pt;}
.y82{bottom:818.853333pt;}
.y10{bottom:825.733333pt;}
.y4c{bottom:832.933333pt;}
.y91{bottom:838.213333pt;}
.yf{bottom:842.533333pt;}
.y4b{bottom:852.293333pt;}
.ye{bottom:858.373333pt;}
.y4a{bottom:871.653333pt;}
.yd{bottom:872.133333pt;}
.y8a{bottom:876.933333pt;}
.y48{bottom:891.173333pt;}
.yc{bottom:892.133333pt;}
.y49{bottom:896.453333pt;}
.y47{bottom:910.533333pt;}
.yb{bottom:911.653333pt;}
.ya{bottom:928.133333pt;}
.y46{bottom:929.893333pt;}
.y94{bottom:935.173333pt;}
.y9{bottom:943.333333pt;}
.y45{bottom:949.253333pt;}
.y8{bottom:958.693333pt;}
.y43{bottom:968.613333pt;}
.y44{bottom:973.893333pt;}
.y7{bottom:974.053333pt;}
.y42{bottom:988.133333pt;}
.y6{bottom:989.413333pt;}
.y4{bottom:1004.773333pt;}
.y2{bottom:1017.280000pt;}
.y1{bottom:1047.200000pt;}
.h12{height:18.768750pt;}
.h13{height:19.342500pt;}
.h3{height:23.680000pt;}
.hc{height:25.918750pt;}
.hf{height:29.940625pt;}
.ha{height:30.254687pt;}
.h6{height:35.342500pt;}
.h5{height:37.090625pt;}
.h7{height:37.479688pt;}
.h8{height:41.112500pt;}
.h11{height:41.543750pt;}
.h14{height:42.866250pt;}
.he{height:43.782500pt;}
.h2{height:44.687500pt;}
.h4{height:46.218750pt;}
.hd{height:47.038750pt;}
.hb{height:47.310625pt;}
.h10{height:48.530000pt;}
.h9{height:49.916250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:47.200000pt;}
.w4{width:557.693333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x1{left:96.031988pt;}
.x4{left:98.591988pt;}
.x25{left:102.751988pt;}
.x7{left:109.471988pt;}
.x1f{left:114.911988pt;}
.x2a{left:120.031988pt;}
.x54{left:124.511988pt;}
.x1e{left:133.786655pt;}
.x2b{left:138.906655pt;}
.x3{left:143.226667pt;}
.x26{left:150.906655pt;}
.x9{left:157.146655pt;}
.xa{left:158.746655pt;}
.xc{left:164.346643pt;}
.xd{left:168.986655pt;}
.x43{left:179.706643pt;}
.x50{left:180.666643pt;}
.x52{left:182.746643pt;}
.x44{left:188.986655pt;}
.x51{left:189.946655pt;}
.x53{left:192.026655pt;}
.x4e{left:194.586643pt;}
.x4f{left:203.866655pt;}
.x8{left:233.146655pt;}
.x3b{left:243.066655pt;}
.x5{left:245.466655pt;}
.x31{left:283.266643pt;}
.x3c{left:286.466643pt;}
.x10{left:288.066655pt;}
.x32{left:292.546655pt;}
.x3d{left:295.746655pt;}
.x4c{left:311.426643pt;}
.x1c{left:313.026643pt;}
.x1d{left:317.666655pt;}
.x4d{left:320.706655pt;}
.x2c{left:326.946655pt;}
.x4a{left:362.946643pt;}
.x4b{left:372.226655pt;}
.xb{left:373.506655pt;}
.x23{left:376.066643pt;}
.x3a{left:382.626643pt;}
.x24{left:385.346655pt;}
.x15{left:386.946643pt;}
.x16{left:391.586655pt;}
.x27{left:395.106655pt;}
.x6{left:396.866655pt;}
.x36{left:423.773310pt;}
.x37{left:433.053322pt;}
.x40{left:451.613310pt;}
.x38{left:454.173310pt;}
.x48{left:459.773310pt;}
.x41{left:460.893322pt;}
.x39{left:463.453322pt;}
.x49{left:469.053322pt;}
.xe{left:494.493310pt;}
.xf{left:499.133322pt;}
.x28{left:506.493310pt;}
.x29{left:515.773322pt;}
.x2d{left:521.853310pt;}
.x2e{left:531.133322pt;}
.x42{left:539.933310pt;}
.x33{left:541.053310pt;}
.x35{left:549.213310pt;}
.x34{left:550.333322pt;}
.x13{left:559.133310pt;}
.x14{left:563.773322pt;}
.x17{left:569.213322pt;}
.x46{left:580.733310pt;}
.x47{left:590.053322pt;}
.x21{left:596.293310pt;}
.x1a{left:598.853310pt;}
.x2f{left:600.773310pt;}
.x1b{left:603.493322pt;}
.x22{left:605.573322pt;}
.x18{left:607.813310pt;}
.x30{left:610.053322pt;}
.x19{left:612.453322pt;}
.x45{left:614.853322pt;}
.x3e{left:658.693310pt;}
.x3f{left:667.973322pt;}
.x20{left:688.613310pt;}
.x11{left:693.253310pt;}
.x12{left:697.893322pt;}
}




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