
    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_62eb09c233d338c7e611eaf5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_4c1f6fdce593ec2965ec8a6b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6de4e9c46047c015406b8441.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_55d463b3e501ce69e49f9383.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89c278b0278c749d3ce505ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c820ff22ce4f9044f4648828.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.791992;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_128068c662abf48f07f94cd4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f71bf87034162907982c8a2e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b7c4bce099016acfa31f4d76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_670e2d09d5a8cec1569e3b05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_c93ece33c1e10472f1fa32bd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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_7d1119142969c0704df4387a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;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);}
.v4{vertical-align:-24.120000px;}
.v5{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:24.120000px;}
.v2{vertical-align:29.880000px;}
.v7{vertical-align:33.120000px;}
.v3{vertical-align:46.308000px;}
.v1{vertical-align:85.680000px;}
.lsd{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.234000px;}
.ls18{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.090600px;}
.ls7{letter-spacing:-0.027600px;}
.ls17{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.022200px;}
.ls1a{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.090600px;}
.lse{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.130800px;}
.ls8{letter-spacing:0.139200px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls10{letter-spacing:2.700000px;}
.lsf{letter-spacing:3.060000px;}
.ls14{letter-spacing:4.140000px;}
.ls15{letter-spacing:5.220000px;}
.ls12{letter-spacing:6.300000px;}
.ls13{letter-spacing:9.180000px;}
.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;}
}
.ws13{word-spacing:-37.336320px;}
.ws5{word-spacing:-21.100800px;}
.ws2{word-spacing:-20.430000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.856000px;}
.ws6{word-spacing:-16.470000px;}
.ws4{word-spacing:-14.220000px;}
.ws3{word-spacing:-14.192400px;}
.wsb{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.392000px;}
.ws17{word-spacing:-13.374000px;}
.ws15{word-spacing:-13.356000px;}
.ws1c{word-spacing:-13.266000px;}
.ws7{word-spacing:-10.530000px;}
.ws1b{word-spacing:-9.072000px;}
.ws8{word-spacing:-9.000000px;}
.ws1a{word-spacing:-8.712000px;}
.wsc{word-spacing:-0.360000px;}
.wsd{word-spacing:0.000000px;}
.wse{word-spacing:0.216000px;}
.ws12{word-spacing:0.486000px;}
.ws10{word-spacing:0.756000px;}
.wsf{word-spacing:0.966000px;}
.ws11{word-spacing:1.080000px;}
.ws1d{word-spacing:4.446000px;}
.ws19{word-spacing:31.464000px;}
._1{margin-left:-3.141018px;}
._0{margin-left:-1.031976px;}
._3{width:1.080606px;}
._4{width:2.170169px;}
._5{width:3.337831px;}
._6{width:4.569178px;}
._b{width:5.960822px;}
._c{width:7.722000px;}
._d{width:8.856000px;}
._9{width:9.882000px;}
._f{width:10.907394px;}
._a{width:12.096000px;}
._8{width:15.497982px;}
._7{width:16.830000px;}
._2{width:165.909036px;}
._e{width:1237.962720px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.620000px;}
.y57{bottom:105.960000px;}
.y33{bottom:109.290000px;}
.y87{bottom:115.500000px;}
.y56{bottom:121.440000px;}
.y32{bottom:124.770000px;}
.y86{bottom:130.980000px;}
.y55{bottom:137.010000px;}
.y31{bottom:140.340000px;}
.y85{bottom:146.550000px;}
.y54{bottom:152.490000px;}
.y30{bottom:155.820000px;}
.y53{bottom:167.970000px;}
.y2f{bottom:171.390000px;}
.y84{bottom:177.420000px;}
.y2e{bottom:186.870000px;}
.yaf{bottom:193.260000px;}
.y52{bottom:198.930000px;}
.y2d{bottom:202.530000px;}
.yae{bottom:208.740000px;}
.y83{bottom:208.920000px;}
.y2c{bottom:218.010000px;}
.y82{bottom:224.400000px;}
.y51{bottom:230.430000px;}
.y2b{bottom:233.580000px;}
.yad{bottom:239.700000px;}
.y2a{bottom:249.060000px;}
.y81{bottom:255.360000px;}
.y29{bottom:264.540000px;}
.yac{bottom:271.200000px;}
.y28{bottom:280.110000px;}
.yab{bottom:286.680000px;}
.y80{bottom:286.860000px;}
.y27{bottom:295.590000px;}
.yaa{bottom:302.160000px;}
.y7f{bottom:302.340000px;}
.y26{bottom:311.250000px;}
.y7e{bottom:317.910000px;}
.y25{bottom:326.730000px;}
.y7d{bottom:333.390000px;}
.y24{bottom:342.300000px;}
.ya9{bottom:348.960000px;}
.y23{bottom:357.780000px;}
.y7c{bottom:364.350000px;}
.ya8{bottom:364.440000px;}
.y22{bottom:373.350000px;}
.ya7{bottom:380.010000px;}
.y21{bottom:388.830000px;}
.y7b{bottom:395.850000px;}
.ya6{bottom:410.880000px;}
.y7a{bottom:411.330000px;}
.y20{bottom:419.790000px;}
.y79{bottom:426.900000px;}
.y78{bottom:442.380000px;}
.ya5{bottom:457.950000px;}
.yc7{bottom:460.380000px;}
.y1f{bottom:466.050000px;}
.y50{bottom:469.830000px;}
.y77{bottom:473.250000px;}
.ya4{bottom:473.430000px;}
.yc6{bottom:476.070000px;}
.ya3{bottom:488.940000px;}
.yc5{bottom:491.640000px;}
.y1e{bottom:500.640000px;}
.ya2{bottom:504.510000px;}
.y76{bottom:504.780000px;}
.yc4{bottom:507.210000px;}
.y1d{bottom:516.210000px;}
.y75{bottom:520.350000px;}
.yc3{bottom:522.870000px;}
.y1c{bottom:531.690000px;}
.ya1{bottom:535.380000px;}
.yc2{bottom:538.440000px;}
.y1b{bottom:547.170000px;}
.y74{bottom:551.220000px;}
.yc1{bottom:554.010000px;}
.y1a{bottom:562.740000px;}
.ya0{bottom:566.880000px;}
.yc0{bottom:569.670000px;}
.y19{bottom:578.220000px;}
.y9f{bottom:582.450000px;}
.y73{bottom:582.720000px;}
.ybf{bottom:585.240000px;}
.y18{bottom:593.790000px;}
.y72{bottom:598.200000px;}
.ybe{bottom:600.810000px;}
.y17{bottom:609.270000px;}
.y9e{bottom:613.320000px;}
.y71{bottom:613.860000px;}
.ybd{bottom:616.470000px;}
.y16{bottom:624.840000px;}
.y70{bottom:629.340000px;}
.ybc{bottom:632.040000px;}
.y15{bottom:640.320000px;}
.y9d{bottom:644.820000px;}
.y6f{bottom:644.910000px;}
.ybb{bottom:647.610000px;}
.y14{bottom:655.890000px;}
.y9c{bottom:660.300000px;}
.yba{bottom:663.270000px;}
.y13{bottom:671.370000px;}
.y6e{bottom:675.780000px;}
.yb9{bottom:678.840000px;}
.y12{bottom:686.940000px;}
.y9b{bottom:691.260000px;}
.y6d{bottom:707.280000px;}
.y4f{bottom:708.000000px;}
.y11{bottom:709.170000px;}
.yb8{bottom:709.800000px;}
.y9a{bottom:722.760000px;}
.y6c{bottom:722.850000px;}
.y4e{bottom:723.480000px;}
.y10{bottom:735.900000px;}
.y99{bottom:738.240000px;}
.y6b{bottom:738.330000px;}
.y4d{bottom:739.050000px;}
.yb7{bottom:741.210000px;}
.yf{bottom:751.470000px;}
.y98{bottom:753.810000px;}
.y6a{bottom:753.900000px;}
.y4c{bottom:754.530000px;}
.yb6{bottom:756.780000px;}
.ye{bottom:767.040000px;}
.y69{bottom:769.470000px;}
.yb5{bottom:772.260000px;}
.y97{bottom:784.680000px;}
.y68{bottom:784.950000px;}
.y4b{bottom:785.490000px;}
.yb4{bottom:787.830000px;}
.y67{bottom:800.520000px;}
.yd{bottom:801.600000px;}
.yb3{bottom:803.310000px;}
.y96{bottom:816.180000px;}
.y4a{bottom:816.630000px;}
.yb2{bottom:818.880000px;}
.yc{bottom:823.200000px;}
.y66{bottom:831.390000px;}
.y95{bottom:831.660000px;}
.y94{bottom:847.230000px;}
.y49{bottom:848.130000px;}
.yb1{bottom:849.750000px;}
.yb{bottom:853.947000px;}
.ya{bottom:860.190000px;}
.y65{bottom:862.890000px;}
.y48{bottom:863.610000px;}
.y9{bottom:878.010000px;}
.y93{bottom:878.100000px;}
.y64{bottom:878.370000px;}
.y47{bottom:879.180000px;}
.y63{bottom:894.030000px;}
.y46{bottom:894.660000px;}
.y62{bottom:909.510000px;}
.y92{bottom:909.600000px;}
.y45{bottom:910.230000px;}
.y8{bottom:910.410000px;}
.yb0{bottom:912.480000px;}
.y61{bottom:925.080000px;}
.y91{bottom:925.170000px;}
.y44{bottom:925.710000px;}
.y90{bottom:940.650000px;}
.y43{bottom:941.280000px;}
.y7{bottom:949.380000px;}
.y60{bottom:955.950000px;}
.y42{bottom:956.760000px;}
.y8f{bottom:971.610000px;}
.y41{bottom:972.330000px;}
.y6{bottom:973.590000px;}
.y5f{bottom:987.450000px;}
.y40{bottom:987.900000px;}
.y5e{bottom:1003.020000px;}
.y8e{bottom:1003.110000px;}
.y3f{bottom:1003.470000px;}
.y5d{bottom:1018.530000px;}
.y8d{bottom:1018.620000px;}
.y3e{bottom:1018.980000px;}
.y4{bottom:1034.100000px;}
.y3d{bottom:1034.550000px;}
.y5{bottom:1039.140000px;}
.y5c{bottom:1049.490000px;}
.y8c{bottom:1049.670000px;}
.y3c{bottom:1050.030000px;}
.y3{bottom:1057.320000px;}
.y3b{bottom:1065.510000px;}
.y8b{bottom:1080.540000px;}
.y5b{bottom:1080.900000px;}
.y3a{bottom:1081.170000px;}
.y5a{bottom:1096.470000px;}
.y39{bottom:1096.650000px;}
.y59{bottom:1111.950000px;}
.y8a{bottom:1112.040000px;}
.y38{bottom:1112.220000px;}
.y89{bottom:1127.610000px;}
.y37{bottom:1127.700000px;}
.y58{bottom:1142.910000px;}
.y36{bottom:1143.270000px;}
.y2{bottom:1157.940000px;}
.y88{bottom:1158.480000px;}
.y35{bottom:1158.750000px;}
.y34{bottom:1193.670000px;}
.h9{height:35.314453px;}
.h2{height:44.520469px;}
.hb{height:52.971680px;}
.he{height:52.998047px;}
.hc{height:54.421875px;}
.h6{height:55.796836px;}
.h11{height:59.452031px;}
.h12{height:60.401250px;}
.hd{height:61.800293px;}
.h10{height:64.657617px;}
.hf{height:66.394687px;}
.h8{height:72.329063px;}
.h3{height:72.562500px;}
.h4{height:81.632812px;}
.h7{height:84.535312px;}
.ha{height:99.279680px;}
.h5{height:143.004375px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:29.970000px;}
.xb{left:46.620000px;}
.x8{left:47.970000px;}
.xa{left:57.025500px;}
.x6{left:70.380000px;}
.x14{left:74.250000px;}
.x7{left:106.200000px;}
.x4{left:244.020000px;}
.x2{left:270.210000px;}
.x3{left:290.460000px;}
.x12{left:302.250000px;}
.x10{left:353.190000px;}
.xe{left:355.620000px;}
.x11{left:358.980000px;}
.xf{left:375.900000px;}
.xd{left:394.980000px;}
.x13{left:403.260000px;}
.xc{left:412.170000px;}
.x1{left:440.610000px;}
.x5{left:506.490000px;}
@media print{
.v4{vertical-align:-21.440000pt;}
.v5{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.440000pt;}
.v2{vertical-align:26.560000pt;}
.v7{vertical-align:29.440000pt;}
.v3{vertical-align:41.162667pt;}
.v1{vertical-align:76.160000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.208000pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.080533pt;}
.ls7{letter-spacing:-0.024533pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.019733pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.080533pt;}
.lse{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.116267pt;}
.ls8{letter-spacing:0.123733pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls10{letter-spacing:2.400000pt;}
.lsf{letter-spacing:2.720000pt;}
.ls14{letter-spacing:3.680000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls12{letter-spacing:5.600000pt;}
.ls13{letter-spacing:8.160000pt;}
.ws13{word-spacing:-33.187840pt;}
.ws5{word-spacing:-18.756267pt;}
.ws2{word-spacing:-18.160000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws6{word-spacing:-14.640000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.615467pt;}
.wsb{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws17{word-spacing:-11.888000pt;}
.ws15{word-spacing:-11.872000pt;}
.ws1c{word-spacing:-11.792000pt;}
.ws7{word-spacing:-9.360000pt;}
.ws1b{word-spacing:-8.064000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1a{word-spacing:-7.744000pt;}
.wsc{word-spacing:-0.320000pt;}
.wsd{word-spacing:0.000000pt;}
.wse{word-spacing:0.192000pt;}
.ws12{word-spacing:0.432000pt;}
.ws10{word-spacing:0.672000pt;}
.wsf{word-spacing:0.858667pt;}
.ws11{word-spacing:0.960000pt;}
.ws1d{word-spacing:3.952000pt;}
.ws19{word-spacing:27.968000pt;}
._1{margin-left:-2.792016pt;}
._0{margin-left:-0.917312pt;}
._3{width:0.960539pt;}
._4{width:1.929039pt;}
._5{width:2.966961pt;}
._6{width:4.061491pt;}
._b{width:5.298509pt;}
._c{width:6.864000pt;}
._d{width:7.872000pt;}
._9{width:8.784000pt;}
._f{width:9.695461pt;}
._a{width:10.752000pt;}
._8{width:13.775984pt;}
._7{width:14.960000pt;}
._2{width:147.474699pt;}
._e{width:1100.411307pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.106667pt;}
.y57{bottom:94.186667pt;}
.y33{bottom:97.146667pt;}
.y87{bottom:102.666667pt;}
.y56{bottom:107.946667pt;}
.y32{bottom:110.906667pt;}
.y86{bottom:116.426667pt;}
.y55{bottom:121.786667pt;}
.y31{bottom:124.746667pt;}
.y85{bottom:130.266667pt;}
.y54{bottom:135.546667pt;}
.y30{bottom:138.506667pt;}
.y53{bottom:149.306667pt;}
.y2f{bottom:152.346667pt;}
.y84{bottom:157.706667pt;}
.y2e{bottom:166.106667pt;}
.yaf{bottom:171.786667pt;}
.y52{bottom:176.826667pt;}
.y2d{bottom:180.026667pt;}
.yae{bottom:185.546667pt;}
.y83{bottom:185.706667pt;}
.y2c{bottom:193.786667pt;}
.y82{bottom:199.466667pt;}
.y51{bottom:204.826667pt;}
.y2b{bottom:207.626667pt;}
.yad{bottom:213.066667pt;}
.y2a{bottom:221.386667pt;}
.y81{bottom:226.986667pt;}
.y29{bottom:235.146667pt;}
.yac{bottom:241.066667pt;}
.y28{bottom:248.986667pt;}
.yab{bottom:254.826667pt;}
.y80{bottom:254.986667pt;}
.y27{bottom:262.746667pt;}
.yaa{bottom:268.586667pt;}
.y7f{bottom:268.746667pt;}
.y26{bottom:276.666667pt;}
.y7e{bottom:282.586667pt;}
.y25{bottom:290.426667pt;}
.y7d{bottom:296.346667pt;}
.y24{bottom:304.266667pt;}
.ya9{bottom:310.186667pt;}
.y23{bottom:318.026667pt;}
.y7c{bottom:323.866667pt;}
.ya8{bottom:323.946667pt;}
.y22{bottom:331.866667pt;}
.ya7{bottom:337.786667pt;}
.y21{bottom:345.626667pt;}
.y7b{bottom:351.866667pt;}
.ya6{bottom:365.226667pt;}
.y7a{bottom:365.626667pt;}
.y20{bottom:373.146667pt;}
.y79{bottom:379.466667pt;}
.y78{bottom:393.226667pt;}
.ya5{bottom:407.066667pt;}
.yc7{bottom:409.226667pt;}
.y1f{bottom:414.266667pt;}
.y50{bottom:417.626667pt;}
.y77{bottom:420.666667pt;}
.ya4{bottom:420.826667pt;}
.yc6{bottom:423.173333pt;}
.ya3{bottom:434.613333pt;}
.yc5{bottom:437.013333pt;}
.y1e{bottom:445.013333pt;}
.ya2{bottom:448.453333pt;}
.y76{bottom:448.693333pt;}
.yc4{bottom:450.853333pt;}
.y1d{bottom:458.853333pt;}
.y75{bottom:462.533333pt;}
.yc3{bottom:464.773333pt;}
.y1c{bottom:472.613333pt;}
.ya1{bottom:475.893333pt;}
.yc2{bottom:478.613333pt;}
.y1b{bottom:486.373333pt;}
.y74{bottom:489.973333pt;}
.yc1{bottom:492.453333pt;}
.y1a{bottom:500.213333pt;}
.ya0{bottom:503.893333pt;}
.yc0{bottom:506.373333pt;}
.y19{bottom:513.973333pt;}
.y9f{bottom:517.733333pt;}
.y73{bottom:517.973333pt;}
.ybf{bottom:520.213333pt;}
.y18{bottom:527.813333pt;}
.y72{bottom:531.733333pt;}
.ybe{bottom:534.053333pt;}
.y17{bottom:541.573333pt;}
.y9e{bottom:545.173333pt;}
.y71{bottom:545.653333pt;}
.ybd{bottom:547.973333pt;}
.y16{bottom:555.413333pt;}
.y70{bottom:559.413333pt;}
.ybc{bottom:561.813333pt;}
.y15{bottom:569.173333pt;}
.y9d{bottom:573.173333pt;}
.y6f{bottom:573.253333pt;}
.ybb{bottom:575.653333pt;}
.y14{bottom:583.013333pt;}
.y9c{bottom:586.933333pt;}
.yba{bottom:589.573333pt;}
.y13{bottom:596.773333pt;}
.y6e{bottom:600.693333pt;}
.yb9{bottom:603.413333pt;}
.y12{bottom:610.613333pt;}
.y9b{bottom:614.453333pt;}
.y6d{bottom:628.693333pt;}
.y4f{bottom:629.333333pt;}
.y11{bottom:630.373333pt;}
.yb8{bottom:630.933333pt;}
.y9a{bottom:642.453333pt;}
.y6c{bottom:642.533333pt;}
.y4e{bottom:643.093333pt;}
.y10{bottom:654.133333pt;}
.y99{bottom:656.213333pt;}
.y6b{bottom:656.293333pt;}
.y4d{bottom:656.933333pt;}
.yb7{bottom:658.853333pt;}
.yf{bottom:667.973333pt;}
.y98{bottom:670.053333pt;}
.y6a{bottom:670.133333pt;}
.y4c{bottom:670.693333pt;}
.yb6{bottom:672.693333pt;}
.ye{bottom:681.813333pt;}
.y69{bottom:683.973333pt;}
.yb5{bottom:686.453333pt;}
.y97{bottom:697.493333pt;}
.y68{bottom:697.733333pt;}
.y4b{bottom:698.213333pt;}
.yb4{bottom:700.293333pt;}
.y67{bottom:711.573333pt;}
.yd{bottom:712.533333pt;}
.yb3{bottom:714.053333pt;}
.y96{bottom:725.493333pt;}
.y4a{bottom:725.893333pt;}
.yb2{bottom:727.893333pt;}
.yc{bottom:731.733333pt;}
.y66{bottom:739.013333pt;}
.y95{bottom:739.253333pt;}
.y94{bottom:753.093333pt;}
.y49{bottom:753.893333pt;}
.yb1{bottom:755.333333pt;}
.yb{bottom:759.064000pt;}
.ya{bottom:764.613333pt;}
.y65{bottom:767.013333pt;}
.y48{bottom:767.653333pt;}
.y9{bottom:780.453333pt;}
.y93{bottom:780.533333pt;}
.y64{bottom:780.773333pt;}
.y47{bottom:781.493333pt;}
.y63{bottom:794.693333pt;}
.y46{bottom:795.253333pt;}
.y62{bottom:808.453333pt;}
.y92{bottom:808.533333pt;}
.y45{bottom:809.093333pt;}
.y8{bottom:809.253333pt;}
.yb0{bottom:811.093333pt;}
.y61{bottom:822.293333pt;}
.y91{bottom:822.373333pt;}
.y44{bottom:822.853333pt;}
.y90{bottom:836.133333pt;}
.y43{bottom:836.693333pt;}
.y7{bottom:843.893333pt;}
.y60{bottom:849.733333pt;}
.y42{bottom:850.453333pt;}
.y8f{bottom:863.653333pt;}
.y41{bottom:864.293333pt;}
.y6{bottom:865.413333pt;}
.y5f{bottom:877.733333pt;}
.y40{bottom:878.133333pt;}
.y5e{bottom:891.573333pt;}
.y8e{bottom:891.653333pt;}
.y3f{bottom:891.973333pt;}
.y5d{bottom:905.360000pt;}
.y8d{bottom:905.440000pt;}
.y3e{bottom:905.760000pt;}
.y4{bottom:919.200000pt;}
.y3d{bottom:919.600000pt;}
.y5{bottom:923.680000pt;}
.y5c{bottom:932.880000pt;}
.y8c{bottom:933.040000pt;}
.y3c{bottom:933.360000pt;}
.y3{bottom:939.840000pt;}
.y3b{bottom:947.120000pt;}
.y8b{bottom:960.480000pt;}
.y5b{bottom:960.800000pt;}
.y3a{bottom:961.040000pt;}
.y5a{bottom:974.640000pt;}
.y39{bottom:974.800000pt;}
.y59{bottom:988.400000pt;}
.y8a{bottom:988.480000pt;}
.y38{bottom:988.640000pt;}
.y89{bottom:1002.320000pt;}
.y37{bottom:1002.400000pt;}
.y58{bottom:1015.920000pt;}
.y36{bottom:1016.240000pt;}
.y2{bottom:1029.280000pt;}
.y88{bottom:1029.760000pt;}
.y35{bottom:1030.000000pt;}
.y34{bottom:1061.040000pt;}
.h9{height:31.390625pt;}
.h2{height:39.573750pt;}
.hb{height:47.085938pt;}
.he{height:47.109375pt;}
.hc{height:48.375000pt;}
.h6{height:49.597187pt;}
.h11{height:52.846250pt;}
.h12{height:53.690000pt;}
.hd{height:54.933594pt;}
.h10{height:57.473437pt;}
.hf{height:59.017500pt;}
.h8{height:64.292500pt;}
.h3{height:64.500000pt;}
.h4{height:72.562500pt;}
.h7{height:75.142500pt;}
.ha{height:88.248604pt;}
.h5{height:127.115000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:26.640000pt;}
.xb{left:41.440000pt;}
.x8{left:42.640000pt;}
.xa{left:50.689333pt;}
.x6{left:62.560000pt;}
.x14{left:66.000000pt;}
.x7{left:94.400000pt;}
.x4{left:216.906667pt;}
.x2{left:240.186667pt;}
.x3{left:258.186667pt;}
.x12{left:268.666667pt;}
.x10{left:313.946667pt;}
.xe{left:316.106667pt;}
.x11{left:319.093333pt;}
.xf{left:334.133333pt;}
.xd{left:351.093333pt;}
.x13{left:358.453333pt;}
.xc{left:366.373333pt;}
.x1{left:391.653333pt;}
.x5{left:450.213333pt;}
}




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