
    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_d9e3bc2a39694fcd67c46755.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_fba46053d500eebcf52becac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_a940cf912076d0f0ddd9db92.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_7fb4f607c51ddc34f9e9617e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915039;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_62c5d221f44be15c94fad6c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_1e1980e7b510086065e328e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959473;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_ddc736f98dcd2b7c7cd9e0dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901855;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:-12.960000px;}
.v3{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.960000px;}
.lsa{letter-spacing:-1.026000px;}
.ls20{letter-spacing:-0.484800px;}
.ls21{letter-spacing:-0.461400px;}
.ls1e{letter-spacing:-0.304800px;}
.ls12{letter-spacing:-0.234600px;}
.ls1f{letter-spacing:-0.187800px;}
.ls1d{letter-spacing:-0.160800px;}
.ls3{letter-spacing:-0.127200px;}
.ls2{letter-spacing:-0.126000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls22{letter-spacing:-0.090600px;}
.ls4{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.020880px;}
.ls19{letter-spacing:0.052560px;}
.ls6{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.235440px;}
.ls7{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.280080px;}
.ls0{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.417600px;}
.ls8{letter-spacing:0.485280px;}
.ls5{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.592560px;}
.ls10{letter-spacing:1.800000px;}
.ls13{letter-spacing:2.484000px;}
.ls11{letter-spacing:2.520000px;}
.lse{letter-spacing:3.060000px;}
.lsd{letter-spacing:3.240000px;}
.ls16{letter-spacing:5.940000px;}
.ls9{letter-spacing:10.260000px;}
.ls17{letter-spacing:10.980000px;}
.lsc{letter-spacing:11.880000px;}
.ls1b{letter-spacing:13.140000px;}
.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;}
}
.ws7{word-spacing:-15.444000px;}
.ws8{word-spacing:-14.976000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.374000px;}
.wsc{word-spacing:-11.899200px;}
.wsd{word-spacing:-11.755200px;}
.ws4{word-spacing:-10.476000px;}
.ws5{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.407000px;}
.ws10{word-spacing:-10.173600px;}
.ws9{word-spacing:-9.756000px;}
.ws2{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.629400px;}
.wsa{word-spacing:-9.485400px;}
.wsb{word-spacing:-7.740000px;}
.wse{word-spacing:-7.620000px;}
.wsf{word-spacing:-7.588200px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-7.450080px;}
._1b{margin-left:-5.788800px;}
._1a{margin-left:-3.990480px;}
._c{margin-left:-2.872800px;}
._0{margin-left:-1.314720px;}
._1{width:1.880160px;}
._2{width:3.594240px;}
._5{width:4.780800px;}
._7{width:6.095520px;}
._6{width:7.888320px;}
._a{width:9.203040px;}
._4{width:10.623600px;}
._3{width:11.777280px;}
._15{width:12.820800px;}
._b{width:13.864320px;}
._1c{width:14.941200px;}
._9{width:16.852320px;}
._8{width:17.928000px;}
._11{width:19.068000px;}
._10{width:20.079360px;}
._16{width:22.056000px;}
._19{width:23.219040px;}
._12{width:24.621120px;}
._13{width:26.147280px;}
._d{width:27.149040px;}
._17{width:29.549040px;}
._e{width:30.748800px;}
._f{width:31.760160px;}
._14{width:34.095360px;}
.fc1{color:rgb(4,12,40);}
.fc2{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.960000px;}
.fsb{font-size:31.104000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:39.024000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:41.904000px;}
.fsa{font-size:48.240000px;}
.fsc{font-size:48.384000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:59.904000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y33{bottom:68.040000px;}
.y2{bottom:69.120000px;}
.y28{bottom:94.860000px;}
.yb7{bottom:107.280000px;}
.y5c{bottom:107.820000px;}
.y93{bottom:108.000000px;}
.yd1{bottom:108.180000px;}
.yfe{bottom:108.360000px;}
.y4c{bottom:108.540000px;}
.y27{bottom:111.780000px;}
.yfd{bottom:121.860000px;}
.yd0{bottom:122.760000px;}
.yb6{bottom:124.020000px;}
.y5b{bottom:124.740000px;}
.y92{bottom:124.920000px;}
.y4b{bottom:125.460000px;}
.y26{bottom:128.700000px;}
.ycf{bottom:139.680000px;}
.yb5{bottom:140.940000px;}
.y5a{bottom:141.660000px;}
.y91{bottom:141.840000px;}
.y4a{bottom:142.380000px;}
.y25{bottom:145.440000px;}
.yce{bottom:151.560000px;}
.yb4{bottom:157.860000px;}
.y59{bottom:158.400000px;}
.y90{bottom:158.760000px;}
.y49{bottom:159.300000px;}
.y24{bottom:162.360000px;}
.ycd{bottom:165.990000px;}
.yb3{bottom:174.810000px;}
.y58{bottom:175.350000px;}
.y8f{bottom:175.530000px;}
.y48{bottom:176.070000px;}
.y23{bottom:179.310000px;}
.ycc{bottom:183.090000px;}
.yb2{bottom:191.550000px;}
.y57{bottom:192.270000px;}
.y8e{bottom:192.450000px;}
.y47{bottom:192.990000px;}
.ycb{bottom:194.970000px;}
.y22{bottom:196.230000px;}
.ye4{bottom:198.030000px;}
.yb1{bottom:208.470000px;}
.y56{bottom:209.190000px;}
.y8d{bottom:209.370000px;}
.ye3{bottom:209.730000px;}
.y46{bottom:209.910000px;}
.yca{bottom:211.890000px;}
.y21{bottom:212.970000px;}
.yc9{bottom:223.770000px;}
.ye2{bottom:224.130000px;}
.yb0{bottom:225.390000px;}
.y55{bottom:225.930000px;}
.y8c{bottom:226.290000px;}
.y45{bottom:226.830000px;}
.y20{bottom:229.890000px;}
.ye1{bottom:238.710000px;}
.yc8{bottom:240.870000px;}
.yaf{bottom:242.310000px;}
.y54{bottom:242.850000px;}
.y8b{bottom:243.030000px;}
.y44{bottom:243.570000px;}
.y1f{bottom:246.810000px;}
.ye0{bottom:253.110000px;}
.yc7{bottom:255.270000px;}
.yae{bottom:259.050000px;}
.y53{bottom:259.770000px;}
.y8a{bottom:259.950000px;}
.y43{bottom:260.490000px;}
.y1e{bottom:263.730000px;}
.yc6{bottom:269.670000px;}
.ydf{bottom:270.030000px;}
.yad{bottom:275.970000px;}
.y52{bottom:276.690000px;}
.y89{bottom:276.870000px;}
.y42{bottom:277.410000px;}
.y1d{bottom:280.470000px;}
.yde{bottom:281.910000px;}
.yc5{bottom:284.070000px;}
.yac{bottom:292.890000px;}
.y51{bottom:293.430000px;}
.y88{bottom:293.790000px;}
.y41{bottom:294.330000px;}
.yc4{bottom:296.130000px;}
.y1c{bottom:297.390000px;}
.ydd{bottom:299.010000px;}
.yab{bottom:309.810000px;}
.y50{bottom:310.350000px;}
.y87{bottom:310.530000px;}
.ydc{bottom:310.890000px;}
.y40{bottom:311.070000px;}
.y1b{bottom:314.310000px;}
.yc3{bottom:324.930000px;}
.yaa{bottom:326.550000px;}
.y4f{bottom:327.270000px;}
.y86{bottom:327.450000px;}
.ydb{bottom:327.810000px;}
.y3f{bottom:327.990000px;}
.y1a{bottom:331.230000px;}
.yc2{bottom:339.330000px;}
.yda{bottom:339.690000px;}
.ya9{bottom:343.470000px;}
.y4e{bottom:344.190000px;}
.y85{bottom:344.370000px;}
.y3e{bottom:344.910000px;}
.y19{bottom:347.970000px;}
.yc1{bottom:356.475000px;}
.yd9{bottom:356.835000px;}
.ya8{bottom:360.435000px;}
.y4d{bottom:360.975000px;}
.y84{bottom:361.335000px;}
.y3d{bottom:361.875000px;}
.y18{bottom:364.935000px;}
.yc0{bottom:368.355000px;}
.yd8{bottom:368.715000px;}
.ya7{bottom:377.355000px;}
.y83{bottom:378.075000px;}
.y3c{bottom:378.615000px;}
.y17{bottom:381.855000px;}
.ybf{bottom:382.755000px;}
.yd7{bottom:385.635000px;}
.ya6{bottom:394.095000px;}
.y82{bottom:394.995000px;}
.y3b{bottom:395.535000px;}
.ybe{bottom:397.155000px;}
.yd6{bottom:397.515000px;}
.y16{bottom:398.775000px;}
.ya5{bottom:411.015000px;}
.y81{bottom:411.915000px;}
.y3a{bottom:412.455000px;}
.ybd{bottom:414.255000px;}
.yd5{bottom:414.615000px;}
.y15{bottom:415.515000px;}
.ybc{bottom:426.135000px;}
.yd4{bottom:426.495000px;}
.ya4{bottom:427.935000px;}
.y80{bottom:428.835000px;}
.y39{bottom:429.375000px;}
.y14{bottom:432.435000px;}
.ybb{bottom:443.055000px;}
.yd3{bottom:443.415000px;}
.ya3{bottom:444.855000px;}
.y7f{bottom:445.575000px;}
.y38{bottom:446.115000px;}
.y13{bottom:449.355000px;}
.ya2{bottom:461.595000px;}
.y7e{bottom:462.495000px;}
.y37{bottom:463.035000px;}
.y12{bottom:466.275000px;}
.yd2{bottom:472.215000px;}
.ya1{bottom:478.515000px;}
.y7d{bottom:479.415000px;}
.y36{bottom:479.955000px;}
.y11{bottom:483.015000px;}
.ya0{bottom:495.435000px;}
.y7c{bottom:496.335000px;}
.y35{bottom:496.875000px;}
.y10{bottom:499.935000px;}
.y9f{bottom:512.355000px;}
.y7b{bottom:513.075000px;}
.y34{bottom:513.615000px;}
.yf{bottom:516.855000px;}
.y9e{bottom:529.095000px;}
.y7a{bottom:529.995000px;}
.y97{bottom:530.535000px;}
.yfc{bottom:532.155000px;}
.ye{bottom:533.775000px;}
.y9d{bottom:546.015000px;}
.y79{bottom:546.915000px;}
.y96{bottom:547.455000px;}
.yfb{bottom:549.105000px;}
.yd{bottom:550.545000px;}
.y9c{bottom:562.965000px;}
.y78{bottom:563.865000px;}
.y95{bottom:564.405000px;}
.yfa{bottom:566.025000px;}
.yc{bottom:567.465000px;}
.y62{bottom:568.185000px;}
.y9b{bottom:579.885000px;}
.y77{bottom:580.605000px;}
.y94{bottom:581.145000px;}
.yf9{bottom:582.765000px;}
.y61{bottom:583.305000px;}
.yb{bottom:584.385000px;}
.y9a{bottom:596.625000px;}
.y76{bottom:597.525000px;}
.y60{bottom:598.605000px;}
.yf8{bottom:599.685000px;}
.ya{bottom:601.305000px;}
.y5f{bottom:613.725000px;}
.y75{bottom:614.445000px;}
.y99{bottom:615.705000px;}
.yf7{bottom:616.605000px;}
.y9{bottom:618.045000px;}
.y5e{bottom:628.845000px;}
.y98{bottom:631.005000px;}
.y74{bottom:631.365000px;}
.yf6{bottom:633.525000px;}
.y8{bottom:634.965000px;}
.y5d{bottom:644.145000px;}
.y73{bottom:648.105000px;}
.yf5{bottom:650.265000px;}
.y2e{bottom:651.705000px;}
.y7{bottom:651.885000px;}
.y72{bottom:665.025000px;}
.y2d{bottom:667.005000px;}
.yf4{bottom:667.185000px;}
.y6{bottom:668.805000px;}
.y71{bottom:681.945000px;}
.y2c{bottom:683.385000px;}
.yf3{bottom:684.105000px;}
.y5{bottom:686.445000px;}
.y70{bottom:698.865000px;}
.yf2{bottom:701.025000px;}
.y2b{bottom:703.545000px;}
.y4{bottom:706.605000px;}
.y6f{bottom:715.605000px;}
.yf1{bottom:717.765000px;}
.y3{bottom:726.045000px;}
.y6e{bottom:732.525000px;}
.yf0{bottom:734.685000px;}
.y6d{bottom:749.490000px;}
.yef{bottom:751.650000px;}
.y6c{bottom:766.410000px;}
.yee{bottom:768.570000px;}
.y6b{bottom:783.150000px;}
.yed{bottom:785.310000px;}
.y6a{bottom:800.070000px;}
.yec{bottom:802.230000px;}
.y69{bottom:816.990000px;}
.yeb{bottom:819.150000px;}
.y68{bottom:833.910000px;}
.yea{bottom:836.070000px;}
.y2a{bottom:840.210000px;}
.y67{bottom:850.650000px;}
.ye9{bottom:852.810000px;}
.y29{bottom:867.210000px;}
.y66{bottom:867.570000px;}
.ye8{bottom:869.730000px;}
.y65{bottom:884.490000px;}
.ye7{bottom:886.650000px;}
.yba{bottom:889.170000px;}
.y64{bottom:901.410000px;}
.ye6{bottom:903.570000px;}
.yb9{bottom:904.290000px;}
.y63{bottom:918.150000px;}
.yb8{bottom:919.590000px;}
.y31{bottom:919.770000px;}
.ye5{bottom:920.310000px;}
.y30{bottom:931.470000px;}
.y2f{bottom:943.380000px;}
.y32{bottom:962.280000px;}
.y1{bottom:981.900000px;}
.h11{height:22.590352px;}
.h10{height:23.328984px;}
.he{height:23.508984px;}
.hb{height:29.077031px;}
.ha{height:29.177297px;}
.h13{height:32.670352px;}
.hf{height:33.588984px;}
.h12{height:33.689250px;}
.h9{height:36.571289px;}
.hc{height:37.599609px;}
.h3{height:40.472227px;}
.h5{height:41.610234px;}
.h6{height:41.710500px;}
.h2{height:41.726953px;}
.h4{height:48.761719px;}
.h8{height:50.132812px;}
.hd{height:50.273438px;}
.h7{height:66.676641px;}
.h0{height:1020.420000px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w2{width:680.399990px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.x1{left:58.319990px;}
.x6{left:68.075990px;}
.xe{left:79.595990px;}
.x3{left:220.214990px;}
.x4{left:233.354990px;}
.x5{left:241.454990px;}
.xb{left:350.024990px;}
.xa{left:371.264990px;}
.xc{left:386.024990px;}
.x7{left:479.129990px;}
.xd{left:482.729990px;}
.x9{left:486.509990px;}
.x2{left:491.549990px;}
.x8{left:542.669990px;}
@media print{
.v2{vertical-align:-11.520000pt;}
.v3{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.520000pt;}
.lsa{letter-spacing:-0.912000pt;}
.ls20{letter-spacing:-0.430933pt;}
.ls21{letter-spacing:-0.410133pt;}
.ls1e{letter-spacing:-0.270933pt;}
.ls12{letter-spacing:-0.208533pt;}
.ls1f{letter-spacing:-0.166933pt;}
.ls1d{letter-spacing:-0.142933pt;}
.ls3{letter-spacing:-0.113067pt;}
.ls2{letter-spacing:-0.112000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls22{letter-spacing:-0.080533pt;}
.ls4{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.018560pt;}
.ls19{letter-spacing:0.046720pt;}
.ls6{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.209280pt;}
.ls7{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.248960pt;}
.ls0{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.371200pt;}
.ls8{letter-spacing:0.431360pt;}
.ls5{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.526720pt;}
.ls10{letter-spacing:1.600000pt;}
.ls13{letter-spacing:2.208000pt;}
.ls11{letter-spacing:2.240000pt;}
.lse{letter-spacing:2.720000pt;}
.lsd{letter-spacing:2.880000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls9{letter-spacing:9.120000pt;}
.ls17{letter-spacing:9.760000pt;}
.lsc{letter-spacing:10.560000pt;}
.ls1b{letter-spacing:11.680000pt;}
.ws7{word-spacing:-13.728000pt;}
.ws8{word-spacing:-13.312000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.888000pt;}
.wsc{word-spacing:-10.577067pt;}
.wsd{word-spacing:-10.449067pt;}
.ws4{word-spacing:-9.312000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.250667pt;}
.ws10{word-spacing:-9.043200pt;}
.ws9{word-spacing:-8.672000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.559467pt;}
.wsa{word-spacing:-8.431467pt;}
.wsb{word-spacing:-6.880000pt;}
.wse{word-spacing:-6.773333pt;}
.wsf{word-spacing:-6.745067pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-6.622293pt;}
._1b{margin-left:-5.145600pt;}
._1a{margin-left:-3.547093pt;}
._c{margin-left:-2.553600pt;}
._0{margin-left:-1.168640pt;}
._1{width:1.671253pt;}
._2{width:3.194880pt;}
._5{width:4.249600pt;}
._7{width:5.418240pt;}
._6{width:7.011840pt;}
._a{width:8.180480pt;}
._4{width:9.443200pt;}
._3{width:10.468693pt;}
._15{width:11.396267pt;}
._b{width:12.323840pt;}
._1c{width:13.281067pt;}
._9{width:14.979840pt;}
._8{width:15.936000pt;}
._11{width:16.949333pt;}
._10{width:17.848320pt;}
._16{width:19.605333pt;}
._19{width:20.639147pt;}
._12{width:21.885440pt;}
._13{width:23.242027pt;}
._d{width:24.132480pt;}
._17{width:26.265813pt;}
._e{width:27.332267pt;}
._f{width:28.231253pt;}
._14{width:30.306987pt;}
.fs9{font-size:27.520000pt;}
.fsb{font-size:27.648000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:34.688000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:37.248000pt;}
.fsa{font-size:42.880000pt;}
.fsc{font-size:43.008000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:53.248000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:60.480000pt;}
.y2{bottom:61.440000pt;}
.y28{bottom:84.320000pt;}
.yb7{bottom:95.360000pt;}
.y5c{bottom:95.840000pt;}
.y93{bottom:96.000000pt;}
.yd1{bottom:96.160000pt;}
.yfe{bottom:96.320000pt;}
.y4c{bottom:96.480000pt;}
.y27{bottom:99.360000pt;}
.yfd{bottom:108.320000pt;}
.yd0{bottom:109.120000pt;}
.yb6{bottom:110.240000pt;}
.y5b{bottom:110.880000pt;}
.y92{bottom:111.040000pt;}
.y4b{bottom:111.520000pt;}
.y26{bottom:114.400000pt;}
.ycf{bottom:124.160000pt;}
.yb5{bottom:125.280000pt;}
.y5a{bottom:125.920000pt;}
.y91{bottom:126.080000pt;}
.y4a{bottom:126.560000pt;}
.y25{bottom:129.280000pt;}
.yce{bottom:134.720000pt;}
.yb4{bottom:140.320000pt;}
.y59{bottom:140.800000pt;}
.y90{bottom:141.120000pt;}
.y49{bottom:141.600000pt;}
.y24{bottom:144.320000pt;}
.ycd{bottom:147.546667pt;}
.yb3{bottom:155.386667pt;}
.y58{bottom:155.866667pt;}
.y8f{bottom:156.026667pt;}
.y48{bottom:156.506667pt;}
.y23{bottom:159.386667pt;}
.ycc{bottom:162.746667pt;}
.yb2{bottom:170.266667pt;}
.y57{bottom:170.906667pt;}
.y8e{bottom:171.066667pt;}
.y47{bottom:171.546667pt;}
.ycb{bottom:173.306667pt;}
.y22{bottom:174.426667pt;}
.ye4{bottom:176.026667pt;}
.yb1{bottom:185.306667pt;}
.y56{bottom:185.946667pt;}
.y8d{bottom:186.106667pt;}
.ye3{bottom:186.426667pt;}
.y46{bottom:186.586667pt;}
.yca{bottom:188.346667pt;}
.y21{bottom:189.306667pt;}
.yc9{bottom:198.906667pt;}
.ye2{bottom:199.226667pt;}
.yb0{bottom:200.346667pt;}
.y55{bottom:200.826667pt;}
.y8c{bottom:201.146667pt;}
.y45{bottom:201.626667pt;}
.y20{bottom:204.346667pt;}
.ye1{bottom:212.186667pt;}
.yc8{bottom:214.106667pt;}
.yaf{bottom:215.386667pt;}
.y54{bottom:215.866667pt;}
.y8b{bottom:216.026667pt;}
.y44{bottom:216.506667pt;}
.y1f{bottom:219.386667pt;}
.ye0{bottom:224.986667pt;}
.yc7{bottom:226.906667pt;}
.yae{bottom:230.266667pt;}
.y53{bottom:230.906667pt;}
.y8a{bottom:231.066667pt;}
.y43{bottom:231.546667pt;}
.y1e{bottom:234.426667pt;}
.yc6{bottom:239.706667pt;}
.ydf{bottom:240.026667pt;}
.yad{bottom:245.306667pt;}
.y52{bottom:245.946667pt;}
.y89{bottom:246.106667pt;}
.y42{bottom:246.586667pt;}
.y1d{bottom:249.306667pt;}
.yde{bottom:250.586667pt;}
.yc5{bottom:252.506667pt;}
.yac{bottom:260.346667pt;}
.y51{bottom:260.826667pt;}
.y88{bottom:261.146667pt;}
.y41{bottom:261.626667pt;}
.yc4{bottom:263.226667pt;}
.y1c{bottom:264.346667pt;}
.ydd{bottom:265.786667pt;}
.yab{bottom:275.386667pt;}
.y50{bottom:275.866667pt;}
.y87{bottom:276.026667pt;}
.ydc{bottom:276.346667pt;}
.y40{bottom:276.506667pt;}
.y1b{bottom:279.386667pt;}
.yc3{bottom:288.826667pt;}
.yaa{bottom:290.266667pt;}
.y4f{bottom:290.906667pt;}
.y86{bottom:291.066667pt;}
.ydb{bottom:291.386667pt;}
.y3f{bottom:291.546667pt;}
.y1a{bottom:294.426667pt;}
.yc2{bottom:301.626667pt;}
.yda{bottom:301.946667pt;}
.ya9{bottom:305.306667pt;}
.y4e{bottom:305.946667pt;}
.y85{bottom:306.106667pt;}
.y3e{bottom:306.586667pt;}
.y19{bottom:309.306667pt;}
.yc1{bottom:316.866667pt;}
.yd9{bottom:317.186667pt;}
.ya8{bottom:320.386667pt;}
.y4d{bottom:320.866667pt;}
.y84{bottom:321.186667pt;}
.y3d{bottom:321.666667pt;}
.y18{bottom:324.386667pt;}
.yc0{bottom:327.426667pt;}
.yd8{bottom:327.746667pt;}
.ya7{bottom:335.426667pt;}
.y83{bottom:336.066667pt;}
.y3c{bottom:336.546667pt;}
.y17{bottom:339.426667pt;}
.ybf{bottom:340.226667pt;}
.yd7{bottom:342.786667pt;}
.ya6{bottom:350.306667pt;}
.y82{bottom:351.106667pt;}
.y3b{bottom:351.586667pt;}
.ybe{bottom:353.026667pt;}
.yd6{bottom:353.346667pt;}
.y16{bottom:354.466667pt;}
.ya5{bottom:365.346667pt;}
.y81{bottom:366.146667pt;}
.y3a{bottom:366.626667pt;}
.ybd{bottom:368.226667pt;}
.yd5{bottom:368.546667pt;}
.y15{bottom:369.346667pt;}
.ybc{bottom:378.786667pt;}
.yd4{bottom:379.106667pt;}
.ya4{bottom:380.386667pt;}
.y80{bottom:381.186667pt;}
.y39{bottom:381.666667pt;}
.y14{bottom:384.386667pt;}
.ybb{bottom:393.826667pt;}
.yd3{bottom:394.146667pt;}
.ya3{bottom:395.426667pt;}
.y7f{bottom:396.066667pt;}
.y38{bottom:396.546667pt;}
.y13{bottom:399.426667pt;}
.ya2{bottom:410.306667pt;}
.y7e{bottom:411.106667pt;}
.y37{bottom:411.586667pt;}
.y12{bottom:414.466667pt;}
.yd2{bottom:419.746667pt;}
.ya1{bottom:425.346667pt;}
.y7d{bottom:426.146667pt;}
.y36{bottom:426.626667pt;}
.y11{bottom:429.346667pt;}
.ya0{bottom:440.386667pt;}
.y7c{bottom:441.186667pt;}
.y35{bottom:441.666667pt;}
.y10{bottom:444.386667pt;}
.y9f{bottom:455.426667pt;}
.y7b{bottom:456.066667pt;}
.y34{bottom:456.546667pt;}
.yf{bottom:459.426667pt;}
.y9e{bottom:470.306667pt;}
.y7a{bottom:471.106667pt;}
.y97{bottom:471.586667pt;}
.yfc{bottom:473.026667pt;}
.ye{bottom:474.466667pt;}
.y9d{bottom:485.346667pt;}
.y79{bottom:486.146667pt;}
.y96{bottom:486.626667pt;}
.yfb{bottom:488.093333pt;}
.yd{bottom:489.373333pt;}
.y9c{bottom:500.413333pt;}
.y78{bottom:501.213333pt;}
.y95{bottom:501.693333pt;}
.yfa{bottom:503.133333pt;}
.yc{bottom:504.413333pt;}
.y62{bottom:505.053333pt;}
.y9b{bottom:515.453333pt;}
.y77{bottom:516.093333pt;}
.y94{bottom:516.573333pt;}
.yf9{bottom:518.013333pt;}
.y61{bottom:518.493333pt;}
.yb{bottom:519.453333pt;}
.y9a{bottom:530.333333pt;}
.y76{bottom:531.133333pt;}
.y60{bottom:532.093333pt;}
.yf8{bottom:533.053333pt;}
.ya{bottom:534.493333pt;}
.y5f{bottom:545.533333pt;}
.y75{bottom:546.173333pt;}
.y99{bottom:547.293333pt;}
.yf7{bottom:548.093333pt;}
.y9{bottom:549.373333pt;}
.y5e{bottom:558.973333pt;}
.y98{bottom:560.893333pt;}
.y74{bottom:561.213333pt;}
.yf6{bottom:563.133333pt;}
.y8{bottom:564.413333pt;}
.y5d{bottom:572.573333pt;}
.y73{bottom:576.093333pt;}
.yf5{bottom:578.013333pt;}
.y2e{bottom:579.293333pt;}
.y7{bottom:579.453333pt;}
.y72{bottom:591.133333pt;}
.y2d{bottom:592.893333pt;}
.yf4{bottom:593.053333pt;}
.y6{bottom:594.493333pt;}
.y71{bottom:606.173333pt;}
.y2c{bottom:607.453333pt;}
.yf3{bottom:608.093333pt;}
.y5{bottom:610.173333pt;}
.y70{bottom:621.213333pt;}
.yf2{bottom:623.133333pt;}
.y2b{bottom:625.373333pt;}
.y4{bottom:628.093333pt;}
.y6f{bottom:636.093333pt;}
.yf1{bottom:638.013333pt;}
.y3{bottom:645.373333pt;}
.y6e{bottom:651.133333pt;}
.yf0{bottom:653.053333pt;}
.y6d{bottom:666.213333pt;}
.yef{bottom:668.133333pt;}
.y6c{bottom:681.253333pt;}
.yee{bottom:683.173333pt;}
.y6b{bottom:696.133333pt;}
.yed{bottom:698.053333pt;}
.y6a{bottom:711.173333pt;}
.yec{bottom:713.093333pt;}
.y69{bottom:726.213333pt;}
.yeb{bottom:728.133333pt;}
.y68{bottom:741.253333pt;}
.yea{bottom:743.173333pt;}
.y2a{bottom:746.853333pt;}
.y67{bottom:756.133333pt;}
.ye9{bottom:758.053333pt;}
.y29{bottom:770.853333pt;}
.y66{bottom:771.173333pt;}
.ye8{bottom:773.093333pt;}
.y65{bottom:786.213333pt;}
.ye7{bottom:788.133333pt;}
.yba{bottom:790.373333pt;}
.y64{bottom:801.253333pt;}
.ye6{bottom:803.173333pt;}
.yb9{bottom:803.813333pt;}
.y63{bottom:816.133333pt;}
.yb8{bottom:817.413333pt;}
.y31{bottom:817.573333pt;}
.ye5{bottom:818.053333pt;}
.y30{bottom:827.973333pt;}
.y2f{bottom:838.560000pt;}
.y32{bottom:855.360000pt;}
.y1{bottom:872.800000pt;}
.h11{height:20.080313pt;}
.h10{height:20.736875pt;}
.he{height:20.896875pt;}
.hb{height:25.846250pt;}
.ha{height:25.935375pt;}
.h13{height:29.040312pt;}
.hf{height:29.856875pt;}
.h12{height:29.946000pt;}
.h9{height:32.507812pt;}
.hc{height:33.421875pt;}
.h3{height:35.975313pt;}
.h5{height:36.986875pt;}
.h6{height:37.076000pt;}
.h2{height:37.090625pt;}
.h4{height:43.343750pt;}
.h8{height:44.562500pt;}
.hd{height:44.687500pt;}
.h7{height:59.268125pt;}
.h0{height:907.040000pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w2{width:604.799991pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.x1{left:51.839991pt;}
.x6{left:60.511991pt;}
.xe{left:70.751991pt;}
.x3{left:195.746658pt;}
.x4{left:207.426658pt;}
.x5{left:214.626658pt;}
.xb{left:311.133324pt;}
.xa{left:330.013324pt;}
.xc{left:343.133324pt;}
.x7{left:425.893324pt;}
.xd{left:429.093324pt;}
.x9{left:432.453324pt;}
.x2{left:436.933324pt;}
.x8{left:482.373324pt;}
}




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