
    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_b750e79c3454954730e0f980.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_280f63987f33e96571b6512e.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_b42ee7aaaef4efd4b4f9d2bb.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_216e58f598ab55952f682d7c.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_6bd358ee9394032bc2e7c8cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_2670e38c320903f87dcd2695.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.696777;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_89dcb478a96a18a0b526fcd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_34afa9a375972a6f4c97721b.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{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);}
.mb{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);}
.m16{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);}
.m4{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);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m7{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);}
.m15{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);}
.m10{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);}
.m3{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);}
.me{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);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m13{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);}
.md{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);}
.m11{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);}
.m12{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);}
.m9{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);}
.ma{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.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);}
.mc{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls6{letter-spacing:-0.134669px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.954850px;}
.ls7{letter-spacing:13.448400px;}
.ls8{letter-spacing:15.920988px;}
.ls1{letter-spacing:17.929200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.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;}
}
.wsc{word-spacing:-93.519509px;}
.ws34{word-spacing:-13.449600px;}
.ws21{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws10{word-spacing:-2.528525px;}
.ws14{word-spacing:-1.075968px;}
.ws1a{word-spacing:-0.860774px;}
.ws28{word-spacing:-0.537984px;}
.ws1e{word-spacing:-0.268992px;}
.ws1b{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.053798px;}
.ws1d{word-spacing:0.107597px;}
.ws16{word-spacing:0.161395px;}
.ws2a{word-spacing:0.215194px;}
.ws1f{word-spacing:0.268992px;}
.ws2b{word-spacing:0.645581px;}
.ws13{word-spacing:0.699379px;}
.ws25{word-spacing:1.129766px;}
.ws26{word-spacing:1.237363px;}
.ws11{word-spacing:1.344960px;}
.ws36{word-spacing:1.936742px;}
.ws32{word-spacing:2.313331px;}
.ws38{word-spacing:2.474726px;}
.ws2{word-spacing:2.508158px;}
.ws0{word-spacing:2.511541px;}
.wsf{word-spacing:2.869236px;}
.ws2e{word-spacing:3.120307px;}
.ws17{word-spacing:3.219667px;}
.ws31{word-spacing:3.224822px;}
.ws3e{word-spacing:3.335501px;}
.ws29{word-spacing:3.389299px;}
.ws2d{word-spacing:3.443098px;}
.ws27{word-spacing:3.658291px;}
.ws3c{word-spacing:3.873485px;}
.ws35{word-spacing:4.034880px;}
.ws24{word-spacing:4.196275px;}
.ws42{word-spacing:4.250074px;}
.ws41{word-spacing:4.626662px;}
.wsa{word-spacing:4.770079px;}
.wsb{word-spacing:4.853765px;}
.ws30{word-spacing:5.433638px;}
.ws2f{word-spacing:5.756429px;}
.ws3f{word-spacing:5.917824px;}
.ws15{word-spacing:6.993792px;}
.ws8{word-spacing:7.782761px;}
.ws19{word-spacing:10.759680px;}
.ws18{word-spacing:11.243866px;}
.ws20{word-spacing:11.900582px;}
.ws6{word-spacing:12.176255px;}
.ws3b{word-spacing:13.387469px;}
.ws33{word-spacing:13.388486px;}
.ws40{word-spacing:13.394563px;}
.ws3d{word-spacing:13.395802px;}
.wsd{word-spacing:14.884124px;}
.ws7{word-spacing:16.109478px;}
.ws3a{word-spacing:16.615306px;}
.ws39{word-spacing:16.623706px;}
.ws37{word-spacing:22.864320px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
._7{margin-left:-6.168857px;}
._8{margin-left:-5.057050px;}
._3{margin-left:-3.096367px;}
._0{margin-left:-1.506341px;}
._5{width:2.998096px;}
._e{width:10.930664px;}
._2{width:12.971268px;}
._12{width:14.310374px;}
._d{width:15.709133px;}
._a{width:16.838870px;}
._11{width:18.668045px;}
._9{width:20.819966px;}
._13{width:21.985625px;}
._15{width:23.043665px;}
._14{width:24.753168px;}
._1{width:25.946136px;}
._c{width:27.099086px;}
._4{width:30.587087px;}
._b{width:37.228493px;}
._6{width:54.410984px;}
._f{width:646.347356px;}
._10{width:2501.234700px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:transparent;}
.fc1{color:rgb(65,127,142);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:48.096000px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:120.205025px;}
.y2c{bottom:-570.849175px;}
.y2b{bottom:-554.649240px;}
.y0{bottom:0.000000px;}
.y2d{bottom:2.702839px;}
.y17{bottom:17.541026px;}
.y38{bottom:31.890000px;}
.y6c{bottom:95.406000px;}
.y15{bottom:104.646000px;}
.y6b{bottom:112.666500px;}
.y37{bottom:118.075500px;}
.y14{bottom:122.535000px;}
.y6a{bottom:129.927000px;}
.y36{bottom:137.308500px;}
.y13{bottom:140.422500px;}
.y69{bottom:147.187500px;}
.y35{bottom:156.541500px;}
.y12{bottom:158.310000px;}
.y68{bottom:164.448000px;}
.y34{bottom:175.774500px;}
.y11{bottom:176.199000px;}
.y67{bottom:181.708500px;}
.y10{bottom:194.086500px;}
.y33{bottom:195.007500px;}
.y66{bottom:198.967500px;}
.yf{bottom:211.974000px;}
.y32{bottom:214.240500px;}
.y65{bottom:216.228000px;}
.ye{bottom:229.863000px;}
.y31{bottom:233.473500px;}
.y64{bottom:233.488500px;}
.y63{bottom:250.749000px;}
.y30{bottom:252.706500px;}
.y62{bottom:268.009500px;}
.y2f{bottom:271.939500px;}
.y61{bottom:285.270000px;}
.y2e{bottom:291.172500px;}
.yd{bottom:299.892000px;}
.y60{bottom:302.530500px;}
.y2a{bottom:313.600500px;}
.yc{bottom:317.779500px;}
.y5f{bottom:324.273000px;}
.yb{bottom:335.667000px;}
.ya{bottom:353.556000px;}
.y5e{bottom:357.897000px;}
.y9{bottom:381.904500px;}
.y5d{bottom:384.438000px;}
.y8{bottom:399.792000px;}
.y5c{bottom:410.979000px;}
.y7{bottom:426.646500px;}
.y5b{bottom:428.553000px;}
.y6{bottom:444.534000px;}
.y5a{bottom:455.094000px;}
.y5{bottom:462.423000px;}
.y4{bottom:480.310500px;}
.y59{bottom:481.633500px;}
.y3{bottom:498.198000px;}
.y58{bottom:508.174500px;}
.y2{bottom:516.087000px;}
.y57{bottom:525.748500px;}
.y1{bottom:533.974500px;}
.y56{bottom:543.322500px;}
.y55{bottom:587.796000px;}
.y54{bottom:607.029000px;}
.y53{bottom:626.262000px;}
.y52{bottom:645.495000px;}
.y51{bottom:664.728000px;}
.y29{bottom:672.360000px;}
.y50{bottom:683.959500px;}
.y4f{bottom:703.192500px;}
.y28{bottom:709.750500px;}
.y4e{bottom:722.425500px;}
.y27{bottom:729.207000px;}
.y4d{bottom:741.658500px;}
.y26{bottom:748.665000px;}
.y4c{bottom:760.891500px;}
.y25{bottom:768.121500px;}
.y4b{bottom:780.124500px;}
.y24{bottom:787.578000px;}
.y4a{bottom:799.357500px;}
.y23{bottom:807.036000px;}
.y49{bottom:818.590500px;}
.y22{bottom:826.492500px;}
.y48{bottom:837.823500px;}
.y21{bottom:845.950500px;}
.y47{bottom:857.055000px;}
.y46{bottom:876.288000px;}
.y20{bottom:883.833000px;}
.y45{bottom:895.521000px;}
.y1f{bottom:899.973000px;}
.y44{bottom:914.754000px;}
.y1e{bottom:920.452500px;}
.y1d{bottom:932.251500px;}
.y43{bottom:933.987000px;}
.y1c{bottom:952.731000px;}
.y42{bottom:953.220000px;}
.y74{bottom:962.961000px;}
.y41{bottom:972.453000px;}
.y73{bottom:980.221500px;}
.y40{bottom:991.686000px;}
.y1b{bottom:996.705000px;}
.y72{bottom:997.482000px;}
.y3f{bottom:1010.919000px;}
.y3e{bottom:1030.152000px;}
.y71{bottom:1036.560000px;}
.y1a{bottom:1036.624500px;}
.y3d{bottom:1049.383500px;}
.y70{bottom:1053.820500px;}
.y19{bottom:1064.869500px;}
.y3c{bottom:1068.616500px;}
.y6f{bottom:1071.081000px;}
.y3b{bottom:1087.849500px;}
.y6e{bottom:1088.341500px;}
.y18{bottom:1093.113000px;}
.y6d{bottom:1105.602000px;}
.y3a{bottom:1107.082500px;}
.y16{bottom:1136.599500px;}
.y39{bottom:1168.366500px;}
.hd{height:25.070054px;}
.h9{height:26.110157px;}
.h11{height:27.524478px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.hf{height:33.324328px;}
.ha{height:34.813397px;}
.h10{height:35.052500px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h13{height:39.434227px;}
.h12{height:43.038432px;}
.h6{height:43.815515px;}
.h4{height:50.617695px;}
.h8{height:54.411312px;}
.h7{height:77.469696px;}
.h5{height:81.499007px;}
.he{height:294.873600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:196.289934px;}
.w3{width:537.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:2.804400px;}
.x1{left:53.574000px;}
.x2{left:57.699701px;}
.x28{left:85.848000px;}
.x2b{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xc{left:265.185000px;}
.x4{left:269.914500px;}
.xd{left:273.492000px;}
.x14{left:280.396500px;}
.x1a{left:297.103500px;}
.x1b{left:303.829500px;}
.x6{left:307.789500px;}
.xb{left:318.078000px;}
.xe{left:321.837000px;}
.xf{left:332.299500px;}
.x25{left:381.928500px;}
.x26{left:388.654500px;}
.x17{left:394.741500px;}
.x18{left:403.048500px;}
.x12{left:420.268500px;}
.x15{left:427.320000px;}
.x13{left:428.575500px;}
.x27{left:434.922000px;}
.x16{left:442.677000px;}
.x1e{left:470.403000px;}
.x1f{left:477.129000px;}
.x1c{left:502.858500px;}
.x1d{left:509.583000px;}
.x10{left:526.389000px;}
.x20{left:527.833500px;}
.xa{left:533.801839px;}
.x11{left:535.359000px;}
.x7{left:632.953500px;}
.x8{left:641.260500px;}
.x19{left:647.490000px;}
.x29{left:734.227500px;}
.x21{left:758.499000px;}
.x2a{left:761.125500px;}
.x22{left:765.223500px;}
.x23{left:784.089000px;}
.x24{left:790.813500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls6{letter-spacing:-0.119706pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.626533pt;}
.ls7{letter-spacing:11.954133pt;}
.ls8{letter-spacing:14.151990pt;}
.ls1{letter-spacing:15.937067pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.wsc{word-spacing:-83.128453pt;}
.ws34{word-spacing:-11.955200pt;}
.ws21{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws10{word-spacing:-2.247578pt;}
.ws14{word-spacing:-0.956416pt;}
.ws1a{word-spacing:-0.765133pt;}
.ws28{word-spacing:-0.478208pt;}
.ws1e{word-spacing:-0.239104pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.095642pt;}
.ws16{word-spacing:0.143462pt;}
.ws2a{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.239104pt;}
.ws2b{word-spacing:0.573850pt;}
.ws13{word-spacing:0.621670pt;}
.ws25{word-spacing:1.004237pt;}
.ws26{word-spacing:1.099878pt;}
.ws11{word-spacing:1.195520pt;}
.ws36{word-spacing:1.721549pt;}
.ws32{word-spacing:2.056294pt;}
.ws38{word-spacing:2.199757pt;}
.ws2{word-spacing:2.229474pt;}
.ws0{word-spacing:2.232481pt;}
.wsf{word-spacing:2.550432pt;}
.ws2e{word-spacing:2.773606pt;}
.ws17{word-spacing:2.861926pt;}
.ws31{word-spacing:2.866509pt;}
.ws3e{word-spacing:2.964890pt;}
.ws29{word-spacing:3.012710pt;}
.ws2d{word-spacing:3.060531pt;}
.ws27{word-spacing:3.251814pt;}
.ws3c{word-spacing:3.443098pt;}
.ws35{word-spacing:3.586560pt;}
.ws24{word-spacing:3.730022pt;}
.ws42{word-spacing:3.777843pt;}
.ws41{word-spacing:4.112589pt;}
.wsa{word-spacing:4.240070pt;}
.wsb{word-spacing:4.314458pt;}
.ws30{word-spacing:4.829901pt;}
.ws2f{word-spacing:5.116826pt;}
.ws3f{word-spacing:5.260288pt;}
.ws15{word-spacing:6.216704pt;}
.ws8{word-spacing:6.918010pt;}
.ws19{word-spacing:9.564160pt;}
.ws18{word-spacing:9.994547pt;}
.ws20{word-spacing:10.578295pt;}
.ws6{word-spacing:10.823338pt;}
.ws3b{word-spacing:11.899972pt;}
.ws33{word-spacing:11.900877pt;}
.ws40{word-spacing:11.906278pt;}
.ws3d{word-spacing:11.907379pt;}
.wsd{word-spacing:13.230333pt;}
.ws7{word-spacing:14.319536pt;}
.ws3a{word-spacing:14.769161pt;}
.ws39{word-spacing:14.776627pt;}
.ws37{word-spacing:20.323840pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
._7{margin-left:-5.483429pt;}
._8{margin-left:-4.495155pt;}
._3{margin-left:-2.752326pt;}
._0{margin-left:-1.338970pt;}
._5{width:2.664974pt;}
._e{width:9.716146pt;}
._2{width:11.530016pt;}
._12{width:12.720333pt;}
._d{width:13.963674pt;}
._a{width:14.967885pt;}
._11{width:16.593818pt;}
._9{width:18.506637pt;}
._13{width:19.542778pt;}
._15{width:20.483258pt;}
._14{width:22.002816pt;}
._1{width:23.063232pt;}
._c{width:24.088077pt;}
._4{width:27.188522pt;}
._b{width:33.091994pt;}
._6{width:48.365319pt;}
._f{width:574.530983pt;}
._10{width:2223.319733pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.752000pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:106.848911pt;}
.y2c{bottom:-507.421489pt;}
.y2b{bottom:-493.021547pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:2.402524pt;}
.y17{bottom:15.592023pt;}
.y38{bottom:28.346667pt;}
.y6c{bottom:84.805333pt;}
.y15{bottom:93.018667pt;}
.y6b{bottom:100.148000pt;}
.y37{bottom:104.956000pt;}
.y14{bottom:108.920000pt;}
.y6a{bottom:115.490667pt;}
.y36{bottom:122.052000pt;}
.y13{bottom:124.820000pt;}
.y69{bottom:130.833333pt;}
.y35{bottom:139.148000pt;}
.y12{bottom:140.720000pt;}
.y68{bottom:146.176000pt;}
.y34{bottom:156.244000pt;}
.y11{bottom:156.621333pt;}
.y67{bottom:161.518667pt;}
.y10{bottom:172.521333pt;}
.y33{bottom:173.340000pt;}
.y66{bottom:176.860000pt;}
.yf{bottom:188.421333pt;}
.y32{bottom:190.436000pt;}
.y65{bottom:192.202667pt;}
.ye{bottom:204.322667pt;}
.y31{bottom:207.532000pt;}
.y64{bottom:207.545333pt;}
.y63{bottom:222.888000pt;}
.y30{bottom:224.628000pt;}
.y62{bottom:238.230667pt;}
.y2f{bottom:241.724000pt;}
.y61{bottom:253.573333pt;}
.y2e{bottom:258.820000pt;}
.yd{bottom:266.570667pt;}
.y60{bottom:268.916000pt;}
.y2a{bottom:278.756000pt;}
.yc{bottom:282.470667pt;}
.y5f{bottom:288.242667pt;}
.yb{bottom:298.370667pt;}
.ya{bottom:314.272000pt;}
.y5e{bottom:318.130667pt;}
.y9{bottom:339.470667pt;}
.y5d{bottom:341.722667pt;}
.y8{bottom:355.370667pt;}
.y5c{bottom:365.314667pt;}
.y7{bottom:379.241333pt;}
.y5b{bottom:380.936000pt;}
.y6{bottom:395.141333pt;}
.y5a{bottom:404.528000pt;}
.y5{bottom:411.042667pt;}
.y4{bottom:426.942667pt;}
.y59{bottom:428.118667pt;}
.y3{bottom:442.842667pt;}
.y58{bottom:451.710667pt;}
.y2{bottom:458.744000pt;}
.y57{bottom:467.332000pt;}
.y1{bottom:474.644000pt;}
.y56{bottom:482.953333pt;}
.y55{bottom:522.485333pt;}
.y54{bottom:539.581333pt;}
.y53{bottom:556.677333pt;}
.y52{bottom:573.773333pt;}
.y51{bottom:590.869333pt;}
.y29{bottom:597.653333pt;}
.y50{bottom:607.964000pt;}
.y4f{bottom:625.060000pt;}
.y28{bottom:630.889333pt;}
.y4e{bottom:642.156000pt;}
.y27{bottom:648.184000pt;}
.y4d{bottom:659.252000pt;}
.y26{bottom:665.480000pt;}
.y4c{bottom:676.348000pt;}
.y25{bottom:682.774667pt;}
.y4b{bottom:693.444000pt;}
.y24{bottom:700.069333pt;}
.y4a{bottom:710.540000pt;}
.y23{bottom:717.365333pt;}
.y49{bottom:727.636000pt;}
.y22{bottom:734.660000pt;}
.y48{bottom:744.732000pt;}
.y21{bottom:751.956000pt;}
.y47{bottom:761.826667pt;}
.y46{bottom:778.922667pt;}
.y20{bottom:785.629333pt;}
.y45{bottom:796.018667pt;}
.y1f{bottom:799.976000pt;}
.y44{bottom:813.114667pt;}
.y1e{bottom:818.180000pt;}
.y1d{bottom:828.668000pt;}
.y43{bottom:830.210667pt;}
.y1c{bottom:846.872000pt;}
.y42{bottom:847.306667pt;}
.y74{bottom:855.965333pt;}
.y41{bottom:864.402667pt;}
.y73{bottom:871.308000pt;}
.y40{bottom:881.498667pt;}
.y1b{bottom:885.960000pt;}
.y72{bottom:886.650667pt;}
.y3f{bottom:898.594667pt;}
.y3e{bottom:915.690667pt;}
.y71{bottom:921.386667pt;}
.y1a{bottom:921.444000pt;}
.y3d{bottom:932.785333pt;}
.y70{bottom:936.729333pt;}
.y19{bottom:946.550667pt;}
.y3c{bottom:949.881333pt;}
.y6f{bottom:952.072000pt;}
.y3b{bottom:966.977333pt;}
.y6e{bottom:967.414667pt;}
.y18{bottom:971.656000pt;}
.y6d{bottom:982.757333pt;}
.y3a{bottom:984.073333pt;}
.y16{bottom:1010.310667pt;}
.y39{bottom:1038.548000pt;}
.hd{height:22.284493pt;}
.h9{height:23.209028pt;}
.h11{height:24.466203pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.hf{height:29.621625pt;}
.ha{height:30.945242pt;}
.h10{height:31.157778pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h13{height:35.052646pt;}
.h12{height:38.256384pt;}
.h6{height:38.947124pt;}
.h4{height:44.993506pt;}
.h8{height:48.365611pt;}
.h7{height:68.861952pt;}
.h5{height:72.443562pt;}
.he{height:262.109867pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:174.479941pt;}
.w3{width:477.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:2.492800pt;}
.x1{left:47.621333pt;}
.x2{left:51.288623pt;}
.x28{left:76.309333pt;}
.x2b{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xc{left:235.720000pt;}
.x4{left:239.924000pt;}
.xd{left:243.104000pt;}
.x14{left:249.241333pt;}
.x1a{left:264.092000pt;}
.x1b{left:270.070667pt;}
.x6{left:273.590667pt;}
.xb{left:282.736000pt;}
.xe{left:286.077333pt;}
.xf{left:295.377333pt;}
.x25{left:339.492000pt;}
.x26{left:345.470667pt;}
.x17{left:350.881333pt;}
.x18{left:358.265333pt;}
.x12{left:373.572000pt;}
.x15{left:379.840000pt;}
.x13{left:380.956000pt;}
.x27{left:386.597333pt;}
.x16{left:393.490667pt;}
.x1e{left:418.136000pt;}
.x1f{left:424.114667pt;}
.x1c{left:446.985333pt;}
.x1d{left:452.962667pt;}
.x10{left:467.901333pt;}
.x20{left:469.185333pt;}
.xa{left:474.490523pt;}
.x11{left:475.874667pt;}
.x7{left:562.625333pt;}
.x8{left:570.009333pt;}
.x19{left:575.546667pt;}
.x29{left:652.646667pt;}
.x21{left:674.221333pt;}
.x2a{left:676.556000pt;}
.x22{left:680.198667pt;}
.x23{left:696.968000pt;}
.x24{left:702.945333pt;}
}




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