
    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_4341cd9e72eed57264c73246.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_e5c5640fa1cbaf80b1442eb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_c36b31437711fb2a54e42c67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.776855;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_ad639deef8c423a48bbbae61.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_c79bbdddb8aa1d697938764a.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6129f08497238b29cc242b61.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_86aaaf82776f28f8d47a0763.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7a9cf1e0dc340c9e660ac311.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-1.013040px;}
.ls24{letter-spacing:-0.964800px;}
.ls1f{letter-spacing:-0.675360px;}
.ls21{letter-spacing:-0.627120px;}
.ls1e{letter-spacing:-0.578880px;}
.ls14{letter-spacing:-0.530640px;}
.ls13{letter-spacing:-0.434160px;}
.ls16{letter-spacing:-0.385920px;}
.ls11{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.298800px;}
.lse{letter-spacing:-0.289440px;}
.ls8{letter-spacing:-0.240480px;}
.lsb{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.108000px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048240px;}
.lsd{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.120240px;}
.ls19{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.179280px;}
.ls6{letter-spacing:0.192960px;}
.ls1{letter-spacing:0.207360px;}
.ls22{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.241200px;}
.ls1d{letter-spacing:0.270144px;}
.ls2{letter-spacing:0.289440px;}
.ls23{letter-spacing:0.294264px;}
.ls3{letter-spacing:0.323208px;}
.ls20{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.472320px;}
.ls18{letter-spacing:2.460240px;}
.ls5{letter-spacing:2.479536px;}
.ls4{letter-spacing:7.477200px;}
.ls17{letter-spacing:7.920000px;}
.ls1b{letter-spacing:22.561848px;}
.ls1c{letter-spacing:46.358640px;}
.ls1a{letter-spacing:72.263520px;}
.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;}
}
.ws27{word-spacing:-19.224000px;}
.ws26{word-spacing:-18.144000px;}
.ws28{word-spacing:-17.269920px;}
.ws3c{word-spacing:-17.125200px;}
.ws2{word-spacing:-17.028720px;}
.ws5{word-spacing:-16.980480px;}
.ws1{word-spacing:-16.691040px;}
.ws6{word-spacing:-16.594560px;}
.ws24{word-spacing:-16.546320px;}
.ws0{word-spacing:-13.685760px;}
.ws13{word-spacing:-4.920480px;}
.ws2b{word-spacing:-4.052160px;}
.ws12{word-spacing:-3.714480px;}
.ws32{word-spacing:-3.328560px;}
.ws35{word-spacing:-2.267280px;}
.ws30{word-spacing:-1.543680px;}
.ws15{word-spacing:-0.820080px;}
.ws36{word-spacing:-0.578880px;}
.ws37{word-spacing:-0.434160px;}
.ws25{word-spacing:-0.432000px;}
.ws2a{word-spacing:-0.289440px;}
.ws8{word-spacing:-0.240480px;}
.ws3e{word-spacing:-0.192960px;}
.wsc{word-spacing:-0.179280px;}
.wsd{word-spacing:-0.119520px;}
.ws11{word-spacing:-0.096480px;}
.ws1f{word-spacing:-0.048240px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:0.054000px;}
.ws23{word-spacing:0.096480px;}
.wsb{word-spacing:0.119520px;}
.ws9{word-spacing:0.120240px;}
.ws4{word-spacing:0.270000px;}
.wse{word-spacing:0.289440px;}
.wsa{word-spacing:0.298800px;}
.ws1c{word-spacing:0.434160px;}
.ws21{word-spacing:0.530640px;}
.ws14{word-spacing:0.627120px;}
.ws39{word-spacing:0.675360px;}
.ws2c{word-spacing:0.916560px;}
.ws3d{word-spacing:0.964800px;}
.ws1b{word-spacing:1.013040px;}
.ws2d{word-spacing:1.350720px;}
.ws31{word-spacing:1.736640px;}
.ws22{word-spacing:2.074320px;}
.wsf{word-spacing:2.749680px;}
.ws20{word-spacing:4.196880px;}
.ws17{word-spacing:4.920480px;}
.ws10{word-spacing:5.644080px;}
.ws18{word-spacing:6.367680px;}
.ws38{word-spacing:6.705360px;}
.ws1d{word-spacing:6.753600px;}
.ws1e{word-spacing:7.091280px;}
.ws3a{word-spacing:7.477200px;}
.ws16{word-spacing:7.814880px;}
.ws2e{word-spacing:8.538480px;}
.ws29{word-spacing:8.683200px;}
.ws1a{word-spacing:9.985680px;}
.ws19{word-spacing:10.709280px;}
.ws33{word-spacing:13.555440px;}
.ws34{word-spacing:14.279040px;}
.ws2f{word-spacing:18.620640px;}
.ws3b{word-spacing:22.914000px;}
._7{margin-left:-4.850784px;}
._6{margin-left:-3.665448px;}
._8{margin-left:-2.297736px;}
._1{margin-left:-1.226448px;}
._0{width:1.298592px;}
._e{width:3.078864px;}
._2{width:4.228776px;}
._4{width:5.420160px;}
._3{width:6.443928px;}
._9{width:7.447320px;}
._c{width:9.160056px;}
._d{width:10.241640px;}
._b{width:12.378384px;}
._a{width:13.511088px;}
._5{width:14.838624px;}
._11{width:18.565704px;}
._f{width:62.387856px;}
._10{width:2290.439088px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.080000px;}
.y8c{bottom:88.558380px;}
.y42{bottom:90.895680px;}
.y8b{bottom:103.138920px;}
.y41{bottom:105.476220px;}
.y8a{bottom:117.719460px;}
.y40{bottom:120.056760px;}
.y89{bottom:132.300000px;}
.y3f{bottom:134.637300px;}
.y88{bottom:147.240000px;}
.y3e{bottom:149.217840px;}
.y87{bottom:163.615500px;}
.y3d{bottom:163.798380px;}
.y3c{bottom:178.378920px;}
.y86{bottom:180.180000px;}
.y3b{bottom:192.959460px;}
.y85{bottom:196.197300px;}
.y3a{bottom:207.532440px;}
.y84{bottom:210.777840px;}
.y39{bottom:222.112980px;}
.y83{bottom:225.358380px;}
.y38{bottom:236.693520px;}
.y82{bottom:239.938920px;}
.y37{bottom:251.274060px;}
.y81{bottom:254.519460px;}
.y36{bottom:265.854600px;}
.y80{bottom:269.100000px;}
.y35{bottom:280.435140px;}
.y7f{bottom:284.040000px;}
.y34{bottom:295.015680px;}
.y7e{bottom:300.045420px;}
.y33{bottom:309.596220px;}
.y7d{bottom:314.625960px;}
.y32{bottom:324.176760px;}
.y7c{bottom:329.206500px;}
.y31{bottom:338.757300px;}
.y7b{bottom:343.787040px;}
.y30{bottom:353.337840px;}
.y7a{bottom:358.367580px;}
.y2f{bottom:367.918380px;}
.y79{bottom:372.948120px;}
.y2e{bottom:382.498920px;}
.y78{bottom:387.528660px;}
.y2d{bottom:397.079460px;}
.y77{bottom:402.109200px;}
.y2c{bottom:411.660000px;}
.y76{bottom:416.689740px;}
.y2b{bottom:426.604500px;}
.y75{bottom:431.270280px;}
.y2a{bottom:442.980000px;}
.y74{bottom:445.850820px;}
.y29{bottom:458.996940px;}
.y73{bottom:460.431360px;}
.y28{bottom:473.758380px;}
.y72{bottom:475.011900px;}
.y27{bottom:488.338920px;}
.y71{bottom:489.592440px;}
.y26{bottom:502.919460px;}
.y70{bottom:504.172980px;}
.y25{bottom:517.500000px;}
.y6f{bottom:518.753520px;}
.y24{bottom:532.440000px;}
.y6e{bottom:533.334060px;}
.y6d{bottom:547.914600px;}
.y23{bottom:548.454600px;}
.y6c{bottom:562.495140px;}
.y22{bottom:563.035140px;}
.y6b{bottom:577.075680px;}
.y21{bottom:577.615680px;}
.y6a{bottom:591.656220px;}
.y20{bottom:592.196220px;}
.y69{bottom:606.236760px;}
.y1f{bottom:606.776760px;}
.y68{bottom:620.817300px;}
.y1e{bottom:621.357300px;}
.y67{bottom:635.397840px;}
.y1d{bottom:635.937840px;}
.y66{bottom:649.978380px;}
.y1c{bottom:650.518380px;}
.y65{bottom:664.558920px;}
.y1b{bottom:665.098920px;}
.y64{bottom:679.139460px;}
.y1a{bottom:679.679460px;}
.y63{bottom:693.720000px;}
.y19{bottom:694.260000px;}
.y62{bottom:708.849000px;}
.y18{bottom:709.204500px;}
.y61{bottom:725.224500px;}
.y17{bottom:725.580000px;}
.y16{bottom:741.596070px;}
.y60{bottom:741.599460px;}
.y15{bottom:756.176610px;}
.y5f{bottom:757.615140px;}
.y14{bottom:770.757150px;}
.y5e{bottom:772.195680px;}
.y13{bottom:785.337690px;}
.y5d{bottom:786.776220px;}
.y12{bottom:799.918230px;}
.y5c{bottom:801.356760px;}
.y11{bottom:814.498770px;}
.y5b{bottom:815.937300px;}
.y10{bottom:829.079310px;}
.y5a{bottom:830.517840px;}
.yf{bottom:843.659850px;}
.y59{bottom:845.098380px;}
.ye{bottom:858.780000px;}
.y58{bottom:859.678920px;}
.y57{bottom:874.259460px;}
.yd{bottom:883.802700px;}
.y56{bottom:888.828840px;}
.y55{bottom:903.409380px;}
.yc{bottom:911.880000px;}
.y54{bottom:917.989920px;}
.y53{bottom:932.570460px;}
.yb{bottom:935.460000px;}
.y52{bottom:947.151000px;}
.ya{bottom:954.539460px;}
.y51{bottom:961.731540px;}
.y9{bottom:973.620000px;}
.y50{bottom:976.312080px;}
.y8{bottom:983.700000px;}
.y4f{bottom:990.892620px;}
.y7{bottom:998.818020px;}
.y4e{bottom:1005.473160px;}
.y6{bottom:1017.000000px;}
.y4d{bottom:1020.053700px;}
.y4c{bottom:1034.634240px;}
.y5{bottom:1038.381480px;}
.y4b{bottom:1049.214780px;}
.y4a{bottom:1063.795320px;}
.y4{bottom:1074.934440px;}
.y49{bottom:1078.375860px;}
.y48{bottom:1092.956400px;}
.y47{bottom:1107.536940px;}
.y3{bottom:1111.307040px;}
.y46{bottom:1122.117480px;}
.y45{bottom:1136.698020px;}
.y2{bottom:1147.860000px;}
.y44{bottom:1151.278560px;}
.y43{bottom:1166.040000px;}
.h2{height:27.527344px;}
.h7{height:30.263555px;}
.h6{height:36.886641px;}
.hd{height:41.027344px;}
.h8{height:41.291016px;}
.hc{height:41.293176px;}
.hb{height:44.193859px;}
.h9{height:48.263555px;}
.ha{height:48.293795px;}
.he{height:54.026367px;}
.h4{height:59.789180px;}
.h5{height:59.797100px;}
.h3{height:91.941328px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.520000px;}
.x2{left:117.180000px;}
.x6{left:127.080000px;}
.x8{left:131.040000px;}
.xc{left:137.522340px;}
.x3{left:147.059640px;}
.xd{left:164.524680px;}
.xb{left:187.380000px;}
.x4{left:207.901080px;}
.x7{left:228.782340px;}
.xa{left:249.480000px;}
.x9{left:424.073700px;}
.x5{left:459.202680px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.900480pt;}
.ls24{letter-spacing:-0.857600pt;}
.ls1f{letter-spacing:-0.600320pt;}
.ls21{letter-spacing:-0.557440pt;}
.ls1e{letter-spacing:-0.514560pt;}
.ls14{letter-spacing:-0.471680pt;}
.ls13{letter-spacing:-0.385920pt;}
.ls16{letter-spacing:-0.343040pt;}
.ls11{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.265600pt;}
.lse{letter-spacing:-0.257280pt;}
.ls8{letter-spacing:-0.213760pt;}
.lsb{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.042880pt;}
.lsd{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.106880pt;}
.ls19{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.159360pt;}
.ls6{letter-spacing:0.171520pt;}
.ls1{letter-spacing:0.184320pt;}
.ls22{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.214400pt;}
.ls1d{letter-spacing:0.240128pt;}
.ls2{letter-spacing:0.257280pt;}
.ls23{letter-spacing:0.261568pt;}
.ls3{letter-spacing:0.287296pt;}
.ls20{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.419840pt;}
.ls18{letter-spacing:2.186880pt;}
.ls5{letter-spacing:2.204032pt;}
.ls4{letter-spacing:6.646400pt;}
.ls17{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:20.054976pt;}
.ls1c{letter-spacing:41.207680pt;}
.ls1a{letter-spacing:64.234240pt;}
.ws27{word-spacing:-17.088000pt;}
.ws26{word-spacing:-16.128000pt;}
.ws28{word-spacing:-15.351040pt;}
.ws3c{word-spacing:-15.222400pt;}
.ws2{word-spacing:-15.136640pt;}
.ws5{word-spacing:-15.093760pt;}
.ws1{word-spacing:-14.836480pt;}
.ws6{word-spacing:-14.750720pt;}
.ws24{word-spacing:-14.707840pt;}
.ws0{word-spacing:-12.165120pt;}
.ws13{word-spacing:-4.373760pt;}
.ws2b{word-spacing:-3.601920pt;}
.ws12{word-spacing:-3.301760pt;}
.ws32{word-spacing:-2.958720pt;}
.ws35{word-spacing:-2.015360pt;}
.ws30{word-spacing:-1.372160pt;}
.ws15{word-spacing:-0.728960pt;}
.ws36{word-spacing:-0.514560pt;}
.ws37{word-spacing:-0.385920pt;}
.ws25{word-spacing:-0.384000pt;}
.ws2a{word-spacing:-0.257280pt;}
.ws8{word-spacing:-0.213760pt;}
.ws3e{word-spacing:-0.171520pt;}
.wsc{word-spacing:-0.159360pt;}
.wsd{word-spacing:-0.106240pt;}
.ws11{word-spacing:-0.085760pt;}
.ws1f{word-spacing:-0.042880pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:0.048000pt;}
.ws23{word-spacing:0.085760pt;}
.wsb{word-spacing:0.106240pt;}
.ws9{word-spacing:0.106880pt;}
.ws4{word-spacing:0.240000pt;}
.wse{word-spacing:0.257280pt;}
.wsa{word-spacing:0.265600pt;}
.ws1c{word-spacing:0.385920pt;}
.ws21{word-spacing:0.471680pt;}
.ws14{word-spacing:0.557440pt;}
.ws39{word-spacing:0.600320pt;}
.ws2c{word-spacing:0.814720pt;}
.ws3d{word-spacing:0.857600pt;}
.ws1b{word-spacing:0.900480pt;}
.ws2d{word-spacing:1.200640pt;}
.ws31{word-spacing:1.543680pt;}
.ws22{word-spacing:1.843840pt;}
.wsf{word-spacing:2.444160pt;}
.ws20{word-spacing:3.730560pt;}
.ws17{word-spacing:4.373760pt;}
.ws10{word-spacing:5.016960pt;}
.ws18{word-spacing:5.660160pt;}
.ws38{word-spacing:5.960320pt;}
.ws1d{word-spacing:6.003200pt;}
.ws1e{word-spacing:6.303360pt;}
.ws3a{word-spacing:6.646400pt;}
.ws16{word-spacing:6.946560pt;}
.ws2e{word-spacing:7.589760pt;}
.ws29{word-spacing:7.718400pt;}
.ws1a{word-spacing:8.876160pt;}
.ws19{word-spacing:9.519360pt;}
.ws33{word-spacing:12.049280pt;}
.ws34{word-spacing:12.692480pt;}
.ws2f{word-spacing:16.551680pt;}
.ws3b{word-spacing:20.368000pt;}
._7{margin-left:-4.311808pt;}
._6{margin-left:-3.258176pt;}
._8{margin-left:-2.042432pt;}
._1{margin-left:-1.090176pt;}
._0{width:1.154304pt;}
._e{width:2.736768pt;}
._2{width:3.758912pt;}
._4{width:4.817920pt;}
._3{width:5.727936pt;}
._9{width:6.619840pt;}
._c{width:8.142272pt;}
._d{width:9.103680pt;}
._b{width:11.003008pt;}
._a{width:12.009856pt;}
._5{width:13.189888pt;}
._11{width:16.502848pt;}
._f{width:55.455872pt;}
._10{width:2035.945856pt;}
.fs5{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.960000pt;}
.y8c{bottom:78.718560pt;}
.y42{bottom:80.796160pt;}
.y8b{bottom:91.679040pt;}
.y41{bottom:93.756640pt;}
.y8a{bottom:104.639520pt;}
.y40{bottom:106.717120pt;}
.y89{bottom:117.600000pt;}
.y3f{bottom:119.677600pt;}
.y88{bottom:130.880000pt;}
.y3e{bottom:132.638080pt;}
.y87{bottom:145.436000pt;}
.y3d{bottom:145.598560pt;}
.y3c{bottom:158.559040pt;}
.y86{bottom:160.160000pt;}
.y3b{bottom:171.519520pt;}
.y85{bottom:174.397600pt;}
.y3a{bottom:184.473280pt;}
.y84{bottom:187.358080pt;}
.y39{bottom:197.433760pt;}
.y83{bottom:200.318560pt;}
.y38{bottom:210.394240pt;}
.y82{bottom:213.279040pt;}
.y37{bottom:223.354720pt;}
.y81{bottom:226.239520pt;}
.y36{bottom:236.315200pt;}
.y80{bottom:239.200000pt;}
.y35{bottom:249.275680pt;}
.y7f{bottom:252.480000pt;}
.y34{bottom:262.236160pt;}
.y7e{bottom:266.707040pt;}
.y33{bottom:275.196640pt;}
.y7d{bottom:279.667520pt;}
.y32{bottom:288.157120pt;}
.y7c{bottom:292.628000pt;}
.y31{bottom:301.117600pt;}
.y7b{bottom:305.588480pt;}
.y30{bottom:314.078080pt;}
.y7a{bottom:318.548960pt;}
.y2f{bottom:327.038560pt;}
.y79{bottom:331.509440pt;}
.y2e{bottom:339.999040pt;}
.y78{bottom:344.469920pt;}
.y2d{bottom:352.959520pt;}
.y77{bottom:357.430400pt;}
.y2c{bottom:365.920000pt;}
.y76{bottom:370.390880pt;}
.y2b{bottom:379.204000pt;}
.y75{bottom:383.351360pt;}
.y2a{bottom:393.760000pt;}
.y74{bottom:396.311840pt;}
.y29{bottom:407.997280pt;}
.y73{bottom:409.272320pt;}
.y28{bottom:421.118560pt;}
.y72{bottom:422.232800pt;}
.y27{bottom:434.079040pt;}
.y71{bottom:435.193280pt;}
.y26{bottom:447.039520pt;}
.y70{bottom:448.153760pt;}
.y25{bottom:460.000000pt;}
.y6f{bottom:461.114240pt;}
.y24{bottom:473.280000pt;}
.y6e{bottom:474.074720pt;}
.y6d{bottom:487.035200pt;}
.y23{bottom:487.515200pt;}
.y6c{bottom:499.995680pt;}
.y22{bottom:500.475680pt;}
.y6b{bottom:512.956160pt;}
.y21{bottom:513.436160pt;}
.y6a{bottom:525.916640pt;}
.y20{bottom:526.396640pt;}
.y69{bottom:538.877120pt;}
.y1f{bottom:539.357120pt;}
.y68{bottom:551.837600pt;}
.y1e{bottom:552.317600pt;}
.y67{bottom:564.798080pt;}
.y1d{bottom:565.278080pt;}
.y66{bottom:577.758560pt;}
.y1c{bottom:578.238560pt;}
.y65{bottom:590.719040pt;}
.y1b{bottom:591.199040pt;}
.y64{bottom:603.679520pt;}
.y1a{bottom:604.159520pt;}
.y63{bottom:616.640000pt;}
.y19{bottom:617.120000pt;}
.y62{bottom:630.088000pt;}
.y18{bottom:630.404000pt;}
.y61{bottom:644.644000pt;}
.y17{bottom:644.960000pt;}
.y16{bottom:659.196507pt;}
.y60{bottom:659.199520pt;}
.y15{bottom:672.156987pt;}
.y5f{bottom:673.435680pt;}
.y14{bottom:685.117467pt;}
.y5e{bottom:686.396160pt;}
.y13{bottom:698.077947pt;}
.y5d{bottom:699.356640pt;}
.y12{bottom:711.038427pt;}
.y5c{bottom:712.317120pt;}
.y11{bottom:723.998907pt;}
.y5b{bottom:725.277600pt;}
.y10{bottom:736.959387pt;}
.y5a{bottom:738.238080pt;}
.yf{bottom:749.919867pt;}
.y59{bottom:751.198560pt;}
.ye{bottom:763.360000pt;}
.y58{bottom:764.159040pt;}
.y57{bottom:777.119520pt;}
.yd{bottom:785.602400pt;}
.y56{bottom:790.070080pt;}
.y55{bottom:803.030560pt;}
.yc{bottom:810.560000pt;}
.y54{bottom:815.991040pt;}
.y53{bottom:828.951520pt;}
.yb{bottom:831.520000pt;}
.y52{bottom:841.912000pt;}
.ya{bottom:848.479520pt;}
.y51{bottom:854.872480pt;}
.y9{bottom:865.440000pt;}
.y50{bottom:867.832960pt;}
.y8{bottom:874.400000pt;}
.y4f{bottom:880.793440pt;}
.y7{bottom:887.838240pt;}
.y4e{bottom:893.753920pt;}
.y6{bottom:904.000000pt;}
.y4d{bottom:906.714400pt;}
.y4c{bottom:919.674880pt;}
.y5{bottom:923.005760pt;}
.y4b{bottom:932.635360pt;}
.y4a{bottom:945.595840pt;}
.y4{bottom:955.497280pt;}
.y49{bottom:958.556320pt;}
.y48{bottom:971.516800pt;}
.y47{bottom:984.477280pt;}
.y3{bottom:987.828480pt;}
.y46{bottom:997.437760pt;}
.y45{bottom:1010.398240pt;}
.y2{bottom:1020.320000pt;}
.y44{bottom:1023.358720pt;}
.y43{bottom:1036.480000pt;}
.h2{height:24.468750pt;}
.h7{height:26.900937pt;}
.h6{height:32.788125pt;}
.hd{height:36.468750pt;}
.h8{height:36.703125pt;}
.hc{height:36.705045pt;}
.hb{height:39.283430pt;}
.h9{height:42.900937pt;}
.ha{height:42.927818pt;}
.he{height:48.023438pt;}
.h4{height:53.145938pt;}
.h5{height:53.152977pt;}
.h3{height:81.725625pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.240000pt;}
.x2{left:104.160000pt;}
.x6{left:112.960000pt;}
.x8{left:116.480000pt;}
.xc{left:122.242080pt;}
.x3{left:130.719680pt;}
.xd{left:146.244160pt;}
.xb{left:166.560000pt;}
.x4{left:184.800960pt;}
.x7{left:203.362080pt;}
.xa{left:221.760000pt;}
.x9{left:376.954400pt;}
.x5{left:408.180160pt;}
}




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