
    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_da89fa8ce9476806b67f826d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e181f65d6ed7db2cdb82b7b9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8a323e2663aafcae7bad8b2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_90de07b073c75013b3ed8b83.woff')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_266deec664cce63748579580.woff')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_97b6a37f63d43c915f9c546b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.192960px;}
.ls4{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.lse{letter-spacing:12.545280px;}
.lsc{letter-spacing:48.360000px;}
.lsb{letter-spacing:51.960000px;}
.lsd{letter-spacing:51.984000px;}
.lsa{letter-spacing:62.784000px;}
.ls9{letter-spacing:73.584000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-120.240000px;}
.ws5{word-spacing:-23.567040px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.482000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.434240px;}
._1{width:1.096320px;}
._9{width:2.274240px;}
._5{width:3.504000px;}
._6{width:4.536000px;}
._11{width:5.976000px;}
._c{width:7.272000px;}
._d{width:8.424000px;}
._8{width:10.368000px;}
._3{width:11.543040px;}
._4{width:13.106160px;}
._1a{width:14.318160px;}
._f{width:15.396480px;}
._7{width:16.560000px;}
._12{width:19.296000px;}
._17{width:20.304000px;}
._a{width:21.888000px;}
._b{width:23.112000px;}
._15{width:24.768000px;}
._16{width:25.776000px;}
._18{width:26.856000px;}
._10{width:28.728000px;}
._13{width:30.096000px;}
._14{width:31.519680px;}
._19{width:33.696000px;}
._2{width:393.480000px;}
._e{width:1070.256000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.916000px;}
.y14{bottom:5.940000px;}
.yf{bottom:11.376000px;}
.yd{bottom:19.836000px;}
.y13{bottom:41.430000px;}
.y10{bottom:43.740000px;}
.yc{bottom:68.580000px;}
.y12{bottom:77.070000px;}
.y3a{bottom:94.896000px;}
.ya{bottom:111.996000px;}
.y90{bottom:138.096000px;}
.y63{bottom:139.356000px;}
.y62{bottom:144.576000px;}
.y108{bottom:152.130000px;}
.y36{bottom:153.930000px;}
.yb6{bottom:154.470000px;}
.y61{bottom:156.630000px;}
.yce{bottom:162.210000px;}
.y8f{bottom:169.050000px;}
.y107{bottom:172.830000px;}
.y79{bottom:174.090000px;}
.y35{bottom:174.630000px;}
.ycd{bottom:182.910000px;}
.ya8{bottom:184.890000px;}
.yb5{bottom:185.430000px;}
.y106{bottom:193.530000px;}
.ycc{bottom:203.610000px;}
.y78{bottom:205.050000px;}
.y34{bottom:213.330000px;}
.y105{bottom:214.230000px;}
.ye0{bottom:215.670000px;}
.ya7{bottom:215.850000px;}
.yb4{bottom:216.570000px;}
.y8e{bottom:218.190000px;}
.y104{bottom:234.930000px;}
.y77{bottom:236.190000px;}
.ycb{bottom:242.310000px;}
.yf4{bottom:246.450000px;}
.ydf{bottom:246.630000px;}
.yb3{bottom:247.530000px;}
.y8d{bottom:249.150000px;}
.y33{bottom:251.850000px;}
.y103{bottom:255.630000px;}
.ya6{bottom:268.050000px;}
.y32{bottom:272.550000px;}
.y60{bottom:274.890000px;}
.y102{bottom:276.330000px;}
.yf3{bottom:277.410000px;}
.yde{bottom:277.770000px;}
.yb2{bottom:278.670000px;}
.y31{bottom:293.250000px;}
.yca{bottom:294.330000px;}
.y5f{bottom:295.590000px;}
.y101{bottom:297.030000px;}
.y8c{bottom:298.290000px;}
.ya5{bottom:299.010000px;}
.ydd{bottom:308.730000px;}
.yb1{bottom:309.630000px;}
.y30{bottom:313.950000px;}
.y76{bottom:314.850000px;}
.yf2{bottom:319.170000px;}
.yc9{bottom:325.470000px;}
.y8b{bottom:329.250000px;}
.y100{bottom:329.790000px;}
.ya4{bottom:330.150000px;}
.y2f{bottom:334.650000px;}
.y5e{bottom:335.550000px;}
.yb0{bottom:340.815000px;}
.y75{bottom:346.035000px;}
.yc8{bottom:356.475000px;}
.y8a{bottom:360.435000px;}
.ydc{bottom:360.795000px;}
.ya3{bottom:361.155000px;}
.yf1{bottom:371.235000px;}
.yaf{bottom:371.775000px;}
.y2e{bottom:373.395000px;}
.y5d{bottom:374.295000px;}
.yff{bottom:381.855000px;}
.ydb{bottom:391.935000px;}
.ya2{bottom:392.115000px;}
.y2d{bottom:394.095000px;}
.y5c{bottom:394.995000px;}
.yc7{bottom:398.235000px;}
.yf0{bottom:402.195000px;}
.y89{bottom:409.395000px;}
.yfe{bottom:412.995000px;}
.y2c{bottom:414.795000px;}
.y5b{bottom:415.695000px;}
.yda{bottom:422.895000px;}
.yae{bottom:423.795000px;}
.y74{bottom:426.135000px;}
.yef{bottom:433.155000px;}
.ya1{bottom:433.875000px;}
.y2b{bottom:435.495000px;}
.y5a{bottom:436.395000px;}
.y88{bottom:440.535000px;}
.yfd{bottom:443.955000px;}
.yc6{bottom:450.255000px;}
.yad{bottom:454.935000px;}
.y59{bottom:457.095000px;}
.y87{bottom:471.495000px;}
.y2a{bottom:474.195000px;}
.yd9{bottom:474.915000px;}
.y58{bottom:477.795000px;}
.yc5{bottom:481.215000px;}
.ya0{bottom:485.895000px;}
.y29{bottom:494.895000px;}
.yfc{bottom:495.975000px;}
.y57{bottom:498.495000px;}
.y73{bottom:506.235000px;}
.yc4{bottom:512.355000px;}
.y28{bottom:515.595000px;}
.y9f{bottom:517.035000px;}
.y56{bottom:519.195000px;}
.y86{bottom:520.635000px;}
.yd8{bottom:527.115000px;}
.y27{bottom:536.295000px;}
.y72{bottom:537.195000px;}
.yac{bottom:537.915000px;}
.y55{bottom:539.895000px;}
.yc3{bottom:543.315000px;}
.y9e{bottom:547.995000px;}
.y85{bottom:551.595000px;}
.yd7{bottom:558.075000px;}
.y71{bottom:568.335000px;}
.yab{bottom:569.055000px;}
.y26{bottom:574.995000px;}
.y54{bottom:578.595000px;}
.yfb{bottom:579.135000px;}
.y84{bottom:582.735000px;}
.yc2{bottom:585.075000px;}
.yee{bottom:589.035000px;}
.y25{bottom:595.695000px;}
.y53{bottom:599.295000px;}
.y9d{bottom:600.015000px;}
.yd6{bottom:610.125000px;}
.y83{bottom:613.725000px;}
.y24{bottom:616.425000px;}
.y52{bottom:620.025000px;}
.y70{bottom:630.465000px;}
.yed{bottom:630.825000px;}
.y9c{bottom:631.185000px;}
.y23{bottom:637.125000px;}
.y51{bottom:640.725000px;}
.yfa{bottom:641.265000px;}
.yaa{bottom:652.245000px;}
.y82{bottom:652.425000px;}
.y50{bottom:661.425000px;}
.yd5{bottom:662.145000px;}
.yc1{bottom:668.265000px;}
.y22{bottom:678.525000px;}
.y4f{bottom:682.125000px;}
.yec{bottom:682.845000px;}
.y9b{bottom:683.205000px;}
.y6f{bottom:692.565000px;}
.yd4{bottom:693.285000px;}
.y21{bottom:699.225000px;}
.y4e{bottom:702.825000px;}
.yeb{bottom:713.985000px;}
.y9a{bottom:714.345000px;}
.y20{bottom:719.925000px;}
.y4d{bottom:723.525000px;}
.yd3{bottom:724.245000px;}
.yc0{bottom:730.185000px;}
.y1f{bottom:740.625000px;}
.y4c{bottom:744.225000px;}
.yea{bottom:744.945000px;}
.y99{bottom:745.305000px;}
.y6e{bottom:754.665000px;}
.yf9{bottom:755.385000px;}
.y1e{bottom:761.325000px;}
.y4b{bottom:764.925000px;}
.ya9{bottom:766.365000px;}
.ybf{bottom:771.945000px;}
.yd2{bottom:776.445000px;}
.y4a{bottom:785.625000px;}
.ye9{bottom:786.705000px;}
.y1d{bottom:791.025000px;}
.y98{bottom:797.325000px;}
.yf8{bottom:807.405000px;}
.y1c{bottom:811.725000px;}
.y6d{bottom:816.765000px;}
.ybe{bottom:824.145000px;}
.y49{bottom:824.325000px;}
.y97{bottom:828.465000px;}
.y1b{bottom:831.705000px;}
.ye8{bottom:838.725000px;}
.y48{bottom:845.025000px;}
.y6c{bottom:847.725000px;}
.y1a{bottom:850.965000px;}
.ybd{bottom:855.105000px;}
.y81{bottom:856.725000px;}
.yd1{bottom:859.425000px;}
.y47{bottom:865.725000px;}
.ye7{bottom:869.865000px;}
.y19{bottom:878.550000px;}
.y6b{bottom:878.910000px;}
.y96{bottom:880.530000px;}
.ybc{bottom:886.290000px;}
.y46{bottom:886.470000px;}
.yd0{bottom:890.430000px;}
.yf7{bottom:890.610000px;}
.ye6{bottom:900.870000px;}
.y80{bottom:905.910000px;}
.y45{bottom:907.170000px;}
.y6a{bottom:909.870000px;}
.y95{bottom:911.490000px;}
.ybb{bottom:917.250000px;}
.y18{bottom:917.610000px;}
.yf6{bottom:921.570000px;}
.y43{bottom:927.870000px;}
.y44{bottom:934.710000px;}
.y7f{bottom:936.870000px;}
.y94{bottom:942.630000px;}
.yba{bottom:948.210000px;}
.y42{bottom:948.570000px;}
.ye5{bottom:952.890000px;}
.y17{bottom:953.790000px;}
.y69{bottom:959.010000px;}
.y7e{bottom:968.010000px;}
.yf5{bottom:973.590000px;}
.y16{bottom:978.630000px;}
.y41{bottom:987.270000px;}
.y68{bottom:989.970000px;}
.y93{bottom:994.650000px;}
.y7d{bottom:998.970000px;}
.yb9{bottom:1000.410000px;}
.ye4{bottom:1004.910000px;}
.y15{bottom:1006.170000px;}
.y40{bottom:1007.970000px;}
.y67{bottom:1021.110000px;}
.y92{bottom:1025.610000px;}
.y3f{bottom:1028.670000px;}
.y7c{bottom:1030.110000px;}
.y9{bottom:1031.730000px;}
.ye3{bottom:1036.050000px;}
.yb8{bottom:1040.370000px;}
.y8{bottom:1049.010000px;}
.y3e{bottom:1049.370000px;}
.y91{bottom:1056.750000px;}
.y66{bottom:1059.810000px;}
.y7{bottom:1066.290000px;}
.ye2{bottom:1067.010000px;}
.y7b{bottom:1068.810000px;}
.y3d{bottom:1070.070000px;}
.yb7{bottom:1071.510000px;}
.y65{bottom:1080.510000px;}
.y6{bottom:1083.570000px;}
.ycf{bottom:1087.710000px;}
.ye1{bottom:1098.150000px;}
.y64{bottom:1101.210000px;}
.y11{bottom:1103.370000px;}
.y5{bottom:1104.450000px;}
.y7a{bottom:1108.770000px;}
.y3c{bottom:1110.210000px;}
.y4{bottom:1128.210000px;}
.y3b{bottom:1139.940000px;}
.y3{bottom:1152.000000px;}
.y39{bottom:1167.120000px;}
.y2{bottom:1175.580000px;}
.y38{bottom:1181.160000px;}
.y1{bottom:1199.340000px;}
.y37{bottom:1202.040000px;}
.h4{height:8.639850px;}
.he{height:8.640000px;}
.hf{height:15.516000px;}
.h12{height:27.147656px;}
.h6{height:32.616000px;}
.h11{height:33.683203px;}
.h5{height:37.705078px;}
.h7{height:39.023438px;}
.h3{height:41.726953px;}
.hc{height:42.164648px;}
.hd{height:50.273438px;}
.h2{height:50.800781px;}
.h10{height:52.417969px;}
.hb{height:59.436914px;}
.ha{height:67.565039px;}
.h9{height:95.874961px;}
.h8{height:106.596000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:182.010000px;}
.w9{width:347.115000px;}
.w7{width:348.015000px;}
.w6{width:349.590000px;}
.w8{width:350.490000px;}
.w3{width:498.495000px;}
.w5{width:566.025000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.xf{left:97.776000px;}
.x1{left:106.235987px;}
.xb{left:108.035987px;}
.x15{left:111.095987px;}
.xe{left:119.915987px;}
.x5{left:129.594000px;}
.x17{left:137.195987px;}
.x18{left:138.275987px;}
.x7{left:146.385000px;}
.x16{left:148.715987px;}
.xa{left:231.689987px;}
.xd{left:237.989987px;}
.x8{left:248.790000px;}
.x6{left:308.919000px;}
.x11{left:311.475000px;}
.x14{left:322.274987px;}
.xc{left:375.734987px;}
.x2{left:446.474987px;}
.x10{left:448.275000px;}
.x4{left:604.725000px;}
.x12{left:707.729973px;}
.x13{left:713.849987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.171520pt;}
.ls4{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.lse{letter-spacing:11.151360pt;}
.lsc{letter-spacing:42.986667pt;}
.lsb{letter-spacing:46.186667pt;}
.lsd{letter-spacing:46.208000pt;}
.lsa{letter-spacing:55.808000pt;}
.ls9{letter-spacing:65.408000pt;}
.ws4{word-spacing:-106.880000pt;}
.ws5{word-spacing:-20.948480pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.984000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.274880pt;}
._1{width:0.974507pt;}
._9{width:2.021547pt;}
._5{width:3.114667pt;}
._6{width:4.032000pt;}
._11{width:5.312000pt;}
._c{width:6.464000pt;}
._d{width:7.488000pt;}
._8{width:9.216000pt;}
._3{width:10.260480pt;}
._4{width:11.649920pt;}
._1a{width:12.727253pt;}
._f{width:13.685760pt;}
._7{width:14.720000pt;}
._12{width:17.152000pt;}
._17{width:18.048000pt;}
._a{width:19.456000pt;}
._b{width:20.544000pt;}
._15{width:22.016000pt;}
._16{width:22.912000pt;}
._18{width:23.872000pt;}
._10{width:25.536000pt;}
._13{width:26.752000pt;}
._14{width:28.017493pt;}
._19{width:29.952000pt;}
._2{width:349.760000pt;}
._e{width:951.338667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.592000pt;}
.y14{bottom:5.280000pt;}
.yf{bottom:10.112000pt;}
.yd{bottom:17.632000pt;}
.y13{bottom:36.826667pt;}
.y10{bottom:38.880000pt;}
.yc{bottom:60.960000pt;}
.y12{bottom:68.506667pt;}
.y3a{bottom:84.352000pt;}
.ya{bottom:99.552000pt;}
.y90{bottom:122.752000pt;}
.y63{bottom:123.872000pt;}
.y62{bottom:128.512000pt;}
.y108{bottom:135.226667pt;}
.y36{bottom:136.826667pt;}
.yb6{bottom:137.306667pt;}
.y61{bottom:139.226667pt;}
.yce{bottom:144.186667pt;}
.y8f{bottom:150.266667pt;}
.y107{bottom:153.626667pt;}
.y79{bottom:154.746667pt;}
.y35{bottom:155.226667pt;}
.ycd{bottom:162.586667pt;}
.ya8{bottom:164.346667pt;}
.yb5{bottom:164.826667pt;}
.y106{bottom:172.026667pt;}
.ycc{bottom:180.986667pt;}
.y78{bottom:182.266667pt;}
.y34{bottom:189.626667pt;}
.y105{bottom:190.426667pt;}
.ye0{bottom:191.706667pt;}
.ya7{bottom:191.866667pt;}
.yb4{bottom:192.506667pt;}
.y8e{bottom:193.946667pt;}
.y104{bottom:208.826667pt;}
.y77{bottom:209.946667pt;}
.ycb{bottom:215.386667pt;}
.yf4{bottom:219.066667pt;}
.ydf{bottom:219.226667pt;}
.yb3{bottom:220.026667pt;}
.y8d{bottom:221.466667pt;}
.y33{bottom:223.866667pt;}
.y103{bottom:227.226667pt;}
.ya6{bottom:238.266667pt;}
.y32{bottom:242.266667pt;}
.y60{bottom:244.346667pt;}
.y102{bottom:245.626667pt;}
.yf3{bottom:246.586667pt;}
.yde{bottom:246.906667pt;}
.yb2{bottom:247.706667pt;}
.y31{bottom:260.666667pt;}
.yca{bottom:261.626667pt;}
.y5f{bottom:262.746667pt;}
.y101{bottom:264.026667pt;}
.y8c{bottom:265.146667pt;}
.ya5{bottom:265.786667pt;}
.ydd{bottom:274.426667pt;}
.yb1{bottom:275.226667pt;}
.y30{bottom:279.066667pt;}
.y76{bottom:279.866667pt;}
.yf2{bottom:283.706667pt;}
.yc9{bottom:289.306667pt;}
.y8b{bottom:292.666667pt;}
.y100{bottom:293.146667pt;}
.ya4{bottom:293.466667pt;}
.y2f{bottom:297.466667pt;}
.y5e{bottom:298.266667pt;}
.yb0{bottom:302.946667pt;}
.y75{bottom:307.586667pt;}
.yc8{bottom:316.866667pt;}
.y8a{bottom:320.386667pt;}
.ydc{bottom:320.706667pt;}
.ya3{bottom:321.026667pt;}
.yf1{bottom:329.986667pt;}
.yaf{bottom:330.466667pt;}
.y2e{bottom:331.906667pt;}
.y5d{bottom:332.706667pt;}
.yff{bottom:339.426667pt;}
.ydb{bottom:348.386667pt;}
.ya2{bottom:348.546667pt;}
.y2d{bottom:350.306667pt;}
.y5c{bottom:351.106667pt;}
.yc7{bottom:353.986667pt;}
.yf0{bottom:357.506667pt;}
.y89{bottom:363.906667pt;}
.yfe{bottom:367.106667pt;}
.y2c{bottom:368.706667pt;}
.y5b{bottom:369.506667pt;}
.yda{bottom:375.906667pt;}
.yae{bottom:376.706667pt;}
.y74{bottom:378.786667pt;}
.yef{bottom:385.026667pt;}
.ya1{bottom:385.666667pt;}
.y2b{bottom:387.106667pt;}
.y5a{bottom:387.906667pt;}
.y88{bottom:391.586667pt;}
.yfd{bottom:394.626667pt;}
.yc6{bottom:400.226667pt;}
.yad{bottom:404.386667pt;}
.y59{bottom:406.306667pt;}
.y87{bottom:419.106667pt;}
.y2a{bottom:421.506667pt;}
.yd9{bottom:422.146667pt;}
.y58{bottom:424.706667pt;}
.yc5{bottom:427.746667pt;}
.ya0{bottom:431.906667pt;}
.y29{bottom:439.906667pt;}
.yfc{bottom:440.866667pt;}
.y57{bottom:443.106667pt;}
.y73{bottom:449.986667pt;}
.yc4{bottom:455.426667pt;}
.y28{bottom:458.306667pt;}
.y9f{bottom:459.586667pt;}
.y56{bottom:461.506667pt;}
.y86{bottom:462.786667pt;}
.yd8{bottom:468.546667pt;}
.y27{bottom:476.706667pt;}
.y72{bottom:477.506667pt;}
.yac{bottom:478.146667pt;}
.y55{bottom:479.906667pt;}
.yc3{bottom:482.946667pt;}
.y9e{bottom:487.106667pt;}
.y85{bottom:490.306667pt;}
.yd7{bottom:496.066667pt;}
.y71{bottom:505.186667pt;}
.yab{bottom:505.826667pt;}
.y26{bottom:511.106667pt;}
.y54{bottom:514.306667pt;}
.yfb{bottom:514.786667pt;}
.y84{bottom:517.986667pt;}
.yc2{bottom:520.066667pt;}
.yee{bottom:523.586667pt;}
.y25{bottom:529.506667pt;}
.y53{bottom:532.706667pt;}
.y9d{bottom:533.346667pt;}
.yd6{bottom:542.333333pt;}
.y83{bottom:545.533333pt;}
.y24{bottom:547.933333pt;}
.y52{bottom:551.133333pt;}
.y70{bottom:560.413333pt;}
.yed{bottom:560.733333pt;}
.y9c{bottom:561.053333pt;}
.y23{bottom:566.333333pt;}
.y51{bottom:569.533333pt;}
.yfa{bottom:570.013333pt;}
.yaa{bottom:579.773333pt;}
.y82{bottom:579.933333pt;}
.y50{bottom:587.933333pt;}
.yd5{bottom:588.573333pt;}
.yc1{bottom:594.013333pt;}
.y22{bottom:603.133333pt;}
.y4f{bottom:606.333333pt;}
.yec{bottom:606.973333pt;}
.y9b{bottom:607.293333pt;}
.y6f{bottom:615.613333pt;}
.yd4{bottom:616.253333pt;}
.y21{bottom:621.533333pt;}
.y4e{bottom:624.733333pt;}
.yeb{bottom:634.653333pt;}
.y9a{bottom:634.973333pt;}
.y20{bottom:639.933333pt;}
.y4d{bottom:643.133333pt;}
.yd3{bottom:643.773333pt;}
.yc0{bottom:649.053333pt;}
.y1f{bottom:658.333333pt;}
.y4c{bottom:661.533333pt;}
.yea{bottom:662.173333pt;}
.y99{bottom:662.493333pt;}
.y6e{bottom:670.813333pt;}
.yf9{bottom:671.453333pt;}
.y1e{bottom:676.733333pt;}
.y4b{bottom:679.933333pt;}
.ya9{bottom:681.213333pt;}
.ybf{bottom:686.173333pt;}
.yd2{bottom:690.173333pt;}
.y4a{bottom:698.333333pt;}
.ye9{bottom:699.293333pt;}
.y1d{bottom:703.133333pt;}
.y98{bottom:708.733333pt;}
.yf8{bottom:717.693333pt;}
.y1c{bottom:721.533333pt;}
.y6d{bottom:726.013333pt;}
.ybe{bottom:732.573333pt;}
.y49{bottom:732.733333pt;}
.y97{bottom:736.413333pt;}
.y1b{bottom:739.293333pt;}
.ye8{bottom:745.533333pt;}
.y48{bottom:751.133333pt;}
.y6c{bottom:753.533333pt;}
.y1a{bottom:756.413333pt;}
.ybd{bottom:760.093333pt;}
.y81{bottom:761.533333pt;}
.yd1{bottom:763.933333pt;}
.y47{bottom:769.533333pt;}
.ye7{bottom:773.213333pt;}
.y19{bottom:780.933333pt;}
.y6b{bottom:781.253333pt;}
.y96{bottom:782.693333pt;}
.ybc{bottom:787.813333pt;}
.y46{bottom:787.973333pt;}
.yd0{bottom:791.493333pt;}
.yf7{bottom:791.653333pt;}
.ye6{bottom:800.773333pt;}
.y80{bottom:805.253333pt;}
.y45{bottom:806.373333pt;}
.y6a{bottom:808.773333pt;}
.y95{bottom:810.213333pt;}
.ybb{bottom:815.333333pt;}
.y18{bottom:815.653333pt;}
.yf6{bottom:819.173333pt;}
.y43{bottom:824.773333pt;}
.y44{bottom:830.853333pt;}
.y7f{bottom:832.773333pt;}
.y94{bottom:837.893333pt;}
.yba{bottom:842.853333pt;}
.y42{bottom:843.173333pt;}
.ye5{bottom:847.013333pt;}
.y17{bottom:847.813333pt;}
.y69{bottom:852.453333pt;}
.y7e{bottom:860.453333pt;}
.yf5{bottom:865.413333pt;}
.y16{bottom:869.893333pt;}
.y41{bottom:877.573333pt;}
.y68{bottom:879.973333pt;}
.y93{bottom:884.133333pt;}
.y7d{bottom:887.973333pt;}
.yb9{bottom:889.253333pt;}
.ye4{bottom:893.253333pt;}
.y15{bottom:894.373333pt;}
.y40{bottom:895.973333pt;}
.y67{bottom:907.653333pt;}
.y92{bottom:911.653333pt;}
.y3f{bottom:914.373333pt;}
.y7c{bottom:915.653333pt;}
.y9{bottom:917.093333pt;}
.ye3{bottom:920.933333pt;}
.yb8{bottom:924.773333pt;}
.y8{bottom:932.453333pt;}
.y3e{bottom:932.773333pt;}
.y91{bottom:939.333333pt;}
.y66{bottom:942.053333pt;}
.y7{bottom:947.813333pt;}
.ye2{bottom:948.453333pt;}
.y7b{bottom:950.053333pt;}
.y3d{bottom:951.173333pt;}
.yb7{bottom:952.453333pt;}
.y65{bottom:960.453333pt;}
.y6{bottom:963.173333pt;}
.ycf{bottom:966.853333pt;}
.ye1{bottom:976.133333pt;}
.y64{bottom:978.853333pt;}
.y11{bottom:980.773333pt;}
.y5{bottom:981.733333pt;}
.y7a{bottom:985.573333pt;}
.y3c{bottom:986.853333pt;}
.y4{bottom:1002.853333pt;}
.y3b{bottom:1013.280000pt;}
.y3{bottom:1024.000000pt;}
.y39{bottom:1037.440000pt;}
.y2{bottom:1044.960000pt;}
.y38{bottom:1049.920000pt;}
.y1{bottom:1066.080000pt;}
.y37{bottom:1068.480000pt;}
.h4{height:7.679867pt;}
.he{height:7.680000pt;}
.hf{height:13.792000pt;}
.h12{height:24.131250pt;}
.h6{height:28.992000pt;}
.h11{height:29.940625pt;}
.h5{height:33.515625pt;}
.h7{height:34.687500pt;}
.h3{height:37.090625pt;}
.hc{height:37.479688pt;}
.hd{height:44.687500pt;}
.h2{height:45.156250pt;}
.h10{height:46.593750pt;}
.hb{height:52.832812pt;}
.ha{height:60.057813pt;}
.h9{height:85.222187pt;}
.h8{height:94.752000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:161.786667pt;}
.w9{width:308.546667pt;}
.w7{width:309.346667pt;}
.w6{width:310.746667pt;}
.w8{width:311.546667pt;}
.w3{width:443.106667pt;}
.w5{width:503.133333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.xf{left:86.912000pt;}
.x1{left:94.431988pt;}
.xb{left:96.031988pt;}
.x15{left:98.751988pt;}
.xe{left:106.591988pt;}
.x5{left:115.194667pt;}
.x17{left:121.951988pt;}
.x18{left:122.911988pt;}
.x7{left:130.120000pt;}
.x16{left:132.191988pt;}
.xa{left:205.946655pt;}
.xd{left:211.546655pt;}
.x8{left:221.146667pt;}
.x6{left:274.594667pt;}
.x11{left:276.866667pt;}
.x14{left:286.466655pt;}
.xc{left:333.986655pt;}
.x2{left:396.866655pt;}
.x10{left:398.466667pt;}
.x4{left:537.533333pt;}
.x12{left:629.093310pt;}
.x13{left:634.533322pt;}
}




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