
    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_bea82260379e606274d37298.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_1a8b1d1836c5a9b94d028be9.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_fd50c4bcd3e031a7b9044a1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_d20feeffa202777ab3aecf72.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_2d0525c9f9f5d10200b3124a.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_326a31f83be5d6286b088c78.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_618fb4c1e2719d6faa3308c9.woff2')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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-2.736000px;}
.ls9{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.422000px;}
.ls12{letter-spacing:-1.296000px;}
.ls4{letter-spacing:-0.496200px;}
.ls3{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.423600px;}
.lse{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.279600px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.466800px;}
.ls10{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.152000px;}
.ls1{letter-spacing:2.160000px;}
.lsc{letter-spacing:53.424000px;}
.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;}
}
.ws19{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.036000px;}
.ws1{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.712000px;}
.ws1b{word-spacing:-16.704000px;}
.ws1a{word-spacing:-15.264000px;}
.wsa{word-spacing:-15.156000px;}
.ws17{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.506440px;}
.ws4{word-spacing:-13.668480px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:8.822880px;}
.ws7{word-spacing:11.810400px;}
.ws11{word-spacing:23.728320px;}
.ws15{word-spacing:23.908320px;}
.ws6{word-spacing:29.475360px;}
.wse{word-spacing:39.623040px;}
.ws10{word-spacing:41.180160px;}
.ws14{word-spacing:41.240160px;}
.ws16{word-spacing:58.340160px;}
.ws12{word-spacing:58.460160px;}
.wsb{word-spacing:60.510240px;}
.ws9{word-spacing:89.413440px;}
.ws8{word-spacing:130.044480px;}
.wsc{word-spacing:143.143200px;}
.wsf{word-spacing:185.196480px;}
.ws13{word-spacing:185.317920px;}
.ws3{word-spacing:209.116080px;}
._15{margin-left:-4.659840px;}
._10{margin-left:-3.476160px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.283840px;}
._4{width:3.669120px;}
._f{width:4.872480px;}
._b{width:6.534720px;}
._a{width:8.115840px;}
._9{width:10.042560px;}
._6{width:11.253120px;}
._5{width:12.540000px;}
._d{width:13.838400px;}
._c{width:14.996160px;}
._e{width:16.439040px;}
._16{width:19.514880px;}
._13{width:21.456000px;}
._12{width:22.950720px;}
._14{width:24.272640px;}
._11{width:25.295040px;}
._17{width:27.063360px;}
._8{width:30.404160px;}
._7{width:31.469280px;}
._1d{width:39.973440px;}
._1a{width:46.332960px;}
._1c{width:56.665440px;}
._1b{width:78.373440px;}
._19{width:112.528800px;}
._18{width:113.570880px;}
.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;}
.fs6{font-size:60.624000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs3{font-size:96.480000px;}
.fs7{font-size:113.760000px;}
.fs8{font-size:113.904000px;}
.y0{bottom:0.000000px;}
.y66{bottom:7.560000px;}
.y69{bottom:7.605000px;}
.y64{bottom:7.920000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y60{bottom:12.996000px;}
.y6b{bottom:13.320000px;}
.y98{bottom:17.640000px;}
.yb4{bottom:25.380000px;}
.y57{bottom:32.508000px;}
.yac{bottom:34.770000px;}
.ya9{bottom:43.815000px;}
.yb3{bottom:44.100000px;}
.yab{bottom:53.130000px;}
.y8{bottom:57.240000px;}
.yb2{bottom:62.460000px;}
.ya8{bottom:62.535000px;}
.y58{bottom:62.610000px;}
.y8d{bottom:62.895000px;}
.yaa{bottom:71.850000px;}
.y5{bottom:73.476000px;}
.yb1{bottom:81.180000px;}
.y8c{bottom:90.690000px;}
.y59{bottom:92.670000px;}
.y97{bottom:110.520000px;}
.y55{bottom:115.236000px;}
.y56{bottom:115.560000px;}
.y34{bottom:115.596000px;}
.y5a{bottom:122.730000px;}
.y91{bottom:123.090000px;}
.y62{bottom:128.775000px;}
.y84{bottom:129.675000px;}
.yb5{bottom:132.480000px;}
.y82{bottom:135.756000px;}
.y96{bottom:137.130000px;}
.y8f{bottom:137.595000px;}
.ya1{bottom:139.356000px;}
.y33{bottom:139.716000px;}
.yb0{bottom:144.750000px;}
.y90{bottom:149.580000px;}
.y5b{bottom:152.820000px;}
.y8e{bottom:153.150000px;}
.ya7{bottom:154.185000px;}
.y93{bottom:155.130000px;}
.y61{bottom:155.910000px;}
.y85{bottom:159.555000px;}
.y81{bottom:159.870000px;}
.y32{bottom:163.470000px;}
.yaf{bottom:163.515000px;}
.yba{bottom:165.315000px;}
.ybf{bottom:165.780000px;}
.ya6{bottom:172.545000px;}
.y92{bottom:172.650000px;}
.yb9{bottom:181.155000px;}
.ybe{bottom:181.620000px;}
.yae{bottom:181.875000px;}
.y5c{bottom:182.880000px;}
.y80{bottom:183.630000px;}
.y31{bottom:187.230000px;}
.y86{bottom:189.870000px;}
.ya5{bottom:191.265000px;}
.yb8{bottom:196.635000px;}
.ybd{bottom:197.100000px;}
.yad{bottom:200.595000px;}
.ycc{bottom:203.115000px;}
.y7f{bottom:207.435000px;}
.y30{bottom:211.035000px;}
.yb7{bottom:212.115000px;}
.ybc{bottom:212.580000px;}
.y5d{bottom:212.940000px;}
.y87{bottom:220.605000px;}
.ycb{bottom:226.875000px;}
.yb6{bottom:227.595000px;}
.ybb{bottom:228.060000px;}
.y7e{bottom:231.195000px;}
.y2f{bottom:234.795000px;}
.y5e{bottom:243.030000px;}
.yca{bottom:250.635000px;}
.y88{bottom:251.820000px;}
.y7d{bottom:254.955000px;}
.y2e{bottom:258.555000px;}
.y5f{bottom:273.090000px;}
.ya4{bottom:274.065000px;}
.yc9{bottom:274.395000px;}
.y7c{bottom:278.715000px;}
.y2d{bottom:281.955000px;}
.y89{bottom:283.470000px;}
.yc8{bottom:298.155000px;}
.y94{bottom:299.775000px;}
.y7b{bottom:302.475000px;}
.ya3{bottom:303.585000px;}
.y2c{bottom:306.075000px;}
.y8a{bottom:315.615000px;}
.y95{bottom:317.010000px;}
.yc7{bottom:321.945000px;}
.y7a{bottom:326.265000px;}
.y2b{bottom:330.225000px;}
.yc6{bottom:346.065000px;}
.y8b{bottom:348.270000px;}
.y79{bottom:350.385000px;}
.y2a{bottom:353.985000px;}
.yc5{bottom:369.825000px;}
.y78{bottom:374.145000px;}
.y29{bottom:377.745000px;}
.y77{bottom:393.225000px;}
.yc4{bottom:393.585000px;}
.y83{bottom:393.840000px;}
.y28{bottom:401.505000px;}
.y54{bottom:416.985000px;}
.yc3{bottom:417.345000px;}
.y27{bottom:425.265000px;}
.y53{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.y52{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.y51{bottom:488.670000px;}
.y24{bottom:496.590000px;}
.y50{bottom:512.430000px;}
.ya0{bottom:517.830000px;}
.y23{bottom:520.350000px;}
.y4f{bottom:536.190000px;}
.yc2{bottom:536.550000px;}
.y9f{bottom:541.590000px;}
.y22{bottom:544.470000px;}
.y4e{bottom:560.310000px;}
.y9e{bottom:565.350000px;}
.y21{bottom:568.230000px;}
.y4d{bottom:584.100000px;}
.y9d{bottom:589.140000px;}
.y20{bottom:592.020000px;}
.y4c{bottom:607.860000px;}
.y9c{bottom:612.540000px;}
.y1f{bottom:615.780000px;}
.y4b{bottom:631.620000px;}
.y9b{bottom:636.300000px;}
.y1e{bottom:639.540000px;}
.ya2{bottom:653.040000px;}
.yc1{bottom:655.020000px;}
.y4a{bottom:655.380000px;}
.y9a{bottom:656.460000px;}
.y1d{bottom:663.300000px;}
.yc0{bottom:678.780000px;}
.y49{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.y48{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y47{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.y46{bottom:750.810000px;}
.y19{bottom:758.730000px;}
.y45{bottom:774.570000px;}
.y18{bottom:782.130000px;}
.y76{bottom:787.530000px;}
.y44{bottom:798.330000px;}
.y17{bottom:805.890000px;}
.y75{bottom:812.010000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y74{bottom:835.815000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y73{bottom:859.575000px;}
.y41{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y72{bottom:883.335000px;}
.y40{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.y71{bottom:907.095000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.y70{bottom:930.855000px;}
.y3e{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.y6f{bottom:954.645000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:972.645000px;}
.y6e{bottom:978.405000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.y6d{bottom:1002.165000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.y6c{bottom:1026.285000px;}
.y3a{bottom:1036.365000px;}
.y6a{bottom:1043.205000px;}
.yd{bottom:1044.285000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y68{bottom:1073.445000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y67{bottom:1097.970000px;}
.y99{bottom:1107.330000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y65{bottom:1122.450000px;}
.y36{bottom:1131.810000px;}
.y63{bottom:1146.930000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h11{height:23.760000px;}
.h12{height:23.796000px;}
.h10{height:24.120000px;}
.h5{height:27.000000px;}
.h13{height:29.520000px;}
.he{height:45.921094px;}
.hf{height:46.030430px;}
.hc{height:50.273438px;}
.h7{height:50.294531px;}
.h4{height:55.147500px;}
.h1a{height:59.357813px;}
.h1b{height:59.499141px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h18{height:70.805391px;}
.h2{height:72.562500px;}
.hb{height:73.998281px;}
.h1c{height:74.004654px;}
.ha{height:75.251250px;}
.h8{height:97.233750px;}
.h16{height:111.649219px;}
.h17{height:111.790547px;}
.hd{height:294.480000px;}
.h15{height:352.080000px;}
.h19{height:378.000000px;}
.h14{height:386.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:74.556000px;}
.w4{width:104.076000px;}
.w8{width:148.392000px;}
.w7{width:157.710000px;}
.w3{width:298.905000px;}
.w5{width:586.080000px;}
.w9{width:662.760000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x14{left:9.750000px;}
.x13{left:17.490000px;}
.x12{left:40.035000px;}
.x8{left:43.590000px;}
.x2f{left:62.925000px;}
.x23{left:64.290000px;}
.x22{left:66.135000px;}
.x21{left:67.890000px;}
.x20{left:69.660000px;}
.x1f{left:71.430000px;}
.x1e{left:73.110000px;}
.x1d{left:74.805000px;}
.x15{left:89.490000px;}
.x5{left:95.796000px;}
.x1c{left:99.390000px;}
.x1b{left:114.840000px;}
.xa{left:120.635987px;}
.x45{left:127.835987px;}
.x31{left:129.635987px;}
.x42{left:132.767987px;}
.xc{left:149.111987px;}
.x26{left:150.990000px;}
.x11{left:153.360000px;}
.xe{left:157.034987px;}
.x36{left:161.279987px;}
.x24{left:162.645000px;}
.x34{left:175.604987px;}
.x38{left:178.559987px;}
.x28{left:184.605000px;}
.xb{left:189.794987px;}
.x3{left:190.874987px;}
.x2a{left:214.950000px;}
.x39{left:223.949987px;}
.x37{left:228.269987px;}
.x35{left:231.404987px;}
.x2c{left:244.695000px;}
.x17{left:253.545000px;}
.x33{left:279.464987px;}
.x6{left:290.634000px;}
.x43{left:300.989987px;}
.xf{left:322.664987px;}
.xd{left:329.189987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x27{left:351.645000px;}
.x3a{left:378.074987px;}
.x25{left:386.790000px;}
.x29{left:393.630000px;}
.x7{left:394.710000px;}
.x32{left:405.509987px;}
.x2b{left:425.730000px;}
.x16{left:460.470000px;}
.x2d{left:468.540000px;}
.x19{left:487.260000px;}
.x9{left:498.780000px;}
.x2e{left:510.915000px;}
.x3b{left:585.614987px;}
.x3c{left:589.934987px;}
.x3f{left:599.654987px;}
.x3e{left:606.494987px;}
.x40{left:613.004987px;}
.x3d{left:623.804987px;}
.x44{left:637.484987px;}
.x41{left:650.084987px;}
.x10{left:739.724987px;}
.x1a{left:777.884987px;}
.x30{left:781.484987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-2.432000pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.264000pt;}
.ls12{letter-spacing:-1.152000pt;}
.ls4{letter-spacing:-0.441067pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.376533pt;}
.lse{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.248533pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.414933pt;}
.ls10{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.lsf{letter-spacing:1.024000pt;}
.ls1{letter-spacing:1.920000pt;}
.lsc{letter-spacing:47.488000pt;}
.ws19{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.032000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-14.848000pt;}
.ws1a{word-spacing:-13.568000pt;}
.wsa{word-spacing:-13.472000pt;}
.ws17{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws4{word-spacing:-12.149760pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:7.842560pt;}
.ws7{word-spacing:10.498133pt;}
.ws11{word-spacing:21.091840pt;}
.ws15{word-spacing:21.251840pt;}
.ws6{word-spacing:26.200320pt;}
.wse{word-spacing:35.220480pt;}
.ws10{word-spacing:36.604587pt;}
.ws14{word-spacing:36.657920pt;}
.ws16{word-spacing:51.857920pt;}
.ws12{word-spacing:51.964587pt;}
.wsb{word-spacing:53.786880pt;}
.ws9{word-spacing:79.478613pt;}
.ws8{word-spacing:115.595093pt;}
.wsc{word-spacing:127.238400pt;}
.wsf{word-spacing:164.619093pt;}
.ws13{word-spacing:164.727040pt;}
.ws3{word-spacing:185.880960pt;}
._15{margin-left:-4.142080pt;}
._10{margin-left:-3.089920pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.030080pt;}
._4{width:3.261440pt;}
._f{width:4.331093pt;}
._b{width:5.808640pt;}
._a{width:7.214080pt;}
._9{width:8.926720pt;}
._6{width:10.002773pt;}
._5{width:11.146667pt;}
._d{width:12.300800pt;}
._c{width:13.329920pt;}
._e{width:14.612480pt;}
._16{width:17.346560pt;}
._13{width:19.072000pt;}
._12{width:20.400640pt;}
._14{width:21.575680pt;}
._11{width:22.484480pt;}
._17{width:24.056320pt;}
._8{width:27.025920pt;}
._7{width:27.972693pt;}
._1d{width:35.531947pt;}
._1a{width:41.184853pt;}
._1c{width:50.369280pt;}
._1b{width:69.665280pt;}
._19{width:100.025600pt;}
._18{width:100.951893pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:53.888000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs3{font-size:85.760000pt;}
.fs7{font-size:101.120000pt;}
.fs8{font-size:101.248000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:6.720000pt;}
.y69{bottom:6.760000pt;}
.y64{bottom:7.040000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y60{bottom:11.552000pt;}
.y6b{bottom:11.840000pt;}
.y98{bottom:15.680000pt;}
.yb4{bottom:22.560000pt;}
.y57{bottom:28.896000pt;}
.yac{bottom:30.906667pt;}
.ya9{bottom:38.946667pt;}
.yb3{bottom:39.200000pt;}
.yab{bottom:47.226667pt;}
.y8{bottom:50.880000pt;}
.yb2{bottom:55.520000pt;}
.ya8{bottom:55.586667pt;}
.y58{bottom:55.653333pt;}
.y8d{bottom:55.906667pt;}
.yaa{bottom:63.866667pt;}
.y5{bottom:65.312000pt;}
.yb1{bottom:72.160000pt;}
.y8c{bottom:80.613333pt;}
.y59{bottom:82.373333pt;}
.y97{bottom:98.240000pt;}
.y55{bottom:102.432000pt;}
.y56{bottom:102.720000pt;}
.y34{bottom:102.752000pt;}
.y5a{bottom:109.093333pt;}
.y91{bottom:109.413333pt;}
.y62{bottom:114.466667pt;}
.y84{bottom:115.266667pt;}
.yb5{bottom:117.760000pt;}
.y82{bottom:120.672000pt;}
.y96{bottom:121.893333pt;}
.y8f{bottom:122.306667pt;}
.ya1{bottom:123.872000pt;}
.y33{bottom:124.192000pt;}
.yb0{bottom:128.666667pt;}
.y90{bottom:132.960000pt;}
.y5b{bottom:135.840000pt;}
.y8e{bottom:136.133333pt;}
.ya7{bottom:137.053333pt;}
.y93{bottom:137.893333pt;}
.y61{bottom:138.586667pt;}
.y85{bottom:141.826667pt;}
.y81{bottom:142.106667pt;}
.y32{bottom:145.306667pt;}
.yaf{bottom:145.346667pt;}
.yba{bottom:146.946667pt;}
.ybf{bottom:147.360000pt;}
.ya6{bottom:153.373333pt;}
.y92{bottom:153.466667pt;}
.yb9{bottom:161.026667pt;}
.ybe{bottom:161.440000pt;}
.yae{bottom:161.666667pt;}
.y5c{bottom:162.560000pt;}
.y80{bottom:163.226667pt;}
.y31{bottom:166.426667pt;}
.y86{bottom:168.773333pt;}
.ya5{bottom:170.013333pt;}
.yb8{bottom:174.786667pt;}
.ybd{bottom:175.200000pt;}
.yad{bottom:178.306667pt;}
.ycc{bottom:180.546667pt;}
.y7f{bottom:184.386667pt;}
.y30{bottom:187.586667pt;}
.yb7{bottom:188.546667pt;}
.ybc{bottom:188.960000pt;}
.y5d{bottom:189.280000pt;}
.y87{bottom:196.093333pt;}
.ycb{bottom:201.666667pt;}
.yb6{bottom:202.306667pt;}
.ybb{bottom:202.720000pt;}
.y7e{bottom:205.506667pt;}
.y2f{bottom:208.706667pt;}
.y5e{bottom:216.026667pt;}
.yca{bottom:222.786667pt;}
.y88{bottom:223.840000pt;}
.y7d{bottom:226.626667pt;}
.y2e{bottom:229.826667pt;}
.y5f{bottom:242.746667pt;}
.ya4{bottom:243.613333pt;}
.yc9{bottom:243.906667pt;}
.y7c{bottom:247.746667pt;}
.y2d{bottom:250.626667pt;}
.y89{bottom:251.973333pt;}
.yc8{bottom:265.026667pt;}
.y94{bottom:266.466667pt;}
.y7b{bottom:268.866667pt;}
.ya3{bottom:269.853333pt;}
.y2c{bottom:272.066667pt;}
.y8a{bottom:280.546667pt;}
.y95{bottom:281.786667pt;}
.yc7{bottom:286.173333pt;}
.y7a{bottom:290.013333pt;}
.y2b{bottom:293.533333pt;}
.yc6{bottom:307.613333pt;}
.y8b{bottom:309.573333pt;}
.y79{bottom:311.453333pt;}
.y2a{bottom:314.653333pt;}
.yc5{bottom:328.733333pt;}
.y78{bottom:332.573333pt;}
.y29{bottom:335.773333pt;}
.y77{bottom:349.533333pt;}
.yc4{bottom:349.853333pt;}
.y83{bottom:350.080000pt;}
.y28{bottom:356.893333pt;}
.y54{bottom:370.653333pt;}
.yc3{bottom:370.973333pt;}
.y27{bottom:378.013333pt;}
.y53{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.y52{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.y51{bottom:434.373333pt;}
.y24{bottom:441.413333pt;}
.y50{bottom:455.493333pt;}
.ya0{bottom:460.293333pt;}
.y23{bottom:462.533333pt;}
.y4f{bottom:476.613333pt;}
.yc2{bottom:476.933333pt;}
.y9f{bottom:481.413333pt;}
.y22{bottom:483.973333pt;}
.y4e{bottom:498.053333pt;}
.y9e{bottom:502.533333pt;}
.y21{bottom:505.093333pt;}
.y4d{bottom:519.200000pt;}
.y9d{bottom:523.680000pt;}
.y20{bottom:526.240000pt;}
.y4c{bottom:540.320000pt;}
.y9c{bottom:544.480000pt;}
.y1f{bottom:547.360000pt;}
.y4b{bottom:561.440000pt;}
.y9b{bottom:565.600000pt;}
.y1e{bottom:568.480000pt;}
.ya2{bottom:580.480000pt;}
.yc1{bottom:582.240000pt;}
.y4a{bottom:582.560000pt;}
.y9a{bottom:583.520000pt;}
.y1d{bottom:589.600000pt;}
.yc0{bottom:603.360000pt;}
.y49{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.y48{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y47{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.y46{bottom:667.386667pt;}
.y19{bottom:674.426667pt;}
.y45{bottom:688.506667pt;}
.y18{bottom:695.226667pt;}
.y76{bottom:700.026667pt;}
.y44{bottom:709.626667pt;}
.y17{bottom:716.346667pt;}
.y75{bottom:721.786667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y74{bottom:742.946667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y73{bottom:764.066667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y72{bottom:785.186667pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.y71{bottom:806.306667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.y70{bottom:827.426667pt;}
.y3e{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.y6f{bottom:848.573333pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.573333pt;}
.y6e{bottom:869.693333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.y6d{bottom:890.813333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.y6c{bottom:912.253333pt;}
.y3a{bottom:921.213333pt;}
.y6a{bottom:927.293333pt;}
.yd{bottom:928.253333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y68{bottom:954.173333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y67{bottom:975.973333pt;}
.y99{bottom:984.293333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y65{bottom:997.733333pt;}
.y36{bottom:1006.053333pt;}
.y63{bottom:1019.493333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h11{height:21.120000pt;}
.h12{height:21.152000pt;}
.h10{height:21.440000pt;}
.h5{height:24.000000pt;}
.h13{height:26.240000pt;}
.he{height:40.818750pt;}
.hf{height:40.915937pt;}
.hc{height:44.687500pt;}
.h7{height:44.706250pt;}
.h4{height:49.020000pt;}
.h1a{height:52.762500pt;}
.h1b{height:52.888125pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h18{height:62.938125pt;}
.h2{height:64.500000pt;}
.hb{height:65.776250pt;}
.h1c{height:65.781915pt;}
.ha{height:66.890000pt;}
.h8{height:86.430000pt;}
.h16{height:99.243750pt;}
.h17{height:99.369375pt;}
.hd{height:261.760000pt;}
.h15{height:312.960000pt;}
.h19{height:336.000000pt;}
.h14{height:343.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:66.272000pt;}
.w4{width:92.512000pt;}
.w8{width:131.904000pt;}
.w7{width:140.186667pt;}
.w3{width:265.693333pt;}
.w5{width:520.960000pt;}
.w9{width:589.120000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x14{left:8.666667pt;}
.x13{left:15.546667pt;}
.x12{left:35.586667pt;}
.x8{left:38.746667pt;}
.x2f{left:55.933333pt;}
.x23{left:57.146667pt;}
.x22{left:58.786667pt;}
.x21{left:60.346667pt;}
.x20{left:61.920000pt;}
.x1f{left:63.493333pt;}
.x1e{left:64.986667pt;}
.x1d{left:66.493333pt;}
.x15{left:79.546667pt;}
.x5{left:85.152000pt;}
.x1c{left:88.346667pt;}
.x1b{left:102.080000pt;}
.xa{left:107.231988pt;}
.x45{left:113.631988pt;}
.x31{left:115.231988pt;}
.x42{left:118.015988pt;}
.xc{left:132.543988pt;}
.x26{left:134.213333pt;}
.x11{left:136.320000pt;}
.xe{left:139.586655pt;}
.x36{left:143.359988pt;}
.x24{left:144.573333pt;}
.x34{left:156.093322pt;}
.x38{left:158.719988pt;}
.x28{left:164.093333pt;}
.xb{left:168.706655pt;}
.x3{left:169.666655pt;}
.x2a{left:191.066667pt;}
.x39{left:199.066655pt;}
.x37{left:202.906655pt;}
.x35{left:205.693322pt;}
.x2c{left:217.506667pt;}
.x17{left:225.373333pt;}
.x33{left:248.413322pt;}
.x6{left:258.341333pt;}
.x43{left:267.546655pt;}
.xf{left:286.813322pt;}
.xd{left:292.613322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x27{left:312.573333pt;}
.x3a{left:336.066655pt;}
.x25{left:343.813333pt;}
.x29{left:349.893333pt;}
.x7{left:350.853333pt;}
.x32{left:360.453322pt;}
.x2b{left:378.426667pt;}
.x16{left:409.306667pt;}
.x2d{left:416.480000pt;}
.x19{left:433.120000pt;}
.x9{left:443.360000pt;}
.x2e{left:454.146667pt;}
.x3b{left:520.546655pt;}
.x3c{left:524.386655pt;}
.x3f{left:533.026655pt;}
.x3e{left:539.106655pt;}
.x40{left:544.893322pt;}
.x3d{left:554.493322pt;}
.x44{left:566.653322pt;}
.x41{left:577.853322pt;}
.x10{left:657.533322pt;}
.x1a{left:691.453322pt;}
.x30{left:694.653322pt;}
.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; }
  