
    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_53a2079f95e628bee3b2424d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_573586c4636723dc1b971c28.woff2')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_96efb953dbccd97c07f9d205.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0bf0192612fc52ed1642bea5.woff2')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_b942a9690fb8242410eb84b1.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_1f9ba09b130fef9f6e0db985.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_df88d9626ad278843d9503d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060547;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);}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.846000px;}
.ls8{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.269400px;}
.lsa{letter-spacing:-0.085200px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.292200px;}
.ls9{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.900000px;}
.ls5{letter-spacing:18.720000px;}
.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:-18.000000px;}
.ws3{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.790600px;}
.ws6{word-spacing:-10.905000px;}
.ws5{word-spacing:-10.527600px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._1{width:1.234560px;}
._8{width:2.751360px;}
._a{width:3.858480px;}
._7{width:5.029440px;}
._9{width:6.858000px;}
._5{width:8.478000px;}
._6{width:9.641760px;}
._e{width:11.410560px;}
._d{width:12.474000px;}
._13{width:14.742000px;}
._11{width:16.362000px;}
._c{width:17.391120px;}
._b{width:18.738000px;}
._17{width:20.144880px;}
._10{width:22.140000px;}
._19{width:23.382000px;}
._18{width:25.056000px;}
._12{width:26.514000px;}
._16{width:28.188000px;}
._f{width:29.268000px;}
._1b{width:30.456000px;}
._1c{width:31.806000px;}
._22{width:33.001440px;}
._26{width:34.020000px;}
._14{width:35.784000px;}
._15{width:36.916560px;}
._20{width:38.306880px;}
._1f{width:39.544560px;}
._21{width:40.662000px;}
._1e{width:42.394560px;}
._1d{width:43.524000px;}
._23{width:44.935440px;}
._24{width:46.036560px;}
._25{width:51.262560px;}
._1a{width:52.920000px;}
._2{width:1625.460000px;}
._3{width:1960.972800px;}
.fc8{color:rgb(54,95,145);}
.fc7{color:transparent;}
.fc6{color:rgb(15,17,21);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.240000px;}
.yef{bottom:5.565000px;}
.y26{bottom:5.580000px;}
.yfe{bottom:5.790000px;}
.yee{bottom:23.385000px;}
.y25{bottom:23.400000px;}
.yf1{bottom:23.565000px;}
.yf9{bottom:23.580000px;}
.yfd{bottom:23.610000px;}
.y21{bottom:27.000000px;}
.y101{bottom:41.220000px;}
.yed{bottom:41.385000px;}
.yf8{bottom:41.400000px;}
.yf5{bottom:41.430000px;}
.y24{bottom:42.120000px;}
.y20{bottom:45.000000px;}
.y51{bottom:58.500000px;}
.y100{bottom:59.040000px;}
.yec{bottom:59.205000px;}
.yf7{bottom:59.220000px;}
.y1f{bottom:62.820000px;}
.y7{bottom:76.860000px;}
.ycd{bottom:80.100000px;}
.y1e{bottom:80.640000px;}
.y8f{bottom:81.540000px;}
.yba{bottom:88.740000px;}
.y4d{bottom:96.120000px;}
.ycc{bottom:97.920000px;}
.y1d{bottom:98.460000px;}
.y8e{bottom:99.540000px;}
.y3a{bottom:105.120000px;}
.yb9{bottom:106.560000px;}
.yf3{bottom:109.260000px;}
.y4c{bottom:113.940000px;}
.y1c{bottom:116.280000px;}
.y8d{bottom:117.360000px;}
.ycb{bottom:119.160000px;}
.y39{bottom:122.940000px;}
.yb8{bottom:124.380000px;}
.y4b{bottom:131.760000px;}
.y1b{bottom:134.130000px;}
.y8c{bottom:135.180000px;}
.y38{bottom:140.760000px;}
.yb7{bottom:142.380000px;}
.y4a{bottom:149.580000px;}
.y1a{bottom:152.130000px;}
.y8b{bottom:153.000000px;}
.yf2{bottom:158.400000px;}
.y37{bottom:158.580000px;}
.yb6{bottom:160.200000px;}
.y49{bottom:167.580000px;}
.y19{bottom:169.950000px;}
.y8a{bottom:170.820000px;}
.y36{bottom:176.580000px;}
.yb5{bottom:178.020000px;}
.y48{bottom:185.400000px;}
.y18{bottom:187.770000px;}
.y89{bottom:188.640000px;}
.y35{bottom:194.400000px;}
.yb4{bottom:195.840000px;}
.y47{bottom:203.220000px;}
.y17{bottom:205.590000px;}
.y88{bottom:206.670000px;}
.yf0{bottom:207.585000px;}
.y34{bottom:212.250000px;}
.yb3{bottom:213.690000px;}
.y46{bottom:221.070000px;}
.y16{bottom:223.410000px;}
.y87{bottom:224.490000px;}
.y33{bottom:230.070000px;}
.yb2{bottom:231.510000px;}
.y15{bottom:241.410000px;}
.y86{bottom:242.310000px;}
.y45{bottom:247.530000px;}
.y32{bottom:247.890000px;}
.yb1{bottom:249.510000px;}
.y14{bottom:259.230000px;}
.y85{bottom:260.130000px;}
.y31{bottom:265.710000px;}
.yb0{bottom:267.330000px;}
.y44{bottom:274.710000px;}
.y13{bottom:277.050000px;}
.y84{bottom:277.950000px;}
.y30{bottom:283.710000px;}
.yaf{bottom:285.150000px;}
.yeb{bottom:292.545000px;}
.y43{bottom:292.710000px;}
.y12{bottom:294.870000px;}
.y83{bottom:295.950000px;}
.y2f{bottom:301.530000px;}
.yae{bottom:302.970000px;}
.y42{bottom:310.530000px;}
.y82{bottom:313.770000px;}
.y2e{bottom:319.350000px;}
.yca{bottom:322.770000px;}
.y41{bottom:328.350000px;}
.y81{bottom:331.590000px;}
.y2d{bottom:337.170000px;}
.yc9{bottom:340.590000px;}
.y40{bottom:346.170000px;}
.y80{bottom:349.410000px;}
.y2c{bottom:354.990000px;}
.yad{bottom:356.610000px;}
.yc8{bottom:358.410000px;}
.y3f{bottom:363.990000px;}
.y7f{bottom:367.230000px;}
.y2b{bottom:372.990000px;}
.yac{bottom:374.430000px;}
.yc7{bottom:376.230000px;}
.y3e{bottom:381.990000px;}
.yea{bottom:383.430000px;}
.y7e{bottom:385.050000px;}
.y2a{bottom:390.810000px;}
.yab{bottom:392.430000px;}
.yc6{bottom:394.050000px;}
.y3d{bottom:399.810000px;}
.y7d{bottom:403.050000px;}
.y29{bottom:408.630000px;}
.yaa{bottom:410.250000px;}
.yc5{bottom:412.050000px;}
.ye9{bottom:414.750000px;}
.y3c{bottom:417.630000px;}
.y7c{bottom:420.870000px;}
.y28{bottom:426.450000px;}
.ya9{bottom:428.070000px;}
.yc4{bottom:429.870000px;}
.ye8{bottom:432.570000px;}
.y3b{bottom:435.450000px;}
.y7b{bottom:438.690000px;}
.ya8{bottom:445.935000px;}
.yc3{bottom:447.735000px;}
.ye7{bottom:450.435000px;}
.y7a{bottom:456.555000px;}
.y27{bottom:460.335000px;}
.ya7{bottom:463.755000px;}
.yc2{bottom:465.555000px;}
.ye6{bottom:468.255000px;}
.y79{bottom:474.375000px;}
.ya6{bottom:481.575000px;}
.yc1{bottom:483.375000px;}
.ye5{bottom:486.255000px;}
.y23{bottom:486.975000px;}
.y78{bottom:492.195000px;}
.ya5{bottom:499.575000px;}
.yc0{bottom:501.375000px;}
.ye4{bottom:504.075000px;}
.y77{bottom:510.195000px;}
.ya4{bottom:517.395000px;}
.ybf{bottom:519.195000px;}
.ye3{bottom:521.895000px;}
.y76{bottom:528.015000px;}
.ya3{bottom:535.215000px;}
.ye2{bottom:539.715000px;}
.ybe{bottom:541.335000px;}
.y75{bottom:545.835000px;}
.y11{bottom:551.235000px;}
.ya2{bottom:553.035000px;}
.ye1{bottom:557.535000px;}
.y74{bottom:563.655000px;}
.ybd{bottom:569.775000px;}
.ya1{bottom:570.855000px;}
.ye0{bottom:575.535000px;}
.y73{bottom:581.475000px;}
.ya0{bottom:588.855000px;}
.ydf{bottom:593.355000px;}
.y72{bottom:599.475000px;}
.ybc{bottom:600.015000px;}
.y9f{bottom:606.675000px;}
.yde{bottom:611.175000px;}
.y71{bottom:617.295000px;}
.y9e{bottom:624.495000px;}
.ydd{bottom:628.995000px;}
.y70{bottom:635.115000px;}
.y9d{bottom:642.315000px;}
.ydc{bottom:646.815000px;}
.y6f{bottom:652.935000px;}
.y9c{bottom:660.135000px;}
.ydb{bottom:664.635000px;}
.y6e{bottom:670.755000px;}
.y9b{bottom:677.985000px;}
.yda{bottom:682.665000px;}
.y6d{bottom:688.605000px;}
.y9a{bottom:695.985000px;}
.yd9{bottom:700.485000px;}
.y6c{bottom:706.605000px;}
.y99{bottom:713.805000px;}
.yd8{bottom:718.305000px;}
.y6b{bottom:724.425000px;}
.y98{bottom:731.625000px;}
.yd7{bottom:736.125000px;}
.y6a{bottom:742.245000px;}
.y97{bottom:749.445000px;}
.yd6{bottom:753.945000px;}
.y69{bottom:760.065000px;}
.y96{bottom:767.265000px;}
.yd5{bottom:771.765000px;}
.y68{bottom:777.885000px;}
.y95{bottom:785.265000px;}
.ybb{bottom:786.885000px;}
.yd4{bottom:789.765000px;}
.y67{bottom:795.885000px;}
.y94{bottom:803.085000px;}
.yd3{bottom:807.585000px;}
.y66{bottom:813.705000px;}
.yd2{bottom:825.405000px;}
.y93{bottom:826.845000px;}
.y65{bottom:831.525000px;}
.yd1{bottom:843.225000px;}
.y92{bottom:844.665000px;}
.y64{bottom:849.345000px;}
.yd0{bottom:861.045000px;}
.y63{bottom:867.165000px;}
.y91{bottom:868.965000px;}
.y10{bottom:870.765000px;}
.y104{bottom:874.365000px;}
.ycf{bottom:879.045000px;}
.y62{bottom:884.985000px;}
.yf{bottom:894.705000px;}
.y103{bottom:901.185000px;}
.y61{bottom:902.985000px;}
.yce{bottom:907.305000px;}
.ye{bottom:918.510000px;}
.y60{bottom:920.850000px;}
.y102{bottom:928.050000px;}
.y5f{bottom:938.670000px;}
.yd{bottom:942.090000px;}
.yfb{bottom:951.630000px;}
.y5e{bottom:956.490000px;}
.yc{bottom:968.910000px;}
.y5d{bottom:974.310000px;}
.yfa{bottom:982.950000px;}
.y5c{bottom:992.310000px;}
.yb{bottom:996.630000px;}
.y5b{bottom:1010.130000px;}
.ya{bottom:1024.530000px;}
.y5a{bottom:1027.950000px;}
.yf6{bottom:1032.090000px;}
.y59{bottom:1045.770000px;}
.y9{bottom:1056.930000px;}
.yff{bottom:1060.170000px;}
.y58{bottom:1063.590000px;}
.y90{bottom:1072.410000px;}
.y57{bottom:1081.410000px;}
.y8{bottom:1087.350000px;}
.y56{bottom:1099.410000px;}
.y6{bottom:1113.270000px;}
.yf4{bottom:1117.050000px;}
.y55{bottom:1117.230000px;}
.y5{bottom:1132.530000px;}
.y54{bottom:1135.050000px;}
.yfc{bottom:1144.950000px;}
.y4{bottom:1150.920000px;}
.y53{bottom:1152.900000px;}
.y3{bottom:1166.220000px;}
.y52{bottom:1170.720000px;}
.y2{bottom:1181.520000px;}
.y50{bottom:1183.860000px;}
.y4f{bottom:1189.260000px;}
.y4e{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h13{height:10.363359px;}
.h12{height:15.240234px;}
.h1a{height:26.805000px;}
.h1b{height:35.850000px;}
.h10{height:37.705078px;}
.h11{height:40.843828px;}
.h19{height:44.625000px;}
.h17{height:44.638500px;}
.h16{height:44.640000px;}
.h6{height:47.344922px;}
.h14{height:52.971680px;}
.h7{height:52.998047px;}
.hb{height:54.421875px;}
.ha{height:60.041250px;}
.h18{height:62.670000px;}
.hd{height:63.345000px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:66.757500px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.hf{height:72.562500px;}
.h1c{height:80.265000px;}
.h15{height:80.445000px;}
.h9{height:84.898125px;}
.hc{height:313.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:17.985000px;}
.w5{width:17.998500px;}
.w4{width:347.460000px;}
.w6{width:347.653500px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.065000px;}
.x9{left:8.098500px;}
.x17{left:52.921500px;}
.x5{left:54.000000px;}
.xf{left:55.440000px;}
.x8{left:72.901500px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.xd{left:231.870000px;}
.x1{left:259.950000px;}
.x2{left:320.475000px;}
.x4{left:335.055000px;}
.x3{left:353.055000px;}
.x13{left:399.855000px;}
.x12{left:416.055000px;}
.xe{left:446.505000px;}
.x14{left:472.440000px;}
.xb{left:473.505000px;}
.x16{left:492.780000px;}
.xc{left:514.725000px;}
.x10{left:563.325000px;}
.x11{left:814.860000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.752000pt;}
.ls8{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.239467pt;}
.lsa{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.259733pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls5{letter-spacing:16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws6{word-spacing:-9.693333pt;}
.ws5{word-spacing:-9.357867pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.097387pt;}
._8{width:2.445653pt;}
._a{width:3.429760pt;}
._7{width:4.470613pt;}
._9{width:6.096000pt;}
._5{width:7.536000pt;}
._6{width:8.570453pt;}
._e{width:10.142720pt;}
._d{width:11.088000pt;}
._13{width:13.104000pt;}
._11{width:14.544000pt;}
._c{width:15.458773pt;}
._b{width:16.656000pt;}
._17{width:17.906560pt;}
._10{width:19.680000pt;}
._19{width:20.784000pt;}
._18{width:22.272000pt;}
._12{width:23.568000pt;}
._16{width:25.056000pt;}
._f{width:26.016000pt;}
._1b{width:27.072000pt;}
._1c{width:28.272000pt;}
._22{width:29.334613pt;}
._26{width:30.240000pt;}
._14{width:31.808000pt;}
._15{width:32.814720pt;}
._20{width:34.050560pt;}
._1f{width:35.150720pt;}
._21{width:36.144000pt;}
._1e{width:37.684053pt;}
._1d{width:38.688000pt;}
._23{width:39.942613pt;}
._24{width:40.921387pt;}
._25{width:45.566720pt;}
._1a{width:47.040000pt;}
._2{width:1444.853333pt;}
._3{width:1743.086933pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.880000pt;}
.yef{bottom:4.946667pt;}
.y26{bottom:4.960000pt;}
.yfe{bottom:5.146667pt;}
.yee{bottom:20.786667pt;}
.y25{bottom:20.800000pt;}
.yf1{bottom:20.946667pt;}
.yf9{bottom:20.960000pt;}
.yfd{bottom:20.986667pt;}
.y21{bottom:24.000000pt;}
.y101{bottom:36.640000pt;}
.yed{bottom:36.786667pt;}
.yf8{bottom:36.800000pt;}
.yf5{bottom:36.826667pt;}
.y24{bottom:37.440000pt;}
.y20{bottom:40.000000pt;}
.y51{bottom:52.000000pt;}
.y100{bottom:52.480000pt;}
.yec{bottom:52.626667pt;}
.yf7{bottom:52.640000pt;}
.y1f{bottom:55.840000pt;}
.y7{bottom:68.320000pt;}
.ycd{bottom:71.200000pt;}
.y1e{bottom:71.680000pt;}
.y8f{bottom:72.480000pt;}
.yba{bottom:78.880000pt;}
.y4d{bottom:85.440000pt;}
.ycc{bottom:87.040000pt;}
.y1d{bottom:87.520000pt;}
.y8e{bottom:88.480000pt;}
.y3a{bottom:93.440000pt;}
.yb9{bottom:94.720000pt;}
.yf3{bottom:97.120000pt;}
.y4c{bottom:101.280000pt;}
.y1c{bottom:103.360000pt;}
.y8d{bottom:104.320000pt;}
.ycb{bottom:105.920000pt;}
.y39{bottom:109.280000pt;}
.yb8{bottom:110.560000pt;}
.y4b{bottom:117.120000pt;}
.y1b{bottom:119.226667pt;}
.y8c{bottom:120.160000pt;}
.y38{bottom:125.120000pt;}
.yb7{bottom:126.560000pt;}
.y4a{bottom:132.960000pt;}
.y1a{bottom:135.226667pt;}
.y8b{bottom:136.000000pt;}
.yf2{bottom:140.800000pt;}
.y37{bottom:140.960000pt;}
.yb6{bottom:142.400000pt;}
.y49{bottom:148.960000pt;}
.y19{bottom:151.066667pt;}
.y8a{bottom:151.840000pt;}
.y36{bottom:156.960000pt;}
.yb5{bottom:158.240000pt;}
.y48{bottom:164.800000pt;}
.y18{bottom:166.906667pt;}
.y89{bottom:167.680000pt;}
.y35{bottom:172.800000pt;}
.yb4{bottom:174.080000pt;}
.y47{bottom:180.640000pt;}
.y17{bottom:182.746667pt;}
.y88{bottom:183.706667pt;}
.yf0{bottom:184.520000pt;}
.y34{bottom:188.666667pt;}
.yb3{bottom:189.946667pt;}
.y46{bottom:196.506667pt;}
.y16{bottom:198.586667pt;}
.y87{bottom:199.546667pt;}
.y33{bottom:204.506667pt;}
.yb2{bottom:205.786667pt;}
.y15{bottom:214.586667pt;}
.y86{bottom:215.386667pt;}
.y45{bottom:220.026667pt;}
.y32{bottom:220.346667pt;}
.yb1{bottom:221.786667pt;}
.y14{bottom:230.426667pt;}
.y85{bottom:231.226667pt;}
.y31{bottom:236.186667pt;}
.yb0{bottom:237.626667pt;}
.y44{bottom:244.186667pt;}
.y13{bottom:246.266667pt;}
.y84{bottom:247.066667pt;}
.y30{bottom:252.186667pt;}
.yaf{bottom:253.466667pt;}
.yeb{bottom:260.040000pt;}
.y43{bottom:260.186667pt;}
.y12{bottom:262.106667pt;}
.y83{bottom:263.066667pt;}
.y2f{bottom:268.026667pt;}
.yae{bottom:269.306667pt;}
.y42{bottom:276.026667pt;}
.y82{bottom:278.906667pt;}
.y2e{bottom:283.866667pt;}
.yca{bottom:286.906667pt;}
.y41{bottom:291.866667pt;}
.y81{bottom:294.746667pt;}
.y2d{bottom:299.706667pt;}
.yc9{bottom:302.746667pt;}
.y40{bottom:307.706667pt;}
.y80{bottom:310.586667pt;}
.y2c{bottom:315.546667pt;}
.yad{bottom:316.986667pt;}
.yc8{bottom:318.586667pt;}
.y3f{bottom:323.546667pt;}
.y7f{bottom:326.426667pt;}
.y2b{bottom:331.546667pt;}
.yac{bottom:332.826667pt;}
.yc7{bottom:334.426667pt;}
.y3e{bottom:339.546667pt;}
.yea{bottom:340.826667pt;}
.y7e{bottom:342.266667pt;}
.y2a{bottom:347.386667pt;}
.yab{bottom:348.826667pt;}
.yc6{bottom:350.266667pt;}
.y3d{bottom:355.386667pt;}
.y7d{bottom:358.266667pt;}
.y29{bottom:363.226667pt;}
.yaa{bottom:364.666667pt;}
.yc5{bottom:366.266667pt;}
.ye9{bottom:368.666667pt;}
.y3c{bottom:371.226667pt;}
.y7c{bottom:374.106667pt;}
.y28{bottom:379.066667pt;}
.ya9{bottom:380.506667pt;}
.yc4{bottom:382.106667pt;}
.ye8{bottom:384.506667pt;}
.y3b{bottom:387.066667pt;}
.y7b{bottom:389.946667pt;}
.ya8{bottom:396.386667pt;}
.yc3{bottom:397.986667pt;}
.ye7{bottom:400.386667pt;}
.y7a{bottom:405.826667pt;}
.y27{bottom:409.186667pt;}
.ya7{bottom:412.226667pt;}
.yc2{bottom:413.826667pt;}
.ye6{bottom:416.226667pt;}
.y79{bottom:421.666667pt;}
.ya6{bottom:428.066667pt;}
.yc1{bottom:429.666667pt;}
.ye5{bottom:432.226667pt;}
.y23{bottom:432.866667pt;}
.y78{bottom:437.506667pt;}
.ya5{bottom:444.066667pt;}
.yc0{bottom:445.666667pt;}
.ye4{bottom:448.066667pt;}
.y77{bottom:453.506667pt;}
.ya4{bottom:459.906667pt;}
.ybf{bottom:461.506667pt;}
.ye3{bottom:463.906667pt;}
.y76{bottom:469.346667pt;}
.ya3{bottom:475.746667pt;}
.ye2{bottom:479.746667pt;}
.ybe{bottom:481.186667pt;}
.y75{bottom:485.186667pt;}
.y11{bottom:489.986667pt;}
.ya2{bottom:491.586667pt;}
.ye1{bottom:495.586667pt;}
.y74{bottom:501.026667pt;}
.ybd{bottom:506.466667pt;}
.ya1{bottom:507.426667pt;}
.ye0{bottom:511.586667pt;}
.y73{bottom:516.866667pt;}
.ya0{bottom:523.426667pt;}
.ydf{bottom:527.426667pt;}
.y72{bottom:532.866667pt;}
.ybc{bottom:533.346667pt;}
.y9f{bottom:539.266667pt;}
.yde{bottom:543.266667pt;}
.y71{bottom:548.706667pt;}
.y9e{bottom:555.106667pt;}
.ydd{bottom:559.106667pt;}
.y70{bottom:564.546667pt;}
.y9d{bottom:570.946667pt;}
.ydc{bottom:574.946667pt;}
.y6f{bottom:580.386667pt;}
.y9c{bottom:586.786667pt;}
.ydb{bottom:590.786667pt;}
.y6e{bottom:596.226667pt;}
.y9b{bottom:602.653333pt;}
.yda{bottom:606.813333pt;}
.y6d{bottom:612.093333pt;}
.y9a{bottom:618.653333pt;}
.yd9{bottom:622.653333pt;}
.y6c{bottom:628.093333pt;}
.y99{bottom:634.493333pt;}
.yd8{bottom:638.493333pt;}
.y6b{bottom:643.933333pt;}
.y98{bottom:650.333333pt;}
.yd7{bottom:654.333333pt;}
.y6a{bottom:659.773333pt;}
.y97{bottom:666.173333pt;}
.yd6{bottom:670.173333pt;}
.y69{bottom:675.613333pt;}
.y96{bottom:682.013333pt;}
.yd5{bottom:686.013333pt;}
.y68{bottom:691.453333pt;}
.y95{bottom:698.013333pt;}
.ybb{bottom:699.453333pt;}
.yd4{bottom:702.013333pt;}
.y67{bottom:707.453333pt;}
.y94{bottom:713.853333pt;}
.yd3{bottom:717.853333pt;}
.y66{bottom:723.293333pt;}
.yd2{bottom:733.693333pt;}
.y93{bottom:734.973333pt;}
.y65{bottom:739.133333pt;}
.yd1{bottom:749.533333pt;}
.y92{bottom:750.813333pt;}
.y64{bottom:754.973333pt;}
.yd0{bottom:765.373333pt;}
.y63{bottom:770.813333pt;}
.y91{bottom:772.413333pt;}
.y10{bottom:774.013333pt;}
.y104{bottom:777.213333pt;}
.ycf{bottom:781.373333pt;}
.y62{bottom:786.653333pt;}
.yf{bottom:795.293333pt;}
.y103{bottom:801.053333pt;}
.y61{bottom:802.653333pt;}
.yce{bottom:806.493333pt;}
.ye{bottom:816.453333pt;}
.y60{bottom:818.533333pt;}
.y102{bottom:824.933333pt;}
.y5f{bottom:834.373333pt;}
.yd{bottom:837.413333pt;}
.yfb{bottom:845.893333pt;}
.y5e{bottom:850.213333pt;}
.yc{bottom:861.253333pt;}
.y5d{bottom:866.053333pt;}
.yfa{bottom:873.733333pt;}
.y5c{bottom:882.053333pt;}
.yb{bottom:885.893333pt;}
.y5b{bottom:897.893333pt;}
.ya{bottom:910.693333pt;}
.y5a{bottom:913.733333pt;}
.yf6{bottom:917.413333pt;}
.y59{bottom:929.573333pt;}
.y9{bottom:939.493333pt;}
.yff{bottom:942.373333pt;}
.y58{bottom:945.413333pt;}
.y90{bottom:953.253333pt;}
.y57{bottom:961.253333pt;}
.y8{bottom:966.533333pt;}
.y56{bottom:977.253333pt;}
.y6{bottom:989.573333pt;}
.yf4{bottom:992.933333pt;}
.y55{bottom:993.093333pt;}
.y5{bottom:1006.693333pt;}
.y54{bottom:1008.933333pt;}
.yfc{bottom:1017.733333pt;}
.y4{bottom:1023.040000pt;}
.y53{bottom:1024.800000pt;}
.y3{bottom:1036.640000pt;}
.y52{bottom:1040.640000pt;}
.y2{bottom:1050.240000pt;}
.y50{bottom:1052.320000pt;}
.y4f{bottom:1057.120000pt;}
.y4e{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h13{height:9.211875pt;}
.h12{height:13.546875pt;}
.h1a{height:23.826667pt;}
.h1b{height:31.866667pt;}
.h10{height:33.515625pt;}
.h11{height:36.305625pt;}
.h19{height:39.666667pt;}
.h17{height:39.678667pt;}
.h16{height:39.680000pt;}
.h6{height:42.084375pt;}
.h14{height:47.085938pt;}
.h7{height:47.109375pt;}
.hb{height:48.375000pt;}
.ha{height:53.370000pt;}
.h18{height:55.706667pt;}
.hd{height:56.306667pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:59.340000pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.hf{height:64.500000pt;}
.h1c{height:71.346667pt;}
.h15{height:71.506667pt;}
.h9{height:75.465000pt;}
.hc{height:278.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:15.986667pt;}
.w5{width:15.998667pt;}
.w4{width:308.853333pt;}
.w6{width:309.025333pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:0.946667pt;}
.x9{left:7.198667pt;}
.x17{left:47.041333pt;}
.x5{left:48.000000pt;}
.xf{left:49.280000pt;}
.x8{left:64.801333pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.xd{left:206.106667pt;}
.x1{left:231.066667pt;}
.x2{left:284.866667pt;}
.x4{left:297.826667pt;}
.x3{left:313.826667pt;}
.x13{left:355.426667pt;}
.x12{left:369.826667pt;}
.xe{left:396.893333pt;}
.x14{left:419.946667pt;}
.xb{left:420.893333pt;}
.x16{left:438.026667pt;}
.xc{left:457.533333pt;}
.x10{left:500.733333pt;}
.x11{left:724.320000pt;}
.x7{left:739.200000pt;}
}




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