
    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_e4b40dce06e4592c06f4a46f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_4c9938aa9157ad251362a378.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1be7b362efc976f03f3c7ab4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c20d66e082b8a386042ef39a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_ce0974117bc802c661fc2c46.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7484629d92d2312c1a9696ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsa{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.422000px;}
.ls6{letter-spacing:-0.972000px;}
.lse{letter-spacing:-0.954000px;}
.ls4{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.498240px;}
.ls2{letter-spacing:0.720000px;}
.ls8{letter-spacing:2.160000px;}
.lsd{letter-spacing:3.600000px;}
.lsb{letter-spacing:10.800000px;}
.lsf{letter-spacing:13.409280px;}
.ls7{letter-spacing:81.250560px;}
.ls1{letter-spacing:82.690560px;}
.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;}
}
.ws7{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.633400px;}
.ws5{word-spacing:-14.166000px;}
.ws6{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-5.322240px;}
._a{margin-left:-3.991680px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._c{width:3.568320px;}
._13{width:4.740480px;}
._9{width:5.875200px;}
._7{width:6.894720px;}
._8{width:8.285760px;}
._14{width:9.288480px;}
._b{width:10.315680px;}
._f{width:11.491200px;}
._d{width:12.519360px;}
._e{width:13.608000px;}
._10{width:16.994880px;}
._11{width:18.144000px;}
._16{width:22.559040px;}
._15{width:24.131520px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yc{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.880000px;}
.y31{bottom:3.240000px;}
.y30{bottom:20.520000px;}
.y2f{bottom:37.800000px;}
.yf{bottom:43.560000px;}
.y2e{bottom:55.080000px;}
.yd{bottom:68.400000px;}
.y2d{bottom:72.360000px;}
.y2c{bottom:89.685000px;}
.yb{bottom:94.716000px;}
.y2b{bottom:106.965000px;}
.y2a{bottom:124.245000px;}
.y70{bottom:133.236000px;}
.y89{bottom:134.316000px;}
.y29{bottom:141.525000px;}
.yd5{bottom:150.150000px;}
.ya8{bottom:151.230000px;}
.yc6{bottom:154.470000px;}
.y28{bottom:158.445000px;}
.y6f{bottom:159.150000px;}
.y88{bottom:160.230000px;}
.y39{bottom:162.030000px;}
.y65{bottom:162.750000px;}
.y27{bottom:175.725000px;}
.yd4{bottom:176.070000px;}
.ya7{bottom:177.150000px;}
.yc5{bottom:180.030000px;}
.y64{bottom:182.550000px;}
.y6e{bottom:185.070000px;}
.y87{bottom:186.150000px;}
.y38{bottom:187.950000px;}
.y26{bottom:193.005000px;}
.yd3{bottom:202.035000px;}
.y63{bottom:202.395000px;}
.ya6{bottom:203.115000px;}
.yc4{bottom:205.995000px;}
.y25{bottom:210.285000px;}
.y6d{bottom:211.035000px;}
.y86{bottom:212.115000px;}
.y37{bottom:213.915000px;}
.y62{bottom:222.195000px;}
.y24{bottom:227.595000px;}
.ya5{bottom:229.035000px;}
.yc3{bottom:231.915000px;}
.y6c{bottom:236.595000px;}
.y85{bottom:238.035000px;}
.y36{bottom:239.475000px;}
.y61{bottom:242.355000px;}
.y23{bottom:244.875000px;}
.yd2{bottom:253.515000px;}
.ya4{bottom:254.595000px;}
.yc2{bottom:257.835000px;}
.y22{bottom:262.155000px;}
.y6b{bottom:262.515000px;}
.y84{bottom:263.595000px;}
.y35{bottom:265.395000px;}
.y21{bottom:279.435000px;}
.ya3{bottom:280.515000px;}
.y60{bottom:281.955000px;}
.yc1{bottom:283.755000px;}
.y6a{bottom:288.435000px;}
.y83{bottom:289.515000px;}
.y34{bottom:291.315000px;}
.y20{bottom:296.715000px;}
.y5f{bottom:301.755000px;}
.yd1{bottom:305.355000px;}
.ya2{bottom:306.435000px;}
.yc0{bottom:309.675000px;}
.y1f{bottom:313.995000px;}
.y69{bottom:314.355000px;}
.y82{bottom:315.435000px;}
.y33{bottom:317.235000px;}
.y5e{bottom:321.555000px;}
.y1e{bottom:331.275000px;}
.yd0{bottom:331.305000px;}
.ya1{bottom:332.385000px;}
.ybf{bottom:335.625000px;}
.y68{bottom:340.305000px;}
.y5d{bottom:341.385000px;}
.y32{bottom:343.545000px;}
.y1d{bottom:348.585000px;}
.ycf{bottom:357.225000px;}
.ya0{bottom:358.305000px;}
.y1c{bottom:359.745000px;}
.y5c{bottom:361.185000px;}
.ybe{bottom:361.545000px;}
.y67{bottom:366.225000px;}
.y81{bottom:367.305000px;}
.yec{bottom:378.465000px;}
.y5b{bottom:383.145000px;}
.y9f{bottom:384.225000px;}
.ybd{bottom:387.105000px;}
.y66{bottom:392.145000px;}
.y80{bottom:393.225000px;}
.yeb{bottom:398.265000px;}
.yce{bottom:408.705000px;}
.y9e{bottom:410.145000px;}
.ybc{bottom:413.025000px;}
.y5a{bottom:417.705000px;}
.yea{bottom:418.065000px;}
.y7f{bottom:419.145000px;}
.ycd{bottom:434.625000px;}
.y9d{bottom:436.065000px;}
.ye9{bottom:437.865000px;}
.ybb{bottom:438.945000px;}
.y59{bottom:443.625000px;}
.y7e{bottom:445.065000px;}
.ye8{bottom:457.710000px;}
.ycc{bottom:460.590000px;}
.y9c{bottom:461.670000px;}
.yba{bottom:464.910000px;}
.y58{bottom:469.590000px;}
.y7d{bottom:470.670000px;}
.ye7{bottom:477.510000px;}
.ycb{bottom:486.510000px;}
.y9b{bottom:487.590000px;}
.yb9{bottom:490.830000px;}
.y57{bottom:495.510000px;}
.y7c{bottom:496.590000px;}
.ye6{bottom:497.310000px;}
.yca{bottom:512.430000px;}
.y9a{bottom:513.510000px;}
.yb8{bottom:516.750000px;}
.ye5{bottom:517.110000px;}
.y56{bottom:521.430000px;}
.y7b{bottom:522.510000px;}
.ye4{bottom:536.910000px;}
.yc9{bottom:538.350000px;}
.y99{bottom:539.430000px;}
.yb7{bottom:542.670000px;}
.y55{bottom:547.350000px;}
.y7a{bottom:548.430000px;}
.ye3{bottom:556.710000px;}
.yc8{bottom:564.270000px;}
.y98{bottom:565.350000px;}
.yb6{bottom:568.590000px;}
.y54{bottom:573.270000px;}
.y79{bottom:574.350000px;}
.ye2{bottom:589.140000px;}
.yc7{bottom:590.220000px;}
.y97{bottom:591.300000px;}
.yb5{bottom:594.180000px;}
.y53{bottom:599.220000px;}
.y78{bottom:600.300000px;}
.ye1{bottom:610.380000px;}
.y96{bottom:617.220000px;}
.yb4{bottom:620.100000px;}
.y52{bottom:624.780000px;}
.y77{bottom:626.220000px;}
.ye0{bottom:631.620000px;}
.y95{bottom:643.140000px;}
.yb3{bottom:646.020000px;}
.y51{bottom:650.700000px;}
.ydf{bottom:651.420000px;}
.y76{bottom:652.140000px;}
.y94{bottom:668.700000px;}
.yb2{bottom:671.940000px;}
.yde{bottom:672.660000px;}
.y50{bottom:676.620000px;}
.y75{bottom:677.700000px;}
.ydd{bottom:692.460000px;}
.y93{bottom:694.620000px;}
.yb1{bottom:697.860000px;}
.y4f{bottom:702.570000px;}
.y74{bottom:703.650000px;}
.ydc{bottom:713.730000px;}
.y92{bottom:720.570000px;}
.yb0{bottom:723.810000px;}
.y1b{bottom:727.770000px;}
.y4e{bottom:728.490000px;}
.y73{bottom:729.570000px;}
.ydb{bottom:734.970000px;}
.y1a{bottom:745.050000px;}
.y91{bottom:746.490000px;}
.y72{bottom:749.370000px;}
.yaf{bottom:749.730000px;}
.y4d{bottom:754.410000px;}
.yda{bottom:754.770000px;}
.y19{bottom:761.970000px;}
.y71{bottom:771.330000px;}
.y90{bottom:772.410000px;}
.yae{bottom:775.290000px;}
.yd9{bottom:776.010000px;}
.y18{bottom:779.250000px;}
.y4c{bottom:780.330000px;}
.y17{bottom:796.530000px;}
.yd8{bottom:797.250000px;}
.y8f{bottom:798.330000px;}
.yad{bottom:801.210000px;}
.y4b{bottom:805.890000px;}
.y16{bottom:813.810000px;}
.yd7{bottom:818.490000px;}
.y8e{bottom:824.250000px;}
.yac{bottom:827.175000px;}
.y15{bottom:831.135000px;}
.y4a{bottom:831.855000px;}
.y14{bottom:848.415000px;}
.yd6{bottom:848.775000px;}
.y8d{bottom:849.855000px;}
.yab{bottom:853.095000px;}
.y49{bottom:857.775000px;}
.y13{bottom:865.695000px;}
.y8c{bottom:870.015000px;}
.yaa{bottom:879.015000px;}
.y12{bottom:882.975000px;}
.y48{bottom:883.695000px;}
.y8b{bottom:891.615000px;}
.y11{bottom:900.255000px;}
.ya9{bottom:904.935000px;}
.y47{bottom:909.615000px;}
.y10{bottom:919.335000px;}
.y8a{bottom:926.535000px;}
.y46{bottom:935.535000px;}
.ya{bottom:944.895000px;}
.y45{bottom:961.485000px;}
.y9{bottom:962.205000px;}
.y8{bottom:979.485000px;}
.y44{bottom:987.405000px;}
.y7{bottom:993.525000px;}
.y43{bottom:1012.965000px;}
.y42{bottom:1038.885000px;}
.y6{bottom:1039.245000px;}
.y5{bottom:1055.085000px;}
.y41{bottom:1064.805000px;}
.y4{bottom:1073.085000px;}
.y40{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y2{bottom:1114.530000px;}
.y3f{bottom:1116.690000px;}
.y1{bottom:1131.450000px;}
.y3e{bottom:1142.610000px;}
.y3d{bottom:1166.370000px;}
.y3c{bottom:1180.410000px;}
.y3b{bottom:1201.290000px;}
.y3a{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h5{height:45.101250px;}
.h7{height:48.013594px;}
.ha{height:49.848750px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.hc{height:58.121719px;}
.h3{height:63.949219px;}
.h9{height:85.691953px;}
.hb{height:362.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x14{left:63.755987px;}
.x15{left:96.155987px;}
.x7{left:106.235987px;}
.xb{left:129.995987px;}
.x16{left:133.271987px;}
.x13{left:160.274987px;}
.x11{left:180.794987px;}
.x2{left:254.264987px;}
.xf{left:260.384987px;}
.xd{left:262.184987px;}
.x6{left:274.064987px;}
.x10{left:279.464987px;}
.xa{left:304.350000px;}
.xc{left:339.269987px;}
.xe{left:343.229987px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.264000pt;}
.ls6{letter-spacing:-0.864000pt;}
.lse{letter-spacing:-0.848000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.442880pt;}
.ls2{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.920000pt;}
.lsd{letter-spacing:3.200000pt;}
.lsb{letter-spacing:9.600000pt;}
.lsf{letter-spacing:11.919360pt;}
.ls7{letter-spacing:72.222720pt;}
.ls1{letter-spacing:73.502720pt;}
.ws7{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.007467pt;}
.ws5{word-spacing:-12.592000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-4.730880pt;}
._a{margin-left:-3.548160pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._c{width:3.171840pt;}
._13{width:4.213760pt;}
._9{width:5.222400pt;}
._7{width:6.128640pt;}
._8{width:7.365120pt;}
._14{width:8.256427pt;}
._b{width:9.169493pt;}
._f{width:10.214400pt;}
._d{width:11.128320pt;}
._e{width:12.096000pt;}
._10{width:15.106560pt;}
._11{width:16.128000pt;}
._16{width:20.052480pt;}
._15{width:21.450240pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yc{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.560000pt;}
.y31{bottom:2.880000pt;}
.y30{bottom:18.240000pt;}
.y2f{bottom:33.600000pt;}
.yf{bottom:38.720000pt;}
.y2e{bottom:48.960000pt;}
.yd{bottom:60.800000pt;}
.y2d{bottom:64.320000pt;}
.y2c{bottom:79.720000pt;}
.yb{bottom:84.192000pt;}
.y2b{bottom:95.080000pt;}
.y2a{bottom:110.440000pt;}
.y70{bottom:118.432000pt;}
.y89{bottom:119.392000pt;}
.y29{bottom:125.800000pt;}
.yd5{bottom:133.466667pt;}
.ya8{bottom:134.426667pt;}
.yc6{bottom:137.306667pt;}
.y28{bottom:140.840000pt;}
.y6f{bottom:141.466667pt;}
.y88{bottom:142.426667pt;}
.y39{bottom:144.026667pt;}
.y65{bottom:144.666667pt;}
.y27{bottom:156.200000pt;}
.yd4{bottom:156.506667pt;}
.ya7{bottom:157.466667pt;}
.yc5{bottom:160.026667pt;}
.y64{bottom:162.266667pt;}
.y6e{bottom:164.506667pt;}
.y87{bottom:165.466667pt;}
.y38{bottom:167.066667pt;}
.y26{bottom:171.560000pt;}
.yd3{bottom:179.586667pt;}
.y63{bottom:179.906667pt;}
.ya6{bottom:180.546667pt;}
.yc4{bottom:183.106667pt;}
.y25{bottom:186.920000pt;}
.y6d{bottom:187.586667pt;}
.y86{bottom:188.546667pt;}
.y37{bottom:190.146667pt;}
.y62{bottom:197.506667pt;}
.y24{bottom:202.306667pt;}
.ya5{bottom:203.586667pt;}
.yc3{bottom:206.146667pt;}
.y6c{bottom:210.306667pt;}
.y85{bottom:211.586667pt;}
.y36{bottom:212.866667pt;}
.y61{bottom:215.426667pt;}
.y23{bottom:217.666667pt;}
.yd2{bottom:225.346667pt;}
.ya4{bottom:226.306667pt;}
.yc2{bottom:229.186667pt;}
.y22{bottom:233.026667pt;}
.y6b{bottom:233.346667pt;}
.y84{bottom:234.306667pt;}
.y35{bottom:235.906667pt;}
.y21{bottom:248.386667pt;}
.ya3{bottom:249.346667pt;}
.y60{bottom:250.626667pt;}
.yc1{bottom:252.226667pt;}
.y6a{bottom:256.386667pt;}
.y83{bottom:257.346667pt;}
.y34{bottom:258.946667pt;}
.y20{bottom:263.746667pt;}
.y5f{bottom:268.226667pt;}
.yd1{bottom:271.426667pt;}
.ya2{bottom:272.386667pt;}
.yc0{bottom:275.266667pt;}
.y1f{bottom:279.106667pt;}
.y69{bottom:279.426667pt;}
.y82{bottom:280.386667pt;}
.y33{bottom:281.986667pt;}
.y5e{bottom:285.826667pt;}
.y1e{bottom:294.466667pt;}
.yd0{bottom:294.493333pt;}
.ya1{bottom:295.453333pt;}
.ybf{bottom:298.333333pt;}
.y68{bottom:302.493333pt;}
.y5d{bottom:303.453333pt;}
.y32{bottom:305.373333pt;}
.y1d{bottom:309.853333pt;}
.ycf{bottom:317.533333pt;}
.ya0{bottom:318.493333pt;}
.y1c{bottom:319.773333pt;}
.y5c{bottom:321.053333pt;}
.ybe{bottom:321.373333pt;}
.y67{bottom:325.533333pt;}
.y81{bottom:326.493333pt;}
.yec{bottom:336.413333pt;}
.y5b{bottom:340.573333pt;}
.y9f{bottom:341.533333pt;}
.ybd{bottom:344.093333pt;}
.y66{bottom:348.573333pt;}
.y80{bottom:349.533333pt;}
.yeb{bottom:354.013333pt;}
.yce{bottom:363.293333pt;}
.y9e{bottom:364.573333pt;}
.ybc{bottom:367.133333pt;}
.y5a{bottom:371.293333pt;}
.yea{bottom:371.613333pt;}
.y7f{bottom:372.573333pt;}
.ycd{bottom:386.333333pt;}
.y9d{bottom:387.613333pt;}
.ye9{bottom:389.213333pt;}
.ybb{bottom:390.173333pt;}
.y59{bottom:394.333333pt;}
.y7e{bottom:395.613333pt;}
.ye8{bottom:406.853333pt;}
.ycc{bottom:409.413333pt;}
.y9c{bottom:410.373333pt;}
.yba{bottom:413.253333pt;}
.y58{bottom:417.413333pt;}
.y7d{bottom:418.373333pt;}
.ye7{bottom:424.453333pt;}
.ycb{bottom:432.453333pt;}
.y9b{bottom:433.413333pt;}
.yb9{bottom:436.293333pt;}
.y57{bottom:440.453333pt;}
.y7c{bottom:441.413333pt;}
.ye6{bottom:442.053333pt;}
.yca{bottom:455.493333pt;}
.y9a{bottom:456.453333pt;}
.yb8{bottom:459.333333pt;}
.ye5{bottom:459.653333pt;}
.y56{bottom:463.493333pt;}
.y7b{bottom:464.453333pt;}
.ye4{bottom:477.253333pt;}
.yc9{bottom:478.533333pt;}
.y99{bottom:479.493333pt;}
.yb7{bottom:482.373333pt;}
.y55{bottom:486.533333pt;}
.y7a{bottom:487.493333pt;}
.ye3{bottom:494.853333pt;}
.yc8{bottom:501.573333pt;}
.y98{bottom:502.533333pt;}
.yb6{bottom:505.413333pt;}
.y54{bottom:509.573333pt;}
.y79{bottom:510.533333pt;}
.ye2{bottom:523.680000pt;}
.yc7{bottom:524.640000pt;}
.y97{bottom:525.600000pt;}
.yb5{bottom:528.160000pt;}
.y53{bottom:532.640000pt;}
.y78{bottom:533.600000pt;}
.ye1{bottom:542.560000pt;}
.y96{bottom:548.640000pt;}
.yb4{bottom:551.200000pt;}
.y52{bottom:555.360000pt;}
.y77{bottom:556.640000pt;}
.ye0{bottom:561.440000pt;}
.y95{bottom:571.680000pt;}
.yb3{bottom:574.240000pt;}
.y51{bottom:578.400000pt;}
.ydf{bottom:579.040000pt;}
.y76{bottom:579.680000pt;}
.y94{bottom:594.400000pt;}
.yb2{bottom:597.280000pt;}
.yde{bottom:597.920000pt;}
.y50{bottom:601.440000pt;}
.y75{bottom:602.400000pt;}
.ydd{bottom:615.520000pt;}
.y93{bottom:617.440000pt;}
.yb1{bottom:620.320000pt;}
.y4f{bottom:624.506667pt;}
.y74{bottom:625.466667pt;}
.ydc{bottom:634.426667pt;}
.y92{bottom:640.506667pt;}
.yb0{bottom:643.386667pt;}
.y1b{bottom:646.906667pt;}
.y4e{bottom:647.546667pt;}
.y73{bottom:648.506667pt;}
.ydb{bottom:653.306667pt;}
.y1a{bottom:662.266667pt;}
.y91{bottom:663.546667pt;}
.y72{bottom:666.106667pt;}
.yaf{bottom:666.426667pt;}
.y4d{bottom:670.586667pt;}
.yda{bottom:670.906667pt;}
.y19{bottom:677.306667pt;}
.y71{bottom:685.626667pt;}
.y90{bottom:686.586667pt;}
.yae{bottom:689.146667pt;}
.yd9{bottom:689.786667pt;}
.y18{bottom:692.666667pt;}
.y4c{bottom:693.626667pt;}
.y17{bottom:708.026667pt;}
.yd8{bottom:708.666667pt;}
.y8f{bottom:709.626667pt;}
.yad{bottom:712.186667pt;}
.y4b{bottom:716.346667pt;}
.y16{bottom:723.386667pt;}
.yd7{bottom:727.546667pt;}
.y8e{bottom:732.666667pt;}
.yac{bottom:735.266667pt;}
.y15{bottom:738.786667pt;}
.y4a{bottom:739.426667pt;}
.y14{bottom:754.146667pt;}
.yd6{bottom:754.466667pt;}
.y8d{bottom:755.426667pt;}
.yab{bottom:758.306667pt;}
.y49{bottom:762.466667pt;}
.y13{bottom:769.506667pt;}
.y8c{bottom:773.346667pt;}
.yaa{bottom:781.346667pt;}
.y12{bottom:784.866667pt;}
.y48{bottom:785.506667pt;}
.y8b{bottom:792.546667pt;}
.y11{bottom:800.226667pt;}
.ya9{bottom:804.386667pt;}
.y47{bottom:808.546667pt;}
.y10{bottom:817.186667pt;}
.y8a{bottom:823.586667pt;}
.y46{bottom:831.586667pt;}
.ya{bottom:839.906667pt;}
.y45{bottom:854.653333pt;}
.y9{bottom:855.293333pt;}
.y8{bottom:870.653333pt;}
.y44{bottom:877.693333pt;}
.y7{bottom:883.133333pt;}
.y43{bottom:900.413333pt;}
.y42{bottom:923.453333pt;}
.y6{bottom:923.773333pt;}
.y5{bottom:937.853333pt;}
.y41{bottom:946.493333pt;}
.y4{bottom:953.853333pt;}
.y40{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y2{bottom:990.693333pt;}
.y3f{bottom:992.613333pt;}
.y1{bottom:1005.733333pt;}
.y3e{bottom:1015.653333pt;}
.y3d{bottom:1036.773333pt;}
.y3c{bottom:1049.253333pt;}
.y3b{bottom:1067.813333pt;}
.y3a{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h5{height:40.090000pt;}
.h7{height:42.678750pt;}
.ha{height:44.310000pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.hc{height:51.663750pt;}
.h3{height:56.843750pt;}
.h9{height:76.170625pt;}
.hb{height:322.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x14{left:56.671988pt;}
.x15{left:85.471988pt;}
.x7{left:94.431988pt;}
.xb{left:115.551988pt;}
.x16{left:118.463988pt;}
.x13{left:142.466655pt;}
.x11{left:160.706655pt;}
.x2{left:226.013322pt;}
.xf{left:231.453322pt;}
.xd{left:233.053322pt;}
.x6{left:243.613322pt;}
.x10{left:248.413322pt;}
.xa{left:270.533333pt;}
.xc{left:301.573322pt;}
.xe{left:305.093322pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x1{left:699.493322pt;}
}




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