
    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_6b7edae88128b292b22a8bed.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_3881b11cdacc3a7b86aea268.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0c76170be0176ef6b7f7d65d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_9ba59997a662b09377859e96.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_5c80c990a49029be5ebe665f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_d12488336d99e4cd5e81346d.woff2')format("woff");}.ff8{font-family:ff8;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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-4.782000px;}
.lsa{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.666000px;}
.ls8{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.ls11{letter-spacing:46.170720px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.606000px;}
.wsc{word-spacing:-15.552000px;}
.ws8{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wse{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.093600px;}
.ws10{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.274000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1650.349440px;}
._9{margin-left:-1614.231840px;}
._4{margin-left:-1170.942000px;}
._5{margin-left:-1150.191360px;}
._6{margin-left:-49.680000px;}
._b{margin-left:-9.192960px;}
._54{margin-left:-8.143200px;}
._22{margin-left:-6.792000px;}
._a{margin-left:-5.459280px;}
._8{margin-left:-3.709440px;}
._7{margin-left:-2.450880px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._10{width:2.808720px;}
._11{width:4.396560px;}
._13{width:5.448240px;}
._c{width:6.905520px;}
._12{width:8.545680px;}
._f{width:10.099440px;}
._d{width:11.354400px;}
._e{width:12.743040px;}
._18{width:13.744800px;}
._1f{width:16.506960px;}
._1c{width:17.677200px;}
._15{width:18.966720px;}
._14{width:20.378160px;}
._16{width:22.230720px;}
._17{width:23.322480px;}
._19{width:25.296480px;}
._24{width:26.333280px;}
._28{width:27.630000px;}
._20{width:28.785600px;}
._33{width:29.958480px;}
._1b{width:31.075200px;}
._23{width:32.449680px;}
._1a{width:33.824160px;}
._1d{width:35.005440px;}
._21{width:36.274320px;}
._26{width:37.634400px;}
._2e{width:38.903760px;}
._30{width:40.338000px;}
._3e{width:41.413680px;}
._3d{width:43.206480px;}
._3a{width:44.265600px;}
._2b{width:45.955440px;}
._31{width:47.602800px;}
._27{width:48.883680px;}
._2a{width:50.138640px;}
._3c{width:51.319440px;}
._36{width:52.845120px;}
._1e{width:54.291600px;}
._29{width:55.786320px;}
._40{width:56.897520px;}
._42{width:58.564800px;}
._37{width:59.623920px;}
._38{width:60.639120px;}
._50{width:61.672320px;}
._2c{width:62.688240px;}
._2d{width:63.791280px;}
._44{width:65.589840px;}
._3f{width:66.811680px;}
._35{width:68.946480px;}
._34{width:70.337520px;}
._25{width:72.236880px;}
._3b{width:73.445040px;}
._2f{width:75.417120px;}
._43{width:77.209920px;}
._41{width:78.464880px;}
._4a{width:80.616240px;}
._4e{width:84.515040px;}
._48{width:85.867920px;}
._49{width:86.880960px;}
._57{width:95.310000px;}
._56{width:96.316560px;}
._45{width:103.623840px;}
._4b{width:108.344880px;}
._4f{width:109.607760px;}
._46{width:113.065920px;}
._55{width:114.729840px;}
._47{width:116.472240px;}
._53{width:121.544640px;}
._52{width:123.068640px;}
._4d{width:143.244720px;}
._4c{width:150.356160px;}
._51{width:189.336720px;}
._39{width:423.100800px;}
._32{width:1003.830960px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.ya{bottom:11.196000px;}
.y9{bottom:11.916000px;}
.yb{bottom:37.080000px;}
.y6{bottom:54.180000px;}
.y3c{bottom:81.036000px;}
.y87{bottom:83.916000px;}
.y77{bottom:92.916000px;}
.y3b{bottom:100.836000px;}
.y86{bottom:103.716000px;}
.y76{bottom:112.716000px;}
.y3a{bottom:120.636000px;}
.y85{bottom:123.696000px;}
.y75{bottom:132.696000px;}
.y39{bottom:140.616000px;}
.y84{bottom:143.496000px;}
.y74{bottom:152.490000px;}
.y38{bottom:160.410000px;}
.y89{bottom:162.930000px;}
.y83{bottom:163.290000px;}
.y73{bottom:172.290000px;}
.y37{bottom:180.210000px;}
.y82{bottom:183.090000px;}
.y72{bottom:192.090000px;}
.y36{bottom:200.010000px;}
.y81{bottom:202.890000px;}
.y71{bottom:211.890000px;}
.y35{bottom:219.810000px;}
.y80{bottom:222.870000px;}
.y70{bottom:231.870000px;}
.y34{bottom:239.790000px;}
.y7f{bottom:242.670000px;}
.y6f{bottom:251.670000px;}
.y33{bottom:259.590000px;}
.y7e{bottom:262.470000px;}
.y6e{bottom:271.470000px;}
.y32{bottom:279.390000px;}
.y7d{bottom:282.270000px;}
.y6d{bottom:291.270000px;}
.y31{bottom:299.190000px;}
.yb2{bottom:301.710000px;}
.y7c{bottom:302.070000px;}
.y6c{bottom:311.070000px;}
.y30{bottom:318.990000px;}
.y7b{bottom:322.050000px;}
.y6b{bottom:331.095000px;}
.y2f{bottom:339.015000px;}
.y7a{bottom:341.895000px;}
.y6a{bottom:350.895000px;}
.y2e{bottom:358.815000px;}
.y79{bottom:361.695000px;}
.y69{bottom:370.695000px;}
.y2d{bottom:378.615000px;}
.y78{bottom:381.135000px;}
.yaf{bottom:381.495000px;}
.y68{bottom:390.135000px;}
.y88{bottom:390.495000px;}
.y2c{bottom:398.415000px;}
.yae{bottom:401.295000px;}
.y67{bottom:410.295000px;}
.y2b{bottom:418.215000px;}
.yad{bottom:421.275000px;}
.y66{bottom:430.275000px;}
.y2a{bottom:438.195000px;}
.yac{bottom:441.075000px;}
.y65{bottom:450.075000px;}
.y29{bottom:457.995000px;}
.yab{bottom:460.875000px;}
.y64{bottom:469.875000px;}
.y28{bottom:477.435000px;}
.y3e{bottom:477.795000px;}
.yaa{bottom:480.675000px;}
.y63{bottom:489.675000px;}
.y27{bottom:497.235000px;}
.y3d{bottom:497.595000px;}
.ya9{bottom:500.475000px;}
.y62{bottom:509.475000px;}
.y26{bottom:517.395000px;}
.ya8{bottom:520.455000px;}
.y61{bottom:529.455000px;}
.y25{bottom:537.375000px;}
.ya7{bottom:540.255000px;}
.y60{bottom:549.255000px;}
.y24{bottom:559.335000px;}
.ya6{bottom:560.055000px;}
.y5f{bottom:569.055000px;}
.y23{bottom:579.315000px;}
.yb1{bottom:579.495000px;}
.ya5{bottom:579.855000px;}
.y5e{bottom:588.855000px;}
.y22{bottom:599.145000px;}
.ya4{bottom:599.685000px;}
.yb5{bottom:608.325000px;}
.y5d{bottom:608.685000px;}
.y21{bottom:618.945000px;}
.ya3{bottom:619.665000px;}
.y5c{bottom:628.665000px;}
.y20{bottom:638.745000px;}
.ya2{bottom:639.465000px;}
.y5b{bottom:648.465000px;}
.y1f{bottom:658.545000px;}
.ya1{bottom:659.265000px;}
.y5a{bottom:668.265000px;}
.y1e{bottom:678.525000px;}
.ya0{bottom:679.065000px;}
.yb6{bottom:687.705000px;}
.y59{bottom:688.065000px;}
.y1d{bottom:698.325000px;}
.y9f{bottom:698.865000px;}
.y58{bottom:707.865000px;}
.y1c{bottom:718.125000px;}
.y9e{bottom:718.845000px;}
.y57{bottom:727.845000px;}
.y1b{bottom:737.925000px;}
.yb4{bottom:738.285000px;}
.y9d{bottom:738.645000px;}
.y56{bottom:747.645000px;}
.y1a{bottom:757.725000px;}
.y9c{bottom:758.445000px;}
.y55{bottom:767.445000px;}
.y19{bottom:777.705000px;}
.y9b{bottom:778.245000px;}
.y54{bottom:787.245000px;}
.y18{bottom:797.505000px;}
.y9a{bottom:798.045000px;}
.y53{bottom:807.045000px;}
.y17{bottom:817.305000px;}
.y99{bottom:818.025000px;}
.y52{bottom:827.025000px;}
.y16{bottom:837.105000px;}
.y98{bottom:837.825000px;}
.y51{bottom:846.825000px;}
.y15{bottom:856.905000px;}
.y97{bottom:857.625000px;}
.y50{bottom:866.670000px;}
.y14{bottom:876.930000px;}
.y96{bottom:877.470000px;}
.y4f{bottom:886.470000px;}
.y13{bottom:896.730000px;}
.y95{bottom:897.270000px;}
.y4e{bottom:906.270000px;}
.y94{bottom:917.250000px;}
.y12{bottom:917.430000px;}
.y4d{bottom:926.250000px;}
.y93{bottom:937.050000px;}
.y11{bottom:939.930000px;}
.y4c{bottom:946.050000px;}
.y92{bottom:956.850000px;}
.y10{bottom:959.730000px;}
.y4b{bottom:965.850000px;}
.yf{bottom:974.670000px;}
.y91{bottom:976.650000px;}
.y4a{bottom:985.650000px;}
.ye{bottom:994.650000px;}
.y90{bottom:996.450000px;}
.y49{bottom:1005.450000px;}
.yd{bottom:1015.170000px;}
.yb0{bottom:1016.070000px;}
.y8f{bottom:1016.430000px;}
.y48{bottom:1025.430000px;}
.y8e{bottom:1036.230000px;}
.y47{bottom:1045.230000px;}
.yc{bottom:1047.030000px;}
.y8d{bottom:1056.030000px;}
.y46{bottom:1065.030000px;}
.yb3{bottom:1075.470000px;}
.y8c{bottom:1075.830000px;}
.y5{bottom:1076.190000px;}
.y45{bottom:1084.830000px;}
.y8b{bottom:1095.630000px;}
.y44{bottom:1104.630000px;}
.y4{bottom:1109.850000px;}
.y8a{bottom:1115.250000px;}
.y43{bottom:1124.610000px;}
.y3{bottom:1140.660000px;}
.y42{bottom:1144.440000px;}
.y41{bottom:1164.240000px;}
.y2{bottom:1171.440000px;}
.y40{bottom:1193.400000px;}
.y1{bottom:1203.300000px;}
.y3f{bottom:1215.180000px;}
.h5{height:21.276000px;}
.h6{height:29.464453px;}
.hd{height:37.771172px;}
.h7{height:39.183750px;}
.h10{height:41.726953px;}
.hf{height:42.164648px;}
.h13{height:43.681992px;}
.h14{height:46.736719px;}
.he{height:47.344922px;}
.hb{height:48.616875px;}
.h11{height:58.651172px;}
.h12{height:60.226875px;}
.h15{height:61.423863px;}
.h4{height:65.010937px;}
.hc{height:65.846250px;}
.h3{height:66.757500px;}
.h9{height:67.565039px;}
.h8{height:71.613281px;}
.h2{height:78.367500px;}
.ha{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:2.700000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x11{left:80.999987px;}
.x9{left:96.335987px;}
.x12{left:108.035987px;}
.xf{left:115.055987px;}
.x4{left:118.296000px;}
.xc{left:165.089987px;}
.x7{left:186.879000px;}
.xa{left:188.849987px;}
.xd{left:328.034987px;}
.x10{left:350.174987px;}
.x6{left:411.009000px;}
.x5{left:428.649000px;}
.xb{left:446.474987px;}
.xe{left:473.504987px;}
.x14{left:500.504987px;}
.x13{left:527.504987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-4.250667pt;}
.lsa{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.ls11{letter-spacing:41.040640pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.240000pt;}
.wsa{word-spacing:-13.872000pt;}
.wsc{word-spacing:-13.824000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.416533pt;}
.ws10{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.688000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1466.977280pt;}
._9{margin-left:-1434.872747pt;}
._4{margin-left:-1040.837333pt;}
._5{margin-left:-1022.392320pt;}
._6{margin-left:-44.160000pt;}
._b{margin-left:-8.171520pt;}
._54{margin-left:-7.238400pt;}
._22{margin-left:-6.037333pt;}
._a{margin-left:-4.852693pt;}
._8{margin-left:-3.297280pt;}
._7{margin-left:-2.178560pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._10{width:2.496640pt;}
._11{width:3.908053pt;}
._13{width:4.842880pt;}
._c{width:6.138240pt;}
._12{width:7.596160pt;}
._f{width:8.977280pt;}
._d{width:10.092800pt;}
._e{width:11.327147pt;}
._18{width:12.217600pt;}
._1f{width:14.672853pt;}
._1c{width:15.713067pt;}
._15{width:16.859307pt;}
._14{width:18.113920pt;}
._16{width:19.760640pt;}
._17{width:20.731093pt;}
._19{width:22.485760pt;}
._24{width:23.407360pt;}
._28{width:24.560000pt;}
._20{width:25.587200pt;}
._33{width:26.629760pt;}
._1b{width:27.622400pt;}
._23{width:28.844160pt;}
._1a{width:30.065920pt;}
._1d{width:31.115947pt;}
._21{width:32.243840pt;}
._26{width:33.452800pt;}
._2e{width:34.581120pt;}
._30{width:35.856000pt;}
._3e{width:36.812160pt;}
._3d{width:38.405760pt;}
._3a{width:39.347200pt;}
._2b{width:40.849280pt;}
._31{width:42.313600pt;}
._27{width:43.452160pt;}
._2a{width:44.567680pt;}
._3c{width:45.617280pt;}
._36{width:46.973440pt;}
._1e{width:48.259200pt;}
._29{width:49.587840pt;}
._40{width:50.575573pt;}
._42{width:52.057600pt;}
._37{width:52.999040pt;}
._38{width:53.901440pt;}
._50{width:54.819840pt;}
._2c{width:55.722880pt;}
._2d{width:56.703360pt;}
._44{width:58.302080pt;}
._3f{width:59.388160pt;}
._35{width:61.285760pt;}
._34{width:62.522240pt;}
._25{width:64.210560pt;}
._3b{width:65.284480pt;}
._2f{width:67.037440pt;}
._43{width:68.631040pt;}
._41{width:69.746560pt;}
._4a{width:71.658880pt;}
._4e{width:75.124480pt;}
._48{width:76.327040pt;}
._49{width:77.227520pt;}
._57{width:84.720000pt;}
._56{width:85.614720pt;}
._45{width:92.110080pt;}
._4b{width:96.306560pt;}
._4f{width:97.429120pt;}
._46{width:100.503040pt;}
._55{width:101.982080pt;}
._47{width:103.530880pt;}
._53{width:108.039680pt;}
._52{width:109.394347pt;}
._4d{width:127.328640pt;}
._4c{width:133.649920pt;}
._51{width:168.299307pt;}
._39{width:376.089600pt;}
._32{width:892.294187pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.ya{bottom:9.952000pt;}
.y9{bottom:10.592000pt;}
.yb{bottom:32.960000pt;}
.y6{bottom:48.160000pt;}
.y3c{bottom:72.032000pt;}
.y87{bottom:74.592000pt;}
.y77{bottom:82.592000pt;}
.y3b{bottom:89.632000pt;}
.y86{bottom:92.192000pt;}
.y76{bottom:100.192000pt;}
.y3a{bottom:107.232000pt;}
.y85{bottom:109.952000pt;}
.y75{bottom:117.952000pt;}
.y39{bottom:124.992000pt;}
.y84{bottom:127.552000pt;}
.y74{bottom:135.546667pt;}
.y38{bottom:142.586667pt;}
.y89{bottom:144.826667pt;}
.y83{bottom:145.146667pt;}
.y73{bottom:153.146667pt;}
.y37{bottom:160.186667pt;}
.y82{bottom:162.746667pt;}
.y72{bottom:170.746667pt;}
.y36{bottom:177.786667pt;}
.y81{bottom:180.346667pt;}
.y71{bottom:188.346667pt;}
.y35{bottom:195.386667pt;}
.y80{bottom:198.106667pt;}
.y70{bottom:206.106667pt;}
.y34{bottom:213.146667pt;}
.y7f{bottom:215.706667pt;}
.y6f{bottom:223.706667pt;}
.y33{bottom:230.746667pt;}
.y7e{bottom:233.306667pt;}
.y6e{bottom:241.306667pt;}
.y32{bottom:248.346667pt;}
.y7d{bottom:250.906667pt;}
.y6d{bottom:258.906667pt;}
.y31{bottom:265.946667pt;}
.yb2{bottom:268.186667pt;}
.y7c{bottom:268.506667pt;}
.y6c{bottom:276.506667pt;}
.y30{bottom:283.546667pt;}
.y7b{bottom:286.266667pt;}
.y6b{bottom:294.306667pt;}
.y2f{bottom:301.346667pt;}
.y7a{bottom:303.906667pt;}
.y6a{bottom:311.906667pt;}
.y2e{bottom:318.946667pt;}
.y79{bottom:321.506667pt;}
.y69{bottom:329.506667pt;}
.y2d{bottom:336.546667pt;}
.y78{bottom:338.786667pt;}
.yaf{bottom:339.106667pt;}
.y68{bottom:346.786667pt;}
.y88{bottom:347.106667pt;}
.y2c{bottom:354.146667pt;}
.yae{bottom:356.706667pt;}
.y67{bottom:364.706667pt;}
.y2b{bottom:371.746667pt;}
.yad{bottom:374.466667pt;}
.y66{bottom:382.466667pt;}
.y2a{bottom:389.506667pt;}
.yac{bottom:392.066667pt;}
.y65{bottom:400.066667pt;}
.y29{bottom:407.106667pt;}
.yab{bottom:409.666667pt;}
.y64{bottom:417.666667pt;}
.y28{bottom:424.386667pt;}
.y3e{bottom:424.706667pt;}
.yaa{bottom:427.266667pt;}
.y63{bottom:435.266667pt;}
.y27{bottom:441.986667pt;}
.y3d{bottom:442.306667pt;}
.ya9{bottom:444.866667pt;}
.y62{bottom:452.866667pt;}
.y26{bottom:459.906667pt;}
.ya8{bottom:462.626667pt;}
.y61{bottom:470.626667pt;}
.y25{bottom:477.666667pt;}
.ya7{bottom:480.226667pt;}
.y60{bottom:488.226667pt;}
.y24{bottom:497.186667pt;}
.ya6{bottom:497.826667pt;}
.y5f{bottom:505.826667pt;}
.y23{bottom:514.946667pt;}
.yb1{bottom:515.106667pt;}
.ya5{bottom:515.426667pt;}
.y5e{bottom:523.426667pt;}
.y22{bottom:532.573333pt;}
.ya4{bottom:533.053333pt;}
.yb5{bottom:540.733333pt;}
.y5d{bottom:541.053333pt;}
.y21{bottom:550.173333pt;}
.ya3{bottom:550.813333pt;}
.y5c{bottom:558.813333pt;}
.y20{bottom:567.773333pt;}
.ya2{bottom:568.413333pt;}
.y5b{bottom:576.413333pt;}
.y1f{bottom:585.373333pt;}
.ya1{bottom:586.013333pt;}
.y5a{bottom:594.013333pt;}
.y1e{bottom:603.133333pt;}
.ya0{bottom:603.613333pt;}
.yb6{bottom:611.293333pt;}
.y59{bottom:611.613333pt;}
.y1d{bottom:620.733333pt;}
.y9f{bottom:621.213333pt;}
.y58{bottom:629.213333pt;}
.y1c{bottom:638.333333pt;}
.y9e{bottom:638.973333pt;}
.y57{bottom:646.973333pt;}
.y1b{bottom:655.933333pt;}
.yb4{bottom:656.253333pt;}
.y9d{bottom:656.573333pt;}
.y56{bottom:664.573333pt;}
.y1a{bottom:673.533333pt;}
.y9c{bottom:674.173333pt;}
.y55{bottom:682.173333pt;}
.y19{bottom:691.293333pt;}
.y9b{bottom:691.773333pt;}
.y54{bottom:699.773333pt;}
.y18{bottom:708.893333pt;}
.y9a{bottom:709.373333pt;}
.y53{bottom:717.373333pt;}
.y17{bottom:726.493333pt;}
.y99{bottom:727.133333pt;}
.y52{bottom:735.133333pt;}
.y16{bottom:744.093333pt;}
.y98{bottom:744.733333pt;}
.y51{bottom:752.733333pt;}
.y15{bottom:761.693333pt;}
.y97{bottom:762.333333pt;}
.y50{bottom:770.373333pt;}
.y14{bottom:779.493333pt;}
.y96{bottom:779.973333pt;}
.y4f{bottom:787.973333pt;}
.y13{bottom:797.093333pt;}
.y95{bottom:797.573333pt;}
.y4e{bottom:805.573333pt;}
.y94{bottom:815.333333pt;}
.y12{bottom:815.493333pt;}
.y4d{bottom:823.333333pt;}
.y93{bottom:832.933333pt;}
.y11{bottom:835.493333pt;}
.y4c{bottom:840.933333pt;}
.y92{bottom:850.533333pt;}
.y10{bottom:853.093333pt;}
.y4b{bottom:858.533333pt;}
.yf{bottom:866.373333pt;}
.y91{bottom:868.133333pt;}
.y4a{bottom:876.133333pt;}
.ye{bottom:884.133333pt;}
.y90{bottom:885.733333pt;}
.y49{bottom:893.733333pt;}
.yd{bottom:902.373333pt;}
.yb0{bottom:903.173333pt;}
.y8f{bottom:903.493333pt;}
.y48{bottom:911.493333pt;}
.y8e{bottom:921.093333pt;}
.y47{bottom:929.093333pt;}
.yc{bottom:930.693333pt;}
.y8d{bottom:938.693333pt;}
.y46{bottom:946.693333pt;}
.yb3{bottom:955.973333pt;}
.y8c{bottom:956.293333pt;}
.y5{bottom:956.613333pt;}
.y45{bottom:964.293333pt;}
.y8b{bottom:973.893333pt;}
.y44{bottom:981.893333pt;}
.y4{bottom:986.533333pt;}
.y8a{bottom:991.333333pt;}
.y43{bottom:999.653333pt;}
.y3{bottom:1013.920000pt;}
.y42{bottom:1017.280000pt;}
.y41{bottom:1034.880000pt;}
.y2{bottom:1041.280000pt;}
.y40{bottom:1060.800000pt;}
.y1{bottom:1069.600000pt;}
.y3f{bottom:1080.160000pt;}
.h5{height:18.912000pt;}
.h6{height:26.190625pt;}
.hd{height:33.574375pt;}
.h7{height:34.830000pt;}
.h10{height:37.090625pt;}
.hf{height:37.479688pt;}
.h13{height:38.828437pt;}
.h14{height:41.543750pt;}
.he{height:42.084375pt;}
.hb{height:43.215000pt;}
.h11{height:52.134375pt;}
.h12{height:53.535000pt;}
.h15{height:54.598989pt;}
.h4{height:57.787500pt;}
.hc{height:58.530000pt;}
.h3{height:59.340000pt;}
.h9{height:60.057813pt;}
.h8{height:63.656250pt;}
.h2{height:69.660000pt;}
.ha{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:2.400000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x11{left:71.999988pt;}
.x9{left:85.631988pt;}
.x12{left:96.031988pt;}
.xf{left:102.271988pt;}
.x4{left:105.152000pt;}
.xc{left:146.746655pt;}
.x7{left:166.114667pt;}
.xa{left:167.866655pt;}
.xd{left:291.586655pt;}
.x10{left:311.266655pt;}
.x6{left:365.341333pt;}
.x5{left:381.021333pt;}
.xb{left:396.866655pt;}
.xe{left:420.893322pt;}
.x14{left:444.893322pt;}
.x13{left:468.893322pt;}
}




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