
    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_2a5cb6f371c4320e955481c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_f0e39b6a43269e7511f9eff9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_c6ec552b02b75de25aa2d71b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_fc01edde3e75cd606b127e23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_769f6e12f3af379fe4ff6c12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711000;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_e5e4a9e185d74efd87fb9ff5.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.238392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238392,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238590,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239090,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.239369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239369,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.240912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240912,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.241108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241108,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.241173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241173,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.241418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241418,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.241433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241433,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241765,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.241768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241768,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.242799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242799,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.243276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243276,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244863,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245358,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246031,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246693,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246923,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248608,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m3{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-4.872000px;}
.ls13{letter-spacing:-0.756600px;}
.ls12{letter-spacing:-0.698400px;}
.ls8{letter-spacing:-0.640200px;}
.lsb{letter-spacing:-0.582000px;}
.ls17{letter-spacing:-0.523800px;}
.ls14{letter-spacing:-0.465600px;}
.ls18{letter-spacing:-0.407400px;}
.ls19{letter-spacing:-0.349200px;}
.ls16{letter-spacing:-0.291000px;}
.ls11{letter-spacing:-0.232800px;}
.lsf{letter-spacing:-0.174600px;}
.ls15{letter-spacing:-0.116400px;}
.ls9{letter-spacing:-0.058200px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.058200px;}
.lsc{letter-spacing:0.116400px;}
.lsa{letter-spacing:0.465600px;}
.lsd{letter-spacing:0.523800px;}
.lse{letter-spacing:0.698400px;}
.ls1{letter-spacing:1.170000px;}
.ls0{letter-spacing:1.470000px;}
.ls5{letter-spacing:2.399400px;}
.ls3{letter-spacing:2.998800px;}
.ls6{letter-spacing:2.999400px;}
.ls4{letter-spacing:3.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-30.276000px;}
.ws0{word-spacing:-16.926000px;}
.ws2{word-spacing:-12.978600px;}
.ws5{word-spacing:-11.482800px;}
.ws4{word-spacing:-10.302000px;}
.ws3{word-spacing:-9.936000px;}
.ws6{word-spacing:-8.484000px;}
.ws21{word-spacing:-3.724800px;}
.ws20{word-spacing:-3.492000px;}
.ws1d{word-spacing:-3.480000px;}
.ws24{word-spacing:-3.433800px;}
.ws22{word-spacing:-3.375600px;}
.ws1f{word-spacing:-3.317400px;}
.ws2b{word-spacing:-3.259200px;}
.ws1e{word-spacing:-3.084600px;}
.ws9{word-spacing:-2.735400px;}
.wsb{word-spacing:-2.677200px;}
.wsa{word-spacing:-2.619000px;}
.ws14{word-spacing:-2.328000px;}
.ws10{word-spacing:-2.269800px;}
.ws17{word-spacing:-1.687800px;}
.ws13{word-spacing:-1.338600px;}
.ws16{word-spacing:-1.047600px;}
.ws26{word-spacing:-0.989400px;}
.ws28{word-spacing:-0.931200px;}
.ws25{word-spacing:-0.698400px;}
.ws2d{word-spacing:-0.540000px;}
.ws7{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.407400px;}
.ws23{word-spacing:-0.232800px;}
.ws2a{word-spacing:-0.116400px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:2.037000px;}
.ws18{word-spacing:2.444400px;}
.ws1c{word-spacing:3.201000px;}
.wsc{word-spacing:3.375600px;}
.wsd{word-spacing:3.841200px;}
.ws29{word-spacing:4.597800px;}
.wsf{word-spacing:5.005200px;}
.ws1b{word-spacing:5.121600px;}
.ws15{word-spacing:5.296200px;}
.ws12{word-spacing:5.994600px;}
.ws11{word-spacing:6.052800px;}
.ws19{word-spacing:7.798800px;}
.ws2c{word-spacing:9.777600px;}
.ws1a{word-spacing:9.835800px;}
._5{margin-left:-9.082800px;}
._3{margin-left:-5.994600px;}
._4{margin-left:-4.271880px;}
._0{margin-left:-3.150000px;}
._1{margin-left:-1.974000px;}
._2{width:1.213800px;}
._8{width:2.241720px;}
._7{width:4.593000px;}
._6{width:5.707200px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs2{font-size:58.200000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:78.000000px;}
.fs5{font-size:174.000000px;}
.fs1{font-size:368.353800px;}
.y0{bottom:0.000000px;}
.y35{bottom:39.429900px;}
.y18{bottom:84.514950px;}
.y28{bottom:91.714950px;}
.y17{bottom:101.314950px;}
.y27{bottom:103.714950px;}
.y26{bottom:115.714950px;}
.y16{bottom:118.114950px;}
.y25{bottom:127.714950px;}
.y15{bottom:134.914950px;}
.y24{bottom:139.714950px;}
.y14{bottom:151.714950px;}
.y13{bottom:168.514950px;}
.y23{bottom:171.514950px;}
.y12{bottom:185.314950px;}
.y22{bottom:186.814950px;}
.y11{bottom:202.114950px;}
.y10{bottom:218.914950px;}
.yf{bottom:235.714950px;}
.ye{bottom:252.514950px;}
.yd{bottom:269.314950px;}
.yc{bottom:286.114950px;}
.yb{bottom:302.914950px;}
.ya{bottom:319.714950px;}
.y9{bottom:336.514950px;}
.y8{bottom:353.314950px;}
.y7{bottom:370.114950px;}
.y6{bottom:386.914950px;}
.y2{bottom:403.714950px;}
.y5{bottom:420.514950px;}
.y4{bottom:437.314950px;}
.y3{bottom:454.114950px;}
.y34{bottom:491.914950px;}
.y1{bottom:498.560400px;}
.y33{bottom:505.414950px;}
.y32{bottom:518.914950px;}
.y1d{bottom:531.773700px;}
.y31{bottom:532.414950px;}
.y30{bottom:545.914950px;}
.y1c{bottom:549.773700px;}
.y1b{bottom:567.773700px;}
.y1a{bottom:585.773700px;}
.y19{bottom:603.773700px;}
.y21{bottom:637.348200px;}
.y20{bottom:679.348200px;}
.y1f{bottom:721.348200px;}
.y2c{bottom:824.614950px;}
.y2f{bottom:836.042100px;}
.y2b{bottom:838.114950px;}
.y2e{bottom:849.542100px;}
.y2a{bottom:851.614950px;}
.y2d{bottom:863.042100px;}
.y29{bottom:865.114950px;}
.y1e{bottom:1227.658500px;}
.h2{height:29.820000px;}
.ha{height:31.950000px;}
.h9{height:34.080000px;}
.h4{height:41.438400px;}
.h8{height:42.600000px;}
.h5{height:46.860000px;}
.h6{height:55.380000px;}
.h7{height:123.540000px;}
.h3{height:262.267906px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:59.632500px;}
.x3{left:72.283500px;}
.x2{left:116.345100px;}
.x4{left:211.383750px;}
.x5{left:259.903050px;}
.x6{left:462.023700px;}
.x7{left:474.779550px;}
.x8{left:662.987100px;}
.x9{left:675.742950px;}
.xa{left:841.132650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-4.330667pt;}
.ls13{letter-spacing:-0.672533pt;}
.ls12{letter-spacing:-0.620800pt;}
.ls8{letter-spacing:-0.569067pt;}
.lsb{letter-spacing:-0.517333pt;}
.ls17{letter-spacing:-0.465600pt;}
.ls14{letter-spacing:-0.413867pt;}
.ls18{letter-spacing:-0.362133pt;}
.ls19{letter-spacing:-0.310400pt;}
.ls16{letter-spacing:-0.258667pt;}
.ls11{letter-spacing:-0.206933pt;}
.lsf{letter-spacing:-0.155200pt;}
.ls15{letter-spacing:-0.103467pt;}
.ls9{letter-spacing:-0.051733pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.051733pt;}
.lsc{letter-spacing:0.103467pt;}
.lsa{letter-spacing:0.413867pt;}
.lsd{letter-spacing:0.465600pt;}
.lse{letter-spacing:0.620800pt;}
.ls1{letter-spacing:1.040000pt;}
.ls0{letter-spacing:1.306667pt;}
.ls5{letter-spacing:2.132800pt;}
.ls3{letter-spacing:2.665600pt;}
.ls6{letter-spacing:2.666133pt;}
.ls4{letter-spacing:2.666667pt;}
.ws1{word-spacing:-26.912000pt;}
.ws0{word-spacing:-15.045333pt;}
.ws2{word-spacing:-11.536533pt;}
.ws5{word-spacing:-10.206933pt;}
.ws4{word-spacing:-9.157333pt;}
.ws3{word-spacing:-8.832000pt;}
.ws6{word-spacing:-7.541333pt;}
.ws21{word-spacing:-3.310933pt;}
.ws20{word-spacing:-3.104000pt;}
.ws1d{word-spacing:-3.093333pt;}
.ws24{word-spacing:-3.052267pt;}
.ws22{word-spacing:-3.000533pt;}
.ws1f{word-spacing:-2.948800pt;}
.ws2b{word-spacing:-2.897067pt;}
.ws1e{word-spacing:-2.741867pt;}
.ws9{word-spacing:-2.431467pt;}
.wsb{word-spacing:-2.379733pt;}
.wsa{word-spacing:-2.328000pt;}
.ws14{word-spacing:-2.069333pt;}
.ws10{word-spacing:-2.017600pt;}
.ws17{word-spacing:-1.500267pt;}
.ws13{word-spacing:-1.189867pt;}
.ws16{word-spacing:-0.931200pt;}
.ws26{word-spacing:-0.879467pt;}
.ws28{word-spacing:-0.827733pt;}
.ws25{word-spacing:-0.620800pt;}
.ws2d{word-spacing:-0.480000pt;}
.ws7{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.362133pt;}
.ws23{word-spacing:-0.206933pt;}
.ws2a{word-spacing:-0.103467pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:1.810667pt;}
.ws18{word-spacing:2.172800pt;}
.ws1c{word-spacing:2.845333pt;}
.wsc{word-spacing:3.000533pt;}
.wsd{word-spacing:3.414400pt;}
.ws29{word-spacing:4.086933pt;}
.wsf{word-spacing:4.449067pt;}
.ws1b{word-spacing:4.552533pt;}
.ws15{word-spacing:4.707733pt;}
.ws12{word-spacing:5.328533pt;}
.ws11{word-spacing:5.380267pt;}
.ws19{word-spacing:6.932267pt;}
.ws2c{word-spacing:8.691200pt;}
.ws1a{word-spacing:8.742933pt;}
._5{margin-left:-8.073600pt;}
._3{margin-left:-5.328533pt;}
._4{margin-left:-3.797227pt;}
._0{margin-left:-2.800000pt;}
._1{margin-left:-1.754667pt;}
._2{width:1.078933pt;}
._8{width:1.992640pt;}
._7{width:4.082667pt;}
._6{width:5.073067pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs2{font-size:51.733333pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:69.333333pt;}
.fs5{font-size:154.666667pt;}
.fs1{font-size:327.425600pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:35.048800pt;}
.y18{bottom:75.124400pt;}
.y28{bottom:81.524400pt;}
.y17{bottom:90.057733pt;}
.y27{bottom:92.191067pt;}
.y26{bottom:102.857733pt;}
.y16{bottom:104.991067pt;}
.y25{bottom:113.524400pt;}
.y15{bottom:119.924400pt;}
.y24{bottom:124.191067pt;}
.y14{bottom:134.857733pt;}
.y13{bottom:149.791067pt;}
.y23{bottom:152.457733pt;}
.y12{bottom:164.724400pt;}
.y22{bottom:166.057733pt;}
.y11{bottom:179.657733pt;}
.y10{bottom:194.591067pt;}
.yf{bottom:209.524400pt;}
.ye{bottom:224.457733pt;}
.yd{bottom:239.391067pt;}
.yc{bottom:254.324400pt;}
.yb{bottom:269.257733pt;}
.ya{bottom:284.191067pt;}
.y9{bottom:299.124400pt;}
.y8{bottom:314.057733pt;}
.y7{bottom:328.991067pt;}
.y6{bottom:343.924400pt;}
.y2{bottom:358.857733pt;}
.y5{bottom:373.791067pt;}
.y4{bottom:388.724400pt;}
.y3{bottom:403.657733pt;}
.y34{bottom:437.257733pt;}
.y1{bottom:443.164800pt;}
.y33{bottom:449.257733pt;}
.y32{bottom:461.257733pt;}
.y1d{bottom:472.687733pt;}
.y31{bottom:473.257733pt;}
.y30{bottom:485.257733pt;}
.y1c{bottom:488.687733pt;}
.y1b{bottom:504.687733pt;}
.y1a{bottom:520.687733pt;}
.y19{bottom:536.687733pt;}
.y21{bottom:566.531733pt;}
.y20{bottom:603.865067pt;}
.y1f{bottom:641.198400pt;}
.y2c{bottom:732.991067pt;}
.y2f{bottom:743.148533pt;}
.y2b{bottom:744.991067pt;}
.y2e{bottom:755.148533pt;}
.y2a{bottom:756.991067pt;}
.y2d{bottom:767.148533pt;}
.y29{bottom:768.991067pt;}
.y1e{bottom:1091.252000pt;}
.h2{height:26.506667pt;}
.ha{height:28.400000pt;}
.h9{height:30.293333pt;}
.h4{height:36.834133pt;}
.h8{height:37.866667pt;}
.h5{height:41.653333pt;}
.h6{height:49.226667pt;}
.h7{height:109.813333pt;}
.h3{height:233.127027pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:53.006667pt;}
.x3{left:64.252000pt;}
.x2{left:103.417867pt;}
.x4{left:187.896667pt;}
.x5{left:231.024933pt;}
.x6{left:410.687733pt;}
.x7{left:422.026267pt;}
.x8{left:589.321867pt;}
.x9{left:600.660400pt;}
.xa{left:747.673467pt;}
}




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