
    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_7b8f24889f3ac24d5466ba1c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_50aaca518516f0075f0d8ea7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_25d29ef71d661b31f5b875a1.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a57f9cb610a30e4b0f9ffae7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6db2803c1c86454c125b1166.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8a6fea17891de9124fa31365.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d8899b7cbad5c8a37ec34fc1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_2039f89557be8dfc2b3db15e.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.408000px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.620000px;}
.ls8{letter-spacing:3.060000px;}
.ls7{letter-spacing:8.100000px;}
.ls10{letter-spacing:11.700000px;}
.ls6{letter-spacing:46.170720px;}
.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;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.020000px;}
.ws6{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-502.004160px;}
._6{margin-left:-3.944160px;}
._7{margin-left:-2.375280px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.770080px;}
._5{width:3.826320px;}
._4{width:5.262960px;}
._a{width:6.595200px;}
._9{width:8.127360px;}
._10{width:9.561600px;}
._e{width:10.577520px;}
._f{width:12.131280px;}
._8{width:13.266720px;}
._11{width:16.613280px;}
._14{width:20.497680px;}
._13{width:21.513600px;}
._15{width:37.110960px;}
._b{width:91.492560px;}
._d{width:178.443360px;}
._c{width:222.486480px;}
._12{width:1942.404000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:5.220000px;}
.yae{bottom:5.745000px;}
.yb6{bottom:5.751000px;}
.ybd{bottom:5.760000px;}
.yb2{bottom:5.925000px;}
.ybb{bottom:5.940000px;}
.yaf{bottom:6.105000px;}
.yb7{bottom:6.111000px;}
.ybe{bottom:6.120000px;}
.y21{bottom:6.150000px;}
.yb3{bottom:6.285000px;}
.y36{bottom:11.025000px;}
.y7{bottom:14.415000px;}
.y20{bottom:26.130000px;}
.y35{bottom:30.825000px;}
.y6{bottom:45.915000px;}
.y1f{bottom:45.930000px;}
.y34{bottom:50.805000px;}
.ya{bottom:58.356000px;}
.y1e{bottom:65.730000px;}
.y33{bottom:70.605000px;}
.y5{bottom:77.595000px;}
.y1d{bottom:85.530000px;}
.y84{bottom:86.076000px;}
.y32{bottom:90.405000px;}
.yb9{bottom:92.016000px;}
.ycb{bottom:93.276000px;}
.y1c{bottom:105.330000px;}
.y83{bottom:105.876000px;}
.y31{bottom:107.505000px;}
.y4d{bottom:109.116000px;}
.y4{bottom:109.305000px;}
.yb8{bottom:112.176000px;}
.yca{bottom:113.076000px;}
.yd0{bottom:113.976000px;}
.y30{bottom:124.065000px;}
.y1b{bottom:125.310000px;}
.y82{bottom:125.676000px;}
.yb5{bottom:125.865000px;}
.y4c{bottom:131.976000px;}
.yc9{bottom:132.876000px;}
.y2f{bottom:137.925000px;}
.y2{bottom:142.230000px;}
.y1a{bottom:145.110000px;}
.y81{bottom:145.476000px;}
.yb4{bottom:145.665000px;}
.ycf{bottom:149.616000px;}
.y4b{bottom:151.770000px;}
.y2e{bottom:151.785000px;}
.yc8{bottom:152.670000px;}
.y19{bottom:164.910000px;}
.y80{bottom:165.450000px;}
.y2d{bottom:165.465000px;}
.y4a{bottom:171.570000px;}
.yc7{bottom:172.470000px;}
.y2c{bottom:179.325000px;}
.y18{bottom:184.710000px;}
.y7f{bottom:185.250000px;}
.yb1{bottom:185.445000px;}
.y49{bottom:191.370000px;}
.yc6{bottom:192.450000px;}
.y2b{bottom:193.185000px;}
.y17{bottom:204.510000px;}
.y7e{bottom:205.050000px;}
.yb0{bottom:205.245000px;}
.y2a{bottom:206.865000px;}
.y48{bottom:211.350000px;}
.yc5{bottom:212.250000px;}
.y29{bottom:220.725000px;}
.y16{bottom:224.490000px;}
.y7d{bottom:224.850000px;}
.yad{bottom:225.045000px;}
.y47{bottom:231.150000px;}
.yc4{bottom:232.050000px;}
.y28{bottom:234.585000px;}
.y15{bottom:244.290000px;}
.y7c{bottom:244.650000px;}
.y27{bottom:248.265000px;}
.yac{bottom:250.590000px;}
.y46{bottom:250.950000px;}
.yc3{bottom:251.850000px;}
.y26{bottom:262.125000px;}
.y14{bottom:264.090000px;}
.y7b{bottom:264.630000px;}
.yab{bottom:268.770000px;}
.y45{bottom:270.750000px;}
.yc2{bottom:271.650000px;}
.y25{bottom:275.985000px;}
.y13{bottom:283.890000px;}
.y7a{bottom:284.475000px;}
.y24{bottom:290.430000px;}
.y44{bottom:290.595000px;}
.yaa{bottom:291.675000px;}
.y79{bottom:304.275000px;}
.y12{bottom:304.635000px;}
.y22{bottom:307.515000px;}
.y43{bottom:310.575000px;}
.ya9{bottom:311.475000px;}
.y78{bottom:324.075000px;}
.yce{bottom:327.675000px;}
.y42{bottom:330.375000px;}
.ya8{bottom:331.275000px;}
.y77{bottom:343.875000px;}
.y41{bottom:350.175000px;}
.ya7{bottom:351.075000px;}
.y76{bottom:363.855000px;}
.y40{bottom:369.975000px;}
.ya6{bottom:370.875000px;}
.y75{bottom:383.655000px;}
.y3f{bottom:389.775000px;}
.ya5{bottom:390.855000px;}
.y74{bottom:403.455000px;}
.y3e{bottom:409.755000px;}
.ya4{bottom:410.655000px;}
.y73{bottom:423.255000px;}
.y3d{bottom:429.555000px;}
.ya3{bottom:430.455000px;}
.y72{bottom:443.055000px;}
.y3c{bottom:449.355000px;}
.ya2{bottom:450.255000px;}
.y71{bottom:463.035000px;}
.y3b{bottom:469.155000px;}
.ya1{bottom:470.055000px;}
.y70{bottom:482.475000px;}
.y3a{bottom:488.955000px;}
.ycd{bottom:489.675000px;}
.ya0{bottom:490.035000px;}
.y6f{bottom:502.635000px;}
.y39{bottom:508.935000px;}
.y9f{bottom:509.835000px;}
.y6e{bottom:522.435000px;}
.y38{bottom:528.375000px;}
.y9e{bottom:529.635000px;}
.y6d{bottom:542.235000px;}
.y37{bottom:548.535000px;}
.y9d{bottom:549.435000px;}
.y6c{bottom:562.215000px;}
.y23{bottom:562.920000px;}
.y11{bottom:562.935000px;}
.y9c{bottom:569.265000px;}
.y6b{bottom:582.045000px;}
.y9b{bottom:589.245000px;}
.y6a{bottom:601.845000px;}
.y9a{bottom:609.045000px;}
.y69{bottom:621.645000px;}
.y99{bottom:628.845000px;}
.y68{bottom:641.445000px;}
.y98{bottom:648.645000px;}
.y67{bottom:661.425000px;}
.y97{bottom:668.445000px;}
.y66{bottom:681.225000px;}
.y96{bottom:688.425000px;}
.y95{bottom:708.225000px;}
.y65{bottom:710.025000px;}
.y94{bottom:728.025000px;}
.y64{bottom:729.825000px;}
.y93{bottom:747.825000px;}
.y63{bottom:749.625000px;}
.y92{bottom:767.625000px;}
.y62{bottom:769.605000px;}
.y91{bottom:787.605000px;}
.y61{bottom:789.405000px;}
.y90{bottom:807.405000px;}
.y60{bottom:809.205000px;}
.yc1{bottom:821.085000px;}
.ycc{bottom:826.845000px;}
.y8f{bottom:827.205000px;}
.y5f{bottom:829.005000px;}
.yc0{bottom:840.885000px;}
.y8e{bottom:847.005000px;}
.y5e{bottom:848.850000px;}
.ybf{bottom:860.730000px;}
.y8d{bottom:866.850000px;}
.y5d{bottom:868.650000px;}
.ybc{bottom:880.530000px;}
.y8c{bottom:886.650000px;}
.y5c{bottom:888.630000px;}
.y10{bottom:888.810000px;}
.yba{bottom:900.330000px;}
.yf{bottom:906.090000px;}
.y8b{bottom:906.630000px;}
.y5b{bottom:917.430000px;}
.ye{bottom:926.070000px;}
.y8a{bottom:926.430000px;}
.y5a{bottom:937.230000px;}
.y89{bottom:946.230000px;}
.yd{bottom:947.670000px;}
.y59{bottom:957.030000px;}
.y88{bottom:966.030000px;}
.yc{bottom:970.710000px;}
.y58{bottom:976.830000px;}
.y87{bottom:985.830000px;}
.y57{bottom:996.810000px;}
.yb{bottom:1002.390000px;}
.y86{bottom:1005.810000px;}
.y56{bottom:1016.610000px;}
.y85{bottom:1025.610000px;}
.y9{bottom:1028.850000px;}
.y55{bottom:1045.410000px;}
.y3{bottom:1046.115000px;}
.y1{bottom:1046.130000px;}
.y54{bottom:1065.210000px;}
.y53{bottom:1085.010000px;}
.y52{bottom:1104.990000px;}
.y51{bottom:1124.790000px;}
.y50{bottom:1144.620000px;}
.y4f{bottom:1164.420000px;}
.y4e{bottom:1192.140000px;}
.h6{height:2.826563px;}
.h14{height:19.785000px;}
.h16{height:19.791000px;}
.h18{height:19.800000px;}
.h17{height:19.822500px;}
.h15{height:19.965000px;}
.h13{height:41.726953px;}
.h11{height:48.127500px;}
.h10{height:48.616875px;}
.h5{height:48.774375px;}
.h3{height:57.256875px;}
.ha{height:58.651172px;}
.he{height:60.226875px;}
.h12{height:61.423863px;}
.hb{height:66.757500px;}
.h8{height:70.664062px;}
.hd{height:72.562500px;}
.h7{height:74.004654px;}
.h9{height:96.508125px;}
.h2{height:162.750000px;}
.h4{height:162.765000px;}
.hc{height:321.360000px;}
.hf{height:321.375000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:83.556000px;}
.wf{width:84.456000px;}
.w9{width:90.900000px;}
.we{width:91.980000px;}
.wb{width:92.505000px;}
.w10{width:93.585000px;}
.wc{width:106.041000px;}
.wd{width:141.681000px;}
.w4{width:147.441000px;}
.w8{width:187.035000px;}
.w7{width:215.475000px;}
.w6{width:215.490000px;}
.w5{width:563.685000px;}
.w2{width:633.885000px;}
.w3{width:633.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.880000px;}
.x9{left:81.000000px;}
.xa{left:108.036000px;}
.x4{left:139.350000px;}
.xb{left:166.545000px;}
.xf{left:240.705000px;}
.x8{left:333.795000px;}
.xc{left:353.595000px;}
.x10{left:382.395000px;}
.x5{left:387.975000px;}
.xd{left:444.495000px;}
.x11{left:474.375000px;}
.xe{left:528.060000px;}
.x12{left:558.840000px;}
.x7{left:620.580000px;}
.x3{left:687.900000px;}
.x13{left:937.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.362667pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls7{letter-spacing:7.200000pt;}
.ls10{letter-spacing:10.400000pt;}
.ls6{letter-spacing:41.040640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.240000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-446.225920pt;}
._6{margin-left:-3.505920pt;}
._7{margin-left:-2.111360pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.462293pt;}
._5{width:3.401173pt;}
._4{width:4.678187pt;}
._a{width:5.862400pt;}
._9{width:7.224320pt;}
._10{width:8.499200pt;}
._e{width:9.402240pt;}
._f{width:10.783360pt;}
._8{width:11.792640pt;}
._11{width:14.767360pt;}
._14{width:18.220160pt;}
._13{width:19.123200pt;}
._15{width:32.987520pt;}
._b{width:81.326720pt;}
._d{width:158.616320pt;}
._c{width:197.765760pt;}
._12{width:1726.581333pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.640000pt;}
.yae{bottom:5.106667pt;}
.yb6{bottom:5.112000pt;}
.ybd{bottom:5.120000pt;}
.yb2{bottom:5.266667pt;}
.ybb{bottom:5.280000pt;}
.yaf{bottom:5.426667pt;}
.yb7{bottom:5.432000pt;}
.ybe{bottom:5.440000pt;}
.y21{bottom:5.466667pt;}
.yb3{bottom:5.586667pt;}
.y36{bottom:9.800000pt;}
.y7{bottom:12.813333pt;}
.y20{bottom:23.226667pt;}
.y35{bottom:27.400000pt;}
.y6{bottom:40.813333pt;}
.y1f{bottom:40.826667pt;}
.y34{bottom:45.160000pt;}
.ya{bottom:51.872000pt;}
.y1e{bottom:58.426667pt;}
.y33{bottom:62.760000pt;}
.y5{bottom:68.973333pt;}
.y1d{bottom:76.026667pt;}
.y84{bottom:76.512000pt;}
.y32{bottom:80.360000pt;}
.yb9{bottom:81.792000pt;}
.ycb{bottom:82.912000pt;}
.y1c{bottom:93.626667pt;}
.y83{bottom:94.112000pt;}
.y31{bottom:95.560000pt;}
.y4d{bottom:96.992000pt;}
.y4{bottom:97.160000pt;}
.yb8{bottom:99.712000pt;}
.yca{bottom:100.512000pt;}
.yd0{bottom:101.312000pt;}
.y30{bottom:110.280000pt;}
.y1b{bottom:111.386667pt;}
.y82{bottom:111.712000pt;}
.yb5{bottom:111.880000pt;}
.y4c{bottom:117.312000pt;}
.yc9{bottom:118.112000pt;}
.y2f{bottom:122.600000pt;}
.y2{bottom:126.426667pt;}
.y1a{bottom:128.986667pt;}
.y81{bottom:129.312000pt;}
.yb4{bottom:129.480000pt;}
.ycf{bottom:132.992000pt;}
.y4b{bottom:134.906667pt;}
.y2e{bottom:134.920000pt;}
.yc8{bottom:135.706667pt;}
.y19{bottom:146.586667pt;}
.y80{bottom:147.066667pt;}
.y2d{bottom:147.080000pt;}
.y4a{bottom:152.506667pt;}
.yc7{bottom:153.306667pt;}
.y2c{bottom:159.400000pt;}
.y18{bottom:164.186667pt;}
.y7f{bottom:164.666667pt;}
.yb1{bottom:164.840000pt;}
.y49{bottom:170.106667pt;}
.yc6{bottom:171.066667pt;}
.y2b{bottom:171.720000pt;}
.y17{bottom:181.786667pt;}
.y7e{bottom:182.266667pt;}
.yb0{bottom:182.440000pt;}
.y2a{bottom:183.880000pt;}
.y48{bottom:187.866667pt;}
.yc5{bottom:188.666667pt;}
.y29{bottom:196.200000pt;}
.y16{bottom:199.546667pt;}
.y7d{bottom:199.866667pt;}
.yad{bottom:200.040000pt;}
.y47{bottom:205.466667pt;}
.yc4{bottom:206.266667pt;}
.y28{bottom:208.520000pt;}
.y15{bottom:217.146667pt;}
.y7c{bottom:217.466667pt;}
.y27{bottom:220.680000pt;}
.yac{bottom:222.746667pt;}
.y46{bottom:223.066667pt;}
.yc3{bottom:223.866667pt;}
.y26{bottom:233.000000pt;}
.y14{bottom:234.746667pt;}
.y7b{bottom:235.226667pt;}
.yab{bottom:238.906667pt;}
.y45{bottom:240.666667pt;}
.yc2{bottom:241.466667pt;}
.y25{bottom:245.320000pt;}
.y13{bottom:252.346667pt;}
.y7a{bottom:252.866667pt;}
.y24{bottom:258.160000pt;}
.y44{bottom:258.306667pt;}
.yaa{bottom:259.266667pt;}
.y79{bottom:270.466667pt;}
.y12{bottom:270.786667pt;}
.y22{bottom:273.346667pt;}
.y43{bottom:276.066667pt;}
.ya9{bottom:276.866667pt;}
.y78{bottom:288.066667pt;}
.yce{bottom:291.266667pt;}
.y42{bottom:293.666667pt;}
.ya8{bottom:294.466667pt;}
.y77{bottom:305.666667pt;}
.y41{bottom:311.266667pt;}
.ya7{bottom:312.066667pt;}
.y76{bottom:323.426667pt;}
.y40{bottom:328.866667pt;}
.ya6{bottom:329.666667pt;}
.y75{bottom:341.026667pt;}
.y3f{bottom:346.466667pt;}
.ya5{bottom:347.426667pt;}
.y74{bottom:358.626667pt;}
.y3e{bottom:364.226667pt;}
.ya4{bottom:365.026667pt;}
.y73{bottom:376.226667pt;}
.y3d{bottom:381.826667pt;}
.ya3{bottom:382.626667pt;}
.y72{bottom:393.826667pt;}
.y3c{bottom:399.426667pt;}
.ya2{bottom:400.226667pt;}
.y71{bottom:411.586667pt;}
.y3b{bottom:417.026667pt;}
.ya1{bottom:417.826667pt;}
.y70{bottom:428.866667pt;}
.y3a{bottom:434.626667pt;}
.ycd{bottom:435.266667pt;}
.ya0{bottom:435.586667pt;}
.y6f{bottom:446.786667pt;}
.y39{bottom:452.386667pt;}
.y9f{bottom:453.186667pt;}
.y6e{bottom:464.386667pt;}
.y38{bottom:469.666667pt;}
.y9e{bottom:470.786667pt;}
.y6d{bottom:481.986667pt;}
.y37{bottom:487.586667pt;}
.y9d{bottom:488.386667pt;}
.y6c{bottom:499.746667pt;}
.y23{bottom:500.373333pt;}
.y11{bottom:500.386667pt;}
.y9c{bottom:506.013333pt;}
.y6b{bottom:517.373333pt;}
.y9b{bottom:523.773333pt;}
.y6a{bottom:534.973333pt;}
.y9a{bottom:541.373333pt;}
.y69{bottom:552.573333pt;}
.y99{bottom:558.973333pt;}
.y68{bottom:570.173333pt;}
.y98{bottom:576.573333pt;}
.y67{bottom:587.933333pt;}
.y97{bottom:594.173333pt;}
.y66{bottom:605.533333pt;}
.y96{bottom:611.933333pt;}
.y95{bottom:629.533333pt;}
.y65{bottom:631.133333pt;}
.y94{bottom:647.133333pt;}
.y64{bottom:648.733333pt;}
.y93{bottom:664.733333pt;}
.y63{bottom:666.333333pt;}
.y92{bottom:682.333333pt;}
.y62{bottom:684.093333pt;}
.y91{bottom:700.093333pt;}
.y61{bottom:701.693333pt;}
.y90{bottom:717.693333pt;}
.y60{bottom:719.293333pt;}
.yc1{bottom:729.853333pt;}
.ycc{bottom:734.973333pt;}
.y8f{bottom:735.293333pt;}
.y5f{bottom:736.893333pt;}
.yc0{bottom:747.453333pt;}
.y8e{bottom:752.893333pt;}
.y5e{bottom:754.533333pt;}
.ybf{bottom:765.093333pt;}
.y8d{bottom:770.533333pt;}
.y5d{bottom:772.133333pt;}
.ybc{bottom:782.693333pt;}
.y8c{bottom:788.133333pt;}
.y5c{bottom:789.893333pt;}
.y10{bottom:790.053333pt;}
.yba{bottom:800.293333pt;}
.yf{bottom:805.413333pt;}
.y8b{bottom:805.893333pt;}
.y5b{bottom:815.493333pt;}
.ye{bottom:823.173333pt;}
.y8a{bottom:823.493333pt;}
.y5a{bottom:833.093333pt;}
.y89{bottom:841.093333pt;}
.yd{bottom:842.373333pt;}
.y59{bottom:850.693333pt;}
.y88{bottom:858.693333pt;}
.yc{bottom:862.853333pt;}
.y58{bottom:868.293333pt;}
.y87{bottom:876.293333pt;}
.y57{bottom:886.053333pt;}
.yb{bottom:891.013333pt;}
.y86{bottom:894.053333pt;}
.y56{bottom:903.653333pt;}
.y85{bottom:911.653333pt;}
.y9{bottom:914.533333pt;}
.y55{bottom:929.253333pt;}
.y3{bottom:929.880000pt;}
.y1{bottom:929.893333pt;}
.y54{bottom:946.853333pt;}
.y53{bottom:964.453333pt;}
.y52{bottom:982.213333pt;}
.y51{bottom:999.813333pt;}
.y50{bottom:1017.440000pt;}
.y4f{bottom:1035.040000pt;}
.y4e{bottom:1059.680000pt;}
.h6{height:2.512500pt;}
.h14{height:17.586667pt;}
.h16{height:17.592000pt;}
.h18{height:17.600000pt;}
.h17{height:17.620000pt;}
.h15{height:17.746667pt;}
.h13{height:37.090625pt;}
.h11{height:42.780000pt;}
.h10{height:43.215000pt;}
.h5{height:43.355000pt;}
.h3{height:50.895000pt;}
.ha{height:52.134375pt;}
.he{height:53.535000pt;}
.h12{height:54.598989pt;}
.hb{height:59.340000pt;}
.h8{height:62.812500pt;}
.hd{height:64.500000pt;}
.h7{height:65.781915pt;}
.h9{height:85.785000pt;}
.h2{height:144.666667pt;}
.h4{height:144.680000pt;}
.hc{height:285.653333pt;}
.hf{height:285.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:74.272000pt;}
.wf{width:75.072000pt;}
.w9{width:80.800000pt;}
.we{width:81.760000pt;}
.wb{width:82.226667pt;}
.w10{width:83.186667pt;}
.wc{width:94.258667pt;}
.wd{width:125.938667pt;}
.w4{width:131.058667pt;}
.w8{width:166.253333pt;}
.w7{width:191.533333pt;}
.w6{width:191.546667pt;}
.w5{width:501.053333pt;}
.w2{width:563.453333pt;}
.w3{width:563.466667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.560000pt;}
.x9{left:72.000000pt;}
.xa{left:96.032000pt;}
.x4{left:123.866667pt;}
.xb{left:148.040000pt;}
.xf{left:213.960000pt;}
.x8{left:296.706667pt;}
.xc{left:314.306667pt;}
.x10{left:339.906667pt;}
.x5{left:344.866667pt;}
.xd{left:395.106667pt;}
.x11{left:421.666667pt;}
.xe{left:469.386667pt;}
.x12{left:496.746667pt;}
.x7{left:551.626667pt;}
.x3{left:611.466667pt;}
.x13{left:832.960000pt;}
}




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