
    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_de02bb02230a2602c7a1ca85.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_ba5cfe55883340d8f9f089c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_87f8ef66360d4218dfc12bfb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_0466621e92818941bb973b25.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d66a57d2dc132c89180ea6fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ba61770a1ffa00131ceaa14.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d34c84ea6692e0fc341254ef.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f9d46f62d62b96aca95704b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_58a52f2b7fb232f7cf3a5d0b.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls18{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.416160px;}
.lsa{letter-spacing:0.428160px;}
.ls5{letter-spacing:0.462720px;}
.ls16{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.560000px;}
.lsc{letter-spacing:1.620000px;}
.ls7{letter-spacing:7.920000px;}
.ls14{letter-spacing:16.680000px;}
.ls17{letter-spacing:17.424000px;}
.ls13{letter-spacing:18.000000px;}
.ls10{letter-spacing:50.633280px;}
.ls11{letter-spacing:53.424000px;}
.lsb{letter-spacing:175.913280px;}
.ls6{letter-spacing:180.233280px;}
.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:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.064000px;}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws4{word-spacing:-11.880000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-4.378080px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.229120px;}
._4{width:3.525120px;}
._c{width:5.221440px;}
._10{width:6.837120px;}
._b{width:7.859040px;}
._7{width:9.072000px;}
._8{width:10.249920px;}
._a{width:12.058560px;}
._13{width:13.150080px;}
._11{width:14.708160px;}
._12{width:15.710400px;}
._17{width:16.813440px;}
._16{width:19.356480px;}
._e{width:20.871360px;}
._d{width:22.320000px;}
._18{width:23.752800px;}
._6{width:24.828000px;}
._5{width:26.830560px;}
._15{width:27.873120px;}
._14{width:28.969440px;}
._9{width:30.528000px;}
._19{width:31.714560px;}
._1c{width:32.846400px;}
._1d{width:34.191360px;}
._1e{width:35.199360px;}
._1a{width:36.699840px;}
._1b{width:38.401920px;}
._20{width:93.274560px;}
._1f{width:166.262400px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yab{bottom:7.560000px;}
.yb8{bottom:7.920000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y94{bottom:17.280000px;}
.y92{bottom:17.325000px;}
.y90{bottom:19.080000px;}
.yb5{bottom:19.440000px;}
.y96{bottom:19.800000px;}
.yb6{bottom:31.320000px;}
.ybb{bottom:31.680000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.ydc{bottom:107.676000px;}
.y8b{bottom:113.796000px;}
.yda{bottom:118.116000px;}
.yb2{bottom:122.436000px;}
.y8e{bottom:131.436000px;}
.y5f{bottom:131.796000px;}
.y33{bottom:132.876000px;}
.y8a{bottom:137.556000px;}
.yd9{bottom:141.876000px;}
.yb1{bottom:146.196000px;}
.y5e{bottom:155.550000px;}
.y32{bottom:156.630000px;}
.y89{bottom:161.310000px;}
.yd8{bottom:165.630000px;}
.yb0{bottom:169.950000px;}
.y5d{bottom:179.310000px;}
.y31{bottom:180.750000px;}
.y88{bottom:185.070000px;}
.yd7{bottom:189.390000px;}
.yaf{bottom:193.755000px;}
.y5c{bottom:203.115000px;}
.y30{bottom:204.555000px;}
.y87{bottom:208.875000px;}
.yae{bottom:211.035000px;}
.yd6{bottom:213.555000px;}
.y5b{bottom:226.875000px;}
.y2f{bottom:228.315000px;}
.y86{bottom:232.635000px;}
.yad{bottom:237.315000px;}
.y5a{bottom:250.635000px;}
.y2e{bottom:252.075000px;}
.y85{bottom:256.395000px;}
.yd5{bottom:261.075000px;}
.yac{bottom:263.235000px;}
.y59{bottom:274.395000px;}
.y2d{bottom:275.835000px;}
.y84{bottom:280.515000px;}
.yd4{bottom:284.835000px;}
.yaa{bottom:289.155000px;}
.y58{bottom:298.155000px;}
.y2c{bottom:299.595000px;}
.y83{bottom:304.275000px;}
.yd3{bottom:308.595000px;}
.ya9{bottom:321.585000px;}
.y57{bottom:321.945000px;}
.y2b{bottom:323.385000px;}
.y82{bottom:328.065000px;}
.yd2{bottom:332.385000px;}
.ya8{bottom:345.705000px;}
.y56{bottom:346.065000px;}
.y2a{bottom:347.145000px;}
.y81{bottom:351.825000px;}
.yd1{bottom:356.145000px;}
.ya7{bottom:369.465000px;}
.y55{bottom:369.825000px;}
.y29{bottom:370.905000px;}
.y80{bottom:375.585000px;}
.yd0{bottom:379.905000px;}
.ya6{bottom:393.225000px;}
.y54{bottom:393.585000px;}
.y28{bottom:395.025000px;}
.y7f{bottom:399.345000px;}
.ycf{bottom:403.665000px;}
.ya5{bottom:416.985000px;}
.y53{bottom:417.345000px;}
.y27{bottom:418.785000px;}
.y7e{bottom:423.105000px;}
.yce{bottom:427.785000px;}
.ya4{bottom:440.745000px;}
.y52{bottom:441.105000px;}
.y26{bottom:442.545000px;}
.y7d{bottom:446.910000px;}
.ycd{bottom:451.590000px;}
.y51{bottom:464.910000px;}
.y25{bottom:465.990000px;}
.y7c{bottom:470.670000px;}
.ycc{bottom:475.350000px;}
.y8d{bottom:488.310000px;}
.y50{bottom:488.670000px;}
.y24{bottom:490.110000px;}
.y7b{bottom:494.790000px;}
.ycb{bottom:499.110000px;}
.y4f{bottom:512.430000px;}
.y23{bottom:513.870000px;}
.y7a{bottom:518.550000px;}
.yca{bottom:522.870000px;}
.ya3{bottom:536.190000px;}
.y4e{bottom:536.550000px;}
.y22{bottom:537.630000px;}
.y79{bottom:542.310000px;}
.yc9{bottom:546.630000px;}
.ya2{bottom:559.950000px;}
.y4d{bottom:560.310000px;}
.y21{bottom:561.390000px;}
.y78{bottom:566.070000px;}
.yc8{bottom:570.390000px;}
.ya1{bottom:583.740000px;}
.y4c{bottom:584.100000px;}
.y20{bottom:585.540000px;}
.y77{bottom:589.860000px;}
.yc7{bottom:594.180000px;}
.ya0{bottom:607.500000px;}
.y4b{bottom:607.860000px;}
.y1f{bottom:609.300000px;}
.y76{bottom:613.620000px;}
.yc6{bottom:618.300000px;}
.y9f{bottom:631.260000px;}
.y4a{bottom:631.620000px;}
.y1e{bottom:633.060000px;}
.y75{bottom:637.380000px;}
.yc5{bottom:642.060000px;}
.y49{bottom:655.380000px;}
.y1d{bottom:656.820000px;}
.y74{bottom:661.140000px;}
.yc4{bottom:665.820000px;}
.y48{bottom:678.780000px;}
.y8c{bottom:679.140000px;}
.y1c{bottom:680.580000px;}
.y73{bottom:685.260000px;}
.yc3{bottom:689.580000px;}
.y47{bottom:702.930000px;}
.y1b{bottom:704.370000px;}
.y72{bottom:709.050000px;}
.yc2{bottom:713.370000px;}
.y9e{bottom:726.690000px;}
.y46{bottom:727.050000px;}
.y1a{bottom:728.130000px;}
.y71{bottom:732.810000px;}
.yc1{bottom:737.130000px;}
.y9d{bottom:750.450000px;}
.y45{bottom:750.810000px;}
.y19{bottom:751.890000px;}
.y70{bottom:756.570000px;}
.yc0{bottom:760.890000px;}
.y9c{bottom:774.210000px;}
.y44{bottom:774.570000px;}
.y18{bottom:776.010000px;}
.y6f{bottom:780.330000px;}
.ybf{bottom:784.650000px;}
.y9b{bottom:797.970000px;}
.y43{bottom:798.330000px;}
.y17{bottom:799.770000px;}
.y6e{bottom:804.090000px;}
.ybe{bottom:808.410000px;}
.y9a{bottom:821.730000px;}
.y42{bottom:822.090000px;}
.y16{bottom:823.530000px;}
.y6d{bottom:827.895000px;}
.ybd{bottom:832.575000px;}
.y99{bottom:845.535000px;}
.y41{bottom:845.895000px;}
.y15{bottom:847.335000px;}
.ybc{bottom:849.855000px;}
.y6c{bottom:851.655000px;}
.y40{bottom:869.655000px;}
.y14{bottom:871.095000px;}
.y6b{bottom:875.775000px;}
.y3f{bottom:893.415000px;}
.y13{bottom:894.855000px;}
.y6a{bottom:899.535000px;}
.yba{bottom:901.695000px;}
.y3e{bottom:917.175000px;}
.y12{bottom:918.615000px;}
.y69{bottom:923.295000px;}
.y98{bottom:940.935000px;}
.y3d{bottom:941.295000px;}
.y11{bottom:942.015000px;}
.y68{bottom:947.055000px;}
.yb9{bottom:951.765000px;}
.y97{bottom:964.725000px;}
.y3c{bottom:965.085000px;}
.y10{bottom:965.805000px;}
.y67{bottom:970.845000px;}
.y95{bottom:982.005000px;}
.y3b{bottom:988.845000px;}
.yf{bottom:990.285000px;}
.y66{bottom:994.605000px;}
.yb7{bottom:1001.445000px;}
.y3a{bottom:1012.605000px;}
.ye{bottom:1013.685000px;}
.y65{bottom:1018.365000px;}
.yb4{bottom:1027.725000px;}
.y93{bottom:1032.045000px;}
.yd{bottom:1036.005000px;}
.y39{bottom:1036.365000px;}
.y64{bottom:1042.125000px;}
.yc{bottom:1059.765000px;}
.y38{bottom:1060.125000px;}
.y63{bottom:1065.885000px;}
.y91{bottom:1077.405000px;}
.yb3{bottom:1083.570000px;}
.y37{bottom:1083.930000px;}
.y62{bottom:1088.610000px;}
.yb{bottom:1089.690000px;}
.ydb{bottom:1107.330000px;}
.y36{bottom:1107.690000px;}
.y61{bottom:1110.930000px;}
.ya{bottom:1119.570000px;}
.y8f{bottom:1122.810000px;}
.y35{bottom:1131.810000px;}
.y60{bottom:1133.250000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h10{height:23.760000px;}
.hf{height:24.120000px;}
.h5{height:27.000000px;}
.he{height:43.200000px;}
.hd{height:43.236000px;}
.h11{height:47.520000px;}
.hc{height:47.880000px;}
.h7{height:50.229844px;}
.h13{height:50.273438px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h12{height:74.004654px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:62.640000px;}
.wc{width:68.796000px;}
.w7{width:82.476000px;}
.w8{width:90.036000px;}
.w13{width:92.196000px;}
.wf{width:93.636000px;}
.w6{width:96.876000px;}
.w9{width:97.956000px;}
.w4{width:104.076000px;}
.wa{width:106.236000px;}
.wb{width:116.316000px;}
.w5{width:123.516000px;}
.w14{width:135.036000px;}
.wd{width:138.996000px;}
.we{width:171.075000px;}
.w11{width:172.875000px;}
.w12{width:216.105000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:1.080000px;}
.x8{left:39.270000px;}
.x5{left:95.796000px;}
.xb{left:102.995987px;}
.xa{left:111.995987px;}
.x29{left:127.835987px;}
.x25{left:138.636000px;}
.x1d{left:146.232000px;}
.x14{left:148.032000px;}
.x12{left:149.111987px;}
.xc{left:159.554987px;}
.x1b{left:176.114987px;}
.x23{left:180.434987px;}
.x24{left:182.954987px;}
.x3{left:190.154987px;}
.x10{left:226.874987px;}
.xf{left:235.544987px;}
.x13{left:239.504987px;}
.x1e{left:262.545000px;}
.x16{left:271.545000px;}
.x1c{left:287.744987px;}
.x6{left:290.634000px;}
.x26{left:311.505000px;}
.x11{left:322.664987px;}
.x1f{left:331.350000px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x17{left:368.430000px;}
.xd{left:372.029987px;}
.x7{left:394.710000px;}
.xe{left:446.579987px;}
.x18{left:450.900000px;}
.x20{left:470.340000px;}
.x9{left:498.780000px;}
.x27{left:527.610000px;}
.x19{left:540.930000px;}
.x28{left:619.815000px;}
.x1a{left:638.895000px;}
.x21{left:641.415000px;}
.x22{left:735.045000px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls18{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.369920pt;}
.lsa{letter-spacing:0.380587pt;}
.ls5{letter-spacing:0.411307pt;}
.ls16{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.386667pt;}
.lsc{letter-spacing:1.440000pt;}
.ls7{letter-spacing:7.040000pt;}
.ls14{letter-spacing:14.826667pt;}
.ls17{letter-spacing:15.488000pt;}
.ls13{letter-spacing:16.000000pt;}
.ls10{letter-spacing:45.007360pt;}
.ls11{letter-spacing:47.488000pt;}
.lsb{letter-spacing:156.367360pt;}
.ls6{letter-spacing:160.207360pt;}
.ws3{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.168000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws4{word-spacing:-10.560000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-3.891627pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:1.981440pt;}
._4{width:3.133440pt;}
._c{width:4.641280pt;}
._10{width:6.077440pt;}
._b{width:6.985813pt;}
._7{width:8.064000pt;}
._8{width:9.111040pt;}
._a{width:10.718720pt;}
._13{width:11.688960pt;}
._11{width:13.073920pt;}
._12{width:13.964800pt;}
._17{width:14.945280pt;}
._16{width:17.205760pt;}
._e{width:18.552320pt;}
._d{width:19.840000pt;}
._18{width:21.113600pt;}
._6{width:22.069333pt;}
._5{width:23.849387pt;}
._15{width:24.776107pt;}
._14{width:25.750613pt;}
._9{width:27.136000pt;}
._19{width:28.190720pt;}
._1c{width:29.196800pt;}
._1d{width:30.392320pt;}
._1e{width:31.288320pt;}
._1a{width:32.622080pt;}
._1b{width:34.135040pt;}
._20{width:82.910720pt;}
._1f{width:147.788800pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:6.720000pt;}
.yb8{bottom:7.040000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y94{bottom:15.360000pt;}
.y92{bottom:15.400000pt;}
.y90{bottom:16.960000pt;}
.yb5{bottom:17.280000pt;}
.y96{bottom:17.600000pt;}
.yb6{bottom:27.840000pt;}
.ybb{bottom:28.160000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.ydc{bottom:95.712000pt;}
.y8b{bottom:101.152000pt;}
.yda{bottom:104.992000pt;}
.yb2{bottom:108.832000pt;}
.y8e{bottom:116.832000pt;}
.y5f{bottom:117.152000pt;}
.y33{bottom:118.112000pt;}
.y8a{bottom:122.272000pt;}
.yd9{bottom:126.112000pt;}
.yb1{bottom:129.952000pt;}
.y5e{bottom:138.266667pt;}
.y32{bottom:139.226667pt;}
.y89{bottom:143.386667pt;}
.yd8{bottom:147.226667pt;}
.yb0{bottom:151.066667pt;}
.y5d{bottom:159.386667pt;}
.y31{bottom:160.666667pt;}
.y88{bottom:164.506667pt;}
.yd7{bottom:168.346667pt;}
.yaf{bottom:172.226667pt;}
.y5c{bottom:180.546667pt;}
.y30{bottom:181.826667pt;}
.y87{bottom:185.666667pt;}
.yae{bottom:187.586667pt;}
.yd6{bottom:189.826667pt;}
.y5b{bottom:201.666667pt;}
.y2f{bottom:202.946667pt;}
.y86{bottom:206.786667pt;}
.yad{bottom:210.946667pt;}
.y5a{bottom:222.786667pt;}
.y2e{bottom:224.066667pt;}
.y85{bottom:227.906667pt;}
.yd5{bottom:232.066667pt;}
.yac{bottom:233.986667pt;}
.y59{bottom:243.906667pt;}
.y2d{bottom:245.186667pt;}
.y84{bottom:249.346667pt;}
.yd4{bottom:253.186667pt;}
.yaa{bottom:257.026667pt;}
.y58{bottom:265.026667pt;}
.y2c{bottom:266.306667pt;}
.y83{bottom:270.466667pt;}
.yd3{bottom:274.306667pt;}
.ya9{bottom:285.853333pt;}
.y57{bottom:286.173333pt;}
.y2b{bottom:287.453333pt;}
.y82{bottom:291.613333pt;}
.yd2{bottom:295.453333pt;}
.ya8{bottom:307.293333pt;}
.y56{bottom:307.613333pt;}
.y2a{bottom:308.573333pt;}
.y81{bottom:312.733333pt;}
.yd1{bottom:316.573333pt;}
.ya7{bottom:328.413333pt;}
.y55{bottom:328.733333pt;}
.y29{bottom:329.693333pt;}
.y80{bottom:333.853333pt;}
.yd0{bottom:337.693333pt;}
.ya6{bottom:349.533333pt;}
.y54{bottom:349.853333pt;}
.y28{bottom:351.133333pt;}
.y7f{bottom:354.973333pt;}
.ycf{bottom:358.813333pt;}
.ya5{bottom:370.653333pt;}
.y53{bottom:370.973333pt;}
.y27{bottom:372.253333pt;}
.y7e{bottom:376.093333pt;}
.yce{bottom:380.253333pt;}
.ya4{bottom:391.773333pt;}
.y52{bottom:392.093333pt;}
.y26{bottom:393.373333pt;}
.y7d{bottom:397.253333pt;}
.ycd{bottom:401.413333pt;}
.y51{bottom:413.253333pt;}
.y25{bottom:414.213333pt;}
.y7c{bottom:418.373333pt;}
.ycc{bottom:422.533333pt;}
.y8d{bottom:434.053333pt;}
.y50{bottom:434.373333pt;}
.y24{bottom:435.653333pt;}
.y7b{bottom:439.813333pt;}
.ycb{bottom:443.653333pt;}
.y4f{bottom:455.493333pt;}
.y23{bottom:456.773333pt;}
.y7a{bottom:460.933333pt;}
.yca{bottom:464.773333pt;}
.ya3{bottom:476.613333pt;}
.y4e{bottom:476.933333pt;}
.y22{bottom:477.893333pt;}
.y79{bottom:482.053333pt;}
.yc9{bottom:485.893333pt;}
.ya2{bottom:497.733333pt;}
.y4d{bottom:498.053333pt;}
.y21{bottom:499.013333pt;}
.y78{bottom:503.173333pt;}
.yc8{bottom:507.013333pt;}
.ya1{bottom:518.880000pt;}
.y4c{bottom:519.200000pt;}
.y20{bottom:520.480000pt;}
.y77{bottom:524.320000pt;}
.yc7{bottom:528.160000pt;}
.ya0{bottom:540.000000pt;}
.y4b{bottom:540.320000pt;}
.y1f{bottom:541.600000pt;}
.y76{bottom:545.440000pt;}
.yc6{bottom:549.600000pt;}
.y9f{bottom:561.120000pt;}
.y4a{bottom:561.440000pt;}
.y1e{bottom:562.720000pt;}
.y75{bottom:566.560000pt;}
.yc5{bottom:570.720000pt;}
.y49{bottom:582.560000pt;}
.y1d{bottom:583.840000pt;}
.y74{bottom:587.680000pt;}
.yc4{bottom:591.840000pt;}
.y48{bottom:603.360000pt;}
.y8c{bottom:603.680000pt;}
.y1c{bottom:604.960000pt;}
.y73{bottom:609.120000pt;}
.yc3{bottom:612.960000pt;}
.y47{bottom:624.826667pt;}
.y1b{bottom:626.106667pt;}
.y72{bottom:630.266667pt;}
.yc2{bottom:634.106667pt;}
.y9e{bottom:645.946667pt;}
.y46{bottom:646.266667pt;}
.y1a{bottom:647.226667pt;}
.y71{bottom:651.386667pt;}
.yc1{bottom:655.226667pt;}
.y9d{bottom:667.066667pt;}
.y45{bottom:667.386667pt;}
.y19{bottom:668.346667pt;}
.y70{bottom:672.506667pt;}
.yc0{bottom:676.346667pt;}
.y9c{bottom:688.186667pt;}
.y44{bottom:688.506667pt;}
.y18{bottom:689.786667pt;}
.y6f{bottom:693.626667pt;}
.ybf{bottom:697.466667pt;}
.y9b{bottom:709.306667pt;}
.y43{bottom:709.626667pt;}
.y17{bottom:710.906667pt;}
.y6e{bottom:714.746667pt;}
.ybe{bottom:718.586667pt;}
.y9a{bottom:730.426667pt;}
.y42{bottom:730.746667pt;}
.y16{bottom:732.026667pt;}
.y6d{bottom:735.906667pt;}
.ybd{bottom:740.066667pt;}
.y99{bottom:751.586667pt;}
.y41{bottom:751.906667pt;}
.y15{bottom:753.186667pt;}
.ybc{bottom:755.426667pt;}
.y6c{bottom:757.026667pt;}
.y40{bottom:773.026667pt;}
.y14{bottom:774.306667pt;}
.y6b{bottom:778.466667pt;}
.y3f{bottom:794.146667pt;}
.y13{bottom:795.426667pt;}
.y6a{bottom:799.586667pt;}
.yba{bottom:801.506667pt;}
.y3e{bottom:815.266667pt;}
.y12{bottom:816.546667pt;}
.y69{bottom:820.706667pt;}
.y98{bottom:836.386667pt;}
.y3d{bottom:836.706667pt;}
.y11{bottom:837.346667pt;}
.y68{bottom:841.826667pt;}
.yb9{bottom:846.013333pt;}
.y97{bottom:857.533333pt;}
.y3c{bottom:857.853333pt;}
.y10{bottom:858.493333pt;}
.y67{bottom:862.973333pt;}
.y95{bottom:872.893333pt;}
.y3b{bottom:878.973333pt;}
.yf{bottom:880.253333pt;}
.y66{bottom:884.093333pt;}
.yb7{bottom:890.173333pt;}
.y3a{bottom:900.093333pt;}
.ye{bottom:901.053333pt;}
.y65{bottom:905.213333pt;}
.yb4{bottom:913.533333pt;}
.y93{bottom:917.373333pt;}
.yd{bottom:920.893333pt;}
.y39{bottom:921.213333pt;}
.y64{bottom:926.333333pt;}
.yc{bottom:942.013333pt;}
.y38{bottom:942.333333pt;}
.y63{bottom:947.453333pt;}
.y91{bottom:957.693333pt;}
.yb3{bottom:963.173333pt;}
.y37{bottom:963.493333pt;}
.y62{bottom:967.653333pt;}
.yb{bottom:968.613333pt;}
.ydb{bottom:984.293333pt;}
.y36{bottom:984.613333pt;}
.y61{bottom:987.493333pt;}
.ya{bottom:995.173333pt;}
.y8f{bottom:998.053333pt;}
.y35{bottom:1006.053333pt;}
.y60{bottom:1007.333333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h10{height:21.120000pt;}
.hf{height:21.440000pt;}
.h5{height:24.000000pt;}
.he{height:38.400000pt;}
.hd{height:38.432000pt;}
.h11{height:42.240000pt;}
.hc{height:42.560000pt;}
.h7{height:44.648750pt;}
.h13{height:44.687500pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h12{height:65.781915pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:55.680000pt;}
.wc{width:61.152000pt;}
.w7{width:73.312000pt;}
.w8{width:80.032000pt;}
.w13{width:81.952000pt;}
.wf{width:83.232000pt;}
.w6{width:86.112000pt;}
.w9{width:87.072000pt;}
.w4{width:92.512000pt;}
.wa{width:94.432000pt;}
.wb{width:103.392000pt;}
.w5{width:109.792000pt;}
.w14{width:120.032000pt;}
.wd{width:123.552000pt;}
.we{width:152.066667pt;}
.w11{width:153.666667pt;}
.w12{width:192.093333pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:0.960000pt;}
.x8{left:34.906667pt;}
.x5{left:85.152000pt;}
.xb{left:91.551988pt;}
.xa{left:99.551988pt;}
.x29{left:113.631988pt;}
.x25{left:123.232000pt;}
.x1d{left:129.984000pt;}
.x14{left:131.584000pt;}
.x12{left:132.543988pt;}
.xc{left:141.826655pt;}
.x1b{left:156.546655pt;}
.x23{left:160.386655pt;}
.x24{left:162.626655pt;}
.x3{left:169.026655pt;}
.x10{left:201.666655pt;}
.xf{left:209.373322pt;}
.x13{left:212.893322pt;}
.x1e{left:233.373333pt;}
.x16{left:241.373333pt;}
.x1c{left:255.773322pt;}
.x6{left:258.341333pt;}
.x26{left:276.893333pt;}
.x11{left:286.813322pt;}
.x1f{left:294.533333pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x17{left:327.493333pt;}
.xd{left:330.693322pt;}
.x7{left:350.853333pt;}
.xe{left:396.959988pt;}
.x18{left:400.800000pt;}
.x20{left:418.080000pt;}
.x9{left:443.360000pt;}
.x27{left:468.986667pt;}
.x19{left:480.826667pt;}
.x28{left:550.946667pt;}
.x1a{left:567.906667pt;}
.x21{left:570.146667pt;}
.x22{left:653.373333pt;}
.x1{left:709.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  