
    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_2b63c608f94d8c4bfe3d022d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_9497d6c874a69163b6770630.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_554e776ce17fc528c59883af.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_69f0c4293c80231b7ad74766.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_0d51f4f881d69a11cdc2be61.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_653f53a28ea90ad40b47eb9c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_2e456f0c64a59f29f280a1f5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_2699cf0adf290988a2dfdca3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_7465fc50a42670bafc40ca5d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_68c8d2f8061ca45fbbff5506.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895190;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:ffb;src:url('chunks/assets/font_7c3b045cee07dd726c1621c2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.550000;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:ffc;src:url('chunks/assets/font_67ef73c1b4a110efc2284006.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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:ffd;src:url('chunks/assets/font_6b60365bab15cefe03f64885.woff')format("woff");}.ffd{font-family:ffd;line-height:0.918000;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:ffe;src:url('chunks/assets/font_fbb6b862b9f023c5650a01b1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.738000;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:fff;src:url('chunks/assets/font_d8fbc81beaf97ffa31f3110a.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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);}
.m13{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mc{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);}
.m16{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m15{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);}
.m12{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);}
.m4{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);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,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);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m8{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);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m18{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);}
.m3{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);}
.m19{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);}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.v2{vertical-align:31.236000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002001px;}
.ls6{letter-spacing:0.007349px;}
.ls5{letter-spacing:4.868823px;}
.ls7{letter-spacing:21.272745px;}
.ls2{letter-spacing:21.600018px;}
.ls3{letter-spacing:21.861836px;}
.ls1{letter-spacing:28.734569px;}
.ls8{letter-spacing:32.727300px;}
.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:-65.454600px;}
.ws40{word-spacing:-48.418425px;}
.ws20{word-spacing:-42.637126px;}
.wsa{word-spacing:-37.636395px;}
.ws2f{word-spacing:-33.453846px;}
.ws9{word-spacing:-32.727300px;}
.ws4{word-spacing:-16.139475px;}
.ws16{word-spacing:-15.120013px;}
.ws3f{word-spacing:-14.072739px;}
.ws33{word-spacing:-14.007284px;}
.ws17{word-spacing:-12.829102px;}
.wsf{word-spacing:-12.567283px;}
.ws24{word-spacing:-12.370919px;}
.ws2e{word-spacing:-12.240010px;}
.ws3e{word-spacing:-11.978192px;}
.ws2d{word-spacing:-11.781828px;}
.ws12{word-spacing:-11.520010px;}
.ws31{word-spacing:-11.454555px;}
.ws26{word-spacing:-11.389100px;}
.ws2b{word-spacing:-11.264737px;}
.ws19{word-spacing:-11.192737px;}
.wsd{word-spacing:-11.127282px;}
.ws1a{word-spacing:-11.061827px;}
.ws1e{word-spacing:-10.996373px;}
.wsc{word-spacing:-10.930918px;}
.ws10{word-spacing:-10.865464px;}
.wsb{word-spacing:-10.734554px;}
.ws6{word-spacing:-10.669100px;}
.ws32{word-spacing:-10.603645px;}
.ws5{word-spacing:-10.538191px;}
.ws29{word-spacing:-10.472736px;}
.ws39{word-spacing:-10.341827px;}
.ws35{word-spacing:-10.282918px;}
.ws1b{word-spacing:-10.217463px;}
.ws1d{word-spacing:-10.152008px;}
.ws2a{word-spacing:-10.145463px;}
.ws3{word-spacing:-10.086554px;}
.ws2{word-spacing:-10.021099px;}
.ws37{word-spacing:-9.759281px;}
.ws23{word-spacing:-9.687281px;}
.ws38{word-spacing:-9.628372px;}
.wse{word-spacing:-9.366553px;}
.ws3b{word-spacing:-9.360008px;}
.ws14{word-spacing:-9.163644px;}
.ws8{word-spacing:-8.836371px;}
.ws30{word-spacing:-8.443643px;}
.ws15{word-spacing:-7.985461px;}
.ws3a{word-spacing:-7.854552px;}
.ws25{word-spacing:-7.359601px;}
.ws34{word-spacing:-7.200006px;}
.ws27{word-spacing:-7.075642px;}
.ws3c{word-spacing:-6.610915px;}
.ws22{word-spacing:-6.290187px;}
.ws2c{word-spacing:-6.283642px;}
.ws36{word-spacing:-5.832005px;}
.ws7{word-spacing:-5.046550px;}
.ws42{word-spacing:-3.927276px;}
.ws41{word-spacing:-3.665458px;}
.ws3d{word-spacing:-2.952002px;}
.ws1f{word-spacing:-0.086077px;}
.ws28{word-spacing:-0.065455px;}
.ws13{word-spacing:-0.047821px;}
.ws11{word-spacing:0.000000px;}
.ws21{word-spacing:14.661830px;}
.ws1{word-spacing:23.312640px;}
.ws18{word-spacing:26.770931px;}
.ws0{word-spacing:31.091012px;}
._d{margin-left:-10.930918px;}
._8{margin-left:-8.272933px;}
._2{margin-left:-5.881958px;}
._3{margin-left:-3.952929px;}
._0{margin-left:-2.788895px;}
._7{margin-left:-1.448957px;}
._9{width:1.194880px;}
._1{width:2.788895px;}
._5{width:5.589294px;}
._c{width:20.854364px;}
._a{width:22.818002px;}
._11{width:25.792875px;}
._f{width:28.119825px;}
._6{width:29.585479px;}
._4{width:30.658406px;}
._12{width:31.680026px;}
._10{width:32.727300px;}
._13{width:35.525150px;}
._b{width:38.151076px;}
._14{width:41.754842px;}
._e{width:43.146690px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y70{bottom:108.000000px;}
.y6f{bottom:128.323500px;}
.y49{bottom:134.857500px;}
.y48{bottom:155.182500px;}
.y23{bottom:159.883500px;}
.y6e{bottom:164.851500px;}
.y22{bottom:180.207000px;}
.y47{bottom:185.218500px;}
.y21{bottom:200.530500px;}
.y46{bottom:205.543500px;}
.y20{bottom:220.854000px;}
.y6d{bottom:234.015000px;}
.y45{bottom:242.071500px;}
.y1f{bottom:247.156500px;}
.y6c{bottom:254.338500px;}
.y1e{bottom:267.480000px;}
.y6b{bottom:274.663500px;}
.y1d{bottom:287.803500px;}
.y44{bottom:293.629500px;}
.y6a{bottom:294.987000px;}
.y43{bottom:313.953000px;}
.y1c{bottom:317.841000px;}
.y69{bottom:331.515000px;}
.y42{bottom:334.276500px;}
.y1b{bottom:338.164500px;}
.y41{bottom:354.600000px;}
.y19{bottom:358.488000px;}
.y1a{bottom:364.426500px;}
.y40{bottom:374.923500px;}
.y18{bottom:384.789000px;}
.y68{bottom:409.939500px;}
.y3f{bottom:411.451500px;}
.y17{bottom:421.318500px;}
.y67{bottom:430.263000px;}
.y66{bottom:450.588000px;}
.y3e{bottom:463.009500px;}
.y65{bottom:470.911500px;}
.y16{bottom:472.875000px;}
.y3d{bottom:483.334500px;}
.y64{bottom:491.235000px;}
.y15{bottom:493.200000px;}
.y3b{bottom:503.658000px;}
.y3c{bottom:509.596500px;}
.y63{bottom:511.558500px;}
.y14{bottom:513.523500px;}
.y3a{bottom:523.981500px;}
.y62{bottom:531.882000px;}
.y13{bottom:539.824500px;}
.y39{bottom:544.305000px;}
.y61{bottom:552.207000px;}
.y12{bottom:569.862000px;}
.y60{bottom:572.530500px;}
.y38{bottom:580.833000px;}
.y11{bottom:590.185500px;}
.y5f{bottom:592.854000px;}
.y5e{bottom:613.177500px;}
.y10{bottom:620.223000px;}
.y37{bottom:632.391000px;}
.y5d{bottom:633.501000px;}
.yf{bottom:640.546500px;}
.y36{bottom:658.692000px;}
.y5c{bottom:662.659500px;}
.ye{bottom:670.584000px;}
.y5a{bottom:682.983000px;}
.y35{bottom:688.729500px;}
.y5b{bottom:688.921500px;}
.yd{bottom:690.907500px;}
.y59{bottom:703.306500px;}
.yc{bottom:717.210000px;}
.y34{bottom:718.767000px;}
.y58{bottom:723.630000px;}
.yb{bottom:737.533500px;}
.y33{bottom:748.804500px;}
.ya{bottom:757.857000px;}
.y57{bottom:761.622000px;}
.y32{bottom:775.105500px;}
.y9{bottom:778.180500px;}
.y56{bottom:781.947000px;}
.y55{bottom:802.270500px;}
.y31{bottom:811.633500px;}
.y8{bottom:814.708500px;}
.y54{bottom:822.594000px;}
.y53{bottom:842.917500px;}
.y30{bottom:863.191500px;}
.y7{bottom:866.266500px;}
.y52{bottom:879.445500px;}
.y2f{bottom:883.515000px;}
.y6{bottom:886.590000px;}
.y2e{bottom:903.840000px;}
.y5{bottom:906.915000px;}
.y2d{bottom:924.163500px;}
.y51{bottom:930.940500px;}
.y2c{bottom:944.487000px;}
.y50{bottom:961.659000px;}
.y4{bottom:969.717000px;}
.y2b{bottom:981.015000px;}
.y4f{bottom:981.984000px;}
.y3{bottom:1006.404000px;}
.y2a{bottom:1007.914500px;}
.y4e{bottom:1011.954000px;}
.y4d{bottom:1041.925500px;}
.y2{bottom:1051.870500px;}
.y29{bottom:1059.472500px;}
.y73{bottom:1059.492000px;}
.y4c{bottom:1071.897000px;}
.y1{bottom:1072.792500px;}
.y28{bottom:1079.796000px;}
.y72{bottom:1086.541500px;}
.y26{bottom:1100.119500px;}
.y4b{bottom:1101.868500px;}
.y27{bottom:1106.058000px;}
.y71{bottom:1118.073000px;}
.y25{bottom:1136.647500px;}
.y4a{bottom:1138.396500px;}
.hb{height:31.800699px;}
.h7{height:33.187496px;}
.h8{height:34.363665px;}
.h9{height:45.425492px;}
.h4{height:49.090950px;}
.h3{height:51.216077px;}
.h6{height:55.554699px;}
.h5{height:64.557900px;}
.ha{height:72.720266px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:104.973000px;}
.x2a{left:106.086000px;}
.x8{left:107.166000px;}
.x6{left:108.757500px;}
.x5{left:114.442500px;}
.x2b{left:123.090000px;}
.x1{left:126.910500px;}
.x9{left:127.999500px;}
.xb{left:133.404000px;}
.x13{left:143.461500px;}
.x10{left:146.994000px;}
.xa{left:148.909500px;}
.x17{left:226.015500px;}
.x18{left:239.145000px;}
.x23{left:280.087500px;}
.x2{left:285.951000px;}
.x24{left:292.815000px;}
.x28{left:298.779000px;}
.x14{left:310.923000px;}
.x29{left:316.933500px;}
.x15{left:361.596000px;}
.x1d{left:365.014500px;}
.x3{left:375.274500px;}
.x1e{left:388.860000px;}
.x21{left:391.173000px;}
.x7{left:392.286000px;}
.x4{left:395.218500px;}
.x1f{left:406.779000px;}
.x22{left:411.366000px;}
.x20{left:430.624500px;}
.x16{left:442.366500px;}
.x19{left:471.571500px;}
.x1a{left:486.601500px;}
.x1b{left:500.958000px;}
.x1c{left:514.407000px;}
.xe{left:604.929000px;}
.xf{left:623.115000px;}
.x25{left:679.858500px;}
.x26{left:693.309000px;}
.xc{left:702.277500px;}
.xd{left:709.957500px;}
.x11{left:775.173000px;}
.x12{left:783.633000px;}
@media print{
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.v2{vertical-align:27.765333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001778pt;}
.ls6{letter-spacing:0.006532pt;}
.ls5{letter-spacing:4.327842pt;}
.ls7{letter-spacing:18.909107pt;}
.ls2{letter-spacing:19.200016pt;}
.ls3{letter-spacing:19.432743pt;}
.ls1{letter-spacing:25.541839pt;}
.ls8{letter-spacing:29.090933pt;}
.ws1c{word-spacing:-58.181867pt;}
.ws40{word-spacing:-43.038600pt;}
.ws20{word-spacing:-37.899668pt;}
.wsa{word-spacing:-33.454573pt;}
.ws2f{word-spacing:-29.736752pt;}
.ws9{word-spacing:-29.090933pt;}
.ws4{word-spacing:-14.346200pt;}
.ws16{word-spacing:-13.440011pt;}
.ws3f{word-spacing:-12.509101pt;}
.ws33{word-spacing:-12.450919pt;}
.ws17{word-spacing:-11.403646pt;}
.wsf{word-spacing:-11.170918pt;}
.ws24{word-spacing:-10.996373pt;}
.ws2e{word-spacing:-10.880009pt;}
.ws3e{word-spacing:-10.647282pt;}
.ws2d{word-spacing:-10.472736pt;}
.ws12{word-spacing:-10.240009pt;}
.ws31{word-spacing:-10.181827pt;}
.ws26{word-spacing:-10.123645pt;}
.ws2b{word-spacing:-10.013099pt;}
.ws19{word-spacing:-9.949099pt;}
.wsd{word-spacing:-9.890917pt;}
.ws1a{word-spacing:-9.832735pt;}
.ws1e{word-spacing:-9.774554pt;}
.wsc{word-spacing:-9.716372pt;}
.ws10{word-spacing:-9.658190pt;}
.wsb{word-spacing:-9.541826pt;}
.ws6{word-spacing:-9.483644pt;}
.ws32{word-spacing:-9.425462pt;}
.ws5{word-spacing:-9.367281pt;}
.ws29{word-spacing:-9.309099pt;}
.ws39{word-spacing:-9.192735pt;}
.ws35{word-spacing:-9.140371pt;}
.ws1b{word-spacing:-9.082189pt;}
.ws1d{word-spacing:-9.024008pt;}
.ws2a{word-spacing:-9.018189pt;}
.ws3{word-spacing:-8.965826pt;}
.ws2{word-spacing:-8.907644pt;}
.ws37{word-spacing:-8.674916pt;}
.ws23{word-spacing:-8.610916pt;}
.ws38{word-spacing:-8.558553pt;}
.wse{word-spacing:-8.325825pt;}
.ws3b{word-spacing:-8.320007pt;}
.ws14{word-spacing:-8.145461pt;}
.ws8{word-spacing:-7.854552pt;}
.ws30{word-spacing:-7.505461pt;}
.ws15{word-spacing:-7.098188pt;}
.ws3a{word-spacing:-6.981824pt;}
.ws25{word-spacing:-6.541867pt;}
.ws34{word-spacing:-6.400005pt;}
.ws27{word-spacing:-6.289460pt;}
.ws3c{word-spacing:-5.876369pt;}
.ws22{word-spacing:-5.591277pt;}
.ws2c{word-spacing:-5.585459pt;}
.ws36{word-spacing:-5.184004pt;}
.ws7{word-spacing:-4.485822pt;}
.ws42{word-spacing:-3.490912pt;}
.ws41{word-spacing:-3.258185pt;}
.ws3d{word-spacing:-2.624002pt;}
.ws1f{word-spacing:-0.076513pt;}
.ws28{word-spacing:-0.058182pt;}
.ws13{word-spacing:-0.042507pt;}
.ws11{word-spacing:0.000000pt;}
.ws21{word-spacing:13.032738pt;}
.ws1{word-spacing:20.722347pt;}
.ws18{word-spacing:23.796383pt;}
.ws0{word-spacing:27.636455pt;}
._d{margin-left:-9.716372pt;}
._8{margin-left:-7.353718pt;}
._2{margin-left:-5.228407pt;}
._3{margin-left:-3.513715pt;}
._0{margin-left:-2.479018pt;}
._7{margin-left:-1.287962pt;}
._9{width:1.062116pt;}
._1{width:2.479018pt;}
._5{width:4.968261pt;}
._c{width:18.537213pt;}
._a{width:20.282669pt;}
._11{width:22.927000pt;}
._f{width:24.995400pt;}
._6{width:26.298204pt;}
._4{width:27.251916pt;}
._12{width:28.160023pt;}
._10{width:29.090933pt;}
._13{width:31.577911pt;}
._b{width:33.912068pt;}
._14{width:37.115415pt;}
._e{width:38.352613pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y70{bottom:96.000000pt;}
.y6f{bottom:114.065333pt;}
.y49{bottom:119.873333pt;}
.y48{bottom:137.940000pt;}
.y23{bottom:142.118667pt;}
.y6e{bottom:146.534667pt;}
.y22{bottom:160.184000pt;}
.y47{bottom:164.638667pt;}
.y21{bottom:178.249333pt;}
.y46{bottom:182.705333pt;}
.y20{bottom:196.314667pt;}
.y6d{bottom:208.013333pt;}
.y45{bottom:215.174667pt;}
.y1f{bottom:219.694667pt;}
.y6c{bottom:226.078667pt;}
.y1e{bottom:237.760000pt;}
.y6b{bottom:244.145333pt;}
.y1d{bottom:255.825333pt;}
.y44{bottom:261.004000pt;}
.y6a{bottom:262.210667pt;}
.y43{bottom:279.069333pt;}
.y1c{bottom:282.525333pt;}
.y69{bottom:294.680000pt;}
.y42{bottom:297.134667pt;}
.y1b{bottom:300.590667pt;}
.y41{bottom:315.200000pt;}
.y19{bottom:318.656000pt;}
.y1a{bottom:323.934667pt;}
.y40{bottom:333.265333pt;}
.y18{bottom:342.034667pt;}
.y68{bottom:364.390667pt;}
.y3f{bottom:365.734667pt;}
.y17{bottom:374.505333pt;}
.y67{bottom:382.456000pt;}
.y66{bottom:400.522667pt;}
.y3e{bottom:411.564000pt;}
.y65{bottom:418.588000pt;}
.y16{bottom:420.333333pt;}
.y3d{bottom:429.630667pt;}
.y64{bottom:436.653333pt;}
.y15{bottom:438.400000pt;}
.y3b{bottom:447.696000pt;}
.y3c{bottom:452.974667pt;}
.y63{bottom:454.718667pt;}
.y14{bottom:456.465333pt;}
.y3a{bottom:465.761333pt;}
.y62{bottom:472.784000pt;}
.y13{bottom:479.844000pt;}
.y39{bottom:483.826667pt;}
.y61{bottom:490.850667pt;}
.y12{bottom:506.544000pt;}
.y60{bottom:508.916000pt;}
.y38{bottom:516.296000pt;}
.y11{bottom:524.609333pt;}
.y5f{bottom:526.981333pt;}
.y5e{bottom:545.046667pt;}
.y10{bottom:551.309333pt;}
.y37{bottom:562.125333pt;}
.y5d{bottom:563.112000pt;}
.yf{bottom:569.374667pt;}
.y36{bottom:585.504000pt;}
.y5c{bottom:589.030667pt;}
.ye{bottom:596.074667pt;}
.y5a{bottom:607.096000pt;}
.y35{bottom:612.204000pt;}
.y5b{bottom:612.374667pt;}
.yd{bottom:614.140000pt;}
.y59{bottom:625.161333pt;}
.yc{bottom:637.520000pt;}
.y34{bottom:638.904000pt;}
.y58{bottom:643.226667pt;}
.yb{bottom:655.585333pt;}
.y33{bottom:665.604000pt;}
.ya{bottom:673.650667pt;}
.y57{bottom:676.997333pt;}
.y32{bottom:688.982667pt;}
.y9{bottom:691.716000pt;}
.y56{bottom:695.064000pt;}
.y55{bottom:713.129333pt;}
.y31{bottom:721.452000pt;}
.y8{bottom:724.185333pt;}
.y54{bottom:731.194667pt;}
.y53{bottom:749.260000pt;}
.y30{bottom:767.281333pt;}
.y7{bottom:770.014667pt;}
.y52{bottom:781.729333pt;}
.y2f{bottom:785.346667pt;}
.y6{bottom:788.080000pt;}
.y2e{bottom:803.413333pt;}
.y5{bottom:806.146667pt;}
.y2d{bottom:821.478667pt;}
.y51{bottom:827.502667pt;}
.y2c{bottom:839.544000pt;}
.y50{bottom:854.808000pt;}
.y4{bottom:861.970667pt;}
.y2b{bottom:872.013333pt;}
.y4f{bottom:872.874667pt;}
.y3{bottom:894.581333pt;}
.y2a{bottom:895.924000pt;}
.y4e{bottom:899.514667pt;}
.y4d{bottom:926.156000pt;}
.y2{bottom:934.996000pt;}
.y29{bottom:941.753333pt;}
.y73{bottom:941.770667pt;}
.y4c{bottom:952.797333pt;}
.y1{bottom:953.593333pt;}
.y28{bottom:959.818667pt;}
.y72{bottom:965.814667pt;}
.y26{bottom:977.884000pt;}
.y4b{bottom:979.438667pt;}
.y27{bottom:983.162667pt;}
.y71{bottom:993.842667pt;}
.y25{bottom:1010.353333pt;}
.y4a{bottom:1011.908000pt;}
.hb{height:28.267288pt;}
.h7{height:29.499997pt;}
.h8{height:30.545480pt;}
.h9{height:40.378215pt;}
.h4{height:43.636400pt;}
.h3{height:45.525402pt;}
.h6{height:49.381955pt;}
.h5{height:57.384800pt;}
.ha{height:64.640237pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:93.309333pt;}
.x2a{left:94.298667pt;}
.x8{left:95.258667pt;}
.x6{left:96.673333pt;}
.x5{left:101.726667pt;}
.x2b{left:109.413333pt;}
.x1{left:112.809333pt;}
.x9{left:113.777333pt;}
.xb{left:118.581333pt;}
.x13{left:127.521333pt;}
.x10{left:130.661333pt;}
.xa{left:132.364000pt;}
.x17{left:200.902667pt;}
.x18{left:212.573333pt;}
.x23{left:248.966667pt;}
.x2{left:254.178667pt;}
.x24{left:260.280000pt;}
.x28{left:265.581333pt;}
.x14{left:276.376000pt;}
.x29{left:281.718667pt;}
.x15{left:321.418667pt;}
.x1d{left:324.457333pt;}
.x3{left:333.577333pt;}
.x1e{left:345.653333pt;}
.x21{left:347.709333pt;}
.x7{left:348.698667pt;}
.x4{left:351.305333pt;}
.x1f{left:361.581333pt;}
.x22{left:365.658667pt;}
.x20{left:382.777333pt;}
.x16{left:393.214667pt;}
.x19{left:419.174667pt;}
.x1a{left:432.534667pt;}
.x1b{left:445.296000pt;}
.x1c{left:457.250667pt;}
.xe{left:537.714667pt;}
.xf{left:553.880000pt;}
.x25{left:604.318667pt;}
.x26{left:616.274667pt;}
.xc{left:624.246667pt;}
.xd{left:631.073333pt;}
.x11{left:689.042667pt;}
.x12{left:696.562667pt;}
}




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