
    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_f5b2402b5afcb4ceaceb2255.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_5f271964a6ae6159fa0c1d5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_7bdbc33647e74c97a8c7e549.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_76d83ce1d52f64983e139331.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_ed08d4f73837d08594f47f01.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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;}
.m8{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);}
.m18{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);}
.m1d{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);}
.m1f{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);}
.me{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);}
.m1b{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);}
.m1c{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);}
.m12{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);}
.m11{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);}
.m3{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);}
.mb{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);}
.m4{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);}
.mc{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);}
.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);}
.m5{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);}
.m19{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);}
.m15{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);}
.m1a{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);}
.m10{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);}
.mf{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);}
.m17{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);}
.md{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m6{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);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m2{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1{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);}
.m14{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000435px;}
.lsa{letter-spacing:0.000800px;}
.lsb{letter-spacing:0.001155px;}
.lsc{letter-spacing:0.002856px;}
.ls1{letter-spacing:0.298878px;}
.ls4{letter-spacing:11.954850px;}
.lse{letter-spacing:13.207880px;}
.ls9{letter-spacing:13.268047px;}
.ls8{letter-spacing:13.362340px;}
.lsd{letter-spacing:13.382400px;}
.ls7{letter-spacing:13.448400px;}
.ls3{letter-spacing:15.068209px;}
.ls6{letter-spacing:16.676400px;}
.ls0{letter-spacing:28.453654px;}
.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;}
}
.ws29{word-spacing:-14.943900px;}
.ws40{word-spacing:-13.449600px;}
.ws33{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.ws3a{word-spacing:-1.291162px;}
.ws23{word-spacing:-0.717307px;}
.ws11{word-spacing:-0.418429px;}
.ws30{word-spacing:-0.358654px;}
.ws12{word-spacing:-0.298878px;}
.ws50{word-spacing:-0.268992px;}
.wse{word-spacing:-0.239102px;}
.ws48{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.179327px;}
.ws47{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.ws42{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws39{word-spacing:-0.053798px;}
.ws34{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws3d{word-spacing:-0.010982px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:0.059776px;}
.ws3c{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws4c{word-spacing:0.161395px;}
.ws45{word-spacing:0.215194px;}
.ws2d{word-spacing:0.239102px;}
.ws53{word-spacing:0.268992px;}
.ws37{word-spacing:0.418429px;}
.ws19{word-spacing:0.573761px;}
.ws17{word-spacing:0.597756px;}
.ws14{word-spacing:0.777083px;}
.ws4b{word-spacing:1.022170px;}
.ws1c{word-spacing:1.075961px;}
.ws1b{word-spacing:1.554166px;}
.ws1e{word-spacing:2.092146px;}
.ws2{word-spacing:2.509537px;}
.ws0{word-spacing:2.511541px;}
.ws35{word-spacing:2.630126px;}
.wsd{word-spacing:2.869236px;}
.ws2b{word-spacing:3.108331px;}
.ws44{word-spacing:3.227904px;}
.ws41{word-spacing:3.389299px;}
.ws1d{word-spacing:3.586536px;}
.ws36{word-spacing:3.646312px;}
.ws2f{word-spacing:3.765863px;}
.ws38{word-spacing:4.004965px;}
.ws52{word-spacing:4.250074px;}
.ws51{word-spacing:4.626662px;}
.wsb{word-spacing:4.770079px;}
.wsc{word-spacing:4.853765px;}
.ws21{word-spacing:5.439580px;}
.ws2c{word-spacing:5.499355px;}
.ws22{word-spacing:5.559131px;}
.ws20{word-spacing:6.216662px;}
.wsf{word-spacing:6.455765px;}
.ws4f{word-spacing:6.778598px;}
.ws10{word-spacing:7.711052px;}
.ws9{word-spacing:7.782761px;}
.ws27{word-spacing:7.950155px;}
.ws28{word-spacing:8.069706px;}
.ws3{word-spacing:10.420577px;}
.ws32{word-spacing:11.904964px;}
.ws3b{word-spacing:12.103067px;}
.ws7{word-spacing:12.176255px;}
.ws4e{word-spacing:13.299350px;}
.ws4a{word-spacing:13.389350px;}
.ws3f{word-spacing:13.392336px;}
.ws3e{word-spacing:13.395802px;}
.ws4d{word-spacing:13.557197px;}
.ws49{word-spacing:13.603108px;}
.ws46{word-spacing:13.610995px;}
.ws2a{word-spacing:14.748068px;}
.ws31{word-spacing:15.009220px;}
.ws2e{word-spacing:15.021957px;}
.ws1a{word-spacing:15.481880px;}
.ws18{word-spacing:15.487209px;}
.ws15{word-spacing:15.655572px;}
.ws8{word-spacing:16.109478px;}
.ws43{word-spacing:16.516109px;}
.ws26{word-spacing:22.811283px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
._7{margin-left:-6.222755px;}
._1{margin-left:-4.644551px;}
._0{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._15{width:2.958912px;}
._4{width:12.971268px;}
._10{width:14.607385px;}
._13{width:15.712032px;}
._c{width:16.916495px;}
._14{width:18.106238px;}
._9{width:19.140143px;}
._a{width:22.176748px;}
._b{width:23.438128px;}
._3{width:25.937736px;}
._d{width:27.437000px;}
._5{width:30.587087px;}
._f{width:35.805584px;}
._e{width:37.658628px;}
._8{width:42.978656px;}
._6{width:69.369342px;}
._11{width:355.593965px;}
._12{width:2413.221499px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(34,34,61);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:109.609560px;}
.y0{bottom:0.000000px;}
.y13{bottom:16.704213px;}
.y43{bottom:31.890000px;}
.y11{bottom:104.646000px;}
.y42{bottom:114.583500px;}
.y10{bottom:122.535000px;}
.y41{bottom:133.413000px;}
.yf{bottom:140.422500px;}
.y40{bottom:152.242500px;}
.ye{bottom:158.310000px;}
.y3f{bottom:171.072000px;}
.yd{bottom:176.199000px;}
.y3e{bottom:189.901500px;}
.yc{bottom:194.086500px;}
.y3d{bottom:208.731000px;}
.yb{bottom:211.974000px;}
.y3c{bottom:227.560500px;}
.ya{bottom:229.863000px;}
.y3b{bottom:246.390000px;}
.y3a{bottom:265.219500px;}
.y39{bottom:284.049000px;}
.y9{bottom:299.892000px;}
.y38{bottom:302.878500px;}
.y8{bottom:317.779500px;}
.y37{bottom:321.708000px;}
.y6d{bottom:322.401000px;}
.y7{bottom:335.667000px;}
.y6c{bottom:339.661500px;}
.y36{bottom:340.537500px;}
.y6{bottom:353.554500px;}
.y6b{bottom:356.922000px;}
.y35{bottom:359.367000px;}
.y34{bottom:378.196500px;}
.y5{bottom:380.409000px;}
.y6a{bottom:396.001500px;}
.y33{bottom:397.026000px;}
.y4{bottom:398.298000px;}
.y69{bottom:413.260500px;}
.y32{bottom:415.855500px;}
.y3{bottom:416.185500px;}
.y68{bottom:430.521000px;}
.y2{bottom:434.073000px;}
.y31{bottom:434.685000px;}
.y67{bottom:447.781500px;}
.y1{bottom:451.962000px;}
.y30{bottom:453.514500px;}
.y66{bottom:465.042000px;}
.y2f{bottom:472.344000px;}
.y65{bottom:482.302500px;}
.y2e{bottom:491.173500px;}
.y64{bottom:499.563000px;}
.y2d{bottom:510.001500px;}
.y63{bottom:516.823500px;}
.y2c{bottom:528.831000px;}
.y62{bottom:534.084000px;}
.y2b{bottom:547.660500px;}
.y61{bottom:551.343000px;}
.y2a{bottom:566.490000px;}
.y60{bottom:568.603500px;}
.y29{bottom:585.319500px;}
.y5f{bottom:585.864000px;}
.y5e{bottom:603.124500px;}
.y28{bottom:604.149000px;}
.y5d{bottom:620.385000px;}
.y27{bottom:622.978500px;}
.y5c{bottom:637.645500px;}
.y26{bottom:641.808000px;}
.y5b{bottom:654.906000px;}
.y25{bottom:660.637500px;}
.y5a{bottom:672.166500px;}
.y24{bottom:679.467000px;}
.y59{bottom:689.427000px;}
.y23{bottom:698.296500px;}
.y58{bottom:711.169500px;}
.y22{bottom:717.126000px;}
.y21{bottom:735.955500px;}
.y57{bottom:744.793500px;}
.y20{bottom:754.785000px;}
.y56{bottom:771.334500px;}
.y1f{bottom:773.614500px;}
.y55{bottom:788.908500px;}
.y1e{bottom:792.444000px;}
.y54{bottom:806.482500px;}
.y1d{bottom:811.273500px;}
.y1c{bottom:830.103000px;}
.y53{bottom:841.989000px;}
.y1b{bottom:848.932500px;}
.y52{bottom:860.818500px;}
.y1a{bottom:867.762000px;}
.y51{bottom:879.648000px;}
.y50{bottom:898.477500px;}
.y4f{bottom:917.307000px;}
.y4e{bottom:936.136500px;}
.y19{bottom:943.513500px;}
.y4d{bottom:954.966000px;}
.y18{bottom:959.653500px;}
.y4c{bottom:973.795500px;}
.y17{bottom:975.793500px;}
.y4b{bottom:992.625000px;}
.y4a{bottom:1011.454500px;}
.y16{bottom:1024.809000px;}
.y49{bottom:1030.284000px;}
.y48{bottom:1049.113500px;}
.y15{bottom:1064.728500px;}
.y47{bottom:1067.943000px;}
.y46{bottom:1086.772500px;}
.y14{bottom:1092.972000px;}
.y45{bottom:1105.602000px;}
.y12{bottom:1136.460000px;}
.y44{bottom:1168.366500px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h9{height:34.813397px;}
.hb{height:35.052500px;}
.hc{height:38.734848px;}
.hd{height:39.165235px;}
.he{height:39.434227px;}
.h8{height:43.038432px;}
.ha{height:43.516637px;}
.h6{height:43.815515px;}
.h4{height:50.930649px;}
.h5{height:74.315282px;}
.h7{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:240.774407px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x11{left:85.848000px;}
.x18{left:238.488000px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x5{left:281.517000px;}
.x10{left:372.394500px;}
.x8{left:405.255000px;}
.x9{left:412.801500px;}
.xe{left:505.056000px;}
.xf{left:512.529000px;}
.x14{left:686.116500px;}
.x15{left:713.016000px;}
.x6{left:724.513500px;}
.x7{left:732.060000px;}
.x16{left:756.415500px;}
.xa{left:771.316500px;}
.xb{left:778.788000px;}
.x17{left:783.313500px;}
.x12{left:790.062000px;}
.x13{left:816.961500px;}
.xc{left:826.365000px;}
.xd{left:833.838000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000387pt;}
.lsa{letter-spacing:0.000711pt;}
.lsb{letter-spacing:0.001026pt;}
.lsc{letter-spacing:0.002538pt;}
.ls1{letter-spacing:0.265669pt;}
.ls4{letter-spacing:10.626533pt;}
.lse{letter-spacing:11.740338pt;}
.ls9{letter-spacing:11.793820pt;}
.ls8{letter-spacing:11.877636pt;}
.lsd{letter-spacing:11.895467pt;}
.ls7{letter-spacing:11.954133pt;}
.ls3{letter-spacing:13.393964pt;}
.ls6{letter-spacing:14.823467pt;}
.ls0{letter-spacing:25.292137pt;}
.ws29{word-spacing:-13.283467pt;}
.ws40{word-spacing:-11.955200pt;}
.ws33{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.ws3a{word-spacing:-1.147699pt;}
.ws23{word-spacing:-0.637606pt;}
.ws11{word-spacing:-0.371937pt;}
.ws30{word-spacing:-0.318803pt;}
.ws12{word-spacing:-0.265669pt;}
.ws50{word-spacing:-0.239104pt;}
.wse{word-spacing:-0.212535pt;}
.ws48{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.159402pt;}
.ws47{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.ws42{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws39{word-spacing:-0.047821pt;}
.ws34{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws3d{word-spacing:-0.009762pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.053134pt;}
.ws3c{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws4c{word-spacing:0.143462pt;}
.ws45{word-spacing:0.191283pt;}
.ws2d{word-spacing:0.212535pt;}
.ws53{word-spacing:0.239104pt;}
.ws37{word-spacing:0.371937pt;}
.ws19{word-spacing:0.510010pt;}
.ws17{word-spacing:0.531339pt;}
.ws14{word-spacing:0.690740pt;}
.ws4b{word-spacing:0.908595pt;}
.ws1c{word-spacing:0.956410pt;}
.ws1b{word-spacing:1.381481pt;}
.ws1e{word-spacing:1.859685pt;}
.ws2{word-spacing:2.230700pt;}
.ws0{word-spacing:2.232481pt;}
.ws35{word-spacing:2.337890pt;}
.wsd{word-spacing:2.550432pt;}
.ws2b{word-spacing:2.762961pt;}
.ws44{word-spacing:2.869248pt;}
.ws41{word-spacing:3.012710pt;}
.ws1d{word-spacing:3.188032pt;}
.ws36{word-spacing:3.241166pt;}
.ws2f{word-spacing:3.347434pt;}
.ws38{word-spacing:3.559969pt;}
.ws52{word-spacing:3.777843pt;}
.ws51{word-spacing:4.112589pt;}
.wsb{word-spacing:4.240070pt;}
.wsc{word-spacing:4.314458pt;}
.ws21{word-spacing:4.835182pt;}
.ws2c{word-spacing:4.888316pt;}
.ws22{word-spacing:4.941450pt;}
.ws20{word-spacing:5.525922pt;}
.wsf{word-spacing:5.738458pt;}
.ws4f{word-spacing:6.025421pt;}
.ws10{word-spacing:6.854269pt;}
.ws9{word-spacing:6.918010pt;}
.ws27{word-spacing:7.066804pt;}
.ws28{word-spacing:7.173072pt;}
.ws3{word-spacing:9.262735pt;}
.ws32{word-spacing:10.582190pt;}
.ws3b{word-spacing:10.758282pt;}
.ws7{word-spacing:10.823338pt;}
.ws4e{word-spacing:11.821645pt;}
.ws4a{word-spacing:11.901645pt;}
.ws3f{word-spacing:11.904299pt;}
.ws3e{word-spacing:11.907379pt;}
.ws4d{word-spacing:12.050842pt;}
.ws49{word-spacing:12.091651pt;}
.ws46{word-spacing:12.098662pt;}
.ws2a{word-spacing:13.109394pt;}
.ws31{word-spacing:13.341528pt;}
.ws2e{word-spacing:13.352850pt;}
.ws1a{word-spacing:13.761671pt;}
.ws18{word-spacing:13.766408pt;}
.ws15{word-spacing:13.916064pt;}
.ws8{word-spacing:14.319536pt;}
.ws43{word-spacing:14.680986pt;}
.ws26{word-spacing:20.276696pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
._7{margin-left:-5.531338pt;}
._1{margin-left:-4.128490pt;}
._0{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._15{width:2.630144pt;}
._4{width:11.530016pt;}
._10{width:12.984342pt;}
._13{width:13.966251pt;}
._c{width:15.036884pt;}
._14{width:16.094434pt;}
._9{width:17.013460pt;}
._a{width:19.712665pt;}
._b{width:20.833891pt;}
._3{width:23.055765pt;}
._d{width:24.388445pt;}
._5{width:27.188522pt;}
._f{width:31.827186pt;}
._e{width:33.474336pt;}
._8{width:38.203250pt;}
._6{width:61.661637pt;}
._11{width:316.083525pt;}
._12{width:2145.085777pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:97.430720pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:14.848190pt;}
.y43{bottom:28.346667pt;}
.y11{bottom:93.018667pt;}
.y42{bottom:101.852000pt;}
.y10{bottom:108.920000pt;}
.y41{bottom:118.589333pt;}
.yf{bottom:124.820000pt;}
.y40{bottom:135.326667pt;}
.ye{bottom:140.720000pt;}
.y3f{bottom:152.064000pt;}
.yd{bottom:156.621333pt;}
.y3e{bottom:168.801333pt;}
.yc{bottom:172.521333pt;}
.y3d{bottom:185.538667pt;}
.yb{bottom:188.421333pt;}
.y3c{bottom:202.276000pt;}
.ya{bottom:204.322667pt;}
.y3b{bottom:219.013333pt;}
.y3a{bottom:235.750667pt;}
.y39{bottom:252.488000pt;}
.y9{bottom:266.570667pt;}
.y38{bottom:269.225333pt;}
.y8{bottom:282.470667pt;}
.y37{bottom:285.962667pt;}
.y6d{bottom:286.578667pt;}
.y7{bottom:298.370667pt;}
.y6c{bottom:301.921333pt;}
.y36{bottom:302.700000pt;}
.y6{bottom:314.270667pt;}
.y6b{bottom:317.264000pt;}
.y35{bottom:319.437333pt;}
.y34{bottom:336.174667pt;}
.y5{bottom:338.141333pt;}
.y6a{bottom:352.001333pt;}
.y33{bottom:352.912000pt;}
.y4{bottom:354.042667pt;}
.y69{bottom:367.342667pt;}
.y32{bottom:369.649333pt;}
.y3{bottom:369.942667pt;}
.y68{bottom:382.685333pt;}
.y2{bottom:385.842667pt;}
.y31{bottom:386.386667pt;}
.y67{bottom:398.028000pt;}
.y1{bottom:401.744000pt;}
.y30{bottom:403.124000pt;}
.y66{bottom:413.370667pt;}
.y2f{bottom:419.861333pt;}
.y65{bottom:428.713333pt;}
.y2e{bottom:436.598667pt;}
.y64{bottom:444.056000pt;}
.y2d{bottom:453.334667pt;}
.y63{bottom:459.398667pt;}
.y2c{bottom:470.072000pt;}
.y62{bottom:474.741333pt;}
.y2b{bottom:486.809333pt;}
.y61{bottom:490.082667pt;}
.y2a{bottom:503.546667pt;}
.y60{bottom:505.425333pt;}
.y29{bottom:520.284000pt;}
.y5f{bottom:520.768000pt;}
.y5e{bottom:536.110667pt;}
.y28{bottom:537.021333pt;}
.y5d{bottom:551.453333pt;}
.y27{bottom:553.758667pt;}
.y5c{bottom:566.796000pt;}
.y26{bottom:570.496000pt;}
.y5b{bottom:582.138667pt;}
.y25{bottom:587.233333pt;}
.y5a{bottom:597.481333pt;}
.y24{bottom:603.970667pt;}
.y59{bottom:612.824000pt;}
.y23{bottom:620.708000pt;}
.y58{bottom:632.150667pt;}
.y22{bottom:637.445333pt;}
.y21{bottom:654.182667pt;}
.y57{bottom:662.038667pt;}
.y20{bottom:670.920000pt;}
.y56{bottom:685.630667pt;}
.y1f{bottom:687.657333pt;}
.y55{bottom:701.252000pt;}
.y1e{bottom:704.394667pt;}
.y54{bottom:716.873333pt;}
.y1d{bottom:721.132000pt;}
.y1c{bottom:737.869333pt;}
.y53{bottom:748.434667pt;}
.y1b{bottom:754.606667pt;}
.y52{bottom:765.172000pt;}
.y1a{bottom:771.344000pt;}
.y51{bottom:781.909333pt;}
.y50{bottom:798.646667pt;}
.y4f{bottom:815.384000pt;}
.y4e{bottom:832.121333pt;}
.y19{bottom:838.678667pt;}
.y4d{bottom:848.858667pt;}
.y18{bottom:853.025333pt;}
.y4c{bottom:865.596000pt;}
.y17{bottom:867.372000pt;}
.y4b{bottom:882.333333pt;}
.y4a{bottom:899.070667pt;}
.y16{bottom:910.941333pt;}
.y49{bottom:915.808000pt;}
.y48{bottom:932.545333pt;}
.y15{bottom:946.425333pt;}
.y47{bottom:949.282667pt;}
.y46{bottom:966.020000pt;}
.y14{bottom:971.530667pt;}
.y45{bottom:982.757333pt;}
.y12{bottom:1010.186667pt;}
.y44{bottom:1038.548000pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h9{height:30.945242pt;}
.hb{height:31.157778pt;}
.hc{height:34.430976pt;}
.hd{height:34.813542pt;}
.he{height:35.052646pt;}
.h8{height:38.256384pt;}
.ha{height:38.681455pt;}
.h6{height:38.947124pt;}
.h4{height:45.271688pt;}
.h5{height:66.058028pt;}
.h7{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:214.021695pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x11{left:76.309333pt;}
.x18{left:211.989333pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5{left:250.237333pt;}
.x10{left:331.017333pt;}
.x8{left:360.226667pt;}
.x9{left:366.934667pt;}
.xe{left:448.938667pt;}
.xf{left:455.581333pt;}
.x14{left:609.881333pt;}
.x15{left:633.792000pt;}
.x6{left:644.012000pt;}
.x7{left:650.720000pt;}
.x16{left:672.369333pt;}
.xa{left:685.614667pt;}
.xb{left:692.256000pt;}
.x17{left:696.278667pt;}
.x12{left:702.277333pt;}
.x13{left:726.188000pt;}
.xc{left:734.546667pt;}
.xd{left:741.189333pt;}
}




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