
    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_d3c712a17536fdec777c45c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_4cf06071ec35029719d6b4fd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7d107eb89f45e2b0e854346e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_0f0af3070d8677a19c500415.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_98e58addbbba28f0263e39f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_c4f452276a149a9a7e803ff6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0e6e4ecf5cd7ae9fc1c37761.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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;}
.ls1{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.304000px;}
.ls6{letter-spacing:46.080000px;}
.ls3{letter-spacing:150.797280px;}
.ls9{letter-spacing:168.480000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws0{word-spacing:-23.940000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-4.350720px;}
._19{margin-left:-3.240000px;}
._0{margin-left:-1.481280px;}
._1{width:1.827360px;}
._b{width:2.996640px;}
._16{width:4.608000px;}
._6{width:6.320160px;}
._7{width:8.035920px;}
._17{width:9.820080px;}
._18{width:11.129280px;}
._f{width:13.032000px;}
._c{width:14.040000px;}
._d{width:15.120000px;}
._e{width:16.632000px;}
._a{width:19.152000px;}
._1b{width:20.520000px;}
._13{width:22.176000px;}
._1f{width:23.472000px;}
._22{width:24.709920px;}
._12{width:25.715040px;}
._2{width:26.717040px;}
._3{width:28.344960px;}
._20{width:29.592000px;}
._21{width:30.829920px;}
._11{width:33.989280px;}
._10{width:35.064000px;}
._1c{width:36.504000px;}
._1d{width:37.584000px;}
._5{width:39.261600px;}
._4{width:40.314960px;}
._14{width:43.272000px;}
._15{width:44.928000px;}
._26{width:46.440000px;}
._9{width:52.572240px;}
._8{width:53.912880px;}
._1a{width:54.920160px;}
._24{width:58.896000px;}
._25{width:60.056640px;}
._23{width:142.488000px;}
._27{width:153.228000px;}
._2a{width:167.976000px;}
._2b{width:169.056000px;}
._29{width:186.844800px;}
._28{width:188.059200px;}
._2c{width:205.896000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:14.220000px;}
.y81{bottom:14.400000px;}
.y9d{bottom:14.430000px;}
.y80{bottom:45.360000px;}
.y5{bottom:76.176000px;}
.y4{bottom:96.516000px;}
.y3{bottom:115.596000px;}
.y2{bottom:134.496000px;}
.y50{bottom:153.930000px;}
.y75{bottom:156.090000px;}
.y8d{bottom:158.430000px;}
.ya9{bottom:162.210000px;}
.yaf{bottom:169.050000px;}
.y5d{bottom:173.730000px;}
.yd5{bottom:175.890000px;}
.y31{bottom:180.030000px;}
.yb6{bottom:181.290000px;}
.y4f{bottom:184.890000px;}
.y7c{bottom:186.690000px;}
.y96{bottom:187.950000px;}
.ya8{bottom:193.350000px;}
.yd4{bottom:196.590000px;}
.yae{bottom:200.190000px;}
.y30{bottom:200.730000px;}
.y5c{bottom:204.870000px;}
.yb5{bottom:212.250000px;}
.y7b{bottom:213.870000px;}
.y4e{bottom:216.030000px;}
.yd3{bottom:217.290000px;}
.y2f{bottom:221.430000px;}
.ya7{bottom:224.310000px;}
.y95{bottom:224.850000px;}
.yad{bottom:231.150000px;}
.y5b{bottom:235.830000px;}
.yd2{bottom:237.990000px;}
.y2e{bottom:242.130000px;}
.yb4{bottom:243.210000px;}
.y4d{bottom:246.990000px;}
.y94{bottom:252.030000px;}
.ya6{bottom:255.450000px;}
.yd1{bottom:258.690000px;}
.y2d{bottom:262.830000px;}
.yac{bottom:264.270000px;}
.y5a{bottom:266.970000px;}
.yb3{bottom:273.450000px;}
.y4c{bottom:277.950000px;}
.yd0{bottom:279.390000px;}
.y2c{bottom:283.530000px;}
.ya5{bottom:286.410000px;}
.y59{bottom:297.930000px;}
.ycf{bottom:300.090000px;}
.y2b{bottom:304.230000px;}
.y4b{bottom:309.090000px;}
.yb2{bottom:312.510000px;}
.ya4{bottom:317.370000px;}
.yce{bottom:320.790000px;}
.y2a{bottom:324.930000px;}
.y58{bottom:329.070000px;}
.y4a{bottom:340.095000px;}
.ycd{bottom:341.535000px;}
.y29{bottom:345.675000px;}
.ya3{bottom:348.555000px;}
.y57{bottom:360.075000px;}
.ycc{bottom:362.235000px;}
.y28{bottom:366.375000px;}
.y49{bottom:371.235000px;}
.ya2{bottom:379.515000px;}
.ycb{bottom:382.935000px;}
.y27{bottom:387.075000px;}
.y56{bottom:391.215000px;}
.y8c{bottom:396.795000px;}
.y48{bottom:402.195000px;}
.yca{bottom:403.635000px;}
.y26{bottom:407.775000px;}
.ya1{bottom:410.655000px;}
.y55{bottom:422.175000px;}
.yc9{bottom:424.335000px;}
.y25{bottom:428.475000px;}
.y74{bottom:429.375000px;}
.y47{bottom:433.335000px;}
.y8b{bottom:433.875000px;}
.ya0{bottom:441.615000px;}
.yc8{bottom:445.035000px;}
.y24{bottom:449.175000px;}
.y54{bottom:453.315000px;}
.yab{bottom:460.515000px;}
.y46{bottom:464.295000px;}
.y8a{bottom:464.835000px;}
.yc7{bottom:465.735000px;}
.y73{bottom:466.455000px;}
.y9f{bottom:467.355000px;}
.y23{bottom:469.875000px;}
.y53{bottom:484.275000px;}
.y7a{bottom:486.075000px;}
.yc6{bottom:486.435000px;}
.y93{bottom:489.315000px;}
.y22{bottom:490.575000px;}
.yaa{bottom:491.475000px;}
.y45{bottom:495.435000px;}
.y89{bottom:495.975000px;}
.y72{bottom:497.595000px;}
.yc5{bottom:507.135000px;}
.y21{bottom:511.275000px;}
.y52{bottom:515.415000px;}
.yb1{bottom:522.615000px;}
.y79{bottom:523.155000px;}
.y92{bottom:526.215000px;}
.y44{bottom:526.395000px;}
.y88{bottom:526.935000px;}
.yc4{bottom:527.835000px;}
.y71{bottom:528.555000px;}
.y20{bottom:531.975000px;}
.y51{bottom:545.655000px;}
.y9e{bottom:546.015000px;}
.yc3{bottom:548.535000px;}
.y78{bottom:550.335000px;}
.y1f{bottom:552.675000px;}
.y91{bottom:553.395000px;}
.yb0{bottom:553.575000px;}
.y43{bottom:557.535000px;}
.y87{bottom:558.075000px;}
.y70{bottom:559.695000px;}
.yc2{bottom:569.235000px;}
.y1e{bottom:573.375000px;}
.y86{bottom:583.815000px;}
.y42{bottom:588.495000px;}
.yc1{bottom:589.935000px;}
.y6f{bottom:590.655000px;}
.y9c{bottom:593.535000px;}
.y1d{bottom:594.075000px;}
.yc0{bottom:610.665000px;}
.y1c{bottom:614.805000px;}
.y41{bottom:619.665000px;}
.y6e{bottom:621.645000px;}
.y85{bottom:631.365000px;}
.y1b{bottom:635.505000px;}
.y9b{bottom:641.085000px;}
.y40{bottom:650.625000px;}
.ybf{bottom:652.065000px;}
.y6d{bottom:652.785000px;}
.y1a{bottom:656.205000px;}
.ybe{bottom:672.765000px;}
.y19{bottom:676.905000px;}
.y83{bottom:678.885000px;}
.y3f{bottom:681.765000px;}
.y6c{bottom:683.745000px;}
.y9a{bottom:688.785000px;}
.ybd{bottom:693.465000px;}
.y18{bottom:697.605000px;}
.y3e{bottom:712.725000px;}
.ybc{bottom:714.165000px;}
.y6b{bottom:714.885000px;}
.y17{bottom:718.305000px;}
.y82{bottom:726.405000px;}
.ybb{bottom:734.865000px;}
.y99{bottom:736.305000px;}
.y16{bottom:739.005000px;}
.y3d{bottom:743.865000px;}
.y6a{bottom:745.845000px;}
.yba{bottom:755.565000px;}
.y15{bottom:759.705000px;}
.y7f{bottom:773.925000px;}
.y3c{bottom:774.825000px;}
.yb9{bottom:776.265000px;}
.y69{bottom:776.985000px;}
.y14{bottom:780.405000px;}
.yb8{bottom:796.965000px;}
.y13{bottom:801.105000px;}
.y3b{bottom:805.965000px;}
.y68{bottom:807.945000px;}
.y77{bottom:812.085000px;}
.y12{bottom:821.805000px;}
.yb7{bottom:827.205000px;}
.y98{bottom:827.745000px;}
.y90{bottom:828.465000px;}
.y3a{bottom:836.925000px;}
.y67{bottom:839.085000px;}
.y11{bottom:842.505000px;}
.y97{bottom:860.685000px;}
.y8f{bottom:861.405000px;}
.y10{bottom:863.205000px;}
.y7e{bottom:865.365000px;}
.y39{bottom:868.065000px;}
.y66{bottom:870.045000px;}
.yf{bottom:883.950000px;}
.y7d{bottom:898.350000px;}
.y38{bottom:899.070000px;}
.y65{bottom:901.230000px;}
.ye{bottom:904.650000px;}
.yd{bottom:925.350000px;}
.y37{bottom:930.210000px;}
.y64{bottom:932.190000px;}
.yc{bottom:947.310000px;}
.y36{bottom:961.170000px;}
.y63{bottom:963.330000px;}
.yb{bottom:975.030000px;}
.y35{bottom:992.310000px;}
.y62{bottom:994.290000px;}
.ya{bottom:1002.570000px;}
.y34{bottom:1023.270000px;}
.y61{bottom:1025.430000px;}
.y9{bottom:1030.110000px;}
.y76{bottom:1050.270000px;}
.y33{bottom:1054.410000px;}
.y60{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.y7{bottom:1085.370000px;}
.y5f{bottom:1087.530000px;}
.yd6{bottom:1097.790000px;}
.y6{bottom:1112.910000px;}
.y32{bottom:1115.610000px;}
.y5e{bottom:1118.490000px;}
.y8e{bottom:1118.670000px;}
.y1{bottom:1233.900000px;}
.hd{height:30.960000px;}
.he{height:30.996000px;}
.hc{height:31.140000px;}
.hf{height:31.176000px;}
.hb{height:50.414062px;}
.h9{height:53.573906px;}
.h6{height:54.878906px;}
.h3{height:59.383125px;}
.ha{height:62.100000px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:72.988945px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:105.300000px;}
.w7{width:115.416000px;}
.w5{width:116.100000px;}
.w4{width:157.890000px;}
.w3{width:401.835000px;}
.w6{width:455.115000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:6.840000px;}
.x17{left:49.314000px;}
.x2{left:127.655987px;}
.x1f{left:155.369987px;}
.x3{left:170.129987px;}
.x4{left:178.769987px;}
.xd{left:224.129987px;}
.x8{left:250.949987px;}
.x1c{left:259.589987px;}
.x12{left:286.634987px;}
.x14{left:300.494987px;}
.xb{left:303.914987px;}
.x26{left:306.614987px;}
.x24{left:307.694987px;}
.x10{left:327.674987px;}
.x7{left:334.154987px;}
.xe{left:340.094987px;}
.x5{left:342.794987px;}
.x20{left:372.314987px;}
.x16{left:384.554987px;}
.x21{left:404.174987px;}
.x6{left:467.924987px;}
.x1{left:489.164987px;}
.x18{left:531.825000px;}
.x22{left:584.925000px;}
.xc{left:639.824987px;}
.xf{left:643.964987px;}
.x25{left:663.629987px;}
.x27{left:672.089987px;}
.x15{left:673.709987px;}
.x13{left:680.549987px;}
.x11{left:683.969987px;}
.x19{left:691.170000px;}
.x1e{left:693.869987px;}
.x1b{left:699.449987px;}
.x23{left:701.970000px;}
.xa{left:706.109987px;}
.x1d{left:710.789987px;}
.x9{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.048000pt;}
.ls6{letter-spacing:40.960000pt;}
.ls3{letter-spacing:134.042027pt;}
.ls9{letter-spacing:149.760000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-3.867307pt;}
._19{margin-left:-2.880000pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.624320pt;}
._b{width:2.663680pt;}
._16{width:4.096000pt;}
._6{width:5.617920pt;}
._7{width:7.143040pt;}
._17{width:8.728960pt;}
._18{width:9.892693pt;}
._f{width:11.584000pt;}
._c{width:12.480000pt;}
._d{width:13.440000pt;}
._e{width:14.784000pt;}
._a{width:17.024000pt;}
._1b{width:18.240000pt;}
._13{width:19.712000pt;}
._1f{width:20.864000pt;}
._22{width:21.964373pt;}
._12{width:22.857813pt;}
._2{width:23.748480pt;}
._3{width:25.195520pt;}
._20{width:26.304000pt;}
._21{width:27.404373pt;}
._11{width:30.212693pt;}
._10{width:31.168000pt;}
._1c{width:32.448000pt;}
._1d{width:33.408000pt;}
._5{width:34.899200pt;}
._4{width:35.835520pt;}
._14{width:38.464000pt;}
._15{width:39.936000pt;}
._26{width:41.280000pt;}
._9{width:46.730880pt;}
._8{width:47.922560pt;}
._1a{width:48.817920pt;}
._24{width:52.352000pt;}
._25{width:53.383680pt;}
._23{width:126.656000pt;}
._27{width:136.202667pt;}
._2a{width:149.312000pt;}
._2b{width:150.272000pt;}
._29{width:166.084267pt;}
._28{width:167.163733pt;}
._2c{width:183.018667pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:12.640000pt;}
.y81{bottom:12.800000pt;}
.y9d{bottom:12.826667pt;}
.y80{bottom:40.320000pt;}
.y5{bottom:67.712000pt;}
.y4{bottom:85.792000pt;}
.y3{bottom:102.752000pt;}
.y2{bottom:119.552000pt;}
.y50{bottom:136.826667pt;}
.y75{bottom:138.746667pt;}
.y8d{bottom:140.826667pt;}
.ya9{bottom:144.186667pt;}
.yaf{bottom:150.266667pt;}
.y5d{bottom:154.426667pt;}
.yd5{bottom:156.346667pt;}
.y31{bottom:160.026667pt;}
.yb6{bottom:161.146667pt;}
.y4f{bottom:164.346667pt;}
.y7c{bottom:165.946667pt;}
.y96{bottom:167.066667pt;}
.ya8{bottom:171.866667pt;}
.yd4{bottom:174.746667pt;}
.yae{bottom:177.946667pt;}
.y30{bottom:178.426667pt;}
.y5c{bottom:182.106667pt;}
.yb5{bottom:188.666667pt;}
.y7b{bottom:190.106667pt;}
.y4e{bottom:192.026667pt;}
.yd3{bottom:193.146667pt;}
.y2f{bottom:196.826667pt;}
.ya7{bottom:199.386667pt;}
.y95{bottom:199.866667pt;}
.yad{bottom:205.466667pt;}
.y5b{bottom:209.626667pt;}
.yd2{bottom:211.546667pt;}
.y2e{bottom:215.226667pt;}
.yb4{bottom:216.186667pt;}
.y4d{bottom:219.546667pt;}
.y94{bottom:224.026667pt;}
.ya6{bottom:227.066667pt;}
.yd1{bottom:229.946667pt;}
.y2d{bottom:233.626667pt;}
.yac{bottom:234.906667pt;}
.y5a{bottom:237.306667pt;}
.yb3{bottom:243.066667pt;}
.y4c{bottom:247.066667pt;}
.yd0{bottom:248.346667pt;}
.y2c{bottom:252.026667pt;}
.ya5{bottom:254.586667pt;}
.y59{bottom:264.826667pt;}
.ycf{bottom:266.746667pt;}
.y2b{bottom:270.426667pt;}
.y4b{bottom:274.746667pt;}
.yb2{bottom:277.786667pt;}
.ya4{bottom:282.106667pt;}
.yce{bottom:285.146667pt;}
.y2a{bottom:288.826667pt;}
.y58{bottom:292.506667pt;}
.y4a{bottom:302.306667pt;}
.ycd{bottom:303.586667pt;}
.y29{bottom:307.266667pt;}
.ya3{bottom:309.826667pt;}
.y57{bottom:320.066667pt;}
.ycc{bottom:321.986667pt;}
.y28{bottom:325.666667pt;}
.y49{bottom:329.986667pt;}
.ya2{bottom:337.346667pt;}
.ycb{bottom:340.386667pt;}
.y27{bottom:344.066667pt;}
.y56{bottom:347.746667pt;}
.y8c{bottom:352.706667pt;}
.y48{bottom:357.506667pt;}
.yca{bottom:358.786667pt;}
.y26{bottom:362.466667pt;}
.ya1{bottom:365.026667pt;}
.y55{bottom:375.266667pt;}
.yc9{bottom:377.186667pt;}
.y25{bottom:380.866667pt;}
.y74{bottom:381.666667pt;}
.y47{bottom:385.186667pt;}
.y8b{bottom:385.666667pt;}
.ya0{bottom:392.546667pt;}
.yc8{bottom:395.586667pt;}
.y24{bottom:399.266667pt;}
.y54{bottom:402.946667pt;}
.yab{bottom:409.346667pt;}
.y46{bottom:412.706667pt;}
.y8a{bottom:413.186667pt;}
.yc7{bottom:413.986667pt;}
.y73{bottom:414.626667pt;}
.y9f{bottom:415.426667pt;}
.y23{bottom:417.666667pt;}
.y53{bottom:430.466667pt;}
.y7a{bottom:432.066667pt;}
.yc6{bottom:432.386667pt;}
.y93{bottom:434.946667pt;}
.y22{bottom:436.066667pt;}
.yaa{bottom:436.866667pt;}
.y45{bottom:440.386667pt;}
.y89{bottom:440.866667pt;}
.y72{bottom:442.306667pt;}
.yc5{bottom:450.786667pt;}
.y21{bottom:454.466667pt;}
.y52{bottom:458.146667pt;}
.yb1{bottom:464.546667pt;}
.y79{bottom:465.026667pt;}
.y92{bottom:467.746667pt;}
.y44{bottom:467.906667pt;}
.y88{bottom:468.386667pt;}
.yc4{bottom:469.186667pt;}
.y71{bottom:469.826667pt;}
.y20{bottom:472.866667pt;}
.y51{bottom:485.026667pt;}
.y9e{bottom:485.346667pt;}
.yc3{bottom:487.586667pt;}
.y78{bottom:489.186667pt;}
.y1f{bottom:491.266667pt;}
.y91{bottom:491.906667pt;}
.yb0{bottom:492.066667pt;}
.y43{bottom:495.586667pt;}
.y87{bottom:496.066667pt;}
.y70{bottom:497.506667pt;}
.yc2{bottom:505.986667pt;}
.y1e{bottom:509.666667pt;}
.y86{bottom:518.946667pt;}
.y42{bottom:523.106667pt;}
.yc1{bottom:524.386667pt;}
.y6f{bottom:525.026667pt;}
.y9c{bottom:527.586667pt;}
.y1d{bottom:528.066667pt;}
.yc0{bottom:542.813333pt;}
.y1c{bottom:546.493333pt;}
.y41{bottom:550.813333pt;}
.y6e{bottom:552.573333pt;}
.y85{bottom:561.213333pt;}
.y1b{bottom:564.893333pt;}
.y9b{bottom:569.853333pt;}
.y40{bottom:578.333333pt;}
.ybf{bottom:579.613333pt;}
.y6d{bottom:580.253333pt;}
.y1a{bottom:583.293333pt;}
.ybe{bottom:598.013333pt;}
.y19{bottom:601.693333pt;}
.y83{bottom:603.453333pt;}
.y3f{bottom:606.013333pt;}
.y6c{bottom:607.773333pt;}
.y9a{bottom:612.253333pt;}
.ybd{bottom:616.413333pt;}
.y18{bottom:620.093333pt;}
.y3e{bottom:633.533333pt;}
.ybc{bottom:634.813333pt;}
.y6b{bottom:635.453333pt;}
.y17{bottom:638.493333pt;}
.y82{bottom:645.693333pt;}
.ybb{bottom:653.213333pt;}
.y99{bottom:654.493333pt;}
.y16{bottom:656.893333pt;}
.y3d{bottom:661.213333pt;}
.y6a{bottom:662.973333pt;}
.yba{bottom:671.613333pt;}
.y15{bottom:675.293333pt;}
.y7f{bottom:687.933333pt;}
.y3c{bottom:688.733333pt;}
.yb9{bottom:690.013333pt;}
.y69{bottom:690.653333pt;}
.y14{bottom:693.693333pt;}
.yb8{bottom:708.413333pt;}
.y13{bottom:712.093333pt;}
.y3b{bottom:716.413333pt;}
.y68{bottom:718.173333pt;}
.y77{bottom:721.853333pt;}
.y12{bottom:730.493333pt;}
.yb7{bottom:735.293333pt;}
.y98{bottom:735.773333pt;}
.y90{bottom:736.413333pt;}
.y3a{bottom:743.933333pt;}
.y67{bottom:745.853333pt;}
.y11{bottom:748.893333pt;}
.y97{bottom:765.053333pt;}
.y8f{bottom:765.693333pt;}
.y10{bottom:767.293333pt;}
.y7e{bottom:769.213333pt;}
.y39{bottom:771.613333pt;}
.y66{bottom:773.373333pt;}
.yf{bottom:785.733333pt;}
.y7d{bottom:798.533333pt;}
.y38{bottom:799.173333pt;}
.y65{bottom:801.093333pt;}
.ye{bottom:804.133333pt;}
.yd{bottom:822.533333pt;}
.y37{bottom:826.853333pt;}
.y64{bottom:828.613333pt;}
.yc{bottom:842.053333pt;}
.y36{bottom:854.373333pt;}
.y63{bottom:856.293333pt;}
.yb{bottom:866.693333pt;}
.y35{bottom:882.053333pt;}
.y62{bottom:883.813333pt;}
.ya{bottom:891.173333pt;}
.y34{bottom:909.573333pt;}
.y61{bottom:911.493333pt;}
.y9{bottom:915.653333pt;}
.y76{bottom:933.573333pt;}
.y33{bottom:937.253333pt;}
.y60{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.y7{bottom:964.773333pt;}
.y5f{bottom:966.693333pt;}
.yd6{bottom:975.813333pt;}
.y6{bottom:989.253333pt;}
.y32{bottom:991.653333pt;}
.y5e{bottom:994.213333pt;}
.y8e{bottom:994.373333pt;}
.y1{bottom:1096.800000pt;}
.hd{height:27.520000pt;}
.he{height:27.552000pt;}
.hc{height:27.680000pt;}
.hf{height:27.712000pt;}
.hb{height:44.812500pt;}
.h9{height:47.621250pt;}
.h6{height:48.781250pt;}
.h3{height:52.785000pt;}
.ha{height:55.200000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:64.879063pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:93.600000pt;}
.w7{width:102.592000pt;}
.w5{width:103.200000pt;}
.w4{width:140.346667pt;}
.w3{width:357.186667pt;}
.w6{width:404.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.080000pt;}
.x17{left:43.834667pt;}
.x2{left:113.471988pt;}
.x1f{left:138.106655pt;}
.x3{left:151.226655pt;}
.x4{left:158.906655pt;}
.xd{left:199.226655pt;}
.x8{left:223.066655pt;}
.x1c{left:230.746655pt;}
.x12{left:254.786655pt;}
.x14{left:267.106655pt;}
.xb{left:270.146655pt;}
.x26{left:272.546655pt;}
.x24{left:273.506655pt;}
.x10{left:291.266655pt;}
.x7{left:297.026655pt;}
.xe{left:302.306655pt;}
.x5{left:304.706655pt;}
.x20{left:330.946655pt;}
.x16{left:341.826655pt;}
.x21{left:359.266655pt;}
.x6{left:415.933322pt;}
.x1{left:434.813322pt;}
.x18{left:472.733333pt;}
.x22{left:519.933333pt;}
.xc{left:568.733322pt;}
.xf{left:572.413322pt;}
.x25{left:589.893322pt;}
.x27{left:597.413322pt;}
.x15{left:598.853322pt;}
.x13{left:604.933322pt;}
.x11{left:607.973322pt;}
.x19{left:614.373333pt;}
.x1e{left:616.773322pt;}
.x1b{left:621.733322pt;}
.x23{left:623.973333pt;}
.xa{left:627.653322pt;}
.x1d{left:631.813322pt;}
.x9{left:718.373322pt;}
}




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