
    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_5ebac4236c52f15b10f0619b.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_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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a3b9c3c04354c55b2f5ac170.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_63c59040b164f7b9c5047689.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7af2f582cca3f3dde1959557.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.879200px;}
.ls7{letter-spacing:-19.926000px;}
.ls8{letter-spacing:-18.306000px;}
.ls14{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.330000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.396000px;}
.ls10{letter-spacing:0.462000px;}
.ls18{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.768000px;}
.ls11{letter-spacing:0.924000px;}
.ls17{letter-spacing:1.254000px;}
.lse{letter-spacing:1.320000px;}
.ls19{letter-spacing:1.848000px;}
.ls12{letter-spacing:5.874000px;}
.ls6{letter-spacing:10.656000px;}
.lsd{letter-spacing:2071.568400px;}
.ls9{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;}
.ws6{word-spacing:-16.500000px;}
.ws7{word-spacing:-12.750000px;}
.ws3{word-spacing:-9.009000px;}
.ws4{word-spacing:-7.371000px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:19.602000px;}
.ws1{word-spacing:22.842000px;}
._3{margin-left:-24.000000px;}
._2{margin-left:-1.248000px;}
._5{width:1.122000px;}
._7{width:2.178000px;}
._6{width:3.366000px;}
._9{width:4.374000px;}
._1{width:5.376000px;}
._4{width:6.930000px;}
._8{width:8.124000px;}
._0{width:13.344000px;}
._a{width:53.783400px;}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:35.100000px;}
.fs8{font-size:42.900000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y28{bottom:85.039500px;}
.ya1{bottom:85.039650px;}
.y7{bottom:140.316450px;}
.y55{bottom:141.880500px;}
.y9f{bottom:144.440100px;}
.y8c{bottom:148.511550px;}
.y6{bottom:153.108450px;}
.y54{bottom:162.670500px;}
.y9e{bottom:165.230100px;}
.y8b{bottom:169.301550px;}
.y5{bottom:172.276800px;}
.y53{bottom:183.460500px;}
.y8a{bottom:190.091550px;}
.y4{bottom:191.452800px;}
.y3{bottom:204.244800px;}
.y52{bottom:204.250500px;}
.y89{bottom:210.881550px;}
.y9d{bottom:211.292850px;}
.y51{bottom:225.040500px;}
.y88{bottom:231.671550px;}
.y5f{bottom:234.825000px;}
.y50{bottom:245.830500px;}
.y87{bottom:252.461550px;}
.y26{bottom:255.130050px;}
.y5e{bottom:255.615000px;}
.y25{bottom:271.114050px;}
.y86{bottom:273.251550px;}
.y4f{bottom:276.405000px;}
.y9c{bottom:283.630500px;}
.y24{bottom:287.098050px;}
.y85{bottom:294.041550px;}
.y4e{bottom:297.195000px;}
.y23{bottom:303.082050px;}
.y9b{bottom:304.420500px;}
.y84{bottom:314.831550px;}
.y4d{bottom:317.985000px;}
.y22{bottom:323.116050px;}
.y9a{bottom:325.210500px;}
.y4c{bottom:338.775000px;}
.y99{bottom:346.000500px;}
.y83{bottom:356.409450px;}
.y4b{bottom:359.565000px;}
.y98{bottom:366.790500px;}
.y82{bottom:374.004450px;}
.y4a{bottom:380.355000px;}
.y97{bottom:387.580500px;}
.y21{bottom:388.981350px;}
.y81{bottom:391.599450px;}
.y5d{bottom:401.145000px;}
.y96{bottom:408.370500px;}
.y20{bottom:409.771350px;}
.y49{bottom:410.929500px;}
.y5c{bottom:421.935000px;}
.y95{bottom:429.160500px;}
.y80{bottom:429.887850px;}
.y1f{bottom:430.561350px;}
.y48{bottom:431.719500px;}
.y7f{bottom:450.677850px;}
.y1e{bottom:451.351350px;}
.y47{bottom:452.509500px;}
.y94{bottom:470.738400px;}
.y7e{bottom:471.467850px;}
.y1d{bottom:472.141350px;}
.y46{bottom:473.299500px;}
.y93{bottom:488.333400px;}
.y7d{bottom:492.257850px;}
.y1c{bottom:492.931350px;}
.y45{bottom:494.089500px;}
.y92{bottom:505.928400px;}
.y1b{bottom:513.721350px;}
.y44{bottom:514.879500px;}
.y7c{bottom:523.442850px;}
.y1a{bottom:534.511350px;}
.y43{bottom:535.669500px;}
.y7b{bottom:544.232850px;}
.y5b{bottom:545.454000px;}
.y19{bottom:555.301350px;}
.y42{bottom:556.459500px;}
.y7a{bottom:565.022850px;}
.y5a{bottom:566.244000px;}
.y18{bottom:576.091350px;}
.y41{bottom:577.249500px;}
.y91{bottom:585.812850px;}
.y59{bottom:587.034000px;}
.y79{bottom:596.207850px;}
.y17{bottom:596.881350px;}
.y40{bottom:607.824000px;}
.y78{bottom:616.997850px;}
.y16{bottom:617.651550px;}
.y3f{bottom:628.614000px;}
.y77{bottom:637.787850px;}
.y15{bottom:638.441550px;}
.y3e{bottom:649.404000px;}
.y76{bottom:658.577850px;}
.y14{bottom:659.231550px;}
.y3d{bottom:670.194000px;}
.y75{bottom:679.367850px;}
.y3c{bottom:690.984000px;}
.y74{bottom:700.157850px;}
.y3b{bottom:711.774000px;}
.y73{bottom:720.947850px;}
.y13{bottom:726.931050px;}
.y3a{bottom:732.564000px;}
.y72{bottom:741.737850px;}
.y12{bottom:747.721050px;}
.y39{bottom:753.354000px;}
.y71{bottom:762.527850px;}
.y58{bottom:763.138500px;}
.y11{bottom:768.511050px;}
.y90{bottom:772.922850px;}
.y38{bottom:774.144000px;}
.y70{bottom:783.317850px;}
.y57{bottom:783.928500px;}
.y10{bottom:789.301050px;}
.y8f{bottom:793.712850px;}
.y37{bottom:804.718500px;}
.yf{bottom:810.091050px;}
.y6f{bottom:814.502850px;}
.y36{bottom:825.508500px;}
.ye{bottom:830.881050px;}
.y6e{bottom:835.292850px;}
.yac{bottom:845.688150px;}
.y35{bottom:846.298500px;}
.y6d{bottom:856.082850px;}
.yab{bottom:866.478150px;}
.y34{bottom:867.088500px;}
.yd{bottom:870.062100px;}
.y6c{bottom:876.872850px;}
.yaa{bottom:887.268150px;}
.y33{bottom:887.878500px;}
.y6b{bottom:897.662850px;}
.y32{bottom:908.668500px;}
.y8e{bottom:918.452850px;}
.ya9{bottom:918.453150px;}
.y6a{bottom:928.847850px;}
.y31{bottom:929.458500px;}
.y69{bottom:949.637850px;}
.ya8{bottom:949.638150px;}
.y56{bottom:950.248500px;}
.y30{bottom:960.033000px;}
.y68{bottom:970.427850px;}
.ya7{bottom:970.428150px;}
.y2f{bottom:980.823000px;}
.yc{bottom:987.921150px;}
.y67{bottom:991.217850px;}
.y2e{bottom:1001.613000px;}
.ya6{bottom:1001.613150px;}
.yb{bottom:1008.708150px;}
.y66{bottom:1012.007850px;}
.y2d{bottom:1022.403000px;}
.ya5{bottom:1022.403150px;}
.y65{bottom:1032.797850px;}
.y2c{bottom:1043.193000px;}
.y64{bottom:1053.587850px;}
.ya4{bottom:1053.588150px;}
.y8d{bottom:1063.982850px;}
.y2b{bottom:1063.983000px;}
.y63{bottom:1084.772850px;}
.y2a{bottom:1084.773000px;}
.ya3{bottom:1084.773150px;}
.ya{bottom:1097.478000px;}
.y62{bottom:1105.562850px;}
.y29{bottom:1105.563000px;}
.ya2{bottom:1105.563150px;}
.y2{bottom:1162.729350px;}
.y60{bottom:1172.229900px;}
.y27{bottom:1172.230050px;}
.ya0{bottom:1172.230200px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.hb{height:34.668000px;}
.h3{height:35.328000px;}
.h2{height:39.159668px;}
.h4{height:43.872000px;}
.he{height:45.342773px;}
.hd{height:48.042000px;}
.hc{height:50.868000px;}
.h7{height:56.520000px;}
.h9{height:62.172000px;}
.ha{height:62.251200px;}
.h8{height:67.968000px;}
.hf{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.834931px;}
.h10{height:1262.835000px;}
.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.057500px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.xb{left:153.070800px;}
.x8{left:405.279450px;}
.x7{left:596.721750px;}
.x6{left:612.241950px;}
.x2{left:733.917900px;}
.xa{left:749.951550px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.670400pt;}
.ls7{letter-spacing:-17.712000pt;}
.ls8{letter-spacing:-16.272000pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.352000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls18{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.682667pt;}
.ls11{letter-spacing:0.821333pt;}
.ls17{letter-spacing:1.114667pt;}
.lse{letter-spacing:1.173333pt;}
.ls19{letter-spacing:1.642667pt;}
.ls12{letter-spacing:5.221333pt;}
.ls6{letter-spacing:9.472000pt;}
.lsd{letter-spacing:1841.394133pt;}
.ls9{letter-spacing:1948.905600pt;}
.ls3{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws6{word-spacing:-14.666667pt;}
.ws7{word-spacing:-11.333333pt;}
.ws3{word-spacing:-8.008000pt;}
.ws4{word-spacing:-6.552000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:17.424000pt;}
.ws1{word-spacing:20.304000pt;}
._3{margin-left:-21.333333pt;}
._2{margin-left:-1.109333pt;}
._5{width:0.997333pt;}
._7{width:1.936000pt;}
._6{width:2.992000pt;}
._9{width:3.888000pt;}
._1{width:4.778667pt;}
._4{width:6.160000pt;}
._8{width:7.221333pt;}
._0{width:11.861333pt;}
._a{width:47.807467pt;}
.fs9{font-size:31.200000pt;}
.fs8{font-size:38.133333pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:75.590667pt;}
.ya1{bottom:75.590800pt;}
.y7{bottom:124.725733pt;}
.y55{bottom:126.116000pt;}
.y9f{bottom:128.391200pt;}
.y8c{bottom:132.010267pt;}
.y6{bottom:136.096400pt;}
.y54{bottom:144.596000pt;}
.y9e{bottom:146.871200pt;}
.y8b{bottom:150.490267pt;}
.y5{bottom:153.134933pt;}
.y53{bottom:163.076000pt;}
.y8a{bottom:168.970267pt;}
.y4{bottom:170.180267pt;}
.y3{bottom:181.550933pt;}
.y52{bottom:181.556000pt;}
.y89{bottom:187.450267pt;}
.y9d{bottom:187.815867pt;}
.y51{bottom:200.036000pt;}
.y88{bottom:205.930267pt;}
.y5f{bottom:208.733333pt;}
.y50{bottom:218.516000pt;}
.y87{bottom:224.410267pt;}
.y26{bottom:226.782267pt;}
.y5e{bottom:227.213333pt;}
.y25{bottom:240.990267pt;}
.y86{bottom:242.890267pt;}
.y4f{bottom:245.693333pt;}
.y9c{bottom:252.116000pt;}
.y24{bottom:255.198267pt;}
.y85{bottom:261.370267pt;}
.y4e{bottom:264.173333pt;}
.y23{bottom:269.406267pt;}
.y9b{bottom:270.596000pt;}
.y84{bottom:279.850267pt;}
.y4d{bottom:282.653333pt;}
.y22{bottom:287.214267pt;}
.y9a{bottom:289.076000pt;}
.y4c{bottom:301.133333pt;}
.y99{bottom:307.556000pt;}
.y83{bottom:316.808400pt;}
.y4b{bottom:319.613333pt;}
.y98{bottom:326.036000pt;}
.y82{bottom:332.448400pt;}
.y4a{bottom:338.093333pt;}
.y97{bottom:344.516000pt;}
.y21{bottom:345.761200pt;}
.y81{bottom:348.088400pt;}
.y5d{bottom:356.573333pt;}
.y96{bottom:362.996000pt;}
.y20{bottom:364.241200pt;}
.y49{bottom:365.270667pt;}
.y5c{bottom:375.053333pt;}
.y95{bottom:381.476000pt;}
.y80{bottom:382.122533pt;}
.y1f{bottom:382.721200pt;}
.y48{bottom:383.750667pt;}
.y7f{bottom:400.602533pt;}
.y1e{bottom:401.201200pt;}
.y47{bottom:402.230667pt;}
.y94{bottom:418.434133pt;}
.y7e{bottom:419.082533pt;}
.y1d{bottom:419.681200pt;}
.y46{bottom:420.710667pt;}
.y93{bottom:434.074133pt;}
.y7d{bottom:437.562533pt;}
.y1c{bottom:438.161200pt;}
.y45{bottom:439.190667pt;}
.y92{bottom:449.714133pt;}
.y1b{bottom:456.641200pt;}
.y44{bottom:457.670667pt;}
.y7c{bottom:465.282533pt;}
.y1a{bottom:475.121200pt;}
.y43{bottom:476.150667pt;}
.y7b{bottom:483.762533pt;}
.y5b{bottom:484.848000pt;}
.y19{bottom:493.601200pt;}
.y42{bottom:494.630667pt;}
.y7a{bottom:502.242533pt;}
.y5a{bottom:503.328000pt;}
.y18{bottom:512.081200pt;}
.y41{bottom:513.110667pt;}
.y91{bottom:520.722533pt;}
.y59{bottom:521.808000pt;}
.y79{bottom:529.962533pt;}
.y17{bottom:530.561200pt;}
.y40{bottom:540.288000pt;}
.y78{bottom:548.442533pt;}
.y16{bottom:549.023600pt;}
.y3f{bottom:558.768000pt;}
.y77{bottom:566.922533pt;}
.y15{bottom:567.503600pt;}
.y3e{bottom:577.248000pt;}
.y76{bottom:585.402533pt;}
.y14{bottom:585.983600pt;}
.y3d{bottom:595.728000pt;}
.y75{bottom:603.882533pt;}
.y3c{bottom:614.208000pt;}
.y74{bottom:622.362533pt;}
.y3b{bottom:632.688000pt;}
.y73{bottom:640.842533pt;}
.y13{bottom:646.160933pt;}
.y3a{bottom:651.168000pt;}
.y72{bottom:659.322533pt;}
.y12{bottom:664.640933pt;}
.y39{bottom:669.648000pt;}
.y71{bottom:677.802533pt;}
.y58{bottom:678.345333pt;}
.y11{bottom:683.120933pt;}
.y90{bottom:687.042533pt;}
.y38{bottom:688.128000pt;}
.y70{bottom:696.282533pt;}
.y57{bottom:696.825333pt;}
.y10{bottom:701.600933pt;}
.y8f{bottom:705.522533pt;}
.y37{bottom:715.305333pt;}
.yf{bottom:720.080933pt;}
.y6f{bottom:724.002533pt;}
.y36{bottom:733.785333pt;}
.ye{bottom:738.560933pt;}
.y6e{bottom:742.482533pt;}
.yac{bottom:751.722800pt;}
.y35{bottom:752.265333pt;}
.y6d{bottom:760.962533pt;}
.yab{bottom:770.202800pt;}
.y34{bottom:770.745333pt;}
.yd{bottom:773.388533pt;}
.y6c{bottom:779.442533pt;}
.yaa{bottom:788.682800pt;}
.y33{bottom:789.225333pt;}
.y6b{bottom:797.922533pt;}
.y32{bottom:807.705333pt;}
.y8e{bottom:816.402533pt;}
.ya9{bottom:816.402800pt;}
.y6a{bottom:825.642533pt;}
.y31{bottom:826.185333pt;}
.y69{bottom:844.122533pt;}
.ya8{bottom:844.122800pt;}
.y56{bottom:844.665333pt;}
.y30{bottom:853.362667pt;}
.y68{bottom:862.602533pt;}
.ya7{bottom:862.602800pt;}
.y2f{bottom:871.842667pt;}
.yc{bottom:878.152133pt;}
.y67{bottom:881.082533pt;}
.y2e{bottom:890.322667pt;}
.ya6{bottom:890.322800pt;}
.yb{bottom:896.629467pt;}
.y66{bottom:899.562533pt;}
.y2d{bottom:908.802667pt;}
.ya5{bottom:908.802800pt;}
.y65{bottom:918.042533pt;}
.y2c{bottom:927.282667pt;}
.y64{bottom:936.522533pt;}
.ya4{bottom:936.522800pt;}
.y8d{bottom:945.762533pt;}
.y2b{bottom:945.762667pt;}
.y63{bottom:964.242533pt;}
.y2a{bottom:964.242667pt;}
.ya3{bottom:964.242800pt;}
.ya{bottom:975.536000pt;}
.y62{bottom:982.722533pt;}
.y29{bottom:982.722667pt;}
.ya2{bottom:982.722800pt;}
.y2{bottom:1033.537200pt;}
.y60{bottom:1041.982133pt;}
.y27{bottom:1041.982267pt;}
.ya0{bottom:1041.982400pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.hb{height:30.816000pt;}
.h3{height:31.402667pt;}
.h2{height:34.808594pt;}
.h4{height:38.997333pt;}
.he{height:40.304688pt;}
.hd{height:42.704000pt;}
.hc{height:45.216000pt;}
.h7{height:50.240000pt;}
.h9{height:55.264000pt;}
.ha{height:55.334400pt;}
.h8{height:60.416000pt;}
.hf{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.519939pt;}
.h10{height:1122.520000pt;}
.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.940000pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.xb{left:136.062933pt;}
.x8{left:360.248400pt;}
.x7{left:530.419333pt;}
.x6{left:544.215067pt;}
.x2{left:652.371467pt;}
.xa{left:666.623600pt;}
}




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