
    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_9ad962d7b1e1d0be32d14cb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027832;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_dec77476e731d20200bec968.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_5b60196c6839c530a9e97f09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027832;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_dfeb165e119e4abd51254580.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_b01eae87c684a2af01cc6c2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.737305;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_c109c4aa721db7d336e32cd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_59bcc47b6bc74ecf66a95e87.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_f0a1d718c8576f0e7d64b853.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_62f6dc13bd0c9f5b8da40fa1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-20.117400px;}
.v3{vertical-align:-18.105600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:20.117400px;}
.ls11{letter-spacing:-5.780000px;}
.ls16{letter-spacing:-2.416000px;}
.ls1{letter-spacing:-0.021600px;}
.ls9{letter-spacing:-0.019200px;}
.ls1b{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.014400px;}
.ls8{letter-spacing:-0.012000px;}
.ls19{letter-spacing:-0.008400px;}
.ls2{letter-spacing:-0.007200px;}
.ls15{letter-spacing:-0.006000px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.005400px;}
.lsb{letter-spacing:0.006000px;}
.ls10{letter-spacing:0.007140px;}
.ls12{letter-spacing:0.008000px;}
.ls17{letter-spacing:0.008400px;}
.ls6{letter-spacing:0.009600px;}
.lsc{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.028800px;}
.lse{letter-spacing:0.280999px;}
.lsf{letter-spacing:1.839999px;}
.ls13{letter-spacing:2.934000px;}
.lsd{letter-spacing:3.618000px;}
.ls18{letter-spacing:4.056000px;}
.ls1c{letter-spacing:6.420000px;}
.lsa{letter-spacing:7.839999px;}
.ls14{letter-spacing:9.822000px;}
.ls7{letter-spacing:17.640000px;}
.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;}
}
.ws0{word-spacing:-19.944000px;}
.ws3{word-spacing:-16.812000px;}
.ws4{word-spacing:-16.806000px;}
.wse{word-spacing:-16.800000px;}
.wsd{word-spacing:-16.794000px;}
.ws5{word-spacing:-16.788000px;}
.wsf{word-spacing:-16.782000px;}
.ws6{word-spacing:-16.620000px;}
.wsc{word-spacing:-16.614000px;}
.ws10{word-spacing:-16.608000px;}
.wsa{word-spacing:-14.958000px;}
.ws7{word-spacing:-11.088001px;}
.ws9{word-spacing:-9.972000px;}
.ws8{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:5.397000px;}
.ws2{word-spacing:11.506380px;}
._13{margin-left:-12.972000px;}
._1e{margin-left:-11.596620px;}
._12{margin-left:-9.714000px;}
._10{margin-left:-7.795200px;}
._e{margin-left:-6.314400px;}
._8{margin-left:-5.010000px;}
._f{margin-left:-3.892800px;}
._3{margin-left:-2.850000px;}
._4{margin-left:-1.038000px;}
._d{width:1.000800px;}
._0{width:2.001600px;}
._2{width:3.312000px;}
._5{width:5.119200px;}
._c{width:6.445200px;}
._7{width:7.530000px;}
._a{width:8.834400px;}
._1f{width:9.838200px;}
._9{width:10.842000px;}
._b{width:12.060000px;}
._6{width:13.692000px;}
._11{width:15.664779px;}
._15{width:17.882400px;}
._14{width:19.326000px;}
._16{width:21.052800px;}
._1a{width:22.182000px;}
._18{width:23.358000px;}
._1b{width:24.363600px;}
._1d{width:25.470000px;}
._1c{width:27.828000px;}
._19{width:32.026800px;}
._17{width:37.382400px;}
._1{width:38.395980px;}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,31,103);}
.fs5{font-size:36.000000px;}
.fs4{font-size:40.000002px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.000000px;}
.y3{bottom:34.500000px;}
.y2e{bottom:55.500000px;}
.y7f{bottom:162.000000px;}
.y59{bottom:166.526400px;}
.yf1{bottom:171.023550px;}
.ye7{bottom:178.500000px;}
.y7e{bottom:183.026400px;}
.yf0{bottom:187.523550px;}
.y2d{bottom:189.000000px;}
.y58{bottom:193.500000px;}
.ye6{bottom:196.500000px;}
.yb6{bottom:199.500000px;}
.y9e{bottom:201.000000px;}
.yef{bottom:204.023550px;}
.y2c{bottom:207.000000px;}
.ye5{bottom:214.500000px;}
.y57{bottom:214.526400px;}
.yb5{bottom:217.500000px;}
.y9d{bottom:219.000000px;}
.yee{bottom:220.523550px;}
.y2b{bottom:225.000000px;}
.yd3{bottom:231.000000px;}
.ye4{bottom:232.500000px;}
.yb4{bottom:235.500000px;}
.y9c{bottom:237.000000px;}
.y2a{bottom:243.000000px;}
.yd2{bottom:249.000000px;}
.ye3{bottom:250.500000px;}
.y7d{bottom:252.000000px;}
.y6{bottom:253.500000px;}
.y9b{bottom:255.000000px;}
.y29{bottom:261.000000px;}
.yd1{bottom:267.000000px;}
.y7c{bottom:270.000000px;}
.yb3{bottom:271.500000px;}
.y9a{bottom:273.000000px;}
.ye2{bottom:277.500000px;}
.y56{bottom:283.500000px;}
.yd0{bottom:285.000000px;}
.y28{bottom:288.000000px;}
.yb2{bottom:289.500000px;}
.y99{bottom:291.000000px;}
.ye1{bottom:295.500000px;}
.y55{bottom:301.500000px;}
.ycf{bottom:303.000000px;}
.y27{bottom:306.000000px;}
.yb1{bottom:307.500000px;}
.ye0{bottom:313.500000px;}
.y5{bottom:315.000000px;}
.y98{bottom:318.000000px;}
.y54{bottom:319.500000px;}
.yce{bottom:321.000000px;}
.y26{bottom:324.000000px;}
.yb0{bottom:325.500000px;}
.y97{bottom:336.000000px;}
.y53{bottom:337.500000px;}
.y25{bottom:342.000000px;}
.yaf{bottom:343.500000px;}
.ycd{bottom:348.000000px;}
.y2{bottom:354.000000px;}
.y52{bottom:355.500000px;}
.y24{bottom:360.000000px;}
.ycc{bottom:364.500000px;}
.yae{bottom:370.500000px;}
.y96{bottom:372.000000px;}
.y51{bottom:373.500000px;}
.y5b{bottom:375.000000px;}
.y7b{bottom:378.000000px;}
.yad{bottom:388.500000px;}
.y23{bottom:390.000000px;}
.y50{bottom:391.500000px;}
.y5a{bottom:393.000000px;}
.y7a{bottom:396.000000px;}
.yac{bottom:406.500000px;}
.y95{bottom:408.000000px;}
.y4f{bottom:409.500000px;}
.y79{bottom:414.000000px;}
.ycb{bottom:420.000000px;}
.yab{bottom:424.500000px;}
.y4e{bottom:427.500000px;}
.y78{bottom:432.000000px;}
.y94{bottom:435.000000px;}
.yca{bottom:438.000000px;}
.yaa{bottom:442.500000px;}
.y4d{bottom:445.500000px;}
.y22{bottom:451.500000px;}
.y93{bottom:453.000000px;}
.yc9{bottom:456.000000px;}
.y77{bottom:459.000000px;}
.ydf{bottom:460.500000px;}
.y4c{bottom:463.500000px;}
.y92{bottom:471.000000px;}
.ya9{bottom:472.500000px;}
.yc8{bottom:474.000000px;}
.y76{bottom:477.000000px;}
.y21{bottom:478.500000px;}
.y4b{bottom:481.500000px;}
.y91{bottom:489.000000px;}
.yc7{bottom:492.000000px;}
.y75{bottom:495.000000px;}
.yde{bottom:496.500000px;}
.y4a{bottom:499.500000px;}
.y20{bottom:505.500000px;}
.y90{bottom:507.000000px;}
.yc6{bottom:510.000000px;}
.y74{bottom:513.000000px;}
.ydd{bottom:514.500000px;}
.y49{bottom:517.500000px;}
.y8f{bottom:526.500000px;}
.yc5{bottom:528.000000px;}
.y73{bottom:531.000000px;}
.y1f{bottom:532.500000px;}
.y48{bottom:535.500000px;}
.y8e{bottom:544.500000px;}
.ya8{bottom:546.000000px;}
.y72{bottom:549.000000px;}
.y47{bottom:553.500000px;}
.y1e{bottom:559.500000px;}
.y8d{bottom:562.500000px;}
.y71{bottom:567.000000px;}
.y46{bottom:571.500000px;}
.yc4{bottom:573.000000px;}
.ydc{bottom:577.500000px;}
.y8c{bottom:580.500000px;}
.y70{bottom:586.500000px;}
.y1d{bottom:588.000000px;}
.y45{bottom:589.500000px;}
.yc3{bottom:591.000000px;}
.ydb{bottom:595.500000px;}
.y8b{bottom:598.500000px;}
.y44{bottom:607.500000px;}
.yc2{bottom:609.000000px;}
.y6f{bottom:613.500000px;}
.y8a{bottom:616.500000px;}
.y1c{bottom:618.000000px;}
.y43{bottom:625.500000px;}
.yc1{bottom:627.000000px;}
.y6e{bottom:631.500000px;}
.ya7{bottom:633.000000px;}
.y89{bottom:634.500000px;}
.yc0{bottom:645.000000px;}
.y6d{bottom:649.500000px;}
.ya6{bottom:651.000000px;}
.y88{bottom:652.500000px;}
.y42{bottom:654.000000px;}
.yda{bottom:658.500000px;}
.ybf{bottom:663.000000px;}
.y6c{bottom:667.500000px;}
.ya5{bottom:669.000000px;}
.y41{bottom:672.000000px;}
.yd9{bottom:676.500000px;}
.y87{bottom:679.500000px;}
.y1b{bottom:681.000000px;}
.ya4{bottom:687.000000px;}
.y40{bottom:690.000000px;}
.y6b{bottom:694.500000px;}
.y86{bottom:697.500000px;}
.y1a{bottom:699.000000px;}
.ya3{bottom:705.000000px;}
.y3f{bottom:708.000000px;}
.y6a{bottom:712.500000px;}
.y85{bottom:715.500000px;}
.y19{bottom:717.000000px;}
.ya2{bottom:723.000000px;}
.y1{bottom:724.500000px;}
.y3e{bottom:726.000000px;}
.y69{bottom:730.500000px;}
.y84{bottom:733.500000px;}
.y18{bottom:735.000000px;}
.ya1{bottom:741.000000px;}
.y3d{bottom:744.000000px;}
.y83{bottom:751.500000px;}
.y17{bottom:753.000000px;}
.y68{bottom:759.000000px;}
.yd8{bottom:760.500000px;}
.ybe{bottom:762.000000px;}
.y82{bottom:769.500000px;}
.y16{bottom:771.000000px;}
.ybd{bottom:780.000000px;}
.ya0{bottom:786.000000px;}
.y81{bottom:787.500000px;}
.y3c{bottom:789.000000px;}
.y15{bottom:798.000000px;}
.y9f{bottom:804.000000px;}
.y3b{bottom:807.000000px;}
.y67{bottom:810.000000px;}
.y14{bottom:816.000000px;}
.yd7{bottom:823.500000px;}
.y3a{bottom:825.000000px;}
.y66{bottom:828.000000px;}
.y13{bottom:834.000000px;}
.yd6{bottom:841.500000px;}
.y39{bottom:843.000000px;}
.y65{bottom:846.000000px;}
.y12{bottom:852.000000px;}
.yed{bottom:855.000000px;}
.yd5{bottom:859.500000px;}
.y38{bottom:861.000000px;}
.y64{bottom:864.000000px;}
.y80{bottom:867.000000px;}
.y11{bottom:870.000000px;}
.ybc{bottom:871.500000px;}
.yd4{bottom:877.500000px;}
.y63{bottom:882.000000px;}
.y37{bottom:888.000000px;}
.ybb{bottom:891.000000px;}
.y10{bottom:897.000000px;}
.y36{bottom:906.000000px;}
.y62{bottom:909.000000px;}
.yf{bottom:915.000000px;}
.yec{bottom:918.000000px;}
.y35{bottom:924.000000px;}
.y61{bottom:927.000000px;}
.ye{bottom:933.000000px;}
.yeb{bottom:936.000000px;}
.y34{bottom:942.000000px;}
.y60{bottom:945.000000px;}
.yd{bottom:951.000000px;}
.yea{bottom:954.000000px;}
.y33{bottom:960.000000px;}
.y5f{bottom:963.000000px;}
.yc{bottom:969.000000px;}
.ye9{bottom:972.000000px;}
.y32{bottom:978.000000px;}
.y5e{bottom:981.000000px;}
.yb{bottom:987.000000px;}
.ye8{bottom:990.000000px;}
.yba{bottom:999.000000px;}
.y31{bottom:1008.000000px;}
.ya{bottom:1014.000000px;}
.yb9{bottom:1017.000000px;}
.y5d{bottom:1026.000000px;}
.y9{bottom:1032.000000px;}
.yb8{bottom:1035.000000px;}
.y5c{bottom:1044.000000px;}
.y8{bottom:1050.000000px;}
.yb7{bottom:1053.000000px;}
.y30{bottom:1071.000000px;}
.y7{bottom:1080.000000px;}
.y2f{bottom:1089.000000px;}
.hd{height:28.089844px;}
.h5{height:37.500000px;}
.he{height:42.134766px;}
.h9{height:43.037109px;}
.h7{height:46.816406px;}
.hb{height:49.189453px;}
.hc{height:51.327739px;}
.ha{height:51.328339px;}
.h8{height:52.816406px;}
.h10{height:54.000000px;}
.h4{height:56.179688px;}
.h3{height:59.027344px;}
.h2{height:60.000000px;}
.hf{height:68.865234px;}
.h6{height:78.703125px;}
.h1{height:118.054688px;}
.h0{height:1263.000000px;}
.w1{width:211.050000px;}
.w2{width:419.700450px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:7.500000px;}
.x8{left:22.722285px;}
.x7{left:45.472785px;}
.x5{left:101.100225px;}
.x6{left:106.209600px;}
.xa{left:127.559055px;}
.x2{left:129.000000px;}
.xf{left:133.044438px;}
.x16{left:141.059055px;}
.x11{left:148.818900px;}
.x9{left:168.787650px;}
.x13{left:170.250000px;}
.x12{left:171.741900px;}
.x19{left:173.752500px;}
.x18{left:176.945850px;}
.x17{left:180.388200px;}
.x15{left:188.915550px;}
.x10{left:201.778575px;}
.x1{left:260.862300px;}
.x4{left:341.550000px;}
.x1a{left:379.434750px;}
.x14{left:408.728100px;}
.xe{left:433.916400px;}
.xd{left:436.500000px;}
.xc{left:438.291450px;}
.xb{left:442.078800px;}
@media print{
.v4{vertical-align:-17.882133pt;}
.v3{vertical-align:-16.093867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:17.882133pt;}
.ls11{letter-spacing:-5.137778pt;}
.ls16{letter-spacing:-2.147556pt;}
.ls1{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:-0.017067pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls19{letter-spacing:-0.007467pt;}
.ls2{letter-spacing:-0.006400pt;}
.ls15{letter-spacing:-0.005333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.004800pt;}
.lsb{letter-spacing:0.005333pt;}
.ls10{letter-spacing:0.006347pt;}
.ls12{letter-spacing:0.007111pt;}
.ls17{letter-spacing:0.007467pt;}
.ls6{letter-spacing:0.008533pt;}
.lsc{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.025600pt;}
.lse{letter-spacing:0.249777pt;}
.lsf{letter-spacing:1.635555pt;}
.ls13{letter-spacing:2.608000pt;}
.lsd{letter-spacing:3.216000pt;}
.ls18{letter-spacing:3.605333pt;}
.ls1c{letter-spacing:5.706667pt;}
.lsa{letter-spacing:6.968888pt;}
.ls14{letter-spacing:8.730667pt;}
.ls7{letter-spacing:15.680000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws3{word-spacing:-14.944000pt;}
.ws4{word-spacing:-14.938667pt;}
.wse{word-spacing:-14.933333pt;}
.wsd{word-spacing:-14.928000pt;}
.ws5{word-spacing:-14.922667pt;}
.wsf{word-spacing:-14.917333pt;}
.ws6{word-spacing:-14.773333pt;}
.wsc{word-spacing:-14.768000pt;}
.ws10{word-spacing:-14.762667pt;}
.wsa{word-spacing:-13.296000pt;}
.ws7{word-spacing:-9.856000pt;}
.ws9{word-spacing:-8.864000pt;}
.ws8{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:4.797333pt;}
.ws2{word-spacing:10.227893pt;}
._13{margin-left:-11.530667pt;}
._1e{margin-left:-10.308107pt;}
._12{margin-left:-8.634667pt;}
._10{margin-left:-6.929067pt;}
._e{margin-left:-5.612800pt;}
._8{margin-left:-4.453333pt;}
._f{margin-left:-3.460267pt;}
._3{margin-left:-2.533333pt;}
._4{margin-left:-0.922667pt;}
._d{width:0.889600pt;}
._0{width:1.779200pt;}
._2{width:2.944000pt;}
._5{width:4.550400pt;}
._c{width:5.729067pt;}
._7{width:6.693333pt;}
._a{width:7.852800pt;}
._1f{width:8.745067pt;}
._9{width:9.637333pt;}
._b{width:10.720000pt;}
._6{width:12.170667pt;}
._11{width:13.924248pt;}
._15{width:15.895467pt;}
._14{width:17.178667pt;}
._16{width:18.713600pt;}
._1a{width:19.717333pt;}
._18{width:20.762667pt;}
._1b{width:21.656533pt;}
._1d{width:22.640000pt;}
._1c{width:24.736000pt;}
._19{width:28.468267pt;}
._17{width:33.228800pt;}
._1{width:34.129760pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:35.555557pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.666667pt;}
.y3{bottom:30.666667pt;}
.y2e{bottom:49.333333pt;}
.y7f{bottom:144.000000pt;}
.y59{bottom:148.023467pt;}
.yf1{bottom:152.020933pt;}
.ye7{bottom:158.666667pt;}
.y7e{bottom:162.690133pt;}
.yf0{bottom:166.687600pt;}
.y2d{bottom:168.000000pt;}
.y58{bottom:172.000000pt;}
.ye6{bottom:174.666667pt;}
.yb6{bottom:177.333333pt;}
.y9e{bottom:178.666667pt;}
.yef{bottom:181.354267pt;}
.y2c{bottom:184.000000pt;}
.ye5{bottom:190.666667pt;}
.y57{bottom:190.690133pt;}
.yb5{bottom:193.333333pt;}
.y9d{bottom:194.666667pt;}
.yee{bottom:196.020933pt;}
.y2b{bottom:200.000000pt;}
.yd3{bottom:205.333333pt;}
.ye4{bottom:206.666667pt;}
.yb4{bottom:209.333333pt;}
.y9c{bottom:210.666667pt;}
.y2a{bottom:216.000000pt;}
.yd2{bottom:221.333333pt;}
.ye3{bottom:222.666667pt;}
.y7d{bottom:224.000000pt;}
.y6{bottom:225.333333pt;}
.y9b{bottom:226.666667pt;}
.y29{bottom:232.000000pt;}
.yd1{bottom:237.333333pt;}
.y7c{bottom:240.000000pt;}
.yb3{bottom:241.333333pt;}
.y9a{bottom:242.666667pt;}
.ye2{bottom:246.666667pt;}
.y56{bottom:252.000000pt;}
.yd0{bottom:253.333333pt;}
.y28{bottom:256.000000pt;}
.yb2{bottom:257.333333pt;}
.y99{bottom:258.666667pt;}
.ye1{bottom:262.666667pt;}
.y55{bottom:268.000000pt;}
.ycf{bottom:269.333333pt;}
.y27{bottom:272.000000pt;}
.yb1{bottom:273.333333pt;}
.ye0{bottom:278.666667pt;}
.y5{bottom:280.000000pt;}
.y98{bottom:282.666667pt;}
.y54{bottom:284.000000pt;}
.yce{bottom:285.333333pt;}
.y26{bottom:288.000000pt;}
.yb0{bottom:289.333333pt;}
.y97{bottom:298.666667pt;}
.y53{bottom:300.000000pt;}
.y25{bottom:304.000000pt;}
.yaf{bottom:305.333333pt;}
.ycd{bottom:309.333333pt;}
.y2{bottom:314.666667pt;}
.y52{bottom:316.000000pt;}
.y24{bottom:320.000000pt;}
.ycc{bottom:324.000000pt;}
.yae{bottom:329.333333pt;}
.y96{bottom:330.666667pt;}
.y51{bottom:332.000000pt;}
.y5b{bottom:333.333333pt;}
.y7b{bottom:336.000000pt;}
.yad{bottom:345.333333pt;}
.y23{bottom:346.666667pt;}
.y50{bottom:348.000000pt;}
.y5a{bottom:349.333333pt;}
.y7a{bottom:352.000000pt;}
.yac{bottom:361.333333pt;}
.y95{bottom:362.666667pt;}
.y4f{bottom:364.000000pt;}
.y79{bottom:368.000000pt;}
.ycb{bottom:373.333333pt;}
.yab{bottom:377.333333pt;}
.y4e{bottom:380.000000pt;}
.y78{bottom:384.000000pt;}
.y94{bottom:386.666667pt;}
.yca{bottom:389.333333pt;}
.yaa{bottom:393.333333pt;}
.y4d{bottom:396.000000pt;}
.y22{bottom:401.333333pt;}
.y93{bottom:402.666667pt;}
.yc9{bottom:405.333333pt;}
.y77{bottom:408.000000pt;}
.ydf{bottom:409.333333pt;}
.y4c{bottom:412.000000pt;}
.y92{bottom:418.666667pt;}
.ya9{bottom:420.000000pt;}
.yc8{bottom:421.333333pt;}
.y76{bottom:424.000000pt;}
.y21{bottom:425.333333pt;}
.y4b{bottom:428.000000pt;}
.y91{bottom:434.666667pt;}
.yc7{bottom:437.333333pt;}
.y75{bottom:440.000000pt;}
.yde{bottom:441.333333pt;}
.y4a{bottom:444.000000pt;}
.y20{bottom:449.333333pt;}
.y90{bottom:450.666667pt;}
.yc6{bottom:453.333333pt;}
.y74{bottom:456.000000pt;}
.ydd{bottom:457.333333pt;}
.y49{bottom:460.000000pt;}
.y8f{bottom:468.000000pt;}
.yc5{bottom:469.333333pt;}
.y73{bottom:472.000000pt;}
.y1f{bottom:473.333333pt;}
.y48{bottom:476.000000pt;}
.y8e{bottom:484.000000pt;}
.ya8{bottom:485.333333pt;}
.y72{bottom:488.000000pt;}
.y47{bottom:492.000000pt;}
.y1e{bottom:497.333333pt;}
.y8d{bottom:500.000000pt;}
.y71{bottom:504.000000pt;}
.y46{bottom:508.000000pt;}
.yc4{bottom:509.333333pt;}
.ydc{bottom:513.333333pt;}
.y8c{bottom:516.000000pt;}
.y70{bottom:521.333333pt;}
.y1d{bottom:522.666667pt;}
.y45{bottom:524.000000pt;}
.yc3{bottom:525.333333pt;}
.ydb{bottom:529.333333pt;}
.y8b{bottom:532.000000pt;}
.y44{bottom:540.000000pt;}
.yc2{bottom:541.333333pt;}
.y6f{bottom:545.333333pt;}
.y8a{bottom:548.000000pt;}
.y1c{bottom:549.333333pt;}
.y43{bottom:556.000000pt;}
.yc1{bottom:557.333333pt;}
.y6e{bottom:561.333333pt;}
.ya7{bottom:562.666667pt;}
.y89{bottom:564.000000pt;}
.yc0{bottom:573.333333pt;}
.y6d{bottom:577.333333pt;}
.ya6{bottom:578.666667pt;}
.y88{bottom:580.000000pt;}
.y42{bottom:581.333333pt;}
.yda{bottom:585.333333pt;}
.ybf{bottom:589.333333pt;}
.y6c{bottom:593.333333pt;}
.ya5{bottom:594.666667pt;}
.y41{bottom:597.333333pt;}
.yd9{bottom:601.333333pt;}
.y87{bottom:604.000000pt;}
.y1b{bottom:605.333333pt;}
.ya4{bottom:610.666667pt;}
.y40{bottom:613.333333pt;}
.y6b{bottom:617.333333pt;}
.y86{bottom:620.000000pt;}
.y1a{bottom:621.333333pt;}
.ya3{bottom:626.666667pt;}
.y3f{bottom:629.333333pt;}
.y6a{bottom:633.333333pt;}
.y85{bottom:636.000000pt;}
.y19{bottom:637.333333pt;}
.ya2{bottom:642.666667pt;}
.y1{bottom:644.000000pt;}
.y3e{bottom:645.333333pt;}
.y69{bottom:649.333333pt;}
.y84{bottom:652.000000pt;}
.y18{bottom:653.333333pt;}
.ya1{bottom:658.666667pt;}
.y3d{bottom:661.333333pt;}
.y83{bottom:668.000000pt;}
.y17{bottom:669.333333pt;}
.y68{bottom:674.666667pt;}
.yd8{bottom:676.000000pt;}
.ybe{bottom:677.333333pt;}
.y82{bottom:684.000000pt;}
.y16{bottom:685.333333pt;}
.ybd{bottom:693.333333pt;}
.ya0{bottom:698.666667pt;}
.y81{bottom:700.000000pt;}
.y3c{bottom:701.333333pt;}
.y15{bottom:709.333333pt;}
.y9f{bottom:714.666667pt;}
.y3b{bottom:717.333333pt;}
.y67{bottom:720.000000pt;}
.y14{bottom:725.333333pt;}
.yd7{bottom:732.000000pt;}
.y3a{bottom:733.333333pt;}
.y66{bottom:736.000000pt;}
.y13{bottom:741.333333pt;}
.yd6{bottom:748.000000pt;}
.y39{bottom:749.333333pt;}
.y65{bottom:752.000000pt;}
.y12{bottom:757.333333pt;}
.yed{bottom:760.000000pt;}
.yd5{bottom:764.000000pt;}
.y38{bottom:765.333333pt;}
.y64{bottom:768.000000pt;}
.y80{bottom:770.666667pt;}
.y11{bottom:773.333333pt;}
.ybc{bottom:774.666667pt;}
.yd4{bottom:780.000000pt;}
.y63{bottom:784.000000pt;}
.y37{bottom:789.333333pt;}
.ybb{bottom:792.000000pt;}
.y10{bottom:797.333333pt;}
.y36{bottom:805.333333pt;}
.y62{bottom:808.000000pt;}
.yf{bottom:813.333333pt;}
.yec{bottom:816.000000pt;}
.y35{bottom:821.333333pt;}
.y61{bottom:824.000000pt;}
.ye{bottom:829.333333pt;}
.yeb{bottom:832.000000pt;}
.y34{bottom:837.333333pt;}
.y60{bottom:840.000000pt;}
.yd{bottom:845.333333pt;}
.yea{bottom:848.000000pt;}
.y33{bottom:853.333333pt;}
.y5f{bottom:856.000000pt;}
.yc{bottom:861.333333pt;}
.ye9{bottom:864.000000pt;}
.y32{bottom:869.333333pt;}
.y5e{bottom:872.000000pt;}
.yb{bottom:877.333333pt;}
.ye8{bottom:880.000000pt;}
.yba{bottom:888.000000pt;}
.y31{bottom:896.000000pt;}
.ya{bottom:901.333333pt;}
.yb9{bottom:904.000000pt;}
.y5d{bottom:912.000000pt;}
.y9{bottom:917.333333pt;}
.yb8{bottom:920.000000pt;}
.y5c{bottom:928.000000pt;}
.y8{bottom:933.333333pt;}
.yb7{bottom:936.000000pt;}
.y30{bottom:952.000000pt;}
.y7{bottom:960.000000pt;}
.y2f{bottom:968.000000pt;}
.hd{height:24.968750pt;}
.h5{height:33.333333pt;}
.he{height:37.453125pt;}
.h9{height:38.255208pt;}
.h7{height:41.614583pt;}
.hb{height:43.723958pt;}
.hc{height:45.624657pt;}
.ha{height:45.625190pt;}
.h8{height:46.947917pt;}
.h10{height:48.000000pt;}
.h4{height:49.937500pt;}
.h3{height:52.468750pt;}
.h2{height:53.333333pt;}
.hf{height:61.213542pt;}
.h6{height:69.958333pt;}
.h1{height:104.937500pt;}
.h0{height:1122.666667pt;}
.w1{width:187.600000pt;}
.w2{width:373.067067pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:6.666667pt;}
.x8{left:20.197587pt;}
.x7{left:40.420253pt;}
.x5{left:89.866867pt;}
.x6{left:94.408533pt;}
.xa{left:113.385827pt;}
.x2{left:114.666667pt;}
.xf{left:118.261723pt;}
.x16{left:125.385827pt;}
.x11{left:132.283467pt;}
.x9{left:150.033467pt;}
.x13{left:151.333333pt;}
.x12{left:152.659467pt;}
.x19{left:154.446667pt;}
.x18{left:157.285200pt;}
.x17{left:160.345067pt;}
.x15{left:167.924933pt;}
.x10{left:179.358733pt;}
.x1{left:231.877600pt;}
.x4{left:303.600000pt;}
.x1a{left:337.275333pt;}
.x14{left:363.313867pt;}
.xe{left:385.703467pt;}
.xd{left:388.000000pt;}
.xc{left:389.592400pt;}
.xb{left:392.958933pt;}
}




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