
    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_b6ff3566b7bf861cbdd46b86.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_d43b569c660840f042bece61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_414958a6c63309bd2e012690.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.015625;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_3db52224a091e5870eeb7960.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_32b36ff705096fbeb2aa0e2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_8f576663b9ab2ae533d1995a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967773;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_a1532210f72911e6e546c295.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969727;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);}
.v1{vertical-align:-207.600000px;}
.v2{vertical-align:-6.600000px;}
.v3{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.600000px;}
.v7{vertical-align:15.600000px;}
.v5{vertical-align:16.800000px;}
.v6{vertical-align:36.600000px;}
.v8{vertical-align:52.800000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:51.600000px;}
.ls4{letter-spacing:59.400000px;}
.ls5{letter-spacing:67.200000px;}
.ls6{letter-spacing:73.800000px;}
.ls2{letter-spacing:81.600000px;}
.ls3{letter-spacing:111.600000px;}
.ls0{letter-spacing:377.496000px;}
.ls1{letter-spacing:1031.208000px;}
.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;}
}
.ws2{word-spacing:-90.024000px;}
.ws0{word-spacing:-57.792000px;}
.ws3{word-spacing:-36.120000px;}
.ws6{word-spacing:-18.792000px;}
.ws4{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.054000px;}
.ws29{word-spacing:0.000000px;}
.ws22{word-spacing:55.722000px;}
.wsa{word-spacing:56.388000px;}
.ws16{word-spacing:59.346000px;}
.ws1c{word-spacing:59.368800px;}
.ws1a{word-spacing:61.168800px;}
.ws27{word-spacing:64.768800px;}
.ws19{word-spacing:65.968800px;}
.wsc{word-spacing:66.600000px;}
.ws21{word-spacing:68.968800px;}
.ws1d{word-spacing:71.886000px;}
.ws9{word-spacing:75.324000px;}
.ws23{word-spacing:75.607200px;}
.wsd{word-spacing:76.056000px;}
.wsb{word-spacing:80.340000px;}
.ws12{word-spacing:81.568800px;}
.ws20{word-spacing:82.086000px;}
.ws17{word-spacing:85.168800px;}
.ws26{word-spacing:93.568800px;}
.ws14{word-spacing:93.607200px;}
.ws28{word-spacing:104.407200px;}
.wse{word-spacing:105.078000px;}
.ws11{word-spacing:107.368800px;}
.ws24{word-spacing:107.968800px;}
.ws13{word-spacing:110.946000px;}
.ws1b{word-spacing:113.886000px;}
.ws1e{word-spacing:117.607200px;}
.ws7{word-spacing:127.782000px;}
.ws15{word-spacing:135.402000px;}
.wsf{word-spacing:143.628000px;}
.ws8{word-spacing:144.564000px;}
.ws18{word-spacing:148.002000px;}
.ws25{word-spacing:154.602000px;}
.ws1f{word-spacing:157.602000px;}
.ws5{word-spacing:178.278000px;}
.ws1{word-spacing:993.798000px;}
._d{margin-left:-16.368000px;}
._e{margin-left:-9.408000px;}
._b{margin-left:-7.884000px;}
._c{margin-left:-6.480000px;}
._8{margin-left:-5.076000px;}
._9{margin-left:-3.888000px;}
._1{margin-left:-2.880000px;}
._a{margin-left:-1.620000px;}
._0{width:1.152000px;}
._4{width:2.400000px;}
._7{width:3.408000px;}
._10{width:5.280000px;}
._6{width:7.608000px;}
._5{width:9.120000px;}
._f{width:11.088000px;}
._2{width:12.360000px;}
._21{width:13.728000px;}
._20{width:15.288000px;}
._3{width:16.800000px;}
._15{width:19.848000px;}
._14{width:21.048000px;}
._12{width:22.344000px;}
._11{width:23.880000px;}
._1b{width:25.824000px;}
._1d{width:27.408000px;}
._1c{width:29.160000px;}
._18{width:30.960000px;}
._13{width:34.920000px;}
._19{width:49.320000px;}
._1a{width:51.096000px;}
._1e{width:52.200000px;}
._1f{width:53.400000px;}
._4f{width:62.532000px;}
._4e{width:65.364000px;}
._17{width:83.688000px;}
._16{width:85.008000px;}
._4a{width:97.794000px;}
._2f{width:113.328000px;}
._35{width:114.354000px;}
._3e{width:133.470000px;}
._3f{width:136.470000px;}
._41{width:143.070000px;}
._3d{width:146.070000px;}
._2a{width:154.416000px;}
._40{width:155.670000px;}
._44{width:156.948000px;}
._43{width:158.256000px;}
._23{width:160.236000px;}
._46{width:163.482000px;}
._45{width:165.528000px;}
._4c{width:167.982000px;}
._26{width:177.636000px;}
._30{width:178.998000px;}
._2b{width:185.070000px;}
._32{width:189.564000px;}
._24{width:192.108000px;}
._36{width:199.128000px;}
._25{width:204.300000px;}
._27{width:209.508000px;}
._28{width:221.700000px;}
._2e{width:236.850000px;}
._22{width:243.780000px;}
._42{width:245.628000px;}
._33{width:247.494000px;}
._4d{width:260.070000px;}
._3a{width:286.848000px;}
._47{width:292.644000px;}
._2d{width:298.824000px;}
._34{width:322.344000px;}
._2c{width:342.972000px;}
._4b{width:462.276000px;}
._39{width:474.330000px;}
._3b{width:478.218000px;}
._3c{width:525.060000px;}
._31{width:542.532000px;}
._37{width:606.378000px;}
._50{width:608.574000px;}
._38{width:628.716000px;}
._48{width:632.616000px;}
._49{width:661.332000px;}
._29{width:884.946000px;}
.fc2{color:rgb(47,85,151);}
.fc1{color:rgb(68,114,196);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.200000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:192.000000px;}
.fs4{font-size:264.000000px;}
.fs3{font-size:306.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:62.100000px;}
.y14{bottom:94.500000px;}
.y13{bottom:126.900000px;}
.y12{bottom:159.300000px;}
.y11{bottom:191.700000px;}
.y10{bottom:224.100000px;}
.yf{bottom:256.500000px;}
.ye{bottom:288.900000px;}
.yd{bottom:321.300000px;}
.yc{bottom:357.900000px;}
.yb{bottom:437.850000px;}
.ya{bottom:473.850000px;}
.y9{bottom:509.850000px;}
.y8{bottom:546.000000px;}
.y7{bottom:582.000000px;}
.y6{bottom:618.000000px;}
.y5{bottom:654.000000px;}
.y4{bottom:690.000000px;}
.y3{bottom:726.000000px;}
.y2{bottom:762.000000px;}
.y1{bottom:837.600000px;}
.y72{bottom:970.500000px;}
.y70{bottom:999.750000px;}
.y71{bottom:1029.000000px;}
.y3c{bottom:1053.750000px;}
.y6f{bottom:1058.100000px;}
.y6d{bottom:1087.350000px;}
.y3b{bottom:1089.750000px;}
.y6e{bottom:1116.600000px;}
.y3a{bottom:1125.750000px;}
.y8e{bottom:1143.900000px;}
.y6c{bottom:1145.850000px;}
.y39{bottom:1161.750000px;}
.y69{bottom:1165.950000px;}
.y8c{bottom:1167.750000px;}
.y6b{bottom:1175.100000px;}
.y8b{bottom:1176.900000px;}
.y68{bottom:1184.100000px;}
.y38{bottom:1197.750000px;}
.y8a{bottom:1203.600000px;}
.y6a{bottom:1204.350000px;}
.y89{bottom:1222.200000px;}
.y67{bottom:1233.450000px;}
.y37{bottom:1233.750000px;}
.y88{bottom:1240.650000px;}
.y87{bottom:1259.100000px;}
.y65{bottom:1262.700000px;}
.y36{bottom:1269.900000px;}
.y86{bottom:1276.650000px;}
.y85{bottom:1285.800000px;}
.y66{bottom:1291.950000px;}
.y35{bottom:1305.900000px;}
.y84{bottom:1312.500000px;}
.y64{bottom:1321.200000px;}
.y83{bottom:1330.950000px;}
.y34{bottom:1341.900000px;}
.y82{bottom:1349.550000px;}
.y63{bottom:1350.300000px;}
.y61{bottom:1350.450000px;}
.y81{bottom:1366.800000px;}
.y33{bottom:1377.900000px;}
.y62{bottom:1379.550000px;}
.y8d{bottom:1391.550000px;}
.y60{bottom:1408.800000px;}
.y32{bottom:1413.900000px;}
.y5f{bottom:1437.900000px;}
.y5d{bottom:1438.050000px;}
.y31{bottom:1449.900000px;}
.y5e{bottom:1467.150000px;}
.y30{bottom:1485.900000px;}
.y5c{bottom:1496.400000px;}
.y80{bottom:1507.050000px;}
.y59{bottom:1516.650000px;}
.y2f{bottom:1521.900000px;}
.y5b{bottom:1525.650000px;}
.y7d{bottom:1531.200000px;}
.y58{bottom:1534.800000px;}
.y7c{bottom:1551.300000px;}
.y5a{bottom:1554.900000px;}
.y2e{bottom:1557.900000px;}
.y7b{bottom:1571.400000px;}
.y57{bottom:1584.150000px;}
.y7a{bottom:1591.650000px;}
.y2d{bottom:1593.900000px;}
.y79{bottom:1611.750000px;}
.y56{bottom:1613.250000px;}
.y54{bottom:1613.400000px;}
.y2c{bottom:1630.050000px;}
.y78{bottom:1631.850000px;}
.y55{bottom:1642.500000px;}
.y77{bottom:1651.950000px;}
.y2b{bottom:1666.050000px;}
.y53{bottom:1671.750000px;}
.y76{bottom:1672.200000px;}
.y50{bottom:1692.000000px;}
.y75{bottom:1692.300000px;}
.y52{bottom:1701.000000px;}
.y2a{bottom:1702.050000px;}
.y4f{bottom:1710.150000px;}
.y74{bottom:1711.650000px;}
.y51{bottom:1730.250000px;}
.y7f{bottom:1734.600000px;}
.y29{bottom:1738.050000px;}
.y7e{bottom:1752.450000px;}
.y4e{bottom:1759.500000px;}
.y28{bottom:1774.050000px;}
.y4d{bottom:1788.600000px;}
.y4b{bottom:1788.750000px;}
.y4c{bottom:1817.850000px;}
.y4a{bottom:1847.700000px;}
.y16{bottom:1861.200000px;}
.y73{bottom:1878.600000px;}
.y49{bottom:1980.150000px;}
.y48{bottom:2016.150000px;}
.y47{bottom:2052.150000px;}
.y46{bottom:2089.950000px;}
.y45{bottom:2124.150000px;}
.y44{bottom:2161.950000px;}
.y43{bottom:2196.300000px;}
.y42{bottom:2232.300000px;}
.y41{bottom:2268.300000px;}
.y40{bottom:2307.900000px;}
.y3f{bottom:2451.900000px;}
.y3e{bottom:2487.900000px;}
.y3d{bottom:2527.500000px;}
.y27{bottom:2661.600000px;}
.y26{bottom:2697.600000px;}
.y25{bottom:2733.600000px;}
.y24{bottom:2769.600000px;}
.y23{bottom:2805.600000px;}
.y22{bottom:2841.600000px;}
.y21{bottom:2877.600000px;}
.y20{bottom:2913.600000px;}
.y1f{bottom:2949.600000px;}
.y1e{bottom:2989.200000px;}
.y1d{bottom:3164.550000px;}
.y1c{bottom:3222.150000px;}
.y1b{bottom:3279.750000px;}
.y1a{bottom:3379.650000px;}
.y19{bottom:3458.700000px;}
.y18{bottom:3589.800000px;}
.y17{bottom:3681.450000px;}
.h9{height:40.789453px;}
.hb{height:41.027344px;}
.ha{height:43.189453px;}
.hc{height:45.644531px;}
.hd{height:49.517578px;}
.he{height:49.789453px;}
.hf{height:77.627344px;}
.h3{height:85.324219px;}
.h8{height:87.604687px;}
.h7{height:88.204688px;}
.h2{height:94.804688px;}
.h1{height:176.062500px;}
.h6{height:192.093750px;}
.h4{height:244.740234px;}
.h5{height:264.128906px;}
.h0{height:3826.500000px;}
.w0{width:2976.000000px;}
.x0{left:0.000000px;}
.x5{left:123.750000px;}
.x3{left:306.300000px;}
.x13{left:337.200000px;}
.x17{left:343.350000px;}
.xf{left:354.450000px;}
.x11{left:359.400000px;}
.xc{left:372.900000px;}
.x2{left:378.300000px;}
.x12{left:397.800000px;}
.x14{left:487.950000px;}
.x15{left:495.750000px;}
.x16{left:499.050000px;}
.xd{left:750.750000px;}
.x9{left:971.400000px;}
.xa{left:1080.600000px;}
.x6{left:1120.650000px;}
.x8{left:1141.200000px;}
.x4{left:1309.050000px;}
.xb{left:1324.800000px;}
.x1{left:1325.850000px;}
.x10{left:1332.150000px;}
.xe{left:1383.600000px;}
.x7{left:1660.800000px;}
.x18{left:1996.350000px;}
.x19{left:2001.750000px;}
.x1a{left:2339.550000px;}
.x1b{left:2420.250000px;}
@media print{
.v1{vertical-align:-184.533333pt;}
.v2{vertical-align:-5.866667pt;}
.v3{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.866667pt;}
.v7{vertical-align:13.866667pt;}
.v5{vertical-align:14.933333pt;}
.v6{vertical-align:32.533333pt;}
.v8{vertical-align:46.933333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:45.866667pt;}
.ls4{letter-spacing:52.800000pt;}
.ls5{letter-spacing:59.733333pt;}
.ls6{letter-spacing:65.600000pt;}
.ls2{letter-spacing:72.533333pt;}
.ls3{letter-spacing:99.200000pt;}
.ls0{letter-spacing:335.552000pt;}
.ls1{letter-spacing:916.629333pt;}
.ws2{word-spacing:-80.021333pt;}
.ws0{word-spacing:-51.370667pt;}
.ws3{word-spacing:-32.106667pt;}
.ws6{word-spacing:-16.704000pt;}
.ws4{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.048000pt;}
.ws29{word-spacing:0.000000pt;}
.ws22{word-spacing:49.530667pt;}
.wsa{word-spacing:50.122667pt;}
.ws16{word-spacing:52.752000pt;}
.ws1c{word-spacing:52.772267pt;}
.ws1a{word-spacing:54.372267pt;}
.ws27{word-spacing:57.572267pt;}
.ws19{word-spacing:58.638933pt;}
.wsc{word-spacing:59.200000pt;}
.ws21{word-spacing:61.305600pt;}
.ws1d{word-spacing:63.898667pt;}
.ws9{word-spacing:66.954667pt;}
.ws23{word-spacing:67.206400pt;}
.wsd{word-spacing:67.605333pt;}
.wsb{word-spacing:71.413333pt;}
.ws12{word-spacing:72.505600pt;}
.ws20{word-spacing:72.965333pt;}
.ws17{word-spacing:75.705600pt;}
.ws26{word-spacing:83.172267pt;}
.ws14{word-spacing:83.206400pt;}
.ws28{word-spacing:92.806400pt;}
.wse{word-spacing:93.402667pt;}
.ws11{word-spacing:95.438933pt;}
.ws24{word-spacing:95.972267pt;}
.ws13{word-spacing:98.618667pt;}
.ws1b{word-spacing:101.232000pt;}
.ws1e{word-spacing:104.539733pt;}
.ws7{word-spacing:113.584000pt;}
.ws15{word-spacing:120.357333pt;}
.wsf{word-spacing:127.669333pt;}
.ws8{word-spacing:128.501333pt;}
.ws18{word-spacing:131.557333pt;}
.ws25{word-spacing:137.424000pt;}
.ws1f{word-spacing:140.090667pt;}
.ws5{word-spacing:158.469333pt;}
.ws1{word-spacing:883.376000pt;}
._d{margin-left:-14.549333pt;}
._e{margin-left:-8.362667pt;}
._b{margin-left:-7.008000pt;}
._c{margin-left:-5.760000pt;}
._8{margin-left:-4.512000pt;}
._9{margin-left:-3.456000pt;}
._1{margin-left:-2.560000pt;}
._a{margin-left:-1.440000pt;}
._0{width:1.024000pt;}
._4{width:2.133333pt;}
._7{width:3.029333pt;}
._10{width:4.693333pt;}
._6{width:6.762667pt;}
._5{width:8.106667pt;}
._f{width:9.856000pt;}
._2{width:10.986667pt;}
._21{width:12.202667pt;}
._20{width:13.589333pt;}
._3{width:14.933333pt;}
._15{width:17.642667pt;}
._14{width:18.709333pt;}
._12{width:19.861333pt;}
._11{width:21.226667pt;}
._1b{width:22.954667pt;}
._1d{width:24.362667pt;}
._1c{width:25.920000pt;}
._18{width:27.520000pt;}
._13{width:31.040000pt;}
._19{width:43.840000pt;}
._1a{width:45.418667pt;}
._1e{width:46.400000pt;}
._1f{width:47.466667pt;}
._4f{width:55.584000pt;}
._4e{width:58.101333pt;}
._17{width:74.389333pt;}
._16{width:75.562667pt;}
._4a{width:86.928000pt;}
._2f{width:100.736000pt;}
._35{width:101.648000pt;}
._3e{width:118.640000pt;}
._3f{width:121.306667pt;}
._41{width:127.173333pt;}
._3d{width:129.840000pt;}
._2a{width:137.258667pt;}
._40{width:138.373333pt;}
._44{width:139.509333pt;}
._43{width:140.672000pt;}
._23{width:142.432000pt;}
._46{width:145.317333pt;}
._45{width:147.136000pt;}
._4c{width:149.317333pt;}
._26{width:157.898667pt;}
._30{width:159.109333pt;}
._2b{width:164.506667pt;}
._32{width:168.501333pt;}
._24{width:170.762667pt;}
._36{width:177.002667pt;}
._25{width:181.600000pt;}
._27{width:186.229333pt;}
._28{width:197.066667pt;}
._2e{width:210.533333pt;}
._22{width:216.693333pt;}
._42{width:218.336000pt;}
._33{width:219.994667pt;}
._4d{width:231.173333pt;}
._3a{width:254.976000pt;}
._47{width:260.128000pt;}
._2d{width:265.621333pt;}
._34{width:286.528000pt;}
._2c{width:304.864000pt;}
._4b{width:410.912000pt;}
._39{width:421.626667pt;}
._3b{width:425.082667pt;}
._3c{width:466.720000pt;}
._31{width:482.250667pt;}
._37{width:539.002667pt;}
._50{width:540.954667pt;}
._38{width:558.858667pt;}
._48{width:562.325333pt;}
._49{width:587.850667pt;}
._29{width:786.618667pt;}
.fs8{font-size:27.733333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:170.666667pt;}
.fs4{font-size:234.666667pt;}
.fs3{font-size:272.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:55.200000pt;}
.y14{bottom:84.000000pt;}
.y13{bottom:112.800000pt;}
.y12{bottom:141.600000pt;}
.y11{bottom:170.400000pt;}
.y10{bottom:199.200000pt;}
.yf{bottom:228.000000pt;}
.ye{bottom:256.800000pt;}
.yd{bottom:285.600000pt;}
.yc{bottom:318.133333pt;}
.yb{bottom:389.200000pt;}
.ya{bottom:421.200000pt;}
.y9{bottom:453.200000pt;}
.y8{bottom:485.333333pt;}
.y7{bottom:517.333333pt;}
.y6{bottom:549.333333pt;}
.y5{bottom:581.333333pt;}
.y4{bottom:613.333333pt;}
.y3{bottom:645.333333pt;}
.y2{bottom:677.333333pt;}
.y1{bottom:744.533333pt;}
.y72{bottom:862.666667pt;}
.y70{bottom:888.666667pt;}
.y71{bottom:914.666667pt;}
.y3c{bottom:936.666667pt;}
.y6f{bottom:940.533333pt;}
.y6d{bottom:966.533333pt;}
.y3b{bottom:968.666667pt;}
.y6e{bottom:992.533333pt;}
.y3a{bottom:1000.666667pt;}
.y8e{bottom:1016.800000pt;}
.y6c{bottom:1018.533333pt;}
.y39{bottom:1032.666667pt;}
.y69{bottom:1036.400000pt;}
.y8c{bottom:1038.000000pt;}
.y6b{bottom:1044.533333pt;}
.y8b{bottom:1046.133333pt;}
.y68{bottom:1052.533333pt;}
.y38{bottom:1064.666667pt;}
.y8a{bottom:1069.866667pt;}
.y6a{bottom:1070.533333pt;}
.y89{bottom:1086.400000pt;}
.y67{bottom:1096.400000pt;}
.y37{bottom:1096.666667pt;}
.y88{bottom:1102.800000pt;}
.y87{bottom:1119.200000pt;}
.y65{bottom:1122.400000pt;}
.y36{bottom:1128.800000pt;}
.y86{bottom:1134.800000pt;}
.y85{bottom:1142.933333pt;}
.y66{bottom:1148.400000pt;}
.y35{bottom:1160.800000pt;}
.y84{bottom:1166.666667pt;}
.y64{bottom:1174.400000pt;}
.y83{bottom:1183.066667pt;}
.y34{bottom:1192.800000pt;}
.y82{bottom:1199.600000pt;}
.y63{bottom:1200.266667pt;}
.y61{bottom:1200.400000pt;}
.y81{bottom:1214.933333pt;}
.y33{bottom:1224.800000pt;}
.y62{bottom:1226.266667pt;}
.y8d{bottom:1236.933333pt;}
.y60{bottom:1252.266667pt;}
.y32{bottom:1256.800000pt;}
.y5f{bottom:1278.133333pt;}
.y5d{bottom:1278.266667pt;}
.y31{bottom:1288.800000pt;}
.y5e{bottom:1304.133333pt;}
.y30{bottom:1320.800000pt;}
.y5c{bottom:1330.133333pt;}
.y80{bottom:1339.600000pt;}
.y59{bottom:1348.133333pt;}
.y2f{bottom:1352.800000pt;}
.y5b{bottom:1356.133333pt;}
.y7d{bottom:1361.066667pt;}
.y58{bottom:1364.266667pt;}
.y7c{bottom:1378.933333pt;}
.y5a{bottom:1382.133333pt;}
.y2e{bottom:1384.800000pt;}
.y7b{bottom:1396.800000pt;}
.y57{bottom:1408.133333pt;}
.y7a{bottom:1414.800000pt;}
.y2d{bottom:1416.800000pt;}
.y79{bottom:1432.666667pt;}
.y56{bottom:1434.000000pt;}
.y54{bottom:1434.133333pt;}
.y2c{bottom:1448.933333pt;}
.y78{bottom:1450.533333pt;}
.y55{bottom:1460.000000pt;}
.y77{bottom:1468.400000pt;}
.y2b{bottom:1480.933333pt;}
.y53{bottom:1486.000000pt;}
.y76{bottom:1486.400000pt;}
.y50{bottom:1504.000000pt;}
.y75{bottom:1504.266667pt;}
.y52{bottom:1512.000000pt;}
.y2a{bottom:1512.933333pt;}
.y4f{bottom:1520.133333pt;}
.y74{bottom:1521.466667pt;}
.y51{bottom:1538.000000pt;}
.y7f{bottom:1541.866667pt;}
.y29{bottom:1544.933333pt;}
.y7e{bottom:1557.733333pt;}
.y4e{bottom:1564.000000pt;}
.y28{bottom:1576.933333pt;}
.y4d{bottom:1589.866667pt;}
.y4b{bottom:1590.000000pt;}
.y4c{bottom:1615.866667pt;}
.y4a{bottom:1642.400000pt;}
.y16{bottom:1654.400000pt;}
.y73{bottom:1669.866667pt;}
.y49{bottom:1760.133333pt;}
.y48{bottom:1792.133333pt;}
.y47{bottom:1824.133333pt;}
.y46{bottom:1857.733333pt;}
.y45{bottom:1888.133333pt;}
.y44{bottom:1921.733333pt;}
.y43{bottom:1952.266667pt;}
.y42{bottom:1984.266667pt;}
.y41{bottom:2016.266667pt;}
.y40{bottom:2051.466667pt;}
.y3f{bottom:2179.466667pt;}
.y3e{bottom:2211.466667pt;}
.y3d{bottom:2246.666667pt;}
.y27{bottom:2365.866667pt;}
.y26{bottom:2397.866667pt;}
.y25{bottom:2429.866667pt;}
.y24{bottom:2461.866667pt;}
.y23{bottom:2493.866667pt;}
.y22{bottom:2525.866667pt;}
.y21{bottom:2557.866667pt;}
.y20{bottom:2589.866667pt;}
.y1f{bottom:2621.866667pt;}
.y1e{bottom:2657.066667pt;}
.y1d{bottom:2812.933333pt;}
.y1c{bottom:2864.133333pt;}
.y1b{bottom:2915.333333pt;}
.y1a{bottom:3004.133333pt;}
.y19{bottom:3074.400000pt;}
.y18{bottom:3190.933333pt;}
.y17{bottom:3272.400000pt;}
.h9{height:36.257292pt;}
.hb{height:36.468750pt;}
.ha{height:38.390625pt;}
.hc{height:40.572917pt;}
.hd{height:44.015625pt;}
.he{height:44.257292pt;}
.hf{height:69.002083pt;}
.h3{height:75.843750pt;}
.h8{height:77.870833pt;}
.h7{height:78.404167pt;}
.h2{height:84.270833pt;}
.h1{height:156.500000pt;}
.h6{height:170.750000pt;}
.h4{height:217.546875pt;}
.h5{height:234.781250pt;}
.h0{height:3401.333333pt;}
.w0{width:2645.333333pt;}
.x0{left:0.000000pt;}
.x5{left:110.000000pt;}
.x3{left:272.266667pt;}
.x13{left:299.733333pt;}
.x17{left:305.200000pt;}
.xf{left:315.066667pt;}
.x11{left:319.466667pt;}
.xc{left:331.466667pt;}
.x2{left:336.266667pt;}
.x12{left:353.600000pt;}
.x14{left:433.733333pt;}
.x15{left:440.666667pt;}
.x16{left:443.600000pt;}
.xd{left:667.333333pt;}
.x9{left:863.466667pt;}
.xa{left:960.533333pt;}
.x6{left:996.133333pt;}
.x8{left:1014.400000pt;}
.x4{left:1163.600000pt;}
.xb{left:1177.600000pt;}
.x1{left:1178.533333pt;}
.x10{left:1184.133333pt;}
.xe{left:1229.866667pt;}
.x7{left:1476.266667pt;}
.x18{left:1774.533333pt;}
.x19{left:1779.333333pt;}
.x1a{left:2079.600000pt;}
.x1b{left:2151.333333pt;}
}




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