
    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_f2a99f16ca3237c079377e26.woff2')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_122d44acd9ee24b6bf978c2b.woff2')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_6f9f1b953386de10909254c0.woff2')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_b22e9e91553c6271644e575e.woff2')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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_668938fdcb59736bd6156ba2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2d8f6bef5c67f0ac0e224429.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_4a22efe48e6cfb23bfc93ef8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_15a2a189e357f20b2b64f6b8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_074cc5dce43b36ff34e82b2e.woff2')format("woff");}.ffc{font-family:ffc;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;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.507000px;}
.ls2{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.089400px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.466800px;}
.ls6{letter-spacing:0.498000px;}
.ls0{letter-spacing:0.720000px;}
.lsb{letter-spacing:2.160000px;}
.ls10{letter-spacing:16.306560px;}
.lsa{letter-spacing:21.060000px;}
.lse{letter-spacing:46.546560px;}
.ls9{letter-spacing:63.826560px;}
.ls12{letter-spacing:2867.496000px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.wsb{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.613000px;}
.ws5{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-3.461760px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:4.643040px;}
._e{width:6.010560px;}
._a{width:7.058880px;}
._b{width:8.591040px;}
._9{width:9.846720px;}
._c{width:10.965600px;}
._d{width:12.202560px;}
._11{width:13.608000px;}
._7{width:15.059520px;}
._8{width:16.899840px;}
._10{width:18.323520px;}
._1d{width:19.499520px;}
._1c{width:20.891520px;}
._1b{width:22.040640px;}
._1a{width:23.587200px;}
._18{width:26.637120px;}
._17{width:27.760320px;}
._19{width:28.853760px;}
._12{width:30.352320px;}
._14{width:31.363200px;}
._13{width:33.177600px;}
._16{width:46.267200px;}
._15{width:47.718720px;}
._6{width:385.380480px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y42{bottom:4.320000px;}
.y58{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y55{bottom:16.555500px;}
.y4{bottom:21.240000px;}
.y41{bottom:22.320000px;}
.y49{bottom:30.631500px;}
.y54{bottom:32.071500px;}
.y40{bottom:39.600000px;}
.y3{bottom:44.280000px;}
.y53{bottom:49.714500px;}
.y48{bottom:51.874500px;}
.y3f{bottom:56.880000px;}
.y7{bottom:57.636000px;}
.y47{bottom:64.834500px;}
.y52{bottom:65.554500px;}
.y3e{bottom:74.160000px;}
.y51{bottom:78.514500px;}
.y50{bottom:84.634500px;}
.y46{bottom:86.434500px;}
.y3d{bottom:91.080000px;}
.y90{bottom:99.756000px;}
.y56{bottom:100.116000px;}
.y4f{bottom:100.474500px;}
.y3c{bottom:108.405000px;}
.yc0{bottom:112.356000px;}
.y43{bottom:114.160500px;}
.y4e{bottom:115.954500px;}
.y8f{bottom:117.036000px;}
.y3b{bottom:125.685000px;}
.ybf{bottom:129.636000px;}
.y4d{bottom:131.434500px;}
.y8e{bottom:135.396000px;}
.y3a{bottom:142.965000px;}
.ybe{bottom:146.952000px;}
.y4c{bottom:147.274500px;}
.y45{bottom:148.714500px;}
.y8d{bottom:152.715000px;}
.y44{bottom:159.544500px;}
.y39{bottom:160.245000px;}
.y4b{bottom:162.424500px;}
.ybd{bottom:164.235000px;}
.y8c{bottom:169.995000px;}
.y38{bottom:177.525000px;}
.ybc{bottom:181.515000px;}
.y8b{bottom:187.275000px;}
.y37{bottom:194.805000px;}
.ybb{bottom:198.435000px;}
.y8a{bottom:204.555000px;}
.y36{bottom:212.085000px;}
.y89{bottom:222.915000px;}
.yba{bottom:224.715000px;}
.y35{bottom:229.365000px;}
.y88{bottom:240.195000px;}
.yb9{bottom:241.995000px;}
.y34{bottom:246.675000px;}
.y87{bottom:257.475000px;}
.yb8{bottom:259.275000px;}
.y33{bottom:263.955000px;}
.y86{bottom:274.425000px;}
.yb7{bottom:276.585000px;}
.y32{bottom:280.875000px;}
.y85{bottom:292.785000px;}
.yb6{bottom:293.865000px;}
.y31{bottom:298.155000px;}
.yc{bottom:303.225000px;}
.y84{bottom:310.065000px;}
.yb5{bottom:311.145000px;}
.y30{bottom:315.435000px;}
.y83{bottom:327.345000px;}
.yb4{bottom:328.425000px;}
.y2f{bottom:332.715000px;}
.y82{bottom:344.625000px;}
.yb3{bottom:345.705000px;}
.y2e{bottom:349.995000px;}
.y81{bottom:362.985000px;}
.y1a{bottom:365.115000px;}
.y2d{bottom:367.305000px;}
.y80{bottom:380.265000px;}
.y2c{bottom:384.585000px;}
.y19{bottom:389.265000px;}
.y7f{bottom:397.185000px;}
.yb2{bottom:397.545000px;}
.y2b{bottom:401.505000px;}
.y18{bottom:413.385000px;}
.yb1{bottom:414.510000px;}
.y7e{bottom:423.870000px;}
.y2a{bottom:427.425000px;}
.y17{bottom:437.505000px;}
.yb0{bottom:440.790000px;}
.y7d{bottom:441.150000px;}
.y29{bottom:442.905000px;}
.yaf{bottom:458.070000px;}
.y28{bottom:458.385000px;}
.y7c{bottom:458.430000px;}
.ydd{bottom:459.150000px;}
.y16{bottom:461.625000px;}
.y27{bottom:473.865000px;}
.y7b{bottom:475.350000px;}
.ydc{bottom:476.430000px;}
.y15{bottom:486.105000px;}
.y26{bottom:489.345000px;}
.y7a{bottom:492.630000px;}
.ydb{bottom:493.350000px;}
.y25{bottom:505.230000px;}
.y79{bottom:509.910000px;}
.y14{bottom:510.270000px;}
.yda{bottom:510.630000px;}
.y24{bottom:520.710000px;}
.yae{bottom:526.830000px;}
.y78{bottom:527.190000px;}
.yd9{bottom:527.910000px;}
.y13{bottom:534.390000px;}
.y23{bottom:536.190000px;}
.y77{bottom:544.500000px;}
.yd8{bottom:545.220000px;}
.y22{bottom:551.670000px;}
.yad{bottom:553.500000px;}
.y12{bottom:558.510000px;}
.y76{bottom:561.780000px;}
.yd7{bottom:562.500000px;}
.y21{bottom:567.150000px;}
.yac{bottom:570.780000px;}
.y75{bottom:579.060000px;}
.yd6{bottom:579.780000px;}
.y11{bottom:582.630000px;}
.yab{bottom:589.140000px;}
.y74{bottom:596.340000px;}
.yd5{bottom:597.060000px;}
.y20{bottom:598.110000px;}
.yaa{bottom:606.420000px;}
.y10{bottom:606.750000px;}
.y1f{bottom:613.590000px;}
.y73{bottom:613.620000px;}
.yd4{bottom:614.340000px;}
.ya9{bottom:624.780000px;}
.y1e{bottom:629.430000px;}
.yf{bottom:630.900000px;}
.yd3{bottom:631.620000px;}
.ya8{bottom:641.700000px;}
.y1d{bottom:644.940000px;}
.y72{bottom:648.180000px;}
.yd2{bottom:648.900000px;}
.ye{bottom:655.020000px;}
.ya7{bottom:660.060000px;}
.y1c{bottom:660.420000px;}
.y71{bottom:665.100000px;}
.yd1{bottom:666.180000px;}
.y1b{bottom:675.900000px;}
.ya6{bottom:677.370000px;}
.yd{bottom:679.140000px;}
.y70{bottom:682.410000px;}
.yd0{bottom:683.130000px;}
.ya5{bottom:695.370000px;}
.y6f{bottom:699.690000px;}
.ycf{bottom:700.410000px;}
.ya4{bottom:713.370000px;}
.y6e{bottom:716.610000px;}
.yce{bottom:717.690000px;}
.ya3{bottom:730.650000px;}
.ycd{bottom:734.970000px;}
.y6d{bottom:743.250000px;}
.ya2{bottom:747.930000px;}
.ycc{bottom:752.250000px;}
.y6c{bottom:760.530000px;}
.ya1{bottom:765.210000px;}
.ycb{bottom:769.530000px;}
.y6b{bottom:777.810000px;}
.ya0{bottom:783.570000px;}
.yca{bottom:786.810000px;}
.y6a{bottom:795.090000px;}
.y9f{bottom:800.895000px;}
.yc9{bottom:804.135000px;}
.y69{bottom:812.415000px;}
.y9e{bottom:818.175000px;}
.yc8{bottom:821.415000px;}
.y68{bottom:829.695000px;}
.y9d{bottom:836.535000px;}
.yc7{bottom:838.695000px;}
.y67{bottom:846.975000px;}
.y9c{bottom:853.815000px;}
.yc6{bottom:855.975000px;}
.y66{bottom:864.255000px;}
.y9b{bottom:871.095000px;}
.yc5{bottom:873.255000px;}
.y65{bottom:881.175000px;}
.y9a{bottom:888.015000px;}
.yc4{bottom:890.175000px;}
.y64{bottom:898.095000px;}
.y99{bottom:906.375000px;}
.yc3{bottom:907.455000px;}
.y98{bottom:923.655000px;}
.y63{bottom:924.735000px;}
.y97{bottom:940.965000px;}
.y62{bottom:942.045000px;}
.y96{bottom:958.245000px;}
.y61{bottom:959.325000px;}
.y95{bottom:975.525000px;}
.y60{bottom:976.605000px;}
.y94{bottom:992.805000px;}
.y5f{bottom:993.885000px;}
.yb{bottom:1006.485000px;}
.y5e{bottom:1011.165000px;}
.ya{bottom:1024.125000px;}
.y5d{bottom:1028.085000px;}
.y93{bottom:1028.445000px;}
.y92{bottom:1045.365000px;}
.yc2{bottom:1045.725000px;}
.y5c{bottom:1054.725000px;}
.y9{bottom:1060.485000px;}
.yc1{bottom:1062.645000px;}
.y5b{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5a{bottom:1088.970000px;}
.y57{bottom:1091.520000px;}
.y59{bottom:1105.890000px;}
.y91{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h14{height:5.650313px;}
.h6{height:24.348516px;}
.h15{height:27.720000px;}
.h12{height:29.678906px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hf{height:42.229688px;}
.he{height:45.101250px;}
.hd{height:53.677969px;}
.h13{height:55.147500px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.h10{height:60.155156px;}
.h9{height:60.952500px;}
.h17{height:62.163910px;}
.h16{height:63.455625px;}
.h8{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h11{height:188.325000px;}
.ha{height:688.485000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x15{left:8.266500px;}
.x4{left:13.305000px;}
.x13{left:17.266500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x14{left:29.146500px;}
.xd{left:43.906500px;}
.x1a{left:47.542500px;}
.x6{left:48.615000px;}
.xe{left:50.782500px;}
.x12{left:54.022500px;}
.xc{left:55.102500px;}
.x17{left:62.295000px;}
.x11{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x10{left:90.025500px;}
.x1f{left:91.836000px;}
.x2{left:95.425500px;}
.x1b{left:102.985500px;}
.x18{left:106.945500px;}
.x1e{left:113.436000px;}
.x20{left:118.836000px;}
.xf{left:124.585500px;}
.x3{left:182.250000px;}
.x16{left:218.970000px;}
.xa{left:399.420000px;}
.xb{left:597.495000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.x1c{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.450667pt;}
.ls2{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.414933pt;}
.ls6{letter-spacing:0.442667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls10{letter-spacing:14.494720pt;}
.lsa{letter-spacing:18.720000pt;}
.lse{letter-spacing:41.374720pt;}
.ls9{letter-spacing:56.734720pt;}
.ls12{letter-spacing:2548.885333pt;}
.wsa{word-spacing:-53.760000pt;}
.wsb{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.025067pt;}
.wsc{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-3.077120pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.127147pt;}
._e{width:5.342720pt;}
._a{width:6.274560pt;}
._b{width:7.636480pt;}
._9{width:8.752640pt;}
._c{width:9.747200pt;}
._d{width:10.846720pt;}
._11{width:12.096000pt;}
._7{width:13.386240pt;}
._8{width:15.022080pt;}
._10{width:16.287573pt;}
._1d{width:17.332907pt;}
._1c{width:18.570240pt;}
._1b{width:19.591680pt;}
._1a{width:20.966400pt;}
._18{width:23.677440pt;}
._17{width:24.675840pt;}
._19{width:25.647787pt;}
._12{width:26.979840pt;}
._14{width:27.878400pt;}
._13{width:29.491200pt;}
._16{width:41.126400pt;}
._15{width:42.416640pt;}
._6{width:342.560427pt;}
.fsb{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y42{bottom:3.840000pt;}
.y58{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:14.716000pt;}
.y4{bottom:18.880000pt;}
.y41{bottom:19.840000pt;}
.y49{bottom:27.228000pt;}
.y54{bottom:28.508000pt;}
.y40{bottom:35.200000pt;}
.y3{bottom:39.360000pt;}
.y53{bottom:44.190667pt;}
.y48{bottom:46.110667pt;}
.y3f{bottom:50.560000pt;}
.y7{bottom:51.232000pt;}
.y47{bottom:57.630667pt;}
.y52{bottom:58.270667pt;}
.y3e{bottom:65.920000pt;}
.y51{bottom:69.790667pt;}
.y50{bottom:75.230667pt;}
.y46{bottom:76.830667pt;}
.y3d{bottom:80.960000pt;}
.y90{bottom:88.672000pt;}
.y56{bottom:88.992000pt;}
.y4f{bottom:89.310667pt;}
.y3c{bottom:96.360000pt;}
.yc0{bottom:99.872000pt;}
.y43{bottom:101.476000pt;}
.y4e{bottom:103.070667pt;}
.y8f{bottom:104.032000pt;}
.y3b{bottom:111.720000pt;}
.ybf{bottom:115.232000pt;}
.y4d{bottom:116.830667pt;}
.y8e{bottom:120.352000pt;}
.y3a{bottom:127.080000pt;}
.ybe{bottom:130.624000pt;}
.y4c{bottom:130.910667pt;}
.y45{bottom:132.190667pt;}
.y8d{bottom:135.746667pt;}
.y44{bottom:141.817333pt;}
.y39{bottom:142.440000pt;}
.y4b{bottom:144.377333pt;}
.ybd{bottom:145.986667pt;}
.y8c{bottom:151.106667pt;}
.y38{bottom:157.800000pt;}
.ybc{bottom:161.346667pt;}
.y8b{bottom:166.466667pt;}
.y37{bottom:173.160000pt;}
.ybb{bottom:176.386667pt;}
.y8a{bottom:181.826667pt;}
.y36{bottom:188.520000pt;}
.y89{bottom:198.146667pt;}
.yba{bottom:199.746667pt;}
.y35{bottom:203.880000pt;}
.y88{bottom:213.506667pt;}
.yb9{bottom:215.106667pt;}
.y34{bottom:219.266667pt;}
.y87{bottom:228.866667pt;}
.yb8{bottom:230.466667pt;}
.y33{bottom:234.626667pt;}
.y86{bottom:243.933333pt;}
.yb7{bottom:245.853333pt;}
.y32{bottom:249.666667pt;}
.y85{bottom:260.253333pt;}
.yb6{bottom:261.213333pt;}
.y31{bottom:265.026667pt;}
.yc{bottom:269.533333pt;}
.y84{bottom:275.613333pt;}
.yb5{bottom:276.573333pt;}
.y30{bottom:280.386667pt;}
.y83{bottom:290.973333pt;}
.yb4{bottom:291.933333pt;}
.y2f{bottom:295.746667pt;}
.y82{bottom:306.333333pt;}
.yb3{bottom:307.293333pt;}
.y2e{bottom:311.106667pt;}
.y81{bottom:322.653333pt;}
.y1a{bottom:324.546667pt;}
.y2d{bottom:326.493333pt;}
.y80{bottom:338.013333pt;}
.y2c{bottom:341.853333pt;}
.y19{bottom:346.013333pt;}
.y7f{bottom:353.053333pt;}
.yb2{bottom:353.373333pt;}
.y2b{bottom:356.893333pt;}
.y18{bottom:367.453333pt;}
.yb1{bottom:368.453333pt;}
.y7e{bottom:376.773333pt;}
.y2a{bottom:379.933333pt;}
.y17{bottom:388.893333pt;}
.yb0{bottom:391.813333pt;}
.y7d{bottom:392.133333pt;}
.y29{bottom:393.693333pt;}
.yaf{bottom:407.173333pt;}
.y28{bottom:407.453333pt;}
.y7c{bottom:407.493333pt;}
.ydd{bottom:408.133333pt;}
.y16{bottom:410.333333pt;}
.y27{bottom:421.213333pt;}
.y7b{bottom:422.533333pt;}
.ydc{bottom:423.493333pt;}
.y15{bottom:432.093333pt;}
.y26{bottom:434.973333pt;}
.y7a{bottom:437.893333pt;}
.ydb{bottom:438.533333pt;}
.y25{bottom:449.093333pt;}
.y79{bottom:453.253333pt;}
.y14{bottom:453.573333pt;}
.yda{bottom:453.893333pt;}
.y24{bottom:462.853333pt;}
.yae{bottom:468.293333pt;}
.y78{bottom:468.613333pt;}
.yd9{bottom:469.253333pt;}
.y13{bottom:475.013333pt;}
.y23{bottom:476.613333pt;}
.y77{bottom:484.000000pt;}
.yd8{bottom:484.640000pt;}
.y22{bottom:490.373333pt;}
.yad{bottom:492.000000pt;}
.y12{bottom:496.453333pt;}
.y76{bottom:499.360000pt;}
.yd7{bottom:500.000000pt;}
.y21{bottom:504.133333pt;}
.yac{bottom:507.360000pt;}
.y75{bottom:514.720000pt;}
.yd6{bottom:515.360000pt;}
.y11{bottom:517.893333pt;}
.yab{bottom:523.680000pt;}
.y74{bottom:530.080000pt;}
.yd5{bottom:530.720000pt;}
.y20{bottom:531.653333pt;}
.yaa{bottom:539.040000pt;}
.y10{bottom:539.333333pt;}
.y1f{bottom:545.413333pt;}
.y73{bottom:545.440000pt;}
.yd4{bottom:546.080000pt;}
.ya9{bottom:555.360000pt;}
.y1e{bottom:559.493333pt;}
.yf{bottom:560.800000pt;}
.yd3{bottom:561.440000pt;}
.ya8{bottom:570.400000pt;}
.y1d{bottom:573.280000pt;}
.y72{bottom:576.160000pt;}
.yd2{bottom:576.800000pt;}
.ye{bottom:582.240000pt;}
.ya7{bottom:586.720000pt;}
.y1c{bottom:587.040000pt;}
.y71{bottom:591.200000pt;}
.yd1{bottom:592.160000pt;}
.y1b{bottom:600.800000pt;}
.ya6{bottom:602.106667pt;}
.yd{bottom:603.680000pt;}
.y70{bottom:606.586667pt;}
.yd0{bottom:607.226667pt;}
.ya5{bottom:618.106667pt;}
.y6f{bottom:621.946667pt;}
.ycf{bottom:622.586667pt;}
.ya4{bottom:634.106667pt;}
.y6e{bottom:636.986667pt;}
.yce{bottom:637.946667pt;}
.ya3{bottom:649.466667pt;}
.ycd{bottom:653.306667pt;}
.y6d{bottom:660.666667pt;}
.ya2{bottom:664.826667pt;}
.ycc{bottom:668.666667pt;}
.y6c{bottom:676.026667pt;}
.ya1{bottom:680.186667pt;}
.ycb{bottom:684.026667pt;}
.y6b{bottom:691.386667pt;}
.ya0{bottom:696.506667pt;}
.yca{bottom:699.386667pt;}
.y6a{bottom:706.746667pt;}
.y9f{bottom:711.906667pt;}
.yc9{bottom:714.786667pt;}
.y69{bottom:722.146667pt;}
.y9e{bottom:727.266667pt;}
.yc8{bottom:730.146667pt;}
.y68{bottom:737.506667pt;}
.y9d{bottom:743.586667pt;}
.yc7{bottom:745.506667pt;}
.y67{bottom:752.866667pt;}
.y9c{bottom:758.946667pt;}
.yc6{bottom:760.866667pt;}
.y66{bottom:768.226667pt;}
.y9b{bottom:774.306667pt;}
.yc5{bottom:776.226667pt;}
.y65{bottom:783.266667pt;}
.y9a{bottom:789.346667pt;}
.yc4{bottom:791.266667pt;}
.y64{bottom:798.306667pt;}
.y99{bottom:805.666667pt;}
.yc3{bottom:806.626667pt;}
.y98{bottom:821.026667pt;}
.y63{bottom:821.986667pt;}
.y97{bottom:836.413333pt;}
.y62{bottom:837.373333pt;}
.y96{bottom:851.773333pt;}
.y61{bottom:852.733333pt;}
.y95{bottom:867.133333pt;}
.y60{bottom:868.093333pt;}
.y94{bottom:882.493333pt;}
.y5f{bottom:883.453333pt;}
.yb{bottom:894.653333pt;}
.y5e{bottom:898.813333pt;}
.ya{bottom:910.333333pt;}
.y5d{bottom:913.853333pt;}
.y93{bottom:914.173333pt;}
.y92{bottom:929.213333pt;}
.yc2{bottom:929.533333pt;}
.y5c{bottom:937.533333pt;}
.y9{bottom:942.653333pt;}
.yc1{bottom:944.573333pt;}
.y5b{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5a{bottom:967.973333pt;}
.y57{bottom:970.240000pt;}
.y59{bottom:983.013333pt;}
.y91{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h14{height:5.022500pt;}
.h6{height:21.643125pt;}
.h15{height:24.640000pt;}
.h12{height:26.381250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hf{height:37.537500pt;}
.he{height:40.090000pt;}
.hd{height:47.713750pt;}
.h13{height:49.020000pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.h10{height:53.471250pt;}
.h9{height:54.180000pt;}
.h17{height:55.256809pt;}
.h16{height:56.405000pt;}
.h8{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h11{height:167.400000pt;}
.ha{height:611.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x15{left:7.348000pt;}
.x4{left:11.826667pt;}
.x13{left:15.348000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x14{left:25.908000pt;}
.xd{left:39.028000pt;}
.x1a{left:42.260000pt;}
.x6{left:43.213333pt;}
.xe{left:45.140000pt;}
.x12{left:48.020000pt;}
.xc{left:48.980000pt;}
.x17{left:55.373333pt;}
.x11{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x10{left:80.022667pt;}
.x1f{left:81.632000pt;}
.x2{left:84.822667pt;}
.x1b{left:91.542667pt;}
.x18{left:95.062667pt;}
.x1e{left:100.832000pt;}
.x20{left:105.632000pt;}
.xf{left:110.742667pt;}
.x3{left:162.000000pt;}
.x16{left:194.640000pt;}
.xa{left:355.040000pt;}
.xb{left:531.106667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.x1c{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; }
  