
    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_5735db0e1fb5bd80a2a46636.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_1e571fa9a444656eeb1a6e46.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_3fd3297e6ee39db6711fafef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_39be230236acc881548da69c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0e368100ef33d2a0ab7f782d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cbf8647c3752883a1ceb5f1d.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_91c5590622e9c24757664c72.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v8{vertical-align:-74.880000px;}
.v6{vertical-align:-69.120000px;}
.va{vertical-align:-64.080000px;}
.v7{vertical-align:-48.240000px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-5.760000px;}
.v4{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v9{vertical-align:26.640000px;}
.ls4{letter-spacing:-0.570000px;}
.ls1f{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.123600px;}
.ls20{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.391680px;}
.ls2{letter-spacing:0.414720px;}
.lsf{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.732960px;}
.lsb{letter-spacing:0.852960px;}
.ls8{letter-spacing:4.500000px;}
.ls22{letter-spacing:21.708000px;}
.ls1c{letter-spacing:46.026720px;}
.ls1e{letter-spacing:49.068000px;}
.ls1a{letter-spacing:49.626720px;}
.ls19{letter-spacing:201.060000px;}
.ls17{letter-spacing:259.380000px;}
.ls10{letter-spacing:562.680000px;}
.lsa{letter-spacing:669.240000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.712000px;}
.wsc{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.226440px;}
.wsb{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.680200px;}
.ws12{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.716000px;}
.ws13{word-spacing:-13.626000px;}
.ws4{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.374000px;}
.ws9{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws0{word-spacing:-9.000000px;}
.ws2{word-spacing:-8.280000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.457280px;}
._2{width:1.677840px;}
._10{width:2.897760px;}
._3{width:3.924000px;}
._4{width:5.359440px;}
._f{width:6.610560px;}
._e{width:8.099280px;}
._d{width:9.126000px;}
._c{width:11.050560px;}
._b{width:12.240000px;}
._11{width:13.346400px;}
._7{width:15.061440px;}
._8{width:16.578000px;}
._17{width:17.808480px;}
._a{width:19.547280px;}
._9{width:20.790000px;}
._5{width:22.518000px;}
._6{width:23.802000px;}
._1b{width:28.445760px;}
._1a{width:29.581200px;}
._18{width:37.529280px;}
._19{width:38.595840px;}
._13{width:45.690960px;}
._15{width:55.897200px;}
._14{width:75.031200px;}
._0{width:93.029760px;}
._16{width:118.980960px;}
._12{width:151.430880px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.120000px;}
.fs4{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:21.240000px;}
.y2d{bottom:153.360000px;}
.y2c{bottom:173.550000px;}
.yb3{bottom:234.750000px;}
.y5f{bottom:236.370000px;}
.y4f{bottom:237.270000px;}
.y2b{bottom:239.790000px;}
.y79{bottom:240.690000px;}
.y7e{bottom:245.910000px;}
.y5e{bottom:248.610000px;}
.yb2{bottom:252.030000px;}
.y4e{bottom:254.550000px;}
.ya1{bottom:254.730000px;}
.y2a{bottom:256.890000px;}
.y78{bottom:257.970000px;}
.y7d{bottom:259.410000px;}
.yd0{bottom:268.590000px;}
.yb1{bottom:269.130000px;}
.y4d{bottom:271.830000px;}
.y29{bottom:274.170000px;}
.y77{bottom:275.070000px;}
.ycf{bottom:284.070000px;}
.yb0{bottom:286.410000px;}
.y4c{bottom:288.930000px;}
.ya0{bottom:289.110000px;}
.y28{bottom:291.450000px;}
.y76{bottom:292.350000px;}
.yce{bottom:299.730000px;}
.yaf{bottom:303.690000px;}
.y4b{bottom:306.210000px;}
.y27{bottom:308.730000px;}
.y75{bottom:309.630000px;}
.ycd{bottom:315.210000px;}
.yae{bottom:320.970000px;}
.y4a{bottom:323.490000px;}
.y9f{bottom:323.670000px;}
.y26{bottom:326.010000px;}
.y74{bottom:326.910000px;}
.ycc{bottom:330.690000px;}
.yad{bottom:337.890000px;}
.y9e{bottom:340.950000px;}
.y25{bottom:343.290000px;}
.y73{bottom:344.190000px;}
.ycb{bottom:346.170000px;}
.yac{bottom:355.350000px;}
.y87{bottom:357.510000px;}
.y49{bottom:358.050000px;}
.y9d{bottom:358.230000px;}
.y24{bottom:360.390000px;}
.y72{bottom:361.470000px;}
.yca{bottom:361.830000px;}
.yab{bottom:372.630000px;}
.y86{bottom:374.430000px;}
.y48{bottom:375.150000px;}
.y9c{bottom:375.330000px;}
.yc9{bottom:377.310000px;}
.y71{bottom:378.570000px;}
.y85{bottom:389.910000px;}
.y47{bottom:392.430000px;}
.y9b{bottom:392.610000px;}
.yc8{bottom:392.790000px;}
.y70{bottom:395.850000px;}
.y23{bottom:399.090000px;}
.y84{bottom:405.390000px;}
.yaa{bottom:407.190000px;}
.yc7{bottom:408.270000px;}
.y9a{bottom:409.575000px;}
.y46{bottom:409.755000px;}
.y6f{bottom:413.175000px;}
.yc6{bottom:423.975000px;}
.ya9{bottom:424.515000px;}
.y45{bottom:427.035000px;}
.y99{bottom:427.215000px;}
.y6e{bottom:430.455000px;}
.yc5{bottom:439.455000px;}
.ya8{bottom:441.795000px;}
.y44{bottom:444.315000px;}
.y98{bottom:444.495000px;}
.y6d{bottom:447.735000px;}
.y22{bottom:457.995000px;}
.ya7{bottom:458.895000px;}
.y43{bottom:461.595000px;}
.y97{bottom:461.775000px;}
.y6c{bottom:465.015000px;}
.ya6{bottom:476.175000px;}
.yc4{bottom:476.715000px;}
.y42{bottom:478.695000px;}
.y96{bottom:478.875000px;}
.y21{bottom:482.475000px;}
.y6b{bottom:490.755000px;}
.ya5{bottom:493.455000px;}
.y41{bottom:495.975000px;}
.y95{bottom:496.155000px;}
.y20{bottom:497.955000px;}
.y6a{bottom:502.995000px;}
.ya4{bottom:510.735000px;}
.y40{bottom:512.895000px;}
.y94{bottom:513.435000px;}
.y1f{bottom:513.615000px;}
.y3f{bottom:525.135000px;}
.ya3{bottom:528.015000px;}
.y1e{bottom:529.095000px;}
.y93{bottom:530.715000px;}
.yc3{bottom:536.115000px;}
.y1d{bottom:544.575000px;}
.y5d{bottom:545.295000px;}
.y92{bottom:547.995000px;}
.yc2{bottom:553.395000px;}
.y1c{bottom:560.055000px;}
.y5c{bottom:562.395000px;}
.y91{bottom:565.095000px;}
.y7c{bottom:567.975000px;}
.yc1{bottom:570.675000px;}
.y1b{bottom:575.715000px;}
.y5b{bottom:579.675000px;}
.y90{bottom:582.375000px;}
.yc0{bottom:587.775000px;}
.y1a{bottom:591.195000px;}
.y5a{bottom:596.955000px;}
.y8f{bottom:599.655000px;}
.ybf{bottom:605.055000px;}
.y19{bottom:606.675000px;}
.y59{bottom:614.235000px;}
.y8e{bottom:616.935000px;}
.y18{bottom:622.155000px;}
.ybe{bottom:622.335000px;}
.y58{bottom:631.515000px;}
.y83{bottom:632.775000px;}
.y8d{bottom:633.855000px;}
.y17{bottom:637.815000px;}
.ybd{bottom:639.615000px;}
.y57{bottom:648.795000px;}
.y8c{bottom:651.135000px;}
.y16{bottom:653.325000px;}
.y82{bottom:656.025000px;}
.ybc{bottom:656.925000px;}
.y56{bottom:665.925000px;}
.y15{bottom:668.805000px;}
.ybb{bottom:674.205000px;}
.y81{bottom:674.745000px;}
.y55{bottom:683.205000px;}
.y14{bottom:684.285000px;}
.y8b{bottom:690.045000px;}
.y80{bottom:690.225000px;}
.yba{bottom:691.305000px;}
.y13{bottom:699.945000px;}
.y54{bottom:700.485000px;}
.y7f{bottom:705.705000px;}
.yb9{bottom:708.585000px;}
.y12{bottom:715.425000px;}
.y53{bottom:717.765000px;}
.yb8{bottom:725.865000px;}
.y11{bottom:730.905000px;}
.y52{bottom:735.045000px;}
.yb7{bottom:743.145000px;}
.y10{bottom:746.385000px;}
.y8a{bottom:749.445000px;}
.ye3{bottom:750.705000px;}
.y51{bottom:752.145000px;}
.yb6{bottom:760.425000px;}
.yf{bottom:762.045000px;}
.ye2{bottom:765.645000px;}
.y89{bottom:768.525000px;}
.y50{bottom:769.425000px;}
.ye{bottom:777.525000px;}
.y88{bottom:780.765000px;}
.ye1{bottom:781.125000px;}
.y7b{bottom:786.345000px;}
.y3e{bottom:786.705000px;}
.yd{bottom:793.005000px;}
.ye0{bottom:796.605000px;}
.yb5{bottom:798.945000px;}
.y3d{bottom:803.985000px;}
.ydf{bottom:812.085000px;}
.ya2{bottom:820.905000px;}
.y3c{bottom:821.265000px;}
.yde{bottom:827.745000px;}
.y3b{bottom:838.545000px;}
.ydd{bottom:843.225000px;}
.y69{bottom:848.445000px;}
.yc{bottom:853.485000px;}
.y3a{bottom:855.645000px;}
.yb4{bottom:857.625000px;}
.ydc{bottom:858.705000px;}
.y68{bottom:865.725000px;}
.y39{bottom:872.925000px;}
.yb{bottom:873.465000px;}
.ydb{bottom:874.185000px;}
.y67{bottom:883.005000px;}
.ya{bottom:884.625000px;}
.yda{bottom:889.665000px;}
.y38{bottom:890.205000px;}
.y9{bottom:900.150000px;}
.y66{bottom:900.330000px;}
.yd9{bottom:905.370000px;}
.y37{bottom:907.530000px;}
.y65{bottom:917.610000px;}
.y8{bottom:920.130000px;}
.yd8{bottom:920.850000px;}
.y36{bottom:924.810000px;}
.y7{bottom:931.110000px;}
.y64{bottom:934.890000px;}
.yd7{bottom:936.330000px;}
.y35{bottom:942.090000px;}
.y6{bottom:947.130000px;}
.yd6{bottom:951.810000px;}
.y63{bottom:951.990000px;}
.y34{bottom:959.190000px;}
.yd5{bottom:967.470000px;}
.y62{bottom:968.910000px;}
.y33{bottom:976.470000px;}
.yd4{bottom:982.950000px;}
.y61{bottom:986.190000px;}
.y32{bottom:993.750000px;}
.yd3{bottom:998.430000px;}
.y5{bottom:999.510000px;}
.y31{bottom:1011.030000px;}
.yd2{bottom:1013.910000px;}
.y4{bottom:1022.910000px;}
.y60{bottom:1025.070000px;}
.y7a{bottom:1027.950000px;}
.y30{bottom:1028.310000px;}
.yd1{bottom:1029.570000px;}
.y2e{bottom:1148.220000px;}
.y3{bottom:1168.920000px;}
.y2{bottom:1189.080000px;}
.y1{bottom:1209.060000px;}
.h6{height:34.998047px;}
.ha{height:36.900000px;}
.hf{height:37.705078px;}
.hd{height:50.171484px;}
.h5{height:52.998047px;}
.h2{height:53.302500px;}
.h7{height:54.421875px;}
.he{height:55.503491px;}
.h9{height:58.651172px;}
.h4{height:59.038594px;}
.hb{height:60.226875px;}
.hc{height:61.423863px;}
.h8{height:72.562500px;}
.h3{height:81.995625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:48.960000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:16.020000px;}
.x2{left:187.230000px;}
.x1{left:202.170000px;}
.xb{left:204.330000px;}
.x7{left:206.490000px;}
.x3{left:210.990000px;}
.x1e{left:214.230000px;}
.x4{left:219.450000px;}
.x1d{left:241.230000px;}
.x14{left:258.150000px;}
.x1c{left:268.230000px;}
.x10{left:275.250000px;}
.x8{left:311.475000px;}
.x5{left:319.035000px;}
.x9{left:322.095000px;}
.x12{left:348.195000px;}
.x16{left:369.975000px;}
.x11{left:374.835000px;}
.xa{left:382.935000px;}
.x19{left:384.375000px;}
.xd{left:424.155000px;}
.xc{left:446.655000px;}
.x6{left:455.115000px;}
.x15{left:583.305000px;}
.x13{left:624.165000px;}
.xf{left:628.485000px;}
.x17{left:654.765000px;}
.x18{left:683.430000px;}
.x1b{left:702.690000px;}
.x1a{left:709.710000px;}
@media print{
.v8{vertical-align:-66.560000pt;}
.v6{vertical-align:-61.440000pt;}
.va{vertical-align:-56.960000pt;}
.v7{vertical-align:-42.880000pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v9{vertical-align:23.680000pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls1f{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.109867pt;}
.ls20{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.348160pt;}
.ls2{letter-spacing:0.368640pt;}
.lsf{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.651520pt;}
.lsb{letter-spacing:0.758187pt;}
.ls8{letter-spacing:4.000000pt;}
.ls22{letter-spacing:19.296000pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls1e{letter-spacing:43.616000pt;}
.ls1a{letter-spacing:44.112640pt;}
.ls19{letter-spacing:178.720000pt;}
.ls17{letter-spacing:230.560000pt;}
.ls10{letter-spacing:500.160000pt;}
.lsa{letter-spacing:594.880000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws13{word-spacing:-12.112000pt;}
.ws4{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.888000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.360000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.295360pt;}
._2{width:1.491413pt;}
._10{width:2.575787pt;}
._3{width:3.488000pt;}
._4{width:4.763947pt;}
._f{width:5.876053pt;}
._e{width:7.199360pt;}
._d{width:8.112000pt;}
._c{width:9.822720pt;}
._b{width:10.880000pt;}
._11{width:11.863467pt;}
._7{width:13.387947pt;}
._8{width:14.736000pt;}
._17{width:15.829760pt;}
._a{width:17.375360pt;}
._9{width:18.480000pt;}
._5{width:20.016000pt;}
._6{width:21.157333pt;}
._1b{width:25.285120pt;}
._1a{width:26.294400pt;}
._18{width:33.359360pt;}
._19{width:34.307413pt;}
._13{width:40.614187pt;}
._15{width:49.686400pt;}
._14{width:66.694400pt;}
._0{width:82.693120pt;}
._16{width:105.760853pt;}
._12{width:134.605227pt;}
.fs7{font-size:29.440000pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:18.880000pt;}
.y2d{bottom:136.320000pt;}
.y2c{bottom:154.266667pt;}
.yb3{bottom:208.666667pt;}
.y5f{bottom:210.106667pt;}
.y4f{bottom:210.906667pt;}
.y2b{bottom:213.146667pt;}
.y79{bottom:213.946667pt;}
.y7e{bottom:218.586667pt;}
.y5e{bottom:220.986667pt;}
.yb2{bottom:224.026667pt;}
.y4e{bottom:226.266667pt;}
.ya1{bottom:226.426667pt;}
.y2a{bottom:228.346667pt;}
.y78{bottom:229.306667pt;}
.y7d{bottom:230.586667pt;}
.yd0{bottom:238.746667pt;}
.yb1{bottom:239.226667pt;}
.y4d{bottom:241.626667pt;}
.y29{bottom:243.706667pt;}
.y77{bottom:244.506667pt;}
.ycf{bottom:252.506667pt;}
.yb0{bottom:254.586667pt;}
.y4c{bottom:256.826667pt;}
.ya0{bottom:256.986667pt;}
.y28{bottom:259.066667pt;}
.y76{bottom:259.866667pt;}
.yce{bottom:266.426667pt;}
.yaf{bottom:269.946667pt;}
.y4b{bottom:272.186667pt;}
.y27{bottom:274.426667pt;}
.y75{bottom:275.226667pt;}
.ycd{bottom:280.186667pt;}
.yae{bottom:285.306667pt;}
.y4a{bottom:287.546667pt;}
.y9f{bottom:287.706667pt;}
.y26{bottom:289.786667pt;}
.y74{bottom:290.586667pt;}
.ycc{bottom:293.946667pt;}
.yad{bottom:300.346667pt;}
.y9e{bottom:303.066667pt;}
.y25{bottom:305.146667pt;}
.y73{bottom:305.946667pt;}
.ycb{bottom:307.706667pt;}
.yac{bottom:315.866667pt;}
.y87{bottom:317.786667pt;}
.y49{bottom:318.266667pt;}
.y9d{bottom:318.426667pt;}
.y24{bottom:320.346667pt;}
.y72{bottom:321.306667pt;}
.yca{bottom:321.626667pt;}
.yab{bottom:331.226667pt;}
.y86{bottom:332.826667pt;}
.y48{bottom:333.466667pt;}
.y9c{bottom:333.626667pt;}
.yc9{bottom:335.386667pt;}
.y71{bottom:336.506667pt;}
.y85{bottom:346.586667pt;}
.y47{bottom:348.826667pt;}
.y9b{bottom:348.986667pt;}
.yc8{bottom:349.146667pt;}
.y70{bottom:351.866667pt;}
.y23{bottom:354.746667pt;}
.y84{bottom:360.346667pt;}
.yaa{bottom:361.946667pt;}
.yc7{bottom:362.906667pt;}
.y9a{bottom:364.066667pt;}
.y46{bottom:364.226667pt;}
.y6f{bottom:367.266667pt;}
.yc6{bottom:376.866667pt;}
.ya9{bottom:377.346667pt;}
.y45{bottom:379.586667pt;}
.y99{bottom:379.746667pt;}
.y6e{bottom:382.626667pt;}
.yc5{bottom:390.626667pt;}
.ya8{bottom:392.706667pt;}
.y44{bottom:394.946667pt;}
.y98{bottom:395.106667pt;}
.y6d{bottom:397.986667pt;}
.y22{bottom:407.106667pt;}
.ya7{bottom:407.906667pt;}
.y43{bottom:410.306667pt;}
.y97{bottom:410.466667pt;}
.y6c{bottom:413.346667pt;}
.ya6{bottom:423.266667pt;}
.yc4{bottom:423.746667pt;}
.y42{bottom:425.506667pt;}
.y96{bottom:425.666667pt;}
.y21{bottom:428.866667pt;}
.y6b{bottom:436.226667pt;}
.ya5{bottom:438.626667pt;}
.y41{bottom:440.866667pt;}
.y95{bottom:441.026667pt;}
.y20{bottom:442.626667pt;}
.y6a{bottom:447.106667pt;}
.ya4{bottom:453.986667pt;}
.y40{bottom:455.906667pt;}
.y94{bottom:456.386667pt;}
.y1f{bottom:456.546667pt;}
.y3f{bottom:466.786667pt;}
.ya3{bottom:469.346667pt;}
.y1e{bottom:470.306667pt;}
.y93{bottom:471.746667pt;}
.yc3{bottom:476.546667pt;}
.y1d{bottom:484.066667pt;}
.y5d{bottom:484.706667pt;}
.y92{bottom:487.106667pt;}
.yc2{bottom:491.906667pt;}
.y1c{bottom:497.826667pt;}
.y5c{bottom:499.906667pt;}
.y91{bottom:502.306667pt;}
.y7c{bottom:504.866667pt;}
.yc1{bottom:507.266667pt;}
.y1b{bottom:511.746667pt;}
.y5b{bottom:515.266667pt;}
.y90{bottom:517.666667pt;}
.yc0{bottom:522.466667pt;}
.y1a{bottom:525.506667pt;}
.y5a{bottom:530.626667pt;}
.y8f{bottom:533.026667pt;}
.ybf{bottom:537.826667pt;}
.y19{bottom:539.266667pt;}
.y59{bottom:545.986667pt;}
.y8e{bottom:548.386667pt;}
.y18{bottom:553.026667pt;}
.ybe{bottom:553.186667pt;}
.y58{bottom:561.346667pt;}
.y83{bottom:562.466667pt;}
.y8d{bottom:563.426667pt;}
.y17{bottom:566.946667pt;}
.ybd{bottom:568.546667pt;}
.y57{bottom:576.706667pt;}
.y8c{bottom:578.786667pt;}
.y16{bottom:580.733333pt;}
.y82{bottom:583.133333pt;}
.ybc{bottom:583.933333pt;}
.y56{bottom:591.933333pt;}
.y15{bottom:594.493333pt;}
.ybb{bottom:599.293333pt;}
.y81{bottom:599.773333pt;}
.y55{bottom:607.293333pt;}
.y14{bottom:608.253333pt;}
.y8b{bottom:613.373333pt;}
.y80{bottom:613.533333pt;}
.yba{bottom:614.493333pt;}
.y13{bottom:622.173333pt;}
.y54{bottom:622.653333pt;}
.y7f{bottom:627.293333pt;}
.yb9{bottom:629.853333pt;}
.y12{bottom:635.933333pt;}
.y53{bottom:638.013333pt;}
.yb8{bottom:645.213333pt;}
.y11{bottom:649.693333pt;}
.y52{bottom:653.373333pt;}
.yb7{bottom:660.573333pt;}
.y10{bottom:663.453333pt;}
.y8a{bottom:666.173333pt;}
.ye3{bottom:667.293333pt;}
.y51{bottom:668.573333pt;}
.yb6{bottom:675.933333pt;}
.yf{bottom:677.373333pt;}
.ye2{bottom:680.573333pt;}
.y89{bottom:683.133333pt;}
.y50{bottom:683.933333pt;}
.ye{bottom:691.133333pt;}
.y88{bottom:694.013333pt;}
.ye1{bottom:694.333333pt;}
.y7b{bottom:698.973333pt;}
.y3e{bottom:699.293333pt;}
.yd{bottom:704.893333pt;}
.ye0{bottom:708.093333pt;}
.yb5{bottom:710.173333pt;}
.y3d{bottom:714.653333pt;}
.ydf{bottom:721.853333pt;}
.ya2{bottom:729.693333pt;}
.y3c{bottom:730.013333pt;}
.yde{bottom:735.773333pt;}
.y3b{bottom:745.373333pt;}
.ydd{bottom:749.533333pt;}
.y69{bottom:754.173333pt;}
.yc{bottom:758.653333pt;}
.y3a{bottom:760.573333pt;}
.yb4{bottom:762.333333pt;}
.ydc{bottom:763.293333pt;}
.y68{bottom:769.533333pt;}
.y39{bottom:775.933333pt;}
.yb{bottom:776.413333pt;}
.ydb{bottom:777.053333pt;}
.y67{bottom:784.893333pt;}
.ya{bottom:786.333333pt;}
.yda{bottom:790.813333pt;}
.y38{bottom:791.293333pt;}
.y9{bottom:800.133333pt;}
.y66{bottom:800.293333pt;}
.yd9{bottom:804.773333pt;}
.y37{bottom:806.693333pt;}
.y65{bottom:815.653333pt;}
.y8{bottom:817.893333pt;}
.yd8{bottom:818.533333pt;}
.y36{bottom:822.053333pt;}
.y7{bottom:827.653333pt;}
.y64{bottom:831.013333pt;}
.yd7{bottom:832.293333pt;}
.y35{bottom:837.413333pt;}
.y6{bottom:841.893333pt;}
.yd6{bottom:846.053333pt;}
.y63{bottom:846.213333pt;}
.y34{bottom:852.613333pt;}
.yd5{bottom:859.973333pt;}
.y62{bottom:861.253333pt;}
.y33{bottom:867.973333pt;}
.yd4{bottom:873.733333pt;}
.y61{bottom:876.613333pt;}
.y32{bottom:883.333333pt;}
.yd3{bottom:887.493333pt;}
.y5{bottom:888.453333pt;}
.y31{bottom:898.693333pt;}
.yd2{bottom:901.253333pt;}
.y4{bottom:909.253333pt;}
.y60{bottom:911.173333pt;}
.y7a{bottom:913.733333pt;}
.y30{bottom:914.053333pt;}
.yd1{bottom:915.173333pt;}
.y2e{bottom:1020.640000pt;}
.y3{bottom:1039.040000pt;}
.y2{bottom:1056.960000pt;}
.y1{bottom:1074.720000pt;}
.h6{height:31.109375pt;}
.ha{height:32.800000pt;}
.hf{height:33.515625pt;}
.hd{height:44.596875pt;}
.h5{height:47.109375pt;}
.h2{height:47.380000pt;}
.h7{height:48.375000pt;}
.he{height:49.336436pt;}
.h9{height:52.134375pt;}
.h4{height:52.478750pt;}
.hb{height:53.535000pt;}
.hc{height:54.598989pt;}
.h8{height:64.500000pt;}
.h3{height:72.885000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:43.520000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:14.240000pt;}
.x2{left:166.426667pt;}
.x1{left:179.706667pt;}
.xb{left:181.626667pt;}
.x7{left:183.546667pt;}
.x3{left:187.546667pt;}
.x1e{left:190.426667pt;}
.x4{left:195.066667pt;}
.x1d{left:214.426667pt;}
.x14{left:229.466667pt;}
.x1c{left:238.426667pt;}
.x10{left:244.666667pt;}
.x8{left:276.866667pt;}
.x5{left:283.586667pt;}
.x9{left:286.306667pt;}
.x12{left:309.506667pt;}
.x16{left:328.866667pt;}
.x11{left:333.186667pt;}
.xa{left:340.386667pt;}
.x19{left:341.666667pt;}
.xd{left:377.026667pt;}
.xc{left:397.026667pt;}
.x6{left:404.546667pt;}
.x15{left:518.493333pt;}
.x13{left:554.813333pt;}
.xf{left:558.653333pt;}
.x17{left:582.013333pt;}
.x18{left:607.493333pt;}
.x1b{left:624.613333pt;}
.x1a{left:630.853333pt;}
}




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