
    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_1d9747e9c2f559177577bb54.woff2')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_25927c01e5db1ee6126836d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_fd2426a27fe452d5ef382a5c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0103f0c94301a00f7066d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_113eaf516cd3ed083afa907c.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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e8156f8168e288c7dc0eafaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls8{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:46.286640px;}
.ls1{letter-spacing:864.210000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.210000px;}
.ws6{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.850000px;}
.wsa{word-spacing:-14.516400px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws2{word-spacing:-11.970000px;}
.ws5{word-spacing:-10.530000px;}
.ws9{word-spacing:0.000000px;}
._11{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._3{width:1.014240px;}
._7{width:2.247840px;}
._e{width:3.643920px;}
._f{width:4.893120px;}
._9{width:6.780240px;}
._6{width:7.995960px;}
._16{width:9.051480px;}
._d{width:10.100160px;}
._a{width:11.182320px;}
._c{width:12.565080px;}
._b{width:13.647240px;}
._1b{width:16.112160px;}
._17{width:17.134200px;}
._8{width:18.637200px;}
._5{width:20.581200px;}
._4{width:21.643200px;}
._1f{width:23.206320px;}
._1a{width:24.589080px;}
._14{width:25.711200px;}
._10{width:26.933760px;}
._19{width:28.243080px;}
._18{width:29.398680px;}
._25{width:30.412440px;}
._13{width:31.482000px;}
._15{width:32.616000px;}
._12{width:34.236000px;}
._21{width:37.394640px;}
._1d{width:38.476800px;}
._1e{width:39.638400px;}
._20{width:41.242320px;}
._24{width:42.264360px;}
._1c{width:45.090000px;}
._23{width:47.314440px;}
._22{width:52.424640px;}
._26{width:97.755120px;}
._1{width:302.788920px;}
._2{width:372.032040px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsc{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.yb0{bottom:2.700000px;}
.y3e{bottom:2.970000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y24{bottom:4.680000px;}
.y5{bottom:8.370000px;}
.yb5{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y3d{bottom:18.450000px;}
.y35{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.yb4{bottom:30.240000px;}
.y47{bottom:30.780000px;}
.ye{bottom:33.210000px;}
.y3c{bottom:34.020000px;}
.y54{bottom:35.640000px;}
.y34{bottom:37.710000px;}
.yb3{bottom:44.010000px;}
.y46{bottom:46.260000px;}
.y8{bottom:49.140000px;}
.y3b{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.y33{bottom:54.990000px;}
.yb2{bottom:57.780000px;}
.y53{bottom:60.030000px;}
.y45{bottom:61.830000px;}
.y3a{bottom:65.070000px;}
.yc{bottom:65.820000px;}
.y32{bottom:72.270000px;}
.y4{bottom:73.530000px;}
.y44{bottom:77.310000px;}
.y39{bottom:80.550000px;}
.y31{bottom:89.460000px;}
.y43{bottom:92.880000px;}
.y38{bottom:96.150000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y30{bottom:106.740000px;}
.y42{bottom:108.360000px;}
.y37{bottom:111.630000px;}
.y41{bottom:123.930000px;}
.y2f{bottom:124.020000px;}
.yae{bottom:126.180000px;}
.y52{bottom:133.470000px;}
.ya{bottom:136.200000px;}
.y40{bottom:139.410000px;}
.y2e{bottom:141.210000px;}
.yad{bottom:143.460000px;}
.y51{bottom:150.750000px;}
.y2d{bottom:158.490000px;}
.y88{bottom:158.520000px;}
.yac{bottom:160.770000px;}
.y50{bottom:168.060000px;}
.y2c{bottom:175.770000px;}
.y87{bottom:175.800000px;}
.yab{bottom:177.960000px;}
.y4f{bottom:185.250000px;}
.y2b{bottom:192.960000px;}
.y86{bottom:192.990000px;}
.yaa{bottom:195.240000px;}
.y4e{bottom:202.530000px;}
.y2a{bottom:210.240000px;}
.y85{bottom:210.270000px;}
.ya9{bottom:212.520000px;}
.y4d{bottom:219.810000px;}
.y29{bottom:227.430000px;}
.y84{bottom:227.460000px;}
.ya8{bottom:229.710000px;}
.y4c{bottom:237.000000px;}
.y28{bottom:244.710000px;}
.y83{bottom:244.740000px;}
.ya7{bottom:246.990000px;}
.y4b{bottom:254.280000px;}
.y27{bottom:262.020000px;}
.ya6{bottom:264.180000px;}
.y4a{bottom:271.470000px;}
.y26{bottom:279.210000px;}
.ya5{bottom:281.460000px;}
.y49{bottom:288.750000px;}
.y82{bottom:296.490000px;}
.ya4{bottom:298.740000px;}
.y48{bottom:305.580000px;}
.y81{bottom:313.770000px;}
.ya3{bottom:315.930000px;}
.y25{bottom:318.180000px;}
.y80{bottom:330.960000px;}
.ya2{bottom:333.210000px;}
.y7f{bottom:348.240000px;}
.ya1{bottom:350.490000px;}
.y7e{bottom:365.520000px;}
.ya0{bottom:367.680000px;}
.y7d{bottom:382.710000px;}
.y9f{bottom:384.960000px;}
.y7c{bottom:399.990000px;}
.y9e{bottom:402.240000px;}
.y7b{bottom:417.270000px;}
.y9d{bottom:419.430000px;}
.y7a{bottom:434.460000px;}
.y9c{bottom:436.710000px;}
.y79{bottom:451.740000px;}
.y9b{bottom:453.990000px;}
.y78{bottom:469.020000px;}
.y3f{bottom:470.910000px;}
.y9a{bottom:471.180000px;}
.y77{bottom:486.210000px;}
.y36{bottom:487.200000px;}
.y99{bottom:488.460000px;}
.y76{bottom:503.490000px;}
.y98{bottom:505.740000px;}
.y75{bottom:520.770000px;}
.y97{bottom:522.930000px;}
.y74{bottom:537.960000px;}
.y96{bottom:540.210000px;}
.y73{bottom:555.240000px;}
.y95{bottom:557.490000px;}
.y72{bottom:572.430000px;}
.y94{bottom:574.710000px;}
.y71{bottom:589.740000px;}
.y93{bottom:591.990000px;}
.y70{bottom:607.020000px;}
.y92{bottom:609.180000px;}
.y22{bottom:612.150000px;}
.y6f{bottom:624.210000px;}
.y91{bottom:626.460000px;}
.y6e{bottom:641.490000px;}
.y21{bottom:643.020000px;}
.y90{bottom:643.740000px;}
.y1f{bottom:645.900000px;}
.y1e{bottom:651.660000px;}
.y6d{bottom:658.770000px;}
.y8f{bottom:660.930000px;}
.y1d{bottom:668.850000px;}
.y6c{bottom:675.960000px;}
.y8e{bottom:678.210000px;}
.y1c{bottom:688.740000px;}
.y6b{bottom:693.240000px;}
.y8d{bottom:695.490000px;}
.y6a{bottom:710.520000px;}
.y8c{bottom:712.680000px;}
.y1b{bottom:722.400000px;}
.y69{bottom:727.710000px;}
.y8b{bottom:729.960000px;}
.y1a{bottom:735.720000px;}
.y68{bottom:744.990000px;}
.y8a{bottom:747.240000px;}
.y19{bottom:753.360000px;}
.y67{bottom:762.270000px;}
.y89{bottom:764.430000px;}
.y18{bottom:774.600000px;}
.y66{bottom:779.460000px;}
.y65{bottom:796.740000px;}
.y17{bottom:805.650000px;}
.y64{bottom:814.020000px;}
.y63{bottom:831.210000px;}
.yb6{bottom:832.470000px;}
.y16{bottom:836.700000px;}
.yb1{bottom:847.230000px;}
.y62{bottom:848.490000px;}
.y61{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y60{bottom:882.960000px;}
.y14{bottom:898.800000px;}
.y5f{bottom:900.240000px;}
.yaf{bottom:916.890000px;}
.y5e{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y5d{bottom:934.710000px;}
.y5c{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y5b{bottom:969.180000px;}
.y5a{bottom:986.460000px;}
.y59{bottom:1003.770000px;}
.y58{bottom:1020.960000px;}
.y57{bottom:1038.240000px;}
.y56{bottom:1055.520000px;}
.y55{bottom:1072.710000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h14{height:1.710000px;}
.h15{height:4.273242px;}
.hf{height:4.318066px;}
.h16{height:8.382129px;}
.h22{height:13.860000px;}
.h1c{height:15.570000px;}
.h17{height:17.280000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h13{height:27.147656px;}
.h4{height:27.630000px;}
.h6{height:33.431836px;}
.h23{height:33.782520px;}
.h1f{height:36.068555px;}
.h1e{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.082324px;}
.h1b{height:41.343750px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h20{height:43.769004px;}
.h2{height:45.295488px;}
.h12{height:48.027656px;}
.h21{height:49.552031px;}
.h1{height:50.800781px;}
.h11{height:53.838457px;}
.h8{height:65.526152px;}
.h24{height:68.940000px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.hb{height:93.219434px;}
.he{height:118.619824px;}
.h1a{height:124.230000px;}
.h9{height:143.220000px;}
.h1d{height:152.010000px;}
.h19{height:293.250000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.900000px;}
.w8{width:228.270000px;}
.w9{width:349.680000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x16{left:3.150000px;}
.x4{left:4.320000px;}
.x1f{left:6.749986px;}
.x17{left:8.100000px;}
.x1b{left:43.650000px;}
.x6{left:45.540000px;}
.x18{left:46.710000px;}
.xf{left:48.509986px;}
.x20{left:52.110000px;}
.x1{left:53.999986px;}
.x1c{left:59.669986px;}
.x1d{left:60.749986px;}
.x1a{left:65.070000px;}
.xa{left:70.470000px;}
.x23{left:81.630000px;}
.xe{left:85.949986px;}
.x21{left:87.210000px;}
.x3{left:99.360000px;}
.x24{left:102.990000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x5{left:134.460000px;}
.x14{left:188.489986px;}
.x8{left:200.190000px;}
.x13{left:202.799986px;}
.xb{left:231.780000px;}
.x10{left:238.349986px;}
.x12{left:311.879986px;}
.x7{left:324.030000px;}
.x11{left:464.159986px;}
.x15{left:466.139986px;}
.x1e{left:486.059986px;}
.x22{left:513.059986px;}
.x19{left:640.050000px;}
.xc{left:693.600000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls8{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:41.143680pt;}
.ls1{letter-spacing:768.186667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.520000pt;}
.ws6{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.200000pt;}
.wsa{word-spacing:-12.903467pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.640000pt;}
.ws5{word-spacing:-9.360000pt;}
.ws9{word-spacing:0.000000pt;}
._11{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._3{width:0.901547pt;}
._7{width:1.998080pt;}
._e{width:3.239040pt;}
._f{width:4.349440pt;}
._9{width:6.026880pt;}
._6{width:7.107520pt;}
._16{width:8.045760pt;}
._d{width:8.977920pt;}
._a{width:9.939840pt;}
._c{width:11.168960pt;}
._b{width:12.130880pt;}
._1b{width:14.321920pt;}
._17{width:15.230400pt;}
._8{width:16.566400pt;}
._5{width:18.294400pt;}
._4{width:19.238400pt;}
._1f{width:20.627840pt;}
._1a{width:21.856960pt;}
._14{width:22.854400pt;}
._10{width:23.941120pt;}
._19{width:25.104960pt;}
._18{width:26.132160pt;}
._25{width:27.033280pt;}
._13{width:27.984000pt;}
._15{width:28.992000pt;}
._12{width:30.432000pt;}
._21{width:33.239680pt;}
._1d{width:34.201600pt;}
._1e{width:35.234133pt;}
._20{width:36.659840pt;}
._24{width:37.568320pt;}
._1c{width:40.080000pt;}
._23{width:42.057280pt;}
._22{width:46.599680pt;}
._26{width:86.893440pt;}
._1{width:269.145707pt;}
._2{width:330.695147pt;}
.fs8{font-size:5.440000pt;}
.fsc{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.yb0{bottom:2.400000pt;}
.y3e{bottom:2.640000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y24{bottom:4.160000pt;}
.y5{bottom:7.440000pt;}
.yb5{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y3d{bottom:16.400000pt;}
.y35{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.yb4{bottom:26.880000pt;}
.y47{bottom:27.360000pt;}
.ye{bottom:29.520000pt;}
.y3c{bottom:30.240000pt;}
.y54{bottom:31.680000pt;}
.y34{bottom:33.520000pt;}
.yb3{bottom:39.120000pt;}
.y46{bottom:41.120000pt;}
.y8{bottom:43.680000pt;}
.y3b{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.y33{bottom:48.880000pt;}
.yb2{bottom:51.360000pt;}
.y53{bottom:53.360000pt;}
.y45{bottom:54.960000pt;}
.y3a{bottom:57.840000pt;}
.yc{bottom:58.506667pt;}
.y32{bottom:64.240000pt;}
.y4{bottom:65.360000pt;}
.y44{bottom:68.720000pt;}
.y39{bottom:71.600000pt;}
.y31{bottom:79.520000pt;}
.y43{bottom:82.560000pt;}
.y38{bottom:85.466667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y30{bottom:94.880000pt;}
.y42{bottom:96.320000pt;}
.y37{bottom:99.226667pt;}
.y41{bottom:110.160000pt;}
.y2f{bottom:110.240000pt;}
.yae{bottom:112.160000pt;}
.y52{bottom:118.640000pt;}
.ya{bottom:121.066667pt;}
.y40{bottom:123.920000pt;}
.y2e{bottom:125.520000pt;}
.yad{bottom:127.520000pt;}
.y51{bottom:134.000000pt;}
.y2d{bottom:140.880000pt;}
.y88{bottom:140.906667pt;}
.yac{bottom:142.906667pt;}
.y50{bottom:149.386667pt;}
.y2c{bottom:156.240000pt;}
.y87{bottom:156.266667pt;}
.yab{bottom:158.186667pt;}
.y4f{bottom:164.666667pt;}
.y2b{bottom:171.520000pt;}
.y86{bottom:171.546667pt;}
.yaa{bottom:173.546667pt;}
.y4e{bottom:180.026667pt;}
.y2a{bottom:186.880000pt;}
.y85{bottom:186.906667pt;}
.ya9{bottom:188.906667pt;}
.y4d{bottom:195.386667pt;}
.y29{bottom:202.160000pt;}
.y84{bottom:202.186667pt;}
.ya8{bottom:204.186667pt;}
.y4c{bottom:210.666667pt;}
.y28{bottom:217.520000pt;}
.y83{bottom:217.546667pt;}
.ya7{bottom:219.546667pt;}
.y4b{bottom:226.026667pt;}
.y27{bottom:232.906667pt;}
.ya6{bottom:234.826667pt;}
.y4a{bottom:241.306667pt;}
.y26{bottom:248.186667pt;}
.ya5{bottom:250.186667pt;}
.y49{bottom:256.666667pt;}
.y82{bottom:263.546667pt;}
.ya4{bottom:265.546667pt;}
.y48{bottom:271.626667pt;}
.y81{bottom:278.906667pt;}
.ya3{bottom:280.826667pt;}
.y25{bottom:282.826667pt;}
.y80{bottom:294.186667pt;}
.ya2{bottom:296.186667pt;}
.y7f{bottom:309.546667pt;}
.ya1{bottom:311.546667pt;}
.y7e{bottom:324.906667pt;}
.ya0{bottom:326.826667pt;}
.y7d{bottom:340.186667pt;}
.y9f{bottom:342.186667pt;}
.y7c{bottom:355.546667pt;}
.y9e{bottom:357.546667pt;}
.y7b{bottom:370.906667pt;}
.y9d{bottom:372.826667pt;}
.y7a{bottom:386.186667pt;}
.y9c{bottom:388.186667pt;}
.y79{bottom:401.546667pt;}
.y9b{bottom:403.546667pt;}
.y78{bottom:416.906667pt;}
.y3f{bottom:418.586667pt;}
.y9a{bottom:418.826667pt;}
.y77{bottom:432.186667pt;}
.y36{bottom:433.066667pt;}
.y99{bottom:434.186667pt;}
.y76{bottom:447.546667pt;}
.y98{bottom:449.546667pt;}
.y75{bottom:462.906667pt;}
.y97{bottom:464.826667pt;}
.y74{bottom:478.186667pt;}
.y96{bottom:480.186667pt;}
.y73{bottom:493.546667pt;}
.y95{bottom:495.546667pt;}
.y72{bottom:508.826667pt;}
.y94{bottom:510.853333pt;}
.y71{bottom:524.213333pt;}
.y93{bottom:526.213333pt;}
.y70{bottom:539.573333pt;}
.y92{bottom:541.493333pt;}
.y22{bottom:544.133333pt;}
.y6f{bottom:554.853333pt;}
.y91{bottom:556.853333pt;}
.y6e{bottom:570.213333pt;}
.y21{bottom:571.573333pt;}
.y90{bottom:572.213333pt;}
.y1f{bottom:574.133333pt;}
.y1e{bottom:579.253333pt;}
.y6d{bottom:585.573333pt;}
.y8f{bottom:587.493333pt;}
.y1d{bottom:594.533333pt;}
.y6c{bottom:600.853333pt;}
.y8e{bottom:602.853333pt;}
.y1c{bottom:612.213333pt;}
.y6b{bottom:616.213333pt;}
.y8d{bottom:618.213333pt;}
.y6a{bottom:631.573333pt;}
.y8c{bottom:633.493333pt;}
.y1b{bottom:642.133333pt;}
.y69{bottom:646.853333pt;}
.y8b{bottom:648.853333pt;}
.y1a{bottom:653.973333pt;}
.y68{bottom:662.213333pt;}
.y8a{bottom:664.213333pt;}
.y19{bottom:669.653333pt;}
.y67{bottom:677.573333pt;}
.y89{bottom:679.493333pt;}
.y18{bottom:688.533333pt;}
.y66{bottom:692.853333pt;}
.y65{bottom:708.213333pt;}
.y17{bottom:716.133333pt;}
.y64{bottom:723.573333pt;}
.y63{bottom:738.853333pt;}
.yb6{bottom:739.973333pt;}
.y16{bottom:743.733333pt;}
.yb1{bottom:753.093333pt;}
.y62{bottom:754.213333pt;}
.y61{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y60{bottom:784.853333pt;}
.y14{bottom:798.933333pt;}
.y5f{bottom:800.213333pt;}
.yaf{bottom:815.013333pt;}
.y5e{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y5d{bottom:830.853333pt;}
.y5c{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y5b{bottom:861.493333pt;}
.y5a{bottom:876.853333pt;}
.y59{bottom:892.240000pt;}
.y58{bottom:907.520000pt;}
.y57{bottom:922.880000pt;}
.y56{bottom:938.240000pt;}
.y55{bottom:953.520000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h14{height:1.520000pt;}
.h15{height:3.798437pt;}
.hf{height:3.838281pt;}
.h16{height:7.450781pt;}
.h22{height:12.320000pt;}
.h1c{height:13.840000pt;}
.h17{height:15.360000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h13{height:24.131250pt;}
.h4{height:24.560000pt;}
.h6{height:29.717188pt;}
.h23{height:30.028906pt;}
.h1f{height:32.060937pt;}
.h1e{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.739844pt;}
.h1b{height:36.750000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h20{height:38.905781pt;}
.h2{height:40.262656pt;}
.h12{height:42.691250pt;}
.h21{height:44.046250pt;}
.h1{height:45.156250pt;}
.h11{height:47.856406pt;}
.h8{height:58.245469pt;}
.h24{height:61.280000pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.hb{height:82.861719pt;}
.he{height:105.439844pt;}
.h1a{height:110.426667pt;}
.h9{height:127.306667pt;}
.h1d{height:135.120000pt;}
.h19{height:260.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.466667pt;}
.w8{width:202.906667pt;}
.w9{width:310.826667pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x16{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1f{left:5.999988pt;}
.x17{left:7.200000pt;}
.x1b{left:38.800000pt;}
.x6{left:40.480000pt;}
.x18{left:41.520000pt;}
.xf{left:43.119988pt;}
.x20{left:46.320000pt;}
.x1{left:47.999988pt;}
.x1c{left:53.039988pt;}
.x1d{left:53.999988pt;}
.x1a{left:57.840000pt;}
.xa{left:62.640000pt;}
.x23{left:72.560000pt;}
.xe{left:76.399988pt;}
.x21{left:77.520000pt;}
.x3{left:88.320000pt;}
.x24{left:91.546667pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x5{left:119.520000pt;}
.x14{left:167.546655pt;}
.x8{left:177.946667pt;}
.x13{left:180.266655pt;}
.xb{left:206.026667pt;}
.x10{left:211.866655pt;}
.x12{left:277.226655pt;}
.x7{left:288.026667pt;}
.x11{left:412.586655pt;}
.x15{left:414.346655pt;}
.x1e{left:432.053321pt;}
.x22{left:456.053321pt;}
.x19{left:568.933333pt;}
.xc{left:616.533333pt;}
}




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