
    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_7bbfd63ffbb09d3290b6ecda.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_2e28c657f8e1a5eb8db29190.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_9892ac5e15baccc28ff04cb5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_6e8281ecd88d525b0326a261.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_75cf52a7fb7bb1e1031edaa5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_a0eb7e6bf725324e5213b705.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b5f292be2dbdbe46aaf15e6a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.023400px;}
.ls14{letter-spacing:-0.018360px;}
.ls12{letter-spacing:-0.007560px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lse{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.064800px;}
.lsf{letter-spacing:0.069600px;}
.ls1{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.118200px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:13.347360px;}
.ls16{letter-spacing:47.726640px;}
.lsb{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.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;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.ws9{word-spacing:-13.296000px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218840px;}
.wse{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.203000px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._13{margin-left:-3.983759px;}
._2{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._1{width:1.090272px;}
._4{width:2.284800px;}
._3{width:3.426600px;}
._8{width:4.569000px;}
._7{width:5.832001px;}
._b{width:7.735226px;}
._6{width:8.800198px;}
._5{width:10.100400px;}
._c{width:11.542800px;}
._12{width:14.549040px;}
._9{width:16.413000px;}
._a{width:18.003600px;}
._14{width:19.049160px;}
._10{width:20.320560px;}
._11{width:21.540240px;}
._d{width:30.060000px;}
._e{width:31.202400px;}
._f{width:33.499175px;}
._18{width:53.206200px;}
._19{width:54.569880px;}
._15{width:63.847440px;}
._16{width:65.350440px;}
._17{width:66.354600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y88{bottom:7.830000px;}
.y86{bottom:7.920000px;}
.y91{bottom:26.550000px;}
.y8f{bottom:26.640000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y8a{bottom:111.450000px;}
.y5b{bottom:115.680000px;}
.y89{bottom:138.810000px;}
.y27{bottom:142.050000px;}
.y5a{bottom:152.130000px;}
.yb1{bottom:152.670000px;}
.y26{bottom:159.600000px;}
.y87{bottom:166.170000px;}
.y59{bottom:169.680000px;}
.yb0{bottom:170.220000px;}
.y25{bottom:177.240000px;}
.yd3{bottom:178.680000px;}
.y58{bottom:187.320000px;}
.yaf{bottom:187.860000px;}
.y85{bottom:193.440000px;}
.y24{bottom:194.790000px;}
.yd2{bottom:196.320000px;}
.y57{bottom:204.870000px;}
.yae{bottom:205.410000px;}
.y23{bottom:212.340000px;}
.y56{bottom:222.510000px;}
.yd1{bottom:222.870000px;}
.yad{bottom:222.960000px;}
.y22{bottom:229.980000px;}
.y55{bottom:240.060000px;}
.yd0{bottom:240.420000px;}
.yac{bottom:240.600000px;}
.y84{bottom:242.220000px;}
.ycf{bottom:258.060000px;}
.y21{bottom:265.530000px;}
.y83{bottom:269.130000px;}
.y54{bottom:275.610000px;}
.yab{bottom:276.150000px;}
.y20{bottom:283.170000px;}
.yce{bottom:284.610000px;}
.y53{bottom:293.250000px;}
.yaa{bottom:293.790000px;}
.y1f{bottom:300.720000px;}
.ycd{bottom:302.250000px;}
.y52{bottom:310.800000px;}
.ya9{bottom:311.340000px;}
.y82{bottom:317.370000px;}
.y1e{bottom:318.270000px;}
.ycc{bottom:319.800000px;}
.y51{bottom:328.440000px;}
.ya8{bottom:328.890000px;}
.y81{bottom:334.920000px;}
.y1d{bottom:335.910000px;}
.y50{bottom:345.990000px;}
.ycb{bottom:346.350000px;}
.ya7{bottom:346.530000px;}
.y80{bottom:352.560000px;}
.y1c{bottom:353.460000px;}
.y4f{bottom:363.540000px;}
.yca{bottom:363.990000px;}
.ya6{bottom:364.080000px;}
.y7f{bottom:370.110000px;}
.y1b{bottom:371.100000px;}
.y4e{bottom:381.180000px;}
.yc9{bottom:381.540000px;}
.ya5{bottom:381.630000px;}
.y7e{bottom:387.750000px;}
.y1a{bottom:406.650000px;}
.yc8{bottom:408.090000px;}
.ya4{bottom:408.540000px;}
.y4d{bottom:416.730000px;}
.y7d{bottom:423.300000px;}
.y19{bottom:424.200000px;}
.yc7{bottom:425.730000px;}
.y4c{bottom:434.370000px;}
.y7c{bottom:440.850000px;}
.y18{bottom:441.840000px;}
.y4b{bottom:451.920000px;}
.yc6{bottom:452.280000px;}
.ya3{bottom:456.870000px;}
.y7b{bottom:458.490000px;}
.y17{bottom:459.390000px;}
.y4a{bottom:469.470000px;}
.yc5{bottom:469.950000px;}
.ya2{bottom:474.450000px;}
.y7a{bottom:476.070000px;}
.y16{bottom:486.330000px;}
.y49{bottom:487.140000px;}
.ya1{bottom:492.090000px;}
.y79{bottom:493.620000px;}
.yc4{bottom:496.500000px;}
.y78{bottom:511.260000px;}
.yc3{bottom:514.050000px;}
.y48{bottom:522.690000px;}
.ya0{bottom:525.030000px;}
.y77{bottom:528.810000px;}
.yc2{bottom:531.690000px;}
.y15{bottom:534.930000px;}
.y47{bottom:540.330000px;}
.y76{bottom:546.450000px;}
.y9f{bottom:552.390000px;}
.y46{bottom:557.880000px;}
.yc1{bottom:558.240000px;}
.y14{bottom:571.920000px;}
.y75{bottom:573.360000px;}
.yc0{bottom:575.880000px;}
.y9e{bottom:579.660000px;}
.y13{bottom:589.560000px;}
.y45{bottom:593.430000px;}
.y12{bottom:607.110000px;}
.y44{bottom:611.070000px;}
.ybf{bottom:619.980000px;}
.y74{bottom:621.510000px;}
.y11{bottom:624.750000px;}
.y9d{bottom:628.440000px;}
.y43{bottom:628.620000px;}
.ybe{bottom:637.620000px;}
.y73{bottom:639.960000px;}
.y10{bottom:642.300000px;}
.y42{bottom:646.260000px;}
.ybd{bottom:655.170000px;}
.y72{bottom:658.410000px;}
.yf{bottom:659.850000px;}
.y41{bottom:663.810000px;}
.y9c{bottom:663.990000px;}
.ye{bottom:677.490000px;}
.y40{bottom:681.360000px;}
.y9b{bottom:681.540000px;}
.ybc{bottom:682.080000px;}
.y71{bottom:694.860000px;}
.yd{bottom:695.040000px;}
.y9a{bottom:699.180000px;}
.y3f{bottom:708.000000px;}
.y70{bottom:712.410000px;}
.yc{bottom:712.680000px;}
.yb{bottom:730.230000px;}
.ybb{bottom:730.410000px;}
.y99{bottom:732.120000px;}
.y6f{bottom:739.050000px;}
.y3e{bottom:743.550000px;}
.ya{bottom:757.140000px;}
.yba{bottom:757.230000px;}
.y98{bottom:759.480000px;}
.y3d{bottom:761.190000px;}
.y6e{bottom:774.600000px;}
.y3c{bottom:778.740000px;}
.y97{bottom:786.750000px;}
.y6d{bottom:792.150000px;}
.yb9{bottom:794.310000px;}
.y3b{bottom:796.290000px;}
.y9{bottom:805.380000px;}
.y6c{bottom:809.790000px;}
.y3a{bottom:813.930000px;}
.yb8{bottom:821.220000px;}
.y96{bottom:835.530000px;}
.y39{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y6b{bottom:845.340000px;}
.yb7{bottom:858.570000px;}
.y6a{bottom:862.980000px;}
.y95{bottom:871.080000px;}
.y38{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y69{bottom:880.530000px;}
.y94{bottom:888.630000px;}
.y37{bottom:893.670000px;}
.y68{bottom:898.080000px;}
.y93{bottom:906.270000px;}
.yb6{bottom:906.810000px;}
.y36{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y67{bottom:915.720000px;}
.y92{bottom:923.820000px;}
.yb5{bottom:924.450000px;}
.y35{bottom:928.860000px;}
.y66{bottom:933.270000px;}
.y90{bottom:938.850000px;}
.yb4{bottom:942.000000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yb3{bottom:959.550000px;}
.y65{bottom:959.820000px;}
.y33{bottom:963.960000px;}
.y8e{bottom:966.120000px;}
.y32{bottom:981.600000px;}
.yb2{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y8d{bottom:993.480000px;}
.y64{bottom:995.460000px;}
.y3{bottom:1012.320000px;}
.y63{bottom:1013.040000px;}
.y31{bottom:1017.180000px;}
.y8c{bottom:1020.870000px;}
.yd6{bottom:1025.820000px;}
.y62{bottom:1030.680000px;}
.y30{bottom:1034.820000px;}
.yd5{bottom:1043.370000px;}
.y61{bottom:1048.230000px;}
.y2f{bottom:1052.370000px;}
.yd4{bottom:1060.920000px;}
.y60{bottom:1065.780000px;}
.y8b{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y5f{bottom:1084.230000px;}
.y2d{bottom:1087.560000px;}
.y5e{bottom:1102.590000px;}
.y2c{bottom:1105.110000px;}
.y5d{bottom:1121.040000px;}
.y2b{bottom:1122.750000px;}
.y5c{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:32.918906px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:35.100000px;}
.we{width:35.190000px;}
.wf{width:63.450000px;}
.w13{width:63.540000px;}
.wb{width:67.050000px;}
.wa{width:72.450000px;}
.w6{width:119.610000px;}
.w11{width:139.170000px;}
.wd{width:139.800000px;}
.w3{width:150.420000px;}
.w4{width:152.640000px;}
.w8{width:152.760000px;}
.w9{width:153.360000px;}
.w5{width:153.390000px;}
.wc{width:165.600000px;}
.w10{width:165.690000px;}
.w7{width:265.890000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.770000px;}
.x1{left:68.040000px;}
.xb{left:89.370000px;}
.x4{left:95.039987px;}
.x14{left:111.239987px;}
.x5{left:122.039987px;}
.x6{left:157.410000px;}
.x2{left:192.719987px;}
.x10{left:209.550000px;}
.x8{left:308.640000px;}
.xc{left:355.980000px;}
.x11{left:375.960000px;}
.x9{left:462.090000px;}
.xd{left:509.460000px;}
.x12{left:516.480000px;}
.x13{left:552.480000px;}
.xa{left:616.200000px;}
.xe{left:663.630000px;}
.xf{left:736.800000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.020800pt;}
.ls14{letter-spacing:-0.016320pt;}
.ls12{letter-spacing:-0.006720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.057600pt;}
.lsf{letter-spacing:0.061867pt;}
.ls1{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.105067pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls16{letter-spacing:42.423680pt;}
.lsb{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.ws9{word-spacing:-11.818667pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.736000pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._13{margin-left:-3.541119pt;}
._2{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969131pt;}
._4{width:2.030934pt;}
._3{width:3.045866pt;}
._8{width:4.061333pt;}
._7{width:5.184001pt;}
._b{width:6.875756pt;}
._6{width:7.822399pt;}
._5{width:8.978134pt;}
._c{width:10.260266pt;}
._12{width:12.932480pt;}
._9{width:14.589334pt;}
._a{width:16.003200pt;}
._14{width:16.932587pt;}
._10{width:18.062720pt;}
._11{width:19.146880pt;}
._d{width:26.720000pt;}
._e{width:27.735467pt;}
._f{width:29.777044pt;}
._18{width:47.294400pt;}
._19{width:48.506560pt;}
._15{width:56.753280pt;}
._16{width:58.089280pt;}
._17{width:58.981867pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:6.960000pt;}
.y86{bottom:7.040000pt;}
.y91{bottom:23.600000pt;}
.y8f{bottom:23.680000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y8a{bottom:99.066667pt;}
.y5b{bottom:102.826667pt;}
.y89{bottom:123.386667pt;}
.y27{bottom:126.266667pt;}
.y5a{bottom:135.226667pt;}
.yb1{bottom:135.706667pt;}
.y26{bottom:141.866667pt;}
.y87{bottom:147.706667pt;}
.y59{bottom:150.826667pt;}
.yb0{bottom:151.306667pt;}
.y25{bottom:157.546667pt;}
.yd3{bottom:158.826667pt;}
.y58{bottom:166.506667pt;}
.yaf{bottom:166.986667pt;}
.y85{bottom:171.946667pt;}
.y24{bottom:173.146667pt;}
.yd2{bottom:174.506667pt;}
.y57{bottom:182.106667pt;}
.yae{bottom:182.586667pt;}
.y23{bottom:188.746667pt;}
.y56{bottom:197.786667pt;}
.yd1{bottom:198.106667pt;}
.yad{bottom:198.186667pt;}
.y22{bottom:204.426667pt;}
.y55{bottom:213.386667pt;}
.yd0{bottom:213.706667pt;}
.yac{bottom:213.866667pt;}
.y84{bottom:215.306667pt;}
.ycf{bottom:229.386667pt;}
.y21{bottom:236.026667pt;}
.y83{bottom:239.226667pt;}
.y54{bottom:244.986667pt;}
.yab{bottom:245.466667pt;}
.y20{bottom:251.706667pt;}
.yce{bottom:252.986667pt;}
.y53{bottom:260.666667pt;}
.yaa{bottom:261.146667pt;}
.y1f{bottom:267.306667pt;}
.ycd{bottom:268.666667pt;}
.y52{bottom:276.266667pt;}
.ya9{bottom:276.746667pt;}
.y82{bottom:282.106667pt;}
.y1e{bottom:282.906667pt;}
.ycc{bottom:284.266667pt;}
.y51{bottom:291.946667pt;}
.ya8{bottom:292.346667pt;}
.y81{bottom:297.706667pt;}
.y1d{bottom:298.586667pt;}
.y50{bottom:307.546667pt;}
.ycb{bottom:307.866667pt;}
.ya7{bottom:308.026667pt;}
.y80{bottom:313.386667pt;}
.y1c{bottom:314.186667pt;}
.y4f{bottom:323.146667pt;}
.yca{bottom:323.546667pt;}
.ya6{bottom:323.626667pt;}
.y7f{bottom:328.986667pt;}
.y1b{bottom:329.866667pt;}
.y4e{bottom:338.826667pt;}
.yc9{bottom:339.146667pt;}
.ya5{bottom:339.226667pt;}
.y7e{bottom:344.666667pt;}
.y1a{bottom:361.466667pt;}
.yc8{bottom:362.746667pt;}
.ya4{bottom:363.146667pt;}
.y4d{bottom:370.426667pt;}
.y7d{bottom:376.266667pt;}
.y19{bottom:377.066667pt;}
.yc7{bottom:378.426667pt;}
.y4c{bottom:386.106667pt;}
.y7c{bottom:391.866667pt;}
.y18{bottom:392.746667pt;}
.y4b{bottom:401.706667pt;}
.yc6{bottom:402.026667pt;}
.ya3{bottom:406.106667pt;}
.y7b{bottom:407.546667pt;}
.y17{bottom:408.346667pt;}
.y4a{bottom:417.306667pt;}
.yc5{bottom:417.733333pt;}
.ya2{bottom:421.733333pt;}
.y7a{bottom:423.173333pt;}
.y16{bottom:432.293333pt;}
.y49{bottom:433.013333pt;}
.ya1{bottom:437.413333pt;}
.y79{bottom:438.773333pt;}
.yc4{bottom:441.333333pt;}
.y78{bottom:454.453333pt;}
.yc3{bottom:456.933333pt;}
.y48{bottom:464.613333pt;}
.ya0{bottom:466.693333pt;}
.y77{bottom:470.053333pt;}
.yc2{bottom:472.613333pt;}
.y15{bottom:475.493333pt;}
.y47{bottom:480.293333pt;}
.y76{bottom:485.733333pt;}
.y9f{bottom:491.013333pt;}
.y46{bottom:495.893333pt;}
.yc1{bottom:496.213333pt;}
.y14{bottom:508.373333pt;}
.y75{bottom:509.653333pt;}
.yc0{bottom:511.893333pt;}
.y9e{bottom:515.253333pt;}
.y13{bottom:524.053333pt;}
.y45{bottom:527.493333pt;}
.y12{bottom:539.653333pt;}
.y44{bottom:543.173333pt;}
.ybf{bottom:551.093333pt;}
.y74{bottom:552.453333pt;}
.y11{bottom:555.333333pt;}
.y9d{bottom:558.613333pt;}
.y43{bottom:558.773333pt;}
.ybe{bottom:566.773333pt;}
.y73{bottom:568.853333pt;}
.y10{bottom:570.933333pt;}
.y42{bottom:574.453333pt;}
.ybd{bottom:582.373333pt;}
.y72{bottom:585.253333pt;}
.yf{bottom:586.533333pt;}
.y41{bottom:590.053333pt;}
.y9c{bottom:590.213333pt;}
.ye{bottom:602.213333pt;}
.y40{bottom:605.653333pt;}
.y9b{bottom:605.813333pt;}
.ybc{bottom:606.293333pt;}
.y71{bottom:617.653333pt;}
.yd{bottom:617.813333pt;}
.y9a{bottom:621.493333pt;}
.y3f{bottom:629.333333pt;}
.y70{bottom:633.253333pt;}
.yc{bottom:633.493333pt;}
.yb{bottom:649.093333pt;}
.ybb{bottom:649.253333pt;}
.y99{bottom:650.773333pt;}
.y6f{bottom:656.933333pt;}
.y3e{bottom:660.933333pt;}
.ya{bottom:673.013333pt;}
.yba{bottom:673.093333pt;}
.y98{bottom:675.093333pt;}
.y3d{bottom:676.613333pt;}
.y6e{bottom:688.533333pt;}
.y3c{bottom:692.213333pt;}
.y97{bottom:699.333333pt;}
.y6d{bottom:704.133333pt;}
.yb9{bottom:706.053333pt;}
.y3b{bottom:707.813333pt;}
.y9{bottom:715.893333pt;}
.y6c{bottom:719.813333pt;}
.y3a{bottom:723.493333pt;}
.yb8{bottom:729.973333pt;}
.y96{bottom:742.693333pt;}
.y39{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y6b{bottom:751.413333pt;}
.yb7{bottom:763.173333pt;}
.y6a{bottom:767.093333pt;}
.y95{bottom:774.293333pt;}
.y38{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y69{bottom:782.693333pt;}
.y94{bottom:789.893333pt;}
.y37{bottom:794.373333pt;}
.y68{bottom:798.293333pt;}
.y93{bottom:805.573333pt;}
.yb6{bottom:806.053333pt;}
.y36{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y67{bottom:813.973333pt;}
.y92{bottom:821.173333pt;}
.yb5{bottom:821.733333pt;}
.y35{bottom:825.653333pt;}
.y66{bottom:829.573333pt;}
.y90{bottom:834.533333pt;}
.yb4{bottom:837.333333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yb3{bottom:852.933333pt;}
.y65{bottom:853.173333pt;}
.y33{bottom:856.853333pt;}
.y8e{bottom:858.773333pt;}
.y32{bottom:872.533333pt;}
.yb2{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y8d{bottom:883.093333pt;}
.y64{bottom:884.853333pt;}
.y3{bottom:899.840000pt;}
.y63{bottom:900.480000pt;}
.y31{bottom:904.160000pt;}
.y8c{bottom:907.440000pt;}
.yd6{bottom:911.840000pt;}
.y62{bottom:916.160000pt;}
.y30{bottom:919.840000pt;}
.yd5{bottom:927.440000pt;}
.y61{bottom:931.760000pt;}
.y2f{bottom:935.440000pt;}
.yd4{bottom:943.040000pt;}
.y60{bottom:947.360000pt;}
.y8b{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y5f{bottom:963.760000pt;}
.y2d{bottom:966.720000pt;}
.y5e{bottom:980.080000pt;}
.y2c{bottom:982.320000pt;}
.y5d{bottom:996.480000pt;}
.y2b{bottom:998.000000pt;}
.y5c{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:29.261250pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:31.200000pt;}
.we{width:31.280000pt;}
.wf{width:56.400000pt;}
.w13{width:56.480000pt;}
.wb{width:59.600000pt;}
.wa{width:64.400000pt;}
.w6{width:106.320000pt;}
.w11{width:123.706667pt;}
.wd{width:124.266667pt;}
.w3{width:133.706667pt;}
.w4{width:135.680000pt;}
.w8{width:135.786667pt;}
.w9{width:136.320000pt;}
.w5{width:136.346667pt;}
.wc{width:147.200000pt;}
.w10{width:147.280000pt;}
.w7{width:236.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.906667pt;}
.x1{left:60.480000pt;}
.xb{left:79.440000pt;}
.x4{left:84.479988pt;}
.x14{left:98.879988pt;}
.x5{left:108.479988pt;}
.x6{left:139.920000pt;}
.x2{left:171.306655pt;}
.x10{left:186.266667pt;}
.x8{left:274.346667pt;}
.xc{left:316.426667pt;}
.x11{left:334.186667pt;}
.x9{left:410.746667pt;}
.xd{left:452.853333pt;}
.x12{left:459.093333pt;}
.x13{left:491.093333pt;}
.xa{left:547.733333pt;}
.xe{left:589.893333pt;}
.xf{left:654.933333pt;}
.x3{left:711.413322pt;}
}




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