
    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_d476b8ff409db7ae63e8fb49.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_8f41086ff4d121918f8ab774.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_20b20d275e155633a016d47c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_cc76b2d20f96ff6f7e62387b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_8836ab15e34aacec45abc28a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_141d2e5dbc0704acaac33799.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.974000;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_85f9cf60abc74442e8f12329.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.372000;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;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.mf{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:11.955150px;}
.ls0{letter-spacing:13.288205px;}
.ls5{letter-spacing:21.698543px;}
.ls3{letter-spacing:21.937645px;}
.ls4{letter-spacing:23.910240px;}
.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;}
}
.ws1c{word-spacing:-14.943900px;}
.ws26{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws14{word-spacing:-3.227882px;}
.ws1{word-spacing:-2.914050px;}
.ws22{word-spacing:-2.104106px;}
.ws13{word-spacing:-1.315063px;}
.ws20{word-spacing:-0.537980px;}
.ws12{word-spacing:-0.478205px;}
.wsb{word-spacing:-0.298878px;}
.ws5{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.191282px;}
.ws10{word-spacing:-0.179327px;}
.ws3{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.143462px;}
.wsc{word-spacing:-0.119551px;}
.ws0{word-spacing:-0.086077px;}
.wsd{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.053798px;}
.ws7{word-spacing:0.059776px;}
.ws1d{word-spacing:0.107597px;}
.wse{word-spacing:0.119551px;}
.wsa{word-spacing:0.179327px;}
.ws21{word-spacing:0.191282px;}
.ws25{word-spacing:0.215194px;}
.ws9{word-spacing:0.239102px;}
.ws19{word-spacing:0.268992px;}
.wsf{word-spacing:0.298878px;}
.ws17{word-spacing:0.358654px;}
.ws1a{word-spacing:0.430387px;}
.ws1f{word-spacing:0.956410px;}
.ws1e{word-spacing:1.673717px;}
.ws16{word-spacing:1.853044px;}
.ws11{word-spacing:1.912819px;}
.ws15{word-spacing:3.885414px;}
.ws28{word-spacing:4.973342px;}
.ws24{word-spacing:5.260266px;}
.ws23{word-spacing:9.803223px;}
.ws18{word-spacing:11.907329px;}
.ws6{word-spacing:14.884124px;}
.ws8{word-spacing:15.900310px;}
.ws4{word-spacing:16.300915px;}
.ws29{word-spacing:16.880672px;}
._0{margin-left:-5.078555px;}
._3{margin-left:-3.174106px;}
._2{margin-left:-1.344960px;}
._4{width:1.022170px;}
._9{width:2.151936px;}
._d{width:12.499160px;}
._6{width:13.927715px;}
._1{width:16.363650px;}
._f{width:17.502340px;}
._b{width:18.602251px;}
._c{width:23.470910px;}
._8{width:27.329587px;}
._e{width:29.170566px;}
._10{width:35.913271px;}
._5{width:59.775600px;}
._7{width:1795.265884px;}
._a{width:1840.181143px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y58{bottom:154.609500px;}
.y42{bottom:157.029000px;}
.y62{bottom:163.555500px;}
.y2d{bottom:168.199500px;}
.y57{bottom:169.554000px;}
.y41{bottom:174.961500px;}
.y61{bottom:178.500000px;}
.y56{bottom:184.497000px;}
.y2c{bottom:184.638000px;}
.y40{bottom:192.894000px;}
.y60{bottom:193.443000px;}
.y55{bottom:199.441500px;}
.y2b{bottom:201.076500px;}
.y5f{bottom:208.387500px;}
.y3f{bottom:210.826500px;}
.y54{bottom:214.386000px;}
.y5e{bottom:223.332000px;}
.y3e{bottom:228.759000px;}
.y53{bottom:229.329000px;}
.y5d{bottom:238.275000px;}
.y52{bottom:244.273500px;}
.y3d{bottom:246.693000px;}
.y51{bottom:259.218000px;}
.y3c{bottom:264.625500px;}
.y2a{bottom:264.943500px;}
.y50{bottom:274.161000px;}
.y5c{bottom:280.567500px;}
.y3b{bottom:282.558000px;}
.y4f{bottom:289.105500px;}
.y5b{bottom:297.004500px;}
.y29{bottom:297.126000px;}
.y3a{bottom:300.490500px;}
.y4e{bottom:308.532000px;}
.y28{bottom:315.058500px;}
.y39{bottom:318.423000px;}
.y38{bottom:336.357000px;}
.y27{bottom:337.474500px;}
.y4d{bottom:344.137500px;}
.y37{bottom:354.289500px;}
.y4c{bottom:362.070000px;}
.y26{bottom:370.372500px;}
.y36{bottom:372.222000px;}
.y4b{bottom:380.002500px;}
.y25{bottom:388.305000px;}
.y4a{bottom:397.936500px;}
.y35{bottom:402.807000px;}
.y24{bottom:406.237500px;}
.y49{bottom:415.869000px;}
.y34{bottom:420.739500px;}
.y23{bottom:424.170000px;}
.y48{bottom:433.801500px;}
.y22{bottom:442.102500px;}
.y47{bottom:451.734000px;}
.y21{bottom:460.036500px;}
.y46{bottom:469.666500px;}
.y20{bottom:477.969000px;}
.y45{bottom:492.082500px;}
.y1f{bottom:495.901500px;}
.y33{bottom:499.273500px;}
.y1e{bottom:513.834000px;}
.y32{bottom:515.712000px;}
.y1d{bottom:531.766500px;}
.y31{bottom:532.150500px;}
.y30{bottom:548.589000px;}
.y44{bottom:551.265000px;}
.y1c{bottom:554.182500px;}
.y2f{bottom:565.027500px;}
.y43{bottom:567.703500px;}
.y1b{bottom:587.080500px;}
.y1a{bottom:605.013000px;}
.y19{bottom:622.945500px;}
.y18{bottom:640.879500px;}
.y17{bottom:658.812000px;}
.y16{bottom:676.744500px;}
.y15{bottom:694.677000px;}
.y14{bottom:712.609500px;}
.y5a{bottom:719.632500px;}
.y13{bottom:730.542000px;}
.y59{bottom:736.071000px;}
.y12{bottom:748.476000px;}
.y11{bottom:766.408500px;}
.y10{bottom:784.341000px;}
.yf{bottom:802.273500px;}
.ye{bottom:824.689500px;}
.yd{bottom:857.587500px;}
.yc{bottom:875.520000px;}
.yb{bottom:893.452500px;}
.ya{bottom:911.385000px;}
.y9{bottom:929.319000px;}
.y8{bottom:947.251500px;}
.y7{bottom:969.667500px;}
.y6{bottom:1006.518000px;}
.y5{bottom:1032.415500px;}
.y4{bottom:1048.854000px;}
.y3{bottom:1065.292500px;}
.y2{bottom:1091.629500px;}
.y1{bottom:1121.565000px;}
.y2e{bottom:1161.216000px;}
.h8{height:33.856985px;}
.h7{height:35.195962px;}
.h9{height:35.721988px;}
.h4{height:39.595622px;}
.ha{height:40.187405px;}
.h5{height:41.723369px;}
.h6{height:43.994842px;}
.h3{height:48.894586px;}
.h2{height:60.081886px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:80.697000px;}
.x7{left:86.256000px;}
.x2{left:95.641500px;}
.x5{left:103.905000px;}
.x8{left:106.305000px;}
.x6{left:116.055000px;}
.x9{left:128.724000px;}
.xa{left:135.675000px;}
.x3{left:580.755000px;}
.x4{left:587.703000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:10.626800pt;}
.ls0{letter-spacing:11.811738pt;}
.ls5{letter-spacing:19.287594pt;}
.ls3{letter-spacing:19.500129pt;}
.ls4{letter-spacing:21.253547pt;}
.ws1c{word-spacing:-13.283467pt;}
.ws26{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws14{word-spacing:-2.869229pt;}
.ws1{word-spacing:-2.590267pt;}
.ws22{word-spacing:-1.870317pt;}
.ws13{word-spacing:-1.168945pt;}
.ws20{word-spacing:-0.478205pt;}
.ws12{word-spacing:-0.425071pt;}
.wsb{word-spacing:-0.265669pt;}
.ws5{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.170029pt;}
.ws10{word-spacing:-0.159402pt;}
.ws3{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.127522pt;}
.wsc{word-spacing:-0.106268pt;}
.ws0{word-spacing:-0.076513pt;}
.wsd{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.047821pt;}
.ws7{word-spacing:0.053134pt;}
.ws1d{word-spacing:0.095642pt;}
.wse{word-spacing:0.106268pt;}
.wsa{word-spacing:0.159402pt;}
.ws21{word-spacing:0.170029pt;}
.ws25{word-spacing:0.191283pt;}
.ws9{word-spacing:0.212535pt;}
.ws19{word-spacing:0.239104pt;}
.wsf{word-spacing:0.265669pt;}
.ws17{word-spacing:0.318803pt;}
.ws1a{word-spacing:0.382566pt;}
.ws1f{word-spacing:0.850142pt;}
.ws1e{word-spacing:1.487748pt;}
.ws16{word-spacing:1.647150pt;}
.ws11{word-spacing:1.700284pt;}
.ws15{word-spacing:3.453701pt;}
.ws28{word-spacing:4.420749pt;}
.ws24{word-spacing:4.675792pt;}
.ws23{word-spacing:8.713976pt;}
.ws18{word-spacing:10.584293pt;}
.ws6{word-spacing:13.230333pt;}
.ws8{word-spacing:14.133609pt;}
.ws4{word-spacing:14.489702pt;}
.ws29{word-spacing:15.005042pt;}
._0{margin-left:-4.514271pt;}
._3{margin-left:-2.821427pt;}
._2{margin-left:-1.195520pt;}
._4{width:0.908595pt;}
._9{width:1.912832pt;}
._d{width:11.110365pt;}
._6{width:12.380191pt;}
._1{width:14.545467pt;}
._f{width:15.557635pt;}
._b{width:16.535334pt;}
._c{width:20.863031pt;}
._8{width:24.292966pt;}
._e{width:25.929392pt;}
._10{width:31.922907pt;}
._5{width:53.133867pt;}
._7{width:1595.791897pt;}
._a{width:1635.716571pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:137.430667pt;}
.y42{bottom:139.581333pt;}
.y62{bottom:145.382667pt;}
.y2d{bottom:149.510667pt;}
.y57{bottom:150.714667pt;}
.y41{bottom:155.521333pt;}
.y61{bottom:158.666667pt;}
.y56{bottom:163.997333pt;}
.y2c{bottom:164.122667pt;}
.y40{bottom:171.461333pt;}
.y60{bottom:171.949333pt;}
.y55{bottom:177.281333pt;}
.y2b{bottom:178.734667pt;}
.y5f{bottom:185.233333pt;}
.y3f{bottom:187.401333pt;}
.y54{bottom:190.565333pt;}
.y5e{bottom:198.517333pt;}
.y3e{bottom:203.341333pt;}
.y53{bottom:203.848000pt;}
.y5d{bottom:211.800000pt;}
.y52{bottom:217.132000pt;}
.y3d{bottom:219.282667pt;}
.y51{bottom:230.416000pt;}
.y3c{bottom:235.222667pt;}
.y2a{bottom:235.505333pt;}
.y50{bottom:243.698667pt;}
.y5c{bottom:249.393333pt;}
.y3b{bottom:251.162667pt;}
.y4f{bottom:256.982667pt;}
.y5b{bottom:264.004000pt;}
.y29{bottom:264.112000pt;}
.y3a{bottom:267.102667pt;}
.y4e{bottom:274.250667pt;}
.y28{bottom:280.052000pt;}
.y39{bottom:283.042667pt;}
.y38{bottom:298.984000pt;}
.y27{bottom:299.977333pt;}
.y4d{bottom:305.900000pt;}
.y37{bottom:314.924000pt;}
.y4c{bottom:321.840000pt;}
.y26{bottom:329.220000pt;}
.y36{bottom:330.864000pt;}
.y4b{bottom:337.780000pt;}
.y25{bottom:345.160000pt;}
.y4a{bottom:353.721333pt;}
.y35{bottom:358.050667pt;}
.y24{bottom:361.100000pt;}
.y49{bottom:369.661333pt;}
.y34{bottom:373.990667pt;}
.y23{bottom:377.040000pt;}
.y48{bottom:385.601333pt;}
.y22{bottom:392.980000pt;}
.y47{bottom:401.541333pt;}
.y21{bottom:408.921333pt;}
.y46{bottom:417.481333pt;}
.y20{bottom:424.861333pt;}
.y45{bottom:437.406667pt;}
.y1f{bottom:440.801333pt;}
.y33{bottom:443.798667pt;}
.y1e{bottom:456.741333pt;}
.y32{bottom:458.410667pt;}
.y1d{bottom:472.681333pt;}
.y31{bottom:473.022667pt;}
.y30{bottom:487.634667pt;}
.y44{bottom:490.013333pt;}
.y1c{bottom:492.606667pt;}
.y2f{bottom:502.246667pt;}
.y43{bottom:504.625333pt;}
.y1b{bottom:521.849333pt;}
.y1a{bottom:537.789333pt;}
.y19{bottom:553.729333pt;}
.y18{bottom:569.670667pt;}
.y17{bottom:585.610667pt;}
.y16{bottom:601.550667pt;}
.y15{bottom:617.490667pt;}
.y14{bottom:633.430667pt;}
.y5a{bottom:639.673333pt;}
.y13{bottom:649.370667pt;}
.y59{bottom:654.285333pt;}
.y12{bottom:665.312000pt;}
.y11{bottom:681.252000pt;}
.y10{bottom:697.192000pt;}
.yf{bottom:713.132000pt;}
.ye{bottom:733.057333pt;}
.yd{bottom:762.300000pt;}
.yc{bottom:778.240000pt;}
.yb{bottom:794.180000pt;}
.ya{bottom:810.120000pt;}
.y9{bottom:826.061333pt;}
.y8{bottom:842.001333pt;}
.y7{bottom:861.926667pt;}
.y6{bottom:894.682667pt;}
.y5{bottom:917.702667pt;}
.y4{bottom:932.314667pt;}
.y3{bottom:946.926667pt;}
.y2{bottom:970.337333pt;}
.y1{bottom:996.946667pt;}
.y2e{bottom:1032.192000pt;}
.h8{height:30.095098pt;}
.h7{height:31.285299pt;}
.h9{height:31.752878pt;}
.h4{height:35.196109pt;}
.ha{height:35.722138pt;}
.h5{height:37.087439pt;}
.h6{height:39.106526pt;}
.h3{height:43.461854pt;}
.h2{height:53.406121pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.730667pt;}
.x7{left:76.672000pt;}
.x2{left:85.014667pt;}
.x5{left:92.360000pt;}
.x8{left:94.493333pt;}
.x6{left:103.160000pt;}
.x9{left:114.421333pt;}
.xa{left:120.600000pt;}
.x3{left:516.226667pt;}
.x4{left:522.402667pt;}
}




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