
    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_116c9c3cde999264496679b6.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_6f26514fdc2817d0564909cf.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_0f8739d337cf83bce5df5ce8.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_780d239ae5c12d4db40a1857.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_4be17550384c2768d68a8a0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.135000;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_166f569822fe5b2e1ffdab07.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_66bde9af50a986979f86377d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fff5715576a89ee31a5fd2f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.166000;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_7af2f582cca3f3dde1959557.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_f3efd0855daa6bbbe5df9ade.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.725000;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_63c59040b164f7b9c5047689.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-19.926000px;}
.ls8{letter-spacing:-18.306000px;}
.ls9{letter-spacing:-12.276000px;}
.ls5{letter-spacing:-0.480000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.132000px;}
.ls0{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.726000px;}
.ls6{letter-spacing:10.656000px;}
.lse{letter-spacing:2071.568400px;}
.lsa{letter-spacing:2192.518800px;}
.ls3{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;}
.ws5{word-spacing:-16.500000px;}
.ws6{word-spacing:-12.750000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:19.602000px;}
.ws1{word-spacing:22.842000px;}
.ws3{word-spacing:24.502500px;}
._2{margin-left:-24.000000px;}
._3{margin-left:-13.860000px;}
._8{margin-left:-1.056000px;}
._4{width:1.188000px;}
._6{width:3.168000px;}
._1{width:4.224000px;}
._5{width:5.280000px;}
._7{width:6.930000px;}
._0{width:13.344000px;}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs9{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;}
.y5b{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y28{bottom:85.039500px;}
.yb7{bottom:85.039650px;}
.y7{bottom:140.316450px;}
.y56{bottom:140.659500px;}
.y89{bottom:149.222850px;}
.yb5{bottom:149.338350px;}
.y6{bottom:153.108450px;}
.y55{bottom:161.449500px;}
.y88{bottom:170.012850px;}
.yb4{bottom:170.128350px;}
.y5{bottom:172.276800px;}
.y54{bottom:182.239500px;}
.y87{bottom:190.802850px;}
.yb3{bottom:190.918350px;}
.y4{bottom:191.452800px;}
.y53{bottom:203.029500px;}
.y3{bottom:204.244800px;}
.y86{bottom:211.592850px;}
.yb2{bottom:211.708350px;}
.y52{bottom:223.819500px;}
.y85{bottom:232.382850px;}
.yb1{bottom:232.498350px;}
.y51{bottom:244.609500px;}
.y84{bottom:253.172850px;}
.yb0{bottom:253.288350px;}
.y50{bottom:265.399500px;}
.y83{bottom:273.962850px;}
.yaf{bottom:274.078350px;}
.y26{bottom:274.655550px;}
.y4f{bottom:286.189500px;}
.y82{bottom:294.752850px;}
.yae{bottom:294.755700px;}
.y25{bottom:295.445550px;}
.y4e{bottom:306.979500px;}
.y81{bottom:315.542850px;}
.yad{bottom:315.545700px;}
.y24{bottom:316.235550px;}
.y4d{bottom:327.769500px;}
.y80{bottom:336.332850px;}
.yac{bottom:336.335700px;}
.y23{bottom:337.025550px;}
.y59{bottom:348.559500px;}
.y7f{bottom:357.122850px;}
.yab{bottom:357.125700px;}
.y22{bottom:357.815550px;}
.y4c{bottom:358.344000px;}
.y7e{bottom:377.912850px;}
.yaa{bottom:377.915700px;}
.y21{bottom:378.605550px;}
.y4b{bottom:379.134000px;}
.y7d{bottom:398.702850px;}
.ya9{bottom:398.705700px;}
.y20{bottom:399.395550px;}
.y4a{bottom:399.924000px;}
.y7c{bottom:419.492850px;}
.ya8{bottom:419.495700px;}
.y1f{bottom:420.185550px;}
.y49{bottom:420.714000px;}
.y7b{bottom:440.282850px;}
.y1e{bottom:440.975550px;}
.y48{bottom:441.504000px;}
.ya7{bottom:450.680700px;}
.y7a{bottom:461.072850px;}
.y1d{bottom:461.765550px;}
.y47{bottom:462.294000px;}
.ya6{bottom:471.470700px;}
.y79{bottom:481.862850px;}
.y1c{bottom:482.516550px;}
.y46{bottom:483.084000px;}
.ya5{bottom:492.260700px;}
.y78{bottom:502.652850px;}
.y1b{bottom:503.306550px;}
.y45{bottom:503.874000px;}
.ya4{bottom:513.050700px;}
.y77{bottom:523.442850px;}
.y44{bottom:524.664000px;}
.ya3{bottom:533.840700px;}
.y1a{bottom:534.491550px;}
.y43{bottom:545.454000px;}
.y76{bottom:554.627850px;}
.ya2{bottom:554.630700px;}
.y19{bottom:555.281550px;}
.y42{bottom:566.244000px;}
.y75{bottom:575.417850px;}
.ya1{bottom:575.420700px;}
.y18{bottom:576.071550px;}
.y41{bottom:587.034000px;}
.y74{bottom:596.207850px;}
.ya0{bottom:596.210700px;}
.y17{bottom:596.861550px;}
.y73{bottom:616.997850px;}
.y9f{bottom:617.000700px;}
.y40{bottom:617.608500px;}
.y16{bottom:617.651550px;}
.y72{bottom:637.787850px;}
.y9e{bottom:637.790700px;}
.y3f{bottom:638.398500px;}
.y15{bottom:638.441550px;}
.y71{bottom:658.577850px;}
.y9d{bottom:658.580700px;}
.y3e{bottom:659.188500px;}
.y14{bottom:659.231550px;}
.y70{bottom:679.367850px;}
.y9c{bottom:679.370700px;}
.y3d{bottom:679.978500px;}
.y13{bottom:680.021550px;}
.y6f{bottom:700.157850px;}
.y9b{bottom:700.160700px;}
.y3c{bottom:700.768500px;}
.yc6{bottom:720.533250px;}
.y6e{bottom:720.947850px;}
.y9a{bottom:720.950700px;}
.y3b{bottom:721.558500px;}
.y6d{bottom:741.737850px;}
.y3a{bottom:742.348500px;}
.y12{bottom:747.721050px;}
.yc5{bottom:751.718250px;}
.y99{bottom:752.135700px;}
.y6c{bottom:762.527850px;}
.y39{bottom:763.138500px;}
.y11{bottom:768.511050px;}
.yc4{bottom:772.508250px;}
.y98{bottom:772.925700px;}
.y6b{bottom:783.317850px;}
.y38{bottom:783.928500px;}
.y10{bottom:789.301050px;}
.yc3{bottom:793.298250px;}
.y97{bottom:793.715700px;}
.y6a{bottom:804.107850px;}
.y37{bottom:804.718500px;}
.yf{bottom:810.091050px;}
.y96{bottom:814.505700px;}
.yc2{bottom:824.483250px;}
.y69{bottom:824.897850px;}
.y36{bottom:825.508500px;}
.ye{bottom:830.881050px;}
.y95{bottom:835.295700px;}
.y68{bottom:845.687850px;}
.y35{bottom:846.298500px;}
.yc1{bottom:855.668250px;}
.y94{bottom:856.085700px;}
.y67{bottom:866.477850px;}
.y34{bottom:867.088500px;}
.yd{bottom:870.062100px;}
.yc0{bottom:876.458250px;}
.y93{bottom:876.875700px;}
.y66{bottom:887.267850px;}
.y33{bottom:887.878500px;}
.y92{bottom:897.665700px;}
.ybf{bottom:907.643250px;}
.y65{bottom:908.057850px;}
.y32{bottom:908.668500px;}
.y91{bottom:918.455700px;}
.ybe{bottom:928.433250px;}
.y64{bottom:928.847850px;}
.y31{bottom:929.458500px;}
.y90{bottom:939.245700px;}
.ybd{bottom:949.223250px;}
.y30{bottom:950.248500px;}
.y63{bottom:960.032850px;}
.y8f{bottom:960.035700px;}
.y58{bottom:971.038500px;}
.ybc{bottom:980.408250px;}
.y62{bottom:980.822850px;}
.y2f{bottom:980.823000px;}
.y8e{bottom:980.825700px;}
.yc{bottom:987.921150px;}
.y57{bottom:991.828500px;}
.y61{bottom:1001.612850px;}
.y2e{bottom:1001.613000px;}
.y8d{bottom:1001.615700px;}
.yb{bottom:1008.708150px;}
.ybb{bottom:1011.593250px;}
.y60{bottom:1022.402850px;}
.y2d{bottom:1022.403000px;}
.y8c{bottom:1022.405700px;}
.yba{bottom:1032.383250px;}
.y5f{bottom:1043.192850px;}
.y2c{bottom:1043.193000px;}
.y8b{bottom:1043.195700px;}
.yb9{bottom:1063.568250px;}
.y5e{bottom:1063.982850px;}
.y2b{bottom:1063.983000px;}
.y8a{bottom:1063.985700px;}
.y5d{bottom:1084.772850px;}
.y2a{bottom:1084.773000px;}
.ya{bottom:1097.478000px;}
.yb8{bottom:1103.253150px;}
.y5c{bottom:1105.562850px;}
.y29{bottom:1105.563000px;}
.y2{bottom:1162.729350px;}
.y5a{bottom:1172.229900px;}
.y27{bottom:1172.230050px;}
.yb6{bottom:1172.230200px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.h3{height:35.328000px;}
.h2{height:39.159668px;}
.h4{height:43.872000px;}
.hc{height:45.342773px;}
.hb{height:48.042000px;}
.h7{height:56.520000px;}
.h9{height:62.172000px;}
.hd{height:62.183400px;}
.ha{height:62.328000px;}
.he{height:62.622600px;}
.h8{height:67.968000px;}
.hf{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.834931px;}
.h1{height:1263.000000px;}
.w3{width:892.912500px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.x3{left:110.551350px;}
.xc{left:136.057350px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.xa{left:176.457150px;}
.x7{left:564.340200px;}
.x6{left:612.241950px;}
.x8{left:642.291300px;}
.xb{left:671.233950px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-17.712000pt;}
.ls8{letter-spacing:-16.272000pt;}
.ls9{letter-spacing:-10.912000pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.117333pt;}
.ls0{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.645333pt;}
.ls6{letter-spacing:9.472000pt;}
.lse{letter-spacing:1841.394133pt;}
.lsa{letter-spacing:1948.905600pt;}
.ls3{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws6{word-spacing:-11.333333pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:17.424000pt;}
.ws1{word-spacing:20.304000pt;}
.ws3{word-spacing:21.780000pt;}
._2{margin-left:-21.333333pt;}
._3{margin-left:-12.320000pt;}
._8{margin-left:-0.938667pt;}
._4{width:1.056000pt;}
._6{width:2.816000pt;}
._1{width:3.754667pt;}
._5{width:4.693333pt;}
._7{width:6.160000pt;}
._0{width:11.861333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs9{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;}
.y5b{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:75.590667pt;}
.yb7{bottom:75.590800pt;}
.y7{bottom:124.725733pt;}
.y56{bottom:125.030667pt;}
.y89{bottom:132.642533pt;}
.yb5{bottom:132.745200pt;}
.y6{bottom:136.096400pt;}
.y55{bottom:143.510667pt;}
.y88{bottom:151.122533pt;}
.yb4{bottom:151.225200pt;}
.y5{bottom:153.134933pt;}
.y54{bottom:161.990667pt;}
.y87{bottom:169.602533pt;}
.yb3{bottom:169.705200pt;}
.y4{bottom:170.180267pt;}
.y53{bottom:180.470667pt;}
.y3{bottom:181.550933pt;}
.y86{bottom:188.082533pt;}
.yb2{bottom:188.185200pt;}
.y52{bottom:198.950667pt;}
.y85{bottom:206.562533pt;}
.yb1{bottom:206.665200pt;}
.y51{bottom:217.430667pt;}
.y84{bottom:225.042533pt;}
.yb0{bottom:225.145200pt;}
.y50{bottom:235.910667pt;}
.y83{bottom:243.522533pt;}
.yaf{bottom:243.625200pt;}
.y26{bottom:244.138267pt;}
.y4f{bottom:254.390667pt;}
.y82{bottom:262.002533pt;}
.yae{bottom:262.005067pt;}
.y25{bottom:262.618267pt;}
.y4e{bottom:272.870667pt;}
.y81{bottom:280.482533pt;}
.yad{bottom:280.485067pt;}
.y24{bottom:281.098267pt;}
.y4d{bottom:291.350667pt;}
.y80{bottom:298.962533pt;}
.yac{bottom:298.965067pt;}
.y23{bottom:299.578267pt;}
.y59{bottom:309.830667pt;}
.y7f{bottom:317.442533pt;}
.yab{bottom:317.445067pt;}
.y22{bottom:318.058267pt;}
.y4c{bottom:318.528000pt;}
.y7e{bottom:335.922533pt;}
.yaa{bottom:335.925067pt;}
.y21{bottom:336.538267pt;}
.y4b{bottom:337.008000pt;}
.y7d{bottom:354.402533pt;}
.ya9{bottom:354.405067pt;}
.y20{bottom:355.018267pt;}
.y4a{bottom:355.488000pt;}
.y7c{bottom:372.882533pt;}
.ya8{bottom:372.885067pt;}
.y1f{bottom:373.498267pt;}
.y49{bottom:373.968000pt;}
.y7b{bottom:391.362533pt;}
.y1e{bottom:391.978267pt;}
.y48{bottom:392.448000pt;}
.ya7{bottom:400.605067pt;}
.y7a{bottom:409.842533pt;}
.y1d{bottom:410.458267pt;}
.y47{bottom:410.928000pt;}
.ya6{bottom:419.085067pt;}
.y79{bottom:428.322533pt;}
.y1c{bottom:428.903600pt;}
.y46{bottom:429.408000pt;}
.ya5{bottom:437.565067pt;}
.y78{bottom:446.802533pt;}
.y1b{bottom:447.383600pt;}
.y45{bottom:447.888000pt;}
.ya4{bottom:456.045067pt;}
.y77{bottom:465.282533pt;}
.y44{bottom:466.368000pt;}
.ya3{bottom:474.525067pt;}
.y1a{bottom:475.103600pt;}
.y43{bottom:484.848000pt;}
.y76{bottom:493.002533pt;}
.ya2{bottom:493.005067pt;}
.y19{bottom:493.583600pt;}
.y42{bottom:503.328000pt;}
.y75{bottom:511.482533pt;}
.ya1{bottom:511.485067pt;}
.y18{bottom:512.063600pt;}
.y41{bottom:521.808000pt;}
.y74{bottom:529.962533pt;}
.ya0{bottom:529.965067pt;}
.y17{bottom:530.543600pt;}
.y73{bottom:548.442533pt;}
.y9f{bottom:548.445067pt;}
.y40{bottom:548.985333pt;}
.y16{bottom:549.023600pt;}
.y72{bottom:566.922533pt;}
.y9e{bottom:566.925067pt;}
.y3f{bottom:567.465333pt;}
.y15{bottom:567.503600pt;}
.y71{bottom:585.402533pt;}
.y9d{bottom:585.405067pt;}
.y3e{bottom:585.945333pt;}
.y14{bottom:585.983600pt;}
.y70{bottom:603.882533pt;}
.y9c{bottom:603.885067pt;}
.y3d{bottom:604.425333pt;}
.y13{bottom:604.463600pt;}
.y6f{bottom:622.362533pt;}
.y9b{bottom:622.365067pt;}
.y3c{bottom:622.905333pt;}
.yc6{bottom:640.474000pt;}
.y6e{bottom:640.842533pt;}
.y9a{bottom:640.845067pt;}
.y3b{bottom:641.385333pt;}
.y6d{bottom:659.322533pt;}
.y3a{bottom:659.865333pt;}
.y12{bottom:664.640933pt;}
.yc5{bottom:668.194000pt;}
.y99{bottom:668.565067pt;}
.y6c{bottom:677.802533pt;}
.y39{bottom:678.345333pt;}
.y11{bottom:683.120933pt;}
.yc4{bottom:686.674000pt;}
.y98{bottom:687.045067pt;}
.y6b{bottom:696.282533pt;}
.y38{bottom:696.825333pt;}
.y10{bottom:701.600933pt;}
.yc3{bottom:705.154000pt;}
.y97{bottom:705.525067pt;}
.y6a{bottom:714.762533pt;}
.y37{bottom:715.305333pt;}
.yf{bottom:720.080933pt;}
.y96{bottom:724.005067pt;}
.yc2{bottom:732.874000pt;}
.y69{bottom:733.242533pt;}
.y36{bottom:733.785333pt;}
.ye{bottom:738.560933pt;}
.y95{bottom:742.485067pt;}
.y68{bottom:751.722533pt;}
.y35{bottom:752.265333pt;}
.yc1{bottom:760.594000pt;}
.y94{bottom:760.965067pt;}
.y67{bottom:770.202533pt;}
.y34{bottom:770.745333pt;}
.yd{bottom:773.388533pt;}
.yc0{bottom:779.074000pt;}
.y93{bottom:779.445067pt;}
.y66{bottom:788.682533pt;}
.y33{bottom:789.225333pt;}
.y92{bottom:797.925067pt;}
.ybf{bottom:806.794000pt;}
.y65{bottom:807.162533pt;}
.y32{bottom:807.705333pt;}
.y91{bottom:816.405067pt;}
.ybe{bottom:825.274000pt;}
.y64{bottom:825.642533pt;}
.y31{bottom:826.185333pt;}
.y90{bottom:834.885067pt;}
.ybd{bottom:843.754000pt;}
.y30{bottom:844.665333pt;}
.y63{bottom:853.362533pt;}
.y8f{bottom:853.365067pt;}
.y58{bottom:863.145333pt;}
.ybc{bottom:871.474000pt;}
.y62{bottom:871.842533pt;}
.y2f{bottom:871.842667pt;}
.y8e{bottom:871.845067pt;}
.yc{bottom:878.152133pt;}
.y57{bottom:881.625333pt;}
.y61{bottom:890.322533pt;}
.y2e{bottom:890.322667pt;}
.y8d{bottom:890.325067pt;}
.yb{bottom:896.629467pt;}
.ybb{bottom:899.194000pt;}
.y60{bottom:908.802533pt;}
.y2d{bottom:908.802667pt;}
.y8c{bottom:908.805067pt;}
.yba{bottom:917.674000pt;}
.y5f{bottom:927.282533pt;}
.y2c{bottom:927.282667pt;}
.y8b{bottom:927.285067pt;}
.yb9{bottom:945.394000pt;}
.y5e{bottom:945.762533pt;}
.y2b{bottom:945.762667pt;}
.y8a{bottom:945.765067pt;}
.y5d{bottom:964.242533pt;}
.y2a{bottom:964.242667pt;}
.ya{bottom:975.536000pt;}
.yb8{bottom:980.669467pt;}
.y5c{bottom:982.722533pt;}
.y29{bottom:982.722667pt;}
.y2{bottom:1033.537200pt;}
.y5a{bottom:1041.982133pt;}
.y27{bottom:1041.982267pt;}
.yb6{bottom:1041.982400pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.h3{height:31.402667pt;}
.h2{height:34.808594pt;}
.h4{height:38.997333pt;}
.hc{height:40.304688pt;}
.hb{height:42.704000pt;}
.h7{height:50.240000pt;}
.h9{height:55.264000pt;}
.hd{height:55.274133pt;}
.ha{height:55.402667pt;}
.he{height:55.664533pt;}
.h8{height:60.416000pt;}
.hf{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.519939pt;}
.h1{height:1122.666667pt;}
.w3{width:793.700000pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.x3{left:98.267867pt;}
.xc{left:120.939867pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.xa{left:156.850800pt;}
.x7{left:501.635733pt;}
.x6{left:544.215067pt;}
.x8{left:570.925600pt;}
.xb{left:596.652400pt;}
.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; }
  