
    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_ff5dcbad264a4928ee17d9a5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e3c3f3b776fe20a40616145.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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_17169f6579552cc1e1812fb8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e25133fa9ddea473dff2e984.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_904fca02c85a84bc3b3ae6d7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e2e9a6caa352bd34ef96d9ef.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a65ef9c996ca2898d7535086.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8044096366c0ab2316889bf9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls16{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.144000px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.732000px;}
.ls8{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.924000px;}
.ls6{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.160000px;}
.ls3{letter-spacing:3.600000px;}
.ls2{letter-spacing:15.120000px;}
.ls18{letter-spacing:17.424000px;}
.ls4{letter-spacing:26.640000px;}
.ls15{letter-spacing:53.424000px;}
.ls13{letter-spacing:136.944000px;}
.ls14{letter-spacing:167.506560px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws2{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.648000px;}
.ws6{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.352000px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.486560px;}
._1a{margin-left:-3.483840px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._14{width:2.241120px;}
._3{width:3.249120px;}
._b{width:4.397280px;}
._f{width:6.082560px;}
._10{width:7.252320px;}
._9{width:8.424000px;}
._a{width:9.576000px;}
._7{width:11.304000px;}
._8{width:12.490560px;}
._c{width:14.400000px;}
._15{width:15.607680px;}
._6{width:16.632000px;}
._27{width:19.383360px;}
._2b{width:20.787840px;}
._1e{width:22.121280px;}
._5{width:24.192000px;}
._4{width:25.450560px;}
._13{width:27.167040px;}
._12{width:28.546560px;}
._25{width:30.332160px;}
._26{width:31.332960px;}
._1b{width:32.760000px;}
._1c{width:34.492320px;}
._e{width:35.542080px;}
._d{width:37.224000px;}
._22{width:38.338560px;}
._18{width:39.404160px;}
._19{width:40.682400px;}
._17{width:42.149280px;}
._16{width:43.167840px;}
._2c{width:45.886560px;}
._24{width:50.672160px;}
._31{width:52.116480px;}
._2d{width:53.187840px;}
._30{width:54.613440px;}
._2a{width:57.778560px;}
._20{width:59.146560px;}
._1f{width:60.639840px;}
._2e{width:65.050560px;}
._2f{width:67.176960px;}
._1d{width:75.654720px;}
._29{width:78.857280px;}
._32{width:93.384000px;}
._21{width:105.894720px;}
._23{width:124.527840px;}
._34{width:125.645760px;}
._33{width:143.314560px;}
._28{width:213.730560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y42{bottom:7.200000px;}
.y95{bottom:7.554000px;}
.y48{bottom:7.560000px;}
.y7a{bottom:7.605000px;}
.y4e{bottom:7.920000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y93{bottom:19.434000px;}
.y62{bottom:19.440000px;}
.y46{bottom:19.470000px;}
.y50{bottom:19.485000px;}
.y4c{bottom:19.800000px;}
.y94{bottom:31.314000px;}
.y63{bottom:31.320000px;}
.y70{bottom:31.350000px;}
.y51{bottom:31.365000px;}
.y4a{bottom:31.680000px;}
.y44{bottom:31.710000px;}
.y54{bottom:43.245000px;}
.y4b{bottom:43.560000px;}
.y45{bottom:43.590000px;}
.y55{bottom:55.125000px;}
.y4d{bottom:55.440000px;}
.y47{bottom:55.470000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y34{bottom:107.676000px;}
.ycc{bottom:130.716000px;}
.y33{bottom:131.436000px;}
.y74{bottom:132.876000px;}
.yb7{bottom:134.316000px;}
.y92{bottom:146.916000px;}
.y73{bottom:152.670000px;}
.ycb{bottom:154.470000px;}
.y32{bottom:155.190000px;}
.yb6{bottom:157.710000px;}
.yb5{bottom:177.510000px;}
.yca{bottom:178.230000px;}
.y4f{bottom:178.590000px;}
.y31{bottom:179.310000px;}
.y91{bottom:199.155000px;}
.yc9{bottom:202.035000px;}
.y30{bottom:203.115000px;}
.y72{bottom:204.915000px;}
.yc8{bottom:225.795000px;}
.y2f{bottom:226.875000px;}
.yb4{bottom:229.755000px;}
.y49{bottom:230.475000px;}
.y90{bottom:233.715000px;}
.yc7{bottom:249.555000px;}
.y2e{bottom:250.635000px;}
.y71{bottom:257.115000px;}
.y8f{bottom:257.835000px;}
.yc6{bottom:273.315000px;}
.y2d{bottom:274.035000px;}
.y8e{bottom:281.595000px;}
.yb3{bottom:281.955000px;}
.yc5{bottom:297.435000px;}
.y2c{bottom:297.795000px;}
.y8d{bottom:305.355000px;}
.y43{bottom:306.435000px;}
.y6f{bottom:309.315000px;}
.yc4{bottom:321.225000px;}
.y2b{bottom:321.945000px;}
.y8c{bottom:329.145000px;}
.yb2{bottom:333.825000px;}
.yc3{bottom:344.625000px;}
.y2a{bottom:345.705000px;}
.y8b{bottom:352.545000px;}
.y6e{bottom:361.185000px;}
.yb1{bottom:368.385000px;}
.y29{bottom:369.825000px;}
.y8a{bottom:376.665000px;}
.y41{bottom:382.425000px;}
.yb0{bottom:392.505000px;}
.y28{bottom:393.585000px;}
.y6d{bottom:395.745000px;}
.y89{bottom:400.425000px;}
.yaf{bottom:416.265000px;}
.y40{bottom:416.985000px;}
.y27{bottom:417.345000px;}
.y6c{bottom:419.865000px;}
.y88{bottom:424.185000px;}
.yae{bottom:440.025000px;}
.y26{bottom:441.105000px;}
.y6b{bottom:443.625000px;}
.y87{bottom:447.990000px;}
.yc2{bottom:463.470000px;}
.yad{bottom:463.830000px;}
.y25{bottom:464.910000px;}
.y6a{bottom:467.430000px;}
.y86{bottom:467.790000px;}
.yac{bottom:487.230000px;}
.yc1{bottom:487.590000px;}
.y24{bottom:488.670000px;}
.y69{bottom:491.190000px;}
.y85{bottom:496.230000px;}
.yc0{bottom:511.350000px;}
.yab{bottom:511.710000px;}
.y3f{bottom:512.070000px;}
.y23{bottom:512.430000px;}
.y68{bottom:514.590000px;}
.y67{bottom:534.750000px;}
.yaa{bottom:535.470000px;}
.y22{bottom:536.190000px;}
.y84{bottom:548.070000px;}
.ya9{bottom:559.230000px;}
.y21{bottom:559.950000px;}
.ya8{bottom:583.020000px;}
.y20{bottom:584.100000px;}
.y66{bottom:586.980000px;}
.y83{bottom:600.300000px;}
.ya7{bottom:606.780000px;}
.y1f{bottom:607.860000px;}
.y65{bottom:615.060000px;}
.ya6{bottom:630.540000px;}
.y1e{bottom:631.620000px;}
.y82{bottom:634.860000px;}
.ya5{bottom:653.940000px;}
.ybf{bottom:654.300000px;}
.y3e{bottom:655.020000px;}
.y1d{bottom:655.380000px;}
.y81{bottom:658.980000px;}
.y64{bottom:667.260000px;}
.ya4{bottom:677.700000px;}
.ybe{bottom:678.060000px;}
.y1c{bottom:679.140000px;}
.y80{bottom:682.740000px;}
.ya3{bottom:702.210000px;}
.y1b{bottom:702.930000px;}
.y7f{bottom:706.530000px;}
.y61{bottom:719.490000px;}
.ybd{bottom:725.610000px;}
.ya2{bottom:725.970000px;}
.y1a{bottom:726.690000px;}
.y7e{bottom:730.290000px;}
.ybc{bottom:745.410000px;}
.ya1{bottom:749.730000px;}
.y19{bottom:750.450000px;}
.y7d{bottom:754.050000px;}
.y60{bottom:771.330000px;}
.ya0{bottom:773.130000px;}
.ybb{bottom:773.850000px;}
.y18{bottom:774.570000px;}
.y7c{bottom:777.810000px;}
.y9f{bottom:797.250000px;}
.y17{bottom:798.330000px;}
.y7b{bottom:801.570000px;}
.yba{bottom:801.930000px;}
.y5f{bottom:805.890000px;}
.y9e{bottom:821.010000px;}
.y79{bottom:821.370000px;}
.y16{bottom:822.090000px;}
.y5e{bottom:830.055000px;}
.yb9{bottom:830.415000px;}
.y9d{bottom:844.815000px;}
.y15{bottom:845.895000px;}
.y5d{bottom:853.815000px;}
.yb8{bottom:858.855000px;}
.y9c{bottom:868.575000px;}
.y14{bottom:869.655000px;}
.y78{bottom:873.615000px;}
.y5c{bottom:877.575000px;}
.y9b{bottom:892.335000px;}
.y3d{bottom:893.055000px;}
.y13{bottom:893.415000px;}
.y5b{bottom:901.695000px;}
.y9a{bottom:916.095000px;}
.y12{bottom:917.175000px;}
.y5a{bottom:925.455000px;}
.y99{bottom:935.895000px;}
.y11{bottom:940.575000px;}
.y3c{bottom:940.935000px;}
.y59{bottom:949.215000px;}
.y10{bottom:964.725000px;}
.y3b{bottom:965.085000px;}
.y58{bottom:973.005000px;}
.y77{bottom:977.685000px;}
.y98{bottom:988.125000px;}
.yf{bottom:988.845000px;}
.y57{bottom:996.405000px;}
.y76{bottom:1012.245000px;}
.ye{bottom:1012.605000px;}
.y56{bottom:1016.205000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.y97{bottom:1039.965000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.y53{bottom:1068.405000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y96{bottom:1092.210000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y36{bottom:1131.450000px;}
.y52{bottom:1144.410000px;}
.y9{bottom:1149.090000px;}
.y35{bottom:1154.850000px;}
.y75{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hc{height:23.760000px;}
.h17{height:23.796000px;}
.h12{height:24.120000px;}
.h5{height:27.000000px;}
.h13{height:47.520000px;}
.hf{height:47.556000px;}
.h11{height:47.880000px;}
.h15{height:47.916000px;}
.h7{height:50.229844px;}
.h14{height:50.273438px;}
.h18{height:50.800781px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h10{height:71.316000px;}
.he{height:71.640000px;}
.hd{height:71.676000px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h16{height:74.004654px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:89.316000px;}
.w4{width:104.076000px;}
.w5{width:109.116000px;}
.we{width:113.796000px;}
.w11{width:133.956000px;}
.w8{width:142.272000px;}
.w14{width:178.635000px;}
.w16{width:207.075000px;}
.wd{width:215.355000px;}
.wb{width:220.395000px;}
.w13{width:232.995000px;}
.w1a{width:256.065000px;}
.wc{width:257.145000px;}
.w9{width:271.155000px;}
.wa{width:279.105000px;}
.w10{width:283.785000px;}
.w6{width:290.985000px;}
.w7{width:292.425000px;}
.wf{width:294.585000px;}
.w19{width:298.185000px;}
.w3{width:298.905000px;}
.w15{width:302.505000px;}
.w18{width:305.385000px;}
.w12{width:325.905000px;}
.w1b{width:392.190000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.x8{left:43.230000px;}
.x5{left:95.796000px;}
.x13{left:97.956000px;}
.x25{left:117.035987px;}
.xa{left:120.275987px;}
.x24{left:127.835987px;}
.xd{left:149.111987px;}
.xb{left:180.074987px;}
.x20{left:189.435000px;}
.x3{left:196.274987px;}
.x12{left:205.994987px;}
.x15{left:209.595000px;}
.xc{left:212.114987px;}
.x1a{left:214.275000px;}
.x1c{left:234.105000px;}
.x17{left:242.385000px;}
.x1e{left:278.745000px;}
.x6{left:290.634000px;}
.x22{left:299.624987px;}
.x10{left:314.024987px;}
.xe{left:320.144987px;}
.x11{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x23{left:356.190000px;}
.x7{left:394.710000px;}
.xf{left:427.499987px;}
.x21{left:496.980000px;}
.x9{left:498.780000px;}
.x16{left:502.740000px;}
.x1b{left:511.380000px;}
.x18{left:516.060000px;}
.x1d{left:562.170000px;}
.x19{left:579.810000px;}
.x1f{left:583.410000px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.650667pt;}
.ls8{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.821333pt;}
.ls6{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls3{letter-spacing:3.200000pt;}
.ls2{letter-spacing:13.440000pt;}
.ls18{letter-spacing:15.488000pt;}
.ls4{letter-spacing:23.680000pt;}
.ls15{letter-spacing:47.488000pt;}
.ls13{letter-spacing:121.728000pt;}
.ls14{letter-spacing:148.894720pt;}
.wsb{word-spacing:-53.760000pt;}
.ws2{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.576000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.424000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.988053pt;}
._1a{margin-left:-3.096747pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._14{width:1.992107pt;}
._3{width:2.888107pt;}
._b{width:3.908693pt;}
._f{width:5.406720pt;}
._10{width:6.446507pt;}
._9{width:7.488000pt;}
._a{width:8.512000pt;}
._7{width:10.048000pt;}
._8{width:11.102720pt;}
._c{width:12.800000pt;}
._15{width:13.873493pt;}
._6{width:14.784000pt;}
._27{width:17.229653pt;}
._2b{width:18.478080pt;}
._1e{width:19.663360pt;}
._5{width:21.504000pt;}
._4{width:22.622720pt;}
._13{width:24.148480pt;}
._12{width:25.374720pt;}
._25{width:26.961920pt;}
._26{width:27.851520pt;}
._1b{width:29.120000pt;}
._1c{width:30.659840pt;}
._e{width:31.592960pt;}
._d{width:33.088000pt;}
._22{width:34.078720pt;}
._18{width:35.025920pt;}
._19{width:36.162133pt;}
._17{width:37.466027pt;}
._16{width:38.371413pt;}
._2c{width:40.788053pt;}
._24{width:45.041920pt;}
._31{width:46.325760pt;}
._2d{width:47.278080pt;}
._30{width:48.545280pt;}
._2a{width:51.358720pt;}
._20{width:52.574720pt;}
._1f{width:53.902080pt;}
._2e{width:57.822720pt;}
._2f{width:59.712853pt;}
._1d{width:67.248640pt;}
._29{width:70.095360pt;}
._32{width:83.008000pt;}
._21{width:94.128640pt;}
._23{width:110.691413pt;}
._34{width:111.685120pt;}
._33{width:127.390720pt;}
._28{width:189.982720pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:6.400000pt;}
.y95{bottom:6.714667pt;}
.y48{bottom:6.720000pt;}
.y7a{bottom:6.760000pt;}
.y4e{bottom:7.040000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y93{bottom:17.274667pt;}
.y62{bottom:17.280000pt;}
.y46{bottom:17.306667pt;}
.y50{bottom:17.320000pt;}
.y4c{bottom:17.600000pt;}
.y94{bottom:27.834667pt;}
.y63{bottom:27.840000pt;}
.y70{bottom:27.866667pt;}
.y51{bottom:27.880000pt;}
.y4a{bottom:28.160000pt;}
.y44{bottom:28.186667pt;}
.y54{bottom:38.440000pt;}
.y4b{bottom:38.720000pt;}
.y45{bottom:38.746667pt;}
.y55{bottom:49.000000pt;}
.y4d{bottom:49.280000pt;}
.y47{bottom:49.306667pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y34{bottom:95.712000pt;}
.ycc{bottom:116.192000pt;}
.y33{bottom:116.832000pt;}
.y74{bottom:118.112000pt;}
.yb7{bottom:119.392000pt;}
.y92{bottom:130.592000pt;}
.y73{bottom:135.706667pt;}
.ycb{bottom:137.306667pt;}
.y32{bottom:137.946667pt;}
.yb6{bottom:140.186667pt;}
.yb5{bottom:157.786667pt;}
.yca{bottom:158.426667pt;}
.y4f{bottom:158.746667pt;}
.y31{bottom:159.386667pt;}
.y91{bottom:177.026667pt;}
.yc9{bottom:179.586667pt;}
.y30{bottom:180.546667pt;}
.y72{bottom:182.146667pt;}
.yc8{bottom:200.706667pt;}
.y2f{bottom:201.666667pt;}
.yb4{bottom:204.226667pt;}
.y49{bottom:204.866667pt;}
.y90{bottom:207.746667pt;}
.yc7{bottom:221.826667pt;}
.y2e{bottom:222.786667pt;}
.y71{bottom:228.546667pt;}
.y8f{bottom:229.186667pt;}
.yc6{bottom:242.946667pt;}
.y2d{bottom:243.586667pt;}
.y8e{bottom:250.306667pt;}
.yb3{bottom:250.626667pt;}
.yc5{bottom:264.386667pt;}
.y2c{bottom:264.706667pt;}
.y8d{bottom:271.426667pt;}
.y43{bottom:272.386667pt;}
.y6f{bottom:274.946667pt;}
.yc4{bottom:285.533333pt;}
.y2b{bottom:286.173333pt;}
.y8c{bottom:292.573333pt;}
.yb2{bottom:296.733333pt;}
.yc3{bottom:306.333333pt;}
.y2a{bottom:307.293333pt;}
.y8b{bottom:313.373333pt;}
.y6e{bottom:321.053333pt;}
.yb1{bottom:327.453333pt;}
.y29{bottom:328.733333pt;}
.y8a{bottom:334.813333pt;}
.y41{bottom:339.933333pt;}
.yb0{bottom:348.893333pt;}
.y28{bottom:349.853333pt;}
.y6d{bottom:351.773333pt;}
.y89{bottom:355.933333pt;}
.yaf{bottom:370.013333pt;}
.y40{bottom:370.653333pt;}
.y27{bottom:370.973333pt;}
.y6c{bottom:373.213333pt;}
.y88{bottom:377.053333pt;}
.yae{bottom:391.133333pt;}
.y26{bottom:392.093333pt;}
.y6b{bottom:394.333333pt;}
.y87{bottom:398.213333pt;}
.yc2{bottom:411.973333pt;}
.yad{bottom:412.293333pt;}
.y25{bottom:413.253333pt;}
.y6a{bottom:415.493333pt;}
.y86{bottom:415.813333pt;}
.yac{bottom:433.093333pt;}
.yc1{bottom:433.413333pt;}
.y24{bottom:434.373333pt;}
.y69{bottom:436.613333pt;}
.y85{bottom:441.093333pt;}
.yc0{bottom:454.533333pt;}
.yab{bottom:454.853333pt;}
.y3f{bottom:455.173333pt;}
.y23{bottom:455.493333pt;}
.y68{bottom:457.413333pt;}
.y67{bottom:475.333333pt;}
.yaa{bottom:475.973333pt;}
.y22{bottom:476.613333pt;}
.y84{bottom:487.173333pt;}
.ya9{bottom:497.093333pt;}
.y21{bottom:497.733333pt;}
.ya8{bottom:518.240000pt;}
.y20{bottom:519.200000pt;}
.y66{bottom:521.760000pt;}
.y83{bottom:533.600000pt;}
.ya7{bottom:539.360000pt;}
.y1f{bottom:540.320000pt;}
.y65{bottom:546.720000pt;}
.ya6{bottom:560.480000pt;}
.y1e{bottom:561.440000pt;}
.y82{bottom:564.320000pt;}
.ya5{bottom:581.280000pt;}
.ybf{bottom:581.600000pt;}
.y3e{bottom:582.240000pt;}
.y1d{bottom:582.560000pt;}
.y81{bottom:585.760000pt;}
.y64{bottom:593.120000pt;}
.ya4{bottom:602.400000pt;}
.ybe{bottom:602.720000pt;}
.y1c{bottom:603.680000pt;}
.y80{bottom:606.880000pt;}
.ya3{bottom:624.186667pt;}
.y1b{bottom:624.826667pt;}
.y7f{bottom:628.026667pt;}
.y61{bottom:639.546667pt;}
.ybd{bottom:644.986667pt;}
.ya2{bottom:645.306667pt;}
.y1a{bottom:645.946667pt;}
.y7e{bottom:649.146667pt;}
.ybc{bottom:662.586667pt;}
.ya1{bottom:666.426667pt;}
.y19{bottom:667.066667pt;}
.y7d{bottom:670.266667pt;}
.y60{bottom:685.626667pt;}
.ya0{bottom:687.226667pt;}
.ybb{bottom:687.866667pt;}
.y18{bottom:688.506667pt;}
.y7c{bottom:691.386667pt;}
.y9f{bottom:708.666667pt;}
.y17{bottom:709.626667pt;}
.y7b{bottom:712.506667pt;}
.yba{bottom:712.826667pt;}
.y5f{bottom:716.346667pt;}
.y9e{bottom:729.786667pt;}
.y79{bottom:730.106667pt;}
.y16{bottom:730.746667pt;}
.y5e{bottom:737.826667pt;}
.yb9{bottom:738.146667pt;}
.y9d{bottom:750.946667pt;}
.y15{bottom:751.906667pt;}
.y5d{bottom:758.946667pt;}
.yb8{bottom:763.426667pt;}
.y9c{bottom:772.066667pt;}
.y14{bottom:773.026667pt;}
.y78{bottom:776.546667pt;}
.y5c{bottom:780.066667pt;}
.y9b{bottom:793.186667pt;}
.y3d{bottom:793.826667pt;}
.y13{bottom:794.146667pt;}
.y5b{bottom:801.506667pt;}
.y9a{bottom:814.306667pt;}
.y12{bottom:815.266667pt;}
.y5a{bottom:822.626667pt;}
.y99{bottom:831.906667pt;}
.y11{bottom:836.066667pt;}
.y3c{bottom:836.386667pt;}
.y59{bottom:843.746667pt;}
.y10{bottom:857.533333pt;}
.y3b{bottom:857.853333pt;}
.y58{bottom:864.893333pt;}
.y77{bottom:869.053333pt;}
.y98{bottom:878.333333pt;}
.yf{bottom:878.973333pt;}
.y57{bottom:885.693333pt;}
.y76{bottom:899.773333pt;}
.ye{bottom:900.093333pt;}
.y56{bottom:903.293333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.y97{bottom:924.413333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.y53{bottom:949.693333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y96{bottom:970.853333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y36{bottom:1005.733333pt;}
.y52{bottom:1017.253333pt;}
.y9{bottom:1021.413333pt;}
.y35{bottom:1026.533333pt;}
.y75{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hc{height:21.120000pt;}
.h17{height:21.152000pt;}
.h12{height:21.440000pt;}
.h5{height:24.000000pt;}
.h13{height:42.240000pt;}
.hf{height:42.272000pt;}
.h11{height:42.560000pt;}
.h15{height:42.592000pt;}
.h7{height:44.648750pt;}
.h14{height:44.687500pt;}
.h18{height:45.156250pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h10{height:63.392000pt;}
.he{height:63.680000pt;}
.hd{height:63.712000pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h16{height:65.781915pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:79.392000pt;}
.w4{width:92.512000pt;}
.w5{width:96.992000pt;}
.we{width:101.152000pt;}
.w11{width:119.072000pt;}
.w8{width:126.464000pt;}
.w14{width:158.786667pt;}
.w16{width:184.066667pt;}
.wd{width:191.426667pt;}
.wb{width:195.906667pt;}
.w13{width:207.106667pt;}
.w1a{width:227.613333pt;}
.wc{width:228.573333pt;}
.w9{width:241.026667pt;}
.wa{width:248.093333pt;}
.w10{width:252.253333pt;}
.w6{width:258.653333pt;}
.w7{width:259.933333pt;}
.wf{width:261.853333pt;}
.w19{width:265.053333pt;}
.w3{width:265.693333pt;}
.w15{width:268.893333pt;}
.w18{width:271.453333pt;}
.w12{width:289.693333pt;}
.w1b{width:348.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.x8{left:38.426667pt;}
.x5{left:85.152000pt;}
.x13{left:87.072000pt;}
.x25{left:104.031988pt;}
.xa{left:106.911988pt;}
.x24{left:113.631988pt;}
.xd{left:132.543988pt;}
.xb{left:160.066655pt;}
.x20{left:168.386667pt;}
.x3{left:174.466655pt;}
.x12{left:183.106655pt;}
.x15{left:186.306667pt;}
.xc{left:188.546655pt;}
.x1a{left:190.466667pt;}
.x1c{left:208.093333pt;}
.x17{left:215.453333pt;}
.x1e{left:247.773333pt;}
.x6{left:258.341333pt;}
.x22{left:266.333322pt;}
.x10{left:279.133322pt;}
.xe{left:284.573322pt;}
.x11{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x23{left:316.613333pt;}
.x7{left:350.853333pt;}
.xf{left:379.999988pt;}
.x21{left:441.760000pt;}
.x9{left:443.360000pt;}
.x16{left:446.880000pt;}
.x1b{left:454.560000pt;}
.x18{left:458.720000pt;}
.x1d{left:499.706667pt;}
.x19{left:515.386667pt;}
.x1f{left:518.586667pt;}
.x1{left:709.053322pt;}
}




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