
    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_614d0086232462f36a2726e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_3a1d7068ea6472d3305f9d98.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c82717beacb3388ba294f21f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ef18e30e4dd4bb124251f1fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8d9e945bf30515bbbeac7eb6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a5f6cdacc7bd7d12361f59e1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_936efb4224687d0b4a9e6e6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948730;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.785200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.lsf{letter-spacing:-2.700000px;}
.ls17{letter-spacing:-0.621600px;}
.ls14{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.399600px;}
.ls12{letter-spacing:-0.270000px;}
.ls1a{letter-spacing:-0.266400px;}
.ls15{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.177600px;}
.ls10{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.088800px;}
.ls13{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003629px;}
.ls6{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.133200px;}
.ls3{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.702000px;}
.lsa{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.810000px;}
.lsb{letter-spacing:0.961950px;}
.lsc{letter-spacing:0.967632px;}
.ls9{letter-spacing:1.620000px;}
.ls0{letter-spacing:1.650000px;}
.ls8{letter-spacing:7.236000px;}
.ls7{letter-spacing:55.677600px;}
.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;}
}
.ws5{word-spacing:-23.352000px;}
.ws3{word-spacing:-15.822000px;}
.ws4{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.336000px;}
.ws1{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.472000px;}
.ws3f{word-spacing:-12.343200px;}
.ws40{word-spacing:-8.640240px;}
.ws1b{word-spacing:-3.780000px;}
.ws10{word-spacing:-3.726000px;}
.ws11{word-spacing:-3.510000px;}
.wsc{word-spacing:-3.402000px;}
.ws46{word-spacing:-3.196800px;}
.ws4e{word-spacing:-3.108000px;}
.ws57{word-spacing:-3.063600px;}
.ws4b{word-spacing:-2.708400px;}
.ws21{word-spacing:-2.619600px;}
.ws4f{word-spacing:-2.530800px;}
.ws16{word-spacing:-2.484000px;}
.ws7{word-spacing:-2.442000px;}
.ws41{word-spacing:-2.430000px;}
.ws50{word-spacing:-2.308800px;}
.ws29{word-spacing:-2.214000px;}
.ws48{word-spacing:-1.864800px;}
.ws4c{word-spacing:-1.420800px;}
.ws1a{word-spacing:-1.404000px;}
.ws25{word-spacing:-1.242000px;}
.ws3c{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.134000px;}
.ws20{word-spacing:-1.110000px;}
.ws1e{word-spacing:-0.972000px;}
.ws2d{word-spacing:-0.810000px;}
.ws1d{word-spacing:-0.702000px;}
.ws31{word-spacing:-0.648000px;}
.ws4d{word-spacing:-0.532800px;}
.ws37{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.399600px;}
.ws15{word-spacing:-0.378000px;}
.ws5c{word-spacing:-0.266400px;}
.ws13{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.108000px;}
.ws30{word-spacing:-0.054000px;}
.ws52{word-spacing:-0.044400px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.054000px;}
.ws18{word-spacing:0.108000px;}
.ws2e{word-spacing:0.216000px;}
.ws28{word-spacing:0.324000px;}
.wsb{word-spacing:0.378000px;}
.ws3a{word-spacing:0.432000px;}
.ws4a{word-spacing:0.486000px;}
.ws19{word-spacing:0.540000px;}
.wsd{word-spacing:0.594000px;}
.ws47{word-spacing:0.621600px;}
.ws26{word-spacing:0.864000px;}
.ws35{word-spacing:0.918000px;}
.ws39{word-spacing:0.972000px;}
.ws51{word-spacing:0.976800px;}
.ws5b{word-spacing:1.065600px;}
.ws36{word-spacing:1.080000px;}
.ws42{word-spacing:1.404000px;}
.ws12{word-spacing:1.458000px;}
.ws56{word-spacing:1.598400px;}
.ws2c{word-spacing:1.620000px;}
.ws33{word-spacing:2.052000px;}
.ws38{word-spacing:2.268000px;}
.ws3b{word-spacing:2.352000px;}
.ws2b{word-spacing:2.484000px;}
.ws3e{word-spacing:2.619600px;}
.ws8{word-spacing:2.700000px;}
.ws3d{word-spacing:2.797200px;}
.ws14{word-spacing:2.808000px;}
.ws59{word-spacing:3.196800px;}
.ws1f{word-spacing:3.729600px;}
.ws55{word-spacing:3.818400px;}
.ws1c{word-spacing:3.888000px;}
.ws27{word-spacing:4.212000px;}
.ws44{word-spacing:4.266000px;}
.ws5a{word-spacing:4.440000px;}
.ws54{word-spacing:4.573200px;}
.ws2f{word-spacing:4.590000px;}
.ws17{word-spacing:4.860000px;}
.ws24{word-spacing:5.400000px;}
.ws22{word-spacing:6.082800px;}
.ws53{word-spacing:6.171600px;}
.ws32{word-spacing:6.210000px;}
.ws23{word-spacing:6.804000px;}
.ws45{word-spacing:6.858000px;}
.ws2a{word-spacing:7.074000px;}
.ws9{word-spacing:7.452000px;}
.wsa{word-spacing:7.506000px;}
.ws43{word-spacing:53.028000px;}
.ws49{word-spacing:53.514000px;}
._c{margin-left:-14.940000px;}
._d{margin-left:-9.640200px;}
._f{margin-left:-7.326000px;}
._a{margin-left:-5.583000px;}
._b{margin-left:-4.212000px;}
._0{margin-left:-3.036000px;}
._4{margin-left:-1.815000px;}
._5{width:1.353000px;}
._8{width:2.442000px;}
._e{width:3.640800px;}
._10{width:4.692000px;}
._6{width:5.808000px;}
._9{width:7.830000px;}
._3{width:29.766000px;}
._11{width:59.496000px;}
._2{width:77.484000px;}
._1{width:169.092000px;}
._7{width:1031.734200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:25.885200px;}
.fs9{font-size:31.080000px;}
.fs0{font-size:33.000000px;}
.fs7{font-size:38.478000px;}
.fs2{font-size:42.000000px;}
.fs5{font-size:44.400000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:32.588850px;}
.y7{bottom:33.207450px;}
.y6{bottom:43.107450px;}
.y7d{bottom:46.985550px;}
.y93{bottom:48.159300px;}
.y5{bottom:53.007450px;}
.y7c{bottom:61.382250px;}
.y92{bottom:62.556000px;}
.y4{bottom:62.907450px;}
.y3{bottom:72.807450px;}
.y91{bottom:76.952700px;}
.y2{bottom:82.707450px;}
.y90{bottom:91.349400px;}
.y1{bottom:97.103700px;}
.y7b{bottom:98.288250px;}
.y8f{bottom:105.746100px;}
.y7a{bottom:114.785250px;}
.y8e{bottom:120.142800px;}
.y5a{bottom:129.072150px;}
.y60{bottom:130.846350px;}
.y79{bottom:131.282250px;}
.y8d{bottom:134.539500px;}
.y5f{bottom:140.652450px;}
.y59{bottom:145.717650px;}
.y8c{bottom:148.936200px;}
.y78{bottom:156.788850px;}
.y5e{bottom:157.846350px;}
.y58{bottom:162.363150px;}
.y8b{bottom:163.332900px;}
.y77{bottom:171.185550px;}
.y8a{bottom:177.729600px;}
.y57{bottom:179.008650px;}
.y2f{bottom:183.104850px;}
.y76{bottom:185.582250px;}
.y56{bottom:195.654150px;}
.y2e{bottom:197.501550px;}
.y89{bottom:207.129600px;}
.y75{bottom:209.012250px;}
.y2d{bottom:211.898250px;}
.y55{bottom:212.299650px;}
.y74{bottom:225.509250px;}
.y2c{bottom:226.294950px;}
.y54{bottom:228.945150px;}
.y73{bottom:242.006250px;}
.y53{bottom:245.590650px;}
.y88{bottom:246.163950px;}
.y2b{bottom:249.751950px;}
.y72{bottom:258.503250px;}
.y87{bottom:260.560650px;}
.y52{bottom:262.236150px;}
.y86{bottom:274.957350px;}
.y71{bottom:275.000250px;}
.y51{bottom:278.881650px;}
.y2a{bottom:288.753450px;}
.y85{bottom:289.354050px;}
.y70{bottom:291.497250px;}
.y50{bottom:295.527150px;}
.y84{bottom:303.750750px;}
.y29{bottom:305.250450px;}
.y6f{bottom:307.994250px;}
.y4f{bottom:312.172650px;}
.y83{bottom:318.147450px;}
.y28{bottom:321.747450px;}
.y6e{bottom:324.491250px;}
.y4e{bottom:328.818150px;}
.y82{bottom:332.544150px;}
.y27{bottom:338.244450px;}
.y6d{bottom:340.988250px;}
.y4d{bottom:345.463650px;}
.y81{bottom:346.940850px;}
.y26{bottom:354.741450px;}
.y6c{bottom:357.485250px;}
.y80{bottom:361.337550px;}
.y4c{bottom:362.109150px;}
.y6b{bottom:373.982250px;}
.y7f{bottom:375.734250px;}
.y25{bottom:375.747450px;}
.y4b{bottom:378.754650px;}
.y24{bottom:392.244450px;}
.y4a{bottom:395.400150px;}
.y23{bottom:408.741450px;}
.y49{bottom:412.045650px;}
.y22{bottom:425.238450px;}
.y48{bottom:428.691150px;}
.y21{bottom:441.735450px;}
.y47{bottom:445.336650px;}
.y20{bottom:458.232450px;}
.y46{bottom:461.982150px;}
.y45{bottom:478.627650px;}
.y1f{bottom:479.238450px;}
.y9c{bottom:480.139350px;}
.y44{bottom:495.273150px;}
.y1e{bottom:495.735450px;}
.y43{bottom:511.918650px;}
.y1d{bottom:512.232450px;}
.ya4{bottom:515.129400px;}
.y42{bottom:528.564150px;}
.y1c{bottom:528.729450px;}
.y41{bottom:545.209650px;}
.y1b{bottom:545.226450px;}
.y1a{bottom:561.723450px;}
.y40{bottom:561.855150px;}
.y3f{bottom:578.500650px;}
.y19{bottom:582.729450px;}
.y3e{bottom:595.146150px;}
.y18{bottom:599.226450px;}
.y3d{bottom:611.791650px;}
.y17{bottom:615.723450px;}
.y3c{bottom:628.437150px;}
.y16{bottom:636.729450px;}
.y3b{bottom:645.082650px;}
.y15{bottom:653.226450px;}
.y3a{bottom:661.728150px;}
.y14{bottom:669.723450px;}
.y39{bottom:678.373650px;}
.y13{bottom:686.220450px;}
.y38{bottom:695.019150px;}
.y12{bottom:702.717450px;}
.y37{bottom:711.664650px;}
.ya8{bottom:713.789400px;}
.y11{bottom:719.214450px;}
.y36{bottom:728.310150px;}
.y10{bottom:735.711450px;}
.y9f{bottom:739.321350px;}
.y35{bottom:744.955650px;}
.ya6{bottom:750.941400px;}
.yf{bottom:752.208450px;}
.y34{bottom:761.601150px;}
.ye{bottom:768.705450px;}
.ya0{bottom:776.347350px;}
.y33{bottom:778.246650px;}
.yd{bottom:785.202450px;}
.ya7{bottom:794.573400px;}
.y32{bottom:794.892150px;}
.yc{bottom:801.699450px;}
.y9e{bottom:802.699350px;}
.y31{bottom:820.555650px;}
.yb{bottom:833.194950px;}
.y30{bottom:834.952350px;}
.ya5{bottom:840.761400px;}
.ya1{bottom:852.181350px;}
.y9d{bottom:864.403350px;}
.y9b{bottom:870.037350px;}
.y99{bottom:921.841350px;}
.y65{bottom:924.580650px;}
.ya3{bottom:930.329400px;}
.y64{bottom:938.977350px;}
.ya2{bottom:942.365400px;}
.y68{bottom:950.388150px;}
.y9a{bottom:951.541350px;}
.y63{bottom:953.374050px;}
.y62{bottom:967.770750px;}
.y67{bottom:973.786950px;}
.y61{bottom:988.172550px;}
.y66{bottom:988.183650px;}
.y5d{bottom:1065.915750px;}
.y98{bottom:1078.536450px;}
.y97{bottom:1092.933150px;}
.y5c{bottom:1101.909750px;}
.y96{bottom:1107.329850px;}
.y95{bottom:1121.726550px;}
.y5b{bottom:1128.915750px;}
.y94{bottom:1136.123250px;}
.y69{bottom:1172.247600px;}
.y6a{bottom:1173.339600px;}
.y9{bottom:1174.253100px;}
.ya{bottom:1177.877100px;}
.y8{bottom:1188.653100px;}
.ha{height:18.870412px;}
.h1{height:24.057129px;}
.hc{height:30.618164px;}
.h7{height:32.324414px;}
.h6{height:32.367773px;}
.he{height:34.921875px;}
.h2{height:34.992188px;}
.h4{height:39.313477px;}
.h5{height:39.366211px;}
.h3{height:48.049805px;}
.h9{height:50.029212px;}
.hd{height:52.382812px;}
.h8{height:61.154297px;}
.hb{height:1213.500000px;}
.h0{height:1242.000000px;}
.w0{width:825.000000px;}
.x0{left:0.000000px;}
.x1{left:30.779550px;}
.x4{left:39.284700px;}
.x5{left:241.679550px;}
.xa{left:273.134250px;}
.x2{left:323.833800px;}
.x13{left:334.204200px;}
.x9{left:343.172250px;}
.xe{left:353.162250px;}
.x12{left:360.916200px;}
.x14{left:385.276200px;}
.x10{left:398.380200px;}
.x3{left:430.468350px;}
.x7{left:438.967200px;}
.xb{left:487.856250px;}
.x8{left:594.236250px;}
.xc{left:606.386250px;}
.xd{left:611.174250px;}
.x11{left:652.036200px;}
.x16{left:671.380200px;}
.x15{left:731.548200px;}
.x6{left:776.112300px;}
.xf{left:784.514250px;}
@media print{
.v2{vertical-align:-13.142400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.lsf{letter-spacing:-2.400000pt;}
.ls17{letter-spacing:-0.552533pt;}
.ls14{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.355200pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls1a{letter-spacing:-0.236800pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.157867pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.078933pt;}
.ls13{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003226pt;}
.ls6{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.118400pt;}
.ls3{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.624000pt;}
.lsa{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.855067pt;}
.lsc{letter-spacing:0.860117pt;}
.ls9{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.466667pt;}
.ls8{letter-spacing:6.432000pt;}
.ls7{letter-spacing:49.491200pt;}
.ws5{word-spacing:-20.757333pt;}
.ws3{word-spacing:-14.064000pt;}
.ws4{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.632000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.864000pt;}
.ws3f{word-spacing:-10.971733pt;}
.ws40{word-spacing:-7.680213pt;}
.ws1b{word-spacing:-3.360000pt;}
.ws10{word-spacing:-3.312000pt;}
.ws11{word-spacing:-3.120000pt;}
.wsc{word-spacing:-3.024000pt;}
.ws46{word-spacing:-2.841600pt;}
.ws4e{word-spacing:-2.762667pt;}
.ws57{word-spacing:-2.723200pt;}
.ws4b{word-spacing:-2.407467pt;}
.ws21{word-spacing:-2.328533pt;}
.ws4f{word-spacing:-2.249600pt;}
.ws16{word-spacing:-2.208000pt;}
.ws7{word-spacing:-2.170667pt;}
.ws41{word-spacing:-2.160000pt;}
.ws50{word-spacing:-2.052267pt;}
.ws29{word-spacing:-1.968000pt;}
.ws48{word-spacing:-1.657600pt;}
.ws4c{word-spacing:-1.262933pt;}
.ws1a{word-spacing:-1.248000pt;}
.ws25{word-spacing:-1.104000pt;}
.ws3c{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.008000pt;}
.ws20{word-spacing:-0.986667pt;}
.ws1e{word-spacing:-0.864000pt;}
.ws2d{word-spacing:-0.720000pt;}
.ws1d{word-spacing:-0.624000pt;}
.ws31{word-spacing:-0.576000pt;}
.ws4d{word-spacing:-0.473600pt;}
.ws37{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.355200pt;}
.ws15{word-spacing:-0.336000pt;}
.ws5c{word-spacing:-0.236800pt;}
.ws13{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.096000pt;}
.ws30{word-spacing:-0.048000pt;}
.ws52{word-spacing:-0.039467pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.048000pt;}
.ws18{word-spacing:0.096000pt;}
.ws2e{word-spacing:0.192000pt;}
.ws28{word-spacing:0.288000pt;}
.wsb{word-spacing:0.336000pt;}
.ws3a{word-spacing:0.384000pt;}
.ws4a{word-spacing:0.432000pt;}
.ws19{word-spacing:0.480000pt;}
.wsd{word-spacing:0.528000pt;}
.ws47{word-spacing:0.552533pt;}
.ws26{word-spacing:0.768000pt;}
.ws35{word-spacing:0.816000pt;}
.ws39{word-spacing:0.864000pt;}
.ws51{word-spacing:0.868267pt;}
.ws5b{word-spacing:0.947200pt;}
.ws36{word-spacing:0.960000pt;}
.ws42{word-spacing:1.248000pt;}
.ws12{word-spacing:1.296000pt;}
.ws56{word-spacing:1.420800pt;}
.ws2c{word-spacing:1.440000pt;}
.ws33{word-spacing:1.824000pt;}
.ws38{word-spacing:2.016000pt;}
.ws3b{word-spacing:2.090667pt;}
.ws2b{word-spacing:2.208000pt;}
.ws3e{word-spacing:2.328533pt;}
.ws8{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.486400pt;}
.ws14{word-spacing:2.496000pt;}
.ws59{word-spacing:2.841600pt;}
.ws1f{word-spacing:3.315200pt;}
.ws55{word-spacing:3.394133pt;}
.ws1c{word-spacing:3.456000pt;}
.ws27{word-spacing:3.744000pt;}
.ws44{word-spacing:3.792000pt;}
.ws5a{word-spacing:3.946667pt;}
.ws54{word-spacing:4.065067pt;}
.ws2f{word-spacing:4.080000pt;}
.ws17{word-spacing:4.320000pt;}
.ws24{word-spacing:4.800000pt;}
.ws22{word-spacing:5.406933pt;}
.ws53{word-spacing:5.485867pt;}
.ws32{word-spacing:5.520000pt;}
.ws23{word-spacing:6.048000pt;}
.ws45{word-spacing:6.096000pt;}
.ws2a{word-spacing:6.288000pt;}
.ws9{word-spacing:6.624000pt;}
.wsa{word-spacing:6.672000pt;}
.ws43{word-spacing:47.136000pt;}
.ws49{word-spacing:47.568000pt;}
._c{margin-left:-13.280000pt;}
._d{margin-left:-8.569067pt;}
._f{margin-left:-6.512000pt;}
._a{margin-left:-4.962667pt;}
._b{margin-left:-3.744000pt;}
._0{margin-left:-2.698667pt;}
._4{margin-left:-1.613333pt;}
._5{width:1.202667pt;}
._8{width:2.170667pt;}
._e{width:3.236267pt;}
._10{width:4.170667pt;}
._6{width:5.162667pt;}
._9{width:6.960000pt;}
._3{width:26.458667pt;}
._11{width:52.885333pt;}
._2{width:68.874667pt;}
._1{width:150.304000pt;}
._7{width:917.097067pt;}
.fs8{font-size:23.009067pt;}
.fs9{font-size:27.626667pt;}
.fs0{font-size:29.333333pt;}
.fs7{font-size:34.202667pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:39.466667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:28.967867pt;}
.y7{bottom:29.517733pt;}
.y6{bottom:38.317733pt;}
.y7d{bottom:41.764933pt;}
.y93{bottom:42.808267pt;}
.y5{bottom:47.117733pt;}
.y7c{bottom:54.562000pt;}
.y92{bottom:55.605333pt;}
.y4{bottom:55.917733pt;}
.y3{bottom:64.717733pt;}
.y91{bottom:68.402400pt;}
.y2{bottom:73.517733pt;}
.y90{bottom:81.199467pt;}
.y1{bottom:86.314400pt;}
.y7b{bottom:87.367333pt;}
.y8f{bottom:93.996533pt;}
.y7a{bottom:102.031333pt;}
.y8e{bottom:106.793600pt;}
.y5a{bottom:114.730800pt;}
.y60{bottom:116.307867pt;}
.y79{bottom:116.695333pt;}
.y8d{bottom:119.590667pt;}
.y5f{bottom:125.024400pt;}
.y59{bottom:129.526800pt;}
.y8c{bottom:132.387733pt;}
.y78{bottom:139.367867pt;}
.y5e{bottom:140.307867pt;}
.y58{bottom:144.322800pt;}
.y8b{bottom:145.184800pt;}
.y77{bottom:152.164933pt;}
.y8a{bottom:157.981867pt;}
.y57{bottom:159.118800pt;}
.y2f{bottom:162.759867pt;}
.y76{bottom:164.962000pt;}
.y56{bottom:173.914800pt;}
.y2e{bottom:175.556933pt;}
.y89{bottom:184.115200pt;}
.y75{bottom:185.788667pt;}
.y2d{bottom:188.354000pt;}
.y55{bottom:188.710800pt;}
.y74{bottom:200.452667pt;}
.y2c{bottom:201.151067pt;}
.y54{bottom:203.506800pt;}
.y73{bottom:215.116667pt;}
.y53{bottom:218.302800pt;}
.y88{bottom:218.812400pt;}
.y2b{bottom:222.001733pt;}
.y72{bottom:229.780667pt;}
.y87{bottom:231.609467pt;}
.y52{bottom:233.098800pt;}
.y86{bottom:244.406533pt;}
.y71{bottom:244.444667pt;}
.y51{bottom:247.894800pt;}
.y2a{bottom:256.669733pt;}
.y85{bottom:257.203600pt;}
.y70{bottom:259.108667pt;}
.y50{bottom:262.690800pt;}
.y84{bottom:270.000667pt;}
.y29{bottom:271.333733pt;}
.y6f{bottom:273.772667pt;}
.y4f{bottom:277.486800pt;}
.y83{bottom:282.797733pt;}
.y28{bottom:285.997733pt;}
.y6e{bottom:288.436667pt;}
.y4e{bottom:292.282800pt;}
.y82{bottom:295.594800pt;}
.y27{bottom:300.661733pt;}
.y6d{bottom:303.100667pt;}
.y4d{bottom:307.078800pt;}
.y81{bottom:308.391867pt;}
.y26{bottom:315.325733pt;}
.y6c{bottom:317.764667pt;}
.y80{bottom:321.188933pt;}
.y4c{bottom:321.874800pt;}
.y6b{bottom:332.428667pt;}
.y7f{bottom:333.986000pt;}
.y25{bottom:333.997733pt;}
.y4b{bottom:336.670800pt;}
.y24{bottom:348.661733pt;}
.y4a{bottom:351.466800pt;}
.y23{bottom:363.325733pt;}
.y49{bottom:366.262800pt;}
.y22{bottom:377.989733pt;}
.y48{bottom:381.058800pt;}
.y21{bottom:392.653733pt;}
.y47{bottom:395.854800pt;}
.y20{bottom:407.317733pt;}
.y46{bottom:410.650800pt;}
.y45{bottom:425.446800pt;}
.y1f{bottom:425.989733pt;}
.y9c{bottom:426.790533pt;}
.y44{bottom:440.242800pt;}
.y1e{bottom:440.653733pt;}
.y43{bottom:455.038800pt;}
.y1d{bottom:455.317733pt;}
.ya4{bottom:457.892800pt;}
.y42{bottom:469.834800pt;}
.y1c{bottom:469.981733pt;}
.y41{bottom:484.630800pt;}
.y1b{bottom:484.645733pt;}
.y1a{bottom:499.309733pt;}
.y40{bottom:499.426800pt;}
.y3f{bottom:514.222800pt;}
.y19{bottom:517.981733pt;}
.y3e{bottom:529.018800pt;}
.y18{bottom:532.645733pt;}
.y3d{bottom:543.814800pt;}
.y17{bottom:547.309733pt;}
.y3c{bottom:558.610800pt;}
.y16{bottom:565.981733pt;}
.y3b{bottom:573.406800pt;}
.y15{bottom:580.645733pt;}
.y3a{bottom:588.202800pt;}
.y14{bottom:595.309733pt;}
.y39{bottom:602.998800pt;}
.y13{bottom:609.973733pt;}
.y38{bottom:617.794800pt;}
.y12{bottom:624.637733pt;}
.y37{bottom:632.590800pt;}
.ya8{bottom:634.479467pt;}
.y11{bottom:639.301733pt;}
.y36{bottom:647.386800pt;}
.y10{bottom:653.965733pt;}
.y9f{bottom:657.174533pt;}
.y35{bottom:662.182800pt;}
.ya6{bottom:667.503467pt;}
.yf{bottom:668.629733pt;}
.y34{bottom:676.978800pt;}
.ye{bottom:683.293733pt;}
.ya0{bottom:690.086533pt;}
.y33{bottom:691.774800pt;}
.yd{bottom:697.957733pt;}
.ya7{bottom:706.287467pt;}
.y32{bottom:706.570800pt;}
.yc{bottom:712.621733pt;}
.y9e{bottom:713.510533pt;}
.y31{bottom:729.382800pt;}
.yb{bottom:740.617733pt;}
.y30{bottom:742.179867pt;}
.ya5{bottom:747.343467pt;}
.ya1{bottom:757.494533pt;}
.y9d{bottom:768.358533pt;}
.y9b{bottom:773.366533pt;}
.y99{bottom:819.414533pt;}
.y65{bottom:821.849467pt;}
.ya3{bottom:826.959467pt;}
.y64{bottom:834.646533pt;}
.ya2{bottom:837.658133pt;}
.y68{bottom:844.789467pt;}
.y9a{bottom:845.814533pt;}
.y63{bottom:847.443600pt;}
.y62{bottom:860.240667pt;}
.y67{bottom:865.588400pt;}
.y61{bottom:878.375600pt;}
.y66{bottom:878.385467pt;}
.y5d{bottom:947.480667pt;}
.y98{bottom:958.699067pt;}
.y97{bottom:971.496133pt;}
.y5c{bottom:979.475333pt;}
.y96{bottom:984.293200pt;}
.y95{bottom:997.090267pt;}
.y5b{bottom:1003.480667pt;}
.y94{bottom:1009.887333pt;}
.y69{bottom:1041.997867pt;}
.y6a{bottom:1042.968533pt;}
.y9{bottom:1043.780533pt;}
.ya{bottom:1047.001867pt;}
.y8{bottom:1056.580533pt;}
.ha{height:16.773699pt;}
.h1{height:21.384115pt;}
.hc{height:27.216146pt;}
.h7{height:28.732813pt;}
.h6{height:28.771354pt;}
.he{height:31.041667pt;}
.h2{height:31.104167pt;}
.h4{height:34.945312pt;}
.h5{height:34.992188pt;}
.h3{height:42.710938pt;}
.h9{height:44.470411pt;}
.hd{height:46.562500pt;}
.h8{height:54.359375pt;}
.hb{height:1078.666667pt;}
.h0{height:1104.000000pt;}
.w0{width:733.333333pt;}
.x0{left:0.000000pt;}
.x1{left:27.359600pt;}
.x4{left:34.919733pt;}
.x5{left:214.826267pt;}
.xa{left:242.786000pt;}
.x2{left:287.852267pt;}
.x13{left:297.070400pt;}
.x9{left:305.042000pt;}
.xe{left:313.922000pt;}
.x12{left:320.814400pt;}
.x14{left:342.467733pt;}
.x10{left:354.115733pt;}
.x3{left:382.638533pt;}
.x7{left:390.193067pt;}
.xb{left:433.650000pt;}
.x8{left:528.210000pt;}
.xc{left:539.010000pt;}
.xd{left:543.266000pt;}
.x11{left:579.587733pt;}
.x16{left:596.782400pt;}
.x15{left:650.265067pt;}
.x6{left:689.877600pt;}
.xf{left:697.346000pt;}
}




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