
    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_b642b51e4cd4d589d4273fae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4e0aba84f0b3b5e64b457f92.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_198baa933e4e8859fdc3eda7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7579634c3ea8cec2828eecf4.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v3{vertical-align:-19.500000px;}
.v4{vertical-align:-18.000000px;}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.500000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.750000px;}
.ls2{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.ls6{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.340000px;}
.ls5{letter-spacing:10.500000px;}
.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:-16.500000px;}
.ws5{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws6{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws2{word-spacing:-8.625000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-9.318000px;}
._2{margin-left:-8.202000px;}
._6{margin-left:-7.086000px;}
._3{margin-left:-5.940000px;}
._12{margin-left:-4.590000px;}
._1{margin-left:-3.558000px;}
._5{margin-left:-1.572000px;}
._7{width:1.032000px;}
._0{width:2.046000px;}
._e{width:3.750000px;}
._b{width:4.842000px;}
._a{width:6.648000px;}
._4{width:7.896000px;}
._8{width:9.021000px;}
._c{width:10.782000px;}
._f{width:11.994000px;}
._9{width:13.566000px;}
._15{width:15.588000px;}
._10{width:17.172000px;}
._11{width:18.288000px;}
._13{width:1844.592000px;}
._d{width:1854.468000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.500000px;}
.fs4{font-size:34.500000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:88.125000px;}
.y3{bottom:88.875000px;}
.y20{bottom:128.250000px;}
.yd2{bottom:129.750000px;}
.y63{bottom:130.125000px;}
.ycc{bottom:132.750000px;}
.y1f{bottom:143.250000px;}
.y62{bottom:145.125000px;}
.ycb{bottom:146.250000px;}
.y1e{bottom:158.250000px;}
.yca{bottom:159.750000px;}
.y61{bottom:160.125000px;}
.yd1{bottom:168.000000px;}
.y1d{bottom:173.250000px;}
.y72{bottom:175.125000px;}
.y11f{bottom:177.000000px;}
.yd0{bottom:181.500000px;}
.y28{bottom:188.250000px;}
.y60{bottom:190.125000px;}
.yc9{bottom:195.375000px;}
.y1c{bottom:203.250000px;}
.y5f{bottom:205.125000px;}
.ycf{bottom:206.625000px;}
.yc8{bottom:208.875000px;}
.y1b{bottom:218.250000px;}
.y5e{bottom:220.125000px;}
.yc7{bottom:222.375000px;}
.y1a{bottom:233.250000px;}
.y5d{bottom:235.125000px;}
.yc6{bottom:244.500000px;}
.yce{bottom:245.250000px;}
.yf7{bottom:247.125000px;}
.y11e{bottom:247.500000px;}
.y19{bottom:248.250000px;}
.y5c{bottom:250.125000px;}
.y8c{bottom:252.375000px;}
.yc5{bottom:258.000000px;}
.ycd{bottom:258.750000px;}
.yf6{bottom:260.625000px;}
.y11d{bottom:261.000000px;}
.y18{bottom:263.250000px;}
.y5b{bottom:265.125000px;}
.y8b{bottom:267.375000px;}
.yf5{bottom:274.125000px;}
.y27{bottom:278.250000px;}
.yc4{bottom:279.750000px;}
.y5a{bottom:280.125000px;}
.y8a{bottom:282.375000px;}
.y11c{bottom:284.250000px;}
.yf4{bottom:287.625000px;}
.y17{bottom:293.250000px;}
.y59{bottom:295.125000px;}
.y89{bottom:297.375000px;}
.y11b{bottom:297.750000px;}
.y16{bottom:308.250000px;}
.yf3{bottom:309.750000px;}
.y58{bottom:310.125000px;}
.y88{bottom:312.375000px;}
.y11a{bottom:321.000000px;}
.y15{bottom:323.250000px;}
.y57{bottom:325.125000px;}
.y87{bottom:327.375000px;}
.y119{bottom:334.500000px;}
.y14{bottom:338.250000px;}
.y56{bottom:340.125000px;}
.y86{bottom:342.375000px;}
.yf2{bottom:345.000000px;}
.y118{bottom:348.000000px;}
.y13{bottom:353.250000px;}
.y71{bottom:355.125000px;}
.y85{bottom:357.375000px;}
.yf1{bottom:358.500000px;}
.y12{bottom:368.250000px;}
.y55{bottom:370.125000px;}
.y26{bottom:370.500000px;}
.y117{bottom:371.250000px;}
.y84{bottom:372.375000px;}
.yf0{bottom:380.625000px;}
.y11{bottom:383.250000px;}
.y116{bottom:384.750000px;}
.y54{bottom:385.125000px;}
.y25{bottom:385.500000px;}
.y83{bottom:387.375000px;}
.yef{bottom:394.125000px;}
.y10{bottom:398.250000px;}
.y53{bottom:400.125000px;}
.y24{bottom:400.500000px;}
.y82{bottom:402.375000px;}
.yee{bottom:407.625000px;}
.y115{bottom:408.000000px;}
.yf{bottom:413.250000px;}
.y52{bottom:415.125000px;}
.y23{bottom:415.500000px;}
.y81{bottom:417.375000px;}
.y114{bottom:421.500000px;}
.yed{bottom:429.750000px;}
.y51{bottom:430.125000px;}
.y80{bottom:432.375000px;}
.ybe{bottom:435.000000px;}
.yc3{bottom:436.875000px;}
.y22{bottom:443.250000px;}
.y50{bottom:445.125000px;}
.y7f{bottom:447.375000px;}
.ybd{bottom:448.500000px;}
.yc2{bottom:450.375000px;}
.yec{bottom:456.750000px;}
.y21{bottom:458.250000px;}
.y4f{bottom:460.125000px;}
.ybc{bottom:462.000000px;}
.y7e{bottom:462.375000px;}
.yc1{bottom:463.875000px;}
.y113{bottom:471.750000px;}
.y4e{bottom:475.125000px;}
.ybb{bottom:475.500000px;}
.y7d{bottom:477.375000px;}
.yeb{bottom:478.500000px;}
.yc0{bottom:481.875000px;}
.y112{bottom:485.250000px;}
.yba{bottom:489.000000px;}
.y4d{bottom:490.125000px;}
.yea{bottom:492.000000px;}
.y7c{bottom:492.375000px;}
.ybf{bottom:499.125000px;}
.yb9{bottom:502.500000px;}
.y4c{bottom:505.125000px;}
.ye9{bottom:505.500000px;}
.y7b{bottom:507.375000px;}
.y111{bottom:508.500000px;}
.yb8{bottom:516.000000px;}
.y4b{bottom:520.125000px;}
.y110{bottom:522.000000px;}
.y7a{bottom:522.375000px;}
.ye8{bottom:527.625000px;}
.yb7{bottom:529.500000px;}
.y4a{bottom:535.125000px;}
.y10f{bottom:535.500000px;}
.y79{bottom:537.375000px;}
.ye7{bottom:541.125000px;}
.yb6{bottom:543.000000px;}
.y49{bottom:550.125000px;}
.y78{bottom:552.375000px;}
.ye6{bottom:554.625000px;}
.yb5{bottom:556.500000px;}
.y10e{bottom:558.750000px;}
.y77{bottom:565.125000px;}
.y70{bottom:567.375000px;}
.yb4{bottom:570.000000px;}
.y10d{bottom:572.250000px;}
.ye5{bottom:576.375000px;}
.y48{bottom:580.125000px;}
.y6f{bottom:582.375000px;}
.yb3{bottom:588.000000px;}
.ye4{bottom:589.875000px;}
.y47{bottom:595.125000px;}
.y10c{bottom:595.500000px;}
.y6e{bottom:597.375000px;}
.yb2{bottom:605.250000px;}
.y10b{bottom:609.000000px;}
.y46{bottom:610.125000px;}
.ye3{bottom:612.000000px;}
.y6d{bottom:612.375000px;}
.yb1{bottom:618.750000px;}
.y45{bottom:625.125000px;}
.ye2{bottom:625.500000px;}
.y6c{bottom:627.375000px;}
.yb0{bottom:632.250000px;}
.y44{bottom:640.125000px;}
.y6b{bottom:642.375000px;}
.yaf{bottom:645.750000px;}
.ye1{bottom:647.625000px;}
.y43{bottom:655.125000px;}
.y6a{bottom:657.375000px;}
.yae{bottom:659.250000px;}
.ye0{bottom:661.125000px;}
.y42{bottom:670.125000px;}
.y69{bottom:672.375000px;}
.yad{bottom:672.750000px;}
.ye{bottom:678.750000px;}
.ydf{bottom:682.875000px;}
.y41{bottom:685.125000px;}
.yac{bottom:686.250000px;}
.y68{bottom:687.375000px;}
.yd{bottom:693.750000px;}
.y10a{bottom:696.000000px;}
.yde{bottom:696.375000px;}
.yab{bottom:699.750000px;}
.y40{bottom:700.125000px;}
.y67{bottom:702.375000px;}
.yc{bottom:708.750000px;}
.y109{bottom:709.500000px;}
.yaa{bottom:713.250000px;}
.y3f{bottom:715.125000px;}
.y66{bottom:717.375000px;}
.ydd{bottom:718.500000px;}
.yb{bottom:723.750000px;}
.ya9{bottom:726.750000px;}
.y3e{bottom:730.125000px;}
.ydc{bottom:732.000000px;}
.y65{bottom:732.375000px;}
.y108{bottom:732.750000px;}
.ya{bottom:738.750000px;}
.ya8{bottom:740.250000px;}
.y3d{bottom:745.125000px;}
.ydb{bottom:745.500000px;}
.y107{bottom:746.250000px;}
.y94{bottom:747.375000px;}
.ya7{bottom:758.250000px;}
.y3c{bottom:760.125000px;}
.y93{bottom:762.375000px;}
.y9{bottom:766.875000px;}
.yda{bottom:767.250000px;}
.y106{bottom:769.500000px;}
.y3b{bottom:775.125000px;}
.ya6{bottom:775.875000px;}
.y92{bottom:777.375000px;}
.yd9{bottom:780.750000px;}
.y105{bottom:783.000000px;}
.ya5{bottom:789.375000px;}
.y3a{bottom:790.125000px;}
.y91{bottom:792.375000px;}
.ya4{bottom:802.875000px;}
.y39{bottom:805.125000px;}
.y104{bottom:806.250000px;}
.y90{bottom:807.375000px;}
.ya3{bottom:816.375000px;}
.y103{bottom:819.750000px;}
.y38{bottom:820.125000px;}
.y8f{bottom:822.375000px;}
.y102{bottom:833.250000px;}
.ya2{bottom:834.375000px;}
.y37{bottom:835.125000px;}
.y8e{bottom:837.375000px;}
.yd8{bottom:838.500000px;}
.y36{bottom:850.125000px;}
.ya1{bottom:852.000000px;}
.y8d{bottom:852.375000px;}
.y101{bottom:856.500000px;}
.y35{bottom:865.125000px;}
.ya0{bottom:870.000000px;}
.y8{bottom:870.375000px;}
.yd7{bottom:873.750000px;}
.y34{bottom:880.125000px;}
.y100{bottom:883.500000px;}
.y7{bottom:885.375000px;}
.y9f{bottom:887.250000px;}
.y33{bottom:895.125000px;}
.y9e{bottom:900.750000px;}
.yff{bottom:906.750000px;}
.y32{bottom:910.125000px;}
.y9d{bottom:918.750000px;}
.yfe{bottom:920.250000px;}
.yd6{bottom:922.875000px;}
.y31{bottom:925.125000px;}
.yfd{bottom:933.750000px;}
.y6{bottom:934.500000px;}
.y9c{bottom:936.375000px;}
.y30{bottom:940.125000px;}
.yfc{bottom:947.250000px;}
.y9b{bottom:949.875000px;}
.y2f{bottom:955.125000px;}
.y5{bottom:961.500000px;}
.y9a{bottom:967.875000px;}
.y2e{bottom:970.125000px;}
.yfb{bottom:970.500000px;}
.yd5{bottom:971.625000px;}
.y76{bottom:972.375000px;}
.yfa{bottom:984.000000px;}
.y64{bottom:985.125000px;}
.y75{bottom:987.375000px;}
.y4{bottom:988.500000px;}
.yf9{bottom:997.500000px;}
.yd4{bottom:998.625000px;}
.y2d{bottom:1000.125000px;}
.y74{bottom:1002.375000px;}
.y99{bottom:1003.125000px;}
.yf8{bottom:1011.000000px;}
.yd3{bottom:1012.125000px;}
.y2c{bottom:1015.125000px;}
.y73{bottom:1017.375000px;}
.y98{bottom:1020.750000px;}
.y2b{bottom:1030.125000px;}
.y97{bottom:1034.250000px;}
.y2a{bottom:1045.125000px;}
.y96{bottom:1047.750000px;}
.y29{bottom:1060.125000px;}
.y95{bottom:1061.250000px;}
.y1{bottom:1107.375000px;}
.h9{height:34.998047px;}
.h2{height:47.109375px;}
.hb{height:52.971680px;}
.h8{height:52.998047px;}
.ha{height:54.421875px;}
.h7{height:58.857422px;}
.h5{height:58.886719px;}
.h4{height:60.468750px;}
.h1{height:64.775391px;}
.h6{height:66.515625px;}
.h3{height:108.843750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.687500px;}
.x4{left:114.562500px;}
.x3{left:476.062500px;}
.x5{left:492.937500px;}
.x2{left:808.312500px;}
@media print{
.v3{vertical-align:-17.333333pt;}
.v4{vertical-align:-16.000000pt;}
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.333333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.666667pt;}
.ls2{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls5{letter-spacing:9.333333pt;}
.ws4{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws2{word-spacing:-7.666667pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-8.282667pt;}
._2{margin-left:-7.290667pt;}
._6{margin-left:-6.298667pt;}
._3{margin-left:-5.280000pt;}
._12{margin-left:-4.080000pt;}
._1{margin-left:-3.162667pt;}
._5{margin-left:-1.397333pt;}
._7{width:0.917333pt;}
._0{width:1.818667pt;}
._e{width:3.333333pt;}
._b{width:4.304000pt;}
._a{width:5.909333pt;}
._4{width:7.018667pt;}
._8{width:8.018667pt;}
._c{width:9.584000pt;}
._f{width:10.661333pt;}
._9{width:12.058667pt;}
._15{width:13.856000pt;}
._10{width:15.264000pt;}
._11{width:16.256000pt;}
._13{width:1639.637333pt;}
._d{width:1648.416000pt;}
.fs6{font-size:28.000000pt;}
.fs4{font-size:30.666667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:78.333333pt;}
.y3{bottom:79.000000pt;}
.y20{bottom:114.000000pt;}
.yd2{bottom:115.333333pt;}
.y63{bottom:115.666667pt;}
.ycc{bottom:118.000000pt;}
.y1f{bottom:127.333333pt;}
.y62{bottom:129.000000pt;}
.ycb{bottom:130.000000pt;}
.y1e{bottom:140.666667pt;}
.yca{bottom:142.000000pt;}
.y61{bottom:142.333333pt;}
.yd1{bottom:149.333333pt;}
.y1d{bottom:154.000000pt;}
.y72{bottom:155.666667pt;}
.y11f{bottom:157.333333pt;}
.yd0{bottom:161.333333pt;}
.y28{bottom:167.333333pt;}
.y60{bottom:169.000000pt;}
.yc9{bottom:173.666667pt;}
.y1c{bottom:180.666667pt;}
.y5f{bottom:182.333333pt;}
.ycf{bottom:183.666667pt;}
.yc8{bottom:185.666667pt;}
.y1b{bottom:194.000000pt;}
.y5e{bottom:195.666667pt;}
.yc7{bottom:197.666667pt;}
.y1a{bottom:207.333333pt;}
.y5d{bottom:209.000000pt;}
.yc6{bottom:217.333333pt;}
.yce{bottom:218.000000pt;}
.yf7{bottom:219.666667pt;}
.y11e{bottom:220.000000pt;}
.y19{bottom:220.666667pt;}
.y5c{bottom:222.333333pt;}
.y8c{bottom:224.333333pt;}
.yc5{bottom:229.333333pt;}
.ycd{bottom:230.000000pt;}
.yf6{bottom:231.666667pt;}
.y11d{bottom:232.000000pt;}
.y18{bottom:234.000000pt;}
.y5b{bottom:235.666667pt;}
.y8b{bottom:237.666667pt;}
.yf5{bottom:243.666667pt;}
.y27{bottom:247.333333pt;}
.yc4{bottom:248.666667pt;}
.y5a{bottom:249.000000pt;}
.y8a{bottom:251.000000pt;}
.y11c{bottom:252.666667pt;}
.yf4{bottom:255.666667pt;}
.y17{bottom:260.666667pt;}
.y59{bottom:262.333333pt;}
.y89{bottom:264.333333pt;}
.y11b{bottom:264.666667pt;}
.y16{bottom:274.000000pt;}
.yf3{bottom:275.333333pt;}
.y58{bottom:275.666667pt;}
.y88{bottom:277.666667pt;}
.y11a{bottom:285.333333pt;}
.y15{bottom:287.333333pt;}
.y57{bottom:289.000000pt;}
.y87{bottom:291.000000pt;}
.y119{bottom:297.333333pt;}
.y14{bottom:300.666667pt;}
.y56{bottom:302.333333pt;}
.y86{bottom:304.333333pt;}
.yf2{bottom:306.666667pt;}
.y118{bottom:309.333333pt;}
.y13{bottom:314.000000pt;}
.y71{bottom:315.666667pt;}
.y85{bottom:317.666667pt;}
.yf1{bottom:318.666667pt;}
.y12{bottom:327.333333pt;}
.y55{bottom:329.000000pt;}
.y26{bottom:329.333333pt;}
.y117{bottom:330.000000pt;}
.y84{bottom:331.000000pt;}
.yf0{bottom:338.333333pt;}
.y11{bottom:340.666667pt;}
.y116{bottom:342.000000pt;}
.y54{bottom:342.333333pt;}
.y25{bottom:342.666667pt;}
.y83{bottom:344.333333pt;}
.yef{bottom:350.333333pt;}
.y10{bottom:354.000000pt;}
.y53{bottom:355.666667pt;}
.y24{bottom:356.000000pt;}
.y82{bottom:357.666667pt;}
.yee{bottom:362.333333pt;}
.y115{bottom:362.666667pt;}
.yf{bottom:367.333333pt;}
.y52{bottom:369.000000pt;}
.y23{bottom:369.333333pt;}
.y81{bottom:371.000000pt;}
.y114{bottom:374.666667pt;}
.yed{bottom:382.000000pt;}
.y51{bottom:382.333333pt;}
.y80{bottom:384.333333pt;}
.ybe{bottom:386.666667pt;}
.yc3{bottom:388.333333pt;}
.y22{bottom:394.000000pt;}
.y50{bottom:395.666667pt;}
.y7f{bottom:397.666667pt;}
.ybd{bottom:398.666667pt;}
.yc2{bottom:400.333333pt;}
.yec{bottom:406.000000pt;}
.y21{bottom:407.333333pt;}
.y4f{bottom:409.000000pt;}
.ybc{bottom:410.666667pt;}
.y7e{bottom:411.000000pt;}
.yc1{bottom:412.333333pt;}
.y113{bottom:419.333333pt;}
.y4e{bottom:422.333333pt;}
.ybb{bottom:422.666667pt;}
.y7d{bottom:424.333333pt;}
.yeb{bottom:425.333333pt;}
.yc0{bottom:428.333333pt;}
.y112{bottom:431.333333pt;}
.yba{bottom:434.666667pt;}
.y4d{bottom:435.666667pt;}
.yea{bottom:437.333333pt;}
.y7c{bottom:437.666667pt;}
.ybf{bottom:443.666667pt;}
.yb9{bottom:446.666667pt;}
.y4c{bottom:449.000000pt;}
.ye9{bottom:449.333333pt;}
.y7b{bottom:451.000000pt;}
.y111{bottom:452.000000pt;}
.yb8{bottom:458.666667pt;}
.y4b{bottom:462.333333pt;}
.y110{bottom:464.000000pt;}
.y7a{bottom:464.333333pt;}
.ye8{bottom:469.000000pt;}
.yb7{bottom:470.666667pt;}
.y4a{bottom:475.666667pt;}
.y10f{bottom:476.000000pt;}
.y79{bottom:477.666667pt;}
.ye7{bottom:481.000000pt;}
.yb6{bottom:482.666667pt;}
.y49{bottom:489.000000pt;}
.y78{bottom:491.000000pt;}
.ye6{bottom:493.000000pt;}
.yb5{bottom:494.666667pt;}
.y10e{bottom:496.666667pt;}
.y77{bottom:502.333333pt;}
.y70{bottom:504.333333pt;}
.yb4{bottom:506.666667pt;}
.y10d{bottom:508.666667pt;}
.ye5{bottom:512.333333pt;}
.y48{bottom:515.666667pt;}
.y6f{bottom:517.666667pt;}
.yb3{bottom:522.666667pt;}
.ye4{bottom:524.333333pt;}
.y47{bottom:529.000000pt;}
.y10c{bottom:529.333333pt;}
.y6e{bottom:531.000000pt;}
.yb2{bottom:538.000000pt;}
.y10b{bottom:541.333333pt;}
.y46{bottom:542.333333pt;}
.ye3{bottom:544.000000pt;}
.y6d{bottom:544.333333pt;}
.yb1{bottom:550.000000pt;}
.y45{bottom:555.666667pt;}
.ye2{bottom:556.000000pt;}
.y6c{bottom:557.666667pt;}
.yb0{bottom:562.000000pt;}
.y44{bottom:569.000000pt;}
.y6b{bottom:571.000000pt;}
.yaf{bottom:574.000000pt;}
.ye1{bottom:575.666667pt;}
.y43{bottom:582.333333pt;}
.y6a{bottom:584.333333pt;}
.yae{bottom:586.000000pt;}
.ye0{bottom:587.666667pt;}
.y42{bottom:595.666667pt;}
.y69{bottom:597.666667pt;}
.yad{bottom:598.000000pt;}
.ye{bottom:603.333333pt;}
.ydf{bottom:607.000000pt;}
.y41{bottom:609.000000pt;}
.yac{bottom:610.000000pt;}
.y68{bottom:611.000000pt;}
.yd{bottom:616.666667pt;}
.y10a{bottom:618.666667pt;}
.yde{bottom:619.000000pt;}
.yab{bottom:622.000000pt;}
.y40{bottom:622.333333pt;}
.y67{bottom:624.333333pt;}
.yc{bottom:630.000000pt;}
.y109{bottom:630.666667pt;}
.yaa{bottom:634.000000pt;}
.y3f{bottom:635.666667pt;}
.y66{bottom:637.666667pt;}
.ydd{bottom:638.666667pt;}
.yb{bottom:643.333333pt;}
.ya9{bottom:646.000000pt;}
.y3e{bottom:649.000000pt;}
.ydc{bottom:650.666667pt;}
.y65{bottom:651.000000pt;}
.y108{bottom:651.333333pt;}
.ya{bottom:656.666667pt;}
.ya8{bottom:658.000000pt;}
.y3d{bottom:662.333333pt;}
.ydb{bottom:662.666667pt;}
.y107{bottom:663.333333pt;}
.y94{bottom:664.333333pt;}
.ya7{bottom:674.000000pt;}
.y3c{bottom:675.666667pt;}
.y93{bottom:677.666667pt;}
.y9{bottom:681.666667pt;}
.yda{bottom:682.000000pt;}
.y106{bottom:684.000000pt;}
.y3b{bottom:689.000000pt;}
.ya6{bottom:689.666667pt;}
.y92{bottom:691.000000pt;}
.yd9{bottom:694.000000pt;}
.y105{bottom:696.000000pt;}
.ya5{bottom:701.666667pt;}
.y3a{bottom:702.333333pt;}
.y91{bottom:704.333333pt;}
.ya4{bottom:713.666667pt;}
.y39{bottom:715.666667pt;}
.y104{bottom:716.666667pt;}
.y90{bottom:717.666667pt;}
.ya3{bottom:725.666667pt;}
.y103{bottom:728.666667pt;}
.y38{bottom:729.000000pt;}
.y8f{bottom:731.000000pt;}
.y102{bottom:740.666667pt;}
.ya2{bottom:741.666667pt;}
.y37{bottom:742.333333pt;}
.y8e{bottom:744.333333pt;}
.yd8{bottom:745.333333pt;}
.y36{bottom:755.666667pt;}
.ya1{bottom:757.333333pt;}
.y8d{bottom:757.666667pt;}
.y101{bottom:761.333333pt;}
.y35{bottom:769.000000pt;}
.ya0{bottom:773.333333pt;}
.y8{bottom:773.666667pt;}
.yd7{bottom:776.666667pt;}
.y34{bottom:782.333333pt;}
.y100{bottom:785.333333pt;}
.y7{bottom:787.000000pt;}
.y9f{bottom:788.666667pt;}
.y33{bottom:795.666667pt;}
.y9e{bottom:800.666667pt;}
.yff{bottom:806.000000pt;}
.y32{bottom:809.000000pt;}
.y9d{bottom:816.666667pt;}
.yfe{bottom:818.000000pt;}
.yd6{bottom:820.333333pt;}
.y31{bottom:822.333333pt;}
.yfd{bottom:830.000000pt;}
.y6{bottom:830.666667pt;}
.y9c{bottom:832.333333pt;}
.y30{bottom:835.666667pt;}
.yfc{bottom:842.000000pt;}
.y9b{bottom:844.333333pt;}
.y2f{bottom:849.000000pt;}
.y5{bottom:854.666667pt;}
.y9a{bottom:860.333333pt;}
.y2e{bottom:862.333333pt;}
.yfb{bottom:862.666667pt;}
.yd5{bottom:863.666667pt;}
.y76{bottom:864.333333pt;}
.yfa{bottom:874.666667pt;}
.y64{bottom:875.666667pt;}
.y75{bottom:877.666667pt;}
.y4{bottom:878.666667pt;}
.yf9{bottom:886.666667pt;}
.yd4{bottom:887.666667pt;}
.y2d{bottom:889.000000pt;}
.y74{bottom:891.000000pt;}
.y99{bottom:891.666667pt;}
.yf8{bottom:898.666667pt;}
.yd3{bottom:899.666667pt;}
.y2c{bottom:902.333333pt;}
.y73{bottom:904.333333pt;}
.y98{bottom:907.333333pt;}
.y2b{bottom:915.666667pt;}
.y97{bottom:919.333333pt;}
.y2a{bottom:929.000000pt;}
.y96{bottom:931.333333pt;}
.y29{bottom:942.333333pt;}
.y95{bottom:943.333333pt;}
.y1{bottom:984.333333pt;}
.h9{height:31.109375pt;}
.h2{height:41.875000pt;}
.hb{height:47.085938pt;}
.h8{height:47.109375pt;}
.ha{height:48.375000pt;}
.h7{height:52.317708pt;}
.h5{height:52.343750pt;}
.h4{height:53.750000pt;}
.h1{height:57.578125pt;}
.h6{height:59.125000pt;}
.h3{height:96.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.833333pt;}
.x4{left:101.833333pt;}
.x3{left:423.166667pt;}
.x5{left:438.166667pt;}
.x2{left:718.500000pt;}
}




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