
    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_948c43517c0392d22b84230e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922363;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_b024dd2eb648d652f904fd3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1ec49d74435db0a10be07e02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ac14c0c38d1715fd375ff38f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ccac43480fbd0741e62d3e8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_da1ad65de4c52d006aef64ca.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_e952ccb670a62cc403ca8316.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_70ce7d9e52c6a2f0cae40efa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;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_e3e06ae16d1e81110dcb168a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_414fddbb42a0a1d1e78779c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:83.520000px;}
.ls13{letter-spacing:-0.158400px;}
.ls24{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.057600px;}
.ls6{letter-spacing:-0.050400px;}
.lsb{letter-spacing:-0.043200px;}
.ls10{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.028800px;}
.lsc{letter-spacing:-0.021600px;}
.lsa{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.007200px;}
.ls1c{letter-spacing:0.008388px;}
.ls2{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.021600px;}
.ls1e{letter-spacing:0.025164px;}
.ls3{letter-spacing:0.028800px;}
.ls1b{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.043200px;}
.ls23{letter-spacing:0.057600px;}
.ls21{letter-spacing:0.058716px;}
.ls1f{letter-spacing:0.064800px;}
.ls17{letter-spacing:0.065880px;}
.ls7{letter-spacing:0.067104px;}
.ls18{letter-spacing:0.072468px;}
.ls15{letter-spacing:0.079056px;}
.ls1a{letter-spacing:0.085644px;}
.ls19{letter-spacing:0.092232px;}
.ls4{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098820px;}
.ls11{letter-spacing:0.100800px;}
.ls1d{letter-spacing:0.125820px;}
.ls22{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.158400px;}
.ls12{letter-spacing:0.201600px;}
.ls0{letter-spacing:54.864000px;}
.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;}
}
.ws44{word-spacing:-83.905164px;}
.ws47{word-spacing:-72.093600px;}
.ws39{word-spacing:-72.064800px;}
.ws48{word-spacing:-72.057600px;}
.ws46{word-spacing:-72.043200px;}
.ws3a{word-spacing:-72.036000px;}
.ws45{word-spacing:-72.028800px;}
.ws3b{word-spacing:-72.021600px;}
.ws37{word-spacing:-72.014400px;}
.ws38{word-spacing:-72.007200px;}
.ws0{word-spacing:-72.000000px;}
.ws36{word-spacing:-71.992800px;}
.ws49{word-spacing:-71.971200px;}
.ws1{word-spacing:-21.614400px;}
.ws43{word-spacing:-21.037104px;}
.ws42{word-spacing:-12.074400px;}
.ws4a{word-spacing:-12.038400px;}
.ws17{word-spacing:-0.194400px;}
.ws1b{word-spacing:-0.122400px;}
.wse{word-spacing:-0.115200px;}
.ws34{word-spacing:-0.109044px;}
.ws1a{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.093600px;}
.ws33{word-spacing:-0.092268px;}
.wsf{word-spacing:-0.086400px;}
.ws35{word-spacing:-0.083880px;}
.ws18{word-spacing:-0.079200px;}
.ws19{word-spacing:-0.072000px;}
.ws27{word-spacing:-0.064800px;}
.ws28{word-spacing:-0.057600px;}
.ws29{word-spacing:-0.036000px;}
.ws24{word-spacing:-0.032940px;}
.ws2e{word-spacing:-0.028800px;}
.ws21{word-spacing:-0.026352px;}
.ws1e{word-spacing:-0.019764px;}
.ws22{word-spacing:-0.013176px;}
.wsd{word-spacing:-0.007200px;}
.ws1f{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.ws2a{word-spacing:0.028800px;}
.ws2d{word-spacing:0.043200px;}
.ws2b{word-spacing:0.050400px;}
.ws4{word-spacing:0.067104px;}
.ws67{word-spacing:0.093600px;}
.ws2c{word-spacing:0.100800px;}
.ws66{word-spacing:0.108000px;}
.ws65{word-spacing:0.122400px;}
.ws3d{word-spacing:0.151200px;}
.ws31{word-spacing:0.158400px;}
.ws30{word-spacing:0.165600px;}
.ws3c{word-spacing:0.172800px;}
.ws2f{word-spacing:0.180000px;}
.ws1c{word-spacing:0.187200px;}
.ws32{word-spacing:0.194400px;}
.ws64{word-spacing:0.201600px;}
.ws3{word-spacing:0.208800px;}
.ws5{word-spacing:0.273600px;}
.ws11{word-spacing:0.669600px;}
.ws23{word-spacing:0.711504px;}
.ws10{word-spacing:0.727200px;}
.ws63{word-spacing:0.900000px;}
.ws1d{word-spacing:3.214944px;}
.ws4e{word-spacing:3.384000px;}
.ws4d{word-spacing:3.499200px;}
.ws20{word-spacing:6.462828px;}
.ws4f{word-spacing:7.020000px;}
.ws50{word-spacing:7.041600px;}
.ws12{word-spacing:7.207200px;}
.ws13{word-spacing:7.257600px;}
.ws54{word-spacing:9.446400px;}
.ws58{word-spacing:9.453600px;}
.ws55{word-spacing:9.540000px;}
.ws59{word-spacing:9.547200px;}
.ws53{word-spacing:9.583200px;}
.ws57{word-spacing:10.260000px;}
.ws5e{word-spacing:10.274400px;}
.ws5f{word-spacing:10.288800px;}
.ws56{word-spacing:10.324800px;}
.wsb{word-spacing:11.080800px;}
.wsc{word-spacing:11.181600px;}
.ws8{word-spacing:12.232800px;}
.ws7{word-spacing:12.297600px;}
.ws3f{word-spacing:13.399200px;}
.ws3e{word-spacing:13.492800px;}
.ws26{word-spacing:15.811200px;}
.ws5b{word-spacing:15.998400px;}
.ws60{word-spacing:16.005600px;}
.ws5a{word-spacing:16.012800px;}
.ws25{word-spacing:16.193304px;}
.ws5d{word-spacing:19.260000px;}
.ws62{word-spacing:19.303200px;}
.ws61{word-spacing:19.310400px;}
.ws6{word-spacing:27.878400px;}
.ws41{word-spacing:27.885600px;}
.ws40{word-spacing:27.892800px;}
.ws15{word-spacing:30.902400px;}
.ws14{word-spacing:30.938400px;}
.ws4c{word-spacing:31.471200px;}
.wsa{word-spacing:33.120000px;}
.ws9{word-spacing:33.249600px;}
.ws4b{word-spacing:34.185600px;}
.ws51{word-spacing:35.841600px;}
.ws52{word-spacing:35.848800px;}
.ws5c{word-spacing:41.947200px;}
._b{margin-left:-27.720000px;}
._6{margin-left:-18.360756px;}
._f{margin-left:-14.040000px;}
._d{margin-left:-12.067200px;}
._5{margin-left:-2.160864px;}
._4{margin-left:-1.093608px;}
._0{width:1.152000px;}
._c{width:12.232800px;}
._e{width:17.568000px;}
._1{width:27.720000px;}
._2{width:31.319352px;}
._3{width:34.554060px;}
._10{width:169.560000px;}
._7{width:959.040000px;}
._8{width:986.140800px;}
._a{width:1019.073600px;}
._9{width:1422.914400px;}
.fc3{color:rgb(0,0,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:4.860450px;}
.y42{bottom:4.860600px;}
.y2{bottom:57.090450px;}
.y1{bottom:78.240450px;}
.y57{bottom:115.050450px;}
.y27{bottom:127.200450px;}
.y78{bottom:128.280450px;}
.y9a{bottom:142.950450px;}
.y56{bottom:146.100450px;}
.y26{bottom:158.160450px;}
.y77{bottom:159.960450px;}
.y55{bottom:177.150450px;}
.yb0{bottom:177.600450px;}
.y25{bottom:179.850450px;}
.y99{bottom:188.220450px;}
.y76{bottom:191.460450px;}
.y54{bottom:208.200450px;}
.yaf{bottom:208.650450px;}
.y24{bottom:209.730450px;}
.y75{bottom:222.510450px;}
.y98{bottom:227.460600px;}
.y53{bottom:239.160450px;}
.y23{bottom:239.610450px;}
.yae{bottom:239.700450px;}
.y74{bottom:253.470450px;}
.y97{bottom:266.790450px;}
.y22{bottom:269.490450px;}
.y52{bottom:270.210450px;}
.yad{bottom:270.750450px;}
.y73{bottom:284.700450px;}
.y96{bottom:298.380450px;}
.y21{bottom:299.460450px;}
.y51{bottom:301.260450px;}
.yac{bottom:301.800450px;}
.y72{bottom:316.380450px;}
.y50{bottom:318.720000px;}
.y95{bottom:319.530450px;}
.y4f{bottom:323.580450px;}
.y20{bottom:329.340450px;}
.yab{bottom:332.760450px;}
.y94{bottom:340.590450px;}
.y4e{bottom:345.270450px;}
.y71{bottom:348.060450px;}
.y1f{bottom:359.220450px;}
.y93{bottom:361.740450px;}
.yaa{bottom:363.900450px;}
.y4d{bottom:366.150450px;}
.y70{bottom:379.650450px;}
.y92{bottom:382.800450px;}
.y4c{bottom:387.030450px;}
.y1e{bottom:389.100450px;}
.ya9{bottom:394.950450px;}
.y91{bottom:403.950600px;}
.y4b{bottom:408.720450px;}
.y6f{bottom:411.150450px;}
.y1d{bottom:419.070450px;}
.y4a{bottom:424.740000px;}
.y90{bottom:425.010450px;}
.ya8{bottom:426.000450px;}
.y49{bottom:429.600450px;}
.y6e{bottom:442.200450px;}
.y8f{bottom:446.160450px;}
.y1c{bottom:448.950450px;}
.y46{bottom:451.290450px;}
.y48{bottom:451.290600px;}
.ya7{bottom:457.050450px;}
.y8e{bottom:467.220450px;}
.y47{bottom:467.310000px;}
.y45{bottom:472.170450px;}
.y6d{bottom:473.250450px;}
.y1b{bottom:478.830450px;}
.ya6{bottom:488.100450px;}
.y8d{bottom:488.370600px;}
.y44{bottom:489.000000px;}
.y43{bottom:493.860600px;}
.y6c{bottom:504.300450px;}
.y8c{bottom:509.430600px;}
.y41{bottom:510.600000px;}
.y40{bottom:515.460600px;}
.ya5{bottom:519.060450px;}
.y1a{bottom:519.150450px;}
.y8b{bottom:530.490450px;}
.y3e{bottom:532.290000px;}
.y3d{bottom:537.150450px;}
.y6b{bottom:539.400450px;}
.ya4{bottom:550.200450px;}
.y19{bottom:550.560450px;}
.y8a{bottom:551.640450px;}
.y3c{bottom:568.200450px;}
.y89{bottom:572.700450px;}
.y6a{bottom:577.920450px;}
.ya3{bottom:581.250450px;}
.y18{bottom:581.880450px;}
.y88{bottom:593.850450px;}
.y3b{bottom:599.250450px;}
.y69{bottom:612.300450px;}
.y17{bottom:613.200450px;}
.y87{bottom:614.910450px;}
.y3a{bottom:629.037570px;}
.y16{bottom:634.170450px;}
.y86{bottom:636.060450px;}
.y68{bottom:643.350450px;}
.y85{bottom:657.120450px;}
.y39{bottom:657.477966px;}
.y15{bottom:664.050450px;}
.y67{bottom:674.310450px;}
.ya2{bottom:674.400450px;}
.y84{bottom:678.270450px;}
.y38{bottom:686.007300px;}
.y14{bottom:695.190450px;}
.y83{bottom:699.330450px;}
.y66{bottom:705.360450px;}
.ya1{bottom:705.450450px;}
.y37{bottom:714.447696px;}
.y82{bottom:720.480450px;}
.y13{bottom:726.240450px;}
.y65{bottom:736.410450px;}
.ya0{bottom:736.500450px;}
.y81{bottom:742.350450px;}
.y36{bottom:742.888092px;}
.y12{bottom:757.290450px;}
.y80{bottom:766.470450px;}
.y64{bottom:767.460450px;}
.y9f{bottom:767.550450px;}
.y35{bottom:771.328488px;}
.y11{bottom:778.260450px;}
.y7f{bottom:789.960450px;}
.y63{bottom:798.510450px;}
.y10{bottom:799.140450px;}
.y34{bottom:799.768884px;}
.yf{bottom:820.020450px;}
.y7e{bottom:823.620450px;}
.y33{bottom:828.298218px;}
.y62{bottom:829.560450px;}
.y32{bottom:856.738614px;}
.ye{bottom:859.350450px;}
.y61{bottom:860.610450px;}
.y7d{bottom:869.340450px;}
.y31{bottom:885.179010px;}
.yd{bottom:890.400450px;}
.y60{bottom:891.660450px;}
.y30{bottom:913.619406px;}
.y7c{bottom:913.620450px;}
.yc{bottom:921.450450px;}
.y5f{bottom:922.710450px;}
.y2f{bottom:942.148740px;}
.yb{bottom:942.240450px;}
.y7b{bottom:943.770450px;}
.y9e{bottom:953.670450px;}
.y5e{bottom:953.760450px;}
.ya{bottom:962.940450px;}
.y2e{bottom:970.589136px;}
.y7a{bottom:984.360450px;}
.y9d{bottom:984.720450px;}
.y5d{bottom:984.810450px;}
.y9{bottom:996.150738px;}
.y2d{bottom:999.029532px;}
.y9c{bottom:1015.770450px;}
.y5c{bottom:1015.860450px;}
.y2c{bottom:1027.469928px;}
.y8{bottom:1032.420450px;}
.y5b{bottom:1046.910450px;}
.y2b{bottom:1055.910324px;}
.y7{bottom:1056.000450px;}
.y6{bottom:1076.700450px;}
.y79{bottom:1077.870450px;}
.y5a{bottom:1077.960450px;}
.y2a{bottom:1084.439658px;}
.y5{bottom:1097.400450px;}
.y59{bottom:1109.010450px;}
.y29{bottom:1112.880054px;}
.y4{bottom:1118.550450px;}
.y3{bottom:1139.610450px;}
.y9b{bottom:1139.970450px;}
.y58{bottom:1140.060450px;}
.y28{bottom:1141.320450px;}
.h6{height:20.880000px;}
.h1{height:50.695312px;}
.h9{height:59.060039px;}
.h5{height:68.710781px;}
.ha{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:76.824000px;}
.h8{height:82.323633px;}
.h3{height:87.484219px;}
.h7{height:160.344000px;}
.h0{height:1263.000000px;}
.w3{width:5.400000px;}
.w4{width:8.550000px;}
.w2{width:9.450000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x5{left:154.620000px;}
.x6{left:158.040000px;}
.x7{left:181.620000px;}
.x4{left:327.510000px;}
.x10{left:406.080000px;}
.xc{left:423.810000px;}
.x11{left:428.760000px;}
.x1{left:441.270000px;}
.x3{left:446.310000px;}
.xd{left:575.910000px;}
.x9{left:594.810000px;}
.xa{left:600.210000px;}
.x8{left:746.820000px;}
.xb{left:753.750000px;}
.xe{left:778.950000px;}
.xf{left:798.120000px;}
.x12{left:815.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:74.240000pt;}
.ls13{letter-spacing:-0.140800pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051200pt;}
.ls6{letter-spacing:-0.044800pt;}
.lsb{letter-spacing:-0.038400pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.025600pt;}
.lsc{letter-spacing:-0.019200pt;}
.lsa{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.006400pt;}
.ls1c{letter-spacing:0.007456pt;}
.ls2{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.019200pt;}
.ls1e{letter-spacing:0.022368pt;}
.ls3{letter-spacing:0.025600pt;}
.ls1b{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.038400pt;}
.ls23{letter-spacing:0.051200pt;}
.ls21{letter-spacing:0.052192pt;}
.ls1f{letter-spacing:0.057600pt;}
.ls17{letter-spacing:0.058560pt;}
.ls7{letter-spacing:0.059648pt;}
.ls18{letter-spacing:0.064416pt;}
.ls15{letter-spacing:0.070272pt;}
.ls1a{letter-spacing:0.076128pt;}
.ls19{letter-spacing:0.081984pt;}
.ls4{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087840pt;}
.ls11{letter-spacing:0.089600pt;}
.ls1d{letter-spacing:0.111840pt;}
.ls22{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.140800pt;}
.ls12{letter-spacing:0.179200pt;}
.ls0{letter-spacing:48.768000pt;}
.ws44{word-spacing:-74.582368pt;}
.ws47{word-spacing:-64.083200pt;}
.ws39{word-spacing:-64.057600pt;}
.ws48{word-spacing:-64.051200pt;}
.ws46{word-spacing:-64.038400pt;}
.ws3a{word-spacing:-64.032000pt;}
.ws45{word-spacing:-64.025600pt;}
.ws3b{word-spacing:-64.019200pt;}
.ws37{word-spacing:-64.012800pt;}
.ws38{word-spacing:-64.006400pt;}
.ws0{word-spacing:-64.000000pt;}
.ws36{word-spacing:-63.993600pt;}
.ws49{word-spacing:-63.974400pt;}
.ws1{word-spacing:-19.212800pt;}
.ws43{word-spacing:-18.699648pt;}
.ws42{word-spacing:-10.732800pt;}
.ws4a{word-spacing:-10.700800pt;}
.ws17{word-spacing:-0.172800pt;}
.ws1b{word-spacing:-0.108800pt;}
.wse{word-spacing:-0.102400pt;}
.ws34{word-spacing:-0.096928pt;}
.ws1a{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.083200pt;}
.ws33{word-spacing:-0.082016pt;}
.wsf{word-spacing:-0.076800pt;}
.ws35{word-spacing:-0.074560pt;}
.ws18{word-spacing:-0.070400pt;}
.ws19{word-spacing:-0.064000pt;}
.ws27{word-spacing:-0.057600pt;}
.ws28{word-spacing:-0.051200pt;}
.ws29{word-spacing:-0.032000pt;}
.ws24{word-spacing:-0.029280pt;}
.ws2e{word-spacing:-0.025600pt;}
.ws21{word-spacing:-0.023424pt;}
.ws1e{word-spacing:-0.017568pt;}
.ws22{word-spacing:-0.011712pt;}
.wsd{word-spacing:-0.006400pt;}
.ws1f{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.025600pt;}
.ws2d{word-spacing:0.038400pt;}
.ws2b{word-spacing:0.044800pt;}
.ws4{word-spacing:0.059648pt;}
.ws67{word-spacing:0.083200pt;}
.ws2c{word-spacing:0.089600pt;}
.ws66{word-spacing:0.096000pt;}
.ws65{word-spacing:0.108800pt;}
.ws3d{word-spacing:0.134400pt;}
.ws31{word-spacing:0.140800pt;}
.ws30{word-spacing:0.147200pt;}
.ws3c{word-spacing:0.153600pt;}
.ws2f{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.166400pt;}
.ws32{word-spacing:0.172800pt;}
.ws64{word-spacing:0.179200pt;}
.ws3{word-spacing:0.185600pt;}
.ws5{word-spacing:0.243200pt;}
.ws11{word-spacing:0.595200pt;}
.ws23{word-spacing:0.632448pt;}
.ws10{word-spacing:0.646400pt;}
.ws63{word-spacing:0.800000pt;}
.ws1d{word-spacing:2.857728pt;}
.ws4e{word-spacing:3.008000pt;}
.ws4d{word-spacing:3.110400pt;}
.ws20{word-spacing:5.744736pt;}
.ws4f{word-spacing:6.240000pt;}
.ws50{word-spacing:6.259200pt;}
.ws12{word-spacing:6.406400pt;}
.ws13{word-spacing:6.451200pt;}
.ws54{word-spacing:8.396800pt;}
.ws58{word-spacing:8.403200pt;}
.ws55{word-spacing:8.480000pt;}
.ws59{word-spacing:8.486400pt;}
.ws53{word-spacing:8.518400pt;}
.ws57{word-spacing:9.120000pt;}
.ws5e{word-spacing:9.132800pt;}
.ws5f{word-spacing:9.145600pt;}
.ws56{word-spacing:9.177600pt;}
.wsb{word-spacing:9.849600pt;}
.wsc{word-spacing:9.939200pt;}
.ws8{word-spacing:10.873600pt;}
.ws7{word-spacing:10.931200pt;}
.ws3f{word-spacing:11.910400pt;}
.ws3e{word-spacing:11.993600pt;}
.ws26{word-spacing:14.054400pt;}
.ws5b{word-spacing:14.220800pt;}
.ws60{word-spacing:14.227200pt;}
.ws5a{word-spacing:14.233600pt;}
.ws25{word-spacing:14.394048pt;}
.ws5d{word-spacing:17.120000pt;}
.ws62{word-spacing:17.158400pt;}
.ws61{word-spacing:17.164800pt;}
.ws6{word-spacing:24.780800pt;}
.ws41{word-spacing:24.787200pt;}
.ws40{word-spacing:24.793600pt;}
.ws15{word-spacing:27.468800pt;}
.ws14{word-spacing:27.500800pt;}
.ws4c{word-spacing:27.974400pt;}
.wsa{word-spacing:29.440000pt;}
.ws9{word-spacing:29.555200pt;}
.ws4b{word-spacing:30.387200pt;}
.ws51{word-spacing:31.859200pt;}
.ws52{word-spacing:31.865600pt;}
.ws5c{word-spacing:37.286400pt;}
._b{margin-left:-24.640000pt;}
._6{margin-left:-16.320672pt;}
._f{margin-left:-12.480000pt;}
._d{margin-left:-10.726400pt;}
._5{margin-left:-1.920768pt;}
._4{margin-left:-0.972096pt;}
._0{width:1.024000pt;}
._c{width:10.873600pt;}
._e{width:15.616000pt;}
._1{width:24.640000pt;}
._2{width:27.839424pt;}
._3{width:30.714720pt;}
._10{width:150.720000pt;}
._7{width:852.480000pt;}
._8{width:876.569600pt;}
._a{width:905.843200pt;}
._9{width:1264.812800pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:4.320400pt;}
.y42{bottom:4.320533pt;}
.y2{bottom:50.747067pt;}
.y1{bottom:69.547067pt;}
.y57{bottom:102.267067pt;}
.y27{bottom:113.067067pt;}
.y78{bottom:114.027067pt;}
.y9a{bottom:127.067067pt;}
.y56{bottom:129.867067pt;}
.y26{bottom:140.587067pt;}
.y77{bottom:142.187067pt;}
.y55{bottom:157.467067pt;}
.yb0{bottom:157.867067pt;}
.y25{bottom:159.867067pt;}
.y99{bottom:167.307067pt;}
.y76{bottom:170.187067pt;}
.y54{bottom:185.067067pt;}
.yaf{bottom:185.467067pt;}
.y24{bottom:186.427067pt;}
.y75{bottom:197.787067pt;}
.y98{bottom:202.187200pt;}
.y53{bottom:212.587067pt;}
.y23{bottom:212.987067pt;}
.yae{bottom:213.067067pt;}
.y74{bottom:225.307067pt;}
.y97{bottom:237.147067pt;}
.y22{bottom:239.547067pt;}
.y52{bottom:240.187067pt;}
.yad{bottom:240.667067pt;}
.y73{bottom:253.067067pt;}
.y96{bottom:265.227067pt;}
.y21{bottom:266.187067pt;}
.y51{bottom:267.787067pt;}
.yac{bottom:268.267067pt;}
.y72{bottom:281.227067pt;}
.y50{bottom:283.306667pt;}
.y95{bottom:284.027067pt;}
.y4f{bottom:287.627067pt;}
.y20{bottom:292.747067pt;}
.yab{bottom:295.787067pt;}
.y94{bottom:302.747067pt;}
.y4e{bottom:306.907067pt;}
.y71{bottom:309.387067pt;}
.y1f{bottom:319.307067pt;}
.y93{bottom:321.547067pt;}
.yaa{bottom:323.467067pt;}
.y4d{bottom:325.467067pt;}
.y70{bottom:337.467067pt;}
.y92{bottom:340.267067pt;}
.y4c{bottom:344.027067pt;}
.y1e{bottom:345.867067pt;}
.ya9{bottom:351.067067pt;}
.y91{bottom:359.067200pt;}
.y4b{bottom:363.307067pt;}
.y6f{bottom:365.467067pt;}
.y1d{bottom:372.507067pt;}
.y4a{bottom:377.546667pt;}
.y90{bottom:377.787067pt;}
.ya8{bottom:378.667067pt;}
.y49{bottom:381.867067pt;}
.y6e{bottom:393.067067pt;}
.y8f{bottom:396.587067pt;}
.y1c{bottom:399.067067pt;}
.y46{bottom:401.147067pt;}
.y48{bottom:401.147200pt;}
.ya7{bottom:406.267067pt;}
.y8e{bottom:415.307067pt;}
.y47{bottom:415.386667pt;}
.y45{bottom:419.707067pt;}
.y6d{bottom:420.667067pt;}
.y1b{bottom:425.627067pt;}
.ya6{bottom:433.867067pt;}
.y8d{bottom:434.107200pt;}
.y44{bottom:434.666667pt;}
.y43{bottom:438.987200pt;}
.y6c{bottom:448.267067pt;}
.y8c{bottom:452.827200pt;}
.y41{bottom:453.866667pt;}
.y40{bottom:458.187200pt;}
.ya5{bottom:461.387067pt;}
.y1a{bottom:461.467067pt;}
.y8b{bottom:471.547067pt;}
.y3e{bottom:473.146667pt;}
.y3d{bottom:477.467067pt;}
.y6b{bottom:479.467067pt;}
.ya4{bottom:489.067067pt;}
.y19{bottom:489.387067pt;}
.y8a{bottom:490.347067pt;}
.y3c{bottom:505.067067pt;}
.y89{bottom:509.067067pt;}
.y6a{bottom:513.707067pt;}
.ya3{bottom:516.667067pt;}
.y18{bottom:517.227067pt;}
.y88{bottom:527.867067pt;}
.y3b{bottom:532.667067pt;}
.y69{bottom:544.267067pt;}
.y17{bottom:545.067067pt;}
.y87{bottom:546.587067pt;}
.y3a{bottom:559.144507pt;}
.y16{bottom:563.707067pt;}
.y86{bottom:565.387067pt;}
.y68{bottom:571.867067pt;}
.y85{bottom:584.107067pt;}
.y39{bottom:584.424859pt;}
.y15{bottom:590.267067pt;}
.y67{bottom:599.387067pt;}
.ya2{bottom:599.467067pt;}
.y84{bottom:602.907067pt;}
.y38{bottom:609.784267pt;}
.y14{bottom:617.947067pt;}
.y83{bottom:621.627067pt;}
.y66{bottom:626.987067pt;}
.ya1{bottom:627.067067pt;}
.y37{bottom:635.064619pt;}
.y82{bottom:640.427067pt;}
.y13{bottom:645.547067pt;}
.y65{bottom:654.587067pt;}
.ya0{bottom:654.667067pt;}
.y81{bottom:659.867067pt;}
.y36{bottom:660.344971pt;}
.y12{bottom:673.147067pt;}
.y80{bottom:681.307067pt;}
.y64{bottom:682.187067pt;}
.y9f{bottom:682.267067pt;}
.y35{bottom:685.625323pt;}
.y11{bottom:691.787067pt;}
.y7f{bottom:702.187067pt;}
.y63{bottom:709.787067pt;}
.y10{bottom:710.347067pt;}
.y34{bottom:710.905675pt;}
.yf{bottom:728.907067pt;}
.y7e{bottom:732.107067pt;}
.y33{bottom:736.265083pt;}
.y62{bottom:737.387067pt;}
.y32{bottom:761.545435pt;}
.ye{bottom:763.867067pt;}
.y61{bottom:764.987067pt;}
.y7d{bottom:772.747067pt;}
.y31{bottom:786.825787pt;}
.yd{bottom:791.467067pt;}
.y60{bottom:792.587067pt;}
.y30{bottom:812.106139pt;}
.y7c{bottom:812.107067pt;}
.yc{bottom:819.067067pt;}
.y5f{bottom:820.187067pt;}
.y2f{bottom:837.465547pt;}
.yb{bottom:837.547067pt;}
.y7b{bottom:838.907067pt;}
.y9e{bottom:847.707067pt;}
.y5e{bottom:847.787067pt;}
.ya{bottom:855.947067pt;}
.y2e{bottom:862.745899pt;}
.y7a{bottom:874.987067pt;}
.y9d{bottom:875.307067pt;}
.y5d{bottom:875.387067pt;}
.y9{bottom:885.467323pt;}
.y2d{bottom:888.026251pt;}
.y9c{bottom:902.907067pt;}
.y5c{bottom:902.987067pt;}
.y2c{bottom:913.306603pt;}
.y8{bottom:917.707067pt;}
.y5b{bottom:930.587067pt;}
.y2b{bottom:938.586955pt;}
.y7{bottom:938.667067pt;}
.y6{bottom:957.067067pt;}
.y79{bottom:958.107067pt;}
.y5a{bottom:958.187067pt;}
.y2a{bottom:963.946363pt;}
.y5{bottom:975.467067pt;}
.y59{bottom:985.787067pt;}
.y29{bottom:989.226715pt;}
.y4{bottom:994.267067pt;}
.y3{bottom:1012.987067pt;}
.y9b{bottom:1013.307067pt;}
.y58{bottom:1013.387067pt;}
.y28{bottom:1014.507067pt;}
.h6{height:18.560000pt;}
.h1{height:45.062500pt;}
.h9{height:52.497812pt;}
.h5{height:61.076250pt;}
.ha{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:68.288000pt;}
.h8{height:73.176562pt;}
.h3{height:77.763750pt;}
.h7{height:142.528000pt;}
.h0{height:1122.666667pt;}
.w3{width:4.800000pt;}
.w4{width:7.600000pt;}
.w2{width:8.400000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x5{left:137.440000pt;}
.x6{left:140.480000pt;}
.x7{left:161.440000pt;}
.x4{left:291.120000pt;}
.x10{left:360.960000pt;}
.xc{left:376.720000pt;}
.x11{left:381.120000pt;}
.x1{left:392.240000pt;}
.x3{left:396.720000pt;}
.xd{left:511.920000pt;}
.x9{left:528.720000pt;}
.xa{left:533.520000pt;}
.x8{left:663.840000pt;}
.xb{left:670.000000pt;}
.xe{left:692.400000pt;}
.xf{left:709.440000pt;}
.x12{left:724.960000pt;}
}




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