
    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_e4abd80d839f087a7fd8d5c8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895000;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_421174a685c80747a13bd1a2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.726000;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_1013b3cb452e58e1d355e20f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.705000;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_ce32403e6af9ce43a9953770.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d285a7ec1b6e65ea2b4ec381.woff')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_48ff5333fb952e80c2515b73.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ae6f7648f7d9fe469350bef.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ce965a4b0aa34773933a9b6f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_189d30b109f4bb1ee30ec831.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_15abbbab3838e249649615b6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_f8bd43d2bd7420702f96d772.woff')format("woff");}.ffb{font-family:ffb;line-height:0.749000;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_0d9c2b93d3436c5dfdd04b20.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0a3c5a88064401a99dd0045d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.522000;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;}
.m3{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);}
.m5{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);}
.m7{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);}
.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);}
.m18{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);}
.m17{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);}
.m19{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);}
.m1{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);}
.mf{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);}
.md{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.mb{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);}
.ma{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);}
.mc{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);}
.m13{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);}
.m16{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1a{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);}
.m14{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);}
.m1b{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);}
.m15{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m10{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.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m2{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);}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000503px;}
.lsa{letter-spacing:0.002687px;}
.lsc{letter-spacing:0.009694px;}
.ls4{letter-spacing:0.011878px;}
.ls8{letter-spacing:0.019979px;}
.ls9{letter-spacing:2.984915px;}
.ls5{letter-spacing:2.990915px;}
.ls6{letter-spacing:14.530921px;}
.ls2{letter-spacing:15.643649px;}
.ls3{letter-spacing:17.528915px;}
.ls7{letter-spacing:18.130924px;}
.ls1{letter-spacing:19.505471px;}
.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;}
}
.ws2f{word-spacing:-32.544027px;}
.ws31{word-spacing:-14.347648px;}
.ws37{word-spacing:-14.020375px;}
.wsd{word-spacing:-13.758557px;}
.ws38{word-spacing:-12.973102px;}
.ws33{word-spacing:-12.776738px;}
.ws24{word-spacing:-12.711283px;}
.ws2e{word-spacing:-12.580374px;}
.ws19{word-spacing:-12.449465px;}
.ws25{word-spacing:-12.318556px;}
.ws3e{word-spacing:-11.860374px;}
.ws39{word-spacing:-11.467646px;}
.ws3d{word-spacing:-11.336737px;}
.ws18{word-spacing:-11.271282px;}
.wsa{word-spacing:-11.112284px;}
.ws26{word-spacing:-11.074918px;}
.ws34{word-spacing:-11.009464px;}
.ws2d{word-spacing:-10.944009px;}
.wsf{word-spacing:-10.878555px;}
.ws12{word-spacing:-10.813100px;}
.ws4{word-spacing:-10.753630px;}
.ws13{word-spacing:-10.747645px;}
.ws16{word-spacing:-10.682191px;}
.ws2b{word-spacing:-10.616736px;}
.ws36{word-spacing:-10.551282px;}
.wse{word-spacing:-10.485827px;}
.ws3a{word-spacing:-10.479281px;}
.ws28{word-spacing:-10.420372px;}
.ws1e{word-spacing:-10.354918px;}
.ws7{word-spacing:-10.335201px;}
.ws1c{word-spacing:-10.289463px;}
.ws20{word-spacing:-10.093099px;}
.wsb{word-spacing:-9.976548px;}
.ws2a{word-spacing:-9.955645px;}
.ws1f{word-spacing:-9.824735px;}
.ws2{word-spacing:-9.677670px;}
.ws9{word-spacing:-9.438567px;}
.ws1d{word-spacing:-9.432008px;}
.ws3{word-spacing:-9.378792px;}
.ws17{word-spacing:-9.176735px;}
.ws8{word-spacing:-8.960362px;}
.ws21{word-spacing:-8.653098px;}
.ws3c{word-spacing:-8.522189px;}
.ws1a{word-spacing:-8.456734px;}
.ws27{word-spacing:-8.260371px;}
.ws5{word-spacing:-8.123504px;}
.ws3b{word-spacing:-7.933098px;}
.ws3f{word-spacing:-7.409461px;}
.ws35{word-spacing:-6.951279px;}
.ws11{word-spacing:-5.707641px;}
.ws29{word-spacing:-5.570186px;}
.ws1b{word-spacing:-5.380368px;}
.ws6{word-spacing:-4.716295px;}
.ws10{word-spacing:-4.529458px;}
.ws23{word-spacing:-3.874912px;}
.ws22{word-spacing:-3.613094px;}
.ws2c{word-spacing:-1.911274px;}
.ws32{word-spacing:-0.047821px;}
.ws14{word-spacing:0.000000px;}
.ws30{word-spacing:14.465467px;}
.ws1{word-spacing:23.312640px;}
.ws15{word-spacing:26.827469px;}
.wsc{word-spacing:31.418178px;}
.ws0{word-spacing:37.081972px;}
._8{margin-left:-5.771940px;}
._3{margin-left:-4.554875px;}
._0{margin-left:-3.098772px;}
._1{margin-left:-1.936742px;}
._2{width:1.996518px;}
._e{width:3.600003px;}
._9{width:19.792826px;}
._13{width:21.091342px;}
._c{width:22.305058px;}
._10{width:25.119606px;}
._4{width:27.078347px;}
._5{width:29.050942px;}
._7{width:30.342082px;}
._19{width:31.785997px;}
._6{width:33.309373px;}
._d{width:34.664042px;}
._f{width:36.535330px;}
._1a{width:38.394955px;}
._1b{width:39.712056px;}
._a{width:46.011015px;}
._17{width:50.935342px;}
._18{width:56.445412px;}
._11{width:71.068735px;}
._15{width:168.606667px;}
._16{width:324.043745px;}
._12{width:528.087713px;}
._14{width:607.549597px;}
._b{width:1938.083810px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b{bottom:60.180000px;}
.y57{bottom:113.040000px;}
.y1a{bottom:131.661000px;}
.y56{bottom:155.719500px;}
.y19{bottom:160.113000px;}
.y39{bottom:170.763000px;}
.y70{bottom:181.393500px;}
.y38{bottom:191.086500px;}
.y55{bottom:198.399000px;}
.y18{bottom:202.794000px;}
.y6f{bottom:209.847000px;}
.y37{bottom:211.410000px;}
.y84{bottom:217.705500px;}
.y54{bottom:226.852500px;}
.y17{bottom:231.246000px;}
.y36{bottom:231.735000px;}
.y6e{bottom:238.300500px;}
.y83{bottom:246.159000px;}
.y53{bottom:255.306000px;}
.y16{bottom:259.699500px;}
.y35{bottom:260.268000px;}
.y82{bottom:274.612500px;}
.y6d{bottom:280.980000px;}
.y52{bottom:283.759500px;}
.y15{bottom:302.379000px;}
.y6c{bottom:309.433500px;}
.y51{bottom:312.211500px;}
.y81{bottom:317.292000px;}
.y34{bottom:319.420500px;}
.y14{bottom:330.832500px;}
.y6b{bottom:337.887000px;}
.y50{bottom:340.665000px;}
.y80{bottom:345.745500px;}
.y33{bottom:347.874000px;}
.y13{bottom:359.286000px;}
.y6a{bottom:366.339000px;}
.y4f{bottom:369.118500px;}
.y7f{bottom:374.199000px;}
.y32{bottom:376.327500px;}
.y12{bottom:401.965500px;}
.y7e{bottom:402.652500px;}
.y31{bottom:404.779500px;}
.y69{bottom:409.018500px;}
.y4e{bottom:411.798000px;}
.y11{bottom:430.419000px;}
.y30{bottom:433.233000px;}
.y68{bottom:437.472000px;}
.y4d{bottom:440.251500px;}
.y7d{bottom:445.332000px;}
.y10{bottom:458.872500px;}
.y2f{bottom:465.913500px;}
.y67{bottom:465.925500px;}
.y4c{bottom:468.705000px;}
.y7c{bottom:473.784000px;}
.yf{bottom:491.551500px;}
.y66{bottom:494.379000px;}
.y7b{bottom:508.329000px;}
.y4b{bottom:511.384500px;}
.y2e{bottom:512.376000px;}
.y65{bottom:522.832500px;}
.y7a{bottom:536.782500px;}
.y2d{bottom:540.829500px;}
.y4a{bottom:543.360000px;}
.ye{bottom:546.981000px;}
.y64{bottom:551.284500px;}
.y79{bottom:565.236000px;}
.y2c{bottom:569.283000px;}
.yd{bottom:572.086500px;}
.y49{bottom:579.693000px;}
.y63{bottom:579.738000px;}
.yc{bottom:597.192000px;}
.y2b{bottom:597.735000px;}
.y78{bottom:599.779500px;}
.y48{bottom:608.146500px;}
.yb{bottom:622.297500px;}
.y62{bottom:631.204500px;}
.y77{bottom:634.324500px;}
.y2a{bottom:640.416000px;}
.ya{bottom:647.404500px;}
.y47{bottom:650.826000px;}
.y76{bottom:662.778000px;}
.y29{bottom:668.868000px;}
.y9{bottom:672.510000px;}
.y46{bottom:679.279500px;}
.y61{bottom:682.672500px;}
.y75{bottom:691.230000px;}
.y28{bottom:697.321500px;}
.y8{bottom:697.615500px;}
.y60{bottom:711.124500px;}
.y88{bottom:711.549000px;}
.y45{bottom:721.959000px;}
.y7{bottom:722.721000px;}
.y74{bottom:725.775000px;}
.y27{bottom:740.001000px;}
.y6{bottom:747.826500px;}
.y44{bottom:750.412500px;}
.y5f{bottom:753.805500px;}
.y26{bottom:768.454500px;}
.y5{bottom:772.932000px;}
.y43{bottom:778.866000px;}
.y87{bottom:782.680500px;}
.y5e{bottom:796.485000px;}
.y73{bottom:796.908000px;}
.y4{bottom:798.039000px;}
.y25{bottom:811.134000px;}
.y42{bottom:821.545500px;}
.y5d{bottom:824.937000px;}
.y3{bottom:837.747000px;}
.y24{bottom:839.587500px;}
.y41{bottom:849.997500px;}
.y5c{bottom:853.390500px;}
.y23{bottom:868.041000px;}
.y40{bottom:878.451000px;}
.y86{bottom:882.267000px;}
.y5b{bottom:886.071000px;}
.y22{bottom:896.494500px;}
.y3f{bottom:910.426500px;}
.y85{bottom:910.720500px;}
.y72{bottom:924.946500px;}
.y2{bottom:928.308000px;}
.y5a{bottom:932.533500px;}
.y21{bottom:939.174000px;}
.y3e{bottom:946.759500px;}
.y71{bottom:953.400000px;}
.y59{bottom:960.987000px;}
.y20{bottom:967.627500px;}
.y3d{bottom:975.213000px;}
.y1{bottom:982.003500px;}
.y58{bottom:989.440500px;}
.y1f{bottom:996.079500px;}
.y3c{bottom:1003.666500px;}
.y1e{bottom:1024.533000px;}
.y3b{bottom:1032.120000px;}
.y1d{bottom:1056.508500px;}
.y3a{bottom:1060.573500px;}
.y1c{bottom:1120.468500px;}
.h3{height:41.783144px;}
.h4{height:44.891476px;}
.h6{height:49.156405px;}
.h7{height:50.283571px;}
.h2{height:50.642227px;}
.h5{height:60.856580px;}
.h1{height:71.788218px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:105.559500px;}
.x6{left:108.000000px;}
.xa{left:121.017000px;}
.x8{left:140.173500px;}
.x5{left:146.668500px;}
.x4{left:148.909500px;}
.xb{left:259.407000px;}
.x1{left:278.784000px;}
.x2{left:409.092000px;}
.x3{left:426.361500px;}
.x7{left:454.932000px;}
@media print{
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000447pt;}
.lsa{letter-spacing:0.002388pt;}
.lsc{letter-spacing:0.008617pt;}
.ls4{letter-spacing:0.010558pt;}
.ls8{letter-spacing:0.017759pt;}
.ls9{letter-spacing:2.653258pt;}
.ls5{letter-spacing:2.658591pt;}
.ls6{letter-spacing:12.916374pt;}
.ls2{letter-spacing:13.905466pt;}
.ls3{letter-spacing:15.581258pt;}
.ls7{letter-spacing:16.116377pt;}
.ls1{letter-spacing:17.338196pt;}
.ws2f{word-spacing:-28.928024pt;}
.ws31{word-spacing:-12.753465pt;}
.ws37{word-spacing:-12.462556pt;}
.wsd{word-spacing:-12.229828pt;}
.ws38{word-spacing:-11.531646pt;}
.ws33{word-spacing:-11.357100pt;}
.ws24{word-spacing:-11.298919pt;}
.ws2e{word-spacing:-11.182555pt;}
.ws19{word-spacing:-11.066191pt;}
.ws25{word-spacing:-10.949827pt;}
.ws3e{word-spacing:-10.542554pt;}
.ws39{word-spacing:-10.193463pt;}
.ws3d{word-spacing:-10.077099pt;}
.ws18{word-spacing:-10.018917pt;}
.wsa{word-spacing:-9.877586pt;}
.ws26{word-spacing:-9.844372pt;}
.ws34{word-spacing:-9.786190pt;}
.ws2d{word-spacing:-9.728008pt;}
.wsf{word-spacing:-9.669826pt;}
.ws12{word-spacing:-9.611644pt;}
.ws4{word-spacing:-9.558783pt;}
.ws13{word-spacing:-9.553463pt;}
.ws16{word-spacing:-9.495281pt;}
.ws2b{word-spacing:-9.437099pt;}
.ws36{word-spacing:-9.378917pt;}
.wse{word-spacing:-9.320735pt;}
.ws3a{word-spacing:-9.314917pt;}
.ws28{word-spacing:-9.262553pt;}
.ws1e{word-spacing:-9.204371pt;}
.ws7{word-spacing:-9.186846pt;}
.ws1c{word-spacing:-9.146189pt;}
.ws20{word-spacing:-8.971644pt;}
.wsb{word-spacing:-8.868042pt;}
.ws2a{word-spacing:-8.849462pt;}
.ws1f{word-spacing:-8.733098pt;}
.ws2{word-spacing:-8.602373pt;}
.ws9{word-spacing:-8.389838pt;}
.ws1d{word-spacing:-8.384007pt;}
.ws3{word-spacing:-8.336704pt;}
.ws17{word-spacing:-8.157098pt;}
.ws8{word-spacing:-7.964767pt;}
.ws21{word-spacing:-7.691643pt;}
.ws3c{word-spacing:-7.575279pt;}
.ws1a{word-spacing:-7.517097pt;}
.ws27{word-spacing:-7.342552pt;}
.ws5{word-spacing:-7.220892pt;}
.ws3b{word-spacing:-7.051642pt;}
.ws3f{word-spacing:-6.586187pt;}
.ws35{word-spacing:-6.178914pt;}
.ws11{word-spacing:-5.073459pt;}
.ws29{word-spacing:-4.951277pt;}
.ws1b{word-spacing:-4.782549pt;}
.ws6{word-spacing:-4.192262pt;}
.ws10{word-spacing:-4.026185pt;}
.ws23{word-spacing:-3.444367pt;}
.ws22{word-spacing:-3.211639pt;}
.ws2c{word-spacing:-1.698911pt;}
.ws32{word-spacing:-0.042507pt;}
.ws14{word-spacing:0.000000pt;}
.ws30{word-spacing:12.858193pt;}
.ws1{word-spacing:20.722347pt;}
.ws15{word-spacing:23.846639pt;}
.wsc{word-spacing:27.927269pt;}
.ws0{word-spacing:32.961753pt;}
._8{margin-left:-5.130613pt;}
._3{margin-left:-4.048778pt;}
._0{margin-left:-2.754464pt;}
._1{margin-left:-1.721549pt;}
._2{width:1.774683pt;}
._e{width:3.200003pt;}
._9{width:17.593623pt;}
._13{width:18.747859pt;}
._c{width:19.826718pt;}
._10{width:22.328539pt;}
._4{width:24.069642pt;}
._5{width:25.823059pt;}
._7{width:26.970739pt;}
._19{width:28.254220pt;}
._6{width:29.608332pt;}
._d{width:30.812482pt;}
._f{width:32.475849pt;}
._1a{width:34.128849pt;}
._1b{width:35.299605pt;}
._a{width:40.898680pt;}
._17{width:45.275860pt;}
._18{width:50.173700pt;}
._11{width:63.172209pt;}
._15{width:149.872593pt;}
._16{width:288.038885pt;}
._12{width:469.411300pt;}
._14{width:540.044086pt;}
._b{width:1722.741165pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:53.493333pt;}
.y57{bottom:100.480000pt;}
.y1a{bottom:117.032000pt;}
.y56{bottom:138.417333pt;}
.y19{bottom:142.322667pt;}
.y39{bottom:151.789333pt;}
.y70{bottom:161.238667pt;}
.y38{bottom:169.854667pt;}
.y55{bottom:176.354667pt;}
.y18{bottom:180.261333pt;}
.y6f{bottom:186.530667pt;}
.y37{bottom:187.920000pt;}
.y84{bottom:193.516000pt;}
.y54{bottom:201.646667pt;}
.y17{bottom:205.552000pt;}
.y36{bottom:205.986667pt;}
.y6e{bottom:211.822667pt;}
.y83{bottom:218.808000pt;}
.y53{bottom:226.938667pt;}
.y16{bottom:230.844000pt;}
.y35{bottom:231.349333pt;}
.y82{bottom:244.100000pt;}
.y6d{bottom:249.760000pt;}
.y52{bottom:252.230667pt;}
.y15{bottom:268.781333pt;}
.y6c{bottom:275.052000pt;}
.y51{bottom:277.521333pt;}
.y81{bottom:282.037333pt;}
.y34{bottom:283.929333pt;}
.y14{bottom:294.073333pt;}
.y6b{bottom:300.344000pt;}
.y50{bottom:302.813333pt;}
.y80{bottom:307.329333pt;}
.y33{bottom:309.221333pt;}
.y13{bottom:319.365333pt;}
.y6a{bottom:325.634667pt;}
.y4f{bottom:328.105333pt;}
.y7f{bottom:332.621333pt;}
.y32{bottom:334.513333pt;}
.y12{bottom:357.302667pt;}
.y7e{bottom:357.913333pt;}
.y31{bottom:359.804000pt;}
.y69{bottom:363.572000pt;}
.y4e{bottom:366.042667pt;}
.y11{bottom:382.594667pt;}
.y30{bottom:385.096000pt;}
.y68{bottom:388.864000pt;}
.y4d{bottom:391.334667pt;}
.y7d{bottom:395.850667pt;}
.y10{bottom:407.886667pt;}
.y2f{bottom:414.145333pt;}
.y67{bottom:414.156000pt;}
.y4c{bottom:416.626667pt;}
.y7c{bottom:421.141333pt;}
.yf{bottom:436.934667pt;}
.y66{bottom:439.448000pt;}
.y7b{bottom:451.848000pt;}
.y4b{bottom:454.564000pt;}
.y2e{bottom:455.445333pt;}
.y65{bottom:464.740000pt;}
.y7a{bottom:477.140000pt;}
.y2d{bottom:480.737333pt;}
.y4a{bottom:482.986667pt;}
.ye{bottom:486.205333pt;}
.y64{bottom:490.030667pt;}
.y79{bottom:502.432000pt;}
.y2c{bottom:506.029333pt;}
.yd{bottom:508.521333pt;}
.y49{bottom:515.282667pt;}
.y63{bottom:515.322667pt;}
.yc{bottom:530.837333pt;}
.y2b{bottom:531.320000pt;}
.y78{bottom:533.137333pt;}
.y48{bottom:540.574667pt;}
.yb{bottom:553.153333pt;}
.y62{bottom:561.070667pt;}
.y77{bottom:563.844000pt;}
.y2a{bottom:569.258667pt;}
.ya{bottom:575.470667pt;}
.y47{bottom:578.512000pt;}
.y76{bottom:589.136000pt;}
.y29{bottom:594.549333pt;}
.y9{bottom:597.786667pt;}
.y46{bottom:603.804000pt;}
.y61{bottom:606.820000pt;}
.y75{bottom:614.426667pt;}
.y28{bottom:619.841333pt;}
.y8{bottom:620.102667pt;}
.y60{bottom:632.110667pt;}
.y88{bottom:632.488000pt;}
.y45{bottom:641.741333pt;}
.y7{bottom:642.418667pt;}
.y74{bottom:645.133333pt;}
.y27{bottom:657.778667pt;}
.y6{bottom:664.734667pt;}
.y44{bottom:667.033333pt;}
.y5f{bottom:670.049333pt;}
.y26{bottom:683.070667pt;}
.y5{bottom:687.050667pt;}
.y43{bottom:692.325333pt;}
.y87{bottom:695.716000pt;}
.y5e{bottom:707.986667pt;}
.y73{bottom:708.362667pt;}
.y4{bottom:709.368000pt;}
.y25{bottom:721.008000pt;}
.y42{bottom:730.262667pt;}
.y5d{bottom:733.277333pt;}
.y3{bottom:744.664000pt;}
.y24{bottom:746.300000pt;}
.y41{bottom:755.553333pt;}
.y5c{bottom:758.569333pt;}
.y23{bottom:771.592000pt;}
.y40{bottom:780.845333pt;}
.y86{bottom:784.237333pt;}
.y5b{bottom:787.618667pt;}
.y22{bottom:796.884000pt;}
.y3f{bottom:809.268000pt;}
.y85{bottom:809.529333pt;}
.y72{bottom:822.174667pt;}
.y2{bottom:825.162667pt;}
.y5a{bottom:828.918667pt;}
.y21{bottom:834.821333pt;}
.y3e{bottom:841.564000pt;}
.y71{bottom:847.466667pt;}
.y59{bottom:854.210667pt;}
.y20{bottom:860.113333pt;}
.y3d{bottom:866.856000pt;}
.y1{bottom:872.892000pt;}
.y58{bottom:879.502667pt;}
.y1f{bottom:885.404000pt;}
.y3c{bottom:892.148000pt;}
.y1e{bottom:910.696000pt;}
.y3b{bottom:917.440000pt;}
.y1d{bottom:939.118667pt;}
.y3a{bottom:942.732000pt;}
.y1c{bottom:995.972000pt;}
.h3{height:37.140573pt;}
.h4{height:39.903534pt;}
.h6{height:43.694582pt;}
.h7{height:44.696508pt;}
.h2{height:45.015313pt;}
.h5{height:54.094738pt;}
.h1{height:63.811749pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:93.830667pt;}
.x6{left:96.000000pt;}
.xa{left:107.570667pt;}
.x8{left:124.598667pt;}
.x5{left:130.372000pt;}
.x4{left:132.364000pt;}
.xb{left:230.584000pt;}
.x1{left:247.808000pt;}
.x2{left:363.637333pt;}
.x3{left:378.988000pt;}
.x7{left:404.384000pt;}
}




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