
    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_4e1add46ae71dc107460ecf2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_da44614bb41c73d022005292.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_c0075a05db393b6a0a35d611.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_d7655a58197814ab31dde80e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_f404aa17acfdc228559bf5ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.676480px;}
.ls32{letter-spacing:-2.450880px;}
.ls2f{letter-spacing:-1.523520px;}
.ls30{letter-spacing:-1.457280px;}
.ls11{letter-spacing:-1.059840px;}
.ls12{letter-spacing:-0.861120px;}
.ls1b{letter-spacing:-0.758160px;}
.lsf{letter-spacing:-0.728640px;}
.ls10{letter-spacing:-0.463680px;}
.lsd{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.336960px;}
.lsc{letter-spacing:-0.331200px;}
.lse{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.132480px;}
.lsa{letter-spacing:-0.084240px;}
.ls2{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.108000px;}
.ls36{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.264960px;}
.ls16{letter-spacing:0.304704px;}
.ls9{letter-spacing:0.311328px;}
.ls17{letter-spacing:0.317952px;}
.ls7{letter-spacing:0.331200px;}
.ls14{letter-spacing:0.336960px;}
.ls35{letter-spacing:0.351072px;}
.ls25{letter-spacing:0.390816px;}
.ls15{letter-spacing:0.397440px;}
.ls8{letter-spacing:0.410688px;}
.ls24{letter-spacing:0.476928px;}
.ls13{letter-spacing:0.496800px;}
.ls1c{letter-spacing:0.596160px;}
.ls2e{letter-spacing:0.649152px;}
.ls2c{letter-spacing:0.669024px;}
.ls1f{letter-spacing:0.728640px;}
.ls2d{letter-spacing:0.741888px;}
.ls22{letter-spacing:0.993600px;}
.ls31{letter-spacing:1.059840px;}
.ls3{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.126080px;}
.ls38{letter-spacing:1.192320px;}
.ls0{letter-spacing:1.260000px;}
.ls1d{letter-spacing:1.324800px;}
.ls1{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.620000px;}
.ls19{letter-spacing:1.675872px;}
.ls18{letter-spacing:1.722240px;}
.ls33{letter-spacing:2.053440px;}
.ls34{letter-spacing:2.450880px;}
.ls26{letter-spacing:8.213760px;}
.ls2b{letter-spacing:13.976640px;}
.ls28{letter-spacing:14.705280px;}
.ls29{letter-spacing:16.162560px;}
.ls27{letter-spacing:29.079360px;}
.ls2a{letter-spacing:34.842240px;}
.ls1a{letter-spacing:36.299520px;}
.ls21{letter-spacing:37.028160px;}
.ls23{letter-spacing:59.351040px;}
.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;}
}
.ws1f{word-spacing:-66.240000px;}
.ws1{word-spacing:-51.480000px;}
.ws0{word-spacing:-51.120000px;}
.ws22{word-spacing:-23.755680px;}
.ws5{word-spacing:-23.334480px;}
.ws1e{word-spacing:-23.081760px;}
.ws19{word-spacing:-22.660560px;}
.ws27{word-spacing:-20.468160px;}
.ws29{word-spacing:-19.739520px;}
.ws2a{word-spacing:-19.607040px;}
.ws1c{word-spacing:-19.540800px;}
.ws24{word-spacing:-19.474560px;}
.ws1d{word-spacing:-19.143360px;}
.ws1b{word-spacing:-19.010880px;}
.ws1a{word-spacing:-18.812160px;}
.wsd{word-spacing:-18.745920px;}
.ws8{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.282240px;}
.ws9{word-spacing:-18.149760px;}
.ws7{word-spacing:-18.083520px;}
.wsa{word-spacing:-18.017280px;}
.wsc{word-spacing:-17.553600px;}
.wsb{word-spacing:-17.354880px;}
.ws23{word-spacing:-16.957440px;}
.ws25{word-spacing:-15.963840px;}
.ws2c{word-spacing:-15.228000px;}
.ws2b{word-spacing:-15.012000px;}
.ws28{word-spacing:-11.609280px;}
.ws18{word-spacing:-1.457280px;}
.ws2d{word-spacing:-1.324800px;}
.ws3{word-spacing:-1.080000px;}
.ws21{word-spacing:-0.794880px;}
.ws16{word-spacing:-0.728640px;}
.ws4{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.331200px;}
.ws10{word-spacing:-0.264960px;}
.ws30{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.132480px;}
.ws2e{word-spacing:0.331200px;}
.ws11{word-spacing:0.397440px;}
.wse{word-spacing:0.463680px;}
.ws17{word-spacing:0.596160px;}
.ws20{word-spacing:0.662400px;}
.wsf{word-spacing:0.728640px;}
.ws13{word-spacing:1.059840px;}
.ws26{word-spacing:1.192320px;}
._8{margin-left:-17.089920px;}
._4{margin-left:-2.477952px;}
._2{margin-left:-1.260000px;}
._0{width:1.440000px;}
._1{width:2.520000px;}
._6{width:3.677184px;}
._5{width:12.055680px;}
._7{width:38.088000px;}
._3{width:845.553600px;}
.fc4{color:rgb(142,151,114);}
.fc3{color:transparent;}
.fc2{color:rgb(142,150,114);}
.fc1{color:rgb(155,165,120);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:14.940000px;}
.y16{bottom:30.420000px;}
.y15{bottom:57.060000px;}
.ye6{bottom:109.255500px;}
.y70{bottom:122.024880px;}
.ye5{bottom:130.320000px;}
.ye4{bottom:142.195500px;}
.y6f{bottom:154.068480px;}
.yc0{bottom:158.801760px;}
.ye3{bottom:163.260000px;}
.ye2{bottom:175.860000px;}
.ybf{bottom:177.696720px;}
.y6e{bottom:186.112080px;}
.ybe{bottom:196.591680px;}
.ybd{bottom:215.668800px;}
.y6d{bottom:218.155680px;}
.ybc{bottom:234.563760px;}
.y6c{bottom:250.199280px;}
.ybb{bottom:253.640880px;}
.y97{bottom:270.977760px;}
.yba{bottom:272.535840px;}
.y6b{bottom:282.425040px;}
.yb9{bottom:291.612960px;}
.y6a{bottom:301.320000px;}
.y96{bottom:301.944960px;}
.yb8{bottom:310.507920px;}
.y95{bottom:320.839920px;}
.yb7{bottom:329.402880px;}
.y69{bottom:333.180000px;}
.y94{bottom:339.734880px;}
.yb6{bottom:348.480000px;}
.y93{bottom:358.812000px;}
.y38{bottom:364.347360px;}
.y68{bottom:365.523120px;}
.yb5{bottom:367.380000px;}
.y92{bottom:377.706960px;}
.y37{bottom:383.242320px;}
.y67{bottom:384.600240px;}
.y91{bottom:396.601920px;}
.yb4{bottom:398.376720px;}
.y36{bottom:402.319440px;}
.y66{bottom:403.495200px;}
.yb3{bottom:417.453840px;}
.ye1{bottom:420.840000px;}
.y35{bottom:421.214400px;}
.y65{bottom:422.572320px;}
.y90{bottom:428.827680px;}
.yb2{bottom:436.348800px;}
.y8f{bottom:447.722640px;}
.y64{bottom:450.475920px;}
.ye0{bottom:451.980000px;}
.y34{bottom:452.181600px;}
.yb1{bottom:455.243760px;}
.y8e{bottom:466.799760px;}
.y63{bottom:469.370880px;}
.yb0{bottom:474.320880px;}
.y14{bottom:478.080000px;}
.y33{bottom:483.148800px;}
.ydf{bottom:484.634160px;}
.y8d{bottom:485.694720px;}
.y62{bottom:488.448000px;}
.yaf{bottom:493.215840px;}
.y32{bottom:502.225920px;}
.yde{bottom:503.529120px;}
.y8c{bottom:504.771840px;}
.y61{bottom:507.342960px;}
.yae{bottom:512.292960px;}
.y31{bottom:521.120880px;}
.ydd{bottom:522.424080px;}
.y8b{bottom:523.666800px;}
.y13{bottom:525.600000px;}
.y60{bottom:526.420080px;}
.yad{bottom:531.187920px;}
.y30{bottom:540.198000px;}
.y5f{bottom:545.315040px;}
.yac{bottom:550.082880px;}
.ydc{bottom:553.391280px;}
.y8a{bottom:555.710400px;}
.y2f{bottom:559.092960px;}
.y5e{bottom:564.210000px;}
.yab{bottom:569.160000px;}
.y89{bottom:574.787520px;}
.y12{bottom:577.260000px;}
.y2e{bottom:577.987920px;}
.y5d{bottom:583.287120px;}
.ydb{bottom:587.223360px;}
.yaa{bottom:588.060000px;}
.y88{bottom:593.682480px;}
.y2d{bottom:597.065040px;}
.yda{bottom:606.482640px;}
.y5c{bottom:611.190720px;}
.y87{bottom:612.577440px;}
.y2c{bottom:615.960000px;}
.ya9{bottom:619.061760px;}
.yd9{bottom:625.377600px;}
.y5b{bottom:630.267840px;}
.y86{bottom:631.472400px;}
.y2b{bottom:634.854960px;}
.y11{bottom:634.946400px;}
.ya8{bottom:638.138880px;}
.yd8{bottom:644.272560px;}
.y5a{bottom:649.162800px;}
.ya7{bottom:657.033840px;}
.yd7{bottom:663.349680px;}
.y85{bottom:663.698160px;}
.y10{bottom:665.913600px;}
.y2a{bottom:665.987760px;}
.y59{bottom:668.057760px;}
.ya6{bottom:676.110960px;}
.yd6{bottom:682.244640px;}
.y84{bottom:682.593120px;}
.y29{bottom:684.882720px;}
.y58{bottom:687.134880px;}
.ya5{bottom:695.005920px;}
.yf{bottom:696.880800px;}
.yd5{bottom:701.321760px;}
.y83{bottom:701.670240px;}
.y28{bottom:703.959840px;}
.y57{bottom:706.029840px;}
.ya4{bottom:713.900880px;}
.yd4{bottom:720.216720px;}
.y82{bottom:720.565200px;}
.y56{bottom:725.106960px;}
.ye{bottom:727.848000px;}
.y27{bottom:731.863440px;}
.ya3{bottom:732.978000px;}
.yd3{bottom:739.111680px;}
.y55{bottom:744.001920px;}
.ya2{bottom:751.872960px;}
.y81{bottom:752.790960px;}
.yd2{bottom:758.188800px;}
.yd{bottom:758.815200px;}
.y26{bottom:759.767040px;}
.ya1{bottom:770.950080px;}
.y80{bottom:771.685920px;}
.y54{bottom:771.905520px;}
.yd1{bottom:777.083760px;}
.y25{bottom:787.852800px;}
.yc{bottom:789.782400px;}
.ya0{bottom:789.845040px;}
.y7f{bottom:790.580880px;}
.y53{bottom:790.982640px;}
.yd0{bottom:796.160880px;}
.y9f{bottom:808.740000px;}
.y52{bottom:809.877600px;}
.ycf{bottom:815.055840px;}
.y24{bottom:818.820000px;}
.yb{bottom:820.749600px;}
.y7e{bottom:822.806640px;}
.y9e{bottom:827.820000px;}
.y51{bottom:828.954720px;}
.y44{bottom:830.880000px;}
.yce{bottom:833.950800px;}
.y50{bottom:847.849680px;}
.y23{bottom:849.785760px;}
.ya{bottom:851.882400px;}
.ycd{bottom:853.027920px;}
.y7d{bottom:853.773840px;}
.y9d{bottom:858.795840px;}
.y43{bottom:858.952080px;}
.y4f{bottom:866.926800px;}
.y22{bottom:868.680720px;}
.ycc{bottom:871.922880px;}
.y7c{bottom:872.668800px;}
.y9c{bottom:877.690800px;}
.y42{bottom:877.847040px;}
.y9{bottom:882.849600px;}
.y4e{bottom:885.821760px;}
.y21{bottom:887.757840px;}
.ycb{bottom:891.000000px;}
.y7b{bottom:891.563760px;}
.y9b{bottom:896.767920px;}
.y4d{bottom:904.716720px;}
.y41{bottom:905.932800px;}
.y20{bottom:906.652800px;}
.yca{bottom:909.900000px;}
.y7a{bottom:910.640880px;}
.y8{bottom:913.816800px;}
.y9a{bottom:915.662880px;}
.y4c{bottom:923.793840px;}
.y79{bottom:929.535840px;}
.y40{bottom:933.836400px;}
.y99{bottom:934.740000px;}
.y1f{bottom:937.620000px;}
.yc9{bottom:940.862880px;}
.y4b{bottom:942.688800px;}
.y7{bottom:944.784000px;}
.y78{bottom:948.612960px;}
.yc8{bottom:959.952960px;}
.y3f{bottom:961.740000px;}
.y4a{bottom:961.765920px;}
.y77{bottom:967.507920px;}
.y98{bottom:968.406480px;}
.y1e{bottom:968.588640px;}
.y6{bottom:975.751200px;}
.yc7{bottom:978.847920px;}
.y49{bottom:980.660880px;}
.y76{bottom:986.585040px;}
.y1d{bottom:987.665760px;}
.y3e{bottom:989.814960px;}
.yc6{bottom:997.742880px;}
.y48{bottom:999.555840px;}
.y75{bottom:1005.480000px;}
.y1c{bottom:1006.560720px;}
.y5{bottom:1006.718400px;}
.yc5{bottom:1016.840880px;}
.y3d{bottom:1017.718560px;}
.y47{bottom:1018.632960px;}
.y1b{bottom:1025.637840px;}
.yc4{bottom:1035.735840px;}
.y74{bottom:1037.340000px;}
.y46{bottom:1037.527920px;}
.y4{bottom:1037.685600px;}
.y1a{bottom:1044.532800px;}
.y3c{bottom:1045.804320px;}
.yc3{bottom:1054.812960px;}
.y45{bottom:1056.605040px;}
.y3b{bottom:1064.699280px;}
.y3{bottom:1068.652800px;}
.y73{bottom:1072.630080px;}
.yc2{bottom:1073.707920px;}
.y19{bottom:1075.500000px;}
.y3a{bottom:1083.594240px;}
.y72{bottom:1091.525040px;}
.yc1{bottom:1092.602880px;}
.y2{bottom:1099.620000px;}
.y18{bottom:1107.360000px;}
.y71{bottom:1110.420000px;}
.y39{bottom:1111.680000px;}
.y1{bottom:1202.940000px;}
.hf{height:30.955078px;}
.h4{height:41.479805px;}
.h5{height:45.001500px;}
.h6{height:46.432617px;}
.h10{height:46.450617px;}
.he{height:47.988281px;}
.h8{height:48.224531px;}
.h2{height:56.957344px;}
.h9{height:56.977504px;}
.ha{height:56.989024px;}
.hc{height:59.584371px;}
.hd{height:59.616051px;}
.h7{height:61.329023px;}
.hb{height:72.434883px;}
.h3{height:131.044922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.560000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.x8{left:119.155500px;}
.x3{left:127.609920px;}
.x6{left:131.940000px;}
.x5{left:133.405920px;}
.x4{left:149.048640px;}
.x7{left:153.169920px;}
.x2{left:442.620000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.045760pt;}
.ls32{letter-spacing:-2.178560pt;}
.ls2f{letter-spacing:-1.354240pt;}
.ls30{letter-spacing:-1.295360pt;}
.ls11{letter-spacing:-0.942080pt;}
.ls12{letter-spacing:-0.765440pt;}
.ls1b{letter-spacing:-0.673920pt;}
.lsf{letter-spacing:-0.647680pt;}
.ls10{letter-spacing:-0.412160pt;}
.lsd{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.299520pt;}
.lsc{letter-spacing:-0.294400pt;}
.lse{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.117760pt;}
.lsa{letter-spacing:-0.074880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.096000pt;}
.ls36{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.235520pt;}
.ls16{letter-spacing:0.270848pt;}
.ls9{letter-spacing:0.276736pt;}
.ls17{letter-spacing:0.282624pt;}
.ls7{letter-spacing:0.294400pt;}
.ls14{letter-spacing:0.299520pt;}
.ls35{letter-spacing:0.312064pt;}
.ls25{letter-spacing:0.347392pt;}
.ls15{letter-spacing:0.353280pt;}
.ls8{letter-spacing:0.365056pt;}
.ls24{letter-spacing:0.423936pt;}
.ls13{letter-spacing:0.441600pt;}
.ls1c{letter-spacing:0.529920pt;}
.ls2e{letter-spacing:0.577024pt;}
.ls2c{letter-spacing:0.594688pt;}
.ls1f{letter-spacing:0.647680pt;}
.ls2d{letter-spacing:0.659456pt;}
.ls22{letter-spacing:0.883200pt;}
.ls31{letter-spacing:0.942080pt;}
.ls3{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.000960pt;}
.ls38{letter-spacing:1.059840pt;}
.ls0{letter-spacing:1.120000pt;}
.ls1d{letter-spacing:1.177600pt;}
.ls1{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls19{letter-spacing:1.489664pt;}
.ls18{letter-spacing:1.530880pt;}
.ls33{letter-spacing:1.825280pt;}
.ls34{letter-spacing:2.178560pt;}
.ls26{letter-spacing:7.301120pt;}
.ls2b{letter-spacing:12.423680pt;}
.ls28{letter-spacing:13.071360pt;}
.ls29{letter-spacing:14.366720pt;}
.ls27{letter-spacing:25.848320pt;}
.ls2a{letter-spacing:30.970880pt;}
.ls1a{letter-spacing:32.266240pt;}
.ls21{letter-spacing:32.913920pt;}
.ls23{letter-spacing:52.756480pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws1{word-spacing:-45.760000pt;}
.ws0{word-spacing:-45.440000pt;}
.ws22{word-spacing:-21.116160pt;}
.ws5{word-spacing:-20.741760pt;}
.ws1e{word-spacing:-20.517120pt;}
.ws19{word-spacing:-20.142720pt;}
.ws27{word-spacing:-18.193920pt;}
.ws29{word-spacing:-17.546240pt;}
.ws2a{word-spacing:-17.428480pt;}
.ws1c{word-spacing:-17.369600pt;}
.ws24{word-spacing:-17.310720pt;}
.ws1d{word-spacing:-17.016320pt;}
.ws1b{word-spacing:-16.898560pt;}
.ws1a{word-spacing:-16.721920pt;}
.wsd{word-spacing:-16.663040pt;}
.ws8{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.250880pt;}
.ws9{word-spacing:-16.133120pt;}
.ws7{word-spacing:-16.074240pt;}
.wsa{word-spacing:-16.015360pt;}
.wsc{word-spacing:-15.603200pt;}
.wsb{word-spacing:-15.426560pt;}
.ws23{word-spacing:-15.073280pt;}
.ws25{word-spacing:-14.190080pt;}
.ws2c{word-spacing:-13.536000pt;}
.ws2b{word-spacing:-13.344000pt;}
.ws28{word-spacing:-10.319360pt;}
.ws18{word-spacing:-1.295360pt;}
.ws2d{word-spacing:-1.177600pt;}
.ws3{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.706560pt;}
.ws16{word-spacing:-0.647680pt;}
.ws4{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.294400pt;}
.ws10{word-spacing:-0.235520pt;}
.ws30{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.117760pt;}
.ws2e{word-spacing:0.294400pt;}
.ws11{word-spacing:0.353280pt;}
.wse{word-spacing:0.412160pt;}
.ws17{word-spacing:0.529920pt;}
.ws20{word-spacing:0.588800pt;}
.wsf{word-spacing:0.647680pt;}
.ws13{word-spacing:0.942080pt;}
.ws26{word-spacing:1.059840pt;}
._8{margin-left:-15.191040pt;}
._4{margin-left:-2.202624pt;}
._2{margin-left:-1.120000pt;}
._0{width:1.280000pt;}
._1{width:2.240000pt;}
._6{width:3.268608pt;}
._5{width:10.716160pt;}
._7{width:33.856000pt;}
._3{width:751.603200pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:13.280000pt;}
.y16{bottom:27.040000pt;}
.y15{bottom:50.720000pt;}
.ye6{bottom:97.116000pt;}
.y70{bottom:108.466560pt;}
.ye5{bottom:115.840000pt;}
.ye4{bottom:126.396000pt;}
.y6f{bottom:136.949760pt;}
.yc0{bottom:141.157120pt;}
.ye3{bottom:145.120000pt;}
.ye2{bottom:156.320000pt;}
.ybf{bottom:157.952640pt;}
.y6e{bottom:165.432960pt;}
.ybe{bottom:174.748160pt;}
.ybd{bottom:191.705600pt;}
.y6d{bottom:193.916160pt;}
.ybc{bottom:208.501120pt;}
.y6c{bottom:222.399360pt;}
.ybb{bottom:225.458560pt;}
.y97{bottom:240.869120pt;}
.yba{bottom:242.254080pt;}
.y6b{bottom:251.044480pt;}
.yb9{bottom:259.211520pt;}
.y6a{bottom:267.840000pt;}
.y96{bottom:268.395520pt;}
.yb8{bottom:276.007040pt;}
.y95{bottom:285.191040pt;}
.yb7{bottom:292.802560pt;}
.y69{bottom:296.160000pt;}
.y94{bottom:301.986560pt;}
.yb6{bottom:309.760000pt;}
.y93{bottom:318.944000pt;}
.y38{bottom:323.864320pt;}
.y68{bottom:324.909440pt;}
.yb5{bottom:326.560000pt;}
.y92{bottom:335.739520pt;}
.y37{bottom:340.659840pt;}
.y67{bottom:341.866880pt;}
.y91{bottom:352.535040pt;}
.yb4{bottom:354.112640pt;}
.y36{bottom:357.617280pt;}
.y66{bottom:358.662400pt;}
.yb3{bottom:371.070080pt;}
.ye1{bottom:374.080000pt;}
.y35{bottom:374.412800pt;}
.y65{bottom:375.619840pt;}
.y90{bottom:381.180160pt;}
.yb2{bottom:387.865600pt;}
.y8f{bottom:397.975680pt;}
.y64{bottom:400.423040pt;}
.ye0{bottom:401.760000pt;}
.y34{bottom:401.939200pt;}
.yb1{bottom:404.661120pt;}
.y8e{bottom:414.933120pt;}
.y63{bottom:417.218560pt;}
.yb0{bottom:421.618560pt;}
.y14{bottom:424.960000pt;}
.y33{bottom:429.465600pt;}
.ydf{bottom:430.785920pt;}
.y8d{bottom:431.728640pt;}
.y62{bottom:434.176000pt;}
.yaf{bottom:438.414080pt;}
.y32{bottom:446.423040pt;}
.yde{bottom:447.581440pt;}
.y8c{bottom:448.686080pt;}
.y61{bottom:450.971520pt;}
.yae{bottom:455.371520pt;}
.y31{bottom:463.218560pt;}
.ydd{bottom:464.376960pt;}
.y8b{bottom:465.481600pt;}
.y13{bottom:467.200000pt;}
.y60{bottom:467.928960pt;}
.yad{bottom:472.167040pt;}
.y30{bottom:480.176000pt;}
.y5f{bottom:484.724480pt;}
.yac{bottom:488.962560pt;}
.ydc{bottom:491.903360pt;}
.y8a{bottom:493.964800pt;}
.y2f{bottom:496.971520pt;}
.y5e{bottom:501.520000pt;}
.yab{bottom:505.920000pt;}
.y89{bottom:510.922240pt;}
.y12{bottom:513.120000pt;}
.y2e{bottom:513.767040pt;}
.y5d{bottom:518.477440pt;}
.ydb{bottom:521.976320pt;}
.yaa{bottom:522.720000pt;}
.y88{bottom:527.717760pt;}
.y2d{bottom:530.724480pt;}
.yda{bottom:539.095680pt;}
.y5c{bottom:543.280640pt;}
.y87{bottom:544.513280pt;}
.y2c{bottom:547.520000pt;}
.ya9{bottom:550.277120pt;}
.yd9{bottom:555.891200pt;}
.y5b{bottom:560.238080pt;}
.y86{bottom:561.308800pt;}
.y2b{bottom:564.315520pt;}
.y11{bottom:564.396800pt;}
.ya8{bottom:567.234560pt;}
.yd8{bottom:572.686720pt;}
.y5a{bottom:577.033600pt;}
.ya7{bottom:584.030080pt;}
.yd7{bottom:589.644160pt;}
.y85{bottom:589.953920pt;}
.y10{bottom:591.923200pt;}
.y2a{bottom:591.989120pt;}
.y59{bottom:593.829120pt;}
.ya6{bottom:600.987520pt;}
.yd6{bottom:606.439680pt;}
.y84{bottom:606.749440pt;}
.y29{bottom:608.784640pt;}
.y58{bottom:610.786560pt;}
.ya5{bottom:617.783040pt;}
.yf{bottom:619.449600pt;}
.yd5{bottom:623.397120pt;}
.y83{bottom:623.706880pt;}
.y28{bottom:625.742080pt;}
.y57{bottom:627.582080pt;}
.ya4{bottom:634.578560pt;}
.yd4{bottom:640.192640pt;}
.y82{bottom:640.502400pt;}
.y56{bottom:644.539520pt;}
.ye{bottom:646.976000pt;}
.y27{bottom:650.545280pt;}
.ya3{bottom:651.536000pt;}
.yd3{bottom:656.988160pt;}
.y55{bottom:661.335040pt;}
.ya2{bottom:668.331520pt;}
.y81{bottom:669.147520pt;}
.yd2{bottom:673.945600pt;}
.yd{bottom:674.502400pt;}
.y26{bottom:675.348480pt;}
.ya1{bottom:685.288960pt;}
.y80{bottom:685.943040pt;}
.y54{bottom:686.138240pt;}
.yd1{bottom:690.741120pt;}
.y25{bottom:700.313600pt;}
.yc{bottom:702.028800pt;}
.ya0{bottom:702.084480pt;}
.y7f{bottom:702.738560pt;}
.y53{bottom:703.095680pt;}
.yd0{bottom:707.698560pt;}
.y9f{bottom:718.880000pt;}
.y52{bottom:719.891200pt;}
.ycf{bottom:724.494080pt;}
.y24{bottom:727.840000pt;}
.yb{bottom:729.555200pt;}
.y7e{bottom:731.383680pt;}
.y9e{bottom:735.840000pt;}
.y51{bottom:736.848640pt;}
.y44{bottom:738.560000pt;}
.yce{bottom:741.289600pt;}
.y50{bottom:753.644160pt;}
.y23{bottom:755.365120pt;}
.ya{bottom:757.228800pt;}
.ycd{bottom:758.247040pt;}
.y7d{bottom:758.910080pt;}
.y9d{bottom:763.374080pt;}
.y43{bottom:763.512960pt;}
.y4f{bottom:770.601600pt;}
.y22{bottom:772.160640pt;}
.ycc{bottom:775.042560pt;}
.y7c{bottom:775.705600pt;}
.y9c{bottom:780.169600pt;}
.y42{bottom:780.308480pt;}
.y9{bottom:784.755200pt;}
.y4e{bottom:787.397120pt;}
.y21{bottom:789.118080pt;}
.ycb{bottom:792.000000pt;}
.y7b{bottom:792.501120pt;}
.y9b{bottom:797.127040pt;}
.y4d{bottom:804.192640pt;}
.y41{bottom:805.273600pt;}
.y20{bottom:805.913600pt;}
.yca{bottom:808.800000pt;}
.y7a{bottom:809.458560pt;}
.y8{bottom:812.281600pt;}
.y9a{bottom:813.922560pt;}
.y4c{bottom:821.150080pt;}
.y79{bottom:826.254080pt;}
.y40{bottom:830.076800pt;}
.y99{bottom:830.880000pt;}
.y1f{bottom:833.440000pt;}
.yc9{bottom:836.322560pt;}
.y4b{bottom:837.945600pt;}
.y7{bottom:839.808000pt;}
.y78{bottom:843.211520pt;}
.yc8{bottom:853.291520pt;}
.y3f{bottom:854.880000pt;}
.y4a{bottom:854.903040pt;}
.y77{bottom:860.007040pt;}
.y98{bottom:860.805760pt;}
.y1e{bottom:860.967680pt;}
.y6{bottom:867.334400pt;}
.yc7{bottom:870.087040pt;}
.y49{bottom:871.698560pt;}
.y76{bottom:876.964480pt;}
.y1d{bottom:877.925120pt;}
.y3e{bottom:879.835520pt;}
.yc6{bottom:886.882560pt;}
.y48{bottom:888.494080pt;}
.y75{bottom:893.760000pt;}
.y1c{bottom:894.720640pt;}
.y5{bottom:894.860800pt;}
.yc5{bottom:903.858560pt;}
.y3d{bottom:904.638720pt;}
.y47{bottom:905.451520pt;}
.y1b{bottom:911.678080pt;}
.yc4{bottom:920.654080pt;}
.y74{bottom:922.080000pt;}
.y46{bottom:922.247040pt;}
.y4{bottom:922.387200pt;}
.y1a{bottom:928.473600pt;}
.y3c{bottom:929.603840pt;}
.yc3{bottom:937.611520pt;}
.y45{bottom:939.204480pt;}
.y3b{bottom:946.399360pt;}
.y3{bottom:949.913600pt;}
.y73{bottom:953.448960pt;}
.yc2{bottom:954.407040pt;}
.y19{bottom:956.000000pt;}
.y3a{bottom:963.194880pt;}
.y72{bottom:970.244480pt;}
.yc1{bottom:971.202560pt;}
.y2{bottom:977.440000pt;}
.y18{bottom:984.320000pt;}
.y71{bottom:987.040000pt;}
.y39{bottom:988.160000pt;}
.y1{bottom:1069.280000pt;}
.hf{height:27.515625pt;}
.h4{height:36.870937pt;}
.h5{height:40.001333pt;}
.h6{height:41.273438pt;}
.h10{height:41.289438pt;}
.he{height:42.656250pt;}
.h8{height:42.866250pt;}
.h2{height:50.628750pt;}
.h9{height:50.646670pt;}
.ha{height:50.656910pt;}
.hc{height:52.963885pt;}
.hd{height:52.992045pt;}
.h7{height:54.514687pt;}
.hb{height:64.386562pt;}
.h3{height:116.484375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.x8{left:105.916000pt;}
.x3{left:113.431040pt;}
.x6{left:117.280000pt;}
.x5{left:118.583040pt;}
.x4{left:132.487680pt;}
.x7{left:136.151040pt;}
.x2{left:393.440000pt;}
}




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