
    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_6ada9637a919007d40fa217c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_b3ddd2b4df67ad1a1460c323.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_c2e3ce7e32eb33d9de15d61c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_13ae3d1de0ce3a6561d080b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_03aeb6bb56820826914c5562.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_34d7787c0cc6559b0b02fc4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_cf9c41764917040306546ffe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_007baac02bebc1dffa671e1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_ba34ede980c45d88f1f6137e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0409c08008bd833b1d00d730.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.158000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_63c59040b164f7b9c5047689.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7e034678ce838e76de6b630a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-19.926000px;}
.ls8{letter-spacing:-18.306000px;}
.lsd{letter-spacing:-12.276000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.132000px;}
.lsa{letter-spacing:0.198000px;}
.ls10{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.396000px;}
.lsb{letter-spacing:0.462000px;}
.ls14{letter-spacing:0.528000px;}
.ls11{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.858000px;}
.ls2{letter-spacing:0.990000px;}
.ls13{letter-spacing:1.254000px;}
.ls12{letter-spacing:2.376000px;}
.ls15{letter-spacing:6.829200px;}
.ls6{letter-spacing:10.656000px;}
.lse{letter-spacing:2135.318400px;}
.ls9{letter-spacing:2192.518800px;}
.ls4{letter-spacing:2848.575000px;}
.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:-22.680000px;}
.ws4{word-spacing:-16.500000px;}
.ws5{word-spacing:-13.860000px;}
.ws7{word-spacing:-12.750000px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:19.602000px;}
.ws1{word-spacing:22.842000px;}
.ws6{word-spacing:24.502500px;}
._2{margin-left:-24.000000px;}
._a{margin-left:-13.860000px;}
._8{margin-left:-1.980000px;}
._9{width:1.000800px;}
._3{width:2.112000px;}
._7{width:3.234000px;}
._1{width:4.607400px;}
._6{width:5.660400px;}
._4{width:6.666000px;}
._5{width:7.722000px;}
._b{width:8.778000px;}
._0{width:13.344000px;}
.fc3{color:rgb(153,0,0);}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y26{bottom:85.039500px;}
.yd1{bottom:85.039650px;}
.y53{bottom:138.189300px;}
.y7{bottom:140.314950px;}
.y6{bottom:153.108450px;}
.y7e{bottom:158.994000px;}
.y52{bottom:159.466350px;}
.yab{bottom:161.312250px;}
.y5{bottom:172.279950px;}
.ycf{bottom:174.081600px;}
.y7d{bottom:179.798550px;}
.y51{bottom:180.743550px;}
.yaa{bottom:182.309550px;}
.y4{bottom:191.451300px;}
.yce{bottom:194.868600px;}
.y7c{bottom:200.603250px;}
.y50{bottom:202.020600px;}
.ya9{bottom:203.306850px;}
.y3{bottom:204.244800px;}
.y4f{bottom:223.297650px;}
.ya8{bottom:224.304150px;}
.ycd{bottom:226.049550px;}
.y7b{bottom:231.801750px;}
.y4e{bottom:244.574700px;}
.ya7{bottom:245.301450px;}
.ycc{bottom:246.836550px;}
.y7a{bottom:252.606450px;}
.y4d{bottom:265.851900px;}
.ya6{bottom:266.298750px;}
.y79{bottom:273.411000px;}
.ycb{bottom:278.017500px;}
.y4c{bottom:287.128950px;}
.ya5{bottom:287.296050px;}
.y24{bottom:288.621600px;}
.y78{bottom:294.215700px;}
.yca{bottom:298.804500px;}
.ya4{bottom:308.293350px;}
.y4b{bottom:308.406000px;}
.y23{bottom:309.408600px;}
.y77{bottom:315.020400px;}
.ya3{bottom:329.290650px;}
.y4a{bottom:329.683200px;}
.yc9{bottom:329.985450px;}
.y22{bottom:330.195600px;}
.y76{bottom:335.824950px;}
.ya2{bottom:350.287950px;}
.y49{bottom:350.960250px;}
.y21{bottom:350.982600px;}
.y75{bottom:356.629650px;}
.yc8{bottom:361.166400px;}
.y20{bottom:371.769600px;}
.y48{bottom:372.237300px;}
.ya1{bottom:381.679200px;}
.y74{bottom:387.828300px;}
.yc7{bottom:392.347350px;}
.y1f{bottom:392.556600px;}
.ya0{bottom:402.676500px;}
.y47{bottom:403.908300px;}
.y73{bottom:408.632850px;}
.yc6{bottom:413.134350px;}
.y1e{bottom:413.343600px;}
.y9f{bottom:423.673800px;}
.y46{bottom:425.185500px;}
.y72{bottom:429.437550px;}
.yc5{bottom:433.921350px;}
.y1d{bottom:444.524550px;}
.y9e{bottom:444.671100px;}
.y45{bottom:446.462550px;}
.y71{bottom:450.242100px;}
.yc4{bottom:465.102300px;}
.y1c{bottom:465.311550px;}
.y9d{bottom:465.668400px;}
.y44{bottom:467.739600px;}
.y70{bottom:471.046800px;}
.yc3{bottom:485.889300px;}
.y1b{bottom:486.098550px;}
.y9c{bottom:486.665850px;}
.y43{bottom:489.016650px;}
.y6f{bottom:491.851350px;}
.y1a{bottom:506.885550px;}
.y9b{bottom:507.663150px;}
.y42{bottom:510.293850px;}
.y6e{bottom:512.656050px;}
.yc2{bottom:517.070250px;}
.y19{bottom:527.672550px;}
.y9a{bottom:528.660450px;}
.y41{bottom:531.570900px;}
.y6d{bottom:533.460750px;}
.yc1{bottom:537.857250px;}
.y18{bottom:548.459550px;}
.y40{bottom:552.847950px;}
.y99{bottom:560.051700px;}
.y6c{bottom:564.659250px;}
.yc0{bottom:569.038200px;}
.y17{bottom:569.246550px;}
.y3f{bottom:574.125150px;}
.y98{bottom:581.049000px;}
.y6b{bottom:585.463950px;}
.ybf{bottom:589.825200px;}
.y16{bottom:590.033550px;}
.y3e{bottom:595.402200px;}
.y97{bottom:602.046300px;}
.y6a{bottom:606.268500px;}
.y15{bottom:610.820550px;}
.y3d{bottom:616.679250px;}
.y96{bottom:623.043600px;}
.y69{bottom:627.073200px;}
.y14{bottom:631.607550px;}
.ybe{bottom:635.887950px;}
.y3c{bottom:637.956450px;}
.y68{bottom:647.877900px;}
.y95{bottom:654.434850px;}
.y3b{bottom:659.233500px;}
.y67{bottom:668.682450px;}
.y94{bottom:675.432150px;}
.y3a{bottom:690.904500px;}
.y93{bottom:696.429450px;}
.y66{bottom:699.881100px;}
.y39{bottom:712.181550px;}
.y92{bottom:717.426750px;}
.y65{bottom:720.685800px;}
.ybd{bottom:721.002600px;}
.y13{bottom:726.946050px;}
.y38{bottom:733.458750px;}
.y64{bottom:741.490350px;}
.ybc{bottom:741.789600px;}
.ydd{bottom:745.381050px;}
.y12{bottom:747.733050px;}
.y91{bottom:748.818000px;}
.y37{bottom:754.735800px;}
.y63{bottom:762.295050px;}
.ybb{bottom:762.576600px;}
.y11{bottom:768.520050px;}
.y90{bottom:769.815300px;}
.y36{bottom:776.012850px;}
.ydc{bottom:776.561850px;}
.y62{bottom:783.099600px;}
.yba{bottom:783.363600px;}
.y10{bottom:789.307050px;}
.y8f{bottom:790.812600px;}
.y35{bottom:797.289900px;}
.y61{bottom:803.904300px;}
.yb9{bottom:804.150450px;}
.ydb{bottom:807.742800px;}
.yf{bottom:810.094050px;}
.y8e{bottom:811.810050px;}
.y34{bottom:818.566950px;}
.y60{bottom:824.708850px;}
.yb8{bottom:824.937600px;}
.ye{bottom:830.881050px;}
.y8d{bottom:832.807200px;}
.yda{bottom:838.923750px;}
.y33{bottom:839.844150px;}
.y5f{bottom:845.513550px;}
.yb7{bottom:845.724450px;}
.y8c{bottom:853.804650px;}
.y32{bottom:861.121050px;}
.y5e{bottom:866.318100px;}
.yb6{bottom:866.511600px;}
.yd{bottom:870.062100px;}
.yd9{bottom:870.104700px;}
.y8b{bottom:874.801950px;}
.y31{bottom:882.398250px;}
.y5d{bottom:887.122800px;}
.yb5{bottom:887.298450px;}
.yd8{bottom:901.285650px;}
.y30{bottom:903.675300px;}
.y8a{bottom:906.193200px;}
.y5c{bottom:907.927350px;}
.yb4{bottom:908.085600px;}
.y2f{bottom:924.952350px;}
.y89{bottom:927.190500px;}
.y5b{bottom:928.732050px;}
.yb3{bottom:928.872600px;}
.yd7{bottom:932.466600px;}
.y2e{bottom:946.229400px;}
.y88{bottom:948.187800px;}
.y5a{bottom:949.536600px;}
.yb2{bottom:949.659600px;}
.yd6{bottom:963.647550px;}
.y2d{bottom:967.506600px;}
.y87{bottom:969.185100px;}
.y59{bottom:970.341300px;}
.yb1{bottom:970.446750px;}
.yc{bottom:987.921150px;}
.y2c{bottom:988.783650px;}
.y86{bottom:990.182400px;}
.y58{bottom:991.145850px;}
.yb0{bottom:991.233750px;}
.yd5{bottom:994.828500px;}
.yb{bottom:1008.708150px;}
.y2b{bottom:1010.060700px;}
.yaf{bottom:1012.020750px;}
.y85{bottom:1021.573650px;}
.y57{bottom:1022.344500px;}
.yd4{bottom:1026.009450px;}
.y2a{bottom:1031.337750px;}
.yae{bottom:1032.807900px;}
.y84{bottom:1042.570800px;}
.y56{bottom:1043.149050px;}
.yad{bottom:1053.594750px;}
.yd3{bottom:1057.190400px;}
.y29{bottom:1063.008750px;}
.y83{bottom:1063.568250px;}
.y55{bottom:1063.953750px;}
.y28{bottom:1084.285950px;}
.y82{bottom:1084.565550px;}
.y54{bottom:1084.758300px;}
.yac{bottom:1084.775700px;}
.ya{bottom:1097.478000px;}
.yd2{bottom:1103.253150px;}
.y81{bottom:1105.562850px;}
.y27{bottom:1105.563000px;}
.y2{bottom:1162.729350px;}
.y7f{bottom:1172.229900px;}
.y25{bottom:1172.230050px;}
.yd0{bottom:1172.230200px;}
.y9{bottom:1193.874900px;}
.y8{bottom:1207.374900px;}
.h3{height:35.328000px;}
.h4{height:35.664000px;}
.h2{height:39.159668px;}
.hb{height:40.545000px;}
.hc{height:45.342773px;}
.h7{height:47.700000px;}
.h9{height:52.470000px;}
.ha{height:62.172000px;}
.h6{height:66.780000px;}
.h8{height:67.968000px;}
.hd{height:73.632000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.x3{left:110.551200px;}
.xb{left:136.063050px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.x8{left:602.512050px;}
.x6{left:612.241950px;}
.x7{left:615.537750px;}
.xa{left:695.943300px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-17.712000pt;}
.ls8{letter-spacing:-16.272000pt;}
.lsd{letter-spacing:-10.912000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.117333pt;}
.lsa{letter-spacing:0.176000pt;}
.ls10{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.352000pt;}
.lsb{letter-spacing:0.410667pt;}
.ls14{letter-spacing:0.469333pt;}
.ls11{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.762667pt;}
.ls2{letter-spacing:0.880000pt;}
.ls13{letter-spacing:1.114667pt;}
.ls12{letter-spacing:2.112000pt;}
.ls15{letter-spacing:6.070400pt;}
.ls6{letter-spacing:9.472000pt;}
.lse{letter-spacing:1898.060800pt;}
.ls9{letter-spacing:1948.905600pt;}
.ls4{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws5{word-spacing:-12.320000pt;}
.ws7{word-spacing:-11.333333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:17.424000pt;}
.ws1{word-spacing:20.304000pt;}
.ws6{word-spacing:21.780000pt;}
._2{margin-left:-21.333333pt;}
._a{margin-left:-12.320000pt;}
._8{margin-left:-1.760000pt;}
._9{width:0.889600pt;}
._3{width:1.877333pt;}
._7{width:2.874667pt;}
._1{width:4.095467pt;}
._6{width:5.031467pt;}
._4{width:5.925333pt;}
._5{width:6.864000pt;}
._b{width:7.802667pt;}
._0{width:11.861333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y26{bottom:75.590667pt;}
.yd1{bottom:75.590800pt;}
.y53{bottom:122.834933pt;}
.y7{bottom:124.724400pt;}
.y6{bottom:136.096400pt;}
.y7e{bottom:141.328000pt;}
.y52{bottom:141.747867pt;}
.yab{bottom:143.388667pt;}
.y5{bottom:153.137733pt;}
.ycf{bottom:154.739200pt;}
.y7d{bottom:159.820933pt;}
.y51{bottom:160.660933pt;}
.yaa{bottom:162.052933pt;}
.y4{bottom:170.178933pt;}
.yce{bottom:173.216533pt;}
.y7c{bottom:178.314000pt;}
.y50{bottom:179.573867pt;}
.ya9{bottom:180.717200pt;}
.y3{bottom:181.550933pt;}
.y4f{bottom:198.486800pt;}
.ya8{bottom:199.381467pt;}
.ycd{bottom:200.932933pt;}
.y7b{bottom:206.046000pt;}
.y4e{bottom:217.399733pt;}
.ya7{bottom:218.045733pt;}
.ycc{bottom:219.410267pt;}
.y7a{bottom:224.539067pt;}
.y4d{bottom:236.312800pt;}
.ya6{bottom:236.710000pt;}
.y79{bottom:243.032000pt;}
.ycb{bottom:247.126667pt;}
.y4c{bottom:255.225733pt;}
.ya5{bottom:255.374267pt;}
.y24{bottom:256.552533pt;}
.y78{bottom:261.525067pt;}
.yca{bottom:265.604000pt;}
.ya4{bottom:274.038533pt;}
.y4b{bottom:274.138667pt;}
.y23{bottom:275.029867pt;}
.y77{bottom:280.018133pt;}
.ya3{bottom:292.702800pt;}
.y4a{bottom:293.051733pt;}
.yc9{bottom:293.320400pt;}
.y22{bottom:293.507200pt;}
.y76{bottom:298.511067pt;}
.ya2{bottom:311.367067pt;}
.y49{bottom:311.964667pt;}
.y21{bottom:311.984533pt;}
.y75{bottom:317.004133pt;}
.yc8{bottom:321.036800pt;}
.y20{bottom:330.461867pt;}
.y48{bottom:330.877600pt;}
.ya1{bottom:339.270400pt;}
.y74{bottom:344.736267pt;}
.yc7{bottom:348.753200pt;}
.y1f{bottom:348.939200pt;}
.ya0{bottom:357.934667pt;}
.y47{bottom:359.029600pt;}
.y73{bottom:363.229200pt;}
.yc6{bottom:367.230533pt;}
.y1e{bottom:367.416533pt;}
.y9f{bottom:376.598933pt;}
.y46{bottom:377.942667pt;}
.y72{bottom:381.722267pt;}
.yc5{bottom:385.707867pt;}
.y1d{bottom:395.132933pt;}
.y9e{bottom:395.263200pt;}
.y45{bottom:396.855600pt;}
.y71{bottom:400.215200pt;}
.yc4{bottom:413.424267pt;}
.y1c{bottom:413.610267pt;}
.y9d{bottom:413.927467pt;}
.y44{bottom:415.768533pt;}
.y70{bottom:418.708267pt;}
.yc3{bottom:431.901600pt;}
.y1b{bottom:432.087600pt;}
.y9c{bottom:432.591867pt;}
.y43{bottom:434.681467pt;}
.y6f{bottom:437.201200pt;}
.y1a{bottom:450.564933pt;}
.y9b{bottom:451.256133pt;}
.y42{bottom:453.594533pt;}
.y6e{bottom:455.694267pt;}
.yc2{bottom:459.618000pt;}
.y19{bottom:469.042267pt;}
.y9a{bottom:469.920400pt;}
.y41{bottom:472.507467pt;}
.y6d{bottom:474.187333pt;}
.yc1{bottom:478.095333pt;}
.y18{bottom:487.519600pt;}
.y40{bottom:491.420400pt;}
.y99{bottom:497.823733pt;}
.y6c{bottom:501.919333pt;}
.yc0{bottom:505.811733pt;}
.y17{bottom:505.996933pt;}
.y3f{bottom:510.333467pt;}
.y98{bottom:516.488000pt;}
.y6b{bottom:520.412400pt;}
.ybf{bottom:524.289067pt;}
.y16{bottom:524.474267pt;}
.y3e{bottom:529.246400pt;}
.y97{bottom:535.152267pt;}
.y6a{bottom:538.905333pt;}
.y15{bottom:542.951600pt;}
.y3d{bottom:548.159333pt;}
.y96{bottom:553.816533pt;}
.y69{bottom:557.398400pt;}
.y14{bottom:561.428933pt;}
.ybe{bottom:565.233733pt;}
.y3c{bottom:567.072400pt;}
.y68{bottom:575.891467pt;}
.y95{bottom:581.719867pt;}
.y3b{bottom:585.985333pt;}
.y67{bottom:594.384400pt;}
.y94{bottom:600.384133pt;}
.y3a{bottom:614.137333pt;}
.y93{bottom:619.048400pt;}
.y66{bottom:622.116533pt;}
.y39{bottom:633.050267pt;}
.y92{bottom:637.712667pt;}
.y65{bottom:640.609600pt;}
.ybd{bottom:640.891200pt;}
.y13{bottom:646.174267pt;}
.y38{bottom:651.963333pt;}
.y64{bottom:659.102533pt;}
.ybc{bottom:659.368533pt;}
.ydd{bottom:662.560933pt;}
.y12{bottom:664.651600pt;}
.y91{bottom:665.616000pt;}
.y37{bottom:670.876267pt;}
.y63{bottom:677.595600pt;}
.ybb{bottom:677.845867pt;}
.y11{bottom:683.128933pt;}
.y90{bottom:684.280267pt;}
.y36{bottom:689.789200pt;}
.ydc{bottom:690.277200pt;}
.y62{bottom:696.088533pt;}
.yba{bottom:696.323200pt;}
.y10{bottom:701.606267pt;}
.y8f{bottom:702.944533pt;}
.y35{bottom:708.702133pt;}
.y61{bottom:714.581600pt;}
.yb9{bottom:714.800400pt;}
.ydb{bottom:717.993600pt;}
.yf{bottom:720.083600pt;}
.y8e{bottom:721.608933pt;}
.y34{bottom:727.615067pt;}
.y60{bottom:733.074533pt;}
.yb8{bottom:733.277867pt;}
.ye{bottom:738.560933pt;}
.y8d{bottom:740.273067pt;}
.yda{bottom:745.710000pt;}
.y33{bottom:746.528133pt;}
.y5f{bottom:751.567600pt;}
.yb7{bottom:751.755067pt;}
.y8c{bottom:758.937467pt;}
.y32{bottom:765.440933pt;}
.y5e{bottom:770.060533pt;}
.yb6{bottom:770.232533pt;}
.yd{bottom:773.388533pt;}
.yd9{bottom:773.426400pt;}
.y8b{bottom:777.601733pt;}
.y31{bottom:784.354000pt;}
.y5d{bottom:788.553600pt;}
.yb5{bottom:788.709733pt;}
.yd8{bottom:801.142800pt;}
.y30{bottom:803.266933pt;}
.y8a{bottom:805.505067pt;}
.y5c{bottom:807.046533pt;}
.yb4{bottom:807.187200pt;}
.y2f{bottom:822.179867pt;}
.y89{bottom:824.169333pt;}
.y5b{bottom:825.539600pt;}
.yb3{bottom:825.664533pt;}
.yd7{bottom:828.859200pt;}
.y2e{bottom:841.092800pt;}
.y88{bottom:842.833600pt;}
.y5a{bottom:844.032533pt;}
.yb2{bottom:844.141867pt;}
.yd6{bottom:856.575600pt;}
.y2d{bottom:860.005867pt;}
.y87{bottom:861.497867pt;}
.y59{bottom:862.525600pt;}
.yb1{bottom:862.619333pt;}
.yc{bottom:878.152133pt;}
.y2c{bottom:878.918800pt;}
.y86{bottom:880.162133pt;}
.y58{bottom:881.018533pt;}
.yb0{bottom:881.096667pt;}
.yd5{bottom:884.292000pt;}
.yb{bottom:896.629467pt;}
.y2b{bottom:897.831733pt;}
.yaf{bottom:899.574000pt;}
.y85{bottom:908.065467pt;}
.y57{bottom:908.750667pt;}
.yd4{bottom:912.008400pt;}
.y2a{bottom:916.744667pt;}
.yae{bottom:918.051467pt;}
.y84{bottom:926.729600pt;}
.y56{bottom:927.243600pt;}
.yad{bottom:936.528667pt;}
.yd3{bottom:939.724800pt;}
.y29{bottom:944.896667pt;}
.y83{bottom:945.394000pt;}
.y55{bottom:945.736667pt;}
.y28{bottom:963.809733pt;}
.y82{bottom:964.058267pt;}
.y54{bottom:964.229600pt;}
.yac{bottom:964.245067pt;}
.ya{bottom:975.536000pt;}
.yd2{bottom:980.669467pt;}
.y81{bottom:982.722533pt;}
.y27{bottom:982.722667pt;}
.y2{bottom:1033.537200pt;}
.y7f{bottom:1041.982133pt;}
.y25{bottom:1041.982267pt;}
.yd0{bottom:1041.982400pt;}
.y9{bottom:1061.222133pt;}
.y8{bottom:1073.222133pt;}
.h3{height:31.402667pt;}
.h4{height:31.701333pt;}
.h2{height:34.808594pt;}
.hb{height:36.040000pt;}
.hc{height:40.304688pt;}
.h7{height:42.400000pt;}
.h9{height:46.640000pt;}
.ha{height:55.264000pt;}
.h6{height:59.360000pt;}
.h8{height:60.416000pt;}
.hd{height:65.450667pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.x3{left:98.267733pt;}
.xb{left:120.944933pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.x8{left:535.566267pt;}
.x6{left:544.215067pt;}
.x7{left:547.144667pt;}
.xa{left:618.616267pt;}
.x2{left:652.371467pt;}
}




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