
    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_8cc42ad4746b8d451de1475d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_84c0ce96537196f0741523c5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_82fb2e12b064a48f1f2f21c1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_061c2d487a6677e2a7f661dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.845000;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_3ac1d27180dcea32654be6d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_6646c1613cd6cb3b60a194b5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_5a7211caf9188349fe64720e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21caa66d7648fb52f8a6108b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.443000;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;}
.md{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);}
.m16{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);}
.m1e{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);}
.m8{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);}
.mf{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m13{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);}
.m6{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);}
.m18{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);}
.mb{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);}
.m9{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);}
.ma{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);}
.m0{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);}
.m15{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);}
.m19{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);}
.m12{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);}
.m4{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);}
.m1{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);}
.m11{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);}
.m1f{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);}
.m3{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);}
.me{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);}
.m1c{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.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);}
.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);}
.m1d{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);}
.m7{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);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1b{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.434000px;}
.v2{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987468px;}
.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;}
}
.ws41{word-spacing:-17.932800px;}
.ws2{word-spacing:-14.943900px;}
.ws1a{word-spacing:-13.449600px;}
.ws19{word-spacing:-8.966400px;}
.ws2f{word-spacing:-3.048556px;}
.ws17{word-spacing:-2.905114px;}
.ws39{word-spacing:-2.331248px;}
.ws28{word-spacing:-1.075961px;}
.ws21{word-spacing:-1.016185px;}
.ws3e{word-spacing:-0.836858px;}
.ws27{word-spacing:-0.657532px;}
.ws3d{word-spacing:-0.597756px;}
.ws12{word-spacing:-0.537980px;}
.ws2c{word-spacing:-0.358654px;}
.ws48{word-spacing:-0.305784px;}
.ws6{word-spacing:-0.298878px;}
.ws34{word-spacing:-0.247504px;}
.ws9{word-spacing:-0.239102px;}
.ws5{word-spacing:-0.179327px;}
.ws25{word-spacing:-0.119551px;}
.ws3{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.059776px;}
.ws0{word-spacing:0.103292px;}
.ws7{word-spacing:0.119551px;}
.ws37{word-spacing:0.130799px;}
.ws1f{word-spacing:0.179327px;}
.ws1c{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.ws13{word-spacing:0.298878px;}
.wsb{word-spacing:0.358654px;}
.ws42{word-spacing:0.418429px;}
.ws35{word-spacing:0.537980px;}
.ws22{word-spacing:0.597756px;}
.ws23{word-spacing:0.657532px;}
.ws1e{word-spacing:1.195512px;}
.ws50{word-spacing:1.554166px;}
.ws16{word-spacing:1.560154px;}
.ws20{word-spacing:1.673717px;}
.wse{word-spacing:1.733492px;}
.ws3b{word-spacing:1.912819px;}
.ws4{word-spacing:2.151922px;}
.ws31{word-spacing:2.510575px;}
.ws3f{word-spacing:2.570351px;}
.ws24{word-spacing:3.168107px;}
.ws8{word-spacing:3.646312px;}
.ws10{word-spacing:3.706087px;}
.wsf{word-spacing:3.765863px;}
.ws2a{word-spacing:3.825638px;}
.ws4c{word-spacing:4.037217px;}
.ws1d{word-spacing:4.244068px;}
.ws4b{word-spacing:4.483170px;}
.ws11{word-spacing:4.542946px;}
.ws44{word-spacing:5.021150px;}
.ws40{word-spacing:5.379804px;}
.ws4e{word-spacing:5.977560px;}
.ws2b{word-spacing:6.216662px;}
.ws4a{word-spacing:6.571200px;}
.ws1b{word-spacing:6.575316px;}
.wsd{word-spacing:6.754643px;}
.ws46{word-spacing:7.053521px;}
.ws18{word-spacing:7.470163px;}
.ws53{word-spacing:8.009930px;}
.ws55{word-spacing:8.727238px;}
.ws30{word-spacing:11.775793px;}
.ws3a{word-spacing:12.552876px;}
.ws56{word-spacing:13.329959px;}
.ws4f{word-spacing:14.525471px;}
.ws2d{word-spacing:14.585246px;}
.ws33{word-spacing:14.603160px;}
.ws32{word-spacing:14.704798px;}
.ws49{word-spacing:14.764573px;}
.ws52{word-spacing:14.824349px;}
.ws26{word-spacing:14.884124px;}
.ws43{word-spacing:14.943900px;}
.ws38{word-spacing:15.003676px;}
.ws2e{word-spacing:15.104586px;}
.ws29{word-spacing:15.242778px;}
.ws36{word-spacing:15.422105px;}
.ws51{word-spacing:16.438290px;}
.ws3c{word-spacing:16.856719px;}
.ws4d{word-spacing:18.948865px;}
.ws45{word-spacing:19.845499px;}
.ws47{word-spacing:21.937645px;}
.ws54{word-spacing:22.894055px;}
.wsc{word-spacing:53.798400px;}
._c{margin-left:-8.040001px;}
._9{margin-left:-6.963674px;}
._f{margin-left:-5.902193px;}
._8{margin-left:-4.596545px;}
._2{margin-left:-3.202064px;}
._0{margin-left:-1.859263px;}
._3{width:3.348258px;}
._e{width:12.848674px;}
._10{width:17.580246px;}
._4{width:18.769538px;}
._7{width:20.150597px;}
._12{width:21.220338px;}
._b{width:22.595177px;}
._6{width:23.611362px;}
._17{width:25.045976px;}
._11{width:26.241488px;}
._16{width:27.377225px;}
._5{width:29.947576px;}
._1{width:32.227229px;}
._14{width:34.968726px;}
._19{width:36.104462px;}
._d{width:37.712184px;}
._15{width:41.155727px;}
._13{width:44.816108px;}
._18{width:47.575201px;}
._a{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y60{bottom:63.168000px;}
.y2d{bottom:78.184500px;}
.y2c{bottom:93.129000px;}
.y5f{bottom:108.000000px;}
.y5e{bottom:124.363500px;}
.y5d{bottom:140.727000px;}
.y2b{bottom:149.221500px;}
.y2a{bottom:164.164500px;}
.y5c{bottom:165.310500px;}
.y29{bottom:179.109000px;}
.y5b{bottom:181.674000px;}
.y28{bottom:194.053500px;}
.y5a{bottom:198.037500px;}
.y27{bottom:199.767000px;}
.y59{bottom:214.401000px;}
.y26{bottom:216.042000px;}
.y58{bottom:230.764500px;}
.y57{bottom:247.128000px;}
.y73{bottom:255.348000px;}
.y25{bottom:256.809000px;}
.y56{bottom:263.491500px;}
.y72{bottom:271.711500px;}
.y24{bottom:273.172500px;}
.y55{bottom:279.855000px;}
.y71{bottom:288.075000px;}
.y23{bottom:289.536000px;}
.y54{bottom:296.218500px;}
.y70{bottom:304.438500px;}
.y22{bottom:305.899500px;}
.y6f{bottom:320.802000px;}
.y21{bottom:322.263000px;}
.y53{bottom:326.835000px;}
.y6e{bottom:337.165500px;}
.y20{bottom:338.626500px;}
.y52{bottom:343.198500px;}
.y1f{bottom:354.990000px;}
.y51{bottom:359.562000px;}
.y50{bottom:375.925500px;}
.y1e{bottom:379.573500px;}
.y6d{bottom:379.804500px;}
.y4f{bottom:392.289000px;}
.y1d{bottom:395.937000px;}
.y4e{bottom:408.652500px;}
.y93{bottom:411.781500px;}
.y1c{bottom:412.300500px;}
.y92{bottom:428.145000px;}
.y1a{bottom:428.664000px;}
.y4d{bottom:431.104500px;}
.y1b{bottom:434.086500px;}
.y6c{bottom:435.676500px;}
.y91{bottom:444.508500px;}
.y19{bottom:445.027500px;}
.y4c{bottom:447.468000px;}
.y6b{bottom:452.040000px;}
.y90{bottom:460.872000px;}
.y4b{bottom:463.831500px;}
.y6a{bottom:468.403500px;}
.y18{bottom:469.611000px;}
.y8f{bottom:477.235500px;}
.y4a{bottom:480.195000px;}
.y17{bottom:485.974500px;}
.y49{bottom:496.558500px;}
.y8e{bottom:505.554000px;}
.y48{bottom:512.922000px;}
.y8d{bottom:521.917500px;}
.y16{bottom:527.346000px;}
.y69{bottom:528.276000px;}
.y47{bottom:543.538500px;}
.y68{bottom:544.639500px;}
.y8c{bottom:550.237500px;}
.y67{bottom:561.003000px;}
.y8b{bottom:566.601000px;}
.y66{bottom:577.366500px;}
.y46{bottom:578.283000px;}
.y65{bottom:593.730000px;}
.y8a{bottom:594.919500px;}
.y15{bottom:596.025000px;}
.y64{bottom:610.095000px;}
.y89{bottom:611.283000px;}
.y14{bottom:612.388500px;}
.y45{bottom:620.997000px;}
.y63{bottom:626.458500px;}
.y13{bottom:628.752000px;}
.y44{bottom:637.360500px;}
.y88{bottom:639.601500px;}
.y62{bottom:642.822000px;}
.y12{bottom:645.115500px;}
.y43{bottom:653.724000px;}
.y87{bottom:655.965000px;}
.y61{bottom:659.185500px;}
.y11{bottom:661.479000px;}
.y86{bottom:672.328500px;}
.y10{bottom:677.842500px;}
.y42{bottom:678.307500px;}
.yf{bottom:694.206000px;}
.y41{bottom:694.671000px;}
.y85{bottom:700.647000px;}
.ye{bottom:710.569500px;}
.y40{bottom:711.034500px;}
.y84{bottom:717.012000px;}
.yd{bottom:726.933000px;}
.y3f{bottom:727.398000px;}
.y83{bottom:733.375500px;}
.yc{bottom:743.298000px;}
.y3e{bottom:743.761500px;}
.yb{bottom:759.661500px;}
.y82{bottom:761.694000px;}
.y3d{bottom:768.343500px;}
.ya{bottom:776.025000px;}
.y81{bottom:778.057500px;}
.y3c{bottom:784.707000px;}
.y9{bottom:792.388500px;}
.y3b{bottom:801.072000px;}
.y80{bottom:806.376000px;}
.y3a{bottom:817.435500px;}
.y7f{bottom:822.739500px;}
.y8{bottom:835.252500px;}
.y7e{bottom:839.103000px;}
.y39{bottom:842.017500px;}
.y7d{bottom:855.466500px;}
.y38{bottom:858.381000px;}
.y7c{bottom:871.830000px;}
.y37{bottom:874.744500px;}
.y36{bottom:891.108000px;}
.y7{bottom:897.025500px;}
.y7b{bottom:900.150000px;}
.y6{bottom:913.389000px;}
.y35{bottom:915.691500px;}
.y7a{bottom:916.513500px;}
.y5{bottom:929.752500px;}
.y34{bottom:932.055000px;}
.y79{bottom:944.832000px;}
.y4{bottom:946.116000px;}
.y33{bottom:956.638500px;}
.y78{bottom:961.195500px;}
.y3{bottom:962.479500px;}
.y32{bottom:973.002000px;}
.y31{bottom:989.365500px;}
.y77{bottom:989.514000px;}
.y76{bottom:1005.877500px;}
.y2{bottom:1013.299500px;}
.y30{bottom:1013.947500px;}
.y75{bottom:1022.241000px;}
.y2f{bottom:1030.311000px;}
.y74{bottom:1038.606000px;}
.y1{bottom:1043.188500px;}
.y2e{bottom:1065.055500px;}
.h8{height:16.677504px;}
.h9{height:24.675533px;}
.hc{height:25.763284px;}
.h7{height:28.787846px;}
.h5{height:36.941321px;}
.ha{height:37.013299px;}
.hd{height:41.006062px;}
.h4{height:41.125613px;}
.h3{height:41.364715px;}
.h2{height:42.798715px;}
.hb{height:47.529533px;}
.h6{height:49.637990px;}
.h1{height:71.478341px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:162.058500px;}
.x14{left:176.944500px;}
.xb{left:179.733000px;}
.xc{left:180.979500px;}
.xd{left:185.793000px;}
.xe{left:197.118000px;}
.x8{left:215.799000px;}
.x2{left:369.408000px;}
.x6{left:380.964000px;}
.x5{left:382.323000px;}
.x3{left:407.167500px;}
.x9{left:413.929500px;}
.xf{left:422.338500px;}
.xa{left:424.161000px;}
.x7{left:425.637000px;}
.x4{left:428.761500px;}
.x10{left:430.563000px;}
.x11{left:455.263500px;}
.x12{left:609.795000px;}
.x13{left:621.967500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.274667pt;}
.v2{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655527pt;}
.ws41{word-spacing:-15.940267pt;}
.ws2{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws19{word-spacing:-7.970133pt;}
.ws2f{word-spacing:-2.709827pt;}
.ws17{word-spacing:-2.582323pt;}
.ws39{word-spacing:-2.072221pt;}
.ws28{word-spacing:-0.956410pt;}
.ws21{word-spacing:-0.903276pt;}
.ws3e{word-spacing:-0.743874pt;}
.ws27{word-spacing:-0.584473pt;}
.ws3d{word-spacing:-0.531339pt;}
.ws12{word-spacing:-0.478205pt;}
.ws2c{word-spacing:-0.318803pt;}
.ws48{word-spacing:-0.271808pt;}
.ws6{word-spacing:-0.265669pt;}
.ws34{word-spacing:-0.220003pt;}
.ws9{word-spacing:-0.212535pt;}
.ws5{word-spacing:-0.159402pt;}
.ws25{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053134pt;}
.ws0{word-spacing:0.091815pt;}
.ws7{word-spacing:0.106268pt;}
.ws37{word-spacing:0.116266pt;}
.ws1f{word-spacing:0.159402pt;}
.ws1c{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.ws13{word-spacing:0.265669pt;}
.wsb{word-spacing:0.318803pt;}
.ws42{word-spacing:0.371937pt;}
.ws35{word-spacing:0.478205pt;}
.ws22{word-spacing:0.531339pt;}
.ws23{word-spacing:0.584473pt;}
.ws1e{word-spacing:1.062677pt;}
.ws50{word-spacing:1.381481pt;}
.ws16{word-spacing:1.386803pt;}
.ws20{word-spacing:1.487748pt;}
.wse{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.700284pt;}
.ws4{word-spacing:1.912819pt;}
.ws31{word-spacing:2.231622pt;}
.ws3f{word-spacing:2.284756pt;}
.ws24{word-spacing:2.816095pt;}
.ws8{word-spacing:3.241166pt;}
.ws10{word-spacing:3.294300pt;}
.wsf{word-spacing:3.347434pt;}
.ws2a{word-spacing:3.400567pt;}
.ws4c{word-spacing:3.588637pt;}
.ws1d{word-spacing:3.772505pt;}
.ws4b{word-spacing:3.985040pt;}
.ws11{word-spacing:4.038174pt;}
.ws44{word-spacing:4.463245pt;}
.ws40{word-spacing:4.782048pt;}
.ws4e{word-spacing:5.313387pt;}
.ws2b{word-spacing:5.525922pt;}
.ws4a{word-spacing:5.841067pt;}
.ws1b{word-spacing:5.844725pt;}
.wsd{word-spacing:6.004127pt;}
.ws46{word-spacing:6.269796pt;}
.ws18{word-spacing:6.640145pt;}
.ws53{word-spacing:7.119938pt;}
.ws55{word-spacing:7.757545pt;}
.ws30{word-spacing:10.467372pt;}
.ws3a{word-spacing:11.158112pt;}
.ws56{word-spacing:11.848852pt;}
.ws4f{word-spacing:12.911530pt;}
.ws2d{word-spacing:12.964663pt;}
.ws33{word-spacing:12.980587pt;}
.ws32{word-spacing:13.070931pt;}
.ws49{word-spacing:13.124065pt;}
.ws52{word-spacing:13.177199pt;}
.ws26{word-spacing:13.230333pt;}
.ws43{word-spacing:13.283467pt;}
.ws38{word-spacing:13.336601pt;}
.ws2e{word-spacing:13.426298pt;}
.ws29{word-spacing:13.549136pt;}
.ws36{word-spacing:13.708538pt;}
.ws51{word-spacing:14.611813pt;}
.ws3c{word-spacing:14.983750pt;}
.ws4d{word-spacing:16.843436pt;}
.ws45{word-spacing:17.640444pt;}
.ws47{word-spacing:19.500129pt;}
.ws54{word-spacing:20.350271pt;}
.wsc{word-spacing:47.820800pt;}
._c{margin-left:-7.146668pt;}
._9{margin-left:-6.189933pt;}
._f{margin-left:-5.246394pt;}
._8{margin-left:-4.085818pt;}
._2{margin-left:-2.846279pt;}
._0{margin-left:-1.652678pt;}
._3{width:2.976229pt;}
._e{width:11.421044pt;}
._10{width:15.626885pt;}
._4{width:16.684034pt;}
._7{width:17.911642pt;}
._12{width:18.862523pt;}
._b{width:20.084602pt;}
._6{width:20.987877pt;}
._17{width:22.263090pt;}
._11{width:23.325767pt;}
._16{width:24.335311pt;}
._5{width:26.620067pt;}
._1{width:28.646426pt;}
._14{width:31.083312pt;}
._19{width:32.092855pt;}
._d{width:33.521941pt;}
._15{width:36.582868pt;}
._13{width:39.836541pt;}
._18{width:42.289068pt;}
._a{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:56.149333pt;}
.y2d{bottom:69.497333pt;}
.y2c{bottom:82.781333pt;}
.y5f{bottom:96.000000pt;}
.y5e{bottom:110.545333pt;}
.y5d{bottom:125.090667pt;}
.y2b{bottom:132.641333pt;}
.y2a{bottom:145.924000pt;}
.y5c{bottom:146.942667pt;}
.y29{bottom:159.208000pt;}
.y5b{bottom:161.488000pt;}
.y28{bottom:172.492000pt;}
.y5a{bottom:176.033333pt;}
.y27{bottom:177.570667pt;}
.y59{bottom:190.578667pt;}
.y26{bottom:192.037333pt;}
.y58{bottom:205.124000pt;}
.y57{bottom:219.669333pt;}
.y73{bottom:226.976000pt;}
.y25{bottom:228.274667pt;}
.y56{bottom:234.214667pt;}
.y72{bottom:241.521333pt;}
.y24{bottom:242.820000pt;}
.y55{bottom:248.760000pt;}
.y71{bottom:256.066667pt;}
.y23{bottom:257.365333pt;}
.y54{bottom:263.305333pt;}
.y70{bottom:270.612000pt;}
.y22{bottom:271.910667pt;}
.y6f{bottom:285.157333pt;}
.y21{bottom:286.456000pt;}
.y53{bottom:290.520000pt;}
.y6e{bottom:299.702667pt;}
.y20{bottom:301.001333pt;}
.y52{bottom:305.065333pt;}
.y1f{bottom:315.546667pt;}
.y51{bottom:319.610667pt;}
.y50{bottom:334.156000pt;}
.y1e{bottom:337.398667pt;}
.y6d{bottom:337.604000pt;}
.y4f{bottom:348.701333pt;}
.y1d{bottom:351.944000pt;}
.y4e{bottom:363.246667pt;}
.y93{bottom:366.028000pt;}
.y1c{bottom:366.489333pt;}
.y92{bottom:380.573333pt;}
.y1a{bottom:381.034667pt;}
.y4d{bottom:383.204000pt;}
.y1b{bottom:385.854667pt;}
.y6c{bottom:387.268000pt;}
.y91{bottom:395.118667pt;}
.y19{bottom:395.580000pt;}
.y4c{bottom:397.749333pt;}
.y6b{bottom:401.813333pt;}
.y90{bottom:409.664000pt;}
.y4b{bottom:412.294667pt;}
.y6a{bottom:416.358667pt;}
.y18{bottom:417.432000pt;}
.y8f{bottom:424.209333pt;}
.y4a{bottom:426.840000pt;}
.y17{bottom:431.977333pt;}
.y49{bottom:441.385333pt;}
.y8e{bottom:449.381333pt;}
.y48{bottom:455.930667pt;}
.y8d{bottom:463.926667pt;}
.y16{bottom:468.752000pt;}
.y69{bottom:469.578667pt;}
.y47{bottom:483.145333pt;}
.y68{bottom:484.124000pt;}
.y8c{bottom:489.100000pt;}
.y67{bottom:498.669333pt;}
.y8b{bottom:503.645333pt;}
.y66{bottom:513.214667pt;}
.y46{bottom:514.029333pt;}
.y65{bottom:527.760000pt;}
.y8a{bottom:528.817333pt;}
.y15{bottom:529.800000pt;}
.y64{bottom:542.306667pt;}
.y89{bottom:543.362667pt;}
.y14{bottom:544.345333pt;}
.y45{bottom:551.997333pt;}
.y63{bottom:556.852000pt;}
.y13{bottom:558.890667pt;}
.y44{bottom:566.542667pt;}
.y88{bottom:568.534667pt;}
.y62{bottom:571.397333pt;}
.y12{bottom:573.436000pt;}
.y43{bottom:581.088000pt;}
.y87{bottom:583.080000pt;}
.y61{bottom:585.942667pt;}
.y11{bottom:587.981333pt;}
.y86{bottom:597.625333pt;}
.y10{bottom:602.526667pt;}
.y42{bottom:602.940000pt;}
.yf{bottom:617.072000pt;}
.y41{bottom:617.485333pt;}
.y85{bottom:622.797333pt;}
.ye{bottom:631.617333pt;}
.y40{bottom:632.030667pt;}
.y84{bottom:637.344000pt;}
.yd{bottom:646.162667pt;}
.y3f{bottom:646.576000pt;}
.y83{bottom:651.889333pt;}
.yc{bottom:660.709333pt;}
.y3e{bottom:661.121333pt;}
.yb{bottom:675.254667pt;}
.y82{bottom:677.061333pt;}
.y3d{bottom:682.972000pt;}
.ya{bottom:689.800000pt;}
.y81{bottom:691.606667pt;}
.y3c{bottom:697.517333pt;}
.y9{bottom:704.345333pt;}
.y3b{bottom:712.064000pt;}
.y80{bottom:716.778667pt;}
.y3a{bottom:726.609333pt;}
.y7f{bottom:731.324000pt;}
.y8{bottom:742.446667pt;}
.y7e{bottom:745.869333pt;}
.y39{bottom:748.460000pt;}
.y7d{bottom:760.414667pt;}
.y38{bottom:763.005333pt;}
.y7c{bottom:774.960000pt;}
.y37{bottom:777.550667pt;}
.y36{bottom:792.096000pt;}
.y7{bottom:797.356000pt;}
.y7b{bottom:800.133333pt;}
.y6{bottom:811.901333pt;}
.y35{bottom:813.948000pt;}
.y7a{bottom:814.678667pt;}
.y5{bottom:826.446667pt;}
.y34{bottom:828.493333pt;}
.y79{bottom:839.850667pt;}
.y4{bottom:840.992000pt;}
.y33{bottom:850.345333pt;}
.y78{bottom:854.396000pt;}
.y3{bottom:855.537333pt;}
.y32{bottom:864.890667pt;}
.y31{bottom:879.436000pt;}
.y77{bottom:879.568000pt;}
.y76{bottom:894.113333pt;}
.y2{bottom:900.710667pt;}
.y30{bottom:901.286667pt;}
.y75{bottom:908.658667pt;}
.y2f{bottom:915.832000pt;}
.y74{bottom:923.205333pt;}
.y1{bottom:927.278667pt;}
.y2e{bottom:946.716000pt;}
.h8{height:14.824448pt;}
.h9{height:21.933807pt;}
.hc{height:22.900697pt;}
.h7{height:25.589197pt;}
.h5{height:32.836730pt;}
.ha{height:32.900710pt;}
.hd{height:36.449833pt;}
.h4{height:36.556100pt;}
.h3{height:36.768636pt;}
.h2{height:38.043302pt;}
.hb{height:42.248474pt;}
.h6{height:44.122658pt;}
.h1{height:63.536303pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:144.052000pt;}
.x14{left:157.284000pt;}
.xb{left:159.762667pt;}
.xc{left:160.870667pt;}
.xd{left:165.149333pt;}
.xe{left:175.216000pt;}
.x8{left:191.821333pt;}
.x2{left:328.362667pt;}
.x6{left:338.634667pt;}
.x5{left:339.842667pt;}
.x3{left:361.926667pt;}
.x9{left:367.937333pt;}
.xf{left:375.412000pt;}
.xa{left:377.032000pt;}
.x7{left:378.344000pt;}
.x4{left:381.121333pt;}
.x10{left:382.722667pt;}
.x11{left:404.678667pt;}
.x12{left:542.040000pt;}
.x13{left:552.860000pt;}
}




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