
    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_8b6dc4fce03087795352e980.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_de0750b74f0e19c512b305b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_603d4be5022f54d3c584fb54.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_cc2e4d3aa674672894878f02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_8ae9931061e898639cdc9413.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5daf68f72911e8a58902478b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_ae66bf28aa1d7ceca15d7e25.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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:ffa;src:url('chunks/assets/font_aad9e96ecd1a8907effd2f25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_ae66bf28aa1d7ceca15d7e25.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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:ffc;src:url('chunks/assets/font_aad9e96ecd1a8907effd2f25.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:64.026720px;}
.ls0{letter-spacing:199.506720px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.ws8{word-spacing:-20.433000px;}
.ws7{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws0{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.872000px;}
.ws2{word-spacing:0.000000px;}
._2a{margin-left:-8.974800px;}
._8{margin-left:-4.896000px;}
._7{margin-left:-3.888000px;}
._14{margin-left:-2.376000px;}
._1{margin-left:-1.080000px;}
._2{width:1.128000px;}
._9{width:2.376000px;}
._a{width:3.456000px;}
._5{width:4.896000px;}
._4{width:6.264000px;}
._c{width:7.488000px;}
._d{width:9.144000px;}
._11{width:10.512000px;}
._1d{width:11.544000px;}
._17{width:12.600000px;}
._13{width:13.752000px;}
._12{width:14.976000px;}
._16{width:16.128000px;}
._6{width:17.784000px;}
._b{width:18.864000px;}
._1a{width:21.048000px;}
._19{width:22.104000px;}
._15{width:23.688000px;}
._24{width:25.056000px;}
._22{width:26.136000px;}
._10{width:27.432000px;}
._f{width:29.160000px;}
._e{width:30.744000px;}
._1c{width:31.752000px;}
._1b{width:35.568000px;}
._26{width:37.440000px;}
._25{width:38.448000px;}
._2b{width:46.324800px;}
._2c{width:47.432400px;}
._23{width:48.456000px;}
._20{width:49.464000px;}
._28{width:50.544000px;}
._29{width:52.344000px;}
._1f{width:54.864000px;}
._21{width:107.904000px;}
._1e{width:115.320000px;}
._27{width:127.488000px;}
._18{width:135.480000px;}
._3{width:155.640000px;}
._0{width:1307.261280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:18.000000px;}
.fs1{font-size:30.240000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:59.760000px;}
.fs9{font-size:63.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:73.500000px;}
.fs7{font-size:75.600000px;}
.fs6{font-size:84.240000px;}
.fsa{font-size:85.800000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.800000px;}
.y3{bottom:11.339850px;}
.yb2{bottom:16.200000px;}
.yb1{bottom:16.875000px;}
.y2{bottom:17.280000px;}
.yb0{bottom:42.750000px;}
.yaf{bottom:68.625000px;}
.yae{bottom:94.500000px;}
.y7c{bottom:121.356000px;}
.y9a{bottom:126.576000px;}
.y7b{bottom:142.056000px;}
.y99{bottom:147.276000px;}
.y55{bottom:153.210000px;}
.y2e{bottom:159.870000px;}
.y98{bottom:167.970000px;}
.y54{bottom:173.910000px;}
.y2d{bottom:180.570000px;}
.y7a{bottom:183.810000px;}
.y97{bottom:188.670000px;}
.y53{bottom:194.610000px;}
.y2c{bottom:201.270000px;}
.y52{bottom:216.570000px;}
.y2b{bottom:221.970000px;}
.y79{bottom:225.570000px;}
.y96{bottom:230.250000px;}
.y51{bottom:237.270000px;}
.y2a{bottom:242.670000px;}
.y78{bottom:246.270000px;}
.yb3{bottom:252.375000px;}
.y95{bottom:254.010000px;}
.y50{bottom:262.110000px;}
.y29{bottom:263.370000px;}
.y77{bottom:266.970000px;}
.y28{bottom:284.070000px;}
.y4f{bottom:285.870000px;}
.y76{bottom:290.550000px;}
.y94{bottom:295.770000px;}
.y27{bottom:304.770000px;}
.y4e{bottom:309.450000px;}
.y75{bottom:314.310000px;}
.y93{bottom:316.470000px;}
.y26{bottom:325.515000px;}
.y4d{bottom:330.195000px;}
.y92{bottom:337.215000px;}
.y74{bottom:338.115000px;}
.y25{bottom:346.215000px;}
.y4c{bottom:350.895000px;}
.y91{bottom:357.915000px;}
.y73{bottom:358.815000px;}
.yad{bottom:366.300000px;}
.y24{bottom:366.915000px;}
.y4b{bottom:374.655000px;}
.y72{bottom:379.515000px;}
.y23{bottom:387.615000px;}
.y4a{bottom:398.415000px;}
.y90{bottom:399.495000px;}
.y71{bottom:403.095000px;}
.y22{bottom:408.315000px;}
.y8f{bottom:420.195000px;}
.y70{bottom:426.855000px;}
.y21{bottom:429.015000px;}
.y49{bottom:439.995000px;}
.y8e{bottom:440.895000px;}
.y20{bottom:449.715000px;}
.y6f{bottom:450.615000px;}
.y48{bottom:460.695000px;}
.y8d{bottom:461.595000px;}
.y1f{bottom:470.415000px;}
.y6e{bottom:471.315000px;}
.y47{bottom:481.395000px;}
.y1e{bottom:491.115000px;}
.y6d{bottom:492.015000px;}
.y46{bottom:502.095000px;}
.y8c{bottom:503.355000px;}
.y1d{bottom:511.815000px;}
.y6c{bottom:515.595000px;}
.y45{bottom:522.795000px;}
.y8b{bottom:524.055000px;}
.y1c{bottom:532.515000px;}
.y6b{bottom:539.355000px;}
.y44{bottom:543.495000px;}
.yb4{bottom:545.850000px;}
.y1b{bottom:553.215000px;}
.y6a{bottom:563.115000px;}
.y43{bottom:564.195000px;}
.y8a{bottom:565.815000px;}
.y1a{bottom:573.945000px;}
.y42{bottom:584.925000px;}
.y69{bottom:586.725000px;}
.y19{bottom:594.645000px;}
.y41{bottom:605.625000px;}
.y89{bottom:607.425000px;}
.yac{bottom:609.225000px;}
.y68{bottom:610.485000px;}
.y18{bottom:615.345000px;}
.y40{bottom:626.325000px;}
.y88{bottom:628.125000px;}
.yab{bottom:629.925000px;}
.y67{bottom:634.245000px;}
.y17{bottom:636.045000px;}
.y3f{bottom:647.025000px;}
.y87{bottom:648.825000px;}
.yaa{bottom:650.625000px;}
.y16{bottom:656.745000px;}
.y66{bottom:657.825000px;}
.y3e{bottom:667.725000px;}
.ya9{bottom:671.325000px;}
.y15{bottom:677.445000px;}
.y65{bottom:678.525000px;}
.y3d{bottom:688.425000px;}
.y86{bottom:690.585000px;}
.ya8{bottom:692.025000px;}
.y14{bottom:698.145000px;}
.y64{bottom:699.225000px;}
.y3c{bottom:709.125000px;}
.ya7{bottom:712.725000px;}
.y13{bottom:718.845000px;}
.y63{bottom:722.985000px;}
.y3b{bottom:729.825000px;}
.y85{bottom:732.345000px;}
.ya6{bottom:733.425000px;}
.y12{bottom:739.545000px;}
.y62{bottom:746.745000px;}
.y3a{bottom:750.525000px;}
.y84{bottom:753.045000px;}
.ya5{bottom:754.125000px;}
.y11{bottom:760.245000px;}
.y61{bottom:770.325000px;}
.y39{bottom:771.225000px;}
.y83{bottom:773.745000px;}
.ya4{bottom:774.825000px;}
.y38{bottom:791.925000px;}
.y60{bottom:794.085000px;}
.ya3{bottom:795.525000px;}
.y10{bottom:801.825000px;}
.y37{bottom:812.625000px;}
.y82{bottom:815.325000px;}
.ya2{bottom:816.225000px;}
.y5f{bottom:817.845000px;}
.yf{bottom:825.630000px;}
.y36{bottom:833.370000px;}
.ya1{bottom:836.970000px;}
.y5e{bottom:838.590000px;}
.ye{bottom:845.790000px;}
.y35{bottom:854.070000px;}
.y81{bottom:857.130000px;}
.ya0{bottom:857.670000px;}
.y5d{bottom:862.170000px;}
.yd{bottom:863.070000px;}
.y34{bottom:874.770000px;}
.y80{bottom:877.830000px;}
.y9f{bottom:878.370000px;}
.yc{bottom:880.350000px;}
.y5c{bottom:885.930000px;}
.y33{bottom:895.470000px;}
.yb{bottom:897.630000px;}
.y7f{bottom:898.530000px;}
.y9e{bottom:899.070000px;}
.y5b{bottom:909.510000px;}
.ya{bottom:914.730000px;}
.y9d{bottom:919.770000px;}
.y5a{bottom:930.210000px;}
.y9{bottom:933.270000px;}
.y32{bottom:937.230000px;}
.y7e{bottom:940.290000px;}
.y9c{bottom:940.470000px;}
.y59{bottom:953.970000px;}
.y8{bottom:957.390000px;}
.y31{bottom:960.990000px;}
.y9b{bottom:961.170000px;}
.y58{bottom:977.730000px;}
.y7{bottom:981.690000px;}
.y7d{bottom:981.870000px;}
.y57{bottom:1001.310000px;}
.y30{bottom:1002.570000px;}
.y6{bottom:1004.550000px;}
.y56{bottom:1022.010000px;}
.y5{bottom:1022.190000px;}
.y2f{bottom:1023.270000px;}
.y1{bottom:1119.420000px;}
.h3{height:15.169922px;}
.h2{height:20.996719px;}
.h4{height:30.339844px;}
.h8{height:40.472227px;}
.hf{height:45.865723px;}
.h6{height:54.069961px;}
.hd{height:55.038867px;}
.h5{height:58.921875px;}
.h1{height:59.932969px;}
.h10{height:62.464746px;}
.ha{height:64.546875px;}
.h9{height:65.144531px;}
.h7{height:76.219102px;}
.hc{height:114.750000px;}
.he{height:885.600000px;}
.hb{height:918.000000px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w3{width:1112.625000px;}
.w4{width:1177.200000px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.xd{left:42.300000px;}
.x1{left:127.655986px;}
.xc{left:154.649986px;}
.x4{left:161.129986px;}
.xa{left:181.649986px;}
.x5{left:197.129986px;}
.x6{left:206.309986px;}
.xb{left:208.649986px;}
.x7{left:317.234986px;}
.x9{left:435.494986px;}
.x10{left:450.900000px;}
.x3{left:459.074986px;}
.x8{left:487.904986px;}
.x2{left:790.529986px;}
.xf{left:862.575000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:56.912640pt;}
.ls0{letter-spacing:177.339307pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws8{word-spacing:-18.162667pt;}
.ws7{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws0{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws2{word-spacing:0.000000pt;}
._2a{margin-left:-7.977600pt;}
._8{margin-left:-4.352000pt;}
._7{margin-left:-3.456000pt;}
._14{margin-left:-2.112000pt;}
._1{margin-left:-0.960000pt;}
._2{width:1.002667pt;}
._9{width:2.112000pt;}
._a{width:3.072000pt;}
._5{width:4.352000pt;}
._4{width:5.568000pt;}
._c{width:6.656000pt;}
._d{width:8.128000pt;}
._11{width:9.344000pt;}
._1d{width:10.261333pt;}
._17{width:11.200000pt;}
._13{width:12.224000pt;}
._12{width:13.312000pt;}
._16{width:14.336000pt;}
._6{width:15.808000pt;}
._b{width:16.768000pt;}
._1a{width:18.709333pt;}
._19{width:19.648000pt;}
._15{width:21.056000pt;}
._24{width:22.272000pt;}
._22{width:23.232000pt;}
._10{width:24.384000pt;}
._f{width:25.920000pt;}
._e{width:27.328000pt;}
._1c{width:28.224000pt;}
._1b{width:31.616000pt;}
._26{width:33.280000pt;}
._25{width:34.176000pt;}
._2b{width:41.177600pt;}
._2c{width:42.162133pt;}
._23{width:43.072000pt;}
._20{width:43.968000pt;}
._28{width:44.928000pt;}
._29{width:46.528000pt;}
._1f{width:48.768000pt;}
._21{width:95.914667pt;}
._1e{width:102.506667pt;}
._27{width:113.322667pt;}
._18{width:120.426667pt;}
._3{width:138.346667pt;}
._0{width:1162.010027pt;}
.fs2{font-size:16.000000pt;}
.fs1{font-size:26.880000pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:53.120000pt;}
.fs9{font-size:56.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:65.333333pt;}
.fs7{font-size:67.200000pt;}
.fs6{font-size:74.880000pt;}
.fsa{font-size:76.266667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.600000pt;}
.y3{bottom:10.079867pt;}
.yb2{bottom:14.400000pt;}
.yb1{bottom:15.000000pt;}
.y2{bottom:15.360000pt;}
.yb0{bottom:38.000000pt;}
.yaf{bottom:61.000000pt;}
.yae{bottom:84.000000pt;}
.y7c{bottom:107.872000pt;}
.y9a{bottom:112.512000pt;}
.y7b{bottom:126.272000pt;}
.y99{bottom:130.912000pt;}
.y55{bottom:136.186667pt;}
.y2e{bottom:142.106667pt;}
.y98{bottom:149.306667pt;}
.y54{bottom:154.586667pt;}
.y2d{bottom:160.506667pt;}
.y7a{bottom:163.386667pt;}
.y97{bottom:167.706667pt;}
.y53{bottom:172.986667pt;}
.y2c{bottom:178.906667pt;}
.y52{bottom:192.506667pt;}
.y2b{bottom:197.306667pt;}
.y79{bottom:200.506667pt;}
.y96{bottom:204.666667pt;}
.y51{bottom:210.906667pt;}
.y2a{bottom:215.706667pt;}
.y78{bottom:218.906667pt;}
.yb3{bottom:224.333333pt;}
.y95{bottom:225.786667pt;}
.y50{bottom:232.986667pt;}
.y29{bottom:234.106667pt;}
.y77{bottom:237.306667pt;}
.y28{bottom:252.506667pt;}
.y4f{bottom:254.106667pt;}
.y76{bottom:258.266667pt;}
.y94{bottom:262.906667pt;}
.y27{bottom:270.906667pt;}
.y4e{bottom:275.066667pt;}
.y75{bottom:279.386667pt;}
.y93{bottom:281.306667pt;}
.y26{bottom:289.346667pt;}
.y4d{bottom:293.506667pt;}
.y92{bottom:299.746667pt;}
.y74{bottom:300.546667pt;}
.y25{bottom:307.746667pt;}
.y4c{bottom:311.906667pt;}
.y91{bottom:318.146667pt;}
.y73{bottom:318.946667pt;}
.yad{bottom:325.600000pt;}
.y24{bottom:326.146667pt;}
.y4b{bottom:333.026667pt;}
.y72{bottom:337.346667pt;}
.y23{bottom:344.546667pt;}
.y4a{bottom:354.146667pt;}
.y90{bottom:355.106667pt;}
.y71{bottom:358.306667pt;}
.y22{bottom:362.946667pt;}
.y8f{bottom:373.506667pt;}
.y70{bottom:379.426667pt;}
.y21{bottom:381.346667pt;}
.y49{bottom:391.106667pt;}
.y8e{bottom:391.906667pt;}
.y20{bottom:399.746667pt;}
.y6f{bottom:400.546667pt;}
.y48{bottom:409.506667pt;}
.y8d{bottom:410.306667pt;}
.y1f{bottom:418.146667pt;}
.y6e{bottom:418.946667pt;}
.y47{bottom:427.906667pt;}
.y1e{bottom:436.546667pt;}
.y6d{bottom:437.346667pt;}
.y46{bottom:446.306667pt;}
.y8c{bottom:447.426667pt;}
.y1d{bottom:454.946667pt;}
.y6c{bottom:458.306667pt;}
.y45{bottom:464.706667pt;}
.y8b{bottom:465.826667pt;}
.y1c{bottom:473.346667pt;}
.y6b{bottom:479.426667pt;}
.y44{bottom:483.106667pt;}
.yb4{bottom:485.200000pt;}
.y1b{bottom:491.746667pt;}
.y6a{bottom:500.546667pt;}
.y43{bottom:501.506667pt;}
.y8a{bottom:502.946667pt;}
.y1a{bottom:510.173333pt;}
.y42{bottom:519.933333pt;}
.y69{bottom:521.533333pt;}
.y19{bottom:528.573333pt;}
.y41{bottom:538.333333pt;}
.y89{bottom:539.933333pt;}
.yac{bottom:541.533333pt;}
.y68{bottom:542.653333pt;}
.y18{bottom:546.973333pt;}
.y40{bottom:556.733333pt;}
.y88{bottom:558.333333pt;}
.yab{bottom:559.933333pt;}
.y67{bottom:563.773333pt;}
.y17{bottom:565.373333pt;}
.y3f{bottom:575.133333pt;}
.y87{bottom:576.733333pt;}
.yaa{bottom:578.333333pt;}
.y16{bottom:583.773333pt;}
.y66{bottom:584.733333pt;}
.y3e{bottom:593.533333pt;}
.ya9{bottom:596.733333pt;}
.y15{bottom:602.173333pt;}
.y65{bottom:603.133333pt;}
.y3d{bottom:611.933333pt;}
.y86{bottom:613.853333pt;}
.ya8{bottom:615.133333pt;}
.y14{bottom:620.573333pt;}
.y64{bottom:621.533333pt;}
.y3c{bottom:630.333333pt;}
.ya7{bottom:633.533333pt;}
.y13{bottom:638.973333pt;}
.y63{bottom:642.653333pt;}
.y3b{bottom:648.733333pt;}
.y85{bottom:650.973333pt;}
.ya6{bottom:651.933333pt;}
.y12{bottom:657.373333pt;}
.y62{bottom:663.773333pt;}
.y3a{bottom:667.133333pt;}
.y84{bottom:669.373333pt;}
.ya5{bottom:670.333333pt;}
.y11{bottom:675.773333pt;}
.y61{bottom:684.733333pt;}
.y39{bottom:685.533333pt;}
.y83{bottom:687.773333pt;}
.ya4{bottom:688.733333pt;}
.y38{bottom:703.933333pt;}
.y60{bottom:705.853333pt;}
.ya3{bottom:707.133333pt;}
.y10{bottom:712.733333pt;}
.y37{bottom:722.333333pt;}
.y82{bottom:724.733333pt;}
.ya2{bottom:725.533333pt;}
.y5f{bottom:726.973333pt;}
.yf{bottom:733.893333pt;}
.y36{bottom:740.773333pt;}
.ya1{bottom:743.973333pt;}
.y5e{bottom:745.413333pt;}
.ye{bottom:751.813333pt;}
.y35{bottom:759.173333pt;}
.y81{bottom:761.893333pt;}
.ya0{bottom:762.373333pt;}
.y5d{bottom:766.373333pt;}
.yd{bottom:767.173333pt;}
.y34{bottom:777.573333pt;}
.y80{bottom:780.293333pt;}
.y9f{bottom:780.773333pt;}
.yc{bottom:782.533333pt;}
.y5c{bottom:787.493333pt;}
.y33{bottom:795.973333pt;}
.yb{bottom:797.893333pt;}
.y7f{bottom:798.693333pt;}
.y9e{bottom:799.173333pt;}
.y5b{bottom:808.453333pt;}
.ya{bottom:813.093333pt;}
.y9d{bottom:817.573333pt;}
.y5a{bottom:826.853333pt;}
.y9{bottom:829.573333pt;}
.y32{bottom:833.093333pt;}
.y7e{bottom:835.813333pt;}
.y9c{bottom:835.973333pt;}
.y59{bottom:847.973333pt;}
.y8{bottom:851.013333pt;}
.y31{bottom:854.213333pt;}
.y9b{bottom:854.373333pt;}
.y58{bottom:869.093333pt;}
.y7{bottom:872.613333pt;}
.y7d{bottom:872.773333pt;}
.y57{bottom:890.053333pt;}
.y30{bottom:891.173333pt;}
.y6{bottom:892.933333pt;}
.y56{bottom:908.453333pt;}
.y5{bottom:908.613333pt;}
.y2f{bottom:909.573333pt;}
.y1{bottom:995.040000pt;}
.h3{height:13.484375pt;}
.h2{height:18.663750pt;}
.h4{height:26.968750pt;}
.h8{height:35.975313pt;}
.hf{height:40.769531pt;}
.h6{height:48.062188pt;}
.hd{height:48.923437pt;}
.h5{height:52.375000pt;}
.h1{height:53.273750pt;}
.h10{height:55.524219pt;}
.ha{height:57.375000pt;}
.h9{height:57.906250pt;}
.h7{height:67.750312pt;}
.hc{height:102.000000pt;}
.he{height:787.200000pt;}
.hb{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w3{width:989.000000pt;}
.w4{width:1046.400000pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.xd{left:37.600000pt;}
.x1{left:113.471988pt;}
.xc{left:137.466655pt;}
.x4{left:143.226655pt;}
.xa{left:161.466655pt;}
.x5{left:175.226655pt;}
.x6{left:183.386655pt;}
.xb{left:185.466655pt;}
.x7{left:281.986655pt;}
.x9{left:387.106655pt;}
.x10{left:400.800000pt;}
.x3{left:408.066655pt;}
.x8{left:433.693321pt;}
.x2{left:702.693321pt;}
.xf{left:766.733333pt;}
}




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