
    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_5315cedefebd268a674b2d57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9d9868872eba06051102e9c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.869629;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_a939350a260dfc7feecdfd4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_67edb49fc8d8f887ead2bef0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a9751377382c420fc775379f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_f59d67809466de23a1f9bd6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-47.760000px;}
.v5{vertical-align:-45.660000px;}
.v2{vertical-align:-41.760000px;}
.v1{vertical-align:-7.800000px;}
.v7{vertical-align:-3.900000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.700000px;}
.v9{vertical-align:4.140000px;}
.v6{vertical-align:6.480000px;}
.ls16{letter-spacing:-0.466800px;}
.ls13{letter-spacing:-0.350400px;}
.ls18{letter-spacing:-0.306600px;}
.lsf{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.028080px;}
.ls8{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018720px;}
.ls7{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.112032px;}
.ls6{letter-spacing:0.112200px;}
.ls0{letter-spacing:0.178800px;}
.ls9{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.184800px;}
.ls3{letter-spacing:0.208080px;}
.ls17{letter-spacing:43.596000px;}
.ls12{letter-spacing:157.218720px;}
.ls10{letter-spacing:159.498720px;}
.lse{letter-spacing:421.158720px;}
.lsb{letter-spacing:424.054752px;}
.ls11{letter-spacing:489.558720px;}
.lsd{letter-spacing:787.758720px;}
.lsa{letter-spacing:804.378720px;}
.lsc{letter-spacing:1246.171920px;}
.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;}
}
.wsb{word-spacing:-40.072032px;}
.ws2{word-spacing:-40.032000px;}
.ws1e{word-spacing:-33.426720px;}
.ws14{word-spacing:-30.024000px;}
.wse{word-spacing:-26.773512px;}
.wsa{word-spacing:-26.661312px;}
.wsd{word-spacing:-26.640000px;}
.ws9{word-spacing:-26.621280px;}
.ws19{word-spacing:-23.418720px;}
.ws15{word-spacing:-19.038240px;}
.ws12{word-spacing:-17.573760px;}
.ws0{word-spacing:-3.330720px;}
.wsc{word-spacing:-0.095760px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.696000px;}
.ws5{word-spacing:0.720000px;}
.ws4{word-spacing:0.816000px;}
.wsf{word-spacing:1.087200px;}
.ws3{word-spacing:1.392000px;}
.ws7{word-spacing:1.464000px;}
.ws6{word-spacing:2.424000px;}
.ws1a{word-spacing:91.743120px;}
.ws16{word-spacing:108.381888px;}
.ws18{word-spacing:108.397440px;}
.ws10{word-spacing:272.819040px;}
.ws11{word-spacing:307.191600px;}
.ws13{word-spacing:342.351600px;}
.ws1b{word-spacing:459.416160px;}
.ws17{word-spacing:498.573120px;}
.ws1d{word-spacing:648.150720px;}
.ws1c{word-spacing:649.512480px;}
._8{margin-left:-15.984000px;}
._c{margin-left:-11.272800px;}
._9{margin-left:-8.360352px;}
._3{margin-left:-6.685920px;}
._4{margin-left:-5.369280px;}
._1{margin-left:-4.232448px;}
._7{margin-left:-2.924064px;}
._0{margin-left:-1.923840px;}
._2{width:1.512000px;}
._6{width:2.579760px;}
._d{width:4.360464px;}
._f{width:18.696000px;}
._5{width:31.778880px;}
._a{width:41.160000px;}
._e{width:411.800400px;}
._11{width:607.884720px;}
._b{width:906.963840px;}
._10{width:1494.377568px;}
.fc4{color:transparent;}
.fc3{color:rgb(192,80,77);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:59.760000px;}
.fsc{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs3{font-size:138.240000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs10{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:15.195000px;}
.y74{bottom:15.225000px;}
.y5c{bottom:15.270000px;}
.y4{bottom:32.256000px;}
.y7b{bottom:35.784000px;}
.y69{bottom:42.408000px;}
.y8b{bottom:44.250000px;}
.y6c{bottom:44.280000px;}
.y54{bottom:44.355000px;}
.y85{bottom:58.104000px;}
.y3{bottom:64.656000px;}
.y7a{bottom:66.384000px;}
.y84{bottom:79.704000px;}
.y55{bottom:79.845000px;}
.y68{bottom:82.044000px;}
.y3b{bottom:91.512000px;}
.y3d{bottom:91.800000px;}
.y6d{bottom:94.500000px;}
.y8c{bottom:96.330000px;}
.y3f{bottom:96.480000px;}
.y83{bottom:101.304000px;}
.y79{bottom:113.256000px;}
.y52{bottom:114.336000px;}
.y56{bottom:115.380000px;}
.y9{bottom:134.028000px;}
.y3a{bottom:134.712000px;}
.ya4{bottom:136.476000px;}
.y51{bottom:143.136000px;}
.y78{bottom:143.856000px;}
.y6e{bottom:144.720000px;}
.y8d{bottom:148.395000px;}
.y57{bottom:150.870000px;}
.yf{bottom:151.050000px;}
.y62{bottom:152.355000px;}
.y19{bottom:163.620000px;}
.ya3{bottom:172.470000px;}
.y50{bottom:173.880000px;}
.y8{bottom:177.270000px;}
.y21{bottom:179.280000px;}
.y96{bottom:186.090000px;}
.y58{bottom:186.375000px;}
.ye{bottom:194.250000px;}
.y6f{bottom:194.910000px;}
.y6b{bottom:195.660000px;}
.y8e{bottom:200.445000px;}
.y4f{bottom:202.680000px;}
.ya2{bottom:208.470000px;}
.y8a{bottom:213.480000px;}
.y53{bottom:218.700000px;}
.y59{bottom:221.910000px;}
.y20{bottom:222.480000px;}
.y18{bottom:224.850000px;}
.y45{bottom:224.925000px;}
.y4e{bottom:231.480000px;}
.y70{bottom:245.130000px;}
.y2f{bottom:249.195000px;}
.y5e{bottom:250.230000px;}
.y60{bottom:252.465000px;}
.y8f{bottom:252.510000px;}
.y44{bottom:253.725000px;}
.y7c{bottom:254.805000px;}
.y5a{bottom:257.400000px;}
.ya1{bottom:262.470000px;}
.y1f{bottom:265.710000px;}
.y17{bottom:268.050000px;}
.y5d{bottom:277.380000px;}
.y5f{bottom:278.100000px;}
.y43{bottom:282.525000px;}
.y67{bottom:282.630000px;}
.y6{bottom:284.580000px;}
.y89{bottom:284.910000px;}
.y2e{bottom:292.395000px;}
.y5b{bottom:292.890000px;}
.y65{bottom:294.810000px;}
.y71{bottom:295.350000px;}
.y66{bottom:295.890000px;}
.y82{bottom:296.610000px;}
.ya0{bottom:298.515000px;}
.y4d{bottom:299.550000px;}
.y90{bottom:304.590000px;}
.y1e{bottom:308.910000px;}
.y76{bottom:321.555000px;}
.y49{bottom:321.840000px;}
.y40{bottom:322.170000px;}
.y5{bottom:325.980000px;}
.y16{bottom:329.250000px;}
.y9f{bottom:334.515000px;}
.y2d{bottom:335.625000px;}
.y72{bottom:345.525000px;}
.y64{bottom:347.655000px;}
.y95{bottom:348.150000px;}
.y48{bottom:350.640000px;}
.y75{bottom:355.935000px;}
.y91{bottom:356.655000px;}
.y7d{bottom:359.385000px;}
.y42{bottom:361.005000px;}
.y4c{bottom:367.590000px;}
.y9e{bottom:370.515000px;}
.y15{bottom:372.495000px;}
.y94{bottom:375.300000px;}
.y47{bottom:379.440000px;}
.y1d{bottom:386.130000px;}
.y41{bottom:389.850000px;}
.y73{bottom:395.745000px;}
.y2c{bottom:396.825000px;}
.y28{bottom:403.230000px;}
.y46{bottom:408.240000px;}
.y92{bottom:408.705000px;}
.y6a{bottom:413.670000px;}
.y4b{bottom:414.750000px;}
.y9d{bottom:424.515000px;}
.y32{bottom:431.790000px;}
.ya5{bottom:434.010000px;}
.y3e{bottom:437.040000px;}
.y2b{bottom:440.025000px;}
.y27{bottom:446.430000px;}
.y4a{bottom:457.950000px;}
.y9c{bottom:460.545000px;}
.y1c{bottom:463.395000px;}
.y38{bottom:465.870000px;}
.y88{bottom:467.895000px;}
.y31{bottom:474.990000px;}
.y2{bottom:475.590000px;}
.y86{bottom:476.385000px;}
.y7e{bottom:484.845000px;}
.y14{bottom:491.325000px;}
.y37{bottom:494.670000px;}
.y26{bottom:507.675000px;}
.y87{bottom:510.405000px;}
.y9b{bottom:514.545000px;}
.y36{bottom:523.470000px;}
.y63{bottom:526.350000px;}
.y3c{bottom:531.000000px;}
.y1{bottom:533.235000px;}
.y13{bottom:534.525000px;}
.y7f{bottom:544.395000px;}
.y9a{bottom:550.545000px;}
.y25{bottom:550.875000px;}
.y35{bottom:552.270000px;}
.yb{bottom:556.950000px;}
.y30{bottom:558.720000px;}
.yd{bottom:565.455000px;}
.y34{bottom:594.000000px;}
.y24{bottom:594.075000px;}
.ya{bottom:600.150000px;}
.y2a{bottom:601.920000px;}
.y77{bottom:603.570000px;}
.y99{bottom:604.590000px;}
.yc{bottom:608.655000px;}
.y1b{bottom:610.410000px;}
.y12{bottom:618.915000px;}
.y80{bottom:619.590000px;}
.y33{bottom:622.800000px;}
.y61{bottom:634.350000px;}
.y98{bottom:640.590000px;}
.y29{bottom:645.120000px;}
.y81{bottom:651.390000px;}
.y1a{bottom:653.610000px;}
.y11{bottom:662.145000px;}
.y22{bottom:670.650000px;}
.y97{bottom:676.590000px;}
.y23{bottom:679.140000px;}
.y39{bottom:687.675000px;}
.y10{bottom:768.345000px;}
.y7{bottom:770.685000px;}
.h10{height:41.318438px;}
.h12{height:53.763750px;}
.h11{height:58.244062px;}
.he{height:69.762656px;}
.h3{height:74.671875px;}
.h1b{height:74.771438px;}
.h14{height:75.093750px;}
.h17{height:84.979688px;}
.h13{height:87.859687px;}
.h18{height:88.009875px;}
.h1c{height:92.719688px;}
.h19{height:94.339688px;}
.hd{height:96.508125px;}
.h9{height:99.874688px;}
.ha{height:100.024875px;}
.h8{height:104.906250px;}
.h16{height:112.640625px;}
.h15{height:112.790813px;}
.h5{height:125.406562px;}
.h1e{height:125.556750px;}
.h4{height:144.180000px;}
.h7{height:150.187500px;}
.h6{height:150.337688px;}
.h2{height:200.500313px;}
.h1{height:200.650500px;}
.hb{height:201.600000px;}
.h1f{height:225.281250px;}
.hf{height:313.920000px;}
.h1a{height:416.700000px;}
.h1d{height:429.660000px;}
.hc{height:604.800000px;}
.h0{height:810.000000px;}
.w4{width:151.380000px;}
.w5{width:204.120000px;}
.w6{width:221.220000px;}
.w3{width:239.760000px;}
.w7{width:492.660000px;}
.w2{width:493.200000px;}
.w8{width:516.420000px;}
.w9{width:620.820000px;}
.wa{width:751.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x62{left:9.795000px;}
.x27{left:10.830000px;}
.x18{left:13.320000px;}
.x2c{left:14.400000px;}
.x43{left:17.535000px;}
.x42{left:28.905000px;}
.x7{left:32.003984px;}
.x4f{left:40.499984px;}
.x3a{left:44.747984px;}
.x17{left:46.800000px;}
.x25{left:49.031984px;}
.x4b{left:52.883984px;}
.x39{left:55.259984px;}
.x1f{left:57.527984px;}
.xc{left:64.439984px;}
.x38{left:67.319984px;}
.x15{left:70.343984px;}
.x21{left:74.555984px;}
.x22{left:76.931984px;}
.x23{left:82.871984px;}
.x8{left:89.423984px;}
.x44{left:90.690000px;}
.x46{left:95.070000px;}
.x19{left:98.279984px;}
.x24{left:100.151984px;}
.x5a{left:101.447984px;}
.x50{left:102.527984px;}
.x1{left:108.539984px;}
.x63{left:120.705000px;}
.x11{left:126.647984px;}
.x52{left:129.165000px;}
.x12{left:139.787984px;}
.xf{left:146.807984px;}
.x16{left:148.499984px;}
.x9{left:159.479984px;}
.x61{left:165.780000px;}
.x4c{left:167.429984px;}
.x1a{left:172.259984px;}
.xd{left:184.289984px;}
.x57{left:188.999984px;}
.x26{left:199.800000px;}
.x4d{left:214.634984px;}
.x5c{left:219.134984px;}
.x3b{left:225.869984px;}
.x2{left:233.309984px;}
.x55{left:244.649984px;}
.x4a{left:252.254984px;}
.x60{left:260.489984px;}
.x51{left:290.849984px;}
.x49{left:295.709984px;}
.x54{left:312.734984px;}
.x58{left:316.364984px;}
.x56{left:339.509984px;}
.x5d{left:346.754984px;}
.x65{left:355.244984px;}
.xe{left:372.569984px;}
.x10{left:379.589984px;}
.x3e{left:397.769984px;}
.x45{left:400.245000px;}
.x3c{left:404.429984px;}
.x66{left:413.714984px;}
.x47{left:423.435000px;}
.x3{left:428.759984px;}
.x3d{left:433.229984px;}
.x2b{left:439.560000px;}
.x2a{left:459.179984px;}
.x28{left:464.939984px;}
.x29{left:470.699984px;}
.x2d{left:483.299984px;}
.x5{left:487.649984px;}
.x4{left:488.879984px;}
.x2f{left:490.139984px;}
.x6{left:493.049984px;}
.x2e{left:495.359984px;}
.x53{left:520.380000px;}
.x59{left:537.554984px;}
.x1c{left:540.000000px;}
.x5e{left:550.904984px;}
.x3f{left:552.749984px;}
.x41{left:556.920000px;}
.x40{left:567.329984px;}
.x13{left:568.409984px;}
.x14{left:573.269984px;}
.xa{left:580.244984px;}
.x20{left:584.924984px;}
.x30{left:590.940000px;}
.xb{left:593.249984px;}
.x1d{left:599.579984px;}
.x1b{left:601.739984px;}
.x32{left:619.229984px;}
.x33{left:637.949984px;}
.x64{left:641.370000px;}
.x31{left:659.369984px;}
.x4e{left:705.959984px;}
.x1e{left:720.719984px;}
.x5f{left:755.069984px;}
.x34{left:795.060000px;}
.x36{left:823.349984px;}
.x48{left:831.599984px;}
.x37{left:842.114984px;}
.x5b{left:848.624984px;}
.x35{left:891.434984px;}
@media print{
.v4{vertical-align:-42.453333pt;}
.v5{vertical-align:-40.586667pt;}
.v2{vertical-align:-37.120000pt;}
.v1{vertical-align:-6.933333pt;}
.v7{vertical-align:-3.466667pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.400000pt;}
.v9{vertical-align:3.680000pt;}
.v6{vertical-align:5.760000pt;}
.ls16{letter-spacing:-0.414933pt;}
.ls13{letter-spacing:-0.311467pt;}
.ls18{letter-spacing:-0.272533pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.024960pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016640pt;}
.ls7{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.099584pt;}
.ls6{letter-spacing:0.099733pt;}
.ls0{letter-spacing:0.158933pt;}
.ls9{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.164267pt;}
.ls3{letter-spacing:0.184960pt;}
.ls17{letter-spacing:38.752000pt;}
.ls12{letter-spacing:139.749973pt;}
.ls10{letter-spacing:141.776640pt;}
.lse{letter-spacing:374.363307pt;}
.lsb{letter-spacing:376.937557pt;}
.ls11{letter-spacing:435.163307pt;}
.lsd{letter-spacing:700.229973pt;}
.lsa{letter-spacing:715.003307pt;}
.lsc{letter-spacing:1107.708373pt;}
.wsb{word-spacing:-35.619584pt;}
.ws2{word-spacing:-35.584000pt;}
.ws1e{word-spacing:-29.712640pt;}
.ws14{word-spacing:-26.688000pt;}
.wse{word-spacing:-23.798677pt;}
.wsa{word-spacing:-23.698944pt;}
.wsd{word-spacing:-23.680000pt;}
.ws9{word-spacing:-23.663360pt;}
.ws19{word-spacing:-20.816640pt;}
.ws15{word-spacing:-16.922880pt;}
.ws12{word-spacing:-15.621120pt;}
.ws0{word-spacing:-2.960640pt;}
.wsc{word-spacing:-0.085120pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.618667pt;}
.ws5{word-spacing:0.640000pt;}
.ws4{word-spacing:0.725333pt;}
.wsf{word-spacing:0.966400pt;}
.ws3{word-spacing:1.237333pt;}
.ws7{word-spacing:1.301333pt;}
.ws6{word-spacing:2.154667pt;}
.ws1a{word-spacing:81.549440pt;}
.ws16{word-spacing:96.339456pt;}
.ws18{word-spacing:96.353280pt;}
.ws10{word-spacing:242.505813pt;}
.ws11{word-spacing:273.059200pt;}
.ws13{word-spacing:304.312533pt;}
.ws1b{word-spacing:408.369920pt;}
.ws17{word-spacing:443.176107pt;}
.ws1d{word-spacing:576.133973pt;}
.ws1c{word-spacing:577.344427pt;}
._8{margin-left:-14.208000pt;}
._c{margin-left:-10.020267pt;}
._9{margin-left:-7.431424pt;}
._3{margin-left:-5.943040pt;}
._4{margin-left:-4.772693pt;}
._1{margin-left:-3.762176pt;}
._7{margin-left:-2.599168pt;}
._0{margin-left:-1.710080pt;}
._2{width:1.344000pt;}
._6{width:2.293120pt;}
._d{width:3.875968pt;}
._f{width:16.618667pt;}
._5{width:28.247893pt;}
._a{width:36.586667pt;}
._e{width:366.044800pt;}
._11{width:540.341973pt;}
._b{width:806.190080pt;}
._10{width:1328.335616pt;}
.fs9{font-size:53.120000pt;}
.fsc{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs3{font-size:122.880000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs10{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:13.506667pt;}
.y74{bottom:13.533333pt;}
.y5c{bottom:13.573333pt;}
.y4{bottom:28.672000pt;}
.y7b{bottom:31.808000pt;}
.y69{bottom:37.696000pt;}
.y8b{bottom:39.333333pt;}
.y6c{bottom:39.360000pt;}
.y54{bottom:39.426667pt;}
.y85{bottom:51.648000pt;}
.y3{bottom:57.472000pt;}
.y7a{bottom:59.008000pt;}
.y84{bottom:70.848000pt;}
.y55{bottom:70.973333pt;}
.y68{bottom:72.928000pt;}
.y3b{bottom:81.344000pt;}
.y3d{bottom:81.600000pt;}
.y6d{bottom:84.000000pt;}
.y8c{bottom:85.626667pt;}
.y3f{bottom:85.760000pt;}
.y83{bottom:90.048000pt;}
.y79{bottom:100.672000pt;}
.y52{bottom:101.632000pt;}
.y56{bottom:102.560000pt;}
.y9{bottom:119.136000pt;}
.y3a{bottom:119.744000pt;}
.ya4{bottom:121.312000pt;}
.y51{bottom:127.232000pt;}
.y78{bottom:127.872000pt;}
.y6e{bottom:128.640000pt;}
.y8d{bottom:131.906667pt;}
.y57{bottom:134.106667pt;}
.yf{bottom:134.266667pt;}
.y62{bottom:135.426667pt;}
.y19{bottom:145.440000pt;}
.ya3{bottom:153.306667pt;}
.y50{bottom:154.560000pt;}
.y8{bottom:157.573333pt;}
.y21{bottom:159.360000pt;}
.y96{bottom:165.413333pt;}
.y58{bottom:165.666667pt;}
.ye{bottom:172.666667pt;}
.y6f{bottom:173.253333pt;}
.y6b{bottom:173.920000pt;}
.y8e{bottom:178.173333pt;}
.y4f{bottom:180.160000pt;}
.ya2{bottom:185.306667pt;}
.y8a{bottom:189.760000pt;}
.y53{bottom:194.400000pt;}
.y59{bottom:197.253333pt;}
.y20{bottom:197.760000pt;}
.y18{bottom:199.866667pt;}
.y45{bottom:199.933333pt;}
.y4e{bottom:205.760000pt;}
.y70{bottom:217.893333pt;}
.y2f{bottom:221.506667pt;}
.y5e{bottom:222.426667pt;}
.y60{bottom:224.413333pt;}
.y8f{bottom:224.453333pt;}
.y44{bottom:225.533333pt;}
.y7c{bottom:226.493333pt;}
.y5a{bottom:228.800000pt;}
.ya1{bottom:233.306667pt;}
.y1f{bottom:236.186667pt;}
.y17{bottom:238.266667pt;}
.y5d{bottom:246.560000pt;}
.y5f{bottom:247.200000pt;}
.y43{bottom:251.133333pt;}
.y67{bottom:251.226667pt;}
.y6{bottom:252.960000pt;}
.y89{bottom:253.253333pt;}
.y2e{bottom:259.906667pt;}
.y5b{bottom:260.346667pt;}
.y65{bottom:262.053333pt;}
.y71{bottom:262.533333pt;}
.y66{bottom:263.013333pt;}
.y82{bottom:263.653333pt;}
.ya0{bottom:265.346667pt;}
.y4d{bottom:266.266667pt;}
.y90{bottom:270.746667pt;}
.y1e{bottom:274.586667pt;}
.y76{bottom:285.826667pt;}
.y49{bottom:286.080000pt;}
.y40{bottom:286.373333pt;}
.y5{bottom:289.760000pt;}
.y16{bottom:292.666667pt;}
.y9f{bottom:297.346667pt;}
.y2d{bottom:298.333333pt;}
.y72{bottom:307.133333pt;}
.y64{bottom:309.026667pt;}
.y95{bottom:309.466667pt;}
.y48{bottom:311.680000pt;}
.y75{bottom:316.386667pt;}
.y91{bottom:317.026667pt;}
.y7d{bottom:319.453333pt;}
.y42{bottom:320.893333pt;}
.y4c{bottom:326.746667pt;}
.y9e{bottom:329.346667pt;}
.y15{bottom:331.106667pt;}
.y94{bottom:333.600000pt;}
.y47{bottom:337.280000pt;}
.y1d{bottom:343.226667pt;}
.y41{bottom:346.533333pt;}
.y73{bottom:351.773333pt;}
.y2c{bottom:352.733333pt;}
.y28{bottom:358.426667pt;}
.y46{bottom:362.880000pt;}
.y92{bottom:363.293333pt;}
.y6a{bottom:367.706667pt;}
.y4b{bottom:368.666667pt;}
.y9d{bottom:377.346667pt;}
.y32{bottom:383.813333pt;}
.ya5{bottom:385.786667pt;}
.y3e{bottom:388.480000pt;}
.y2b{bottom:391.133333pt;}
.y27{bottom:396.826667pt;}
.y4a{bottom:407.066667pt;}
.y9c{bottom:409.373333pt;}
.y1c{bottom:411.906667pt;}
.y38{bottom:414.106667pt;}
.y88{bottom:415.906667pt;}
.y31{bottom:422.213333pt;}
.y2{bottom:422.746667pt;}
.y86{bottom:423.453333pt;}
.y7e{bottom:430.973333pt;}
.y14{bottom:436.733333pt;}
.y37{bottom:439.706667pt;}
.y26{bottom:451.266667pt;}
.y87{bottom:453.693333pt;}
.y9b{bottom:457.373333pt;}
.y36{bottom:465.306667pt;}
.y63{bottom:467.866667pt;}
.y3c{bottom:472.000000pt;}
.y1{bottom:473.986667pt;}
.y13{bottom:475.133333pt;}
.y7f{bottom:483.906667pt;}
.y9a{bottom:489.373333pt;}
.y25{bottom:489.666667pt;}
.y35{bottom:490.906667pt;}
.yb{bottom:495.066667pt;}
.y30{bottom:496.640000pt;}
.yd{bottom:502.626667pt;}
.y34{bottom:528.000000pt;}
.y24{bottom:528.066667pt;}
.ya{bottom:533.466667pt;}
.y2a{bottom:535.040000pt;}
.y77{bottom:536.506667pt;}
.y99{bottom:537.413333pt;}
.yc{bottom:541.026667pt;}
.y1b{bottom:542.586667pt;}
.y12{bottom:550.146667pt;}
.y80{bottom:550.746667pt;}
.y33{bottom:553.600000pt;}
.y61{bottom:563.866667pt;}
.y98{bottom:569.413333pt;}
.y29{bottom:573.440000pt;}
.y81{bottom:579.013333pt;}
.y1a{bottom:580.986667pt;}
.y11{bottom:588.573333pt;}
.y22{bottom:596.133333pt;}
.y97{bottom:601.413333pt;}
.y23{bottom:603.680000pt;}
.y39{bottom:611.266667pt;}
.y10{bottom:682.973333pt;}
.y7{bottom:685.053333pt;}
.h10{height:36.727500pt;}
.h12{height:47.790000pt;}
.h11{height:51.772500pt;}
.he{height:62.011250pt;}
.h3{height:66.375000pt;}
.h1b{height:66.463500pt;}
.h14{height:66.750000pt;}
.h17{height:75.537500pt;}
.h13{height:78.097500pt;}
.h18{height:78.231000pt;}
.h1c{height:82.417500pt;}
.h19{height:83.857500pt;}
.hd{height:85.785000pt;}
.h9{height:88.777500pt;}
.ha{height:88.911000pt;}
.h8{height:93.250000pt;}
.h16{height:100.125000pt;}
.h15{height:100.258500pt;}
.h5{height:111.472500pt;}
.h1e{height:111.606000pt;}
.h4{height:128.160000pt;}
.h7{height:133.500000pt;}
.h6{height:133.633500pt;}
.h2{height:178.222500pt;}
.h1{height:178.356000pt;}
.hb{height:179.200000pt;}
.h1f{height:200.250000pt;}
.hf{height:279.040000pt;}
.h1a{height:370.400000pt;}
.h1d{height:381.920000pt;}
.hc{height:537.600000pt;}
.h0{height:720.000000pt;}
.w4{width:134.560000pt;}
.w5{width:181.440000pt;}
.w6{width:196.640000pt;}
.w3{width:213.120000pt;}
.w7{width:437.920000pt;}
.w2{width:438.400000pt;}
.w8{width:459.040000pt;}
.w9{width:551.840000pt;}
.wa{width:668.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x62{left:8.706667pt;}
.x27{left:9.626667pt;}
.x18{left:11.840000pt;}
.x2c{left:12.800000pt;}
.x43{left:15.586667pt;}
.x42{left:25.693333pt;}
.x7{left:28.447986pt;}
.x4f{left:35.999986pt;}
.x3a{left:39.775986pt;}
.x17{left:41.600000pt;}
.x25{left:43.583986pt;}
.x4b{left:47.007986pt;}
.x39{left:49.119986pt;}
.x1f{left:51.135986pt;}
.xc{left:57.279986pt;}
.x38{left:59.839986pt;}
.x15{left:62.527986pt;}
.x21{left:66.271986pt;}
.x22{left:68.383986pt;}
.x23{left:73.663986pt;}
.x8{left:79.487986pt;}
.x44{left:80.613333pt;}
.x46{left:84.506667pt;}
.x19{left:87.359986pt;}
.x24{left:89.023986pt;}
.x5a{left:90.175986pt;}
.x50{left:91.135986pt;}
.x1{left:96.479986pt;}
.x63{left:107.293333pt;}
.x11{left:112.575986pt;}
.x52{left:114.813333pt;}
.x12{left:124.255986pt;}
.xf{left:130.495986pt;}
.x16{left:131.999986pt;}
.x9{left:141.759986pt;}
.x61{left:147.360000pt;}
.x4c{left:148.826652pt;}
.x1a{left:153.119986pt;}
.xd{left:163.813319pt;}
.x57{left:167.999986pt;}
.x26{left:177.600000pt;}
.x4d{left:190.786652pt;}
.x5c{left:194.786652pt;}
.x3b{left:200.773319pt;}
.x2{left:207.386652pt;}
.x55{left:217.466652pt;}
.x4a{left:224.226652pt;}
.x60{left:231.546652pt;}
.x51{left:258.533319pt;}
.x49{left:262.853319pt;}
.x54{left:277.986652pt;}
.x58{left:281.213319pt;}
.x56{left:301.786652pt;}
.x5d{left:308.226652pt;}
.x65{left:315.773319pt;}
.xe{left:331.173319pt;}
.x10{left:337.413319pt;}
.x3e{left:353.573319pt;}
.x45{left:355.773333pt;}
.x3c{left:359.493319pt;}
.x66{left:367.746652pt;}
.x47{left:376.386667pt;}
.x3{left:381.119986pt;}
.x3d{left:385.093319pt;}
.x2b{left:390.720000pt;}
.x2a{left:408.159986pt;}
.x28{left:413.279986pt;}
.x29{left:418.399986pt;}
.x2d{left:429.599986pt;}
.x5{left:433.466652pt;}
.x4{left:434.559986pt;}
.x2f{left:435.679986pt;}
.x6{left:438.266652pt;}
.x2e{left:440.319986pt;}
.x53{left:462.560000pt;}
.x59{left:477.826652pt;}
.x1c{left:480.000000pt;}
.x5e{left:489.693319pt;}
.x3f{left:491.333319pt;}
.x41{left:495.040000pt;}
.x40{left:504.293319pt;}
.x13{left:505.253319pt;}
.x14{left:509.573319pt;}
.xa{left:515.773319pt;}
.x20{left:519.933319pt;}
.x30{left:525.280000pt;}
.xb{left:527.333319pt;}
.x1d{left:532.959986pt;}
.x1b{left:534.879986pt;}
.x32{left:550.426652pt;}
.x33{left:567.066652pt;}
.x64{left:570.106667pt;}
.x31{left:586.106652pt;}
.x4e{left:627.519986pt;}
.x1e{left:640.639986pt;}
.x5f{left:671.173319pt;}
.x34{left:706.720000pt;}
.x36{left:731.866652pt;}
.x48{left:739.199986pt;}
.x37{left:748.546652pt;}
.x5b{left:754.333319pt;}
.x35{left:792.386652pt;}
}




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