
    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_13e7f7d8f7ff8f96209168d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0ed8d9ef7f4e2f27ded7b8fe.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8764f0dd2b5e7fce0fecda64.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_cdeaba988f8db7e677a476ad.woff2')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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b3f8aa430bbf747768813a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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;}
.ls11{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.744000px;}
.ls16{letter-spacing:8.640000px;}
.ls5{letter-spacing:9.540000px;}
.ls12{letter-spacing:17.280000px;}
.ls15{letter-spacing:33.960000px;}
.lsf{letter-spacing:39.881280px;}
.ls13{letter-spacing:43.481280px;}
.ls10{letter-spacing:49.961280px;}
.ls4{letter-spacing:1530.996000px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.wsc{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.680200px;}
.wsa{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-5.688720px;}
._19{margin-left:-4.531440px;}
._c{margin-left:-3.525840px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._7{width:2.988000px;}
._8{width:4.242960px;}
._12{width:5.438160px;}
._13{width:6.513840px;}
._15{width:7.541280px;}
._b{width:8.911440px;}
._a{width:10.159200px;}
._d{width:11.735040px;}
._2{width:13.434960px;}
._17{width:14.525040px;}
._6{width:16.449600px;}
._e{width:17.475840px;}
._9{width:18.704880px;}
._11{width:19.900080px;}
._1a{width:21.576240px;}
._1d{width:23.649840px;}
._f{width:24.919920px;}
._10{width:27.250560px;}
._5{width:28.445760px;}
._4{width:29.461680px;}
._1f{width:30.529440px;}
._14{width:31.728960px;}
._16{width:32.987520px;}
._1c{width:34.993200px;}
._1b{width:36.181440px;}
._1e{width:42.194880px;}
._3{width:63.345600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.240000px;}
.y2{bottom:5.430000px;}
.y43{bottom:11.880000px;}
.y5{bottom:19.830000px;}
.y31{bottom:20.520000px;}
.y8{bottom:23.790000px;}
.y30{bottom:37.800000px;}
.y4{bottom:39.630000px;}
.y7{bottom:43.590000px;}
.y2f{bottom:55.080000px;}
.ya{bottom:55.440000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y2e{bottom:72.360000px;}
.y2d{bottom:89.640000px;}
.y2c{bottom:106.740000px;}
.y50{bottom:110.376000px;}
.y4f{bottom:114.876000px;}
.y2b{bottom:124.020000px;}
.y84{bottom:124.236000px;}
.y4e{bottom:125.316000px;}
.y83{bottom:128.736000px;}
.y82{bottom:137.916000px;}
.y92{bottom:139.176000px;}
.y2a{bottom:141.300000px;}
.y9b{bottom:142.416000px;}
.y81{bottom:151.770000px;}
.yba{bottom:152.850000px;}
.y80{bottom:156.270000px;}
.y29{bottom:158.580000px;}
.y7f{bottom:165.630000px;}
.yb8{bottom:166.710000px;}
.y7e{bottom:170.130000px;}
.y4c{bottom:172.110000px;}
.y91{bottom:173.730000px;}
.yb9{bottom:174.630000px;}
.y28{bottom:175.860000px;}
.y4d{bottom:178.050000px;}
.y9a{bottom:179.310000px;}
.y7d{bottom:180.570000px;}
.y99{bottom:183.810000px;}
.y27{bottom:192.960000px;}
.y4b{bottom:193.890000px;}
.y98{bottom:194.430000px;}
.y90{bottom:195.510000px;}
.ya3{bottom:196.410000px;}
.y26{bottom:210.270000px;}
.yb7{bottom:214.050000px;}
.y4a{bottom:215.670000px;}
.y8f{bottom:217.290000px;}
.ya1{bottom:218.190000px;}
.y25{bottom:227.550000px;}
.yb6{bottom:235.830000px;}
.y49{bottom:237.630000px;}
.y8e{bottom:239.070000px;}
.y7c{bottom:240.150000px;}
.y24{bottom:244.830000px;}
.yb5{bottom:257.610000px;}
.y48{bottom:259.410000px;}
.y8d{bottom:261.030000px;}
.y7b{bottom:261.930000px;}
.y23{bottom:262.110000px;}
.ya0{bottom:267.870000px;}
.y22{bottom:279.390000px;}
.yb4{bottom:279.570000px;}
.y47{bottom:281.190000px;}
.y8c{bottom:282.810000px;}
.y7a{bottom:283.710000px;}
.y21{bottom:296.490000px;}
.yb3{bottom:301.350000px;}
.y46{bottom:302.970000px;}
.y8b{bottom:304.590000px;}
.y79{bottom:305.490000px;}
.y41{bottom:313.050000px;}
.y20{bottom:313.770000px;}
.yb2{bottom:323.130000px;}
.y45{bottom:324.930000px;}
.y8a{bottom:326.370000px;}
.y40{bottom:326.910000px;}
.y78{bottom:327.270000px;}
.y1f{bottom:331.050000px;}
.y3f{bottom:340.770000px;}
.yb1{bottom:344.955000px;}
.y44{bottom:346.755000px;}
.y1e{bottom:348.330000px;}
.y89{bottom:348.375000px;}
.y77{bottom:349.275000px;}
.y3e{bottom:354.450000px;}
.y97{bottom:355.215000px;}
.y42{bottom:362.235000px;}
.y1d{bottom:365.610000px;}
.yaf{bottom:366.735000px;}
.y3d{bottom:368.310000px;}
.y88{bottom:370.155000px;}
.y76{bottom:371.055000px;}
.yb0{bottom:372.675000px;}
.y3c{bottom:382.170000px;}
.y1c{bottom:382.890000px;}
.yae{bottom:388.695000px;}
.y87{bottom:392.295000px;}
.y74{bottom:392.835000px;}
.y3b{bottom:395.850000px;}
.y14{bottom:396.615000px;}
.y75{bottom:398.775000px;}
.y1b{bottom:399.990000px;}
.y3a{bottom:409.710000px;}
.yad{bottom:410.475000px;}
.y86{bottom:414.435000px;}
.y73{bottom:414.615000px;}
.y1a{bottom:417.270000px;}
.y39{bottom:423.570000px;}
.yac{bottom:432.255000px;}
.y19{bottom:434.550000px;}
.y72{bottom:436.395000px;}
.y38{bottom:437.250000px;}
.y37{bottom:451.110000px;}
.y18{bottom:451.830000px;}
.yab{bottom:454.035000px;}
.y71{bottom:458.355000px;}
.y36{bottom:464.970000px;}
.y17{bottom:469.110000px;}
.yaa{bottom:475.995000px;}
.y35{bottom:478.695000px;}
.y70{bottom:480.135000px;}
.y9f{bottom:486.075000px;}
.y16{bottom:486.435000px;}
.y34{bottom:492.555000px;}
.ya9{bottom:497.775000px;}
.y6f{bottom:501.915000px;}
.y15{bottom:503.535000px;}
.y33{bottom:506.235000px;}
.ya7{bottom:519.735000px;}
.y6e{bottom:523.695000px;}
.ya8{bottom:525.675000px;}
.y96{bottom:529.635000px;}
.ya6{bottom:542.955000px;}
.y6d{bottom:545.655000px;}
.y85{bottom:551.595000px;}
.ya5{bottom:566.175000px;}
.y6c{bottom:567.435000px;}
.y6b{bottom:589.215000px;}
.y6a{bottom:611.025000px;}
.ya4{bottom:616.965000px;}
.y69{bottom:632.805000px;}
.y67{bottom:654.765000px;}
.y68{bottom:660.705000px;}
.y66{bottom:676.545000px;}
.y95{bottom:682.485000px;}
.y65{bottom:698.325000px;}
.y64{bottom:720.105000px;}
.y63{bottom:742.065000px;}
.y61{bottom:763.845000px;}
.y62{bottom:769.785000px;}
.y60{bottom:785.625000px;}
.y5f{bottom:807.405000px;}
.y9e{bottom:813.345000px;}
.y5e{bottom:829.185000px;}
.y5d{bottom:851.145000px;}
.y5c{bottom:872.970000px;}
.y5b{bottom:894.750000px;}
.y9d{bottom:900.690000px;}
.y59{bottom:916.530000px;}
.y13{bottom:920.490000px;}
.y5a{bottom:922.470000px;}
.y58{bottom:938.490000px;}
.y12{bottom:942.450000px;}
.y94{bottom:944.430000px;}
.y57{bottom:960.270000px;}
.y11{bottom:964.230000px;}
.ya2{bottom:966.210000px;}
.y56{bottom:982.050000px;}
.y10{bottom:986.010000px;}
.y55{bottom:1003.830000px;}
.yf{bottom:1005.990000px;}
.ye{bottom:1023.630000px;}
.y54{bottom:1025.610000px;}
.yd{bottom:1043.790000px;}
.y53{bottom:1047.570000px;}
.yc{bottom:1062.690000px;}
.y52{bottom:1069.350000px;}
.y9c{bottom:1075.290000px;}
.yb{bottom:1088.430000px;}
.y51{bottom:1091.130000px;}
.y93{bottom:1097.070000px;}
.y9{bottom:1110.210000px;}
.y1{bottom:1132.350000px;}
.h12{height:21.114844px;}
.h11{height:29.158594px;}
.h9{height:33.683203px;}
.hd{height:34.036523px;}
.hf{height:34.380000px;}
.he{height:39.760312px;}
.hc{height:41.726953px;}
.h3{height:42.164648px;}
.h6{height:46.251562px;}
.h10{height:46.736719px;}
.h13{height:48.224531px;}
.h5{height:49.255313px;}
.h14{height:50.229844px;}
.h4{height:50.800781px;}
.h15{height:52.417969px;}
.ha{height:54.295313px;}
.h8{height:54.596250px;}
.h7{height:54.864844px;}
.h2{height:77.436000px;}
.hb{height:517.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w8{width:115.050000px;}
.w7{width:201.990000px;}
.w4{width:255.090000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x15{left:30.600000px;}
.x2{left:70.374000px;}
.xc{left:97.415987px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x1a{left:111.815987px;}
.x12{left:116.136000px;}
.xd{left:118.655987px;}
.xa{left:129.275987px;}
.x7{left:131.805000px;}
.x23{left:135.035987px;}
.x46{left:140.075987px;}
.x43{left:150.689973px;}
.x16{left:162.029987px;}
.x1f{left:178.049973px;}
.x3{left:180.030000px;}
.x20{left:183.269987px;}
.x2e{left:185.429973px;}
.x11{left:187.409987px;}
.x32{left:190.829973px;}
.x8{left:193.365000px;}
.x2f{left:195.869987px;}
.x33{left:201.269987px;}
.x26{left:213.869973px;}
.x27{left:219.089987px;}
.x44{left:222.689973px;}
.x45{left:233.129987px;}
.x41{left:238.529973px;}
.x30{left:245.549973px;}
.x42{left:248.969987px;}
.x31{left:255.989987px;}
.xf{left:268.769987px;}
.x36{left:279.254973px;}
.x37{left:289.694987px;}
.x1b{left:309.674973px;}
.x1c{left:314.894987px;}
.x19{left:324.074987px;}
.x10{left:326.414987px;}
.xb{left:338.294987px;}
.x38{left:340.274973px;}
.x39{left:350.714987px;}
.x3c{left:387.074973px;}
.x3d{left:397.514987px;}
.x2c{left:417.314973px;}
.x2d{left:427.754987px;}
.xe{left:441.254987px;}
.x2a{left:467.204973px;}
.x2b{left:472.424987px;}
.x1d{left:501.944973px;}
.x1e{left:507.164987px;}
.x3e{left:510.224973px;}
.x9{left:512.204987px;}
.x3f{left:520.664987px;}
.x34{left:547.844973px;}
.x5{left:554.685000px;}
.x35{left:558.284987px;}
.x21{left:572.684973px;}
.x13{left:575.925000px;}
.x22{left:577.904987px;}
.x17{left:602.024973px;}
.x18{left:607.244987px;}
.x3a{left:679.289973px;}
.x3b{left:689.729987px;}
.x24{left:723.209973px;}
.x25{left:728.429987px;}
.x40{left:774.689973px;}
.x14{left:777.930000px;}
.x28{left:779.909973px;}
.x29{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.661333pt;}
.ls16{letter-spacing:7.680000pt;}
.ls5{letter-spacing:8.480000pt;}
.ls12{letter-spacing:15.360000pt;}
.ls15{letter-spacing:30.186667pt;}
.lsf{letter-spacing:35.450027pt;}
.ls13{letter-spacing:38.650027pt;}
.ls10{letter-spacing:44.410027pt;}
.ls4{letter-spacing:1360.885333pt;}
.ws9{word-spacing:-58.880000pt;}
.wsc{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.049067pt;}
.wsa{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-5.056640pt;}
._19{margin-left:-4.027947pt;}
._c{margin-left:-3.134080pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._7{width:2.656000pt;}
._8{width:3.771520pt;}
._12{width:4.833920pt;}
._13{width:5.790080pt;}
._15{width:6.703360pt;}
._b{width:7.921280pt;}
._a{width:9.030400pt;}
._d{width:10.431147pt;}
._2{width:11.942187pt;}
._17{width:12.911147pt;}
._6{width:14.621867pt;}
._e{width:15.534080pt;}
._9{width:16.626560pt;}
._11{width:17.688960pt;}
._1a{width:19.178880pt;}
._1d{width:21.022080pt;}
._f{width:22.151040pt;}
._10{width:24.222720pt;}
._5{width:25.285120pt;}
._4{width:26.188160pt;}
._1f{width:27.137280pt;}
._14{width:28.203520pt;}
._16{width:29.322240pt;}
._1c{width:31.105067pt;}
._1b{width:32.161280pt;}
._1e{width:37.506560pt;}
._3{width:56.307200pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.880000pt;}
.y2{bottom:4.826667pt;}
.y43{bottom:10.560000pt;}
.y5{bottom:17.626667pt;}
.y31{bottom:18.240000pt;}
.y8{bottom:21.146667pt;}
.y30{bottom:33.600000pt;}
.y4{bottom:35.226667pt;}
.y7{bottom:38.746667pt;}
.y2f{bottom:48.960000pt;}
.ya{bottom:49.280000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y2e{bottom:64.320000pt;}
.y2d{bottom:79.680000pt;}
.y2c{bottom:94.880000pt;}
.y50{bottom:98.112000pt;}
.y4f{bottom:102.112000pt;}
.y2b{bottom:110.240000pt;}
.y84{bottom:110.432000pt;}
.y4e{bottom:111.392000pt;}
.y83{bottom:114.432000pt;}
.y82{bottom:122.592000pt;}
.y92{bottom:123.712000pt;}
.y2a{bottom:125.600000pt;}
.y9b{bottom:126.592000pt;}
.y81{bottom:134.906667pt;}
.yba{bottom:135.866667pt;}
.y80{bottom:138.906667pt;}
.y29{bottom:140.960000pt;}
.y7f{bottom:147.226667pt;}
.yb8{bottom:148.186667pt;}
.y7e{bottom:151.226667pt;}
.y4c{bottom:152.986667pt;}
.y91{bottom:154.426667pt;}
.yb9{bottom:155.226667pt;}
.y28{bottom:156.320000pt;}
.y4d{bottom:158.266667pt;}
.y9a{bottom:159.386667pt;}
.y7d{bottom:160.506667pt;}
.y99{bottom:163.386667pt;}
.y27{bottom:171.520000pt;}
.y4b{bottom:172.346667pt;}
.y98{bottom:172.826667pt;}
.y90{bottom:173.786667pt;}
.ya3{bottom:174.586667pt;}
.y26{bottom:186.906667pt;}
.yb7{bottom:190.266667pt;}
.y4a{bottom:191.706667pt;}
.y8f{bottom:193.146667pt;}
.ya1{bottom:193.946667pt;}
.y25{bottom:202.266667pt;}
.yb6{bottom:209.626667pt;}
.y49{bottom:211.226667pt;}
.y8e{bottom:212.506667pt;}
.y7c{bottom:213.466667pt;}
.y24{bottom:217.626667pt;}
.yb5{bottom:228.986667pt;}
.y48{bottom:230.586667pt;}
.y8d{bottom:232.026667pt;}
.y7b{bottom:232.826667pt;}
.y23{bottom:232.986667pt;}
.ya0{bottom:238.106667pt;}
.y22{bottom:248.346667pt;}
.yb4{bottom:248.506667pt;}
.y47{bottom:249.946667pt;}
.y8c{bottom:251.386667pt;}
.y7a{bottom:252.186667pt;}
.y21{bottom:263.546667pt;}
.yb3{bottom:267.866667pt;}
.y46{bottom:269.306667pt;}
.y8b{bottom:270.746667pt;}
.y79{bottom:271.546667pt;}
.y41{bottom:278.266667pt;}
.y20{bottom:278.906667pt;}
.yb2{bottom:287.226667pt;}
.y45{bottom:288.826667pt;}
.y8a{bottom:290.106667pt;}
.y40{bottom:290.586667pt;}
.y78{bottom:290.906667pt;}
.y1f{bottom:294.266667pt;}
.y3f{bottom:302.906667pt;}
.yb1{bottom:306.626667pt;}
.y44{bottom:308.226667pt;}
.y1e{bottom:309.626667pt;}
.y89{bottom:309.666667pt;}
.y77{bottom:310.466667pt;}
.y3e{bottom:315.066667pt;}
.y97{bottom:315.746667pt;}
.y42{bottom:321.986667pt;}
.y1d{bottom:324.986667pt;}
.yaf{bottom:325.986667pt;}
.y3d{bottom:327.386667pt;}
.y88{bottom:329.026667pt;}
.y76{bottom:329.826667pt;}
.yb0{bottom:331.266667pt;}
.y3c{bottom:339.706667pt;}
.y1c{bottom:340.346667pt;}
.yae{bottom:345.506667pt;}
.y87{bottom:348.706667pt;}
.y74{bottom:349.186667pt;}
.y3b{bottom:351.866667pt;}
.y14{bottom:352.546667pt;}
.y75{bottom:354.466667pt;}
.y1b{bottom:355.546667pt;}
.y3a{bottom:364.186667pt;}
.yad{bottom:364.866667pt;}
.y86{bottom:368.386667pt;}
.y73{bottom:368.546667pt;}
.y1a{bottom:370.906667pt;}
.y39{bottom:376.506667pt;}
.yac{bottom:384.226667pt;}
.y19{bottom:386.266667pt;}
.y72{bottom:387.906667pt;}
.y38{bottom:388.666667pt;}
.y37{bottom:400.986667pt;}
.y18{bottom:401.626667pt;}
.yab{bottom:403.586667pt;}
.y71{bottom:407.426667pt;}
.y36{bottom:413.306667pt;}
.y17{bottom:416.986667pt;}
.yaa{bottom:423.106667pt;}
.y35{bottom:425.506667pt;}
.y70{bottom:426.786667pt;}
.y9f{bottom:432.066667pt;}
.y16{bottom:432.386667pt;}
.y34{bottom:437.826667pt;}
.ya9{bottom:442.466667pt;}
.y6f{bottom:446.146667pt;}
.y15{bottom:447.586667pt;}
.y33{bottom:449.986667pt;}
.ya7{bottom:461.986667pt;}
.y6e{bottom:465.506667pt;}
.ya8{bottom:467.266667pt;}
.y96{bottom:470.786667pt;}
.ya6{bottom:482.626667pt;}
.y6d{bottom:485.026667pt;}
.y85{bottom:490.306667pt;}
.ya5{bottom:503.266667pt;}
.y6c{bottom:504.386667pt;}
.y6b{bottom:523.746667pt;}
.y6a{bottom:543.133333pt;}
.ya4{bottom:548.413333pt;}
.y69{bottom:562.493333pt;}
.y67{bottom:582.013333pt;}
.y68{bottom:587.293333pt;}
.y66{bottom:601.373333pt;}
.y95{bottom:606.653333pt;}
.y65{bottom:620.733333pt;}
.y64{bottom:640.093333pt;}
.y63{bottom:659.613333pt;}
.y61{bottom:678.973333pt;}
.y62{bottom:684.253333pt;}
.y60{bottom:698.333333pt;}
.y5f{bottom:717.693333pt;}
.y9e{bottom:722.973333pt;}
.y5e{bottom:737.053333pt;}
.y5d{bottom:756.573333pt;}
.y5c{bottom:775.973333pt;}
.y5b{bottom:795.333333pt;}
.y9d{bottom:800.613333pt;}
.y59{bottom:814.693333pt;}
.y13{bottom:818.213333pt;}
.y5a{bottom:819.973333pt;}
.y58{bottom:834.213333pt;}
.y12{bottom:837.733333pt;}
.y94{bottom:839.493333pt;}
.y57{bottom:853.573333pt;}
.y11{bottom:857.093333pt;}
.ya2{bottom:858.853333pt;}
.y56{bottom:872.933333pt;}
.y10{bottom:876.453333pt;}
.y55{bottom:892.293333pt;}
.yf{bottom:894.213333pt;}
.ye{bottom:909.893333pt;}
.y54{bottom:911.653333pt;}
.yd{bottom:927.813333pt;}
.y53{bottom:931.173333pt;}
.yc{bottom:944.613333pt;}
.y52{bottom:950.533333pt;}
.y9c{bottom:955.813333pt;}
.yb{bottom:967.493333pt;}
.y51{bottom:969.893333pt;}
.y93{bottom:975.173333pt;}
.y9{bottom:986.853333pt;}
.y1{bottom:1006.533333pt;}
.h12{height:18.768750pt;}
.h11{height:25.918750pt;}
.h9{height:29.940625pt;}
.hd{height:30.254687pt;}
.hf{height:30.560000pt;}
.he{height:35.342500pt;}
.hc{height:37.090625pt;}
.h3{height:37.479688pt;}
.h6{height:41.112500pt;}
.h10{height:41.543750pt;}
.h13{height:42.866250pt;}
.h5{height:43.782500pt;}
.h14{height:44.648750pt;}
.h4{height:45.156250pt;}
.h15{height:46.593750pt;}
.ha{height:48.262500pt;}
.h8{height:48.530000pt;}
.h7{height:48.768750pt;}
.h2{height:68.832000pt;}
.hb{height:460.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w8{width:102.266667pt;}
.w7{width:179.546667pt;}
.w4{width:226.746667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x15{left:27.200000pt;}
.x2{left:62.554667pt;}
.xc{left:86.591988pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x1a{left:99.391988pt;}
.x12{left:103.232000pt;}
.xd{left:105.471988pt;}
.xa{left:114.911988pt;}
.x7{left:117.160000pt;}
.x23{left:120.031988pt;}
.x46{left:124.511988pt;}
.x43{left:133.946643pt;}
.x16{left:144.026655pt;}
.x1f{left:158.266643pt;}
.x3{left:160.026667pt;}
.x20{left:162.906655pt;}
.x2e{left:164.826643pt;}
.x11{left:166.586655pt;}
.x32{left:169.626643pt;}
.x8{left:171.880000pt;}
.x2f{left:174.106655pt;}
.x33{left:178.906655pt;}
.x26{left:190.106643pt;}
.x27{left:194.746655pt;}
.x44{left:197.946643pt;}
.x45{left:207.226655pt;}
.x41{left:212.026643pt;}
.x30{left:218.266643pt;}
.x42{left:221.306655pt;}
.x31{left:227.546655pt;}
.xf{left:238.906655pt;}
.x36{left:248.226643pt;}
.x37{left:257.506655pt;}
.x1b{left:275.266643pt;}
.x1c{left:279.906655pt;}
.x19{left:288.066655pt;}
.x10{left:290.146655pt;}
.xb{left:300.706655pt;}
.x38{left:302.466643pt;}
.x39{left:311.746655pt;}
.x3c{left:344.066643pt;}
.x3d{left:353.346655pt;}
.x2c{left:370.946643pt;}
.x2d{left:380.226655pt;}
.xe{left:392.226655pt;}
.x2a{left:415.293310pt;}
.x2b{left:419.933322pt;}
.x1d{left:446.173310pt;}
.x1e{left:450.813322pt;}
.x3e{left:453.533310pt;}
.x9{left:455.293322pt;}
.x3f{left:462.813322pt;}
.x34{left:486.973310pt;}
.x5{left:493.053333pt;}
.x35{left:496.253322pt;}
.x21{left:509.053310pt;}
.x13{left:511.933333pt;}
.x22{left:513.693322pt;}
.x17{left:535.133310pt;}
.x18{left:539.773322pt;}
.x3a{left:603.813310pt;}
.x3b{left:613.093322pt;}
.x24{left:642.853310pt;}
.x25{left:647.493322pt;}
.x40{left:688.613310pt;}
.x14{left:691.493333pt;}
.x28{left:693.253310pt;}
.x29{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; }
  