
    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_f1017e20a8c0f6f5274714c9.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_d347f1a0e5b2758c6535ad4f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8b65ba457d107a1be2d550ff.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_e4003130a3d40dabd4d1520f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_fe5536f923bea27c51e2e4e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_9e72fc0195154d086dfd8dac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.208200px;}
.ls11{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.926640px;}
.ls12{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.620000px;}
.lsa{letter-spacing:2.340000px;}
.lsf{letter-spacing:5.220000px;}
.ls6{letter-spacing:14.580000px;}
.lse{letter-spacing:16.506720px;}
.ls7{letter-spacing:25.380000px;}
.ls2{letter-spacing:46.026720px;}
.ls9{letter-spacing:55.386720px;}
.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:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-6.327600px;}
._d{margin-left:-4.008240px;}
._f{margin-left:-2.386080px;}
._b{margin-left:-1.026000px;}
._4{width:1.254960px;}
._e{width:3.227040px;}
._13{width:4.362480px;}
._11{width:5.976000px;}
._10{width:6.991920px;}
._21{width:8.366400px;}
._3{width:9.540000px;}
._12{width:10.997280px;}
._1{width:12.420000px;}
._14{width:13.804560px;}
._15{width:16.075440px;}
._1f{width:17.330400px;}
._18{width:19.302480px;}
._19{width:20.379360px;}
._1c{width:21.688560px;}
._20{width:23.239920px;}
._25{width:24.561360px;}
._26{width:25.882800px;}
._2b{width:26.977920px;}
._17{width:28.097280px;}
._16{width:29.162880px;}
._28{width:30.955680px;}
._24{width:32.509440px;}
._29{width:34.122960px;}
._1b{width:35.318160px;}
._22{width:36.334080px;}
._1d{width:38.604960px;}
._1e{width:40.098960px;}
._31{width:41.473440px;}
._1a{width:42.788160px;}
._27{width:44.540640px;}
._2d{width:46.433520px;}
._2e{width:48.584880px;}
._2f{width:50.019120px;}
._30{width:51.214320px;}
._2c{width:54.082800px;}
._36{width:55.277280px;}
._34{width:56.844000px;}
._35{width:57.905280px;}
._32{width:59.770080px;}
._33{width:60.835680px;}
._37{width:63.166320px;}
._23{width:66.094560px;}
._3b{width:81.273600px;}
._38{width:82.528560px;}
._39{width:83.733840px;}
._8{width:88.200000px;}
._2a{width:95.675760px;}
._6{width:97.380000px;}
._3c{width:101.472480px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._3a{width:140.555520px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y25{bottom:5.760000px;}
.y27{bottom:5.940000px;}
.y10{bottom:7.020000px;}
.ycd{bottom:7.200000px;}
.y1a{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y24{bottom:25.560000px;}
.y11{bottom:36.180000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y23{bottom:45.360000px;}
.yf{bottom:52.920000px;}
.yce{bottom:57.780000px;}
.y6{bottom:63.180000px;}
.y22{bottom:65.160000px;}
.yb{bottom:73.110000px;}
.ycc{bottom:74.556000px;}
.y6e{bottom:80.856000px;}
.y43{bottom:81.936000px;}
.y5{bottom:84.450000px;}
.y21{bottom:85.140000px;}
.yc6{bottom:86.616000px;}
.ya{bottom:92.370000px;}
.yba{bottom:95.616000px;}
.y94{bottom:97.416000px;}
.y6d{bottom:100.656000px;}
.y42{bottom:101.736000px;}
.y20{bottom:104.940000px;}
.yc5{bottom:106.416000px;}
.y4{bottom:106.950000px;}
.y9{bottom:110.190000px;}
.yb9{bottom:115.416000px;}
.y93{bottom:117.216000px;}
.y6c{bottom:120.456000px;}
.y41{bottom:121.536000px;}
.y1f{bottom:124.740000px;}
.yc4{bottom:126.216000px;}
.y3{bottom:126.750000px;}
.yb8{bottom:135.216000px;}
.y92{bottom:137.016000px;}
.y6b{bottom:140.436000px;}
.y40{bottom:141.336000px;}
.y1e{bottom:144.540000px;}
.yc3{bottom:146.016000px;}
.yb7{bottom:155.010000px;}
.y91{bottom:156.990000px;}
.y6a{bottom:160.230000px;}
.y3f{bottom:161.310000px;}
.y1d{bottom:164.340000px;}
.yc2{bottom:165.990000px;}
.yb6{bottom:174.990000px;}
.y90{bottom:176.790000px;}
.y69{bottom:180.030000px;}
.y3e{bottom:181.110000px;}
.y1c{bottom:184.320000px;}
.yc1{bottom:185.790000px;}
.yb5{bottom:194.790000px;}
.y8f{bottom:196.590000px;}
.y68{bottom:199.830000px;}
.y3d{bottom:200.910000px;}
.yc0{bottom:205.590000px;}
.yd2{bottom:212.070000px;}
.yb4{bottom:214.590000px;}
.y8e{bottom:216.390000px;}
.y67{bottom:219.630000px;}
.y3c{bottom:220.710000px;}
.ybf{bottom:225.390000px;}
.yd1{bottom:231.870000px;}
.yb3{bottom:234.390000px;}
.y8d{bottom:236.190000px;}
.y66{bottom:239.610000px;}
.y3b{bottom:240.510000px;}
.ybe{bottom:245.190000px;}
.yd0{bottom:251.670000px;}
.yb2{bottom:254.190000px;}
.y65{bottom:256.170000px;}
.y3a{bottom:260.490000px;}
.ybd{bottom:265.170000px;}
.yb1{bottom:274.170000px;}
.y8c{bottom:275.970000px;}
.ycf{bottom:279.210000px;}
.y39{bottom:280.290000px;}
.ybc{bottom:284.970000px;}
.yb0{bottom:293.970000px;}
.y8b{bottom:295.770000px;}
.y38{bottom:300.090000px;}
.ybb{bottom:304.770000px;}
.yaf{bottom:313.770000px;}
.ya4{bottom:315.570000px;}
.y37{bottom:319.890000px;}
.y8a{bottom:324.570000px;}
.yae{bottom:333.570000px;}
.ya3{bottom:335.370000px;}
.y36{bottom:339.735000px;}
.y89{bottom:344.415000px;}
.yad{bottom:353.415000px;}
.ya2{bottom:355.395000px;}
.y35{bottom:359.715000px;}
.y88{bottom:364.395000px;}
.yac{bottom:373.395000px;}
.ya1{bottom:375.195000px;}
.y34{bottom:379.515000px;}
.y87{bottom:384.195000px;}
.yab{bottom:393.195000px;}
.ya0{bottom:394.995000px;}
.y33{bottom:399.315000px;}
.y86{bottom:403.995000px;}
.yaa{bottom:412.995000px;}
.y9f{bottom:414.795000px;}
.y32{bottom:419.115000px;}
.y85{bottom:423.795000px;}
.ya9{bottom:432.795000px;}
.y9e{bottom:434.595000px;}
.y31{bottom:438.915000px;}
.y84{bottom:443.595000px;}
.ya8{bottom:452.595000px;}
.y9d{bottom:454.575000px;}
.y30{bottom:458.895000px;}
.y83{bottom:463.575000px;}
.ya7{bottom:472.575000px;}
.y9c{bottom:474.375000px;}
.y2f{bottom:478.695000px;}
.y82{bottom:483.375000px;}
.ya6{bottom:492.375000px;}
.y9b{bottom:494.175000px;}
.y2e{bottom:498.495000px;}
.y81{bottom:503.175000px;}
.ya5{bottom:512.175000px;}
.y9a{bottom:513.975000px;}
.y2d{bottom:518.295000px;}
.y80{bottom:522.975000px;}
.y64{bottom:531.975000px;}
.y99{bottom:533.775000px;}
.y2c{bottom:538.095000px;}
.y7f{bottom:542.775000px;}
.y63{bottom:551.775000px;}
.y98{bottom:553.755000px;}
.y2b{bottom:558.075000px;}
.y7e{bottom:562.755000px;}
.y62{bottom:571.755000px;}
.y97{bottom:573.555000px;}
.y2a{bottom:577.875000px;}
.y7d{bottom:582.555000px;}
.y61{bottom:591.555000px;}
.y96{bottom:593.355000px;}
.y29{bottom:597.675000px;}
.y7c{bottom:602.355000px;}
.y60{bottom:611.385000px;}
.y95{bottom:613.185000px;}
.y28{bottom:617.505000px;}
.y7b{bottom:622.185000px;}
.y5f{bottom:631.185000px;}
.y26{bottom:632.265000px;}
.y7a{bottom:641.985000px;}
.y5e{bottom:650.985000px;}
.y1b{bottom:652.965000px;}
.y79{bottom:661.965000px;}
.y5d{bottom:670.965000px;}
.y78{bottom:681.765000px;}
.y5c{bottom:690.765000px;}
.y77{bottom:701.565000px;}
.y5b{bottom:710.565000px;}
.y76{bottom:721.365000px;}
.y5a{bottom:730.365000px;}
.y75{bottom:741.165000px;}
.y59{bottom:750.165000px;}
.y74{bottom:761.145000px;}
.y58{bottom:770.145000px;}
.y73{bottom:780.945000px;}
.y57{bottom:789.945000px;}
.y72{bottom:800.745000px;}
.y56{bottom:809.745000px;}
.y71{bottom:820.545000px;}
.y55{bottom:829.545000px;}
.y70{bottom:840.345000px;}
.y54{bottom:849.345000px;}
.y19{bottom:852.045000px;}
.y6f{bottom:860.325000px;}
.y53{bottom:869.325000px;}
.ycb{bottom:880.170000px;}
.y18{bottom:881.430000px;}
.y52{bottom:889.170000px;}
.yca{bottom:899.970000px;}
.y17{bottom:906.450000px;}
.y51{bottom:908.970000px;}
.yc9{bottom:919.770000px;}
.y16{bottom:926.430000px;}
.y50{bottom:928.770000px;}
.yc8{bottom:939.570000px;}
.y15{bottom:941.550000px;}
.y4f{bottom:948.570000px;}
.yc7{bottom:959.550000px;}
.y14{bottom:962.790000px;}
.y4e{bottom:968.550000px;}
.y13{bottom:986.190000px;}
.y4d{bottom:988.350000px;}
.y4c{bottom:1008.150000px;}
.y12{bottom:1018.050000px;}
.y4b{bottom:1027.950000px;}
.ye{bottom:1044.330000px;}
.y4a{bottom:1047.750000px;}
.y1{bottom:1067.730000px;}
.y49{bottom:1087.530000px;}
.y48{bottom:1107.330000px;}
.y47{bottom:1127.130000px;}
.y46{bottom:1146.960000px;}
.y45{bottom:1166.940000px;}
.y44{bottom:1193.400000px;}
.h3{height:2.825156px;}
.hf{height:19.980000px;}
.h9{height:22.356000px;}
.h15{height:22.500000px;}
.hd{height:22.896000px;}
.hc{height:38.158594px;}
.h8{height:52.998047px;}
.h12{height:53.573906px;}
.h13{height:58.621992px;}
.h6{height:58.651172px;}
.h14{height:59.038594px;}
.h4{height:60.226875px;}
.h10{height:61.423863px;}
.h11{height:65.010937px;}
.ha{height:66.757500px;}
.h7{height:70.664062px;}
.h5{height:72.562500px;}
.hb{height:96.508125px;}
.h2{height:140.796000px;}
.he{height:198.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.776000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w3{width:464.865000px;}
.w9{width:585.465000px;}
.w7{width:731.625000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.xc{left:107.496000px;}
.x7{left:132.705000px;}
.x10{left:137.195987px;}
.x2{left:160.050000px;}
.x12{left:214.409987px;}
.x3{left:221.070000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.xf{left:473.504987px;}
.x13{left:500.504987px;}
.x14{left:527.504987px;}
.x8{left:685.950000px;}
.x15{left:766.229987px;}
.x11{left:768.389987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.185067pt;}
.ls11{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.823680pt;}
.ls12{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.440000pt;}
.lsa{letter-spacing:2.080000pt;}
.lsf{letter-spacing:4.640000pt;}
.ls6{letter-spacing:12.960000pt;}
.lse{letter-spacing:14.672640pt;}
.ls7{letter-spacing:22.560000pt;}
.ls2{letter-spacing:40.912640pt;}
.ls9{letter-spacing:49.232640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-5.624533pt;}
._d{margin-left:-3.562880pt;}
._f{margin-left:-2.120960pt;}
._b{margin-left:-0.912000pt;}
._4{width:1.115520pt;}
._e{width:2.868480pt;}
._13{width:3.877760pt;}
._11{width:5.312000pt;}
._10{width:6.215040pt;}
._21{width:7.436800pt;}
._3{width:8.480000pt;}
._12{width:9.775360pt;}
._1{width:11.040000pt;}
._14{width:12.270720pt;}
._15{width:14.289280pt;}
._1f{width:15.404800pt;}
._18{width:17.157760pt;}
._19{width:18.114987pt;}
._1c{width:19.278720pt;}
._20{width:20.657707pt;}
._25{width:21.832320pt;}
._26{width:23.006933pt;}
._2b{width:23.980373pt;}
._17{width:24.975360pt;}
._16{width:25.922560pt;}
._28{width:27.516160pt;}
._24{width:28.897280pt;}
._29{width:30.331520pt;}
._1b{width:31.393920pt;}
._22{width:32.296960pt;}
._1d{width:34.315520pt;}
._1e{width:35.643520pt;}
._31{width:36.865280pt;}
._1a{width:38.033920pt;}
._27{width:39.591680pt;}
._2d{width:41.274240pt;}
._2e{width:43.186560pt;}
._2f{width:44.461440pt;}
._30{width:45.523840pt;}
._2c{width:48.073600pt;}
._36{width:49.135360pt;}
._34{width:50.528000pt;}
._35{width:51.471360pt;}
._32{width:53.128960pt;}
._33{width:54.076160pt;}
._37{width:56.147840pt;}
._23{width:58.750720pt;}
._3b{width:72.243200pt;}
._38{width:73.358720pt;}
._39{width:74.430080pt;}
._8{width:78.400000pt;}
._2a{width:85.045120pt;}
._6{width:86.560000pt;}
._3c{width:90.197760pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._3a{width:124.938240pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y25{bottom:5.120000pt;}
.y27{bottom:5.280000pt;}
.y10{bottom:6.240000pt;}
.ycd{bottom:6.400000pt;}
.y1a{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y24{bottom:22.720000pt;}
.y11{bottom:32.160000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y23{bottom:40.320000pt;}
.yf{bottom:47.040000pt;}
.yce{bottom:51.360000pt;}
.y6{bottom:56.160000pt;}
.y22{bottom:57.920000pt;}
.yb{bottom:64.986667pt;}
.ycc{bottom:66.272000pt;}
.y6e{bottom:71.872000pt;}
.y43{bottom:72.832000pt;}
.y5{bottom:75.066667pt;}
.y21{bottom:75.680000pt;}
.yc6{bottom:76.992000pt;}
.ya{bottom:82.106667pt;}
.yba{bottom:84.992000pt;}
.y94{bottom:86.592000pt;}
.y6d{bottom:89.472000pt;}
.y42{bottom:90.432000pt;}
.y20{bottom:93.280000pt;}
.yc5{bottom:94.592000pt;}
.y4{bottom:95.066667pt;}
.y9{bottom:97.946667pt;}
.yb9{bottom:102.592000pt;}
.y93{bottom:104.192000pt;}
.y6c{bottom:107.072000pt;}
.y41{bottom:108.032000pt;}
.y1f{bottom:110.880000pt;}
.yc4{bottom:112.192000pt;}
.y3{bottom:112.666667pt;}
.yb8{bottom:120.192000pt;}
.y92{bottom:121.792000pt;}
.y6b{bottom:124.832000pt;}
.y40{bottom:125.632000pt;}
.y1e{bottom:128.480000pt;}
.yc3{bottom:129.792000pt;}
.yb7{bottom:137.786667pt;}
.y91{bottom:139.546667pt;}
.y6a{bottom:142.426667pt;}
.y3f{bottom:143.386667pt;}
.y1d{bottom:146.080000pt;}
.yc2{bottom:147.546667pt;}
.yb6{bottom:155.546667pt;}
.y90{bottom:157.146667pt;}
.y69{bottom:160.026667pt;}
.y3e{bottom:160.986667pt;}
.y1c{bottom:163.840000pt;}
.yc1{bottom:165.146667pt;}
.yb5{bottom:173.146667pt;}
.y8f{bottom:174.746667pt;}
.y68{bottom:177.626667pt;}
.y3d{bottom:178.586667pt;}
.yc0{bottom:182.746667pt;}
.yd2{bottom:188.506667pt;}
.yb4{bottom:190.746667pt;}
.y8e{bottom:192.346667pt;}
.y67{bottom:195.226667pt;}
.y3c{bottom:196.186667pt;}
.ybf{bottom:200.346667pt;}
.yd1{bottom:206.106667pt;}
.yb3{bottom:208.346667pt;}
.y8d{bottom:209.946667pt;}
.y66{bottom:212.986667pt;}
.y3b{bottom:213.786667pt;}
.ybe{bottom:217.946667pt;}
.yd0{bottom:223.706667pt;}
.yb2{bottom:225.946667pt;}
.y65{bottom:227.706667pt;}
.y3a{bottom:231.546667pt;}
.ybd{bottom:235.706667pt;}
.yb1{bottom:243.706667pt;}
.y8c{bottom:245.306667pt;}
.ycf{bottom:248.186667pt;}
.y39{bottom:249.146667pt;}
.ybc{bottom:253.306667pt;}
.yb0{bottom:261.306667pt;}
.y8b{bottom:262.906667pt;}
.y38{bottom:266.746667pt;}
.ybb{bottom:270.906667pt;}
.yaf{bottom:278.906667pt;}
.ya4{bottom:280.506667pt;}
.y37{bottom:284.346667pt;}
.y8a{bottom:288.506667pt;}
.yae{bottom:296.506667pt;}
.ya3{bottom:298.106667pt;}
.y36{bottom:301.986667pt;}
.y89{bottom:306.146667pt;}
.yad{bottom:314.146667pt;}
.ya2{bottom:315.906667pt;}
.y35{bottom:319.746667pt;}
.y88{bottom:323.906667pt;}
.yac{bottom:331.906667pt;}
.ya1{bottom:333.506667pt;}
.y34{bottom:337.346667pt;}
.y87{bottom:341.506667pt;}
.yab{bottom:349.506667pt;}
.ya0{bottom:351.106667pt;}
.y33{bottom:354.946667pt;}
.y86{bottom:359.106667pt;}
.yaa{bottom:367.106667pt;}
.y9f{bottom:368.706667pt;}
.y32{bottom:372.546667pt;}
.y85{bottom:376.706667pt;}
.ya9{bottom:384.706667pt;}
.y9e{bottom:386.306667pt;}
.y31{bottom:390.146667pt;}
.y84{bottom:394.306667pt;}
.ya8{bottom:402.306667pt;}
.y9d{bottom:404.066667pt;}
.y30{bottom:407.906667pt;}
.y83{bottom:412.066667pt;}
.ya7{bottom:420.066667pt;}
.y9c{bottom:421.666667pt;}
.y2f{bottom:425.506667pt;}
.y82{bottom:429.666667pt;}
.ya6{bottom:437.666667pt;}
.y9b{bottom:439.266667pt;}
.y2e{bottom:443.106667pt;}
.y81{bottom:447.266667pt;}
.ya5{bottom:455.266667pt;}
.y9a{bottom:456.866667pt;}
.y2d{bottom:460.706667pt;}
.y80{bottom:464.866667pt;}
.y64{bottom:472.866667pt;}
.y99{bottom:474.466667pt;}
.y2c{bottom:478.306667pt;}
.y7f{bottom:482.466667pt;}
.y63{bottom:490.466667pt;}
.y98{bottom:492.226667pt;}
.y2b{bottom:496.066667pt;}
.y7e{bottom:500.226667pt;}
.y62{bottom:508.226667pt;}
.y97{bottom:509.826667pt;}
.y2a{bottom:513.666667pt;}
.y7d{bottom:517.826667pt;}
.y61{bottom:525.826667pt;}
.y96{bottom:527.426667pt;}
.y29{bottom:531.266667pt;}
.y7c{bottom:535.426667pt;}
.y60{bottom:543.453333pt;}
.y95{bottom:545.053333pt;}
.y28{bottom:548.893333pt;}
.y7b{bottom:553.053333pt;}
.y5f{bottom:561.053333pt;}
.y26{bottom:562.013333pt;}
.y7a{bottom:570.653333pt;}
.y5e{bottom:578.653333pt;}
.y1b{bottom:580.413333pt;}
.y79{bottom:588.413333pt;}
.y5d{bottom:596.413333pt;}
.y78{bottom:606.013333pt;}
.y5c{bottom:614.013333pt;}
.y77{bottom:623.613333pt;}
.y5b{bottom:631.613333pt;}
.y76{bottom:641.213333pt;}
.y5a{bottom:649.213333pt;}
.y75{bottom:658.813333pt;}
.y59{bottom:666.813333pt;}
.y74{bottom:676.573333pt;}
.y58{bottom:684.573333pt;}
.y73{bottom:694.173333pt;}
.y57{bottom:702.173333pt;}
.y72{bottom:711.773333pt;}
.y56{bottom:719.773333pt;}
.y71{bottom:729.373333pt;}
.y55{bottom:737.373333pt;}
.y70{bottom:746.973333pt;}
.y54{bottom:754.973333pt;}
.y19{bottom:757.373333pt;}
.y6f{bottom:764.733333pt;}
.y53{bottom:772.733333pt;}
.ycb{bottom:782.373333pt;}
.y18{bottom:783.493333pt;}
.y52{bottom:790.373333pt;}
.yca{bottom:799.973333pt;}
.y17{bottom:805.733333pt;}
.y51{bottom:807.973333pt;}
.yc9{bottom:817.573333pt;}
.y16{bottom:823.493333pt;}
.y50{bottom:825.573333pt;}
.yc8{bottom:835.173333pt;}
.y15{bottom:836.933333pt;}
.y4f{bottom:843.173333pt;}
.yc7{bottom:852.933333pt;}
.y14{bottom:855.813333pt;}
.y4e{bottom:860.933333pt;}
.y13{bottom:876.613333pt;}
.y4d{bottom:878.533333pt;}
.y4c{bottom:896.133333pt;}
.y12{bottom:904.933333pt;}
.y4b{bottom:913.733333pt;}
.ye{bottom:928.293333pt;}
.y4a{bottom:931.333333pt;}
.y1{bottom:949.093333pt;}
.y49{bottom:966.693333pt;}
.y48{bottom:984.293333pt;}
.y47{bottom:1001.893333pt;}
.y46{bottom:1019.520000pt;}
.y45{bottom:1037.280000pt;}
.y44{bottom:1060.800000pt;}
.h3{height:2.511250pt;}
.hf{height:17.760000pt;}
.h9{height:19.872000pt;}
.h15{height:20.000000pt;}
.hd{height:20.352000pt;}
.hc{height:33.918750pt;}
.h8{height:47.109375pt;}
.h12{height:47.621250pt;}
.h13{height:52.108438pt;}
.h6{height:52.134375pt;}
.h14{height:52.478750pt;}
.h4{height:53.535000pt;}
.h10{height:54.598989pt;}
.h11{height:57.787500pt;}
.ha{height:59.340000pt;}
.h7{height:62.812500pt;}
.h5{height:64.500000pt;}
.hb{height:85.785000pt;}
.h2{height:125.152000pt;}
.he{height:176.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.912000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w3{width:413.213333pt;}
.w9{width:520.413333pt;}
.w7{width:650.333333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.xc{left:95.552000pt;}
.x7{left:117.960000pt;}
.x10{left:121.951988pt;}
.x2{left:142.266667pt;}
.x12{left:190.586655pt;}
.x3{left:196.506667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.xf{left:420.893322pt;}
.x13{left:444.893322pt;}
.x14{left:468.893322pt;}
.x8{left:609.733333pt;}
.x15{left:681.093322pt;}
.x11{left:683.013322pt;}
}




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