
    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_3d3ef39e025f13379b1001e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_5448e66def8e4a2aef53b4b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_7a7832b70b82eafbfb18f94b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_ebe863cf5cab80680c583e80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_80e420ecdb1642e07f1ba547.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e9174b6c24fac40d014f6118.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_09f178c38baa59ff40bb3d6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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:ffd;src:url('chunks/assets/font_910cd6241c64b911a03cfcf0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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:ffe;src:url('chunks/assets/font_c3cdd41583df226a5b17ecce.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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;}
.ls15{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.372000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.552000px;}
.ls1{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.768000px;}
.ls4{letter-spacing:0.828000px;}
.ls9{letter-spacing:1.572000px;}
.ls0{letter-spacing:1.752000px;}
.lsf{letter-spacing:3.000000px;}
.lsa{letter-spacing:4.200000px;}
.lsb{letter-spacing:5.400000px;}
.ls10{letter-spacing:6.600000px;}
.lsd{letter-spacing:7.800000px;}
.ls11{letter-spacing:9.000000px;}
.lse{letter-spacing:23.400000px;}
.ls13{letter-spacing:55.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-22.752000px;}
.ws5{word-spacing:-22.572000px;}
.ws3{word-spacing:-21.000000px;}
.ws7{word-spacing:-20.628000px;}
.ws0{word-spacing:-19.776000px;}
.ws2{word-spacing:-15.384000px;}
.ws1{word-spacing:-14.832000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-5.340000px;}
._6{margin-left:-3.696000px;}
._1b{margin-left:-2.538000px;}
._2{margin-left:-1.344000px;}
._3{width:1.176000px;}
._4{width:2.388000px;}
._5{width:3.444000px;}
._10{width:4.812000px;}
._8{width:6.444000px;}
._1e{width:7.458000px;}
._13{width:8.820000px;}
._1d{width:9.828000px;}
._1c{width:11.004000px;}
._19{width:12.030000px;}
._15{width:13.608000px;}
._23{width:14.682000px;}
._c{width:15.708000px;}
._f{width:16.800000px;}
._21{width:18.060000px;}
._17{width:19.404000px;}
._b{width:22.344000px;}
._a{width:23.772000px;}
._18{width:24.816000px;}
._e{width:26.244000px;}
._d{width:28.416000px;}
._16{width:30.156000px;}
._1a{width:31.500000px;}
._26{width:33.186000px;}
._25{width:34.440000px;}
._20{width:35.868000px;}
._1f{width:37.800000px;}
._14{width:38.808000px;}
._22{width:40.488000px;}
._2c{width:42.084000px;}
._24{width:44.604000px;}
._9{width:46.032000px;}
._2a{width:48.132000px;}
._2b{width:49.692000px;}
._2d{width:50.988000px;}
._27{width:54.180000px;}
._11{width:56.130000px;}
._12{width:57.522000px;}
._29{width:64.260000px;}
._28{width:75.936000px;}
._0{width:292.446000px;}
._1{width:1212.996000px;}
.fc7{color:transparent;}
.fc5{color:rgb(50,62,79);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc6{color:rgb(46,116,181);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.237500px;}
.y5{bottom:30.937500px;}
.y2b{bottom:78.937500px;}
.y4e{bottom:84.037500px;}
.ya7{bottom:90.937500px;}
.yc2{bottom:101.437500px;}
.y93{bottom:105.937500px;}
.y2a{bottom:106.837500px;}
.y4d{bottom:111.937500px;}
.y6f{bottom:115.537500px;}
.ya6{bottom:118.537500px;}
.yc1{bottom:129.037500px;}
.y92{bottom:133.537500px;}
.y29{bottom:134.437500px;}
.y4c{bottom:139.537500px;}
.y6e{bottom:143.437500px;}
.ya5{bottom:146.437500px;}
.yc0{bottom:156.930000px;}
.y91{bottom:161.430000px;}
.y28{bottom:162.345000px;}
.y4b{bottom:167.430000px;}
.y6d{bottom:171.075000px;}
.ya4{bottom:174.075000px;}
.ybf{bottom:184.875000px;}
.y90{bottom:189.075000px;}
.y27{bottom:189.975000px;}
.y4a{bottom:195.075000px;}
.y6c{bottom:198.975000px;}
.ya3{bottom:201.975000px;}
.ybe{bottom:212.475000px;}
.y8f{bottom:216.975000px;}
.y26{bottom:217.875000px;}
.y49{bottom:222.975000px;}
.y6b{bottom:226.875000px;}
.ya2{bottom:229.875000px;}
.ybd{bottom:240.375000px;}
.y8e{bottom:244.875000px;}
.y25{bottom:245.775000px;}
.y48{bottom:250.875000px;}
.y6a{bottom:254.475000px;}
.ya1{bottom:257.475000px;}
.ybc{bottom:267.975000px;}
.y8d{bottom:272.475000px;}
.y24{bottom:273.375000px;}
.y47{bottom:278.475000px;}
.y69{bottom:282.375000px;}
.ya0{bottom:285.375000px;}
.ybb{bottom:295.875000px;}
.y8c{bottom:300.375000px;}
.y23{bottom:301.275000px;}
.y46{bottom:306.375000px;}
.y68{bottom:309.975000px;}
.y9f{bottom:312.975000px;}
.yba{bottom:323.475000px;}
.y8b{bottom:327.975000px;}
.y22{bottom:328.875000px;}
.y45{bottom:333.975000px;}
.y67{bottom:337.905000px;}
.y9e{bottom:340.905000px;}
.yb9{bottom:351.405000px;}
.y8a{bottom:355.920000px;}
.y21{bottom:356.820000px;}
.y44{bottom:361.920000px;}
.y66{bottom:365.505000px;}
.y9d{bottom:368.505000px;}
.yb8{bottom:379.320000px;}
.y89{bottom:383.505000px;}
.y20{bottom:384.405000px;}
.y43{bottom:392.505000px;}
.y65{bottom:396.420000px;}
.yb7{bottom:406.905000px;}
.y88{bottom:411.405000px;}
.y1f{bottom:412.320000px;}
.y42{bottom:420.405000px;}
.y64{bottom:424.320000px;}
.yb6{bottom:434.820000px;}
.y1e{bottom:440.205000px;}
.y87{bottom:442.320000px;}
.y41{bottom:448.320000px;}
.y63{bottom:451.905000px;}
.y1d{bottom:467.820000px;}
.y86{bottom:469.920000px;}
.y40{bottom:475.905000px;}
.yb5{bottom:477.405000px;}
.y62{bottom:479.820000px;}
.y9c{bottom:482.820000px;}
.y1c{bottom:495.705000px;}
.y85{bottom:497.820000px;}
.y3f{bottom:503.805000px;}
.y61{bottom:507.450000px;}
.y9b{bottom:510.450000px;}
.y1b{bottom:523.350000px;}
.y84{bottom:525.450000px;}
.y3e{bottom:531.450000px;}
.y60{bottom:535.350000px;}
.y9a{bottom:538.350000px;}
.y1a{bottom:551.250000px;}
.y83{bottom:553.350000px;}
.y3d{bottom:559.350000px;}
.y5f{bottom:562.950000px;}
.y99{bottom:565.950000px;}
.yb4{bottom:568.950000px;}
.y19{bottom:578.850000px;}
.y82{bottom:580.950000px;}
.y3c{bottom:586.950000px;}
.y5e{bottom:590.850000px;}
.y98{bottom:593.850000px;}
.yb3{bottom:596.850000px;}
.y18{bottom:606.750000px;}
.y81{bottom:608.850000px;}
.y3b{bottom:614.850000px;}
.y5d{bottom:618.750000px;}
.y97{bottom:621.750000px;}
.yb2{bottom:624.750000px;}
.y17{bottom:634.350000px;}
.y80{bottom:636.750000px;}
.y3a{bottom:642.750000px;}
.y5c{bottom:646.350000px;}
.y96{bottom:649.350000px;}
.yb1{bottom:652.350000px;}
.y16{bottom:662.250000px;}
.y7f{bottom:664.350000px;}
.y39{bottom:670.350000px;}
.y5b{bottom:674.250000px;}
.y95{bottom:677.280000px;}
.yb0{bottom:680.280000px;}
.y15{bottom:690.195000px;}
.y7e{bottom:692.280000px;}
.y38{bottom:698.280000px;}
.y5a{bottom:704.880000px;}
.yaf{bottom:707.880000px;}
.y14{bottom:717.780000px;}
.y7d{bottom:719.880000px;}
.y37{bottom:725.880000px;}
.y59{bottom:732.780000px;}
.yae{bottom:735.780000px;}
.y13{bottom:745.695000px;}
.y7c{bottom:747.780000px;}
.y36{bottom:753.780000px;}
.y58{bottom:760.380000px;}
.yad{bottom:763.380000px;}
.y12{bottom:773.295000px;}
.y7b{bottom:778.380000px;}
.y35{bottom:781.380000px;}
.y57{bottom:788.295000px;}
.yac{bottom:791.295000px;}
.y11{bottom:801.195000px;}
.y7a{bottom:806.280000px;}
.y34{bottom:809.280000px;}
.y56{bottom:816.195000px;}
.yab{bottom:819.195000px;}
.y10{bottom:828.795000px;}
.y79{bottom:834.195000px;}
.y33{bottom:837.195000px;}
.y55{bottom:843.795000px;}
.y94{bottom:846.825000px;}
.yf{bottom:856.725000px;}
.y78{bottom:861.825000px;}
.y32{bottom:864.825000px;}
.y54{bottom:871.725000px;}
.yaa{bottom:874.725000px;}
.y77{bottom:889.725000px;}
.y31{bottom:892.725000px;}
.y53{bottom:899.325000px;}
.ya9{bottom:902.325000px;}
.ye{bottom:902.625000px;}
.y76{bottom:917.325000px;}
.y30{bottom:920.325000px;}
.y52{bottom:927.225000px;}
.yd{bottom:930.225000px;}
.y75{bottom:945.225000px;}
.y2f{bottom:948.225000px;}
.y51{bottom:954.825000px;}
.ya8{bottom:957.825000px;}
.yc{bottom:958.125000px;}
.y74{bottom:972.825000px;}
.y2e{bottom:975.825000px;}
.y50{bottom:982.725000px;}
.yb{bottom:985.725000px;}
.y73{bottom:1000.725000px;}
.y2d{bottom:1003.725000px;}
.y4f{bottom:1013.625000px;}
.ya{bottom:1028.355000px;}
.y72{bottom:1028.670000px;}
.y2c{bottom:1031.655000px;}
.y71{bottom:1056.255000px;}
.y9{bottom:1059.255000px;}
.y70{bottom:1084.155000px;}
.y8{bottom:1087.155000px;}
.y7{bottom:1114.755000px;}
.y4{bottom:1139.070000px;}
.y3{bottom:1158.870000px;}
.y2{bottom:1183.155000px;}
.y1{bottom:1210.500000px;}
.h7{height:48.972000px;}
.h5{height:50.047852px;}
.h8{height:58.652344px;}
.he{height:59.267578px;}
.hc{height:64.025391px;}
.ha{height:65.645508px;}
.h4{height:66.978516px;}
.h2{height:76.546875px;}
.hd{height:82.400391px;}
.h9{height:82.441406px;}
.hb{height:84.656250px;}
.h6{height:95.683594px;}
.h3{height:105.251953px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.299987px;}
.x4{left:84.937487px;}
.x1{left:106.537487px;}
.xa{left:139.837487px;}
.x6{left:159.344987px;}
.x7{left:169.229987px;}
.xc{left:201.074987px;}
.x8{left:202.574987px;}
.x10{left:277.274987px;}
.xb{left:354.404987px;}
.x11{left:363.119987px;}
.xe{left:379.319987px;}
.xd{left:399.404987px;}
.xf{left:427.649987px;}
.x9{left:446.249987px;}
.x2{left:521.249987px;}
.x3{left:641.879987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.330667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.490667pt;}
.ls1{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.682667pt;}
.ls4{letter-spacing:0.736000pt;}
.ls9{letter-spacing:1.397333pt;}
.ls0{letter-spacing:1.557333pt;}
.lsf{letter-spacing:2.666667pt;}
.lsa{letter-spacing:3.733333pt;}
.lsb{letter-spacing:4.800000pt;}
.ls10{letter-spacing:5.866667pt;}
.lsd{letter-spacing:6.933333pt;}
.ls11{letter-spacing:8.000000pt;}
.lse{letter-spacing:20.800000pt;}
.ls13{letter-spacing:49.600000pt;}
.ws4{word-spacing:-20.224000pt;}
.ws5{word-spacing:-20.064000pt;}
.ws3{word-spacing:-18.666667pt;}
.ws7{word-spacing:-18.336000pt;}
.ws0{word-spacing:-17.578667pt;}
.ws2{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.184000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-4.746667pt;}
._6{margin-left:-3.285333pt;}
._1b{margin-left:-2.256000pt;}
._2{margin-left:-1.194667pt;}
._3{width:1.045333pt;}
._4{width:2.122667pt;}
._5{width:3.061333pt;}
._10{width:4.277333pt;}
._8{width:5.728000pt;}
._1e{width:6.629333pt;}
._13{width:7.840000pt;}
._1d{width:8.736000pt;}
._1c{width:9.781333pt;}
._19{width:10.693333pt;}
._15{width:12.096000pt;}
._23{width:13.050667pt;}
._c{width:13.962667pt;}
._f{width:14.933333pt;}
._21{width:16.053333pt;}
._17{width:17.248000pt;}
._b{width:19.861333pt;}
._a{width:21.130667pt;}
._18{width:22.058667pt;}
._e{width:23.328000pt;}
._d{width:25.258667pt;}
._16{width:26.805333pt;}
._1a{width:28.000000pt;}
._26{width:29.498667pt;}
._25{width:30.613333pt;}
._20{width:31.882667pt;}
._1f{width:33.600000pt;}
._14{width:34.496000pt;}
._22{width:35.989333pt;}
._2c{width:37.408000pt;}
._24{width:39.648000pt;}
._9{width:40.917333pt;}
._2a{width:42.784000pt;}
._2b{width:44.170667pt;}
._2d{width:45.322667pt;}
._27{width:48.160000pt;}
._11{width:49.893333pt;}
._12{width:51.130667pt;}
._29{width:57.120000pt;}
._28{width:67.498667pt;}
._0{width:259.952000pt;}
._1{width:1078.218667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.100000pt;}
.y5{bottom:27.500000pt;}
.y2b{bottom:70.166667pt;}
.y4e{bottom:74.700000pt;}
.ya7{bottom:80.833333pt;}
.yc2{bottom:90.166667pt;}
.y93{bottom:94.166667pt;}
.y2a{bottom:94.966667pt;}
.y4d{bottom:99.500000pt;}
.y6f{bottom:102.700000pt;}
.ya6{bottom:105.366667pt;}
.yc1{bottom:114.700000pt;}
.y92{bottom:118.700000pt;}
.y29{bottom:119.500000pt;}
.y4c{bottom:124.033333pt;}
.y6e{bottom:127.500000pt;}
.ya5{bottom:130.166667pt;}
.yc0{bottom:139.493333pt;}
.y91{bottom:143.493333pt;}
.y28{bottom:144.306667pt;}
.y4b{bottom:148.826667pt;}
.y6d{bottom:152.066667pt;}
.ya4{bottom:154.733333pt;}
.ybf{bottom:164.333333pt;}
.y90{bottom:168.066667pt;}
.y27{bottom:168.866667pt;}
.y4a{bottom:173.400000pt;}
.y6c{bottom:176.866667pt;}
.ya3{bottom:179.533333pt;}
.ybe{bottom:188.866667pt;}
.y8f{bottom:192.866667pt;}
.y26{bottom:193.666667pt;}
.y49{bottom:198.200000pt;}
.y6b{bottom:201.666667pt;}
.ya2{bottom:204.333333pt;}
.ybd{bottom:213.666667pt;}
.y8e{bottom:217.666667pt;}
.y25{bottom:218.466667pt;}
.y48{bottom:223.000000pt;}
.y6a{bottom:226.200000pt;}
.ya1{bottom:228.866667pt;}
.ybc{bottom:238.200000pt;}
.y8d{bottom:242.200000pt;}
.y24{bottom:243.000000pt;}
.y47{bottom:247.533333pt;}
.y69{bottom:251.000000pt;}
.ya0{bottom:253.666667pt;}
.ybb{bottom:263.000000pt;}
.y8c{bottom:267.000000pt;}
.y23{bottom:267.800000pt;}
.y46{bottom:272.333333pt;}
.y68{bottom:275.533333pt;}
.y9f{bottom:278.200000pt;}
.yba{bottom:287.533333pt;}
.y8b{bottom:291.533333pt;}
.y22{bottom:292.333333pt;}
.y45{bottom:296.866667pt;}
.y67{bottom:300.360000pt;}
.y9e{bottom:303.026667pt;}
.yb9{bottom:312.360000pt;}
.y8a{bottom:316.373333pt;}
.y21{bottom:317.173333pt;}
.y44{bottom:321.706667pt;}
.y66{bottom:324.893333pt;}
.y9d{bottom:327.560000pt;}
.yb8{bottom:337.173333pt;}
.y89{bottom:340.893333pt;}
.y20{bottom:341.693333pt;}
.y43{bottom:348.893333pt;}
.y65{bottom:352.373333pt;}
.yb7{bottom:361.693333pt;}
.y88{bottom:365.693333pt;}
.y1f{bottom:366.506667pt;}
.y42{bottom:373.693333pt;}
.y64{bottom:377.173333pt;}
.yb6{bottom:386.506667pt;}
.y1e{bottom:391.293333pt;}
.y87{bottom:393.173333pt;}
.y41{bottom:398.506667pt;}
.y63{bottom:401.693333pt;}
.y1d{bottom:415.840000pt;}
.y86{bottom:417.706667pt;}
.y40{bottom:423.026667pt;}
.yb5{bottom:424.360000pt;}
.y62{bottom:426.506667pt;}
.y9c{bottom:429.173333pt;}
.y1c{bottom:440.626667pt;}
.y85{bottom:442.506667pt;}
.y3f{bottom:447.826667pt;}
.y61{bottom:451.066667pt;}
.y9b{bottom:453.733333pt;}
.y1b{bottom:465.200000pt;}
.y84{bottom:467.066667pt;}
.y3e{bottom:472.400000pt;}
.y60{bottom:475.866667pt;}
.y9a{bottom:478.533333pt;}
.y1a{bottom:490.000000pt;}
.y83{bottom:491.866667pt;}
.y3d{bottom:497.200000pt;}
.y5f{bottom:500.400000pt;}
.y99{bottom:503.066667pt;}
.yb4{bottom:505.733333pt;}
.y19{bottom:514.533333pt;}
.y82{bottom:516.400000pt;}
.y3c{bottom:521.733333pt;}
.y5e{bottom:525.200000pt;}
.y98{bottom:527.866667pt;}
.yb3{bottom:530.533333pt;}
.y18{bottom:539.333333pt;}
.y81{bottom:541.200000pt;}
.y3b{bottom:546.533333pt;}
.y5d{bottom:550.000000pt;}
.y97{bottom:552.666667pt;}
.yb2{bottom:555.333333pt;}
.y17{bottom:563.866667pt;}
.y80{bottom:566.000000pt;}
.y3a{bottom:571.333333pt;}
.y5c{bottom:574.533333pt;}
.y96{bottom:577.200000pt;}
.yb1{bottom:579.866667pt;}
.y16{bottom:588.666667pt;}
.y7f{bottom:590.533333pt;}
.y39{bottom:595.866667pt;}
.y5b{bottom:599.333333pt;}
.y95{bottom:602.026667pt;}
.yb0{bottom:604.693333pt;}
.y15{bottom:613.506667pt;}
.y7e{bottom:615.360000pt;}
.y38{bottom:620.693333pt;}
.y5a{bottom:626.560000pt;}
.yaf{bottom:629.226667pt;}
.y14{bottom:638.026667pt;}
.y7d{bottom:639.893333pt;}
.y37{bottom:645.226667pt;}
.y59{bottom:651.360000pt;}
.yae{bottom:654.026667pt;}
.y13{bottom:662.840000pt;}
.y7c{bottom:664.693333pt;}
.y36{bottom:670.026667pt;}
.y58{bottom:675.893333pt;}
.yad{bottom:678.560000pt;}
.y12{bottom:687.373333pt;}
.y7b{bottom:691.893333pt;}
.y35{bottom:694.560000pt;}
.y57{bottom:700.706667pt;}
.yac{bottom:703.373333pt;}
.y11{bottom:712.173333pt;}
.y7a{bottom:716.693333pt;}
.y34{bottom:719.360000pt;}
.y56{bottom:725.506667pt;}
.yab{bottom:728.173333pt;}
.y10{bottom:736.706667pt;}
.y79{bottom:741.506667pt;}
.y33{bottom:744.173333pt;}
.y55{bottom:750.040000pt;}
.y94{bottom:752.733333pt;}
.yf{bottom:761.533333pt;}
.y78{bottom:766.066667pt;}
.y32{bottom:768.733333pt;}
.y54{bottom:774.866667pt;}
.yaa{bottom:777.533333pt;}
.y77{bottom:790.866667pt;}
.y31{bottom:793.533333pt;}
.y53{bottom:799.400000pt;}
.ya9{bottom:802.066667pt;}
.ye{bottom:802.333333pt;}
.y76{bottom:815.400000pt;}
.y30{bottom:818.066667pt;}
.y52{bottom:824.200000pt;}
.yd{bottom:826.866667pt;}
.y75{bottom:840.200000pt;}
.y2f{bottom:842.866667pt;}
.y51{bottom:848.733333pt;}
.ya8{bottom:851.400000pt;}
.yc{bottom:851.666667pt;}
.y74{bottom:864.733333pt;}
.y2e{bottom:867.400000pt;}
.y50{bottom:873.533333pt;}
.yb{bottom:876.200000pt;}
.y73{bottom:889.533333pt;}
.y2d{bottom:892.200000pt;}
.y4f{bottom:901.000000pt;}
.ya{bottom:914.093333pt;}
.y72{bottom:914.373333pt;}
.y2c{bottom:917.026667pt;}
.y71{bottom:938.893333pt;}
.y9{bottom:941.560000pt;}
.y70{bottom:963.693333pt;}
.y8{bottom:966.360000pt;}
.y7{bottom:990.893333pt;}
.y4{bottom:1012.506667pt;}
.y3{bottom:1030.106667pt;}
.y2{bottom:1051.693333pt;}
.y1{bottom:1076.000000pt;}
.h7{height:43.530667pt;}
.h5{height:44.486979pt;}
.h8{height:52.135417pt;}
.he{height:52.682292pt;}
.hc{height:56.911458pt;}
.ha{height:58.351562pt;}
.h4{height:59.536458pt;}
.h2{height:68.041667pt;}
.hd{height:73.244792pt;}
.h9{height:73.281250pt;}
.hb{height:75.250000pt;}
.h6{height:85.052083pt;}
.h3{height:93.557292pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.599988pt;}
.x4{left:75.499988pt;}
.x1{left:94.699988pt;}
.xa{left:124.299988pt;}
.x6{left:141.639988pt;}
.x7{left:150.426655pt;}
.xc{left:178.733322pt;}
.x8{left:180.066655pt;}
.x10{left:246.466655pt;}
.xb{left:315.026655pt;}
.x11{left:322.773322pt;}
.xe{left:337.173322pt;}
.xd{left:355.026655pt;}
.xf{left:380.133322pt;}
.x9{left:396.666655pt;}
.x2{left:463.333322pt;}
.x3{left:570.559988pt;}
}




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