
    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_1fcbca7e1d86457833ebe2e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902344;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_2ef0d4ff23e5daffa9673e97.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.902344;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_d77b91c6f38d26b23578fbbe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d65ef3e88cf4c8d00548a2c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_04daede8e1ad2c6c1b04a686.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_100edfea53ebcdc6f3e0aba0.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_84f72f8b75e247b7250a290d.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_3c60b31581cffdfa6de71879.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_c097e1f9080a3e01367b052a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cea15acde696f6397e257a62.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5e2e175a19aa5beb311e2312.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9c4b01522ebc685fc37dc7c1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6c1096e922332c621a8e3d5a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0977f71e980d61f9e4889b5b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5717c5f6fa4c060872ed0380.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.035156;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:ff11;src:url('chunks/assets/font_75625cb42167e93cbe694a80.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916016;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:ff12;src:url('chunks/assets/font_126caa48de933d27249f4f48.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.682617;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:ff13;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff13{font-family:ff13;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m2{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);}
.v6{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.144720px;}
.lsd{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.256320px;}
.lsb{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.313800px;}
.ls1{letter-spacing:0.360000px;}
.ls19{letter-spacing:3.905280px;}
.ls18{letter-spacing:7.505280px;}
.ls1a{letter-spacing:16.865280px;}
.ls1b{letter-spacing:20.465280px;}
.ls13{letter-spacing:29.825280px;}
.ls17{letter-spacing:33.425280px;}
.ls14{letter-spacing:39.881280px;}
.ls4{letter-spacing:41.220000px;}
.ls16{letter-spacing:43.481280px;}
.lsf{letter-spacing:59.345280px;}
.lse{letter-spacing:62.945280px;}
.ls0{letter-spacing:1072.440000px;}
.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;}
}
.ws0{word-spacing:-20.870824px;}
.wsc{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:-8.280000px;}
.ws8{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.wsd{word-spacing:0.077760px;}
._5{margin-left:-6.022080px;}
._2{margin-left:-5.016960px;}
._3{margin-left:-3.708000px;}
._4{margin-left:-2.636065px;}
._0{margin-left:-1.138409px;}
._1{width:1.454633px;}
._7{width:2.573981px;}
._a{width:3.902957px;}
._b{width:5.323561px;}
._9{width:6.433687px;}
._6{width:7.589520px;}
._e{width:8.809920px;}
._f{width:10.068480px;}
._c{width:11.214487px;}
._d{width:12.549600px;}
._8{width:13.924080px;}
._15{width:15.155280px;}
._12{width:19.077120px;}
._13{width:20.350655px;}
._10{width:21.991680px;}
._11{width:23.207450px;}
._1a{width:24.220459px;}
._18{width:26.098560px;}
._19{width:27.257855px;}
._16{width:28.350720px;}
._17{width:30.096273px;}
._1c{width:32.457600px;}
._1d{width:33.583680px;}
._14{width:34.842240px;}
._1b{width:38.705154px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:75.893905px;}
.fs5{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:13.680000px;}
.y5{bottom:69.696000px;}
.y4{bottom:101.916000px;}
.y79{bottom:121.716000px;}
.y6c{bottom:122.976000px;}
.y9d{bottom:132.156000px;}
.y3d{bottom:142.596000px;}
.y78{bottom:143.496000px;}
.y6b{bottom:144.936000px;}
.y9c{bottom:153.930000px;}
.y80{bottom:158.610000px;}
.y3c{bottom:164.370000px;}
.y77{bottom:165.270000px;}
.y6a{bottom:166.710000px;}
.y9b{bottom:175.710000px;}
.y7f{bottom:180.390000px;}
.y3b{bottom:186.330000px;}
.y76{bottom:187.230000px;}
.y69{bottom:188.490000px;}
.y9a{bottom:197.490000px;}
.y7e{bottom:202.170000px;}
.y3a{bottom:208.110000px;}
.y75{bottom:209.010000px;}
.y68{bottom:210.270000px;}
.y99{bottom:219.450000px;}
.y7d{bottom:224.130000px;}
.y39{bottom:229.890000px;}
.y74{bottom:230.790000px;}
.y67{bottom:232.050000px;}
.y98{bottom:241.230000px;}
.y7c{bottom:245.910000px;}
.y38{bottom:251.670000px;}
.y73{bottom:252.570000px;}
.y66{bottom:254.010000px;}
.y97{bottom:263.010000px;}
.y7b{bottom:267.690000px;}
.y37{bottom:273.450000px;}
.y72{bottom:274.350000px;}
.y65{bottom:275.790000px;}
.y96{bottom:284.790000px;}
.y36{bottom:295.410000px;}
.y71{bottom:296.310000px;}
.y64{bottom:297.570000px;}
.y95{bottom:306.570000px;}
.y35{bottom:313.410000px;}
.y7a{bottom:313.590000px;}
.y70{bottom:318.090000px;}
.y63{bottom:319.350000px;}
.y34{bottom:327.090000px;}
.y94{bottom:328.530000px;}
.y6f{bottom:339.915000px;}
.y62{bottom:341.355000px;}
.y33{bottom:341.715000px;}
.y93{bottom:350.355000px;}
.y32{bottom:358.995000px;}
.y6e{bottom:361.695000px;}
.y61{bottom:363.135000px;}
.y92{bottom:372.135000px;}
.y31{bottom:376.275000px;}
.y6d{bottom:384.735000px;}
.y60{bottom:384.915000px;}
.y30{bottom:393.375000px;}
.y91{bottom:393.915000px;}
.y5f{bottom:406.695000px;}
.y2f{bottom:410.655000px;}
.y90{bottom:415.875000px;}
.y2e{bottom:427.935000px;}
.y5e{bottom:428.475000px;}
.y8f{bottom:437.655000px;}
.y2d{bottom:445.215000px;}
.y5d{bottom:450.435000px;}
.y8e{bottom:459.435000px;}
.y2c{bottom:462.495000px;}
.y5c{bottom:472.215000px;}
.y2b{bottom:479.775000px;}
.y8d{bottom:481.215000px;}
.y5b{bottom:493.995000px;}
.y2a{bottom:496.875000px;}
.y8c{bottom:502.995000px;}
.y29{bottom:514.155000px;}
.y5a{bottom:515.775000px;}
.y8b{bottom:524.955000px;}
.y28{bottom:531.435000px;}
.y59{bottom:537.555000px;}
.y8a{bottom:546.735000px;}
.y27{bottom:548.715000px;}
.y58{bottom:559.515000px;}
.y26{bottom:565.995000px;}
.y89{bottom:568.515000px;}
.y57{bottom:581.295000px;}
.y25{bottom:583.275000px;}
.y88{bottom:590.295000px;}
.y24{bottom:600.375000px;}
.y56{bottom:603.075000px;}
.y87{bottom:612.285000px;}
.y23{bottom:617.685000px;}
.y55{bottom:624.885000px;}
.y86{bottom:634.065000px;}
.y22{bottom:634.965000px;}
.y54{bottom:646.845000px;}
.y21{bottom:652.245000px;}
.y85{bottom:655.845000px;}
.y53{bottom:668.625000px;}
.y20{bottom:669.525000px;}
.y84{bottom:677.625000px;}
.y1f{bottom:686.625000px;}
.y52{bottom:690.405000px;}
.y83{bottom:699.405000px;}
.y1e{bottom:703.905000px;}
.y51{bottom:712.185000px;}
.y1d{bottom:721.185000px;}
.y82{bottom:728.205000px;}
.y50{bottom:733.965000px;}
.y1c{bottom:738.465000px;}
.y81{bottom:739.725000px;}
.y1b{bottom:755.745000px;}
.y4f{bottom:755.925000px;}
.y1a{bottom:773.025000px;}
.y4e{bottom:777.705000px;}
.y19{bottom:790.665000px;}
.y4d{bottom:799.485000px;}
.y18{bottom:813.345000px;}
.y4c{bottom:821.265000px;}
.y17{bottom:828.825000px;}
.y4b{bottom:843.225000px;}
.y16{bottom:844.485000px;}
.y15{bottom:855.465000px;}
.y4a{bottom:865.005000px;}
.y14{bottom:875.490000px;}
.y49{bottom:886.830000px;}
.y13{bottom:887.190000px;}
.y12{bottom:906.270000px;}
.y48{bottom:908.610000px;}
.y11{bottom:925.170000px;}
.y47{bottom:930.390000px;}
.y10{bottom:944.250000px;}
.y46{bottom:952.350000px;}
.yf{bottom:963.150000px;}
.y45{bottom:974.130000px;}
.ye{bottom:982.230000px;}
.y44{bottom:995.910000px;}
.yd{bottom:1001.130000px;}
.y43{bottom:1017.690000px;}
.yc{bottom:1020.570000px;}
.y42{bottom:1039.650000px;}
.yb{bottom:1041.990000px;}
.ya{bottom:1059.270000px;}
.y41{bottom:1061.430000px;}
.y9{bottom:1076.550000px;}
.y40{bottom:1083.210000px;}
.y8{bottom:1093.830000px;}
.y3f{bottom:1104.990000px;}
.y7{bottom:1111.110000px;}
.y3e{bottom:1126.770000px;}
.y6{bottom:1128.390000px;}
.y3{bottom:1162.620000px;}
.y1{bottom:1175.580000px;}
.he{height:25.136719px;}
.h17{height:29.464453px;}
.h11{height:34.036523px;}
.h2{height:34.200000px;}
.h18{height:34.419375px;}
.h5{height:37.705078px;}
.h6{height:39.760312px;}
.h4{height:40.842773px;}
.h9{height:41.726953px;}
.h7{height:42.164648px;}
.hf{height:43.136719px;}
.h12{height:46.251562px;}
.hb{height:46.736719px;}
.h15{height:48.224531px;}
.h10{height:49.255313px;}
.h14{height:50.100469px;}
.h3{height:50.917102px;}
.hd{height:53.224453px;}
.h8{height:54.457031px;}
.hc{height:54.596250px;}
.ha{height:54.864844px;}
.h13{height:65.884219px;}
.h16{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.900000px;}
.w3{width:616.605000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x14{left:105.695987px;}
.x1{left:108.036000px;}
.xd{left:113.435987px;}
.xe{left:117.935987px;}
.x8{left:126.215987px;}
.x1a{left:129.275987px;}
.x9{left:134.495987px;}
.x13{left:139.895987px;}
.x19{left:144.035987px;}
.x17{left:149.255987px;}
.x12{left:161.129987px;}
.x5{left:164.009987px;}
.x3{left:171.930000px;}
.xc{left:183.269987px;}
.x7{left:193.349987px;}
.xb{left:229.709987px;}
.xf{left:292.754987px;}
.xa{left:295.634987px;}
.x18{left:343.334987px;}
.x16{left:362.594987px;}
.x11{left:418.574987px;}
.x10{left:420.374987px;}
.x6{left:446.474987px;}
.x15{left:668.129987px;}
.x4{left:785.129987px;}
@media print{
.v6{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.128640pt;}
.lsd{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.227840pt;}
.lsb{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.278933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls19{letter-spacing:3.471360pt;}
.ls18{letter-spacing:6.671360pt;}
.ls1a{letter-spacing:14.991360pt;}
.ls1b{letter-spacing:18.191360pt;}
.ls13{letter-spacing:26.511360pt;}
.ls17{letter-spacing:29.711360pt;}
.ls14{letter-spacing:35.450027pt;}
.ls4{letter-spacing:36.640000pt;}
.ls16{letter-spacing:38.650027pt;}
.lsf{letter-spacing:52.751360pt;}
.lse{letter-spacing:55.951360pt;}
.ls0{letter-spacing:953.280000pt;}
.ws0{word-spacing:-18.551843pt;}
.wsc{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:-7.360000pt;}
.ws8{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.wsd{word-spacing:0.069120pt;}
._5{margin-left:-5.352960pt;}
._2{margin-left:-4.459520pt;}
._3{margin-left:-3.296000pt;}
._4{margin-left:-2.343169pt;}
._0{margin-left:-1.011919pt;}
._1{width:1.293007pt;}
._7{width:2.287983pt;}
._a{width:3.469295pt;}
._b{width:4.732055pt;}
._9{width:5.718833pt;}
._6{width:6.746240pt;}
._e{width:7.831040pt;}
._f{width:8.949760pt;}
._c{width:9.968433pt;}
._d{width:11.155200pt;}
._8{width:12.376960pt;}
._15{width:13.471360pt;}
._12{width:16.957440pt;}
._13{width:18.089471pt;}
._10{width:19.548160pt;}
._11{width:20.628845pt;}
._1a{width:21.529297pt;}
._18{width:23.198720pt;}
._19{width:24.229205pt;}
._16{width:25.200640pt;}
._17{width:26.752242pt;}
._1c{width:28.851200pt;}
._1d{width:29.852160pt;}
._14{width:30.970880pt;}
._1b{width:34.404582pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:67.461249pt;}
.fs5{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:61.952000pt;}
.y4{bottom:90.592000pt;}
.y79{bottom:108.192000pt;}
.y6c{bottom:109.312000pt;}
.y9d{bottom:117.472000pt;}
.y3d{bottom:126.752000pt;}
.y78{bottom:127.552000pt;}
.y6b{bottom:128.832000pt;}
.y9c{bottom:136.826667pt;}
.y80{bottom:140.986667pt;}
.y3c{bottom:146.106667pt;}
.y77{bottom:146.906667pt;}
.y6a{bottom:148.186667pt;}
.y9b{bottom:156.186667pt;}
.y7f{bottom:160.346667pt;}
.y3b{bottom:165.626667pt;}
.y76{bottom:166.426667pt;}
.y69{bottom:167.546667pt;}
.y9a{bottom:175.546667pt;}
.y7e{bottom:179.706667pt;}
.y3a{bottom:184.986667pt;}
.y75{bottom:185.786667pt;}
.y68{bottom:186.906667pt;}
.y99{bottom:195.066667pt;}
.y7d{bottom:199.226667pt;}
.y39{bottom:204.346667pt;}
.y74{bottom:205.146667pt;}
.y67{bottom:206.266667pt;}
.y98{bottom:214.426667pt;}
.y7c{bottom:218.586667pt;}
.y38{bottom:223.706667pt;}
.y73{bottom:224.506667pt;}
.y66{bottom:225.786667pt;}
.y97{bottom:233.786667pt;}
.y7b{bottom:237.946667pt;}
.y37{bottom:243.066667pt;}
.y72{bottom:243.866667pt;}
.y65{bottom:245.146667pt;}
.y96{bottom:253.146667pt;}
.y36{bottom:262.586667pt;}
.y71{bottom:263.386667pt;}
.y64{bottom:264.506667pt;}
.y95{bottom:272.506667pt;}
.y35{bottom:278.586667pt;}
.y7a{bottom:278.746667pt;}
.y70{bottom:282.746667pt;}
.y63{bottom:283.866667pt;}
.y34{bottom:290.746667pt;}
.y94{bottom:292.026667pt;}
.y6f{bottom:302.146667pt;}
.y62{bottom:303.426667pt;}
.y33{bottom:303.746667pt;}
.y93{bottom:311.426667pt;}
.y32{bottom:319.106667pt;}
.y6e{bottom:321.506667pt;}
.y61{bottom:322.786667pt;}
.y92{bottom:330.786667pt;}
.y31{bottom:334.466667pt;}
.y6d{bottom:341.986667pt;}
.y60{bottom:342.146667pt;}
.y30{bottom:349.666667pt;}
.y91{bottom:350.146667pt;}
.y5f{bottom:361.506667pt;}
.y2f{bottom:365.026667pt;}
.y90{bottom:369.666667pt;}
.y2e{bottom:380.386667pt;}
.y5e{bottom:380.866667pt;}
.y8f{bottom:389.026667pt;}
.y2d{bottom:395.746667pt;}
.y5d{bottom:400.386667pt;}
.y8e{bottom:408.386667pt;}
.y2c{bottom:411.106667pt;}
.y5c{bottom:419.746667pt;}
.y2b{bottom:426.466667pt;}
.y8d{bottom:427.746667pt;}
.y5b{bottom:439.106667pt;}
.y2a{bottom:441.666667pt;}
.y8c{bottom:447.106667pt;}
.y29{bottom:457.026667pt;}
.y5a{bottom:458.466667pt;}
.y8b{bottom:466.626667pt;}
.y28{bottom:472.386667pt;}
.y59{bottom:477.826667pt;}
.y8a{bottom:485.986667pt;}
.y27{bottom:487.746667pt;}
.y58{bottom:497.346667pt;}
.y26{bottom:503.106667pt;}
.y89{bottom:505.346667pt;}
.y57{bottom:516.706667pt;}
.y25{bottom:518.466667pt;}
.y88{bottom:524.706667pt;}
.y24{bottom:533.666667pt;}
.y56{bottom:536.066667pt;}
.y87{bottom:544.253333pt;}
.y23{bottom:549.053333pt;}
.y55{bottom:555.453333pt;}
.y86{bottom:563.613333pt;}
.y22{bottom:564.413333pt;}
.y54{bottom:574.973333pt;}
.y21{bottom:579.773333pt;}
.y85{bottom:582.973333pt;}
.y53{bottom:594.333333pt;}
.y20{bottom:595.133333pt;}
.y84{bottom:602.333333pt;}
.y1f{bottom:610.333333pt;}
.y52{bottom:613.693333pt;}
.y83{bottom:621.693333pt;}
.y1e{bottom:625.693333pt;}
.y51{bottom:633.053333pt;}
.y1d{bottom:641.053333pt;}
.y82{bottom:647.293333pt;}
.y50{bottom:652.413333pt;}
.y1c{bottom:656.413333pt;}
.y81{bottom:657.533333pt;}
.y1b{bottom:671.773333pt;}
.y4f{bottom:671.933333pt;}
.y1a{bottom:687.133333pt;}
.y4e{bottom:691.293333pt;}
.y19{bottom:702.813333pt;}
.y4d{bottom:710.653333pt;}
.y18{bottom:722.973333pt;}
.y4c{bottom:730.013333pt;}
.y17{bottom:736.733333pt;}
.y4b{bottom:749.533333pt;}
.y16{bottom:750.653333pt;}
.y15{bottom:760.413333pt;}
.y4a{bottom:768.893333pt;}
.y14{bottom:778.213333pt;}
.y49{bottom:788.293333pt;}
.y13{bottom:788.613333pt;}
.y12{bottom:805.573333pt;}
.y48{bottom:807.653333pt;}
.y11{bottom:822.373333pt;}
.y47{bottom:827.013333pt;}
.y10{bottom:839.333333pt;}
.y46{bottom:846.533333pt;}
.yf{bottom:856.133333pt;}
.y45{bottom:865.893333pt;}
.ye{bottom:873.093333pt;}
.y44{bottom:885.253333pt;}
.yd{bottom:889.893333pt;}
.y43{bottom:904.613333pt;}
.yc{bottom:907.173333pt;}
.y42{bottom:924.133333pt;}
.yb{bottom:926.213333pt;}
.ya{bottom:941.573333pt;}
.y41{bottom:943.493333pt;}
.y9{bottom:956.933333pt;}
.y40{bottom:962.853333pt;}
.y8{bottom:972.293333pt;}
.y3f{bottom:982.213333pt;}
.y7{bottom:987.653333pt;}
.y3e{bottom:1001.573333pt;}
.y6{bottom:1003.013333pt;}
.y3{bottom:1033.440000pt;}
.y1{bottom:1044.960000pt;}
.he{height:22.343750pt;}
.h17{height:26.190625pt;}
.h11{height:30.254687pt;}
.h2{height:30.400000pt;}
.h18{height:30.595000pt;}
.h5{height:33.515625pt;}
.h6{height:35.342500pt;}
.h4{height:36.304688pt;}
.h9{height:37.090625pt;}
.h7{height:37.479688pt;}
.hf{height:38.343750pt;}
.h12{height:41.112500pt;}
.hb{height:41.543750pt;}
.h15{height:42.866250pt;}
.h10{height:43.782500pt;}
.h14{height:44.533750pt;}
.h3{height:45.259646pt;}
.hd{height:47.310625pt;}
.h8{height:48.406250pt;}
.hc{height:48.530000pt;}
.ha{height:48.768750pt;}
.h13{height:58.563750pt;}
.h16{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.800000pt;}
.w3{width:548.093333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x14{left:93.951988pt;}
.x1{left:96.032000pt;}
.xd{left:100.831988pt;}
.xe{left:104.831988pt;}
.x8{left:112.191988pt;}
.x1a{left:114.911988pt;}
.x9{left:119.551988pt;}
.x13{left:124.351988pt;}
.x19{left:128.031988pt;}
.x17{left:132.671988pt;}
.x12{left:143.226655pt;}
.x5{left:145.786655pt;}
.x3{left:152.826667pt;}
.xc{left:162.906655pt;}
.x7{left:171.866655pt;}
.xb{left:204.186655pt;}
.xf{left:260.226655pt;}
.xa{left:262.786655pt;}
.x18{left:305.186655pt;}
.x16{left:322.306655pt;}
.x11{left:372.066655pt;}
.x10{left:373.666655pt;}
.x6{left:396.866655pt;}
.x15{left:593.893322pt;}
.x4{left:697.893322pt;}
}




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