
    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_4424613379446933a02e7996.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_4f2ab229d7e1a997271c2f7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001953;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_9147a54ef54d11fe4f6317b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_998c6154c0d90fe08e590684.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3b70bc8915742a9c80c44254.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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);}
.v1{vertical-align:-56.966400px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.853171px;}
.lsb{letter-spacing:-0.792230px;}
.ls17{letter-spacing:-0.731290px;}
.ls16{letter-spacing:-0.670349px;}
.ls12{letter-spacing:-0.609408px;}
.lse{letter-spacing:-0.548467px;}
.ls13{letter-spacing:-0.426586px;}
.ls15{letter-spacing:-0.365645px;}
.lsc{letter-spacing:-0.304704px;}
.ls21{letter-spacing:-0.298080px;}
.ls20{letter-spacing:-0.248400px;}
.ls11{letter-spacing:-0.243763px;}
.ls1c{letter-spacing:-0.182822px;}
.ls19{letter-spacing:-0.177523px;}
.ls1d{letter-spacing:-0.149040px;}
.lsa{letter-spacing:-0.121882px;}
.lsf{letter-spacing:-0.060941px;}
.ls1f{letter-spacing:-0.049680px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060941px;}
.ls1a{letter-spacing:0.077501px;}
.ls22{letter-spacing:0.099360px;}
.ls6{letter-spacing:0.121882px;}
.lsd{letter-spacing:0.182822px;}
.ls1{letter-spacing:0.243763px;}
.ls1e{letter-spacing:0.248400px;}
.ls10{letter-spacing:0.304704px;}
.ls18{letter-spacing:0.310666px;}
.ls1b{letter-spacing:0.596160px;}
.ls5{letter-spacing:0.792230px;}
.ls0{letter-spacing:1.462579px;}
.ls3{letter-spacing:10.055232px;}
.ls4{letter-spacing:10.140549px;}
.ls7{letter-spacing:12.736627px;}
.ls2{letter-spacing:19.988582px;}
.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;}
}
.ws32{word-spacing:-17.592682px;}
.ws33{word-spacing:-14.016384px;}
.ws2{word-spacing:-13.894502px;}
.ws7{word-spacing:-13.833562px;}
.ws1{word-spacing:-13.772621px;}
.ws6{word-spacing:-13.711680px;}
.ws8{word-spacing:-13.406976px;}
.ws4{word-spacing:-13.346035px;}
.ws3{word-spacing:-13.163213px;}
.ws0{word-spacing:-12.980390px;}
.ws5{word-spacing:-12.919450px;}
.ws34{word-spacing:-11.575440px;}
.ws48{word-spacing:-11.426400px;}
.ws35{word-spacing:-11.277360px;}
.ws38{word-spacing:-11.178000px;}
.ws36{word-spacing:-11.078640px;}
.ws37{word-spacing:-11.028960px;}
.ws17{word-spacing:-3.107981px;}
.ws18{word-spacing:-2.437632px;}
.ws46{word-spacing:-1.242000px;}
.ws2b{word-spacing:-1.096934px;}
.ws39{word-spacing:-0.731290px;}
.ws2d{word-spacing:-0.670349px;}
.ws47{word-spacing:-0.596160px;}
.ws30{word-spacing:-0.488189px;}
.ws2c{word-spacing:-0.487526px;}
.ws2a{word-spacing:-0.304704px;}
.ws10{word-spacing:-0.243763px;}
.ws29{word-spacing:-0.121882px;}
.ws19{word-spacing:-0.060941px;}
.ws3a{word-spacing:-0.049680px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:0.060941px;}
.ws3b{word-spacing:0.099360px;}
.ws3d{word-spacing:0.149040px;}
.ws31{word-spacing:0.177523px;}
.ws1e{word-spacing:0.182822px;}
.ws3c{word-spacing:0.198720px;}
.ws20{word-spacing:0.243763px;}
.ws4a{word-spacing:0.248400px;}
.wsc{word-spacing:0.304704px;}
.ws28{word-spacing:0.365645px;}
.ws53{word-spacing:0.596160px;}
.ws27{word-spacing:0.670349px;}
.ws40{word-spacing:0.745200px;}
.ws1f{word-spacing:0.853171px;}
.ws21{word-spacing:1.157875px;}
.wsb{word-spacing:2.071987px;}
.ws4f{word-spacing:2.086560px;}
.ws4e{word-spacing:2.185920px;}
.ws16{word-spacing:2.193869px;}
.wsa{word-spacing:2.254810px;}
.ws15{word-spacing:2.376691px;}
.wsd{word-spacing:2.437632px;}
.ws4c{word-spacing:2.732400px;}
.wse{word-spacing:3.900211px;}
.ws44{word-spacing:4.073760px;}
.ws2f{word-spacing:4.143974px;}
.wsf{word-spacing:4.631501px;}
.ws4b{word-spacing:5.365440px;}
.ws45{word-spacing:6.060960px;}
.ws49{word-spacing:6.160320px;}
.ws2e{word-spacing:7.495718px;}
.ws1c{word-spacing:9.445824px;}
.ws50{word-spacing:9.886320px;}
.ws1a{word-spacing:9.933350px;}
.ws51{word-spacing:10.035360px;}
.ws1d{word-spacing:10.116173px;}
.ws1b{word-spacing:10.298995px;}
.ws41{word-spacing:11.327040px;}
.ws26{word-spacing:11.944397px;}
.ws23{word-spacing:12.005338px;}
.ws25{word-spacing:12.431923px;}
.ws22{word-spacing:12.797568px;}
.ws24{word-spacing:13.406976px;}
.ws13{word-spacing:19.683878px;}
.ws12{word-spacing:20.049523px;}
.ws14{word-spacing:20.232346px;}
.ws3f{word-spacing:23.945760px;}
.ws3e{word-spacing:24.045120px;}
.ws42{word-spacing:29.211840px;}
.ws4d{word-spacing:32.540400px;}
.ws43{word-spacing:43.817760px;}
.ws52{word-spacing:60.858000px;}
._9{margin-left:-11.327040px;}
._3{margin-left:-2.803277px;}
._1{margin-left:-1.096934px;}
._2{width:1.023805px;}
._0{width:2.071987px;}
._6{width:7.215391px;}
._4{width:10.335560px;}
._a{width:22.836240px;}
._5{width:135.288576px;}
._7{width:781.078234px;}
._8{width:2341.140000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs2{font-size:44.380800px;}
.fs5{font-size:49.680000px;}
.fs1{font-size:54.979200px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:60.940800px;}
.fs4{font-size:77.500800px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:2.649600px;}
.y51{bottom:2.815200px;}
.y5f{bottom:5.630400px;}
.y32{bottom:9.108000px;}
.y30{bottom:16.891200px;}
.y50{bottom:17.056800px;}
.y7d{bottom:18.878400px;}
.y7a{bottom:29.808000px;}
.y28{bottom:43.050000px;}
.y27{bottom:58.050000px;}
.y26{bottom:73.050000px;}
.y25{bottom:83.550000px;}
.y1{bottom:101.025000px;}
.y71{bottom:114.760800px;}
.y86{bottom:115.920000px;}
.y66{bottom:134.467200px;}
.y24{bottom:140.275123px;}
.y23{bottom:171.248285px;}
.y22{bottom:206.182598px;}
.y53{bottom:218.269800px;}
.y85{bottom:231.849000px;}
.y21{bottom:241.284499px;}
.y52{bottom:247.415400px;}
.y84{bottom:253.211400px;}
.y4f{bottom:268.777800px;}
.y83{bottom:274.739400px;}
.y20{bottom:276.386400px;}
.y82{bottom:296.101800px;}
.y4e{bottom:298.089000px;}
.y7e{bottom:300.895200px;}
.y1f{bottom:310.831200px;}
.y81{bottom:317.464200px;}
.y1e{bottom:325.735200px;}
.y4d{bottom:327.234600px;}
.y80{bottom:338.826600px;}
.y7b{bottom:342.957600px;}
.y4c{bottom:356.380200px;}
.y1d{bottom:357.199200px;}
.y7f{bottom:367.972200px;}
.y78{bottom:384.336900px;}
.y4b{bottom:385.691400px;}
.y1c{bottom:386.784634px;}
.y7c{bottom:397.283400px;}
.y77{bottom:398.582640px;}
.y4a{bottom:407.053800px;}
.y76{bottom:412.828380px;}
.y1b{bottom:417.910147px;}
.y75{bottom:427.074120px;}
.y79{bottom:428.416200px;}
.y49{bottom:436.199400px;}
.y74{bottom:441.319860px;}
.y1a{bottom:448.883309px;}
.y73{bottom:455.727060px;}
.y48{bottom:465.345000px;}
.y72{bottom:469.972800px;}
.y70{bottom:470.478600px;}
.y19{bottom:480.008822px;}
.y47{bottom:494.656200px;}
.y18{bottom:499.707936px;}
.y6f{bottom:502.728480px;}
.y46{bottom:516.018600px;}
.y6e{bottom:516.974220px;}
.y17{bottom:519.742224px;}
.y6d{bottom:531.219960px;}
.y45{bottom:537.381000px;}
.y6c{bottom:545.465700px;}
.y16{bottom:550.867738px;}
.y44{bottom:558.743400px;}
.y6b{bottom:559.711440px;}
.y6a{bottom:573.957180px;}
.y15{bottom:581.993251px;}
.y43{bottom:587.889000px;}
.y69{bottom:588.202920px;}
.y65{bottom:597.493800px;}
.y14{bottom:601.859952px;}
.y68{bottom:602.448660px;}
.y42{bottom:609.417000px;}
.y67{bottom:616.694400px;}
.y13{bottom:621.726653px;}
.y41{bottom:630.779400px;}
.y12{bottom:653.019754px;}
.y40{bottom:659.925000px;}
.y3f{bottom:681.287400px;}
.y11{bottom:683.992915px;}
.y3e{bottom:710.433000px;}
.y10{bottom:715.118429px;}
.y3c{bottom:731.961000px;}
.yf{bottom:734.817542px;}
.y64{bottom:744.215400px;}
.ye{bottom:754.851830px;}
.y3b{bottom:761.106600px;}
.y63{bottom:765.743400px;}
.y3a{bottom:782.469000px;}
.yd{bottom:786.144931px;}
.y62{bottom:787.105800px;}
.y39{bottom:803.831400px;}
.yc{bottom:805.844045px;}
.y61{bottom:808.468200px;}
.y38{bottom:825.193800px;}
.yb{bottom:825.878333px;}
.y60{bottom:829.830600px;}
.ya{bottom:845.912621px;}
.y37{bottom:846.721800px;}
.y5e{bottom:851.193000px;}
.y9{bottom:865.946909px;}
.y36{bottom:868.084200px;}
.y5d{bottom:869.077800px;}
.y35{bottom:889.446600px;}
.y5c{bottom:890.440200px;}
.y8{bottom:897.072422px;}
.y34{bottom:910.809000px;}
.y5b{bottom:911.968200px;}
.y2e{bottom:919.919923px;}
.y7{bottom:928.045584px;}
.y33{bottom:932.171400px;}
.y5a{bottom:941.113800px;}
.y6{bottom:947.912285px;}
.y2d{bottom:951.045437px;}
.y31{bottom:953.533800px;}
.y5{bottom:967.946573px;}
.y2c{bottom:969.434323px;}
.y59{bottom:970.259400px;}
.y2f{bottom:975.061800px;}
.y2b{bottom:987.975562px;}
.y4{bottom:999.072086px;}
.y58{bottom:999.405000px;}
.y8f{bottom:1006.500000px;}
.y2a{bottom:1006.516800px;}
.y29{bottom:1026.057600px;}
.y57{bottom:1028.716200px;}
.y8e{bottom:1029.000000px;}
.y3{bottom:1030.197600px;}
.y8d{bottom:1044.000000px;}
.y2{bottom:1055.368800px;}
.y56{bottom:1057.861800px;}
.y8c{bottom:1059.000000px;}
.y8b{bottom:1074.000000px;}
.y55{bottom:1087.007400px;}
.y8a{bottom:1089.000000px;}
.y89{bottom:1113.000000px;}
.y54{bottom:1116.318600px;}
.y88{bottom:1137.000000px;}
.y87{bottom:1161.000000px;}
.hf{height:17.222400px;}
.hb{height:20.698620px;}
.ha{height:20.700000px;}
.hc{height:28.483200px;}
.h8{height:28.484580px;}
.hd{height:28.647420px;}
.he{height:28.648800px;}
.h13{height:30.471780px;}
.h12{height:41.400000px;}
.h6{height:43.804688px;}
.h5{height:47.354314px;}
.h3{height:50.258306px;}
.h9{height:53.008560px;}
.h4{height:58.662806px;}
.h15{height:62.578125px;}
.h7{height:63.915455px;}
.h14{height:87.609375px;}
.h11{height:126.352800px;}
.h10{height:146.059200px;}
.h2{height:1161.849600px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:136.288800px;}
.w5{width:282.846180px;}
.w4{width:331.696800px;}
.w2{width:821.541600px;}
.w6{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.120800px;}
.x1{left:35.715000px;}
.x14{left:54.000000px;}
.x7{left:55.500000px;}
.xc{left:84.898200px;}
.x3{left:117.410400px;}
.x6{left:146.887200px;}
.x10{left:193.255200px;}
.x13{left:205.845000px;}
.xe{left:222.015000px;}
.x2{left:237.967200px;}
.x5{left:351.514483px;}
.x4{left:385.123334px;}
.x12{left:443.325000px;}
.xa{left:509.875114px;}
.x11{left:525.780000px;}
.xf{left:554.539800px;}
.x9{left:570.160800px;}
.xb{left:657.428026px;}
.x8{left:711.914400px;}
@media print{
.v1{vertical-align:-50.636800pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.758374pt;}
.lsb{letter-spacing:-0.704205pt;}
.ls17{letter-spacing:-0.650035pt;}
.ls16{letter-spacing:-0.595866pt;}
.ls12{letter-spacing:-0.541696pt;}
.lse{letter-spacing:-0.487526pt;}
.ls13{letter-spacing:-0.379187pt;}
.ls15{letter-spacing:-0.325018pt;}
.lsc{letter-spacing:-0.270848pt;}
.ls21{letter-spacing:-0.264960pt;}
.ls20{letter-spacing:-0.220800pt;}
.ls11{letter-spacing:-0.216678pt;}
.ls1c{letter-spacing:-0.162509pt;}
.ls19{letter-spacing:-0.157798pt;}
.ls1d{letter-spacing:-0.132480pt;}
.lsa{letter-spacing:-0.108339pt;}
.lsf{letter-spacing:-0.054170pt;}
.ls1f{letter-spacing:-0.044160pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.054170pt;}
.ls1a{letter-spacing:0.068890pt;}
.ls22{letter-spacing:0.088320pt;}
.ls6{letter-spacing:0.108339pt;}
.lsd{letter-spacing:0.162509pt;}
.ls1{letter-spacing:0.216678pt;}
.ls1e{letter-spacing:0.220800pt;}
.ls10{letter-spacing:0.270848pt;}
.ls18{letter-spacing:0.276147pt;}
.ls1b{letter-spacing:0.529920pt;}
.ls5{letter-spacing:0.704205pt;}
.ls0{letter-spacing:1.300070pt;}
.ls3{letter-spacing:8.937984pt;}
.ls4{letter-spacing:9.013821pt;}
.ls7{letter-spacing:11.321446pt;}
.ls2{letter-spacing:17.767629pt;}
.ws32{word-spacing:-15.637939pt;}
.ws33{word-spacing:-12.459008pt;}
.ws2{word-spacing:-12.350669pt;}
.ws7{word-spacing:-12.296499pt;}
.ws1{word-spacing:-12.242330pt;}
.ws6{word-spacing:-12.188160pt;}
.ws8{word-spacing:-11.917312pt;}
.ws4{word-spacing:-11.863142pt;}
.ws3{word-spacing:-11.700634pt;}
.ws0{word-spacing:-11.538125pt;}
.ws5{word-spacing:-11.483955pt;}
.ws34{word-spacing:-10.289280pt;}
.ws48{word-spacing:-10.156800pt;}
.ws35{word-spacing:-10.024320pt;}
.ws38{word-spacing:-9.936000pt;}
.ws36{word-spacing:-9.847680pt;}
.ws37{word-spacing:-9.803520pt;}
.ws17{word-spacing:-2.762650pt;}
.ws18{word-spacing:-2.166784pt;}
.ws46{word-spacing:-1.104000pt;}
.ws2b{word-spacing:-0.975053pt;}
.ws39{word-spacing:-0.650035pt;}
.ws2d{word-spacing:-0.595866pt;}
.ws47{word-spacing:-0.529920pt;}
.ws30{word-spacing:-0.433946pt;}
.ws2c{word-spacing:-0.433357pt;}
.ws2a{word-spacing:-0.270848pt;}
.ws10{word-spacing:-0.216678pt;}
.ws29{word-spacing:-0.108339pt;}
.ws19{word-spacing:-0.054170pt;}
.ws3a{word-spacing:-0.044160pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:0.054170pt;}
.ws3b{word-spacing:0.088320pt;}
.ws3d{word-spacing:0.132480pt;}
.ws31{word-spacing:0.157798pt;}
.ws1e{word-spacing:0.162509pt;}
.ws3c{word-spacing:0.176640pt;}
.ws20{word-spacing:0.216678pt;}
.ws4a{word-spacing:0.220800pt;}
.wsc{word-spacing:0.270848pt;}
.ws28{word-spacing:0.325018pt;}
.ws53{word-spacing:0.529920pt;}
.ws27{word-spacing:0.595866pt;}
.ws40{word-spacing:0.662400pt;}
.ws1f{word-spacing:0.758374pt;}
.ws21{word-spacing:1.029222pt;}
.wsb{word-spacing:1.841766pt;}
.ws4f{word-spacing:1.854720pt;}
.ws4e{word-spacing:1.943040pt;}
.ws16{word-spacing:1.950106pt;}
.wsa{word-spacing:2.004275pt;}
.ws15{word-spacing:2.112614pt;}
.wsd{word-spacing:2.166784pt;}
.ws4c{word-spacing:2.428800pt;}
.wse{word-spacing:3.466854pt;}
.ws44{word-spacing:3.621120pt;}
.ws2f{word-spacing:3.683533pt;}
.wsf{word-spacing:4.116890pt;}
.ws4b{word-spacing:4.769280pt;}
.ws45{word-spacing:5.387520pt;}
.ws49{word-spacing:5.475840pt;}
.ws2e{word-spacing:6.662861pt;}
.ws1c{word-spacing:8.396288pt;}
.ws50{word-spacing:8.787840pt;}
.ws1a{word-spacing:8.829645pt;}
.ws51{word-spacing:8.920320pt;}
.ws1d{word-spacing:8.992154pt;}
.ws1b{word-spacing:9.154662pt;}
.ws41{word-spacing:10.068480pt;}
.ws26{word-spacing:10.617242pt;}
.ws23{word-spacing:10.671411pt;}
.ws25{word-spacing:11.050598pt;}
.ws22{word-spacing:11.375616pt;}
.ws24{word-spacing:11.917312pt;}
.ws13{word-spacing:17.496781pt;}
.ws12{word-spacing:17.821798pt;}
.ws14{word-spacing:17.984307pt;}
.ws3f{word-spacing:21.285120pt;}
.ws3e{word-spacing:21.373440pt;}
.ws42{word-spacing:25.966080pt;}
.ws4d{word-spacing:28.924800pt;}
.ws43{word-spacing:38.949120pt;}
.ws52{word-spacing:54.096000pt;}
._9{margin-left:-10.068480pt;}
._3{margin-left:-2.491802pt;}
._1{margin-left:-0.975053pt;}
._2{width:0.910049pt;}
._0{width:1.841766pt;}
._6{width:6.413681pt;}
._4{width:9.187164pt;}
._a{width:20.298880pt;}
._5{width:120.256512pt;}
._7{width:694.291763pt;}
._8{width:2081.013333pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:39.449600pt;}
.fs5{font-size:44.160000pt;}
.fs1{font-size:48.870400pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:54.169600pt;}
.fs4{font-size:68.889600pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.355200pt;}
.y51{bottom:2.502400pt;}
.y5f{bottom:5.004800pt;}
.y32{bottom:8.096000pt;}
.y30{bottom:15.014400pt;}
.y50{bottom:15.161600pt;}
.y7d{bottom:16.780800pt;}
.y7a{bottom:26.496000pt;}
.y28{bottom:38.266667pt;}
.y27{bottom:51.600000pt;}
.y26{bottom:64.933333pt;}
.y25{bottom:74.266667pt;}
.y1{bottom:89.800000pt;}
.y71{bottom:102.009600pt;}
.y86{bottom:103.040000pt;}
.y66{bottom:119.526400pt;}
.y24{bottom:124.688998pt;}
.y23{bottom:152.220698pt;}
.y22{bottom:183.273421pt;}
.y53{bottom:194.017600pt;}
.y85{bottom:206.088000pt;}
.y21{bottom:214.475110pt;}
.y52{bottom:219.924800pt;}
.y84{bottom:225.076800pt;}
.y4f{bottom:238.913600pt;}
.y83{bottom:244.212800pt;}
.y20{bottom:245.676800pt;}
.y82{bottom:263.201600pt;}
.y4e{bottom:264.968000pt;}
.y7e{bottom:267.462400pt;}
.y1f{bottom:276.294400pt;}
.y81{bottom:282.190400pt;}
.y1e{bottom:289.542400pt;}
.y4d{bottom:290.875200pt;}
.y80{bottom:301.179200pt;}
.y7b{bottom:304.851200pt;}
.y4c{bottom:316.782400pt;}
.y1d{bottom:317.510400pt;}
.y7f{bottom:327.086400pt;}
.y78{bottom:341.632800pt;}
.y4b{bottom:342.836800pt;}
.y1c{bottom:343.808563pt;}
.y7c{bottom:353.140800pt;}
.y77{bottom:354.295680pt;}
.y4a{bottom:361.825600pt;}
.y76{bottom:366.958560pt;}
.y1b{bottom:371.475686pt;}
.y75{bottom:379.621440pt;}
.y79{bottom:380.814400pt;}
.y49{bottom:387.732800pt;}
.y74{bottom:392.284320pt;}
.y1a{bottom:399.007386pt;}
.y73{bottom:405.090720pt;}
.y48{bottom:413.640000pt;}
.y72{bottom:417.753600pt;}
.y70{bottom:418.203200pt;}
.y19{bottom:426.674509pt;}
.y47{bottom:439.694400pt;}
.y18{bottom:444.184832pt;}
.y6f{bottom:446.869760pt;}
.y46{bottom:458.683200pt;}
.y6e{bottom:459.532640pt;}
.y17{bottom:461.993088pt;}
.y6d{bottom:472.195520pt;}
.y45{bottom:477.672000pt;}
.y6c{bottom:484.858400pt;}
.y16{bottom:489.660211pt;}
.y44{bottom:496.660800pt;}
.y6b{bottom:497.521280pt;}
.y6a{bottom:510.184160pt;}
.y15{bottom:517.327334pt;}
.y43{bottom:522.568000pt;}
.y69{bottom:522.847040pt;}
.y65{bottom:531.105600pt;}
.y14{bottom:534.986624pt;}
.y68{bottom:535.509920pt;}
.y42{bottom:541.704000pt;}
.y67{bottom:548.172800pt;}
.y13{bottom:552.645914pt;}
.y41{bottom:560.692800pt;}
.y12{bottom:580.462003pt;}
.y40{bottom:586.600000pt;}
.y3f{bottom:605.588800pt;}
.y11{bottom:607.993702pt;}
.y3e{bottom:631.496000pt;}
.y10{bottom:635.660826pt;}
.y3c{bottom:650.632000pt;}
.yf{bottom:653.171149pt;}
.y64{bottom:661.524800pt;}
.ye{bottom:670.979405pt;}
.y3b{bottom:676.539200pt;}
.y63{bottom:680.660800pt;}
.y3a{bottom:695.528000pt;}
.yd{bottom:698.795494pt;}
.y62{bottom:699.649600pt;}
.y39{bottom:714.516800pt;}
.yc{bottom:716.305818pt;}
.y61{bottom:718.638400pt;}
.y38{bottom:733.505600pt;}
.yb{bottom:734.114074pt;}
.y60{bottom:737.627200pt;}
.ya{bottom:751.922330pt;}
.y37{bottom:752.641600pt;}
.y5e{bottom:756.616000pt;}
.y9{bottom:769.730586pt;}
.y36{bottom:771.630400pt;}
.y5d{bottom:772.513600pt;}
.y35{bottom:790.619200pt;}
.y5c{bottom:791.502400pt;}
.y8{bottom:797.397709pt;}
.y34{bottom:809.608000pt;}
.y5b{bottom:810.638400pt;}
.y2e{bottom:817.706598pt;}
.y7{bottom:824.929408pt;}
.y33{bottom:828.596800pt;}
.y5a{bottom:836.545600pt;}
.y6{bottom:842.588698pt;}
.y2d{bottom:845.373722pt;}
.y31{bottom:847.585600pt;}
.y5{bottom:860.396954pt;}
.y2c{bottom:861.719398pt;}
.y59{bottom:862.452800pt;}
.y2f{bottom:866.721600pt;}
.y2b{bottom:878.200499pt;}
.y4{bottom:888.064077pt;}
.y58{bottom:888.360000pt;}
.y8f{bottom:894.666667pt;}
.y2a{bottom:894.681600pt;}
.y29{bottom:912.051200pt;}
.y57{bottom:914.414400pt;}
.y8e{bottom:914.666667pt;}
.y3{bottom:915.731200pt;}
.y8d{bottom:928.000000pt;}
.y2{bottom:938.105600pt;}
.y56{bottom:940.321600pt;}
.y8c{bottom:941.333333pt;}
.y8b{bottom:954.666667pt;}
.y55{bottom:966.228800pt;}
.y8a{bottom:968.000000pt;}
.y89{bottom:989.333333pt;}
.y54{bottom:992.283200pt;}
.y88{bottom:1010.666667pt;}
.y87{bottom:1032.000000pt;}
.hf{height:15.308800pt;}
.hb{height:18.398773pt;}
.ha{height:18.400000pt;}
.hc{height:25.318400pt;}
.h8{height:25.319627pt;}
.hd{height:25.464373pt;}
.he{height:25.465600pt;}
.h13{height:27.086027pt;}
.h12{height:36.800000pt;}
.h6{height:38.937500pt;}
.h5{height:42.092723pt;}
.h3{height:44.674050pt;}
.h9{height:47.118720pt;}
.h4{height:52.144717pt;}
.h15{height:55.625000pt;}
.h7{height:56.813737pt;}
.h14{height:77.875000pt;}
.h11{height:112.313600pt;}
.h10{height:129.830400pt;}
.h2{height:1032.755200pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:121.145600pt;}
.w5{width:251.418827pt;}
.w4{width:294.841600pt;}
.w2{width:730.259200pt;}
.w6{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.329600pt;}
.x1{left:31.746667pt;}
.x14{left:48.000000pt;}
.x7{left:49.333333pt;}
.xc{left:75.465067pt;}
.x3{left:104.364800pt;}
.x6{left:130.566400pt;}
.x10{left:171.782400pt;}
.x13{left:182.973333pt;}
.xe{left:197.346667pt;}
.x2{left:211.526400pt;}
.x5{left:312.457318pt;}
.x4{left:342.331853pt;}
.x12{left:394.066667pt;}
.xa{left:453.222323pt;}
.x11{left:467.360000pt;}
.xf{left:492.924267pt;}
.x9{left:506.809600pt;}
.xb{left:584.380467pt;}
.x8{left:632.812800pt;}
}




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