
    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_e459a861e72040aad1df1a65.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b3dd92630ea5a37bf5f09c29.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a74a991b4246335b8a469d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_95d2e0c1cda80e3a6bb1c9b5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_faf66503aefeb63cd6a9107c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.805176;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_f334129ffde3595f0e087bf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_c4f6f97f5878f3a464912c1e.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_ebf3aeb41779d3cb06219c0d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.222600px;}
.lsb{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls9{letter-spacing:5.760000px;}
.ls4{letter-spacing:11.700000px;}
.ls11{letter-spacing:39.881280px;}
.lse{letter-spacing:39.905280px;}
.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;}
}
.ws2{word-spacing:-19.440000px;}
.ws7{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.482000px;}
.ws1{word-spacing:-12.995160px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-8.262720px;}
._1{margin-left:-6.755760px;}
._5{margin-left:-5.657760px;}
._6{margin-left:-4.354560px;}
._8{margin-left:-2.430000px;}
._0{margin-left:-1.192320px;}
._2{width:1.015920px;}
._e{width:2.026320px;}
._3{width:3.050400px;}
._f{width:4.138320px;}
._9{width:5.454000px;}
._c{width:6.976080px;}
._b{width:8.046000px;}
._16{width:9.432000px;}
._d{width:10.495440px;}
._a{width:11.765520px;}
._17{width:13.380480px;}
._7{width:15.240000px;}
._15{width:17.424000px;}
._12{width:18.576000px;}
._11{width:19.872000px;}
._18{width:21.263040px;}
._10{width:23.004000px;}
._21{width:24.055200px;}
._14{width:25.110000px;}
._13{width:26.298000px;}
._1d{width:27.324000px;}
._1b{width:29.344320px;}
._19{width:30.470400px;}
._1a{width:31.795200px;}
._20{width:33.252480px;}
._1e{width:38.021760px;}
._1f{width:39.081600px;}
._1c{width:48.156480px;}
._22{width:87.171840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.880000px;}
.y49{bottom:3.060000px;}
.y2{bottom:6.510000px;}
.y5b{bottom:9.540000px;}
.y9{bottom:11.730000px;}
.y58{bottom:18.360000px;}
.y48{bottom:18.534000px;}
.y5c{bottom:18.540000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y57{bottom:33.840000px;}
.y47{bottom:34.014000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y46{bottom:49.494000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y45{bottom:65.154000px;}
.yb{bottom:75.096000px;}
.y44{bottom:80.634000px;}
.y43{bottom:96.114000px;}
.y42{bottom:111.594000px;}
.yd3{bottom:112.176000px;}
.y41{bottom:127.254000px;}
.ya5{bottom:129.276000px;}
.y16{bottom:131.976000px;}
.yd2{bottom:133.956000px;}
.y40{bottom:142.734000px;}
.ya4{bottom:151.050000px;}
.yd1{bottom:155.730000px;}
.y3f{bottom:158.214000px;}
.ya3{bottom:172.830000px;}
.y3e{bottom:173.694000px;}
.yd0{bottom:177.510000px;}
.y83{bottom:187.230000px;}
.y3d{bottom:189.354000px;}
.ya2{bottom:194.610000px;}
.ycf{bottom:199.290000px;}
.y3c{bottom:204.879000px;}
.y82{bottom:209.010000px;}
.ya1{bottom:216.390000px;}
.y3b{bottom:220.359000px;}
.yce{bottom:221.250000px;}
.y81{bottom:230.790000px;}
.y3a{bottom:235.839000px;}
.ya0{bottom:238.350000px;}
.ycd{bottom:243.030000px;}
.y39{bottom:251.499000px;}
.y80{bottom:252.750000px;}
.y9f{bottom:260.130000px;}
.ycc{bottom:264.810000px;}
.y38{bottom:266.979000px;}
.y7f{bottom:274.530000px;}
.y9e{bottom:281.910000px;}
.y37{bottom:282.459000px;}
.ycb{bottom:286.590000px;}
.y7e{bottom:296.310000px;}
.y36{bottom:297.939000px;}
.y9d{bottom:303.690000px;}
.yca{bottom:308.370000px;}
.y35{bottom:313.599000px;}
.y7d{bottom:318.090000px;}
.y9c{bottom:325.650000px;}
.y34{bottom:329.079000px;}
.yc9{bottom:330.330000px;}
.y7c{bottom:339.915000px;}
.y33{bottom:344.559000px;}
.y9b{bottom:347.475000px;}
.yc8{bottom:352.155000px;}
.y32{bottom:360.039000px;}
.y7b{bottom:361.875000px;}
.y9a{bottom:369.255000px;}
.yc7{bottom:373.935000px;}
.y31{bottom:375.699000px;}
.y7a{bottom:383.655000px;}
.y99{bottom:391.035000px;}
.y30{bottom:391.179000px;}
.yc6{bottom:395.715000px;}
.y79{bottom:405.435000px;}
.y2f{bottom:406.659000px;}
.y98{bottom:412.815000px;}
.yc5{bottom:417.675000px;}
.y2e{bottom:422.139000px;}
.y78{bottom:427.215000px;}
.y97{bottom:434.775000px;}
.y2d{bottom:437.799000px;}
.yc4{bottom:439.455000px;}
.y77{bottom:448.995000px;}
.y2c{bottom:453.279000px;}
.y96{bottom:456.555000px;}
.yc3{bottom:461.235000px;}
.y2b{bottom:468.759000px;}
.y76{bottom:470.955000px;}
.y95{bottom:478.335000px;}
.yc2{bottom:483.015000px;}
.y2a{bottom:484.269000px;}
.y55{bottom:489.129000px;}
.y75{bottom:492.735000px;}
.y29{bottom:499.749000px;}
.y94{bottom:500.115000px;}
.y54{bottom:502.809000px;}
.yc1{bottom:504.795000px;}
.y74{bottom:514.515000px;}
.y28{bottom:515.409000px;}
.y53{bottom:516.669000px;}
.y93{bottom:522.075000px;}
.yc0{bottom:526.755000px;}
.y52{bottom:530.529000px;}
.y27{bottom:530.889000px;}
.y73{bottom:536.295000px;}
.y92{bottom:543.855000px;}
.y51{bottom:544.209000px;}
.y26{bottom:546.369000px;}
.ybf{bottom:548.535000px;}
.y50{bottom:558.069000px;}
.y72{bottom:558.255000px;}
.y25{bottom:561.849000px;}
.y91{bottom:565.635000px;}
.ybe{bottom:570.315000px;}
.y4f{bottom:571.929000px;}
.y24{bottom:577.509000px;}
.y71{bottom:580.035000px;}
.y4e{bottom:585.609000px;}
.y90{bottom:587.415000px;}
.ybd{bottom:592.095000px;}
.y23{bottom:592.989000px;}
.y4d{bottom:599.469000px;}
.y70{bottom:601.815000px;}
.y22{bottom:608.469000px;}
.y8f{bottom:609.225000px;}
.y4c{bottom:613.329000px;}
.ybc{bottom:614.085000px;}
.y6f{bottom:623.625000px;}
.y21{bottom:623.949000px;}
.y4b{bottom:627.009000px;}
.y8e{bottom:631.185000px;}
.ybb{bottom:635.865000px;}
.y20{bottom:639.609000px;}
.y4a{bottom:640.869000px;}
.y6e{bottom:645.405000px;}
.y8d{bottom:652.965000px;}
.y1f{bottom:655.089000px;}
.yba{bottom:657.645000px;}
.y6d{bottom:667.365000px;}
.y1e{bottom:670.569000px;}
.y8c{bottom:674.745000px;}
.yb9{bottom:679.425000px;}
.y1d{bottom:686.049000px;}
.y6c{bottom:689.145000px;}
.y8b{bottom:696.525000px;}
.yb8{bottom:701.205000px;}
.y1c{bottom:701.709000px;}
.y6b{bottom:710.925000px;}
.y1b{bottom:717.189000px;}
.y8a{bottom:718.485000px;}
.yb7{bottom:723.165000px;}
.y1a{bottom:732.669000px;}
.y6a{bottom:732.705000px;}
.y89{bottom:740.265000px;}
.yb6{bottom:744.945000px;}
.y19{bottom:748.194000px;}
.y69{bottom:754.665000px;}
.y88{bottom:762.045000px;}
.y18{bottom:763.854000px;}
.yb5{bottom:766.725000px;}
.y68{bottom:776.445000px;}
.y17{bottom:779.334000px;}
.y87{bottom:783.825000px;}
.yb4{bottom:788.505000px;}
.y67{bottom:798.225000px;}
.y86{bottom:805.605000px;}
.yb3{bottom:810.465000px;}
.y66{bottom:820.005000px;}
.y85{bottom:827.565000px;}
.yb2{bottom:832.245000px;}
.y65{bottom:841.785000px;}
.y84{bottom:845.745000px;}
.yb1{bottom:854.025000px;}
.y64{bottom:863.745000px;}
.yb0{bottom:875.850000px;}
.y63{bottom:885.570000px;}
.yaf{bottom:897.630000px;}
.y62{bottom:907.350000px;}
.yae{bottom:919.590000px;}
.y61{bottom:929.130000px;}
.y15{bottom:930.210000px;}
.yad{bottom:941.370000px;}
.y14{bottom:948.930000px;}
.y60{bottom:951.090000px;}
.yac{bottom:963.150000px;}
.y13{bottom:966.210000px;}
.y5f{bottom:972.870000px;}
.y12{bottom:983.850000px;}
.yab{bottom:984.930000px;}
.y5e{bottom:994.650000px;}
.y11{bottom:1001.670000px;}
.yaa{bottom:1006.890000px;}
.y5d{bottom:1016.430000px;}
.y10{bottom:1016.610000px;}
.ya9{bottom:1028.670000px;}
.y5a{bottom:1031.910000px;}
.yf{bottom:1035.690000px;}
.ya8{bottom:1050.450000px;}
.ye{bottom:1053.510000px;}
.y56{bottom:1063.050000px;}
.yd{bottom:1068.810000px;}
.ya7{bottom:1072.230000px;}
.yc{bottom:1091.310000px;}
.ya6{bottom:1094.010000px;}
.ya{bottom:1114.710000px;}
.y1{bottom:1132.350000px;}
.h14{height:31.140000px;}
.hb{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h8{height:39.147891px;}
.h12{height:39.760312px;}
.h7{height:40.842773px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h11{height:44.507812px;}
.hd{height:46.251562px;}
.h13{height:46.440000px;}
.h4{height:46.736719px;}
.h16{height:48.224531px;}
.h6{height:49.255313px;}
.h15{height:50.100469px;}
.h17{height:53.755312px;}
.hc{height:54.596250px;}
.h9{height:54.864844px;}
.ha{height:63.104063px;}
.h2{height:77.436000px;}
.he{height:791.925000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:228.090000px;}
.w3{width:427.935000px;}
.w6{width:467.175000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x6{left:20.160000px;}
.x17{left:29.520000px;}
.x2{left:61.194000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:104.445000px;}
.xa{left:108.035987px;}
.xc{left:109.295987px;}
.x15{left:110.565000px;}
.xf{left:115.055987px;}
.x1c{left:121.535987px;}
.x1f{left:123.515987px;}
.x22{left:129.275987px;}
.x8{left:132.345000px;}
.xd{left:139.535987px;}
.x1b{left:141.875987px;}
.x1d{left:148.535987px;}
.x20{left:150.509987px;}
.x18{left:162.029987px;}
.x3{left:171.930000px;}
.x21{left:194.069987px;}
.x1e{left:216.029987px;}
.x16{left:229.899000px;}
.x10{left:246.629987px;}
.x12{left:298.334987px;}
.x1a{left:320.474987px;}
.x13{left:343.154987px;}
.x11{left:348.554987px;}
.xe{left:446.474987px;}
.xb{left:499.244987px;}
.x14{left:575.205000px;}
.x19{left:592.844987px;}
.x5{left:599.865000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.197867pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls9{letter-spacing:5.120000pt;}
.ls4{letter-spacing:10.400000pt;}
.ls11{letter-spacing:35.450027pt;}
.lse{letter-spacing:35.471360pt;}
.ws2{word-spacing:-17.280000pt;}
.ws7{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.551253pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-7.344640pt;}
._1{margin-left:-6.005120pt;}
._5{margin-left:-5.029120pt;}
._6{margin-left:-3.870720pt;}
._8{margin-left:-2.160000pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.903040pt;}
._e{width:1.801173pt;}
._3{width:2.711467pt;}
._f{width:3.678507pt;}
._9{width:4.848000pt;}
._c{width:6.200960pt;}
._b{width:7.152000pt;}
._16{width:8.384000pt;}
._d{width:9.329280pt;}
._a{width:10.458240pt;}
._17{width:11.893760pt;}
._7{width:13.546667pt;}
._15{width:15.488000pt;}
._12{width:16.512000pt;}
._11{width:17.664000pt;}
._18{width:18.900480pt;}
._10{width:20.448000pt;}
._21{width:21.382400pt;}
._14{width:22.320000pt;}
._13{width:23.376000pt;}
._1d{width:24.288000pt;}
._1b{width:26.083840pt;}
._19{width:27.084800pt;}
._1a{width:28.262400pt;}
._20{width:29.557760pt;}
._1e{width:33.797120pt;}
._1f{width:34.739200pt;}
._1c{width:42.805760pt;}
._22{width:77.486080pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.560000pt;}
.y49{bottom:2.720000pt;}
.y2{bottom:5.786667pt;}
.y5b{bottom:8.480000pt;}
.y9{bottom:10.426667pt;}
.y58{bottom:16.320000pt;}
.y48{bottom:16.474667pt;}
.y5c{bottom:16.480000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y57{bottom:30.080000pt;}
.y47{bottom:30.234667pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y46{bottom:43.994667pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y45{bottom:57.914667pt;}
.yb{bottom:66.752000pt;}
.y44{bottom:71.674667pt;}
.y43{bottom:85.434667pt;}
.y42{bottom:99.194667pt;}
.yd3{bottom:99.712000pt;}
.y41{bottom:113.114667pt;}
.ya5{bottom:114.912000pt;}
.y16{bottom:117.312000pt;}
.yd2{bottom:119.072000pt;}
.y40{bottom:126.874667pt;}
.ya4{bottom:134.266667pt;}
.yd1{bottom:138.426667pt;}
.y3f{bottom:140.634667pt;}
.ya3{bottom:153.626667pt;}
.y3e{bottom:154.394667pt;}
.yd0{bottom:157.786667pt;}
.y83{bottom:166.426667pt;}
.y3d{bottom:168.314667pt;}
.ya2{bottom:172.986667pt;}
.ycf{bottom:177.146667pt;}
.y3c{bottom:182.114667pt;}
.y82{bottom:185.786667pt;}
.ya1{bottom:192.346667pt;}
.y3b{bottom:195.874667pt;}
.yce{bottom:196.666667pt;}
.y81{bottom:205.146667pt;}
.y3a{bottom:209.634667pt;}
.ya0{bottom:211.866667pt;}
.ycd{bottom:216.026667pt;}
.y39{bottom:223.554667pt;}
.y80{bottom:224.666667pt;}
.y9f{bottom:231.226667pt;}
.ycc{bottom:235.386667pt;}
.y38{bottom:237.314667pt;}
.y7f{bottom:244.026667pt;}
.y9e{bottom:250.586667pt;}
.y37{bottom:251.074667pt;}
.ycb{bottom:254.746667pt;}
.y7e{bottom:263.386667pt;}
.y36{bottom:264.834667pt;}
.y9d{bottom:269.946667pt;}
.yca{bottom:274.106667pt;}
.y35{bottom:278.754667pt;}
.y7d{bottom:282.746667pt;}
.y9c{bottom:289.466667pt;}
.y34{bottom:292.514667pt;}
.yc9{bottom:293.626667pt;}
.y7c{bottom:302.146667pt;}
.y33{bottom:306.274667pt;}
.y9b{bottom:308.866667pt;}
.yc8{bottom:313.026667pt;}
.y32{bottom:320.034667pt;}
.y7b{bottom:321.666667pt;}
.y9a{bottom:328.226667pt;}
.yc7{bottom:332.386667pt;}
.y31{bottom:333.954667pt;}
.y7a{bottom:341.026667pt;}
.y99{bottom:347.586667pt;}
.y30{bottom:347.714667pt;}
.yc6{bottom:351.746667pt;}
.y79{bottom:360.386667pt;}
.y2f{bottom:361.474667pt;}
.y98{bottom:366.946667pt;}
.yc5{bottom:371.266667pt;}
.y2e{bottom:375.234667pt;}
.y78{bottom:379.746667pt;}
.y97{bottom:386.466667pt;}
.y2d{bottom:389.154667pt;}
.yc4{bottom:390.626667pt;}
.y77{bottom:399.106667pt;}
.y2c{bottom:402.914667pt;}
.y96{bottom:405.826667pt;}
.yc3{bottom:409.986667pt;}
.y2b{bottom:416.674667pt;}
.y76{bottom:418.626667pt;}
.y95{bottom:425.186667pt;}
.yc2{bottom:429.346667pt;}
.y2a{bottom:430.461333pt;}
.y55{bottom:434.781333pt;}
.y75{bottom:437.986667pt;}
.y29{bottom:444.221333pt;}
.y94{bottom:444.546667pt;}
.y54{bottom:446.941333pt;}
.yc1{bottom:448.706667pt;}
.y74{bottom:457.346667pt;}
.y28{bottom:458.141333pt;}
.y53{bottom:459.261333pt;}
.y93{bottom:464.066667pt;}
.yc0{bottom:468.226667pt;}
.y52{bottom:471.581333pt;}
.y27{bottom:471.901333pt;}
.y73{bottom:476.706667pt;}
.y92{bottom:483.426667pt;}
.y51{bottom:483.741333pt;}
.y26{bottom:485.661333pt;}
.ybf{bottom:487.586667pt;}
.y50{bottom:496.061333pt;}
.y72{bottom:496.226667pt;}
.y25{bottom:499.421333pt;}
.y91{bottom:502.786667pt;}
.ybe{bottom:506.946667pt;}
.y4f{bottom:508.381333pt;}
.y24{bottom:513.341333pt;}
.y71{bottom:515.586667pt;}
.y4e{bottom:520.541333pt;}
.y90{bottom:522.146667pt;}
.ybd{bottom:526.306667pt;}
.y23{bottom:527.101333pt;}
.y4d{bottom:532.861333pt;}
.y70{bottom:534.946667pt;}
.y22{bottom:540.861333pt;}
.y8f{bottom:541.533333pt;}
.y4c{bottom:545.181333pt;}
.ybc{bottom:545.853333pt;}
.y6f{bottom:554.333333pt;}
.y21{bottom:554.621333pt;}
.y4b{bottom:557.341333pt;}
.y8e{bottom:561.053333pt;}
.ybb{bottom:565.213333pt;}
.y20{bottom:568.541333pt;}
.y4a{bottom:569.661333pt;}
.y6e{bottom:573.693333pt;}
.y8d{bottom:580.413333pt;}
.y1f{bottom:582.301333pt;}
.yba{bottom:584.573333pt;}
.y6d{bottom:593.213333pt;}
.y1e{bottom:596.061333pt;}
.y8c{bottom:599.773333pt;}
.yb9{bottom:603.933333pt;}
.y1d{bottom:609.821333pt;}
.y6c{bottom:612.573333pt;}
.y8b{bottom:619.133333pt;}
.yb8{bottom:623.293333pt;}
.y1c{bottom:623.741333pt;}
.y6b{bottom:631.933333pt;}
.y1b{bottom:637.501333pt;}
.y8a{bottom:638.653333pt;}
.yb7{bottom:642.813333pt;}
.y1a{bottom:651.261333pt;}
.y6a{bottom:651.293333pt;}
.y89{bottom:658.013333pt;}
.yb6{bottom:662.173333pt;}
.y19{bottom:665.061333pt;}
.y69{bottom:670.813333pt;}
.y88{bottom:677.373333pt;}
.y18{bottom:678.981333pt;}
.yb5{bottom:681.533333pt;}
.y68{bottom:690.173333pt;}
.y17{bottom:692.741333pt;}
.y87{bottom:696.733333pt;}
.yb4{bottom:700.893333pt;}
.y67{bottom:709.533333pt;}
.y86{bottom:716.093333pt;}
.yb3{bottom:720.413333pt;}
.y66{bottom:728.893333pt;}
.y85{bottom:735.613333pt;}
.yb2{bottom:739.773333pt;}
.y65{bottom:748.253333pt;}
.y84{bottom:751.773333pt;}
.yb1{bottom:759.133333pt;}
.y64{bottom:767.773333pt;}
.yb0{bottom:778.533333pt;}
.y63{bottom:787.173333pt;}
.yaf{bottom:797.893333pt;}
.y62{bottom:806.533333pt;}
.yae{bottom:817.413333pt;}
.y61{bottom:825.893333pt;}
.y15{bottom:826.853333pt;}
.yad{bottom:836.773333pt;}
.y14{bottom:843.493333pt;}
.y60{bottom:845.413333pt;}
.yac{bottom:856.133333pt;}
.y13{bottom:858.853333pt;}
.y5f{bottom:864.773333pt;}
.y12{bottom:874.533333pt;}
.yab{bottom:875.493333pt;}
.y5e{bottom:884.133333pt;}
.y11{bottom:890.373333pt;}
.yaa{bottom:895.013333pt;}
.y5d{bottom:903.493333pt;}
.y10{bottom:903.653333pt;}
.ya9{bottom:914.373333pt;}
.y5a{bottom:917.253333pt;}
.yf{bottom:920.613333pt;}
.ya8{bottom:933.733333pt;}
.ye{bottom:936.453333pt;}
.y56{bottom:944.933333pt;}
.yd{bottom:950.053333pt;}
.ya7{bottom:953.093333pt;}
.yc{bottom:970.053333pt;}
.ya6{bottom:972.453333pt;}
.ya{bottom:990.853333pt;}
.y1{bottom:1006.533333pt;}
.h14{height:27.680000pt;}
.hb{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h8{height:34.798125pt;}
.h12{height:35.342500pt;}
.h7{height:36.304688pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h11{height:39.562500pt;}
.hd{height:41.112500pt;}
.h13{height:41.280000pt;}
.h4{height:41.543750pt;}
.h16{height:42.866250pt;}
.h6{height:43.782500pt;}
.h15{height:44.533750pt;}
.h17{height:47.782500pt;}
.hc{height:48.530000pt;}
.h9{height:48.768750pt;}
.ha{height:56.092500pt;}
.h2{height:68.832000pt;}
.he{height:703.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:202.746667pt;}
.w3{width:380.386667pt;}
.w6{width:415.266667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x6{left:17.920000pt;}
.x17{left:26.240000pt;}
.x2{left:54.394667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:92.840000pt;}
.xa{left:96.031988pt;}
.xc{left:97.151988pt;}
.x15{left:98.280000pt;}
.xf{left:102.271988pt;}
.x1c{left:108.031988pt;}
.x1f{left:109.791988pt;}
.x22{left:114.911988pt;}
.x8{left:117.640000pt;}
.xd{left:124.031988pt;}
.x1b{left:126.111988pt;}
.x1d{left:132.031988pt;}
.x20{left:133.786655pt;}
.x18{left:144.026655pt;}
.x3{left:152.826667pt;}
.x21{left:172.506655pt;}
.x1e{left:192.026655pt;}
.x16{left:204.354667pt;}
.x10{left:219.226655pt;}
.x12{left:265.186655pt;}
.x1a{left:284.866655pt;}
.x13{left:305.026655pt;}
.x11{left:309.826655pt;}
.xe{left:396.866655pt;}
.xb{left:443.773322pt;}
.x14{left:511.293333pt;}
.x19{left:526.973322pt;}
.x5{left:533.213333pt;}
}




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