
    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_dae8c6a25e22e0d3c6d31c22.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_ec642cb06ebf9b613cbb7ec8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.880859;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_d9205cc4ac4d79137c2117da.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d657dfde477da51d51efdd0b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cfee39cbc0b91d441b186517.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_af4534fcf0fc26ee9322e45c.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_265d7543f46cdf0a0a0cd84e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_ce089cb92a8c39314e6e58ae.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_7f92335da86d60c90ea05197.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls24{letter-spacing:-1.800000px;}
.ls33{letter-spacing:-1.782000px;}
.ls2b{letter-spacing:-1.620000px;}
.ls2c{letter-spacing:-1.338000px;}
.ls17{letter-spacing:-0.428400px;}
.ls15{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.331800px;}
.ls7{letter-spacing:-0.296400px;}
.ls9{letter-spacing:-0.282000px;}
.ls14{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.161400px;}
.ls6{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.037440px;}
.ls16{letter-spacing:-0.028080px;}
.ls8{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.037440px;}
.ls23{letter-spacing:0.172080px;}
.ls12{letter-spacing:0.208080px;}
.ls29{letter-spacing:0.291600px;}
.ls27{letter-spacing:0.321600px;}
.ls1b{letter-spacing:0.341280px;}
.lsc{letter-spacing:0.350400px;}
.lsb{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.388200px;}
.ls22{letter-spacing:0.516000px;}
.ls31{letter-spacing:1.061280px;}
.lse{letter-spacing:1.260000px;}
.ls2{letter-spacing:4.140000px;}
.ls10{letter-spacing:5.580000px;}
.ls11{letter-spacing:6.300000px;}
.ls2f{letter-spacing:7.740000px;}
.ls4{letter-spacing:8.460000px;}
.ls19{letter-spacing:9.900000px;}
.ls1{letter-spacing:10.620000px;}
.ls3{letter-spacing:12.060000px;}
.lsd{letter-spacing:13.476000px;}
.ls2e{letter-spacing:14.220000px;}
.ls20{letter-spacing:15.660000px;}
.ls21{letter-spacing:16.380000px;}
.ls18{letter-spacing:17.820000px;}
.ls32{letter-spacing:18.540000px;}
.ls1d{letter-spacing:19.980000px;}
.lsf{letter-spacing:22.140000px;}
.ls1f{letter-spacing:27.180000px;}
.ls1e{letter-spacing:27.900000px;}
.ls30{letter-spacing:37.061280px;}
.ls2a{letter-spacing:39.420000px;}
.ls1c{letter-spacing:45.180000px;}
.ls1a{letter-spacing:149.381280px;}
.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;}
}
.ws1{word-spacing:-41.940000px;}
.ws0{word-spacing:-24.331344px;}
.ws7{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.ws11{word-spacing:-21.381600px;}
.ws12{word-spacing:-21.351600px;}
.wsd{word-spacing:-21.097440px;}
.wse{word-spacing:-21.081600px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.041280px;}
.wsf{word-spacing:-21.022560px;}
.ws10{word-spacing:-20.898600px;}
.ws14{word-spacing:-20.880000px;}
.ws6{word-spacing:-20.778000px;}
.ws4{word-spacing:-20.763600px;}
.wsa{word-spacing:-20.700000px;}
.wsc{word-spacing:-20.631600px;}
.ws13{word-spacing:-19.440000px;}
.ws16{word-spacing:-19.278000px;}
.ws15{word-spacing:-19.260000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-13.500000px;}
.ws9{word-spacing:0.000000px;}
._26{margin-left:-20.464080px;}
._19{margin-left:-5.391360px;}
._1a{margin-left:-4.235040px;}
._c{margin-left:-2.438880px;}
._1{margin-left:-1.358640px;}
._0{width:1.560960px;}
._5{width:3.172800px;}
._4{width:4.330800px;}
._15{width:6.318000px;}
._e{width:7.925520px;}
._1d{width:9.266400px;}
._2{width:10.324080px;}
._7{width:11.789040px;}
._3{width:12.885600px;}
._6{width:14.255040px;}
._b{width:15.449520px;}
._8{width:16.500000px;}
._21{width:18.364320px;}
._1b{width:19.638720px;}
._f{width:22.367520px;}
._d{width:23.990880px;}
._22{width:25.226640px;}
._1f{width:26.282880px;}
._20{width:27.388800px;}
._1e{width:29.484000px;}
._16{width:30.916080px;}
._14{width:33.117120px;}
._9{width:34.791120px;}
._a{width:36.191280px;}
._18{width:38.218320px;}
._17{width:39.904320px;}
._24{width:43.681440px;}
._10{width:44.815680px;}
._11{width:46.005840px;}
._1c{width:48.016800px;}
._23{width:53.576640px;}
._13{width:92.889120px;}
._12{width:94.696560px;}
._25{width:1376.940000px;}
.fc3{color:transparent;}
.fc4{color:rgb(46,116,181);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.144000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.035981px;}
.y6{bottom:6.660000px;}
.y4{bottom:7.056000px;}
.y79{bottom:9.180000px;}
.y72{bottom:10.080000px;}
.y76{bottom:11.520000px;}
.y8{bottom:11.700000px;}
.y78{bottom:12.960000px;}
.y74{bottom:13.140000px;}
.y91{bottom:19.980000px;}
.y6f{bottom:20.160000px;}
.y8b{bottom:20.205000px;}
.y77{bottom:21.600000px;}
.y3{bottom:21.960000px;}
.y7{bottom:23.796000px;}
.y7a{bottom:25.020000px;}
.y88{bottom:32.940000px;}
.y75{bottom:33.300000px;}
.y82{bottom:34.020000px;}
.y73{bottom:34.740000px;}
.y71{bottom:39.960000px;}
.y7e{bottom:46.800000px;}
.y8c{bottom:47.880000px;}
.y81{bottom:48.060000px;}
.y6c{bottom:54.000000px;}
.y6e{bottom:59.940000px;}
.y87{bottom:60.660000px;}
.y70{bottom:67.860000px;}
.y84{bottom:74.520000px;}
.y7c{bottom:74.700000px;}
.y6d{bottom:87.690000px;}
.y8e{bottom:88.380000px;}
.y86{bottom:88.425000px;}
.y2a{bottom:93.456000px;}
.y7d{bottom:102.420000px;}
.y4f{bottom:109.116000px;}
.y85{bottom:116.145000px;}
.y29{bottom:119.556000px;}
.yac{bottom:133.236000px;}
.y4e{bottom:135.216000px;}
.y28{bottom:147.276000px;}
.yab{bottom:157.530000px;}
.y4d{bottom:161.310000px;}
.y27{bottom:175.170000px;}
.yaa{bottom:181.650000px;}
.y4c{bottom:187.410000px;}
.y26{bottom:202.890000px;}
.y6a{bottom:205.770000px;}
.y4b{bottom:225.390000px;}
.ya9{bottom:229.890000px;}
.y25{bottom:230.610000px;}
.y69{bottom:245.550000px;}
.y4a{bottom:251.490000px;}
.ya8{bottom:254.010000px;}
.y24{bottom:258.510000px;}
.y68{bottom:273.270000px;}
.y49{bottom:277.590000px;}
.ya7{bottom:278.130000px;}
.y23{bottom:286.275000px;}
.y67{bottom:300.855000px;}
.ya6{bottom:302.295000px;}
.y48{bottom:303.555000px;}
.y22{bottom:313.995000px;}
.ya5{bottom:326.595000px;}
.y96{bottom:340.095000px;}
.y21{bottom:341.715000px;}
.y66{bottom:345.135000px;}
.ya4{bottom:350.715000px;}
.y47{bottom:367.815000px;}
.y20{bottom:369.615000px;}
.y65{bottom:371.235000px;}
.ya3{bottom:374.835000px;}
.y46{bottom:393.735000px;}
.y95{bottom:395.535000px;}
.y64{bottom:397.155000px;}
.ya2{bottom:398.955000px;}
.y1f{bottom:406.335000px;}
.y45{bottom:419.835000px;}
.ya1{bottom:423.075000px;}
.y63{bottom:423.255000px;}
.y1e{bottom:434.055000px;}
.y44{bottom:445.935000px;}
.ya0{bottom:447.195000px;}
.y62{bottom:449.355000px;}
.y92{bottom:461.775000px;}
.y9f{bottom:471.495000px;}
.y43{bottom:472.035000px;}
.y1d{bottom:473.835000px;}
.y61{bottom:487.335000px;}
.y42{bottom:497.955000px;}
.y1c{bottom:501.555000px;}
.y60{bottom:513.435000px;}
.y9e{bottom:517.215000px;}
.y41{bottom:524.055000px;}
.y1b{bottom:529.455000px;}
.y94{bottom:529.995000px;}
.y5f{bottom:539.535000px;}
.y40{bottom:550.155000px;}
.y1a{bottom:557.175000px;}
.y9d{bottom:560.955000px;}
.y5e{bottom:565.665000px;}
.y93{bottom:570.525000px;}
.y3f{bottom:576.285000px;}
.y5d{bottom:591.585000px;}
.y9c{bottom:591.945000px;}
.y19{bottom:596.985000px;}
.y3e{bottom:602.205000px;}
.y8d{bottom:611.025000px;}
.y9b{bottom:622.905000px;}
.y18{bottom:624.705000px;}
.y3d{bottom:628.305000px;}
.y5c{bottom:629.745000px;}
.y9a{bottom:653.865000px;}
.y5b{bottom:655.845000px;}
.y17{bottom:664.485000px;}
.y3c{bottom:666.465000px;}
.y90{bottom:679.425000px;}
.y5a{bottom:681.765000px;}
.y99{bottom:685.005000px;}
.y16{bottom:692.205000px;}
.y3b{bottom:692.385000px;}
.y59{bottom:707.865000px;}
.y3a{bottom:718.485000px;}
.y8f{bottom:719.925000px;}
.y15{bottom:720.105000px;}
.y39{bottom:744.585000px;}
.y58{bottom:746.025000px;}
.y14{bottom:747.825000px;}
.y83{bottom:760.425000px;}
.y98{bottom:762.945000px;}
.y38{bottom:770.685000px;}
.y57{bottom:771.945000px;}
.y13{bottom:775.545000px;}
.y56{bottom:796.245000px;}
.y37{bottom:796.785000px;}
.y12{bottom:803.445000px;}
.y97{bottom:807.045000px;}
.y55{bottom:820.365000px;}
.y36{bottom:822.705000px;}
.y8a{bottom:828.645000px;}
.y11{bottom:841.425000px;}
.y54{bottom:844.485000px;}
.y35{bottom:848.850000px;}
.y53{bottom:868.650000px;}
.y89{bottom:869.190000px;}
.y34{bottom:874.950000px;}
.y10{bottom:879.450000px;}
.y52{bottom:892.770000px;}
.y33{bottom:901.050000px;}
.y7b{bottom:909.690000px;}
.y51{bottom:916.890000px;}
.yf{bottom:917.610000px;}
.y32{bottom:926.970000px;}
.y50{bottom:941.190000px;}
.y31{bottom:953.070000px;}
.ye{bottom:955.590000px;}
.y80{bottom:978.090000px;}
.y30{bottom:979.170000px;}
.yd{bottom:993.750000px;}
.y2f{bottom:1017.150000px;}
.y7f{bottom:1018.590000px;}
.yc{bottom:1031.730000px;}
.y2e{bottom:1043.250000px;}
.y6b{bottom:1059.090000px;}
.y2d{bottom:1069.350000px;}
.yb{bottom:1071.510000px;}
.y2c{bottom:1095.450000px;}
.ya{bottom:1099.230000px;}
.y2b{bottom:1121.550000px;}
.y9{bottom:1147.500000px;}
.y1{bottom:1175.040000px;}
.y5{bottom:1200.600000px;}
.h7{height:28.440000px;}
.h3{height:39.420000px;}
.h17{height:39.600000px;}
.h12{height:39.780000px;}
.h15{height:39.816000px;}
.h5{height:45.900000px;}
.h2{height:65.884219px;}
.h16{height:67.500000px;}
.h13{height:67.680000px;}
.h8{height:72.562500px;}
.hc{height:74.244727px;}
.h4{height:81.688852px;}
.ha{height:82.635820px;}
.h10{height:82.676947px;}
.hb{height:82.676953px;}
.hd{height:83.238047px;}
.h9{height:84.898125px;}
.he{height:86.585445px;}
.hf{height:107.316000px;}
.h14{height:148.536000px;}
.h11{height:148.680000px;}
.h6{height:169.070625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:42.840000px;}
.w3{width:71.820000px;}
.wa{width:77.940000px;}
.wc{width:80.280000px;}
.wb{width:80.316000px;}
.w8{width:105.660000px;}
.w9{width:133.236000px;}
.w7{width:141.516000px;}
.w5{width:356.835000px;}
.w4{width:610.740000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x2c{left:9.180000px;}
.x16{left:11.160000px;}
.x18{left:13.320000px;}
.x2a{left:15.660000px;}
.x1b{left:17.820000px;}
.x28{left:19.080000px;}
.x6{left:20.700000px;}
.x29{left:21.960000px;}
.x30{left:23.760000px;}
.x26{left:26.640000px;}
.x20{left:27.720000px;}
.x1a{left:28.800000px;}
.x1e{left:32.040000px;}
.x2e{left:34.020000px;}
.x1c{left:35.640000px;}
.x4{left:38.130000px;}
.x2f{left:39.600000px;}
.x2b{left:45.180000px;}
.x2d{left:46.800000px;}
.x27{left:49.320000px;}
.x21{left:54.540000px;}
.x23{left:81.225000px;}
.x8{left:84.959987px;}
.x14{left:91.979987px;}
.xa{left:96.875987px;}
.x12{left:102.455987px;}
.x24{left:108.045000px;}
.x15{left:124.236000px;}
.x9{left:131.435987px;}
.x10{left:138.095987px;}
.xf{left:166.169987px;}
.x17{left:167.790000px;}
.xd{left:194.609987px;}
.xe{left:209.369987px;}
.xc{left:211.529987px;}
.x32{left:250.049987px;}
.x19{left:310.035000px;}
.x33{left:328.394987px;}
.x13{left:337.214987px;}
.x1d{left:416.415000px;}
.x31{left:429.194987px;}
.x7{left:434.955000px;}
.xb{left:457.094987px;}
.x1f{left:550.365000px;}
.x22{left:629.025000px;}
.x25{left:710.070000px;}
.x11{left:741.749987px;}
.x3{left:794.160000px;}
.x1{left:891.899987px;}
.x2{left:901.079987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls24{letter-spacing:-1.600000pt;}
.ls33{letter-spacing:-1.584000pt;}
.ls2b{letter-spacing:-1.440000pt;}
.ls2c{letter-spacing:-1.189333pt;}
.ls17{letter-spacing:-0.380800pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.294933pt;}
.ls7{letter-spacing:-0.263467pt;}
.ls9{letter-spacing:-0.250667pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.143467pt;}
.ls6{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.033280pt;}
.ls16{letter-spacing:-0.024960pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.033280pt;}
.ls23{letter-spacing:0.152960pt;}
.ls12{letter-spacing:0.184960pt;}
.ls29{letter-spacing:0.259200pt;}
.ls27{letter-spacing:0.285867pt;}
.ls1b{letter-spacing:0.303360pt;}
.lsc{letter-spacing:0.311467pt;}
.lsb{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.345067pt;}
.ls22{letter-spacing:0.458667pt;}
.ls31{letter-spacing:0.943360pt;}
.lse{letter-spacing:1.120000pt;}
.ls2{letter-spacing:3.680000pt;}
.ls10{letter-spacing:4.960000pt;}
.ls11{letter-spacing:5.600000pt;}
.ls2f{letter-spacing:6.880000pt;}
.ls4{letter-spacing:7.520000pt;}
.ls19{letter-spacing:8.800000pt;}
.ls1{letter-spacing:9.440000pt;}
.ls3{letter-spacing:10.720000pt;}
.lsd{letter-spacing:11.978667pt;}
.ls2e{letter-spacing:12.640000pt;}
.ls20{letter-spacing:13.920000pt;}
.ls21{letter-spacing:14.560000pt;}
.ls18{letter-spacing:15.840000pt;}
.ls32{letter-spacing:16.480000pt;}
.ls1d{letter-spacing:17.760000pt;}
.lsf{letter-spacing:19.680000pt;}
.ls1f{letter-spacing:24.160000pt;}
.ls1e{letter-spacing:24.800000pt;}
.ls30{letter-spacing:32.943360pt;}
.ls2a{letter-spacing:35.040000pt;}
.ls1c{letter-spacing:40.160000pt;}
.ls1a{letter-spacing:132.783360pt;}
.ws1{word-spacing:-37.280000pt;}
.ws0{word-spacing:-21.627861pt;}
.ws7{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.ws11{word-spacing:-19.005867pt;}
.ws12{word-spacing:-18.979200pt;}
.wsd{word-spacing:-18.753280pt;}
.wse{word-spacing:-18.739200pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.703360pt;}
.wsf{word-spacing:-18.686720pt;}
.ws10{word-spacing:-18.576533pt;}
.ws14{word-spacing:-18.560000pt;}
.ws6{word-spacing:-18.469333pt;}
.ws4{word-spacing:-18.456533pt;}
.wsa{word-spacing:-18.400000pt;}
.wsc{word-spacing:-18.339200pt;}
.ws13{word-spacing:-17.280000pt;}
.ws16{word-spacing:-17.136000pt;}
.ws15{word-spacing:-17.120000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws9{word-spacing:0.000000pt;}
._26{margin-left:-18.190293pt;}
._19{margin-left:-4.792320pt;}
._1a{margin-left:-3.764480pt;}
._c{margin-left:-2.167893pt;}
._1{margin-left:-1.207680pt;}
._0{width:1.387520pt;}
._5{width:2.820267pt;}
._4{width:3.849600pt;}
._15{width:5.616000pt;}
._e{width:7.044907pt;}
._1d{width:8.236800pt;}
._2{width:9.176960pt;}
._7{width:10.479147pt;}
._3{width:11.453867pt;}
._6{width:12.671147pt;}
._b{width:13.732907pt;}
._8{width:14.666667pt;}
._21{width:16.323840pt;}
._1b{width:17.456640pt;}
._f{width:19.882240pt;}
._d{width:21.325227pt;}
._22{width:22.423680pt;}
._1f{width:23.362560pt;}
._20{width:24.345600pt;}
._1e{width:26.208000pt;}
._16{width:27.480960pt;}
._14{width:29.437440pt;}
._9{width:30.925440pt;}
._a{width:32.170027pt;}
._18{width:33.971840pt;}
._17{width:35.470507pt;}
._24{width:38.827947pt;}
._10{width:39.836160pt;}
._11{width:40.894080pt;}
._1c{width:42.681600pt;}
._23{width:47.623680pt;}
._13{width:82.568107pt;}
._12{width:84.174720pt;}
._25{width:1223.946667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.128000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.031983pt;}
.y6{bottom:5.920000pt;}
.y4{bottom:6.272000pt;}
.y79{bottom:8.160000pt;}
.y72{bottom:8.960000pt;}
.y76{bottom:10.240000pt;}
.y8{bottom:10.400000pt;}
.y78{bottom:11.520000pt;}
.y74{bottom:11.680000pt;}
.y91{bottom:17.760000pt;}
.y6f{bottom:17.920000pt;}
.y8b{bottom:17.960000pt;}
.y77{bottom:19.200000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.152000pt;}
.y7a{bottom:22.240000pt;}
.y88{bottom:29.280000pt;}
.y75{bottom:29.600000pt;}
.y82{bottom:30.240000pt;}
.y73{bottom:30.880000pt;}
.y71{bottom:35.520000pt;}
.y7e{bottom:41.600000pt;}
.y8c{bottom:42.560000pt;}
.y81{bottom:42.720000pt;}
.y6c{bottom:48.000000pt;}
.y6e{bottom:53.280000pt;}
.y87{bottom:53.920000pt;}
.y70{bottom:60.320000pt;}
.y84{bottom:66.240000pt;}
.y7c{bottom:66.400000pt;}
.y6d{bottom:77.946667pt;}
.y8e{bottom:78.560000pt;}
.y86{bottom:78.600000pt;}
.y2a{bottom:83.072000pt;}
.y7d{bottom:91.040000pt;}
.y4f{bottom:96.992000pt;}
.y85{bottom:103.240000pt;}
.y29{bottom:106.272000pt;}
.yac{bottom:118.432000pt;}
.y4e{bottom:120.192000pt;}
.y28{bottom:130.912000pt;}
.yab{bottom:140.026667pt;}
.y4d{bottom:143.386667pt;}
.y27{bottom:155.706667pt;}
.yaa{bottom:161.466667pt;}
.y4c{bottom:166.586667pt;}
.y26{bottom:180.346667pt;}
.y6a{bottom:182.906667pt;}
.y4b{bottom:200.346667pt;}
.ya9{bottom:204.346667pt;}
.y25{bottom:204.986667pt;}
.y69{bottom:218.266667pt;}
.y4a{bottom:223.546667pt;}
.ya8{bottom:225.786667pt;}
.y24{bottom:229.786667pt;}
.y68{bottom:242.906667pt;}
.y49{bottom:246.746667pt;}
.ya7{bottom:247.226667pt;}
.y23{bottom:254.466667pt;}
.y67{bottom:267.426667pt;}
.ya6{bottom:268.706667pt;}
.y48{bottom:269.826667pt;}
.y22{bottom:279.106667pt;}
.ya5{bottom:290.306667pt;}
.y96{bottom:302.306667pt;}
.y21{bottom:303.746667pt;}
.y66{bottom:306.786667pt;}
.ya4{bottom:311.746667pt;}
.y47{bottom:326.946667pt;}
.y20{bottom:328.546667pt;}
.y65{bottom:329.986667pt;}
.ya3{bottom:333.186667pt;}
.y46{bottom:349.986667pt;}
.y95{bottom:351.586667pt;}
.y64{bottom:353.026667pt;}
.ya2{bottom:354.626667pt;}
.y1f{bottom:361.186667pt;}
.y45{bottom:373.186667pt;}
.ya1{bottom:376.066667pt;}
.y63{bottom:376.226667pt;}
.y1e{bottom:385.826667pt;}
.y44{bottom:396.386667pt;}
.ya0{bottom:397.506667pt;}
.y62{bottom:399.426667pt;}
.y92{bottom:410.466667pt;}
.y9f{bottom:419.106667pt;}
.y43{bottom:419.586667pt;}
.y1d{bottom:421.186667pt;}
.y61{bottom:433.186667pt;}
.y42{bottom:442.626667pt;}
.y1c{bottom:445.826667pt;}
.y60{bottom:456.386667pt;}
.y9e{bottom:459.746667pt;}
.y41{bottom:465.826667pt;}
.y1b{bottom:470.626667pt;}
.y94{bottom:471.106667pt;}
.y5f{bottom:479.586667pt;}
.y40{bottom:489.026667pt;}
.y1a{bottom:495.266667pt;}
.y9d{bottom:498.626667pt;}
.y5e{bottom:502.813333pt;}
.y93{bottom:507.133333pt;}
.y3f{bottom:512.253333pt;}
.y5d{bottom:525.853333pt;}
.y9c{bottom:526.173333pt;}
.y19{bottom:530.653333pt;}
.y3e{bottom:535.293333pt;}
.y8d{bottom:543.133333pt;}
.y9b{bottom:553.693333pt;}
.y18{bottom:555.293333pt;}
.y3d{bottom:558.493333pt;}
.y5c{bottom:559.773333pt;}
.y9a{bottom:581.213333pt;}
.y5b{bottom:582.973333pt;}
.y17{bottom:590.653333pt;}
.y3c{bottom:592.413333pt;}
.y90{bottom:603.933333pt;}
.y5a{bottom:606.013333pt;}
.y99{bottom:608.893333pt;}
.y16{bottom:615.293333pt;}
.y3b{bottom:615.453333pt;}
.y59{bottom:629.213333pt;}
.y3a{bottom:638.653333pt;}
.y8f{bottom:639.933333pt;}
.y15{bottom:640.093333pt;}
.y39{bottom:661.853333pt;}
.y58{bottom:663.133333pt;}
.y14{bottom:664.733333pt;}
.y83{bottom:675.933333pt;}
.y98{bottom:678.173333pt;}
.y38{bottom:685.053333pt;}
.y57{bottom:686.173333pt;}
.y13{bottom:689.373333pt;}
.y56{bottom:707.773333pt;}
.y37{bottom:708.253333pt;}
.y12{bottom:714.173333pt;}
.y97{bottom:717.373333pt;}
.y55{bottom:729.213333pt;}
.y36{bottom:731.293333pt;}
.y8a{bottom:736.573333pt;}
.y11{bottom:747.933333pt;}
.y54{bottom:750.653333pt;}
.y35{bottom:754.533333pt;}
.y53{bottom:772.133333pt;}
.y89{bottom:772.613333pt;}
.y34{bottom:777.733333pt;}
.y10{bottom:781.733333pt;}
.y52{bottom:793.573333pt;}
.y33{bottom:800.933333pt;}
.y7b{bottom:808.613333pt;}
.y51{bottom:815.013333pt;}
.yf{bottom:815.653333pt;}
.y32{bottom:823.973333pt;}
.y50{bottom:836.613333pt;}
.y31{bottom:847.173333pt;}
.ye{bottom:849.413333pt;}
.y80{bottom:869.413333pt;}
.y30{bottom:870.373333pt;}
.yd{bottom:883.333333pt;}
.y2f{bottom:904.133333pt;}
.y7f{bottom:905.413333pt;}
.yc{bottom:917.093333pt;}
.y2e{bottom:927.333333pt;}
.y6b{bottom:941.413333pt;}
.y2d{bottom:950.533333pt;}
.yb{bottom:952.453333pt;}
.y2c{bottom:973.733333pt;}
.ya{bottom:977.093333pt;}
.y2b{bottom:996.933333pt;}
.y9{bottom:1020.000000pt;}
.y1{bottom:1044.480000pt;}
.y5{bottom:1067.200000pt;}
.h7{height:25.280000pt;}
.h3{height:35.040000pt;}
.h17{height:35.200000pt;}
.h12{height:35.360000pt;}
.h15{height:35.392000pt;}
.h5{height:40.800000pt;}
.h2{height:58.563750pt;}
.h16{height:60.000000pt;}
.h13{height:60.160000pt;}
.h8{height:64.500000pt;}
.hc{height:65.995312pt;}
.h4{height:72.612313pt;}
.ha{height:73.454062pt;}
.h10{height:73.490619pt;}
.hb{height:73.490625pt;}
.hd{height:73.989375pt;}
.h9{height:75.465000pt;}
.he{height:76.964840pt;}
.hf{height:95.392000pt;}
.h14{height:132.032000pt;}
.h11{height:132.160000pt;}
.h6{height:150.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:38.080000pt;}
.w3{width:63.840000pt;}
.wa{width:69.280000pt;}
.wc{width:71.360000pt;}
.wb{width:71.392000pt;}
.w8{width:93.920000pt;}
.w9{width:118.432000pt;}
.w7{width:125.792000pt;}
.w5{width:317.186667pt;}
.w4{width:542.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x2c{left:8.160000pt;}
.x16{left:9.920000pt;}
.x18{left:11.840000pt;}
.x2a{left:13.920000pt;}
.x1b{left:15.840000pt;}
.x28{left:16.960000pt;}
.x6{left:18.400000pt;}
.x29{left:19.520000pt;}
.x30{left:21.120000pt;}
.x26{left:23.680000pt;}
.x20{left:24.640000pt;}
.x1a{left:25.600000pt;}
.x1e{left:28.480000pt;}
.x2e{left:30.240000pt;}
.x1c{left:31.680000pt;}
.x4{left:33.893333pt;}
.x2f{left:35.200000pt;}
.x2b{left:40.160000pt;}
.x2d{left:41.600000pt;}
.x27{left:43.840000pt;}
.x21{left:48.480000pt;}
.x23{left:72.200000pt;}
.x8{left:75.519988pt;}
.x14{left:81.759988pt;}
.xa{left:86.111988pt;}
.x12{left:91.071988pt;}
.x24{left:96.040000pt;}
.x15{left:110.432000pt;}
.x9{left:116.831988pt;}
.x10{left:122.751988pt;}
.xf{left:147.706655pt;}
.x17{left:149.146667pt;}
.xd{left:172.986655pt;}
.xe{left:186.106655pt;}
.xc{left:188.026655pt;}
.x32{left:222.266655pt;}
.x19{left:275.586667pt;}
.x33{left:291.906655pt;}
.x13{left:299.746655pt;}
.x1d{left:370.146667pt;}
.x31{left:381.506655pt;}
.x7{left:386.626667pt;}
.xb{left:406.306655pt;}
.x1f{left:489.213333pt;}
.x22{left:559.133333pt;}
.x25{left:631.173333pt;}
.x11{left:659.333322pt;}
.x3{left:705.920000pt;}
.x1{left:792.799988pt;}
.x2{left:800.959988pt;}
}




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