
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_494cbec607776dfea6991f9f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6bf28da31587edfac068eaf8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_eac382338a66aca6c04b5263.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1fa8d440c71873ad4ed10864.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_d86c9f3241430b84020e6b82.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a8ca7d788ef866965adc8e0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_b4929aab97cedec4d5146b94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.086400px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.048960px;}
.ls14{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:3.693600px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.324800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.177440px;}
.ws9{word-spacing:-13.162800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-3.810840px;}
._9{margin-left:-2.321400px;}
._0{margin-left:-1.110000px;}
._3{width:1.095840px;}
._4{width:2.096640px;}
._5{width:3.246600px;}
._6{width:4.335960px;}
._8{width:5.652359px;}
._b{width:7.455000px;}
._7{width:9.198600px;}
._1{width:11.175600px;}
._2{width:13.212720px;}
._a{width:14.488800px;}
._d{width:16.232520px;}
._16{width:20.524680px;}
._15{width:32.104080px;}
._13{width:38.236320px;}
._14{width:51.522840px;}
._12{width:69.919560px;}
._f{width:102.204000px;}
._11{width:149.865840px;}
._10{width:161.829720px;}
._e{width:212.464080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y5e{bottom:7.920000px;}
.y8e{bottom:25.380000px;}
.y6d{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y54{bottom:123.420000px;}
.y70{bottom:127.020000px;}
.y6b{bottom:127.740000px;}
.ya4{bottom:129.360000px;}
.y9c{bottom:130.260000px;}
.y53{bottom:141.060000px;}
.y6f{bottom:144.570000px;}
.yb5{bottom:145.740000px;}
.y52{bottom:158.610000px;}
.ya3{bottom:161.580000px;}
.y89{bottom:162.090000px;}
.y6a{bottom:163.290000px;}
.y9b{bottom:165.810000px;}
.y88{bottom:179.640000px;}
.yb4{bottom:180.840000px;}
.y51{bottom:185.520000px;}
.y92{bottom:187.680000px;}
.y69{bottom:195.510000px;}
.yb3{bottom:198.480000px;}
.y9a{bottom:201.360000px;}
.y25{bottom:203.790000px;}
.y24{bottom:221.700000px;}
.y91{bottom:223.230000px;}
.y99{bottom:233.580000px;}
.y50{bottom:233.760000px;}
.yb2{bottom:234.030000px;}
.y90{bottom:238.260000px;}
.y4f{bottom:251.400000px;}
.yb1{bottom:251.670000px;}
.y23{bottom:255.720000px;}
.y4e{bottom:268.950000px;}
.yb0{bottom:269.220000px;}
.y22{bottom:273.270000px;}
.y87{bottom:283.170000px;}
.yaf{bottom:286.770000px;}
.y21{bottom:290.910000px;}
.y4d{bottom:295.590000px;}
.yae{bottom:304.410000px;}
.y20{bottom:323.490000px;}
.y8f{bottom:328.080000px;}
.y4c{bottom:331.140000px;}
.yad{bottom:339.960000px;}
.y1f{bottom:341.040000px;}
.y4b{bottom:348.690000px;}
.y8d{bottom:355.440000px;}
.yac{bottom:357.510000px;}
.y1e{bottom:358.590000px;}
.y4a{bottom:366.330000px;}
.yab{bottom:375.150000px;}
.y1d{bottom:376.230000px;}
.y78{bottom:390.510000px;}
.yaa{bottom:392.700000px;}
.y49{bottom:392.880000px;}
.y1c{bottom:393.780000px;}
.y8c{bottom:400.350000px;}
.y77{bottom:408.150000px;}
.y1b{bottom:411.420000px;}
.ya9{bottom:419.610000px;}
.y8b{bottom:427.620000px;}
.y48{bottom:428.520000px;}
.y1a{bottom:428.970000px;}
.y47{bottom:446.070000px;}
.y19{bottom:446.520000px;}
.ya2{bottom:453.000000px;}
.y68{bottom:453.090000px;}
.y8a{bottom:454.980000px;}
.y18{bottom:464.160000px;}
.ya8{bottom:467.940000px;}
.ycb{bottom:471.750000px;}
.y46{bottom:472.650000px;}
.y17{bottom:481.740000px;}
.y76{bottom:482.370000px;}
.ya1{bottom:488.580000px;}
.y67{bottom:488.760000px;}
.yca{bottom:489.300000px;}
.y98{bottom:493.530000px;}
.ya7{bottom:500.190000px;}
.y45{bottom:508.290000px;}
.y86{bottom:509.730000px;}
.y16{bottom:514.320000px;}
.yc9{bottom:515.940000px;}
.ya0{bottom:520.800000px;}
.y66{bottom:520.980000px;}
.y97{bottom:529.080000px;}
.y15{bottom:531.960000px;}
.y44{bottom:534.840000px;}
.y85{bottom:537.000000px;}
.yc8{bottom:542.490000px;}
.y14{bottom:549.510000px;}
.yc7{bottom:560.130000px;}
.y96{bottom:561.300000px;}
.y84{bottom:564.360000px;}
.y13{bottom:567.060000px;}
.y43{bottom:567.420000px;}
.yc6{bottom:586.680000px;}
.y83{bottom:591.720000px;}
.y12{bottom:599.640000px;}
.y42{bottom:603.060000px;}
.yc5{bottom:604.230000px;}
.y11{bottom:617.280000px;}
.y82{bottom:618.990000px;}
.y41{bottom:620.610000px;}
.yc4{bottom:630.870000px;}
.y10{bottom:634.830000px;}
.y40{bottom:638.160000px;}
.y81{bottom:646.350000px;}
.yc3{bottom:648.420000px;}
.yf{bottom:652.470000px;}
.y3f{bottom:655.800000px;}
.ye{bottom:670.020000px;}
.yc2{bottom:675.060000px;}
.y3e{bottom:682.710000px;}
.yd{bottom:687.570000px;}
.y80{bottom:691.260000px;}
.yc1{bottom:692.610000px;}
.yc0{bottom:710.160000px;}
.yc{bottom:714.480000px;}
.y7f{bottom:718.620000px;}
.y3d{bottom:730.950000px;}
.ybf{bottom:736.800000px;}
.y7e{bottom:745.980000px;}
.y3c{bottom:748.590000px;}
.ybe{bottom:754.350000px;}
.yb{bottom:762.810000px;}
.y3b{bottom:766.140000px;}
.y7d{bottom:773.250000px;}
.ybd{bottom:781.260000px;}
.y3a{bottom:783.690000px;}
.ya{bottom:798.630000px;}
.y65{bottom:798.810000px;}
.y7c{bottom:800.610000px;}
.y95{bottom:800.970000px;}
.y39{bottom:801.330000px;}
.y64{bottom:813.750000px;}
.y7b{bottom:827.970000px;}
.ybc{bottom:829.590000px;}
.y9{bottom:834.630000px;}
.y94{bottom:836.520000px;}
.y38{bottom:836.880000px;}
.y63{bottom:841.110000px;}
.y9f{bottom:852.720000px;}
.y37{bottom:854.520000px;}
.y7a{bottom:855.330000px;}
.ybb{bottom:856.410000px;}
.y62{bottom:868.470000px;}
.y93{bottom:868.740000px;}
.ya6{bottom:870.270000px;}
.y36{bottom:872.070000px;}
.y8{bottom:874.410000px;}
.y79{bottom:882.600000px;}
.y9e{bottom:888.270000px;}
.y35{bottom:889.620000px;}
.y7{bottom:892.410000px;}
.yba{bottom:893.490000px;}
.y60{bottom:895.830000px;}
.ya5{bottom:902.490000px;}
.y34{bottom:907.260000px;}
.y6e{bottom:909.960000px;}
.yb9{bottom:920.400000px;}
.y9d{bottom:920.490000px;}
.y5f{bottom:923.100000px;}
.y6{bottom:924.720000px;}
.y33{bottom:924.810000px;}
.y75{bottom:937.320000px;}
.y32{bottom:942.450000px;}
.y5d{bottom:950.460000px;}
.yb8{bottom:957.390000px;}
.y31{bottom:960.000000px;}
.y5{bottom:962.970000px;}
.y74{bottom:964.680000px;}
.y30{bottom:977.550000px;}
.yb7{bottom:984.300000px;}
.y4{bottom:987.630000px;}
.y73{bottom:991.950000px;}
.y2f{bottom:995.190000px;}
.y5c{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y2e{bottom:1012.770000px;}
.y72{bottom:1019.340000px;}
.yb6{bottom:1021.680000px;}
.y2d{bottom:1030.320000px;}
.y5b{bottom:1034.820000px;}
.y71{bottom:1046.700000px;}
.y2c{bottom:1047.960000px;}
.y5a{bottom:1052.370000px;}
.y2b{bottom:1065.510000px;}
.y59{bottom:1069.920000px;}
.y6c{bottom:1073.970000px;}
.y2a{bottom:1083.150000px;}
.y58{bottom:1087.560000px;}
.y29{bottom:1100.700000px;}
.y57{bottom:1105.110000px;}
.y56{bottom:1122.750000px;}
.y28{bottom:1127.610000px;}
.y55{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.he{height:26.550000px;}
.h14{height:26.580000px;}
.hc{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h15{height:44.100000px;}
.hf{height:44.190000px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h16{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h10{height:163.290000px;}
.h13{height:198.390000px;}
.h12{height:426.870000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:113.130000px;}
.w4{width:119.430000px;}
.w6{width:119.910000px;}
.w5{width:122.220000px;}
.w8{width:147.150000px;}
.w7{width:373.260000px;}
.w3{width:438.540000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:105.750000px;}
.x1e{left:111.239987px;}
.xc{left:189.390000px;}
.x2{left:211.079987px;}
.x13{left:243.479987px;}
.x1d{left:248.699987px;}
.x1b{left:259.679987px;}
.xb{left:279.209987px;}
.xf{left:284.699987px;}
.x15{left:295.409987px;}
.x9{left:301.889987px;}
.x17{left:303.509987px;}
.x19{left:368.849987px;}
.x10{left:446.609987px;}
.x6{left:545.010000px;}
.xd{left:563.370000px;}
.x14{left:663.809987px;}
.x7{left:665.250000px;}
.x16{left:680.639987px;}
.x1c{left:684.059987px;}
.x1a{left:685.139987px;}
.x18{left:698.639987px;}
.x12{left:708.809987px;}
.xe{left:711.330000px;}
.x11{left:720.059987px;}
.x8{left:721.139987px;}
.xa{left:738.059987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.076800pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.043520pt;}
.ls14{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:3.283200pt;}
.ls15{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.844267pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.713280pt;}
.ws9{word-spacing:-11.700267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-3.387413pt;}
._9{margin-left:-2.063467pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.974080pt;}
._4{width:1.863680pt;}
._5{width:2.885867pt;}
._6{width:3.854186pt;}
._8{width:5.024319pt;}
._b{width:6.626667pt;}
._7{width:8.176534pt;}
._1{width:9.933867pt;}
._2{width:11.744640pt;}
._a{width:12.878933pt;}
._d{width:14.428907pt;}
._16{width:18.244160pt;}
._15{width:28.536960pt;}
._13{width:33.987840pt;}
._14{width:45.798080pt;}
._12{width:62.150720pt;}
._f{width:90.848000pt;}
._11{width:133.214080pt;}
._10{width:143.848640pt;}
._e{width:188.856960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y5e{bottom:7.040000pt;}
.y8e{bottom:22.560000pt;}
.y6d{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y54{bottom:109.706667pt;}
.y70{bottom:112.906667pt;}
.y6b{bottom:113.546667pt;}
.ya4{bottom:114.986667pt;}
.y9c{bottom:115.786667pt;}
.y53{bottom:125.386667pt;}
.y6f{bottom:128.506667pt;}
.yb5{bottom:129.546667pt;}
.y52{bottom:140.986667pt;}
.ya3{bottom:143.626667pt;}
.y89{bottom:144.080000pt;}
.y6a{bottom:145.146667pt;}
.y9b{bottom:147.386667pt;}
.y88{bottom:159.680000pt;}
.yb4{bottom:160.746667pt;}
.y51{bottom:164.906667pt;}
.y92{bottom:166.826667pt;}
.y69{bottom:173.786667pt;}
.yb3{bottom:176.426667pt;}
.y9a{bottom:178.986667pt;}
.y25{bottom:181.146667pt;}
.y24{bottom:197.066667pt;}
.y91{bottom:198.426667pt;}
.y99{bottom:207.626667pt;}
.y50{bottom:207.786667pt;}
.yb2{bottom:208.026667pt;}
.y90{bottom:211.786667pt;}
.y4f{bottom:223.466667pt;}
.yb1{bottom:223.706667pt;}
.y23{bottom:227.306667pt;}
.y4e{bottom:239.066667pt;}
.yb0{bottom:239.306667pt;}
.y22{bottom:242.906667pt;}
.y87{bottom:251.706667pt;}
.yaf{bottom:254.906667pt;}
.y21{bottom:258.586667pt;}
.y4d{bottom:262.746667pt;}
.yae{bottom:270.586667pt;}
.y20{bottom:287.546667pt;}
.y8f{bottom:291.626667pt;}
.y4c{bottom:294.346667pt;}
.yad{bottom:302.186667pt;}
.y1f{bottom:303.146667pt;}
.y4b{bottom:309.946667pt;}
.y8d{bottom:315.946667pt;}
.yac{bottom:317.786667pt;}
.y1e{bottom:318.746667pt;}
.y4a{bottom:325.626667pt;}
.yab{bottom:333.466667pt;}
.y1d{bottom:334.426667pt;}
.y78{bottom:347.120000pt;}
.yaa{bottom:349.066667pt;}
.y49{bottom:349.226667pt;}
.y1c{bottom:350.026667pt;}
.y8c{bottom:355.866667pt;}
.y77{bottom:362.800000pt;}
.y1b{bottom:365.706667pt;}
.ya9{bottom:372.986667pt;}
.y8b{bottom:380.106667pt;}
.y48{bottom:380.906667pt;}
.y1a{bottom:381.306667pt;}
.y47{bottom:396.506667pt;}
.y19{bottom:396.906667pt;}
.ya2{bottom:402.666667pt;}
.y68{bottom:402.746667pt;}
.y8a{bottom:404.426667pt;}
.y18{bottom:412.586667pt;}
.ya8{bottom:415.946667pt;}
.ycb{bottom:419.333333pt;}
.y46{bottom:420.133333pt;}
.y17{bottom:428.213333pt;}
.y76{bottom:428.773333pt;}
.ya1{bottom:434.293333pt;}
.y67{bottom:434.453333pt;}
.yca{bottom:434.933333pt;}
.y98{bottom:438.693333pt;}
.ya7{bottom:444.613333pt;}
.y45{bottom:451.813333pt;}
.y86{bottom:453.093333pt;}
.y16{bottom:457.173333pt;}
.yc9{bottom:458.613333pt;}
.ya0{bottom:462.933333pt;}
.y66{bottom:463.093333pt;}
.y97{bottom:470.293333pt;}
.y15{bottom:472.853333pt;}
.y44{bottom:475.413333pt;}
.y85{bottom:477.333333pt;}
.yc8{bottom:482.213333pt;}
.y14{bottom:488.453333pt;}
.yc7{bottom:497.893333pt;}
.y96{bottom:498.933333pt;}
.y84{bottom:501.653333pt;}
.y13{bottom:504.053333pt;}
.y43{bottom:504.373333pt;}
.yc6{bottom:521.493333pt;}
.y83{bottom:525.973333pt;}
.y12{bottom:533.013333pt;}
.y42{bottom:536.053333pt;}
.yc5{bottom:537.093333pt;}
.y11{bottom:548.693333pt;}
.y82{bottom:550.213333pt;}
.y41{bottom:551.653333pt;}
.yc4{bottom:560.773333pt;}
.y10{bottom:564.293333pt;}
.y40{bottom:567.253333pt;}
.y81{bottom:574.533333pt;}
.yc3{bottom:576.373333pt;}
.yf{bottom:579.973333pt;}
.y3f{bottom:582.933333pt;}
.ye{bottom:595.573333pt;}
.yc2{bottom:600.053333pt;}
.y3e{bottom:606.853333pt;}
.yd{bottom:611.173333pt;}
.y80{bottom:614.453333pt;}
.yc1{bottom:615.653333pt;}
.yc0{bottom:631.253333pt;}
.yc{bottom:635.093333pt;}
.y7f{bottom:638.773333pt;}
.y3d{bottom:649.733333pt;}
.ybf{bottom:654.933333pt;}
.y7e{bottom:663.093333pt;}
.y3c{bottom:665.413333pt;}
.ybe{bottom:670.533333pt;}
.yb{bottom:678.053333pt;}
.y3b{bottom:681.013333pt;}
.y7d{bottom:687.333333pt;}
.ybd{bottom:694.453333pt;}
.y3a{bottom:696.613333pt;}
.ya{bottom:709.893333pt;}
.y65{bottom:710.053333pt;}
.y7c{bottom:711.653333pt;}
.y95{bottom:711.973333pt;}
.y39{bottom:712.293333pt;}
.y64{bottom:723.333333pt;}
.y7b{bottom:735.973333pt;}
.ybc{bottom:737.413333pt;}
.y9{bottom:741.893333pt;}
.y94{bottom:743.573333pt;}
.y38{bottom:743.893333pt;}
.y63{bottom:747.653333pt;}
.y9f{bottom:757.973333pt;}
.y37{bottom:759.573333pt;}
.y7a{bottom:760.293333pt;}
.ybb{bottom:761.253333pt;}
.y62{bottom:771.973333pt;}
.y93{bottom:772.213333pt;}
.ya6{bottom:773.573333pt;}
.y36{bottom:775.173333pt;}
.y8{bottom:777.253333pt;}
.y79{bottom:784.533333pt;}
.y9e{bottom:789.573333pt;}
.y35{bottom:790.773333pt;}
.y7{bottom:793.253333pt;}
.yba{bottom:794.213333pt;}
.y60{bottom:796.293333pt;}
.ya5{bottom:802.213333pt;}
.y34{bottom:806.453333pt;}
.y6e{bottom:808.853333pt;}
.yb9{bottom:818.133333pt;}
.y9d{bottom:818.213333pt;}
.y5f{bottom:820.533333pt;}
.y6{bottom:821.973333pt;}
.y33{bottom:822.053333pt;}
.y75{bottom:833.173333pt;}
.y32{bottom:837.733333pt;}
.y5d{bottom:844.853333pt;}
.yb8{bottom:851.013333pt;}
.y31{bottom:853.333333pt;}
.y5{bottom:855.973333pt;}
.y74{bottom:857.493333pt;}
.y30{bottom:868.933333pt;}
.yb7{bottom:874.933333pt;}
.y4{bottom:877.893333pt;}
.y73{bottom:881.733333pt;}
.y2f{bottom:884.613333pt;}
.y5c{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y2e{bottom:900.240000pt;}
.y72{bottom:906.080000pt;}
.yb6{bottom:908.160000pt;}
.y2d{bottom:915.840000pt;}
.y5b{bottom:919.840000pt;}
.y71{bottom:930.400000pt;}
.y2c{bottom:931.520000pt;}
.y5a{bottom:935.440000pt;}
.y2b{bottom:947.120000pt;}
.y59{bottom:951.040000pt;}
.y6c{bottom:954.640000pt;}
.y2a{bottom:962.800000pt;}
.y58{bottom:966.720000pt;}
.y29{bottom:978.400000pt;}
.y57{bottom:982.320000pt;}
.y56{bottom:998.000000pt;}
.y28{bottom:1002.320000pt;}
.y55{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h14{height:23.626667pt;}
.hc{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h15{height:39.200000pt;}
.hf{height:39.280000pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h16{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h10{height:145.146667pt;}
.h13{height:176.346667pt;}
.h12{height:379.440000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:100.560000pt;}
.w4{width:106.160000pt;}
.w6{width:106.586667pt;}
.w5{width:108.640000pt;}
.w8{width:130.800000pt;}
.w7{width:331.786667pt;}
.w3{width:389.813333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:94.000000pt;}
.x1e{left:98.879988pt;}
.xc{left:168.346667pt;}
.x2{left:187.626655pt;}
.x13{left:216.426655pt;}
.x1d{left:221.066655pt;}
.x1b{left:230.826655pt;}
.xb{left:248.186655pt;}
.xf{left:253.066655pt;}
.x15{left:262.586655pt;}
.x9{left:268.346655pt;}
.x17{left:269.786655pt;}
.x19{left:327.866655pt;}
.x10{left:396.986655pt;}
.x6{left:484.453333pt;}
.xd{left:500.773333pt;}
.x14{left:590.053322pt;}
.x7{left:591.333333pt;}
.x16{left:605.013322pt;}
.x1c{left:608.053322pt;}
.x1a{left:609.013322pt;}
.x18{left:621.013322pt;}
.x12{left:630.053322pt;}
.xe{left:632.293333pt;}
.x11{left:640.053322pt;}
.x8{left:641.013322pt;}
.xa{left:656.053322pt;}
.x3{left:711.413322pt;}
}




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