
    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_672adb7b223d10417a503bdc.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_4990f2f0be51d72a29e7d130.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_ab8033db03bb9f1b57dc83b0.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;}
.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(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.500000px;}
.v3{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.500000px;}
.v4{vertical-align:41.962854px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.750000px;}
.ls7{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.984000px;}
.ls3{letter-spacing:1.020000px;}
.ls5{letter-spacing:1.344000px;}
.ls4{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.lsa{letter-spacing:3.024000px;}
.ls9{letter-spacing:340.344000px;}
.ls8{letter-spacing:342.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.488000px;}
.ws0{word-spacing:-12.000000px;}
.ws4{word-spacing:-10.500000px;}
.ws3{word-spacing:0.000000px;}
._18{margin-left:-7.830000px;}
._2{margin-left:-6.762000px;}
._8{margin-left:-5.532000px;}
._5{margin-left:-4.494000px;}
._3{margin-left:-3.312000px;}
._1{margin-left:-1.890000px;}
._4{width:1.020000px;}
._0{width:2.046000px;}
._c{width:3.162000px;}
._f{width:4.662000px;}
._7{width:6.108000px;}
._9{width:7.614000px;}
._e{width:9.522000px;}
._a{width:10.608000px;}
._6{width:12.162000px;}
._b{width:13.908000px;}
._19{width:15.474000px;}
._12{width:16.668000px;}
._11{width:18.852000px;}
._10{width:20.130000px;}
._14{width:195.216000px;}
._15{width:340.344000px;}
._16{width:342.984000px;}
._17{width:437.487348px;}
._13{width:1844.790000px;}
._d{width:1854.480000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.500000px;}
.fs5{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:53.952000px;}
.fs7{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;}
.y24{bottom:128.625000px;}
.y104{bottom:128.727573px;}
.y6f{bottom:130.125000px;}
.y36{bottom:130.875000px;}
.y127{bottom:132.000000px;}
.ya8{bottom:132.375000px;}
.yf4{bottom:134.250000px;}
.y103{bottom:142.215573px;}
.y23{bottom:143.625000px;}
.y6e{bottom:145.125000px;}
.y126{bottom:145.500000px;}
.y35{bottom:145.875000px;}
.ya7{bottom:147.375000px;}
.yf3{bottom:149.250000px;}
.y22{bottom:158.625000px;}
.y125{bottom:159.000000px;}
.y6d{bottom:160.125000px;}
.ya6{bottom:162.375000px;}
.yf7{bottom:164.250000px;}
.y124{bottom:172.500000px;}
.y6c{bottom:175.125000px;}
.y34{bottom:175.875000px;}
.ya5{bottom:177.375000px;}
.yf2{bottom:179.250000px;}
.y137{bottom:184.125000px;}
.y7f{bottom:190.125000px;}
.y33{bottom:190.875000px;}
.ya4{bottom:192.375000px;}
.y21{bottom:193.875000px;}
.yf1{bottom:194.250000px;}
.y123{bottom:194.625000px;}
.y136{bottom:197.625000px;}
.y7e{bottom:205.125000px;}
.y32{bottom:205.875000px;}
.y6b{bottom:207.375000px;}
.y122{bottom:208.125000px;}
.y20{bottom:208.875000px;}
.yf0{bottom:209.250000px;}
.y135{bottom:211.125000px;}
.y101{bottom:214.151713px;}
.yfd{bottom:214.231854px;}
.y7d{bottom:220.125000px;}
.y31{bottom:220.875000px;}
.y121{bottom:221.625000px;}
.y6a{bottom:222.375000px;}
.y1f{bottom:223.875000px;}
.yef{bottom:224.250000px;}
.y100{bottom:227.639713px;}
.yfc{bottom:227.719854px;}
.yff{bottom:230.637000px;}
.y7c{bottom:235.125000px;}
.y30{bottom:235.875000px;}
.y69{bottom:237.375000px;}
.y1e{bottom:238.875000px;}
.yee{bottom:239.250000px;}
.yfb{bottom:241.207854px;}
.yfe{bottom:244.125000px;}
.y120{bottom:248.625000px;}
.y134{bottom:249.375000px;}
.y7b{bottom:250.125000px;}
.y2f{bottom:250.875000px;}
.y68{bottom:252.375000px;}
.y1d{bottom:253.875000px;}
.yed{bottom:254.250000px;}
.y7a{bottom:265.125000px;}
.y2e{bottom:265.875000px;}
.y67{bottom:267.375000px;}
.y1c{bottom:268.875000px;}
.yec{bottom:269.250000px;}
.y11f{bottom:270.750000px;}
.y133{bottom:274.500000px;}
.yc7{bottom:277.875000px;}
.y79{bottom:280.125000px;}
.y2d{bottom:280.875000px;}
.y66{bottom:282.375000px;}
.y1b{bottom:283.875000px;}
.yeb{bottom:284.250000px;}
.y132{bottom:288.000000px;}
.y78{bottom:295.125000px;}
.y2c{bottom:295.875000px;}
.y65{bottom:297.375000px;}
.y11e{bottom:297.750000px;}
.y1a{bottom:298.875000px;}
.yea{bottom:299.250000px;}
.y131{bottom:301.500000px;}
.y77{bottom:310.125000px;}
.y2b{bottom:310.875000px;}
.y64{bottom:312.375000px;}
.y19{bottom:313.875000px;}
.ye9{bottom:314.250000px;}
.y11d{bottom:319.500000px;}
.y76{bottom:325.125000px;}
.y2a{bottom:325.875000px;}
.y130{bottom:326.625000px;}
.y63{bottom:327.375000px;}
.y18{bottom:328.875000px;}
.ye8{bottom:329.250000px;}
.y11c{bottom:333.000000px;}
.y102{bottom:334.044860px;}
.yf8{bottom:334.125000px;}
.y75{bottom:340.125000px;}
.y29{bottom:340.875000px;}
.y62{bottom:342.375000px;}
.y17{bottom:343.875000px;}
.ye7{bottom:344.250000px;}
.y80{bottom:355.125000px;}
.y28{bottom:355.875000px;}
.y61{bottom:357.375000px;}
.y16{bottom:358.875000px;}
.ye6{bottom:359.250000px;}
.y12f{bottom:364.875000px;}
.yc6{bottom:367.875000px;}
.y11b{bottom:368.625000px;}
.y74{bottom:370.125000px;}
.y27{bottom:370.875000px;}
.y8e{bottom:372.375000px;}
.y15{bottom:373.875000px;}
.yf6{bottom:374.250000px;}
.y12e{bottom:378.375000px;}
.yc5{bottom:379.875000px;}
.y11a{bottom:382.125000px;}
.y60{bottom:385.125000px;}
.y26{bottom:385.875000px;}
.y8d{bottom:387.375000px;}
.y14{bottom:388.875000px;}
.ye5{bottom:389.250000px;}
.y12d{bottom:391.875000px;}
.y119{bottom:395.625000px;}
.yc4{bottom:397.875000px;}
.y5f{bottom:400.125000px;}
.y25{bottom:400.875000px;}
.y8c{bottom:402.375000px;}
.y13{bottom:403.875000px;}
.ye4{bottom:404.250000px;}
.y118{bottom:409.125000px;}
.yc3{bottom:409.875000px;}
.y5e{bottom:415.125000px;}
.y12c{bottom:417.000000px;}
.y8b{bottom:417.375000px;}
.ye3{bottom:419.250000px;}
.y107{bottom:423.964719px;}
.y10a{bottom:424.149000px;}
.yc2{bottom:424.875000px;}
.y73{bottom:430.125000px;}
.y12b{bottom:430.500000px;}
.y117{bottom:430.875000px;}
.y12{bottom:431.625000px;}
.y8a{bottom:432.375000px;}
.ye2{bottom:434.250000px;}
.y106{bottom:437.452719px;}
.y109{bottom:437.637000px;}
.y12a{bottom:444.000000px;}
.y116{bottom:444.375000px;}
.y72{bottom:445.125000px;}
.yfa{bottom:446.525141px;}
.y89{bottom:447.375000px;}
.ye1{bottom:449.250000px;}
.y105{bottom:450.940719px;}
.y108{bottom:451.125000px;}
.y129{bottom:457.500000px;}
.y115{bottom:457.875000px;}
.yf9{bottom:460.013141px;}
.y71{bottom:460.125000px;}
.yc1{bottom:460.875000px;}
.y88{bottom:462.375000px;}
.ye0{bottom:464.250000px;}
.yc0{bottom:472.875000px;}
.y5d{bottom:475.125000px;}
.ya3{bottom:477.375000px;}
.yf5{bottom:479.250000px;}
.y114{bottom:480.000000px;}
.ybf{bottom:484.875000px;}
.y5c{bottom:490.125000px;}
.y112{bottom:492.375000px;}
.ydf{bottom:494.250000px;}
.ybe{bottom:502.875000px;}
.y5b{bottom:505.125000px;}
.y111{bottom:507.375000px;}
.yde{bottom:509.250000px;}
.y10c{bottom:511.500000px;}
.ybd{bottom:514.875000px;}
.y5a{bottom:520.125000px;}
.y110{bottom:522.375000px;}
.ydd{bottom:524.250000px;}
.y10b{bottom:526.500000px;}
.ybc{bottom:529.875000px;}
.y59{bottom:535.125000px;}
.y10f{bottom:537.375000px;}
.ydc{bottom:539.250000px;}
.y58{bottom:550.125000px;}
.y10e{bottom:552.375000px;}
.ydb{bottom:554.250000px;}
.y57{bottom:565.125000px;}
.ybb{bottom:565.875000px;}
.ya2{bottom:567.375000px;}
.yba{bottom:577.875000px;}
.y56{bottom:580.125000px;}
.ya1{bottom:582.375000px;}
.yb9{bottom:589.875000px;}
.y55{bottom:595.125000px;}
.ya0{bottom:597.375000px;}
.y11{bottom:603.750000px;}
.yb8{bottom:607.875000px;}
.y54{bottom:610.125000px;}
.y9f{bottom:612.375000px;}
.y10{bottom:618.750000px;}
.yb7{bottom:619.875000px;}
.y70{bottom:625.125000px;}
.y9e{bottom:627.375000px;}
.yf{bottom:633.750000px;}
.yb6{bottom:634.875000px;}
.yda{bottom:639.375000px;}
.y53{bottom:640.125000px;}
.y9d{bottom:642.375000px;}
.ye{bottom:648.750000px;}
.yd9{bottom:651.375000px;}
.y52{bottom:655.125000px;}
.y9c{bottom:657.375000px;}
.yd8{bottom:663.375000px;}
.yd{bottom:663.750000px;}
.y51{bottom:670.125000px;}
.yb5{bottom:670.875000px;}
.y9b{bottom:672.375000px;}
.yd7{bottom:675.375000px;}
.yc{bottom:678.750000px;}
.yb4{bottom:682.875000px;}
.y50{bottom:685.125000px;}
.y9a{bottom:687.375000px;}
.yb3{bottom:694.875000px;}
.y4f{bottom:700.125000px;}
.y99{bottom:702.375000px;}
.yb{bottom:706.875000px;}
.yb2{bottom:709.875000px;}
.y4e{bottom:715.125000px;}
.y98{bottom:717.375000px;}
.yb1{bottom:724.875000px;}
.y156{bottom:726.750000px;}
.yd6{bottom:729.375000px;}
.y4d{bottom:730.125000px;}
.yd5{bottom:741.375000px;}
.y4c{bottom:745.125000px;}
.y113{bottom:747.375000px;}
.y128{bottom:748.125000px;}
.yd4{bottom:753.375000px;}
.yb0{bottom:757.875000px;}
.y4b{bottom:760.125000px;}
.y10d{bottom:762.375000px;}
.yd3{bottom:765.375000px;}
.yaf{bottom:769.875000px;}
.y4a{bottom:775.125000px;}
.yd2{bottom:777.375000px;}
.yae{bottom:784.875000px;}
.y49{bottom:790.125000px;}
.y97{bottom:792.375000px;}
.y155{bottom:794.250000px;}
.y148{bottom:796.500000px;}
.yad{bottom:799.875000px;}
.y48{bottom:805.125000px;}
.y96{bottom:807.375000px;}
.y154{bottom:807.750000px;}
.y147{bottom:810.000000px;}
.yd1{bottom:819.375000px;}
.y47{bottom:820.125000px;}
.y95{bottom:822.375000px;}
.y146{bottom:823.500000px;}
.yac{bottom:829.875000px;}
.yd0{bottom:831.375000px;}
.y46{bottom:835.125000px;}
.ya{bottom:836.250000px;}
.y94{bottom:837.375000px;}
.ycf{bottom:843.375000px;}
.yab{bottom:844.875000px;}
.y145{bottom:846.750000px;}
.y45{bottom:850.125000px;}
.y9{bottom:851.250000px;}
.y153{bottom:852.000000px;}
.y93{bottom:852.375000px;}
.yce{bottom:855.375000px;}
.y144{bottom:860.250000px;}
.y8{bottom:861.375000px;}
.y44{bottom:865.125000px;}
.y152{bottom:865.500000px;}
.y92{bottom:867.375000px;}
.y143{bottom:873.750000px;}
.y151{bottom:879.000000px;}
.y43{bottom:880.125000px;}
.y91{bottom:882.375000px;}
.y142{bottom:887.250000px;}
.ycd{bottom:894.375000px;}
.y42{bottom:895.125000px;}
.y90{bottom:897.375000px;}
.y141{bottom:900.750000px;}
.yaa{bottom:904.875000px;}
.ycc{bottom:906.375000px;}
.y7{bottom:907.500000px;}
.y41{bottom:910.125000px;}
.y8f{bottom:912.375000px;}
.y150{bottom:914.250000px;}
.ycb{bottom:918.375000px;}
.ya9{bottom:919.875000px;}
.y140{bottom:924.000000px;}
.y40{bottom:925.125000px;}
.y87{bottom:927.375000px;}
.yca{bottom:930.375000px;}
.y6{bottom:934.500000px;}
.y14f{bottom:936.375000px;}
.y13f{bottom:937.500000px;}
.y3f{bottom:940.125000px;}
.y86{bottom:942.375000px;}
.y14e{bottom:949.875000px;}
.y3e{bottom:955.125000px;}
.y85{bottom:957.375000px;}
.y13e{bottom:960.750000px;}
.y5{bottom:961.500000px;}
.y14d{bottom:963.375000px;}
.y3d{bottom:970.125000px;}
.y84{bottom:972.375000px;}
.y13d{bottom:974.250000px;}
.y14c{bottom:976.875000px;}
.y3c{bottom:985.125000px;}
.y83{bottom:987.375000px;}
.y4{bottom:988.500000px;}
.y13c{bottom:997.500000px;}
.y14b{bottom:998.625000px;}
.y3b{bottom:1000.125000px;}
.y82{bottom:1002.375000px;}
.y13b{bottom:1011.000000px;}
.y14a{bottom:1012.125000px;}
.y3a{bottom:1015.125000px;}
.y81{bottom:1017.375000px;}
.y13a{bottom:1024.500000px;}
.y149{bottom:1025.625000px;}
.y39{bottom:1030.125000px;}
.y38{bottom:1045.125000px;}
.yc9{bottom:1047.375000px;}
.y139{bottom:1047.750000px;}
.y37{bottom:1060.125000px;}
.y138{bottom:1061.250000px;}
.yc8{bottom:1062.375000px;}
.y1{bottom:1107.375000px;}
.h5{height:40.968750px;}
.h2{height:47.109375px;}
.h8{height:48.375000px;}
.h9{height:52.950938px;}
.hd{height:52.971680px;}
.hc{height:52.998047px;}
.hb{height:54.421875px;}
.h6{height:58.886719px;}
.h4{height:60.468750px;}
.h1{height:64.775391px;}
.h7{height:66.515625px;}
.ha{height:94.913792px;}
.h3{height:108.843750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.687500px;}
.x6{left:110.437500px;}
.x9{left:114.562500px;}
.x5{left:172.312500px;}
.xe{left:206.438970px;}
.xa{left:208.312500px;}
.xb{left:209.446500px;}
.xf{left:219.974970px;}
.x4{left:248.062500px;}
.x17{left:257.452752px;}
.x10{left:259.078782px;}
.x8{left:301.687500px;}
.x1b{left:389.812500px;}
.x15{left:397.324470px;}
.x7{left:435.187500px;}
.x1a{left:438.187500px;}
.xd{left:442.566030px;}
.x16{left:445.452141px;}
.xc{left:451.589889px;}
.x11{left:454.476000px;}
.x3{left:476.062500px;}
.x1c{left:492.937500px;}
.x14{left:595.851906px;}
.x18{left:630.357000px;}
.x19{left:642.388812px;}
.x12{left:645.483765px;}
.x13{left:672.555765px;}
.x2{left:808.312500px;}
@media print{
.v2{vertical-align:-17.333333pt;}
.v3{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.333333pt;}
.v4{vertical-align:37.300315pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.666667pt;}
.ls7{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.874667pt;}
.ls3{letter-spacing:0.906667pt;}
.ls5{letter-spacing:1.194667pt;}
.ls4{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.lsa{letter-spacing:2.688000pt;}
.ls9{letter-spacing:302.528000pt;}
.ls8{letter-spacing:304.874667pt;}
.ws2{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.989333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.333333pt;}
.ws3{word-spacing:0.000000pt;}
._18{margin-left:-6.960000pt;}
._2{margin-left:-6.010667pt;}
._8{margin-left:-4.917333pt;}
._5{margin-left:-3.994667pt;}
._3{margin-left:-2.944000pt;}
._1{margin-left:-1.680000pt;}
._4{width:0.906667pt;}
._0{width:1.818667pt;}
._c{width:2.810667pt;}
._f{width:4.144000pt;}
._7{width:5.429333pt;}
._9{width:6.768000pt;}
._e{width:8.464000pt;}
._a{width:9.429333pt;}
._6{width:10.810667pt;}
._b{width:12.362667pt;}
._19{width:13.754667pt;}
._12{width:14.816000pt;}
._11{width:16.757333pt;}
._10{width:17.893333pt;}
._14{width:173.525333pt;}
._15{width:302.528000pt;}
._16{width:304.874667pt;}
._17{width:388.877643pt;}
._13{width:1639.813333pt;}
._d{width:1648.426667pt;}
.fs4{font-size:30.666667pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:47.957333pt;}
.fs7{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;}
.y24{bottom:114.333333pt;}
.y104{bottom:114.424509pt;}
.y6f{bottom:115.666667pt;}
.y36{bottom:116.333333pt;}
.y127{bottom:117.333333pt;}
.ya8{bottom:117.666667pt;}
.yf4{bottom:119.333333pt;}
.y103{bottom:126.413843pt;}
.y23{bottom:127.666667pt;}
.y6e{bottom:129.000000pt;}
.y126{bottom:129.333333pt;}
.y35{bottom:129.666667pt;}
.ya7{bottom:131.000000pt;}
.yf3{bottom:132.666667pt;}
.y22{bottom:141.000000pt;}
.y125{bottom:141.333333pt;}
.y6d{bottom:142.333333pt;}
.ya6{bottom:144.333333pt;}
.yf7{bottom:146.000000pt;}
.y124{bottom:153.333333pt;}
.y6c{bottom:155.666667pt;}
.y34{bottom:156.333333pt;}
.ya5{bottom:157.666667pt;}
.yf2{bottom:159.333333pt;}
.y137{bottom:163.666667pt;}
.y7f{bottom:169.000000pt;}
.y33{bottom:169.666667pt;}
.ya4{bottom:171.000000pt;}
.y21{bottom:172.333333pt;}
.yf1{bottom:172.666667pt;}
.y123{bottom:173.000000pt;}
.y136{bottom:175.666667pt;}
.y7e{bottom:182.333333pt;}
.y32{bottom:183.000000pt;}
.y6b{bottom:184.333333pt;}
.y122{bottom:185.000000pt;}
.y20{bottom:185.666667pt;}
.yf0{bottom:186.000000pt;}
.y135{bottom:187.666667pt;}
.y101{bottom:190.357079pt;}
.yfd{bottom:190.428315pt;}
.y7d{bottom:195.666667pt;}
.y31{bottom:196.333333pt;}
.y121{bottom:197.000000pt;}
.y6a{bottom:197.666667pt;}
.y1f{bottom:199.000000pt;}
.yef{bottom:199.333333pt;}
.y100{bottom:202.346412pt;}
.yfc{bottom:202.417648pt;}
.yff{bottom:205.010667pt;}
.y7c{bottom:209.000000pt;}
.y30{bottom:209.666667pt;}
.y69{bottom:211.000000pt;}
.y1e{bottom:212.333333pt;}
.yee{bottom:212.666667pt;}
.yfb{bottom:214.406981pt;}
.yfe{bottom:217.000000pt;}
.y120{bottom:221.000000pt;}
.y134{bottom:221.666667pt;}
.y7b{bottom:222.333333pt;}
.y2f{bottom:223.000000pt;}
.y68{bottom:224.333333pt;}
.y1d{bottom:225.666667pt;}
.yed{bottom:226.000000pt;}
.y7a{bottom:235.666667pt;}
.y2e{bottom:236.333333pt;}
.y67{bottom:237.666667pt;}
.y1c{bottom:239.000000pt;}
.yec{bottom:239.333333pt;}
.y11f{bottom:240.666667pt;}
.y133{bottom:244.000000pt;}
.yc7{bottom:247.000000pt;}
.y79{bottom:249.000000pt;}
.y2d{bottom:249.666667pt;}
.y66{bottom:251.000000pt;}
.y1b{bottom:252.333333pt;}
.yeb{bottom:252.666667pt;}
.y132{bottom:256.000000pt;}
.y78{bottom:262.333333pt;}
.y2c{bottom:263.000000pt;}
.y65{bottom:264.333333pt;}
.y11e{bottom:264.666667pt;}
.y1a{bottom:265.666667pt;}
.yea{bottom:266.000000pt;}
.y131{bottom:268.000000pt;}
.y77{bottom:275.666667pt;}
.y2b{bottom:276.333333pt;}
.y64{bottom:277.666667pt;}
.y19{bottom:279.000000pt;}
.ye9{bottom:279.333333pt;}
.y11d{bottom:284.000000pt;}
.y76{bottom:289.000000pt;}
.y2a{bottom:289.666667pt;}
.y130{bottom:290.333333pt;}
.y63{bottom:291.000000pt;}
.y18{bottom:292.333333pt;}
.ye8{bottom:292.666667pt;}
.y11c{bottom:296.000000pt;}
.y102{bottom:296.928764pt;}
.yf8{bottom:297.000000pt;}
.y75{bottom:302.333333pt;}
.y29{bottom:303.000000pt;}
.y62{bottom:304.333333pt;}
.y17{bottom:305.666667pt;}
.ye7{bottom:306.000000pt;}
.y80{bottom:315.666667pt;}
.y28{bottom:316.333333pt;}
.y61{bottom:317.666667pt;}
.y16{bottom:319.000000pt;}
.ye6{bottom:319.333333pt;}
.y12f{bottom:324.333333pt;}
.yc6{bottom:327.000000pt;}
.y11b{bottom:327.666667pt;}
.y74{bottom:329.000000pt;}
.y27{bottom:329.666667pt;}
.y8e{bottom:331.000000pt;}
.y15{bottom:332.333333pt;}
.yf6{bottom:332.666667pt;}
.y12e{bottom:336.333333pt;}
.yc5{bottom:337.666667pt;}
.y11a{bottom:339.666667pt;}
.y60{bottom:342.333333pt;}
.y26{bottom:343.000000pt;}
.y8d{bottom:344.333333pt;}
.y14{bottom:345.666667pt;}
.ye5{bottom:346.000000pt;}
.y12d{bottom:348.333333pt;}
.y119{bottom:351.666667pt;}
.yc4{bottom:353.666667pt;}
.y5f{bottom:355.666667pt;}
.y25{bottom:356.333333pt;}
.y8c{bottom:357.666667pt;}
.y13{bottom:359.000000pt;}
.ye4{bottom:359.333333pt;}
.y118{bottom:363.666667pt;}
.yc3{bottom:364.333333pt;}
.y5e{bottom:369.000000pt;}
.y12c{bottom:370.666667pt;}
.y8b{bottom:371.000000pt;}
.ye3{bottom:372.666667pt;}
.y107{bottom:376.857528pt;}
.y10a{bottom:377.021333pt;}
.yc2{bottom:377.666667pt;}
.y73{bottom:382.333333pt;}
.y12b{bottom:382.666667pt;}
.y117{bottom:383.000000pt;}
.y12{bottom:383.666667pt;}
.y8a{bottom:384.333333pt;}
.ye2{bottom:386.000000pt;}
.y106{bottom:388.846861pt;}
.y109{bottom:389.010667pt;}
.y12a{bottom:394.666667pt;}
.y116{bottom:395.000000pt;}
.y72{bottom:395.666667pt;}
.yfa{bottom:396.911236pt;}
.y89{bottom:397.666667pt;}
.ye1{bottom:399.333333pt;}
.y105{bottom:400.836195pt;}
.y108{bottom:401.000000pt;}
.y129{bottom:406.666667pt;}
.y115{bottom:407.000000pt;}
.yf9{bottom:408.900569pt;}
.y71{bottom:409.000000pt;}
.yc1{bottom:409.666667pt;}
.y88{bottom:411.000000pt;}
.ye0{bottom:412.666667pt;}
.yc0{bottom:420.333333pt;}
.y5d{bottom:422.333333pt;}
.ya3{bottom:424.333333pt;}
.yf5{bottom:426.000000pt;}
.y114{bottom:426.666667pt;}
.ybf{bottom:431.000000pt;}
.y5c{bottom:435.666667pt;}
.y112{bottom:437.666667pt;}
.ydf{bottom:439.333333pt;}
.ybe{bottom:447.000000pt;}
.y5b{bottom:449.000000pt;}
.y111{bottom:451.000000pt;}
.yde{bottom:452.666667pt;}
.y10c{bottom:454.666667pt;}
.ybd{bottom:457.666667pt;}
.y5a{bottom:462.333333pt;}
.y110{bottom:464.333333pt;}
.ydd{bottom:466.000000pt;}
.y10b{bottom:468.000000pt;}
.ybc{bottom:471.000000pt;}
.y59{bottom:475.666667pt;}
.y10f{bottom:477.666667pt;}
.ydc{bottom:479.333333pt;}
.y58{bottom:489.000000pt;}
.y10e{bottom:491.000000pt;}
.ydb{bottom:492.666667pt;}
.y57{bottom:502.333333pt;}
.ybb{bottom:503.000000pt;}
.ya2{bottom:504.333333pt;}
.yba{bottom:513.666667pt;}
.y56{bottom:515.666667pt;}
.ya1{bottom:517.666667pt;}
.yb9{bottom:524.333333pt;}
.y55{bottom:529.000000pt;}
.ya0{bottom:531.000000pt;}
.y11{bottom:536.666667pt;}
.yb8{bottom:540.333333pt;}
.y54{bottom:542.333333pt;}
.y9f{bottom:544.333333pt;}
.y10{bottom:550.000000pt;}
.yb7{bottom:551.000000pt;}
.y70{bottom:555.666667pt;}
.y9e{bottom:557.666667pt;}
.yf{bottom:563.333333pt;}
.yb6{bottom:564.333333pt;}
.yda{bottom:568.333333pt;}
.y53{bottom:569.000000pt;}
.y9d{bottom:571.000000pt;}
.ye{bottom:576.666667pt;}
.yd9{bottom:579.000000pt;}
.y52{bottom:582.333333pt;}
.y9c{bottom:584.333333pt;}
.yd8{bottom:589.666667pt;}
.yd{bottom:590.000000pt;}
.y51{bottom:595.666667pt;}
.yb5{bottom:596.333333pt;}
.y9b{bottom:597.666667pt;}
.yd7{bottom:600.333333pt;}
.yc{bottom:603.333333pt;}
.yb4{bottom:607.000000pt;}
.y50{bottom:609.000000pt;}
.y9a{bottom:611.000000pt;}
.yb3{bottom:617.666667pt;}
.y4f{bottom:622.333333pt;}
.y99{bottom:624.333333pt;}
.yb{bottom:628.333333pt;}
.yb2{bottom:631.000000pt;}
.y4e{bottom:635.666667pt;}
.y98{bottom:637.666667pt;}
.yb1{bottom:644.333333pt;}
.y156{bottom:646.000000pt;}
.yd6{bottom:648.333333pt;}
.y4d{bottom:649.000000pt;}
.yd5{bottom:659.000000pt;}
.y4c{bottom:662.333333pt;}
.y113{bottom:664.333333pt;}
.y128{bottom:665.000000pt;}
.yd4{bottom:669.666667pt;}
.yb0{bottom:673.666667pt;}
.y4b{bottom:675.666667pt;}
.y10d{bottom:677.666667pt;}
.yd3{bottom:680.333333pt;}
.yaf{bottom:684.333333pt;}
.y4a{bottom:689.000000pt;}
.yd2{bottom:691.000000pt;}
.yae{bottom:697.666667pt;}
.y49{bottom:702.333333pt;}
.y97{bottom:704.333333pt;}
.y155{bottom:706.000000pt;}
.y148{bottom:708.000000pt;}
.yad{bottom:711.000000pt;}
.y48{bottom:715.666667pt;}
.y96{bottom:717.666667pt;}
.y154{bottom:718.000000pt;}
.y147{bottom:720.000000pt;}
.yd1{bottom:728.333333pt;}
.y47{bottom:729.000000pt;}
.y95{bottom:731.000000pt;}
.y146{bottom:732.000000pt;}
.yac{bottom:737.666667pt;}
.yd0{bottom:739.000000pt;}
.y46{bottom:742.333333pt;}
.ya{bottom:743.333333pt;}
.y94{bottom:744.333333pt;}
.ycf{bottom:749.666667pt;}
.yab{bottom:751.000000pt;}
.y145{bottom:752.666667pt;}
.y45{bottom:755.666667pt;}
.y9{bottom:756.666667pt;}
.y153{bottom:757.333333pt;}
.y93{bottom:757.666667pt;}
.yce{bottom:760.333333pt;}
.y144{bottom:764.666667pt;}
.y8{bottom:765.666667pt;}
.y44{bottom:769.000000pt;}
.y152{bottom:769.333333pt;}
.y92{bottom:771.000000pt;}
.y143{bottom:776.666667pt;}
.y151{bottom:781.333333pt;}
.y43{bottom:782.333333pt;}
.y91{bottom:784.333333pt;}
.y142{bottom:788.666667pt;}
.ycd{bottom:795.000000pt;}
.y42{bottom:795.666667pt;}
.y90{bottom:797.666667pt;}
.y141{bottom:800.666667pt;}
.yaa{bottom:804.333333pt;}
.ycc{bottom:805.666667pt;}
.y7{bottom:806.666667pt;}
.y41{bottom:809.000000pt;}
.y8f{bottom:811.000000pt;}
.y150{bottom:812.666667pt;}
.ycb{bottom:816.333333pt;}
.ya9{bottom:817.666667pt;}
.y140{bottom:821.333333pt;}
.y40{bottom:822.333333pt;}
.y87{bottom:824.333333pt;}
.yca{bottom:827.000000pt;}
.y6{bottom:830.666667pt;}
.y14f{bottom:832.333333pt;}
.y13f{bottom:833.333333pt;}
.y3f{bottom:835.666667pt;}
.y86{bottom:837.666667pt;}
.y14e{bottom:844.333333pt;}
.y3e{bottom:849.000000pt;}
.y85{bottom:851.000000pt;}
.y13e{bottom:854.000000pt;}
.y5{bottom:854.666667pt;}
.y14d{bottom:856.333333pt;}
.y3d{bottom:862.333333pt;}
.y84{bottom:864.333333pt;}
.y13d{bottom:866.000000pt;}
.y14c{bottom:868.333333pt;}
.y3c{bottom:875.666667pt;}
.y83{bottom:877.666667pt;}
.y4{bottom:878.666667pt;}
.y13c{bottom:886.666667pt;}
.y14b{bottom:887.666667pt;}
.y3b{bottom:889.000000pt;}
.y82{bottom:891.000000pt;}
.y13b{bottom:898.666667pt;}
.y14a{bottom:899.666667pt;}
.y3a{bottom:902.333333pt;}
.y81{bottom:904.333333pt;}
.y13a{bottom:910.666667pt;}
.y149{bottom:911.666667pt;}
.y39{bottom:915.666667pt;}
.y38{bottom:929.000000pt;}
.yc9{bottom:931.000000pt;}
.y139{bottom:931.333333pt;}
.y37{bottom:942.333333pt;}
.y138{bottom:943.333333pt;}
.yc8{bottom:944.333333pt;}
.y1{bottom:984.333333pt;}
.h5{height:36.416667pt;}
.h2{height:41.875000pt;}
.h8{height:43.000000pt;}
.h9{height:47.067500pt;}
.hd{height:47.085938pt;}
.hc{height:47.109375pt;}
.hb{height:48.375000pt;}
.h6{height:52.343750pt;}
.h4{height:53.750000pt;}
.h1{height:57.578125pt;}
.h7{height:59.125000pt;}
.ha{height:84.367815pt;}
.h3{height:96.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.833333pt;}
.x6{left:98.166667pt;}
.x9{left:101.833333pt;}
.x5{left:153.166667pt;}
.xe{left:183.501307pt;}
.xa{left:185.166667pt;}
.xb{left:186.174667pt;}
.xf{left:195.533307pt;}
.x4{left:220.500000pt;}
.x17{left:228.846891pt;}
.x10{left:230.292251pt;}
.x8{left:268.166667pt;}
.x1b{left:346.500000pt;}
.x15{left:353.177307pt;}
.x7{left:386.833333pt;}
.x1a{left:389.500000pt;}
.xd{left:393.392027pt;}
.x16{left:395.957459pt;}
.xc{left:401.413235pt;}
.x11{left:403.978667pt;}
.x3{left:423.166667pt;}
.x1c{left:438.166667pt;}
.x14{left:529.646139pt;}
.x18{left:560.317333pt;}
.x19{left:571.012277pt;}
.x12{left:573.763347pt;}
.x13{left:597.827347pt;}
.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; }
  