
    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_cb831bfc45030f6d94299355.woff')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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_e9ae75abc8925ee4d2f09562.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1dba794caec70e2ed569cfa1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1f487443a1934365f215fe6f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_7587e6f189f87ff76d2bae8f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c2ca7c94059934dc0e2f62e7.woff')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_552bb4bd6dc9eb78b6b72396.woff')format("woff");}.ff9{font-family:ff9;line-height:0.912109;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_ee2d980b4651b1fe1743bca0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d8d76759aea4db0bcee1184b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_3e4d33c323bbe285b097feb0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_84ec9303cfb493ce35864bbc.woff')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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_64e9fb43b2bb080478668229.woff')format("woff");}.ffe{font-family:ffe;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);}
.v1{vertical-align:-77.760000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.486600px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.020160px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.032160px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.032000px;}
.ls1{letter-spacing:1.080000px;}
.ls4{letter-spacing:8.280000px;}
.lsf{letter-spacing:13.800000px;}
.ls15{letter-spacing:35.280000px;}
.ls13{letter-spacing:46.546560px;}
.ls2{letter-spacing:115.920000px;}
.ls3{letter-spacing:171.144000px;}
.lse{letter-spacing:201.024000px;}
.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;}
}
.ws1{word-spacing:-26.171520px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.099840px;}
.wsb{word-spacing:-14.633400px;}
.ws6{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws9{word-spacing:-12.240000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-3.282720px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._f{width:4.964640px;}
._d{width:6.223680px;}
._e{width:7.277760px;}
._5{width:8.945280px;}
._12{width:10.051200px;}
._6{width:11.191680px;}
._9{width:12.516480px;}
._16{width:13.633680px;}
._b{width:14.886720px;}
._a{width:15.909120px;}
._17{width:17.429760px;}
._18{width:18.788160px;}
._15{width:19.862400px;}
._14{width:21.444480px;}
._13{width:22.985280px;}
._19{width:24.333600px;}
._1c{width:32.822880px;}
._1a{width:35.026560px;}
._1b{width:37.237440px;}
._c{width:103.845600px;}
._8{width:188.640000px;}
._11{width:200.880000px;}
._7{width:681.065280px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fsc{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:1.075500px;}
.y9d{bottom:3.240000px;}
.y62{bottom:3.585000px;}
.y64{bottom:3.600000px;}
.y67{bottom:3.945000px;}
.y41{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y59{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.y56{bottom:10.795500px;}
.y40{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y55{bottom:26.635500px;}
.y49{bottom:30.631500px;}
.y3f{bottom:38.520000px;}
.y48{bottom:42.514500px;}
.y54{bottom:43.954500px;}
.y3{bottom:47.880000px;}
.y3e{bottom:55.800000px;}
.y47{bottom:55.834500px;}
.y7{bottom:57.636000px;}
.y53{bottom:59.794500px;}
.y46{bottom:68.794500px;}
.y3d{bottom:73.080000px;}
.y52{bottom:75.274500px;}
.y51{bottom:88.234500px;}
.y3c{bottom:90.360000px;}
.y45{bottom:90.394500px;}
.y7d{bottom:91.476000px;}
.y50{bottom:94.354500px;}
.y57{bottom:97.956000px;}
.yce{bottom:99.036000px;}
.y3b{bottom:106.965000px;}
.y4f{bottom:110.554500px;}
.y42{bottom:112.720500px;}
.ycd{bottom:116.676000px;}
.y4e{bottom:126.034500px;}
.yb2{bottom:133.596000px;}
.y3a{bottom:133.605000px;}
.ycc{bottom:133.956000px;}
.y4d{bottom:141.514500px;}
.y39{bottom:150.885000px;}
.yb1{bottom:150.915000px;}
.ycb{bottom:151.275000px;}
.y44{bottom:152.674500px;}
.y4c{bottom:156.994500px;}
.y43{bottom:163.504500px;}
.y38{bottom:168.165000px;}
.yb0{bottom:168.195000px;}
.yca{bottom:168.555000px;}
.y4b{bottom:172.144500px;}
.y37{bottom:185.445000px;}
.yaf{bottom:185.475000px;}
.yc9{bottom:185.835000px;}
.y36{bottom:202.365000px;}
.yae{bottom:202.755000px;}
.yc8{bottom:203.115000px;}
.yad{bottom:220.035000px;}
.yc7{bottom:220.395000px;}
.y35{bottom:229.005000px;}
.yac{bottom:237.315000px;}
.yc6{bottom:237.675000px;}
.y34{bottom:246.315000px;}
.y20{bottom:253.155000px;}
.yab{bottom:254.595000px;}
.y33{bottom:263.595000px;}
.yaa{bottom:271.515000px;}
.y1f{bottom:277.275000px;}
.y32{bottom:280.515000px;}
.ya9{bottom:288.825000px;}
.yc5{bottom:298.185000px;}
.y1e{bottom:301.395000px;}
.y11{bottom:305.745000px;}
.ya8{bottom:306.105000px;}
.y31{bottom:307.155000px;}
.yc4{bottom:315.465000px;}
.ya7{bottom:323.385000px;}
.y30{bottom:324.435000px;}
.y1d{bottom:325.515000px;}
.yc3{bottom:332.745000px;}
.ya6{bottom:340.665000px;}
.y2f{bottom:341.355000px;}
.y1c{bottom:349.635000px;}
.yc2{bottom:350.025000px;}
.ya5{bottom:357.945000px;}
.y2e{bottom:358.635000px;}
.yc1{bottom:367.305000px;}
.y1b{bottom:373.785000px;}
.ya4{bottom:375.225000px;}
.y2d{bottom:375.945000px;}
.yc0{bottom:384.585000px;}
.ya3{bottom:392.505000px;}
.y2c{bottom:393.225000px;}
.y1a{bottom:397.905000px;}
.ybf{bottom:401.865000px;}
.ya2{bottom:409.830000px;}
.y2b{bottom:410.505000px;}
.ybe{bottom:419.190000px;}
.y19{bottom:422.025000px;}
.ya1{bottom:427.110000px;}
.y2a{bottom:427.785000px;}
.ybd{bottom:436.470000px;}
.ya0{bottom:444.390000px;}
.y29{bottom:444.705000px;}
.y18{bottom:446.145000px;}
.ybc{bottom:453.750000px;}
.y9f{bottom:461.670000px;}
.y17{bottom:470.265000px;}
.y28{bottom:470.625000px;}
.ybb{bottom:470.670000px;}
.y9e{bottom:478.230000px;}
.y27{bottom:486.105000px;}
.yba{bottom:487.950000px;}
.y9c{bottom:492.990000px;}
.y16{bottom:494.745000px;}
.y26{bottom:501.630000px;}
.yb9{bottom:505.230000px;}
.y9b{bottom:510.990000px;}
.y25{bottom:517.110000px;}
.y15{bottom:518.910000px;}
.yb8{bottom:522.510000px;}
.y9a{bottom:528.630000px;}
.y24{bottom:532.950000px;}
.yb7{bottom:539.820000px;}
.y14{bottom:543.030000px;}
.y99{bottom:546.660000px;}
.y7c{bottom:547.740000px;}
.y23{bottom:548.430000px;}
.yb6{bottom:557.100000px;}
.y22{bottom:563.910000px;}
.y98{bottom:564.660000px;}
.y7b{bottom:565.020000px;}
.y13{bottom:567.150000px;}
.yb5{bottom:574.380000px;}
.y21{bottom:579.030000px;}
.y7a{bottom:582.300000px;}
.y97{bottom:582.660000px;}
.y12{bottom:591.270000px;}
.yb4{bottom:591.300000px;}
.y79{bottom:599.580000px;}
.y94{bottom:600.660000px;}
.yb3{bottom:613.980000px;}
.y78{bottom:616.860000px;}
.y96{bottom:618.660000px;}
.y77{bottom:634.140000px;}
.y95{bottom:636.660000px;}
.y76{bottom:651.420000px;}
.y93{bottom:658.260000px;}
.y75{bottom:668.340000px;}
.y92{bottom:675.570000px;}
.y74{bottom:685.650000px;}
.y91{bottom:693.210000px;}
.y73{bottom:702.930000px;}
.y90{bottom:710.490000px;}
.y72{bottom:720.210000px;}
.y8f{bottom:727.770000px;}
.y71{bottom:737.490000px;}
.y8e{bottom:745.050000px;}
.y70{bottom:754.770000px;}
.y8d{bottom:762.330000px;}
.y6f{bottom:772.050000px;}
.y8c{bottom:779.610000px;}
.y6e{bottom:789.330000px;}
.y8b{bottom:796.890000px;}
.y6d{bottom:806.295000px;}
.y8a{bottom:814.215000px;}
.y6c{bottom:820.710000px;}
.y89{bottom:831.495000px;}
.y6b{bottom:838.710000px;}
.y88{bottom:848.415000px;}
.y6a{bottom:856.710000px;}
.y87{bottom:865.695000px;}
.y69{bottom:874.710000px;}
.y86{bottom:882.975000px;}
.y68{bottom:892.710000px;}
.y85{bottom:900.255000px;}
.y10{bottom:909.255000px;}
.y66{bottom:910.710000px;}
.yf{bottom:914.655000px;}
.y84{bottom:917.535000px;}
.y61{bottom:928.710000px;}
.ye{bottom:931.935000px;}
.y83{bottom:934.845000px;}
.y65{bottom:946.725000px;}
.y82{bottom:951.765000px;}
.yd{bottom:955.725000px;}
.y63{bottom:964.725000px;}
.yc{bottom:966.165000px;}
.y81{bottom:969.405000px;}
.y60{bottom:986.325000px;}
.y80{bottom:986.685000px;}
.yb{bottom:990.285000px;}
.y5f{bottom:1003.605000px;}
.y7f{bottom:1003.965000px;}
.ya{bottom:1019.805000px;}
.y5e{bottom:1021.245000px;}
.y5d{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y5c{bottom:1055.445000px;}
.y8{bottom:1072.050000px;}
.y5b{bottom:1072.770000px;}
.y58{bottom:1075.320000px;}
.y5a{bottom:1089.690000px;}
.y7e{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.650313px;}
.h1f{height:16.905000px;}
.h1a{height:17.265000px;}
.h1b{height:17.280000px;}
.h1e{height:17.310000px;}
.h17{height:27.720000px;}
.h14{height:29.678906px;}
.h9{height:38.158594px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.hf{height:42.229688px;}
.h19{height:53.280000px;}
.he{height:53.677969px;}
.h15{height:55.147500px;}
.h7{height:58.050000px;}
.h1c{height:59.328281px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.h1d{height:62.163910px;}
.h10{height:62.960625px;}
.h18{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h11{height:65.518594px;}
.h3{height:65.884219px;}
.h13{height:70.664062px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:192.285000px;}
.hb{height:600.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:73.785000px;}
.w10{width:73.830000px;}
.we{width:74.181000px;}
.w7{width:94.342500px;}
.w2{width:105.142500px;}
.wf{width:113.040000px;}
.wb{width:113.085000px;}
.wd{width:127.872000px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w9{width:187.605000px;}
.wa{width:202.785000px;}
.w8{width:579.465000px;}
.w5{width:596.745000px;}
.w3{width:631.305000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x1c{left:8.295000px;}
.x17{left:14.386500px;}
.x1a{left:16.186500px;}
.x4{left:17.625000px;}
.x19{left:19.426500px;}
.x18{left:26.266500px;}
.x20{left:29.146500px;}
.x6{left:33.105000px;}
.x11{left:43.906500px;}
.x1f{left:47.542500px;}
.x12{left:50.782500px;}
.x16{left:53.302500px;}
.x10{left:55.102500px;}
.x1d{left:62.295000px;}
.x21{left:66.265500px;}
.x15{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x14{left:92.905500px;}
.x2{left:96.145500px;}
.xc{left:98.316000px;}
.x22{left:102.985500px;}
.x1e{left:106.945500px;}
.x27{left:109.489500px;}
.xa{left:113.436000px;}
.x13{left:124.585500px;}
.x24{left:140.472000px;}
.x5{left:145.860000px;}
.x3{left:183.690000px;}
.x28{left:204.570000px;}
.x1b{left:218.970000px;}
.x26{left:265.785000px;}
.x2b{left:318.390000px;}
.x29{left:392.910000px;}
.x25{left:409.860000px;}
.x2c{left:521.505000px;}
.xb{left:525.090000px;}
.xe{left:577.335000px;}
.x2a{left:596.430000px;}
.x2e{left:623.415000px;}
.x2f{left:626.655000px;}
.xd{left:673.845000px;}
.x2d{left:710.205000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.432533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.017920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.028587pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.917333pt;}
.ls1{letter-spacing:0.960000pt;}
.ls4{letter-spacing:7.360000pt;}
.lsf{letter-spacing:12.266667pt;}
.ls15{letter-spacing:31.360000pt;}
.ls13{letter-spacing:41.374720pt;}
.ls2{letter-spacing:103.040000pt;}
.ls3{letter-spacing:152.128000pt;}
.lse{letter-spacing:178.688000pt;}
.ws1{word-spacing:-23.263573pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.422080pt;}
.wsb{word-spacing:-13.007467pt;}
.ws6{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws9{word-spacing:-10.880000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-2.917973pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._f{width:4.413013pt;}
._d{width:5.532160pt;}
._e{width:6.469120pt;}
._5{width:7.951360pt;}
._12{width:8.934400pt;}
._6{width:9.948160pt;}
._9{width:11.125760pt;}
._16{width:12.118827pt;}
._b{width:13.232640pt;}
._a{width:14.141440pt;}
._17{width:15.493120pt;}
._18{width:16.700587pt;}
._15{width:17.655467pt;}
._14{width:19.061760pt;}
._13{width:20.431360pt;}
._19{width:21.629867pt;}
._1c{width:29.175893pt;}
._1a{width:31.134720pt;}
._1b{width:33.099947pt;}
._c{width:92.307200pt;}
._8{width:167.680000pt;}
._11{width:178.560000pt;}
._7{width:605.391360pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fsc{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:0.956000pt;}
.y9d{bottom:2.880000pt;}
.y62{bottom:3.186667pt;}
.y64{bottom:3.200000pt;}
.y67{bottom:3.506667pt;}
.y41{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.y56{bottom:9.596000pt;}
.y40{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y55{bottom:23.676000pt;}
.y49{bottom:27.228000pt;}
.y3f{bottom:34.240000pt;}
.y48{bottom:37.790667pt;}
.y54{bottom:39.070667pt;}
.y3{bottom:42.560000pt;}
.y3e{bottom:49.600000pt;}
.y47{bottom:49.630667pt;}
.y7{bottom:51.232000pt;}
.y53{bottom:53.150667pt;}
.y46{bottom:61.150667pt;}
.y3d{bottom:64.960000pt;}
.y52{bottom:66.910667pt;}
.y51{bottom:78.430667pt;}
.y3c{bottom:80.320000pt;}
.y45{bottom:80.350667pt;}
.y7d{bottom:81.312000pt;}
.y50{bottom:83.870667pt;}
.y57{bottom:87.072000pt;}
.yce{bottom:88.032000pt;}
.y3b{bottom:95.080000pt;}
.y4f{bottom:98.270667pt;}
.y42{bottom:100.196000pt;}
.ycd{bottom:103.712000pt;}
.y4e{bottom:112.030667pt;}
.yb2{bottom:118.752000pt;}
.y3a{bottom:118.760000pt;}
.ycc{bottom:119.072000pt;}
.y4d{bottom:125.790667pt;}
.y39{bottom:134.120000pt;}
.yb1{bottom:134.146667pt;}
.ycb{bottom:134.466667pt;}
.y44{bottom:135.710667pt;}
.y4c{bottom:139.550667pt;}
.y43{bottom:145.337333pt;}
.y38{bottom:149.480000pt;}
.yb0{bottom:149.506667pt;}
.yca{bottom:149.826667pt;}
.y4b{bottom:153.017333pt;}
.y37{bottom:164.840000pt;}
.yaf{bottom:164.866667pt;}
.yc9{bottom:165.186667pt;}
.y36{bottom:179.880000pt;}
.yae{bottom:180.226667pt;}
.yc8{bottom:180.546667pt;}
.yad{bottom:195.586667pt;}
.yc7{bottom:195.906667pt;}
.y35{bottom:203.560000pt;}
.yac{bottom:210.946667pt;}
.yc6{bottom:211.266667pt;}
.y34{bottom:218.946667pt;}
.y20{bottom:225.026667pt;}
.yab{bottom:226.306667pt;}
.y33{bottom:234.306667pt;}
.yaa{bottom:241.346667pt;}
.y1f{bottom:246.466667pt;}
.y32{bottom:249.346667pt;}
.ya9{bottom:256.733333pt;}
.yc5{bottom:265.053333pt;}
.y1e{bottom:267.906667pt;}
.y11{bottom:271.773333pt;}
.ya8{bottom:272.093333pt;}
.y31{bottom:273.026667pt;}
.yc4{bottom:280.413333pt;}
.ya7{bottom:287.453333pt;}
.y30{bottom:288.386667pt;}
.y1d{bottom:289.346667pt;}
.yc3{bottom:295.773333pt;}
.ya6{bottom:302.813333pt;}
.y2f{bottom:303.426667pt;}
.y1c{bottom:310.786667pt;}
.yc2{bottom:311.133333pt;}
.ya5{bottom:318.173333pt;}
.y2e{bottom:318.786667pt;}
.yc1{bottom:326.493333pt;}
.y1b{bottom:332.253333pt;}
.ya4{bottom:333.533333pt;}
.y2d{bottom:334.173333pt;}
.yc0{bottom:341.853333pt;}
.ya3{bottom:348.893333pt;}
.y2c{bottom:349.533333pt;}
.y1a{bottom:353.693333pt;}
.ybf{bottom:357.213333pt;}
.ya2{bottom:364.293333pt;}
.y2b{bottom:364.893333pt;}
.ybe{bottom:372.613333pt;}
.y19{bottom:375.133333pt;}
.ya1{bottom:379.653333pt;}
.y2a{bottom:380.253333pt;}
.ybd{bottom:387.973333pt;}
.ya0{bottom:395.013333pt;}
.y29{bottom:395.293333pt;}
.y18{bottom:396.573333pt;}
.ybc{bottom:403.333333pt;}
.y9f{bottom:410.373333pt;}
.y17{bottom:418.013333pt;}
.y28{bottom:418.333333pt;}
.ybb{bottom:418.373333pt;}
.y9e{bottom:425.093333pt;}
.y27{bottom:432.093333pt;}
.yba{bottom:433.733333pt;}
.y9c{bottom:438.213333pt;}
.y16{bottom:439.773333pt;}
.y26{bottom:445.893333pt;}
.yb9{bottom:449.093333pt;}
.y9b{bottom:454.213333pt;}
.y25{bottom:459.653333pt;}
.y15{bottom:461.253333pt;}
.yb8{bottom:464.453333pt;}
.y9a{bottom:469.893333pt;}
.y24{bottom:473.733333pt;}
.yb7{bottom:479.840000pt;}
.y14{bottom:482.693333pt;}
.y99{bottom:485.920000pt;}
.y7c{bottom:486.880000pt;}
.y23{bottom:487.493333pt;}
.yb6{bottom:495.200000pt;}
.y22{bottom:501.253333pt;}
.y98{bottom:501.920000pt;}
.y7b{bottom:502.240000pt;}
.y13{bottom:504.133333pt;}
.yb5{bottom:510.560000pt;}
.y21{bottom:514.693333pt;}
.y7a{bottom:517.600000pt;}
.y97{bottom:517.920000pt;}
.y12{bottom:525.573333pt;}
.yb4{bottom:525.600000pt;}
.y79{bottom:532.960000pt;}
.y94{bottom:533.920000pt;}
.yb3{bottom:545.760000pt;}
.y78{bottom:548.320000pt;}
.y96{bottom:549.920000pt;}
.y77{bottom:563.680000pt;}
.y95{bottom:565.920000pt;}
.y76{bottom:579.040000pt;}
.y93{bottom:585.120000pt;}
.y75{bottom:594.080000pt;}
.y92{bottom:600.506667pt;}
.y74{bottom:609.466667pt;}
.y91{bottom:616.186667pt;}
.y73{bottom:624.826667pt;}
.y90{bottom:631.546667pt;}
.y72{bottom:640.186667pt;}
.y8f{bottom:646.906667pt;}
.y71{bottom:655.546667pt;}
.y8e{bottom:662.266667pt;}
.y70{bottom:670.906667pt;}
.y8d{bottom:677.626667pt;}
.y6f{bottom:686.266667pt;}
.y8c{bottom:692.986667pt;}
.y6e{bottom:701.626667pt;}
.y8b{bottom:708.346667pt;}
.y6d{bottom:716.706667pt;}
.y8a{bottom:723.746667pt;}
.y6c{bottom:729.520000pt;}
.y89{bottom:739.106667pt;}
.y6b{bottom:745.520000pt;}
.y88{bottom:754.146667pt;}
.y6a{bottom:761.520000pt;}
.y87{bottom:769.506667pt;}
.y69{bottom:777.520000pt;}
.y86{bottom:784.866667pt;}
.y68{bottom:793.520000pt;}
.y85{bottom:800.226667pt;}
.y10{bottom:808.226667pt;}
.y66{bottom:809.520000pt;}
.yf{bottom:813.026667pt;}
.y84{bottom:815.586667pt;}
.y61{bottom:825.520000pt;}
.ye{bottom:828.386667pt;}
.y83{bottom:830.973333pt;}
.y65{bottom:841.533333pt;}
.y82{bottom:846.013333pt;}
.yd{bottom:849.533333pt;}
.y63{bottom:857.533333pt;}
.yc{bottom:858.813333pt;}
.y81{bottom:861.693333pt;}
.y60{bottom:876.733333pt;}
.y80{bottom:877.053333pt;}
.yb{bottom:880.253333pt;}
.y5f{bottom:892.093333pt;}
.y7f{bottom:892.413333pt;}
.ya{bottom:906.493333pt;}
.y5e{bottom:907.773333pt;}
.y5d{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y5c{bottom:938.173333pt;}
.y8{bottom:952.933333pt;}
.y5b{bottom:953.573333pt;}
.y58{bottom:955.840000pt;}
.y5a{bottom:968.613333pt;}
.y7e{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h16{height:5.022500pt;}
.h1f{height:15.026667pt;}
.h1a{height:15.346667pt;}
.h1b{height:15.360000pt;}
.h1e{height:15.386667pt;}
.h17{height:24.640000pt;}
.h14{height:26.381250pt;}
.h9{height:33.918750pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.hf{height:37.537500pt;}
.h19{height:47.360000pt;}
.he{height:47.713750pt;}
.h15{height:49.020000pt;}
.h7{height:51.600000pt;}
.h1c{height:52.736250pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.h1d{height:55.256809pt;}
.h10{height:55.965000pt;}
.h18{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h11{height:58.238750pt;}
.h3{height:58.563750pt;}
.h13{height:62.812500pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:170.920000pt;}
.hb{height:533.893333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:65.586667pt;}
.w10{width:65.626667pt;}
.we{width:65.938667pt;}
.w7{width:83.860000pt;}
.w2{width:93.460000pt;}
.wf{width:100.480000pt;}
.wb{width:100.520000pt;}
.wd{width:113.664000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w9{width:166.760000pt;}
.wa{width:180.253333pt;}
.w8{width:515.080000pt;}
.w5{width:530.440000pt;}
.w3{width:561.160000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x1c{left:7.373333pt;}
.x17{left:12.788000pt;}
.x1a{left:14.388000pt;}
.x4{left:15.666667pt;}
.x19{left:17.268000pt;}
.x18{left:23.348000pt;}
.x20{left:25.908000pt;}
.x6{left:29.426667pt;}
.x11{left:39.028000pt;}
.x1f{left:42.260000pt;}
.x12{left:45.140000pt;}
.x16{left:47.380000pt;}
.x10{left:48.980000pt;}
.x1d{left:55.373333pt;}
.x21{left:58.902667pt;}
.x15{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x14{left:82.582667pt;}
.x2{left:85.462667pt;}
.xc{left:87.392000pt;}
.x22{left:91.542667pt;}
.x1e{left:95.062667pt;}
.x27{left:97.324000pt;}
.xa{left:100.832000pt;}
.x13{left:110.742667pt;}
.x24{left:124.864000pt;}
.x5{left:129.653333pt;}
.x3{left:163.280000pt;}
.x28{left:181.840000pt;}
.x1b{left:194.640000pt;}
.x26{left:236.253333pt;}
.x2b{left:283.013333pt;}
.x29{left:349.253333pt;}
.x25{left:364.320000pt;}
.x2c{left:463.560000pt;}
.xb{left:466.746667pt;}
.xe{left:513.186667pt;}
.x2a{left:530.160000pt;}
.x2e{left:554.146667pt;}
.x2f{left:557.026667pt;}
.xd{left:598.973333pt;}
.x2d{left:631.293333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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