
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_b48397ebbe65dca31ce885d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a42e579c613a2f5f4bbb9524.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_68cdc1573ac6e55cf41ea5df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_4db44e90bde301aea4a1963a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1238d21a2fd1749d60d12810.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_a8a7d54cc614f01242b30180.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_abbeed5cc7fd0a687312fb35.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_caefba1f6344bfedbc93d069.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_3718c373b6b1784f566e9223.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_7345f16b747058f429dcca1e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f52ca5924b9a14ad629bb5a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.900000px;}
.ls16{letter-spacing:-0.378600px;}
.ls18{letter-spacing:-0.369600px;}
.ls11{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls14{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.341400px;}
.lse{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.756000px;}
.ls1b{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.880000px;}
.ls5{letter-spacing:4.140000px;}
.ls13{letter-spacing:6.300000px;}
.ls15{letter-spacing:12.060000px;}
.ls1c{letter-spacing:12.960000px;}
.lsb{letter-spacing:19.260000px;}
.lsd{letter-spacing:24.300000px;}
.ls1e{letter-spacing:25.920000px;}
.lsc{letter-spacing:27.180000px;}
.ls1d{letter-spacing:27.360000px;}
.ls1a{letter-spacing:33.984000px;}
.ls0{letter-spacing:122.520000px;}
.ls12{letter-spacing:191.484000px;}
.ls2{letter-spacing:194.544000px;}
.ls3{letter-spacing:198.144000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.816000px;}
.ws4{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.690400px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws0{word-spacing:-0.120240px;}
.ws3{word-spacing:0.000000px;}
._27{margin-left:-7.344000px;}
._1e{margin-left:-2.213280px;}
._0{margin-left:-1.126080px;}
._4{width:1.224000px;}
._2{width:3.000000px;}
._10{width:4.834320px;}
._11{width:6.382080px;}
._12{width:7.497360px;}
._13{width:8.586000px;}
._7{width:9.864000px;}
._8{width:10.872000px;}
._29{width:12.134880px;}
._3{width:13.176000px;}
._5{width:14.544000px;}
._17{width:15.612480px;}
._f{width:16.704000px;}
._28{width:17.943120px;}
._1a{width:19.122480px;}
._b{width:20.832000px;}
._a{width:22.224000px;}
._9{width:23.472000px;}
._16{width:25.266960px;}
._c{width:26.352000px;}
._15{width:27.756480px;}
._d{width:28.800000px;}
._e{width:29.880000px;}
._22{width:31.006560px;}
._18{width:32.631840px;}
._19{width:33.877920px;}
._2a{width:34.920720px;}
._1b{width:36.169920px;}
._2d{width:38.015280px;}
._6{width:39.672000px;}
._1d{width:43.161840px;}
._1c{width:44.172720px;}
._30{width:45.343440px;}
._2b{width:49.258800px;}
._2c{width:50.335920px;}
._2f{width:53.102160px;}
._2e{width:54.534240px;}
._1f{width:68.234400px;}
._21{width:73.554720px;}
._20{width:74.589840px;}
._26{width:76.570320px;}
._24{width:77.585040px;}
._25{width:78.844800px;}
._23{width:80.427600px;}
._14{width:94.625280px;}
._31{width:191.484000px;}
._1{width:194.544000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y67{bottom:4.140000px;}
.y76{bottom:4.485000px;}
.y69{bottom:4.500000px;}
.y6{bottom:7.380000px;}
.y4{bottom:8.100000px;}
.y7{bottom:8.820000px;}
.y5{bottom:15.660000px;}
.y6b{bottom:25.200000px;}
.y75{bottom:25.230000px;}
.y6d{bottom:45.900000px;}
.y74{bottom:45.930000px;}
.y2{bottom:57.600000px;}
.y58{bottom:83.736000px;}
.y95{bottom:88.596000px;}
.y7e{bottom:90.036000px;}
.y35{bottom:101.916000px;}
.y57{bottom:111.456000px;}
.y94{bottom:116.316000px;}
.y7d{bottom:117.756000px;}
.y34{bottom:126.036000px;}
.y56{bottom:139.356000px;}
.y93{bottom:144.036000px;}
.y7c{bottom:145.476000px;}
.y33{bottom:150.150000px;}
.y55{bottom:167.070000px;}
.y92{bottom:171.930000px;}
.y7b{bottom:173.370000px;}
.y32{bottom:174.270000px;}
.y54{bottom:194.790000px;}
.y31{bottom:198.390000px;}
.y91{bottom:199.650000px;}
.y7a{bottom:201.090000px;}
.y30{bottom:222.690000px;}
.y90{bottom:227.370000px;}
.y79{bottom:228.810000px;}
.y2f{bottom:246.810000px;}
.y8f{bottom:255.270000px;}
.y78{bottom:256.530000px;}
.y2e{bottom:270.930000px;}
.y8e{bottom:282.990000px;}
.y77{bottom:284.430000px;}
.y2d{bottom:295.050000px;}
.y73{bottom:304.245000px;}
.y8d{bottom:310.710000px;}
.y2c{bottom:319.170000px;}
.y8c{bottom:338.475000px;}
.y2b{bottom:343.335000px;}
.y8b{bottom:366.375000px;}
.y72{bottom:367.095000px;}
.y2a{bottom:367.455000px;}
.y29{bottom:391.755000px;}
.y8a{bottom:394.095000px;}
.y71{bottom:409.215000px;}
.y28{bottom:415.335000px;}
.y53{bottom:415.875000px;}
.y89{bottom:421.815000px;}
.y27{bottom:436.035000px;}
.y52{bottom:439.995000px;}
.y88{bottom:449.715000px;}
.y70{bottom:451.335000px;}
.y26{bottom:456.735000px;}
.y51{bottom:464.115000px;}
.y25{bottom:477.435000px;}
.y50{bottom:488.235000px;}
.ya8{bottom:496.515000px;}
.y24{bottom:498.135000px;}
.y87{bottom:505.155000px;}
.y4f{bottom:512.355000px;}
.y6f{bottom:514.155000px;}
.ya7{bottom:517.215000px;}
.y23{bottom:518.835000px;}
.y86{bottom:532.875000px;}
.y4e{bottom:536.655000px;}
.ya6{bottom:537.915000px;}
.y22{bottom:539.535000px;}
.y6e{bottom:556.455000px;}
.ya5{bottom:558.615000px;}
.y21{bottom:560.235000px;}
.y4d{bottom:560.775000px;}
.ya4{bottom:579.315000px;}
.y20{bottom:580.935000px;}
.y4c{bottom:584.895000px;}
.y85{bottom:588.495000px;}
.y6c{bottom:598.605000px;}
.ya3{bottom:600.045000px;}
.y1f{bottom:601.485000px;}
.y4b{bottom:609.045000px;}
.y84{bottom:616.245000px;}
.ya2{bottom:620.745000px;}
.y1e{bottom:622.185000px;}
.y4a{bottom:633.165000px;}
.ya1{bottom:641.445000px;}
.y1d{bottom:642.885000px;}
.y83{bottom:644.145000px;}
.y49{bottom:657.285000px;}
.y6a{bottom:661.425000px;}
.ya0{bottom:662.145000px;}
.y1c{bottom:663.585000px;}
.y82{bottom:671.865000px;}
.y48{bottom:681.405000px;}
.y9f{bottom:682.845000px;}
.y1b{bottom:684.285000px;}
.y81{bottom:699.585000px;}
.y68{bottom:703.545000px;}
.y1a{bottom:704.985000px;}
.y47{bottom:705.705000px;}
.y9e{bottom:724.245000px;}
.y66{bottom:724.965000px;}
.y19{bottom:725.685000px;}
.y80{bottom:727.305000px;}
.y46{bottom:729.825000px;}
.y9d{bottom:744.945000px;}
.y45{bottom:753.945000px;}
.y65{bottom:755.205000px;}
.y9c{bottom:765.645000px;}
.y18{bottom:767.085000px;}
.y44{bottom:778.065000px;}
.y64{bottom:782.565000px;}
.y7f{bottom:782.925000px;}
.y9b{bottom:786.345000px;}
.y17{bottom:787.785000px;}
.y43{bottom:802.185000px;}
.y9a{bottom:807.045000px;}
.y16{bottom:808.485000px;}
.y63{bottom:810.645000px;}
.y42{bottom:826.305000px;}
.y99{bottom:827.745000px;}
.y15{bottom:829.185000px;}
.y62{bottom:838.365000px;}
.y98{bottom:848.445000px;}
.y14{bottom:849.885000px;}
.y41{bottom:850.605000px;}
.y61{bottom:866.310000px;}
.y97{bottom:868.830000px;}
.y13{bottom:870.630000px;}
.y40{bottom:874.770000px;}
.y12{bottom:891.330000px;}
.y96{bottom:893.670000px;}
.y60{bottom:894.030000px;}
.y3f{bottom:898.890000px;}
.y11{bottom:912.030000px;}
.y5f{bottom:921.750000px;}
.y3e{bottom:923.010000px;}
.y10{bottom:932.370000px;}
.y3d{bottom:947.130000px;}
.y5e{bottom:949.650000px;}
.y3c{bottom:971.250000px;}
.yf{bottom:973.770000px;}
.y5d{bottom:977.370000px;}
.ye{bottom:994.830000px;}
.y3b{bottom:995.370000px;}
.y5c{bottom:1005.090000px;}
.yd{bottom:1015.530000px;}
.y3a{bottom:1019.670000px;}
.y5b{bottom:1032.810000px;}
.yc{bottom:1036.230000px;}
.y39{bottom:1043.790000px;}
.yb{bottom:1056.930000px;}
.y5a{bottom:1060.710000px;}
.y38{bottom:1067.910000px;}
.ya{bottom:1077.270000px;}
.y59{bottom:1088.430000px;}
.y37{bottom:1092.030000px;}
.y9{bottom:1097.250000px;}
.y8{bottom:1115.790000px;}
.y36{bottom:1116.150000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.300000px;}
.h11{height:20.700000px;}
.h3{height:33.120000px;}
.h7{height:38.517900px;}
.h17{height:41.385000px;}
.h13{height:41.400000px;}
.h16{height:41.430000px;}
.h5{height:44.098500px;}
.h14{height:50.273438px;}
.hd{height:52.628906px;}
.h10{height:58.819922px;}
.ha{height:60.226875px;}
.h18{height:62.085000px;}
.h15{height:62.100000px;}
.h19{height:62.121000px;}
.h2{height:65.884219px;}
.hc{height:70.628906px;}
.h12{height:70.664062px;}
.hb{height:72.562500px;}
.h1a{height:74.004654px;}
.h8{height:78.626953px;}
.hf{height:82.635820px;}
.he{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:66.225000px;}
.w4{width:66.270000px;}
.w3{width:77.436000px;}
.w5{width:95.565000px;}
.w6{width:105.154500px;}
.w7{width:148.521000px;}
.w8{width:230.430000px;}
.w9{width:267.675000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.738500px;}
.x5{left:10.800000px;}
.x8{left:25.185000px;}
.x3{left:26.460000px;}
.x1{left:63.900000px;}
.x11{left:74.881500px;}
.x17{left:90.900000px;}
.x10{left:117.936000px;}
.x9{left:171.030000px;}
.x7{left:175.185000px;}
.x13{left:180.945000px;}
.xc{left:275.070000px;}
.xf{left:301.395000px;}
.xd{left:309.315000px;}
.x16{left:313.995000px;}
.x14{left:330.195000px;}
.xb{left:362.955000px;}
.xe{left:376.815000px;}
.x4{left:427.755000px;}
.xa{left:452.055000px;}
.x15{left:561.360000px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls16{letter-spacing:-0.336533pt;}
.ls18{letter-spacing:-0.328533pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls14{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.303467pt;}
.lse{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls5{letter-spacing:3.680000pt;}
.ls13{letter-spacing:5.600000pt;}
.ls15{letter-spacing:10.720000pt;}
.ls1c{letter-spacing:11.520000pt;}
.lsb{letter-spacing:17.120000pt;}
.lsd{letter-spacing:21.600000pt;}
.ls1e{letter-spacing:23.040000pt;}
.lsc{letter-spacing:24.160000pt;}
.ls1d{letter-spacing:24.320000pt;}
.ls1a{letter-spacing:30.208000pt;}
.ls0{letter-spacing:108.906667pt;}
.ls12{letter-spacing:170.208000pt;}
.ls2{letter-spacing:172.928000pt;}
.ls3{letter-spacing:176.128000pt;}
.ws5{word-spacing:-19.392000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.391467pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws0{word-spacing:-0.106880pt;}
.ws3{word-spacing:0.000000pt;}
._27{margin-left:-6.528000pt;}
._1e{margin-left:-1.967360pt;}
._0{margin-left:-1.000960pt;}
._4{width:1.088000pt;}
._2{width:2.666667pt;}
._10{width:4.297173pt;}
._11{width:5.672960pt;}
._12{width:6.664320pt;}
._13{width:7.632000pt;}
._7{width:8.768000pt;}
._8{width:9.664000pt;}
._29{width:10.786560pt;}
._3{width:11.712000pt;}
._5{width:12.928000pt;}
._17{width:13.877760pt;}
._f{width:14.848000pt;}
._28{width:15.949440pt;}
._1a{width:16.997760pt;}
._b{width:18.517333pt;}
._a{width:19.754667pt;}
._9{width:20.864000pt;}
._16{width:22.459520pt;}
._c{width:23.424000pt;}
._15{width:24.672427pt;}
._d{width:25.600000pt;}
._e{width:26.560000pt;}
._22{width:27.561387pt;}
._18{width:29.006080pt;}
._19{width:30.113707pt;}
._2a{width:31.040640pt;}
._1b{width:32.151040pt;}
._2d{width:33.791360pt;}
._6{width:35.264000pt;}
._1d{width:38.366080pt;}
._1c{width:39.264640pt;}
._30{width:40.305280pt;}
._2b{width:43.785600pt;}
._2c{width:44.743040pt;}
._2f{width:47.201920pt;}
._2e{width:48.474880pt;}
._1f{width:60.652800pt;}
._21{width:65.381973pt;}
._20{width:66.302080pt;}
._26{width:68.062507pt;}
._24{width:68.964480pt;}
._25{width:70.084267pt;}
._23{width:71.491200pt;}
._14{width:84.111360pt;}
._31{width:170.208000pt;}
._1{width:172.928000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:3.680000pt;}
.y76{bottom:3.986667pt;}
.y69{bottom:4.000000pt;}
.y6{bottom:6.560000pt;}
.y4{bottom:7.200000pt;}
.y7{bottom:7.840000pt;}
.y5{bottom:13.920000pt;}
.y6b{bottom:22.400000pt;}
.y75{bottom:22.426667pt;}
.y6d{bottom:40.800000pt;}
.y74{bottom:40.826667pt;}
.y2{bottom:51.200000pt;}
.y58{bottom:74.432000pt;}
.y95{bottom:78.752000pt;}
.y7e{bottom:80.032000pt;}
.y35{bottom:90.592000pt;}
.y57{bottom:99.072000pt;}
.y94{bottom:103.392000pt;}
.y7d{bottom:104.672000pt;}
.y34{bottom:112.032000pt;}
.y56{bottom:123.872000pt;}
.y93{bottom:128.032000pt;}
.y7c{bottom:129.312000pt;}
.y33{bottom:133.466667pt;}
.y55{bottom:148.506667pt;}
.y92{bottom:152.826667pt;}
.y7b{bottom:154.106667pt;}
.y32{bottom:154.906667pt;}
.y54{bottom:173.146667pt;}
.y31{bottom:176.346667pt;}
.y91{bottom:177.466667pt;}
.y7a{bottom:178.746667pt;}
.y30{bottom:197.946667pt;}
.y90{bottom:202.106667pt;}
.y79{bottom:203.386667pt;}
.y2f{bottom:219.386667pt;}
.y8f{bottom:226.906667pt;}
.y78{bottom:228.026667pt;}
.y2e{bottom:240.826667pt;}
.y8e{bottom:251.546667pt;}
.y77{bottom:252.826667pt;}
.y2d{bottom:262.266667pt;}
.y73{bottom:270.440000pt;}
.y8d{bottom:276.186667pt;}
.y2c{bottom:283.706667pt;}
.y8c{bottom:300.866667pt;}
.y2b{bottom:305.186667pt;}
.y8b{bottom:325.666667pt;}
.y72{bottom:326.306667pt;}
.y2a{bottom:326.626667pt;}
.y29{bottom:348.226667pt;}
.y8a{bottom:350.306667pt;}
.y71{bottom:363.746667pt;}
.y28{bottom:369.186667pt;}
.y53{bottom:369.666667pt;}
.y89{bottom:374.946667pt;}
.y27{bottom:387.586667pt;}
.y52{bottom:391.106667pt;}
.y88{bottom:399.746667pt;}
.y70{bottom:401.186667pt;}
.y26{bottom:405.986667pt;}
.y51{bottom:412.546667pt;}
.y25{bottom:424.386667pt;}
.y50{bottom:433.986667pt;}
.ya8{bottom:441.346667pt;}
.y24{bottom:442.786667pt;}
.y87{bottom:449.026667pt;}
.y4f{bottom:455.426667pt;}
.y6f{bottom:457.026667pt;}
.ya7{bottom:459.746667pt;}
.y23{bottom:461.186667pt;}
.y86{bottom:473.666667pt;}
.y4e{bottom:477.026667pt;}
.ya6{bottom:478.146667pt;}
.y22{bottom:479.586667pt;}
.y6e{bottom:494.626667pt;}
.ya5{bottom:496.546667pt;}
.y21{bottom:497.986667pt;}
.y4d{bottom:498.466667pt;}
.ya4{bottom:514.946667pt;}
.y20{bottom:516.386667pt;}
.y4c{bottom:519.906667pt;}
.y85{bottom:523.106667pt;}
.y6c{bottom:532.093333pt;}
.ya3{bottom:533.373333pt;}
.y1f{bottom:534.653333pt;}
.y4b{bottom:541.373333pt;}
.y84{bottom:547.773333pt;}
.ya2{bottom:551.773333pt;}
.y1e{bottom:553.053333pt;}
.y4a{bottom:562.813333pt;}
.ya1{bottom:570.173333pt;}
.y1d{bottom:571.453333pt;}
.y83{bottom:572.573333pt;}
.y49{bottom:584.253333pt;}
.y6a{bottom:587.933333pt;}
.ya0{bottom:588.573333pt;}
.y1c{bottom:589.853333pt;}
.y82{bottom:597.213333pt;}
.y48{bottom:605.693333pt;}
.y9f{bottom:606.973333pt;}
.y1b{bottom:608.253333pt;}
.y81{bottom:621.853333pt;}
.y68{bottom:625.373333pt;}
.y1a{bottom:626.653333pt;}
.y47{bottom:627.293333pt;}
.y9e{bottom:643.773333pt;}
.y66{bottom:644.413333pt;}
.y19{bottom:645.053333pt;}
.y80{bottom:646.493333pt;}
.y46{bottom:648.733333pt;}
.y9d{bottom:662.173333pt;}
.y45{bottom:670.173333pt;}
.y65{bottom:671.293333pt;}
.y9c{bottom:680.573333pt;}
.y18{bottom:681.853333pt;}
.y44{bottom:691.613333pt;}
.y64{bottom:695.613333pt;}
.y7f{bottom:695.933333pt;}
.y9b{bottom:698.973333pt;}
.y17{bottom:700.253333pt;}
.y43{bottom:713.053333pt;}
.y9a{bottom:717.373333pt;}
.y16{bottom:718.653333pt;}
.y63{bottom:720.573333pt;}
.y42{bottom:734.493333pt;}
.y99{bottom:735.773333pt;}
.y15{bottom:737.053333pt;}
.y62{bottom:745.213333pt;}
.y98{bottom:754.173333pt;}
.y14{bottom:755.453333pt;}
.y41{bottom:756.093333pt;}
.y61{bottom:770.053333pt;}
.y97{bottom:772.293333pt;}
.y13{bottom:773.893333pt;}
.y40{bottom:777.573333pt;}
.y12{bottom:792.293333pt;}
.y96{bottom:794.373333pt;}
.y60{bottom:794.693333pt;}
.y3f{bottom:799.013333pt;}
.y11{bottom:810.693333pt;}
.y5f{bottom:819.333333pt;}
.y3e{bottom:820.453333pt;}
.y10{bottom:828.773333pt;}
.y3d{bottom:841.893333pt;}
.y5e{bottom:844.133333pt;}
.y3c{bottom:863.333333pt;}
.yf{bottom:865.573333pt;}
.y5d{bottom:868.773333pt;}
.ye{bottom:884.293333pt;}
.y3b{bottom:884.773333pt;}
.y5c{bottom:893.413333pt;}
.yd{bottom:902.693333pt;}
.y3a{bottom:906.373333pt;}
.y5b{bottom:918.053333pt;}
.yc{bottom:921.093333pt;}
.y39{bottom:927.813333pt;}
.yb{bottom:939.493333pt;}
.y5a{bottom:942.853333pt;}
.y38{bottom:949.253333pt;}
.ya{bottom:957.573333pt;}
.y59{bottom:967.493333pt;}
.y37{bottom:970.693333pt;}
.y9{bottom:975.333333pt;}
.y8{bottom:991.813333pt;}
.y36{bottom:992.133333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.600000pt;}
.h11{height:18.400000pt;}
.h3{height:29.440000pt;}
.h7{height:34.238133pt;}
.h17{height:36.786667pt;}
.h13{height:36.800000pt;}
.h16{height:36.826667pt;}
.h5{height:39.198667pt;}
.h14{height:44.687500pt;}
.hd{height:46.781250pt;}
.h10{height:52.284375pt;}
.ha{height:53.535000pt;}
.h18{height:55.186667pt;}
.h15{height:55.200000pt;}
.h19{height:55.218667pt;}
.h2{height:58.563750pt;}
.hc{height:62.781250pt;}
.h12{height:62.812500pt;}
.hb{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h8{height:69.890625pt;}
.hf{height:73.454062pt;}
.he{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:58.866667pt;}
.w4{width:58.906667pt;}
.w3{width:68.832000pt;}
.w5{width:84.946667pt;}
.w6{width:93.470667pt;}
.w7{width:132.018667pt;}
.w8{width:204.826667pt;}
.w9{width:237.933333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.878667pt;}
.x5{left:9.600000pt;}
.x8{left:22.386667pt;}
.x3{left:23.520000pt;}
.x1{left:56.800000pt;}
.x11{left:66.561333pt;}
.x17{left:80.800000pt;}
.x10{left:104.832000pt;}
.x9{left:152.026667pt;}
.x7{left:155.720000pt;}
.x13{left:160.840000pt;}
.xc{left:244.506667pt;}
.xf{left:267.906667pt;}
.xd{left:274.946667pt;}
.x16{left:279.106667pt;}
.x14{left:293.506667pt;}
.xb{left:322.626667pt;}
.xe{left:334.946667pt;}
.x4{left:380.226667pt;}
.xa{left:401.826667pt;}
.x15{left:498.986667pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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