
    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_290b2cb4e78415c9e33f4bb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937012;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_6dd2930a9169eeba27e1261e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916504;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_0598b24c6e72cc04c8d9ccb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_dc13b44629c0894319de1e1a.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_c5d3e9de61e43bee328d230f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b0127df3edaf1b429533e6b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_b3eb68422b8af8a3035d3330.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_262be4c8d4b27a08febc7fcb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4a62e34ea2839091a85cb148.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897949;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:27.360000px;}
.lse{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.702000px;}
.ls13{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.lsc{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.982080px;}
.ls11{letter-spacing:3.185280px;}
.ls10{letter-spacing:36.305280px;}
.ls3{letter-spacing:55.745280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws7{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.wse{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.840000px;}
.ws4{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.284000px;}
.ws3{word-spacing:-12.798000px;}
.ws0{word-spacing:-10.800000px;}
.ws1{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-1.265280px;}
._0{width:1.133280px;}
._5{width:2.260800px;}
._1{width:3.405120px;}
._3{width:4.536000px;}
._4{width:6.070080px;}
._9{width:7.179360px;}
._6{width:8.194080px;}
._b{width:9.274560px;}
._7{width:10.375680px;}
._8{width:11.726880px;}
._e{width:12.850560px;}
._10{width:13.898880px;}
._c{width:15.004800px;}
._a{width:18.012000px;}
._d{width:19.532160px;}
._f{width:21.024480px;}
._12{width:22.708320px;}
._11{width:23.780160px;}
._14{width:25.945920px;}
._13{width:27.165120px;}
._15{width:28.364160px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.960000px;}
.y8b{bottom:4.140000px;}
.y72{bottom:12.600000px;}
.y7c{bottom:13.140000px;}
.y7b{bottom:32.040000px;}
.y7e{bottom:32.070000px;}
.y7a{bottom:50.940000px;}
.y79{bottom:70.020000px;}
.y78{bottom:88.920000px;}
.yd0{bottom:91.980000px;}
.y68{bottom:93.960000px;}
.yff{bottom:95.040000px;}
.yb2{bottom:103.500000px;}
.y77{bottom:108.000000px;}
.ycf{bottom:111.060000px;}
.y39{bottom:111.780000px;}
.y67{bottom:113.040000px;}
.yfe{bottom:114.120000px;}
.y97{bottom:118.260000px;}
.yb1{bottom:122.400000px;}
.y76{bottom:126.900000px;}
.yce{bottom:129.960000px;}
.y38{bottom:130.680000px;}
.y66{bottom:131.940000px;}
.yfd{bottom:133.020000px;}
.y96{bottom:137.376000px;}
.yb0{bottom:141.336000px;}
.y75{bottom:145.800000px;}
.ycd{bottom:148.896000px;}
.y37{bottom:149.796000px;}
.y65{bottom:151.050000px;}
.yfc{bottom:152.130000px;}
.y95{bottom:156.270000px;}
.yaf{bottom:160.410000px;}
.y74{bottom:164.925000px;}
.ycc{bottom:167.970000px;}
.y36{bottom:168.690000px;}
.y64{bottom:169.950000px;}
.yfb{bottom:171.030000px;}
.y94{bottom:175.350000px;}
.yae{bottom:179.310000px;}
.ycb{bottom:186.870000px;}
.y35{bottom:187.770000px;}
.y63{bottom:188.850000px;}
.yfa{bottom:189.930000px;}
.y93{bottom:194.250000px;}
.yad{bottom:198.390000px;}
.yca{bottom:205.950000px;}
.y34{bottom:206.670000px;}
.y62{bottom:207.930000px;}
.yf9{bottom:209.010000px;}
.y92{bottom:213.150000px;}
.yac{bottom:217.290000px;}
.yc9{bottom:224.850000px;}
.y33{bottom:225.750000px;}
.y61{bottom:226.830000px;}
.yf8{bottom:227.910000px;}
.y91{bottom:232.230000px;}
.yab{bottom:236.370000px;}
.yc8{bottom:243.750000px;}
.y32{bottom:244.650000px;}
.y60{bottom:245.910000px;}
.yf7{bottom:246.990000px;}
.y90{bottom:251.130000px;}
.yaa{bottom:255.270000px;}
.yc7{bottom:262.830000px;}
.y31{bottom:263.550000px;}
.y5f{bottom:264.810000px;}
.yf6{bottom:265.890000px;}
.y8f{bottom:270.210000px;}
.ya9{bottom:274.170000px;}
.yc6{bottom:281.370000px;}
.y30{bottom:282.630000px;}
.y5e{bottom:283.710000px;}
.yf5{bottom:284.790000px;}
.y8e{bottom:289.110000px;}
.ya8{bottom:293.250000px;}
.yc5{bottom:300.810000px;}
.y2f{bottom:301.530000px;}
.y5d{bottom:302.790000px;}
.yf4{bottom:303.870000px;}
.y8d{bottom:304.770000px;}
.ya7{bottom:312.150000px;}
.yc4{bottom:319.710000px;}
.y2e{bottom:320.610000px;}
.y5c{bottom:321.330000px;}
.yf3{bottom:322.770000px;}
.y8c{bottom:324.570000px;}
.ya6{bottom:331.230000px;}
.yc3{bottom:338.610000px;}
.y2d{bottom:339.510000px;}
.y5b{bottom:341.310000px;}
.yf2{bottom:341.850000px;}
.y8a{bottom:344.190000px;}
.ya5{bottom:349.410000px;}
.yc2{bottom:357.690000px;}
.y2c{bottom:358.410000px;}
.yf1{bottom:360.750000px;}
.y5a{bottom:360.930000px;}
.y88{bottom:363.990000px;}
.ya4{bottom:366.150000px;}
.yc1{bottom:376.590000px;}
.y2b{bottom:377.490000px;}
.yf0{bottom:379.650000px;}
.y59{bottom:381.090000px;}
.y87{bottom:387.795000px;}
.yc0{bottom:395.715000px;}
.y2a{bottom:396.615000px;}
.yef{bottom:398.775000px;}
.y58{bottom:401.295000px;}
.y86{bottom:406.695000px;}
.ybf{bottom:414.615000px;}
.y29{bottom:416.595000px;}
.yee{bottom:417.675000px;}
.y57{bottom:421.455000px;}
.y85{bottom:425.775000px;}
.ybe{bottom:433.515000px;}
.y28{bottom:435.675000px;}
.yed{bottom:436.755000px;}
.y56{bottom:441.615000px;}
.y84{bottom:444.675000px;}
.ybd{bottom:452.595000px;}
.yec{bottom:455.655000px;}
.y27{bottom:455.835000px;}
.y55{bottom:461.595000px;}
.y83{bottom:463.755000px;}
.ybc{bottom:471.495000px;}
.yeb{bottom:474.735000px;}
.y26{bottom:474.915000px;}
.y54{bottom:480.675000px;}
.y82{bottom:482.655000px;}
.ybb{bottom:490.575000px;}
.yea{bottom:493.635000px;}
.y25{bottom:494.895000px;}
.y53{bottom:499.575000px;}
.y81{bottom:501.555000px;}
.yba{bottom:509.475000px;}
.ye9{bottom:512.535000px;}
.y24{bottom:513.795000px;}
.y52{bottom:518.655000px;}
.y80{bottom:519.915000px;}
.yb9{bottom:528.555000px;}
.ye8{bottom:531.615000px;}
.y23{bottom:532.875000px;}
.y51{bottom:538.815000px;}
.yb8{bottom:547.455000px;}
.ye7{bottom:550.515000px;}
.y22{bottom:551.775000px;}
.y50{bottom:557.895000px;}
.yb7{bottom:566.355000px;}
.ye6{bottom:569.595000px;}
.y21{bottom:570.855000px;}
.y4f{bottom:577.875000px;}
.y7f{bottom:579.315000px;}
.yb6{bottom:585.075000px;}
.ye5{bottom:588.135000px;}
.y20{bottom:589.755000px;}
.y4e{bottom:596.955000px;}
.yb5{bottom:604.335000px;}
.ye4{bottom:607.395000px;}
.y1f{bottom:608.655000px;}
.y4d{bottom:617.115000px;}
.yb4{bottom:622.515000px;}
.y7d{bottom:625.215000px;}
.ye3{bottom:626.475000px;}
.y1e{bottom:627.735000px;}
.ya3{bottom:632.955000px;}
.y4c{bottom:637.095000px;}
.yb3{bottom:639.435000px;}
.ye2{bottom:645.405000px;}
.y1d{bottom:646.665000px;}
.ya2{bottom:651.885000px;}
.y4b{bottom:656.205000px;}
.ye1{bottom:664.125000px;}
.y1c{bottom:665.745000px;}
.ya1{bottom:670.965000px;}
.y4a{bottom:675.105000px;}
.ye0{bottom:683.385000px;}
.y1b{bottom:684.645000px;}
.ya0{bottom:689.865000px;}
.y49{bottom:694.185000px;}
.ydf{bottom:702.285000px;}
.y1a{bottom:703.545000px;}
.y9f{bottom:708.765000px;}
.y48{bottom:713.085000px;}
.yde{bottom:721.365000px;}
.y19{bottom:722.625000px;}
.y9e{bottom:727.845000px;}
.y73{bottom:730.545000px;}
.y47{bottom:731.985000px;}
.ydd{bottom:740.265000px;}
.y18{bottom:741.525000px;}
.y9d{bottom:746.745000px;}
.y46{bottom:751.065000px;}
.ydc{bottom:759.345000px;}
.y17{bottom:760.605000px;}
.y9c{bottom:765.825000px;}
.y45{bottom:769.965000px;}
.ydb{bottom:778.245000px;}
.y16{bottom:779.145000px;}
.y9b{bottom:784.725000px;}
.y44{bottom:789.045000px;}
.yda{bottom:797.325000px;}
.y15{bottom:797.685000px;}
.y9a{bottom:803.805000px;}
.y43{bottom:807.945000px;}
.y14{bottom:813.345000px;}
.yd9{bottom:817.305000px;}
.y99{bottom:821.985000px;}
.y42{bottom:826.845000px;}
.y13{bottom:828.825000px;}
.yd8{bottom:836.385000px;}
.y98{bottom:838.725000px;}
.y12{bottom:844.305000px;}
.y41{bottom:845.925000px;}
.yd7{bottom:855.465000px;}
.y11{bottom:859.785000px;}
.y40{bottom:864.465000px;}
.y10{bottom:875.445000px;}
.y3f{bottom:883.905000px;}
.yf{bottom:890.925000px;}
.yd6{bottom:894.570000px;}
.y3e{bottom:902.130000px;}
.ye{bottom:906.090000px;}
.yd5{bottom:914.730000px;}
.y3d{bottom:919.050000px;}
.yd{bottom:921.930000px;}
.y71{bottom:922.830000px;}
.yd4{bottom:933.630000px;}
.yc{bottom:937.590000px;}
.yd3{bottom:952.530000px;}
.yb{bottom:953.070000px;}
.ya{bottom:968.550000px;}
.yd2{bottom:972.150000px;}
.y70{bottom:972.690000px;}
.y9{bottom:984.030000px;}
.y6f{bottom:991.770000px;}
.y8{bottom:999.510000px;}
.y6e{bottom:1010.670000px;}
.y7{bottom:1015.170000px;}
.y6d{bottom:1029.750000px;}
.y6{bottom:1031.370000px;}
.y6c{bottom:1048.650000px;}
.y5{bottom:1050.450000px;}
.y6b{bottom:1067.550000px;}
.y4{bottom:1071.870000px;}
.y6a{bottom:1086.630000px;}
.y3{bottom:1102.470000px;}
.y69{bottom:1105.170000px;}
.y3c{bottom:1105.530000px;}
.y3b{bottom:1124.610000px;}
.y2{bottom:1133.430000px;}
.yd1{bottom:1143.150000px;}
.y3a{bottom:1143.510000px;}
.y1{bottom:1216.620000px;}
.h10{height:18.900000px;}
.h11{height:19.080000px;}
.hc{height:36.900000px;}
.h8{height:38.997070px;}
.hb{height:44.893125px;}
.h9{height:48.410156px;}
.h7{height:50.229844px;}
.hf{height:55.980000px;}
.he{height:56.016000px;}
.h5{height:57.517734px;}
.ha{height:58.833281px;}
.h6{height:59.383125px;}
.h2{height:78.679688px;}
.h3{height:95.923828px;}
.h4{height:96.820312px;}
.hd{height:188.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:491.325000px;}
.w3{width:623.985000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.380000px;}
.x15{left:10.254000px;}
.xf{left:11.694000px;}
.x10{left:12.954000px;}
.x13{left:14.034000px;}
.x11{left:16.194000px;}
.x14{left:28.614000px;}
.x12{left:49.494000px;}
.x8{left:76.499987px;}
.x1{left:79.199987px;}
.x2{left:82.439987px;}
.x9{left:103.535987px;}
.xa{left:130.535987px;}
.x16{left:132.699000px;}
.x1b{left:135.399000px;}
.xd{left:142.056000px;}
.x3{left:153.929987px;}
.x7{left:164.549987px;}
.xc{left:173.189987px;}
.x1e{left:181.289987px;}
.x6{left:191.729987px;}
.x1c{left:196.590000px;}
.x17{left:229.359000px;}
.x5{left:233.309987px;}
.xe{left:263.019000px;}
.x19{left:264.819000px;}
.x18{left:285.879000px;}
.x20{left:289.154987px;}
.x4{left:442.184987px;}
.x1d{left:629.789987px;}
.x1f{left:686.309987px;}
.x21{left:711.869987px;}
.xb{left:750.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.624000pt;}
.ls13{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.lsc{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.872960pt;}
.ls11{letter-spacing:2.831360pt;}
.ls10{letter-spacing:32.271360pt;}
.ls3{letter-spacing:49.551360pt;}
.ws8{word-spacing:-58.880000pt;}
.ws7{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.wse{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.080000pt;}
.ws4{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws3{word-spacing:-11.376000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-1.124693pt;}
._0{width:1.007360pt;}
._5{width:2.009600pt;}
._1{width:3.026773pt;}
._3{width:4.032000pt;}
._4{width:5.395627pt;}
._9{width:6.381653pt;}
._6{width:7.283627pt;}
._b{width:8.244053pt;}
._7{width:9.222827pt;}
._8{width:10.423893pt;}
._e{width:11.422720pt;}
._10{width:12.354560pt;}
._c{width:13.337600pt;}
._a{width:16.010667pt;}
._d{width:17.361920pt;}
._f{width:18.688427pt;}
._12{width:20.185173pt;}
._11{width:21.137920pt;}
._14{width:23.063040pt;}
._13{width:24.146773pt;}
._15{width:25.212587pt;}
.fs1{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.520000pt;}
.y8b{bottom:3.680000pt;}
.y72{bottom:11.200000pt;}
.y7c{bottom:11.680000pt;}
.y7b{bottom:28.480000pt;}
.y7e{bottom:28.506667pt;}
.y7a{bottom:45.280000pt;}
.y79{bottom:62.240000pt;}
.y78{bottom:79.040000pt;}
.yd0{bottom:81.760000pt;}
.y68{bottom:83.520000pt;}
.yff{bottom:84.480000pt;}
.yb2{bottom:92.000000pt;}
.y77{bottom:96.000000pt;}
.ycf{bottom:98.720000pt;}
.y39{bottom:99.360000pt;}
.y67{bottom:100.480000pt;}
.yfe{bottom:101.440000pt;}
.y97{bottom:105.120000pt;}
.yb1{bottom:108.800000pt;}
.y76{bottom:112.800000pt;}
.yce{bottom:115.520000pt;}
.y38{bottom:116.160000pt;}
.y66{bottom:117.280000pt;}
.yfd{bottom:118.240000pt;}
.y96{bottom:122.112000pt;}
.yb0{bottom:125.632000pt;}
.y75{bottom:129.600000pt;}
.ycd{bottom:132.352000pt;}
.y37{bottom:133.152000pt;}
.y65{bottom:134.266667pt;}
.yfc{bottom:135.226667pt;}
.y95{bottom:138.906667pt;}
.yaf{bottom:142.586667pt;}
.y74{bottom:146.600000pt;}
.ycc{bottom:149.306667pt;}
.y36{bottom:149.946667pt;}
.y64{bottom:151.066667pt;}
.yfb{bottom:152.026667pt;}
.y94{bottom:155.866667pt;}
.yae{bottom:159.386667pt;}
.ycb{bottom:166.106667pt;}
.y35{bottom:166.906667pt;}
.y63{bottom:167.866667pt;}
.yfa{bottom:168.826667pt;}
.y93{bottom:172.666667pt;}
.yad{bottom:176.346667pt;}
.yca{bottom:183.066667pt;}
.y34{bottom:183.706667pt;}
.y62{bottom:184.826667pt;}
.yf9{bottom:185.786667pt;}
.y92{bottom:189.466667pt;}
.yac{bottom:193.146667pt;}
.yc9{bottom:199.866667pt;}
.y33{bottom:200.666667pt;}
.y61{bottom:201.626667pt;}
.yf8{bottom:202.586667pt;}
.y91{bottom:206.426667pt;}
.yab{bottom:210.106667pt;}
.yc8{bottom:216.666667pt;}
.y32{bottom:217.466667pt;}
.y60{bottom:218.586667pt;}
.yf7{bottom:219.546667pt;}
.y90{bottom:223.226667pt;}
.yaa{bottom:226.906667pt;}
.yc7{bottom:233.626667pt;}
.y31{bottom:234.266667pt;}
.y5f{bottom:235.386667pt;}
.yf6{bottom:236.346667pt;}
.y8f{bottom:240.186667pt;}
.ya9{bottom:243.706667pt;}
.yc6{bottom:250.106667pt;}
.y30{bottom:251.226667pt;}
.y5e{bottom:252.186667pt;}
.yf5{bottom:253.146667pt;}
.y8e{bottom:256.986667pt;}
.ya8{bottom:260.666667pt;}
.yc5{bottom:267.386667pt;}
.y2f{bottom:268.026667pt;}
.y5d{bottom:269.146667pt;}
.yf4{bottom:270.106667pt;}
.y8d{bottom:270.906667pt;}
.ya7{bottom:277.466667pt;}
.yc4{bottom:284.186667pt;}
.y2e{bottom:284.986667pt;}
.y5c{bottom:285.626667pt;}
.yf3{bottom:286.906667pt;}
.y8c{bottom:288.506667pt;}
.ya6{bottom:294.426667pt;}
.yc3{bottom:300.986667pt;}
.y2d{bottom:301.786667pt;}
.y5b{bottom:303.386667pt;}
.yf2{bottom:303.866667pt;}
.y8a{bottom:305.946667pt;}
.ya5{bottom:310.586667pt;}
.yc2{bottom:317.946667pt;}
.y2c{bottom:318.586667pt;}
.yf1{bottom:320.666667pt;}
.y5a{bottom:320.826667pt;}
.y88{bottom:323.546667pt;}
.ya4{bottom:325.466667pt;}
.yc1{bottom:334.746667pt;}
.y2b{bottom:335.546667pt;}
.yf0{bottom:337.466667pt;}
.y59{bottom:338.746667pt;}
.y87{bottom:344.706667pt;}
.yc0{bottom:351.746667pt;}
.y2a{bottom:352.546667pt;}
.yef{bottom:354.466667pt;}
.y58{bottom:356.706667pt;}
.y86{bottom:361.506667pt;}
.ybf{bottom:368.546667pt;}
.y29{bottom:370.306667pt;}
.yee{bottom:371.266667pt;}
.y57{bottom:374.626667pt;}
.y85{bottom:378.466667pt;}
.ybe{bottom:385.346667pt;}
.y28{bottom:387.266667pt;}
.yed{bottom:388.226667pt;}
.y56{bottom:392.546667pt;}
.y84{bottom:395.266667pt;}
.ybd{bottom:402.306667pt;}
.yec{bottom:405.026667pt;}
.y27{bottom:405.186667pt;}
.y55{bottom:410.306667pt;}
.y83{bottom:412.226667pt;}
.ybc{bottom:419.106667pt;}
.yeb{bottom:421.986667pt;}
.y26{bottom:422.146667pt;}
.y54{bottom:427.266667pt;}
.y82{bottom:429.026667pt;}
.ybb{bottom:436.066667pt;}
.yea{bottom:438.786667pt;}
.y25{bottom:439.906667pt;}
.y53{bottom:444.066667pt;}
.y81{bottom:445.826667pt;}
.yba{bottom:452.866667pt;}
.ye9{bottom:455.586667pt;}
.y24{bottom:456.706667pt;}
.y52{bottom:461.026667pt;}
.y80{bottom:462.146667pt;}
.yb9{bottom:469.826667pt;}
.ye8{bottom:472.546667pt;}
.y23{bottom:473.666667pt;}
.y51{bottom:478.946667pt;}
.yb8{bottom:486.626667pt;}
.ye7{bottom:489.346667pt;}
.y22{bottom:490.466667pt;}
.y50{bottom:495.906667pt;}
.yb7{bottom:503.426667pt;}
.ye6{bottom:506.306667pt;}
.y21{bottom:507.426667pt;}
.y4f{bottom:513.666667pt;}
.y7f{bottom:514.946667pt;}
.yb6{bottom:520.066667pt;}
.ye5{bottom:522.786667pt;}
.y20{bottom:524.226667pt;}
.y4e{bottom:530.626667pt;}
.yb5{bottom:537.186667pt;}
.ye4{bottom:539.906667pt;}
.y1f{bottom:541.026667pt;}
.y4d{bottom:548.546667pt;}
.yb4{bottom:553.346667pt;}
.y7d{bottom:555.746667pt;}
.ye3{bottom:556.866667pt;}
.y1e{bottom:557.986667pt;}
.ya3{bottom:562.626667pt;}
.y4c{bottom:566.306667pt;}
.yb3{bottom:568.386667pt;}
.ye2{bottom:573.693333pt;}
.y1d{bottom:574.813333pt;}
.ya2{bottom:579.453333pt;}
.y4b{bottom:583.293333pt;}
.ye1{bottom:590.333333pt;}
.y1c{bottom:591.773333pt;}
.ya1{bottom:596.413333pt;}
.y4a{bottom:600.093333pt;}
.ye0{bottom:607.453333pt;}
.y1b{bottom:608.573333pt;}
.ya0{bottom:613.213333pt;}
.y49{bottom:617.053333pt;}
.ydf{bottom:624.253333pt;}
.y1a{bottom:625.373333pt;}
.y9f{bottom:630.013333pt;}
.y48{bottom:633.853333pt;}
.yde{bottom:641.213333pt;}
.y19{bottom:642.333333pt;}
.y9e{bottom:646.973333pt;}
.y73{bottom:649.373333pt;}
.y47{bottom:650.653333pt;}
.ydd{bottom:658.013333pt;}
.y18{bottom:659.133333pt;}
.y9d{bottom:663.773333pt;}
.y46{bottom:667.613333pt;}
.ydc{bottom:674.973333pt;}
.y17{bottom:676.093333pt;}
.y9c{bottom:680.733333pt;}
.y45{bottom:684.413333pt;}
.ydb{bottom:691.773333pt;}
.y16{bottom:692.573333pt;}
.y9b{bottom:697.533333pt;}
.y44{bottom:701.373333pt;}
.yda{bottom:708.733333pt;}
.y15{bottom:709.053333pt;}
.y9a{bottom:714.493333pt;}
.y43{bottom:718.173333pt;}
.y14{bottom:722.973333pt;}
.yd9{bottom:726.493333pt;}
.y99{bottom:730.653333pt;}
.y42{bottom:734.973333pt;}
.y13{bottom:736.733333pt;}
.yd8{bottom:743.453333pt;}
.y98{bottom:745.533333pt;}
.y12{bottom:750.493333pt;}
.y41{bottom:751.933333pt;}
.yd7{bottom:760.413333pt;}
.y11{bottom:764.253333pt;}
.y40{bottom:768.413333pt;}
.y10{bottom:778.173333pt;}
.y3f{bottom:785.693333pt;}
.yf{bottom:791.933333pt;}
.yd6{bottom:795.173333pt;}
.y3e{bottom:801.893333pt;}
.ye{bottom:805.413333pt;}
.yd5{bottom:813.093333pt;}
.y3d{bottom:816.933333pt;}
.yd{bottom:819.493333pt;}
.y71{bottom:820.293333pt;}
.yd4{bottom:829.893333pt;}
.yc{bottom:833.413333pt;}
.yd3{bottom:846.693333pt;}
.yb{bottom:847.173333pt;}
.ya{bottom:860.933333pt;}
.yd2{bottom:864.133333pt;}
.y70{bottom:864.613333pt;}
.y9{bottom:874.693333pt;}
.y6f{bottom:881.573333pt;}
.y8{bottom:888.453333pt;}
.y6e{bottom:898.373333pt;}
.y7{bottom:902.373333pt;}
.y6d{bottom:915.333333pt;}
.y6{bottom:916.773333pt;}
.y6c{bottom:932.133333pt;}
.y5{bottom:933.733333pt;}
.y6b{bottom:948.933333pt;}
.y4{bottom:952.773333pt;}
.y6a{bottom:965.893333pt;}
.y3{bottom:979.973333pt;}
.y69{bottom:982.373333pt;}
.y3c{bottom:982.693333pt;}
.y3b{bottom:999.653333pt;}
.y2{bottom:1007.493333pt;}
.yd1{bottom:1016.133333pt;}
.y3a{bottom:1016.453333pt;}
.y1{bottom:1081.440000pt;}
.h10{height:16.800000pt;}
.h11{height:16.960000pt;}
.hc{height:32.800000pt;}
.h8{height:34.664062pt;}
.hb{height:39.905000pt;}
.h9{height:43.031250pt;}
.h7{height:44.648750pt;}
.hf{height:49.760000pt;}
.he{height:49.792000pt;}
.h5{height:51.126875pt;}
.ha{height:52.296250pt;}
.h6{height:52.785000pt;}
.h2{height:69.937500pt;}
.h3{height:85.265625pt;}
.h4{height:86.062500pt;}
.hd{height:167.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:436.733333pt;}
.w3{width:554.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.560000pt;}
.x15{left:9.114667pt;}
.xf{left:10.394667pt;}
.x10{left:11.514667pt;}
.x13{left:12.474667pt;}
.x11{left:14.394667pt;}
.x14{left:25.434667pt;}
.x12{left:43.994667pt;}
.x8{left:67.999988pt;}
.x1{left:70.399988pt;}
.x2{left:73.279988pt;}
.x9{left:92.031988pt;}
.xa{left:116.031988pt;}
.x16{left:117.954667pt;}
.x1b{left:120.354667pt;}
.xd{left:126.272000pt;}
.x3{left:136.826655pt;}
.x7{left:146.266655pt;}
.xc{left:153.946655pt;}
.x1e{left:161.146655pt;}
.x6{left:170.426655pt;}
.x1c{left:174.746667pt;}
.x17{left:203.874667pt;}
.x5{left:207.386655pt;}
.xe{left:233.794667pt;}
.x19{left:235.394667pt;}
.x18{left:254.114667pt;}
.x20{left:257.026655pt;}
.x4{left:393.053322pt;}
.x1d{left:559.813322pt;}
.x1f{left:610.053322pt;}
.x21{left:632.773322pt;}
.xb{left:666.693322pt;}
}




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