
    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_3f3060b21cd618fe7e109a5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_0de7fd070cd7ca395d3ccdf2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.782000;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_463b8912a74926d2309b8fdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_007c5ba9e899a13636a32b13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_8305607ef4090fa43af79e55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_ae75057949007da7c712f626.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.745000;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_9c47167b802cb28104f44df0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903000;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_d6a4edfbc8e588a54f697ef2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_381cde8c4b29df098685fa20.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_6d48bc80e3463ab089cb8a99.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_7ec88d224ff170ad59d78141.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_f8d62e28a793de82069983c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_0de7fd070cd7ca395d3ccdf2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.782000;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_463b8912a74926d2309b8fdb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;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);}
.v3{vertical-align:-15.969600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.400000px;}
.v2{vertical-align:15.984000px;}
.v4{vertical-align:17.934000px;}
.ls10{letter-spacing:-5.184000px;}
.ls14{letter-spacing:-4.914000px;}
.lsd{letter-spacing:-2.106000px;}
.ls6{letter-spacing:-2.052000px;}
.lsa{letter-spacing:-1.890000px;}
.lsb{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.972000px;}
.lsc{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.096000px;}
.lsf{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.648000px;}
.ls0{letter-spacing:38.659200px;}
.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;}
}
.ws4{word-spacing:-15.660000px;}
.ws6{word-spacing:-15.228000px;}
.ws3{word-spacing:-15.012000px;}
.ws4d{word-spacing:-14.958000px;}
.ws1{word-spacing:-13.344000px;}
.ws5{word-spacing:-13.122000px;}
.ws2{word-spacing:-10.508400px;}
.ws0{word-spacing:-9.340800px;}
.ws29{word-spacing:-3.834000px;}
.ws3c{word-spacing:-2.484000px;}
.ws47{word-spacing:-2.430000px;}
.ws8{word-spacing:-2.256000px;}
.ws48{word-spacing:-1.674000px;}
.ws55{word-spacing:-1.536000px;}
.ws37{word-spacing:-1.350000px;}
.ws3a{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.918000px;}
.ws1c{word-spacing:-0.756000px;}
.ws20{word-spacing:-0.702000px;}
.ws32{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.378000px;}
.ws58{word-spacing:-0.192000px;}
.ws7{word-spacing:0.000000px;}
.ws2c{word-spacing:0.054000px;}
.ws30{word-spacing:0.270000px;}
.ws40{word-spacing:0.324000px;}
.ws4a{word-spacing:0.702000px;}
.ws4f{word-spacing:0.756000px;}
.ws22{word-spacing:0.918000px;}
.ws42{word-spacing:0.972000px;}
.ws38{word-spacing:1.026000px;}
.ws9{word-spacing:1.152000px;}
.ws3d{word-spacing:1.296000px;}
.ws57{word-spacing:1.392000px;}
.ws49{word-spacing:1.512000px;}
.ws1d{word-spacing:1.566000px;}
.ws36{word-spacing:1.728000px;}
.ws34{word-spacing:1.836000px;}
.ws2e{word-spacing:1.890000px;}
.ws28{word-spacing:1.944000px;}
.ws16{word-spacing:2.052000px;}
.ws4e{word-spacing:2.160000px;}
.ws11{word-spacing:2.226000px;}
.ws23{word-spacing:2.646000px;}
.ws2b{word-spacing:2.700000px;}
.ws43{word-spacing:2.808000px;}
.ws1a{word-spacing:3.078000px;}
.ws10{word-spacing:3.402000px;}
.ws1e{word-spacing:3.888000px;}
.ws35{word-spacing:3.996000px;}
.ws44{word-spacing:4.050000px;}
.wsf{word-spacing:4.158000px;}
.ws27{word-spacing:4.860000px;}
.ws46{word-spacing:5.184000px;}
.wsa{word-spacing:5.586000px;}
.ws2d{word-spacing:5.616000px;}
.ws12{word-spacing:5.670000px;}
.ws2f{word-spacing:5.724000px;}
.wsb{word-spacing:5.838000px;}
.ws56{word-spacing:6.144000px;}
.wsc{word-spacing:6.258000px;}
.ws4b{word-spacing:6.264000px;}
.ws15{word-spacing:6.342000px;}
.ws17{word-spacing:6.588000px;}
.wse{word-spacing:6.846000px;}
.ws18{word-spacing:7.128000px;}
.ws2a{word-spacing:7.560000px;}
.ws3b{word-spacing:7.722000px;}
.ws26{word-spacing:7.776000px;}
.wsd{word-spacing:7.854000px;}
.ws33{word-spacing:8.424000px;}
.ws3f{word-spacing:9.018000px;}
.ws31{word-spacing:9.126000px;}
.ws39{word-spacing:9.612000px;}
.ws1f{word-spacing:9.882000px;}
.ws52{word-spacing:9.936000px;}
.ws3e{word-spacing:10.368000px;}
.ws19{word-spacing:11.178000px;}
.ws13{word-spacing:11.466000px;}
.ws53{word-spacing:12.528000px;}
.ws1b{word-spacing:13.068000px;}
.ws50{word-spacing:14.418000px;}
.ws14{word-spacing:15.834000px;}
.ws51{word-spacing:19.548000px;}
.ws4c{word-spacing:21.384000px;}
.ws24{word-spacing:36.936000px;}
.ws41{word-spacing:47.628000px;}
.ws45{word-spacing:48.114000px;}
._1{margin-left:-5.328000px;}
._9{margin-left:-4.004400px;}
._a{margin-left:-2.508000px;}
._4{margin-left:-1.390200px;}
._2{width:1.428000px;}
._5{width:3.284400px;}
._c{width:4.373400px;}
._f{width:5.794800px;}
._10{width:7.241400px;}
._7{width:9.066600px;}
._3{width:13.696200px;}
._b{width:47.952000px;}
._e{width:49.464000px;}
._8{width:50.628000px;}
._d{width:53.946600px;}
._0{width:798.186000px;}
._6{width:1163.076600px;}
.fc5{color:rgb(16,15,13);}
.fc4{color:rgb(59,75,167);}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(244,114,22);}
.fc0{color:rgb(79,76,77);}
.fs3{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs4{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:22.381950px;}
.y1{bottom:46.871400px;}
.y3{bottom:47.797950px;}
.y71{bottom:51.146400px;}
.y72{bottom:51.282450px;}
.y73{bottom:51.403950px;}
.y35{bottom:110.073300px;}
.y70{bottom:111.697500px;}
.y34{bottom:126.570300px;}
.y6f{bottom:128.194500px;}
.y33{bottom:143.067300px;}
.y6e{bottom:144.691500px;}
.y32{bottom:159.564300px;}
.y6d{bottom:161.188500px;}
.y31{bottom:176.061300px;}
.y6c{bottom:177.685500px;}
.y30{bottom:192.558300px;}
.y6b{bottom:194.182500px;}
.y2f{bottom:209.064300px;}
.y6a{bottom:210.679500px;}
.y2e{bottom:225.561300px;}
.y69{bottom:227.176500px;}
.y2d{bottom:242.058300px;}
.y68{bottom:243.673500px;}
.y2c{bottom:258.555300px;}
.y67{bottom:260.170500px;}
.y2b{bottom:275.064300px;}
.y66{bottom:276.667500px;}
.y2a{bottom:291.561300px;}
.y65{bottom:293.164500px;}
.y29{bottom:308.058300px;}
.y64{bottom:309.661500px;}
.y28{bottom:324.567300px;}
.y63{bottom:326.158500px;}
.y27{bottom:341.064300px;}
.y62{bottom:342.655500px;}
.y26{bottom:357.561300px;}
.y61{bottom:359.152500px;}
.y60{bottom:375.649500px;}
.y25{bottom:390.555300px;}
.y5f{bottom:392.146500px;}
.y5e{bottom:408.643500px;}
.y5d{bottom:425.140500px;}
.y24{bottom:440.336550px;}
.y5c{bottom:441.637500px;}
.y5b{bottom:458.134500px;}
.y23{bottom:465.337050px;}
.y5a{bottom:474.631500px;}
.y22{bottom:481.832550px;}
.y59{bottom:491.128500px;}
.y21{bottom:498.328050px;}
.y58{bottom:507.625500px;}
.y20{bottom:514.823550px;}
.y57{bottom:524.122500px;}
.y1f{bottom:531.319050px;}
.y56{bottom:540.619500px;}
.y1e{bottom:547.814550px;}
.y55{bottom:557.116500px;}
.y1d{bottom:564.310050px;}
.y54{bottom:573.613500px;}
.y1c{bottom:580.805550px;}
.y53{bottom:590.110500px;}
.y1b{bottom:601.553550px;}
.y52{bottom:606.607500px;}
.y1a{bottom:618.049050px;}
.y51{bottom:623.104500px;}
.y50{bottom:639.601500px;}
.y19{bottom:651.050550px;}
.y4f{bottom:656.098500px;}
.y18{bottom:667.546050px;}
.y4e{bottom:672.595500px;}
.y17{bottom:684.041550px;}
.y4d{bottom:689.092500px;}
.y16{bottom:700.537050px;}
.y4c{bottom:705.589500px;}
.y15{bottom:717.032550px;}
.y14{bottom:733.528050px;}
.y4b{bottom:738.583500px;}
.y13{bottom:750.023550px;}
.y12{bottom:766.519050px;}
.y4a{bottom:771.577500px;}
.y49{bottom:788.074500px;}
.y11{bottom:799.519050px;}
.y48{bottom:804.571500px;}
.y10{bottom:816.019050px;}
.y47{bottom:821.068500px;}
.yf{bottom:832.519050px;}
.y46{bottom:837.565500px;}
.y45{bottom:854.062500px;}
.ye{bottom:867.647100px;}
.y44{bottom:870.559500px;}
.y43{bottom:887.056500px;}
.yd{bottom:902.771100px;}
.y42{bottom:903.562500px;}
.yc{bottom:919.271100px;}
.y41{bottom:920.059500px;}
.y40{bottom:936.556500px;}
.yb{bottom:939.763500px;}
.y3f{bottom:953.065500px;}
.ya{bottom:968.771100px;}
.y3e{bottom:969.562500px;}
.y3d{bottom:986.059500px;}
.y76{bottom:986.071500px;}
.y9{bottom:998.046450px;}
.y3c{bottom:1002.556500px;}
.y75{bottom:1002.568500px;}
.y8{bottom:1016.041950px;}
.y7a{bottom:1018.872000px;}
.y3b{bottom:1019.053500px;}
.y74{bottom:1019.065500px;}
.y7{bottom:1034.037450px;}
.y3a{bottom:1035.562500px;}
.y79{bottom:1036.872000px;}
.y6{bottom:1052.032950px;}
.y39{bottom:1052.059500px;}
.y78{bottom:1054.872000px;}
.y5{bottom:1068.529950px;}
.y38{bottom:1068.556500px;}
.y77{bottom:1072.872000px;}
.y4{bottom:1085.026950px;}
.y37{bottom:1085.053500px;}
.y2{bottom:1121.037900px;}
.h7{height:30.121875px;}
.ha{height:31.080000px;}
.hb{height:33.600000px;}
.h10{height:37.652344px;}
.h11{height:39.313477px;}
.h2{height:39.960000px;}
.h6{height:40.848000px;}
.h5{height:41.688000px;}
.h8{height:43.031250px;}
.h9{height:46.098075px;}
.hc{height:48.410156px;}
.h4{height:50.810156px;}
.hf{height:51.797109px;}
.hd{height:51.821109px;}
.he{height:51.833109px;}
.h3{height:74.112000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x3{left:109.968600px;}
.x4{left:119.055150px;}
.x5{left:128.551200px;}
.xc{left:137.551050px;}
.x6{left:164.850750px;}
.x1{left:453.565200px;}
.x7{left:474.094500px;}
.xd{left:475.594500px;}
.x8{left:492.094500px;}
.x9{left:501.099000px;}
.xb{left:506.450700px;}
.x2{left:644.480700px;}
.xa{left:645.597150px;}
@media print{
.v3{vertical-align:-14.195200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.133333pt;}
.v2{vertical-align:14.208000pt;}
.v4{vertical-align:15.941333pt;}
.ls10{letter-spacing:-4.608000pt;}
.ls14{letter-spacing:-4.368000pt;}
.lsd{letter-spacing:-1.872000pt;}
.ls6{letter-spacing:-1.824000pt;}
.lsa{letter-spacing:-1.680000pt;}
.lsb{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.864000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.085333pt;}
.lsf{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls0{letter-spacing:34.363733pt;}
.ws4{word-spacing:-13.920000pt;}
.ws6{word-spacing:-13.536000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws4d{word-spacing:-13.296000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws5{word-spacing:-11.664000pt;}
.ws2{word-spacing:-9.340800pt;}
.ws0{word-spacing:-8.302933pt;}
.ws29{word-spacing:-3.408000pt;}
.ws3c{word-spacing:-2.208000pt;}
.ws47{word-spacing:-2.160000pt;}
.ws8{word-spacing:-2.005333pt;}
.ws48{word-spacing:-1.488000pt;}
.ws55{word-spacing:-1.365333pt;}
.ws37{word-spacing:-1.200000pt;}
.ws3a{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.816000pt;}
.ws1c{word-spacing:-0.672000pt;}
.ws20{word-spacing:-0.624000pt;}
.ws32{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.336000pt;}
.ws58{word-spacing:-0.170667pt;}
.ws7{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.048000pt;}
.ws30{word-spacing:0.240000pt;}
.ws40{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.624000pt;}
.ws4f{word-spacing:0.672000pt;}
.ws22{word-spacing:0.816000pt;}
.ws42{word-spacing:0.864000pt;}
.ws38{word-spacing:0.912000pt;}
.ws9{word-spacing:1.024000pt;}
.ws3d{word-spacing:1.152000pt;}
.ws57{word-spacing:1.237333pt;}
.ws49{word-spacing:1.344000pt;}
.ws1d{word-spacing:1.392000pt;}
.ws36{word-spacing:1.536000pt;}
.ws34{word-spacing:1.632000pt;}
.ws2e{word-spacing:1.680000pt;}
.ws28{word-spacing:1.728000pt;}
.ws16{word-spacing:1.824000pt;}
.ws4e{word-spacing:1.920000pt;}
.ws11{word-spacing:1.978667pt;}
.ws23{word-spacing:2.352000pt;}
.ws2b{word-spacing:2.400000pt;}
.ws43{word-spacing:2.496000pt;}
.ws1a{word-spacing:2.736000pt;}
.ws10{word-spacing:3.024000pt;}
.ws1e{word-spacing:3.456000pt;}
.ws35{word-spacing:3.552000pt;}
.ws44{word-spacing:3.600000pt;}
.wsf{word-spacing:3.696000pt;}
.ws27{word-spacing:4.320000pt;}
.ws46{word-spacing:4.608000pt;}
.wsa{word-spacing:4.965333pt;}
.ws2d{word-spacing:4.992000pt;}
.ws12{word-spacing:5.040000pt;}
.ws2f{word-spacing:5.088000pt;}
.wsb{word-spacing:5.189333pt;}
.ws56{word-spacing:5.461333pt;}
.wsc{word-spacing:5.562667pt;}
.ws4b{word-spacing:5.568000pt;}
.ws15{word-spacing:5.637333pt;}
.ws17{word-spacing:5.856000pt;}
.wse{word-spacing:6.085333pt;}
.ws18{word-spacing:6.336000pt;}
.ws2a{word-spacing:6.720000pt;}
.ws3b{word-spacing:6.864000pt;}
.ws26{word-spacing:6.912000pt;}
.wsd{word-spacing:6.981333pt;}
.ws33{word-spacing:7.488000pt;}
.ws3f{word-spacing:8.016000pt;}
.ws31{word-spacing:8.112000pt;}
.ws39{word-spacing:8.544000pt;}
.ws1f{word-spacing:8.784000pt;}
.ws52{word-spacing:8.832000pt;}
.ws3e{word-spacing:9.216000pt;}
.ws19{word-spacing:9.936000pt;}
.ws13{word-spacing:10.192000pt;}
.ws53{word-spacing:11.136000pt;}
.ws1b{word-spacing:11.616000pt;}
.ws50{word-spacing:12.816000pt;}
.ws14{word-spacing:14.074667pt;}
.ws51{word-spacing:17.376000pt;}
.ws4c{word-spacing:19.008000pt;}
.ws24{word-spacing:32.832000pt;}
.ws41{word-spacing:42.336000pt;}
.ws45{word-spacing:42.768000pt;}
._1{margin-left:-4.736000pt;}
._9{margin-left:-3.559467pt;}
._a{margin-left:-2.229333pt;}
._4{margin-left:-1.235733pt;}
._2{width:1.269333pt;}
._5{width:2.919467pt;}
._c{width:3.887467pt;}
._f{width:5.150933pt;}
._10{width:6.436800pt;}
._7{width:8.059200pt;}
._3{width:12.174400pt;}
._b{width:42.624000pt;}
._e{width:43.968000pt;}
._8{width:45.002667pt;}
._d{width:47.952533pt;}
._0{width:709.498667pt;}
._6{width:1033.845867pt;}
.fs3{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:19.895067pt;}
.y1{bottom:41.663467pt;}
.y3{bottom:42.487067pt;}
.y71{bottom:45.463467pt;}
.y72{bottom:45.584400pt;}
.y73{bottom:45.692400pt;}
.y35{bottom:97.842933pt;}
.y70{bottom:99.286667pt;}
.y34{bottom:112.506933pt;}
.y6f{bottom:113.950667pt;}
.y33{bottom:127.170933pt;}
.y6e{bottom:128.614667pt;}
.y32{bottom:141.834933pt;}
.y6d{bottom:143.278667pt;}
.y31{bottom:156.498933pt;}
.y6c{bottom:157.942667pt;}
.y30{bottom:171.162933pt;}
.y6b{bottom:172.606667pt;}
.y2f{bottom:185.834933pt;}
.y6a{bottom:187.270667pt;}
.y2e{bottom:200.498933pt;}
.y69{bottom:201.934667pt;}
.y2d{bottom:215.162933pt;}
.y68{bottom:216.598667pt;}
.y2c{bottom:229.826933pt;}
.y67{bottom:231.262667pt;}
.y2b{bottom:244.501600pt;}
.y66{bottom:245.926667pt;}
.y2a{bottom:259.165600pt;}
.y65{bottom:260.590667pt;}
.y29{bottom:273.829600pt;}
.y64{bottom:275.254667pt;}
.y28{bottom:288.504267pt;}
.y63{bottom:289.918667pt;}
.y27{bottom:303.168267pt;}
.y62{bottom:304.582667pt;}
.y26{bottom:317.832267pt;}
.y61{bottom:319.246667pt;}
.y60{bottom:333.910667pt;}
.y25{bottom:347.160267pt;}
.y5f{bottom:348.574667pt;}
.y5e{bottom:363.238667pt;}
.y5d{bottom:377.902667pt;}
.y24{bottom:391.410267pt;}
.y5c{bottom:392.566667pt;}
.y5b{bottom:407.230667pt;}
.y23{bottom:413.632933pt;}
.y5a{bottom:421.894667pt;}
.y22{bottom:428.295600pt;}
.y59{bottom:436.558667pt;}
.y21{bottom:442.958267pt;}
.y58{bottom:451.222667pt;}
.y20{bottom:457.620933pt;}
.y57{bottom:465.886667pt;}
.y1f{bottom:472.283600pt;}
.y56{bottom:480.550667pt;}
.y1e{bottom:486.946267pt;}
.y55{bottom:495.214667pt;}
.y1d{bottom:501.608933pt;}
.y54{bottom:509.878667pt;}
.y1c{bottom:516.271600pt;}
.y53{bottom:524.542667pt;}
.y1b{bottom:534.714267pt;}
.y52{bottom:539.206667pt;}
.y1a{bottom:549.376933pt;}
.y51{bottom:553.870667pt;}
.y50{bottom:568.534667pt;}
.y19{bottom:578.711600pt;}
.y4f{bottom:583.198667pt;}
.y18{bottom:593.374267pt;}
.y4e{bottom:597.862667pt;}
.y17{bottom:608.036933pt;}
.y4d{bottom:612.526667pt;}
.y16{bottom:622.699600pt;}
.y4c{bottom:627.190667pt;}
.y15{bottom:637.362267pt;}
.y14{bottom:652.024933pt;}
.y4b{bottom:656.518667pt;}
.y13{bottom:666.687600pt;}
.y12{bottom:681.350267pt;}
.y4a{bottom:685.846667pt;}
.y49{bottom:700.510667pt;}
.y11{bottom:710.683600pt;}
.y48{bottom:715.174667pt;}
.y10{bottom:725.350267pt;}
.y47{bottom:729.838667pt;}
.yf{bottom:740.016933pt;}
.y46{bottom:744.502667pt;}
.y45{bottom:759.166667pt;}
.ye{bottom:771.241867pt;}
.y44{bottom:773.830667pt;}
.y43{bottom:788.494667pt;}
.yd{bottom:802.463200pt;}
.y42{bottom:803.166667pt;}
.yc{bottom:817.129867pt;}
.y41{bottom:817.830667pt;}
.y40{bottom:832.494667pt;}
.yb{bottom:835.345333pt;}
.y3f{bottom:847.169333pt;}
.ya{bottom:861.129867pt;}
.y3e{bottom:861.833333pt;}
.y3d{bottom:876.497333pt;}
.y76{bottom:876.508000pt;}
.y9{bottom:887.152400pt;}
.y3c{bottom:891.161333pt;}
.y75{bottom:891.172000pt;}
.y8{bottom:903.148400pt;}
.y7a{bottom:905.664000pt;}
.y3b{bottom:905.825333pt;}
.y74{bottom:905.836000pt;}
.y7{bottom:919.144400pt;}
.y3a{bottom:920.500000pt;}
.y79{bottom:921.664000pt;}
.y6{bottom:935.140400pt;}
.y39{bottom:935.164000pt;}
.y78{bottom:937.664000pt;}
.y5{bottom:949.804400pt;}
.y38{bottom:949.828000pt;}
.y77{bottom:953.664000pt;}
.y4{bottom:964.468400pt;}
.y37{bottom:964.492000pt;}
.y2{bottom:996.478133pt;}
.h7{height:26.775000pt;}
.ha{height:27.626667pt;}
.hb{height:29.866667pt;}
.h10{height:33.468750pt;}
.h11{height:34.945312pt;}
.h2{height:35.520000pt;}
.h6{height:36.309333pt;}
.h5{height:37.056000pt;}
.h8{height:38.250000pt;}
.h9{height:40.976067pt;}
.hc{height:43.031250pt;}
.h4{height:45.164583pt;}
.hf{height:46.041875pt;}
.hd{height:46.063208pt;}
.he{height:46.073875pt;}
.h3{height:65.877333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x3{left:97.749867pt;}
.x4{left:105.826800pt;}
.x5{left:114.267733pt;}
.xc{left:122.267600pt;}
.x6{left:146.534000pt;}
.x1{left:403.169067pt;}
.x7{left:421.417333pt;}
.xd{left:422.750667pt;}
.x8{left:437.417333pt;}
.x9{left:445.421333pt;}
.xb{left:450.178400pt;}
.x2{left:572.871733pt;}
.xa{left:573.864133pt;}
}




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