
    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_57df3017ffac6d65ae7b9e9d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a3839d9c6d2ddc0f20949779.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0c158abd0f740ef54cf25f8d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_80d7cbc8d838c118c9cf2831.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_c638b214b5703730e59d72e9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_fec2821b681cf66436f52207.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_c8045f230d74725e4a8f0b25.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_3cebcaba5e64a7e0d24cfdcd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fa14e2282301bcf1ba1b2c8a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.v1{vertical-align:-78.480000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.900000px;}
.ls26{letter-spacing:-0.750000px;}
.ls36{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.428400px;}
.ls30{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.161400px;}
.ls28{letter-spacing:-0.037440px;}
.lsb{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.028080px;}
.ls27{letter-spacing:0.291600px;}
.ls24{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.378600px;}
.ls8{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.720000px;}
.ls2b{letter-spacing:2.700000px;}
.ls1{letter-spacing:4.320000px;}
.ls21{letter-spacing:4.860000px;}
.ls4{letter-spacing:5.040000px;}
.ls2d{letter-spacing:5.580000px;}
.ls25{letter-spacing:7.020000px;}
.lsa{letter-spacing:7.740000px;}
.ls22{letter-spacing:9.180000px;}
.ls13{letter-spacing:13.500000px;}
.ls1d{letter-spacing:14.220000px;}
.ls29{letter-spacing:15.660000px;}
.ls15{letter-spacing:17.820000px;}
.ls2{letter-spacing:18.720000px;}
.ls34{letter-spacing:20.880000px;}
.ls14{letter-spacing:23.580000px;}
.ls19{letter-spacing:25.740000px;}
.ls32{letter-spacing:25.920000px;}
.ls1c{letter-spacing:26.460000px;}
.ls33{letter-spacing:26.640000px;}
.ls3{letter-spacing:29.520000px;}
.ls18{letter-spacing:30.780000px;}
.ls7{letter-spacing:33.840000px;}
.ls31{letter-spacing:33.984000px;}
.ls11{letter-spacing:35.100000px;}
.ls2e{letter-spacing:37.980000px;}
.ls20{letter-spacing:40.860000px;}
.ls35{letter-spacing:41.040000px;}
.ls1f{letter-spacing:43.020000px;}
.ls1e{letter-spacing:46.800000px;}
.ls0{letter-spacing:47.700000px;}
.ls2a{letter-spacing:48.780000px;}
.ls2c{letter-spacing:50.220000px;}
.ls16{letter-spacing:53.820000px;}
.ls12{letter-spacing:60.300000px;}
.ls17{letter-spacing:64.620000px;}
.lse{letter-spacing:71.820000px;}
.ls6{letter-spacing:80.640000px;}
.ls5{letter-spacing:81.360000px;}
.ls10{letter-spacing:84.060000px;}
.ls9{letter-spacing:99.900000px;}
.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;}
}
.ws3{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.631600px;}
.ws5{word-spacing:-20.310000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.336080px;}
._f{width:2.451840px;}
._3{width:3.624000px;}
._2{width:4.728000px;}
._b{width:6.732000px;}
._15{width:7.848000px;}
._c{width:9.648000px;}
._d{width:10.728000px;}
._13{width:12.288000px;}
._14{width:13.608000px;}
._27{width:14.703840px;}
._2a{width:16.679520px;}
._35{width:17.943120px;}
._4{width:19.080000px;}
._3a{width:20.088000px;}
._5{width:21.960000px;}
._a{width:22.968000px;}
._6{width:23.988000px;}
._1b{width:25.103520px;}
._2d{width:26.367120px;}
._2e{width:27.536880px;}
._9{width:28.700160px;}
._8{width:30.000000px;}
._12{width:31.800000px;}
._11{width:33.356160px;}
._10{width:34.752000px;}
._18{width:36.138960px;}
._17{width:37.318320px;}
._16{width:38.497680px;}
._7{width:40.296000px;}
._20{width:41.614560px;}
._2f{width:43.130880px;}
._22{width:44.562960px;}
._21{width:46.500480px;}
._28{width:47.622720px;}
._23{width:49.084800px;}
._34{width:50.304480px;}
._1f{width:52.650000px;}
._2b{width:54.559200px;}
._39{width:56.404560px;}
._24{width:59.726160px;}
._30{width:61.832160px;}
._31{width:63.011520px;}
._2c{width:64.108560px;}
._29{width:65.286000px;}
._32{width:67.409760px;}
._1c{width:71.014320px;}
._33{width:73.710000px;}
._36{width:74.805120px;}
._e{width:80.064000px;}
._1d{width:83.390160px;}
._1e{width:84.492720px;}
._19{width:99.318960px;}
._1a{width:100.666800px;}
._37{width:102.098880px;}
._38{width:103.708320px;}
._26{width:174.905280px;}
._25{width:176.078880px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(27,28,29);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.960000px;}
.y4{bottom:12.240000px;}
.y5f{bottom:14.220000px;}
.y3{bottom:23.976000px;}
.y5d{bottom:24.660000px;}
.y2{bottom:31.176000px;}
.y61{bottom:34.920000px;}
.y63{bottom:45.360000px;}
.y66{bottom:45.405000px;}
.y62{bottom:66.060000px;}
.y34{bottom:68.256000px;}
.y58{bottom:73.296000px;}
.y6c{bottom:82.296000px;}
.y70{bottom:91.116000px;}
.y33{bottom:95.976000px;}
.y57{bottom:101.016000px;}
.y6b{bottom:110.016000px;}
.y6f{bottom:114.156000px;}
.y32{bottom:123.876000px;}
.y56{bottom:128.916000px;}
.y6e{bottom:137.376000px;}
.y6a{bottom:137.916000px;}
.y31{bottom:151.590000px;}
.y55{bottom:156.630000px;}
.y6d{bottom:160.590000px;}
.y69{bottom:165.630000px;}
.y30{bottom:179.310000px;}
.y54{bottom:184.350000px;}
.y68{bottom:193.350000px;}
.y2f{bottom:207.210000px;}
.y53{bottom:212.070000px;}
.y67{bottom:216.390000px;}
.y2e{bottom:230.070000px;}
.y65{bottom:237.270000px;}
.y52{bottom:239.970000px;}
.y2d{bottom:247.890000px;}
.y51{bottom:267.690000px;}
.y2c{bottom:268.590000px;}
.y2b{bottom:289.335000px;}
.y50{bottom:295.455000px;}
.y2a{bottom:310.035000px;}
.y64{bottom:321.915000px;}
.y4f{bottom:323.175000px;}
.y29{bottom:330.735000px;}
.y4e{bottom:351.075000px;}
.y28{bottom:351.435000px;}
.y27{bottom:372.135000px;}
.y4d{bottom:378.795000px;}
.y26{bottom:392.835000px;}
.y4c{bottom:406.515000px;}
.y25{bottom:413.535000px;}
.y60{bottom:427.215000px;}
.y24{bottom:434.235000px;}
.y4b{bottom:434.415000px;}
.y23{bottom:454.935000px;}
.y4a{bottom:462.135000px;}
.y22{bottom:475.635000px;}
.y49{bottom:489.855000px;}
.y21{bottom:495.435000px;}
.y20{bottom:511.995000px;}
.y48{bottom:517.575000px;}
.y5c{bottom:532.515000px;}
.y1f{bottom:532.695000px;}
.y47{bottom:545.475000px;}
.y1e{bottom:553.395000px;}
.y46{bottom:573.225000px;}
.y1d{bottom:573.945000px;}
.y5b{bottom:590.325000px;}
.y1c{bottom:594.645000px;}
.y45{bottom:600.945000px;}
.y5a{bottom:611.025000px;}
.y1b{bottom:615.345000px;}
.y44{bottom:628.845000px;}
.y59{bottom:631.725000px;}
.y1a{bottom:636.045000px;}
.y43{bottom:656.565000px;}
.y19{bottom:656.745000px;}
.y18{bottom:677.445000px;}
.y42{bottom:684.285000px;}
.y17{bottom:698.145000px;}
.y41{bottom:712.005000px;}
.y16{bottom:718.845000px;}
.y15{bottom:739.545000px;}
.y40{bottom:739.905000px;}
.y14{bottom:760.245000px;}
.y3f{bottom:767.625000px;}
.y13{bottom:780.945000px;}
.y3e{bottom:795.345000px;}
.y12{bottom:800.745000px;}
.y7c{bottom:805.605000px;}
.y3d{bottom:823.065000px;}
.y7b{bottom:826.305000px;}
.y11{bottom:836.925000px;}
.y7a{bottom:847.950000px;}
.y3c{bottom:851.010000px;}
.y10{bottom:853.530000px;}
.y79{bottom:869.010000px;}
.yf{bottom:874.230000px;}
.y3b{bottom:878.730000px;}
.y78{bottom:889.710000px;}
.ye{bottom:893.850000px;}
.y3a{bottom:906.450000px;}
.yd{bottom:910.410000px;}
.yc{bottom:931.110000px;}
.y39{bottom:934.350000px;}
.yb{bottom:950.730000px;}
.y77{bottom:951.810000px;}
.y38{bottom:962.070000px;}
.ya{bottom:967.290000px;}
.y76{bottom:972.510000px;}
.y9{bottom:987.990000px;}
.y37{bottom:989.790000px;}
.y75{bottom:993.210000px;}
.y8{bottom:1007.790000px;}
.y74{bottom:1013.910000px;}
.y36{bottom:1017.510000px;}
.y7{bottom:1024.890000px;}
.y73{bottom:1034.610000px;}
.y35{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y72{bottom:1055.310000px;}
.y5{bottom:1073.130000px;}
.y71{bottom:1076.010000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h12{height:35.332031px;}
.he{height:41.436000px;}
.h10{height:50.484375px;}
.h8{height:52.971680px;}
.h6{height:54.421875px;}
.hb{height:58.621992px;}
.hc{height:59.066719px;}
.ha{height:59.343750px;}
.h11{height:62.136000px;}
.h13{height:65.884219px;}
.h9{height:70.628906px;}
.hd{height:70.664062px;}
.h15{height:71.613281px;}
.h7{height:72.562500px;}
.h5{height:72.846211px;}
.h14{height:74.004654px;}
.h2{height:82.676953px;}
.hf{height:82.800000px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:164.010000px;}
.w5{width:581.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:15.660000px;}
.x1c{left:17.100000px;}
.x3{left:22.140000px;}
.x1d{left:23.940000px;}
.x17{left:25.920000px;}
.x13{left:35.136000px;}
.x1f{left:43.776000px;}
.x16{left:45.576000px;}
.x20{left:47.565000px;}
.x12{left:55.476000px;}
.x19{left:58.365000px;}
.x18{left:67.185000px;}
.x11{left:71.460000px;}
.x1{left:84.959987px;}
.x1a{left:90.585000px;}
.x22{left:117.035987px;}
.x5{left:129.275987px;}
.xe{left:138.095987px;}
.x1e{left:153.225000px;}
.x4{left:203.249987px;}
.xb{left:212.429987px;}
.x6{left:238.349987px;}
.x14{left:239.970000px;}
.x15{left:241.455000px;}
.x21{left:292.934987px;}
.x9{left:313.274987px;}
.xd{left:317.054987px;}
.x10{left:321.554987px;}
.x8{left:367.814987px;}
.xc{left:372.134987px;}
.xa{left:404.174987px;}
.x2{left:409.035000px;}
.x7{left:446.474987px;}
.xf{left:727.169987px;}
@media print{
.v1{vertical-align:-69.760000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.800000pt;}
.ls26{letter-spacing:-0.666667pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.380800pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.143467pt;}
.ls28{letter-spacing:-0.033280pt;}
.lsb{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.024960pt;}
.ls27{letter-spacing:0.259200pt;}
.ls24{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.336533pt;}
.ls8{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls1{letter-spacing:3.840000pt;}
.ls21{letter-spacing:4.320000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls2d{letter-spacing:4.960000pt;}
.ls25{letter-spacing:6.240000pt;}
.lsa{letter-spacing:6.880000pt;}
.ls22{letter-spacing:8.160000pt;}
.ls13{letter-spacing:12.000000pt;}
.ls1d{letter-spacing:12.640000pt;}
.ls29{letter-spacing:13.920000pt;}
.ls15{letter-spacing:15.840000pt;}
.ls2{letter-spacing:16.640000pt;}
.ls34{letter-spacing:18.560000pt;}
.ls14{letter-spacing:20.960000pt;}
.ls19{letter-spacing:22.880000pt;}
.ls32{letter-spacing:23.040000pt;}
.ls1c{letter-spacing:23.520000pt;}
.ls33{letter-spacing:23.680000pt;}
.ls3{letter-spacing:26.240000pt;}
.ls18{letter-spacing:27.360000pt;}
.ls7{letter-spacing:30.080000pt;}
.ls31{letter-spacing:30.208000pt;}
.ls11{letter-spacing:31.200000pt;}
.ls2e{letter-spacing:33.760000pt;}
.ls20{letter-spacing:36.320000pt;}
.ls35{letter-spacing:36.480000pt;}
.ls1f{letter-spacing:38.240000pt;}
.ls1e{letter-spacing:41.600000pt;}
.ls0{letter-spacing:42.400000pt;}
.ls2a{letter-spacing:43.360000pt;}
.ls2c{letter-spacing:44.640000pt;}
.ls16{letter-spacing:47.840000pt;}
.ls12{letter-spacing:53.600000pt;}
.ls17{letter-spacing:57.440000pt;}
.lse{letter-spacing:63.840000pt;}
.ls6{letter-spacing:71.680000pt;}
.ls5{letter-spacing:72.320000pt;}
.ls10{letter-spacing:74.720000pt;}
.ls9{letter-spacing:88.800000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.339200pt;}
.ws5{word-spacing:-18.053333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.187627pt;}
._f{width:2.179413pt;}
._3{width:3.221333pt;}
._2{width:4.202667pt;}
._b{width:5.984000pt;}
._15{width:6.976000pt;}
._c{width:8.576000pt;}
._d{width:9.536000pt;}
._13{width:10.922667pt;}
._14{width:12.096000pt;}
._27{width:13.070080pt;}
._2a{width:14.826240pt;}
._35{width:15.949440pt;}
._4{width:16.960000pt;}
._3a{width:17.856000pt;}
._5{width:19.520000pt;}
._a{width:20.416000pt;}
._6{width:21.322667pt;}
._1b{width:22.314240pt;}
._2d{width:23.437440pt;}
._2e{width:24.477227pt;}
._9{width:25.511253pt;}
._8{width:26.666667pt;}
._12{width:28.266667pt;}
._11{width:29.649920pt;}
._10{width:30.890667pt;}
._18{width:32.123520pt;}
._17{width:33.171840pt;}
._16{width:34.220160pt;}
._7{width:35.818667pt;}
._20{width:36.990720pt;}
._2f{width:38.338560pt;}
._22{width:39.611520pt;}
._21{width:41.333760pt;}
._28{width:42.331307pt;}
._23{width:43.630933pt;}
._34{width:44.715093pt;}
._1f{width:46.800000pt;}
._2b{width:48.497067pt;}
._39{width:50.137387pt;}
._24{width:53.089920pt;}
._30{width:54.961920pt;}
._31{width:56.010240pt;}
._2c{width:56.985387pt;}
._29{width:58.032000pt;}
._32{width:59.919787pt;}
._1c{width:63.123840pt;}
._33{width:65.520000pt;}
._36{width:66.493440pt;}
._e{width:71.168000pt;}
._1d{width:74.124587pt;}
._1e{width:75.104640pt;}
._19{width:88.283520pt;}
._1a{width:89.481600pt;}
._37{width:90.754560pt;}
._38{width:92.185173pt;}
._26{width:155.471360pt;}
._25{width:156.514560pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:3.520000pt;}
.y4{bottom:10.880000pt;}
.y5f{bottom:12.640000pt;}
.y3{bottom:21.312000pt;}
.y5d{bottom:21.920000pt;}
.y2{bottom:27.712000pt;}
.y61{bottom:31.040000pt;}
.y63{bottom:40.320000pt;}
.y66{bottom:40.360000pt;}
.y62{bottom:58.720000pt;}
.y34{bottom:60.672000pt;}
.y58{bottom:65.152000pt;}
.y6c{bottom:73.152000pt;}
.y70{bottom:80.992000pt;}
.y33{bottom:85.312000pt;}
.y57{bottom:89.792000pt;}
.y6b{bottom:97.792000pt;}
.y6f{bottom:101.472000pt;}
.y32{bottom:110.112000pt;}
.y56{bottom:114.592000pt;}
.y6e{bottom:122.112000pt;}
.y6a{bottom:122.592000pt;}
.y31{bottom:134.746667pt;}
.y55{bottom:139.226667pt;}
.y6d{bottom:142.746667pt;}
.y69{bottom:147.226667pt;}
.y30{bottom:159.386667pt;}
.y54{bottom:163.866667pt;}
.y68{bottom:171.866667pt;}
.y2f{bottom:184.186667pt;}
.y53{bottom:188.506667pt;}
.y67{bottom:192.346667pt;}
.y2e{bottom:204.506667pt;}
.y65{bottom:210.906667pt;}
.y52{bottom:213.306667pt;}
.y2d{bottom:220.346667pt;}
.y51{bottom:237.946667pt;}
.y2c{bottom:238.746667pt;}
.y2b{bottom:257.186667pt;}
.y50{bottom:262.626667pt;}
.y2a{bottom:275.586667pt;}
.y64{bottom:286.146667pt;}
.y4f{bottom:287.266667pt;}
.y29{bottom:293.986667pt;}
.y4e{bottom:312.066667pt;}
.y28{bottom:312.386667pt;}
.y27{bottom:330.786667pt;}
.y4d{bottom:336.706667pt;}
.y26{bottom:349.186667pt;}
.y4c{bottom:361.346667pt;}
.y25{bottom:367.586667pt;}
.y60{bottom:379.746667pt;}
.y24{bottom:385.986667pt;}
.y4b{bottom:386.146667pt;}
.y23{bottom:404.386667pt;}
.y4a{bottom:410.786667pt;}
.y22{bottom:422.786667pt;}
.y49{bottom:435.426667pt;}
.y21{bottom:440.386667pt;}
.y20{bottom:455.106667pt;}
.y48{bottom:460.066667pt;}
.y5c{bottom:473.346667pt;}
.y1f{bottom:473.506667pt;}
.y47{bottom:484.866667pt;}
.y1e{bottom:491.906667pt;}
.y46{bottom:509.533333pt;}
.y1d{bottom:510.173333pt;}
.y5b{bottom:524.733333pt;}
.y1c{bottom:528.573333pt;}
.y45{bottom:534.173333pt;}
.y5a{bottom:543.133333pt;}
.y1b{bottom:546.973333pt;}
.y44{bottom:558.973333pt;}
.y59{bottom:561.533333pt;}
.y1a{bottom:565.373333pt;}
.y43{bottom:583.613333pt;}
.y19{bottom:583.773333pt;}
.y18{bottom:602.173333pt;}
.y42{bottom:608.253333pt;}
.y17{bottom:620.573333pt;}
.y41{bottom:632.893333pt;}
.y16{bottom:638.973333pt;}
.y15{bottom:657.373333pt;}
.y40{bottom:657.693333pt;}
.y14{bottom:675.773333pt;}
.y3f{bottom:682.333333pt;}
.y13{bottom:694.173333pt;}
.y3e{bottom:706.973333pt;}
.y12{bottom:711.773333pt;}
.y7c{bottom:716.093333pt;}
.y3d{bottom:731.613333pt;}
.y7b{bottom:734.493333pt;}
.y11{bottom:743.933333pt;}
.y7a{bottom:753.733333pt;}
.y3c{bottom:756.453333pt;}
.y10{bottom:758.693333pt;}
.y79{bottom:772.453333pt;}
.yf{bottom:777.093333pt;}
.y3b{bottom:781.093333pt;}
.y78{bottom:790.853333pt;}
.ye{bottom:794.533333pt;}
.y3a{bottom:805.733333pt;}
.yd{bottom:809.253333pt;}
.yc{bottom:827.653333pt;}
.y39{bottom:830.533333pt;}
.yb{bottom:845.093333pt;}
.y77{bottom:846.053333pt;}
.y38{bottom:855.173333pt;}
.ya{bottom:859.813333pt;}
.y76{bottom:864.453333pt;}
.y9{bottom:878.213333pt;}
.y37{bottom:879.813333pt;}
.y75{bottom:882.853333pt;}
.y8{bottom:895.813333pt;}
.y74{bottom:901.253333pt;}
.y36{bottom:904.453333pt;}
.y7{bottom:911.013333pt;}
.y73{bottom:919.653333pt;}
.y35{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y72{bottom:938.053333pt;}
.y5{bottom:953.893333pt;}
.y71{bottom:956.453333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h12{height:31.406250pt;}
.he{height:36.832000pt;}
.h10{height:44.875000pt;}
.h8{height:47.085938pt;}
.h6{height:48.375000pt;}
.hb{height:52.108438pt;}
.hc{height:52.503750pt;}
.ha{height:52.750000pt;}
.h11{height:55.232000pt;}
.h13{height:58.563750pt;}
.h9{height:62.781250pt;}
.hd{height:62.812500pt;}
.h15{height:63.656250pt;}
.h7{height:64.500000pt;}
.h5{height:64.752187pt;}
.h14{height:65.781915pt;}
.h2{height:73.490625pt;}
.hf{height:73.600000pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:145.786667pt;}
.w5{width:516.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:13.920000pt;}
.x1c{left:15.200000pt;}
.x3{left:19.680000pt;}
.x1d{left:21.280000pt;}
.x17{left:23.040000pt;}
.x13{left:31.232000pt;}
.x1f{left:38.912000pt;}
.x16{left:40.512000pt;}
.x20{left:42.280000pt;}
.x12{left:49.312000pt;}
.x19{left:51.880000pt;}
.x18{left:59.720000pt;}
.x11{left:63.520000pt;}
.x1{left:75.519988pt;}
.x1a{left:80.520000pt;}
.x22{left:104.031988pt;}
.x5{left:114.911988pt;}
.xe{left:122.751988pt;}
.x1e{left:136.200000pt;}
.x4{left:180.666655pt;}
.xb{left:188.826655pt;}
.x6{left:211.866655pt;}
.x14{left:213.306667pt;}
.x15{left:214.626667pt;}
.x21{left:260.386655pt;}
.x9{left:278.466655pt;}
.xd{left:281.826655pt;}
.x10{left:285.826655pt;}
.x8{left:326.946655pt;}
.xc{left:330.786655pt;}
.xa{left:359.266655pt;}
.x2{left:363.586667pt;}
.x7{left:396.866655pt;}
.xf{left:646.373322pt;}
}




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