
    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_5e416a7d528d78ac341ad272.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_a793e77df4d67d1f8afc260f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_f2f5f95c73c3cf1dc37828b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_d4069a6bc1d8612911ea0b02.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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;}
.m2{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);}
.m3{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);}
.md{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);}
.m9{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);}
.m1d{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);}
.m12{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);}
.m14{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);}
.m1a{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);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m1f{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);}
.m15{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);}
.mf{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);}
.m4{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);}
.m17{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);}
.m1e{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);}
.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);}
.m18{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);}
.m13{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);}
.m16{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);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.mc{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);}
.m20{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);}
.m19{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);}
.ma{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);}
.m1c{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);}
.m10{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);}
.m8{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);}
.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);}
.me{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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-13.449600px;}
.ws2a{word-spacing:-3.981082px;}
.ws3c{word-spacing:-3.281702px;}
.ws18{word-spacing:-3.227904px;}
.ws41{word-spacing:-3.120307px;}
.ws36{word-spacing:-3.066509px;}
.ws3a{word-spacing:-2.797517px;}
.ws28{word-spacing:-2.689920px;}
.ws2f{word-spacing:-2.636122px;}
.ws35{word-spacing:-2.420928px;}
.ws27{word-spacing:-2.259533px;}
.ws37{word-spacing:-2.098138px;}
.ws24{word-spacing:-1.560154px;}
.ws14{word-spacing:-1.237363px;}
.ws31{word-spacing:-1.129766px;}
.ws7{word-spacing:-1.022170px;}
.ws39{word-spacing:-0.914573px;}
.ws2d{word-spacing:-0.699379px;}
.ws2e{word-spacing:-0.645581px;}
.ws1c{word-spacing:-0.591782px;}
.ws3b{word-spacing:-0.537984px;}
.ws2b{word-spacing:-0.484186px;}
.ws26{word-spacing:-0.430387px;}
.ws15{word-spacing:-0.322790px;}
.ws19{word-spacing:-0.268992px;}
.wse{word-spacing:-0.215194px;}
.wsc{word-spacing:-0.206625px;}
.ws1e{word-spacing:-0.161395px;}
.wsf{word-spacing:-0.107597px;}
.wsb{word-spacing:-0.053798px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.053798px;}
.ws8{word-spacing:0.107597px;}
.ws17{word-spacing:0.161395px;}
.ws16{word-spacing:0.215194px;}
.ws12{word-spacing:0.268992px;}
.ws25{word-spacing:0.322790px;}
.ws9{word-spacing:0.376589px;}
.ws23{word-spacing:0.430387px;}
.ws10{word-spacing:0.753178px;}
.ws21{word-spacing:0.860774px;}
.ws1f{word-spacing:0.968371px;}
.ws3d{word-spacing:1.075968px;}
.ws34{word-spacing:1.291162px;}
.ws13{word-spacing:1.398758px;}
.ws30{word-spacing:1.560154px;}
.ws1a{word-spacing:1.667750px;}
.ws32{word-spacing:1.882944px;}
.ws3e{word-spacing:2.098138px;}
.ws38{word-spacing:2.582323px;}
.ws20{word-spacing:2.689920px;}
.ws22{word-spacing:2.797517px;}
.ws2c{word-spacing:2.958912px;}
.ws33{word-spacing:3.227904px;}
.ws11{word-spacing:3.335501px;}
.ws3f{word-spacing:3.927283px;}
.ws29{word-spacing:4.196275px;}
.ws40{word-spacing:6.294413px;}
.wsd{word-spacing:13.180608px;}
.ws4{word-spacing:13.380068px;}
.ws1{word-spacing:13.381732px;}
.ws3{word-spacing:13.383424px;}
.ws6{word-spacing:13.395802px;}
.ws5{word-spacing:13.409854px;}
.ws42{word-spacing:16.434298px;}
.ws0{word-spacing:17.861069px;}
.ws1d{word-spacing:53.744602px;}
._3{margin-left:-7.330915px;}
._0{margin-left:-3.861821px;}
._2{margin-left:-2.002204px;}
._5{width:1.052641px;}
._b{width:2.163599px;}
._7{width:11.835648px;}
._8{width:14.364173px;}
._1{width:16.363650px;}
._9{width:28.028966px;}
._c{width:29.911910px;}
._4{width:53.798400px;}
._a{width:1315.424678px;}
._6{width:1752.536678px;}
._d{width:1753.774042px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y24{bottom:208.855500px;}
.y8b{bottom:209.511000px;}
.y48{bottom:209.977500px;}
.y69{bottom:218.850000px;}
.y23{bottom:229.404000px;}
.y8a{bottom:230.058000px;}
.y47{bottom:230.526000px;}
.y68{bottom:244.536000px;}
.y22{bottom:249.952500px;}
.y89{bottom:250.606500px;}
.y46{bottom:251.073000px;}
.yb9{bottom:255.744000px;}
.y21{bottom:270.499500px;}
.y88{bottom:271.155000px;}
.y45{bottom:271.621500px;}
.ya4{bottom:276.759000px;}
.y20{bottom:291.048000px;}
.y44{bottom:292.170000px;}
.yb8{bottom:293.571000px;}
.y87{bottom:296.839500px;}
.y67{bottom:301.042500px;}
.y1f{bottom:311.596500px;}
.yb7{bottom:314.118000px;}
.ya3{bottom:315.519000px;}
.y43{bottom:317.854500px;}
.y66{bottom:321.591000px;}
.y1e{bottom:332.143500px;}
.y86{bottom:334.666500px;}
.ya2{bottom:336.067500px;}
.y65{bottom:342.138000px;}
.y1d{bottom:352.692000px;}
.y85{bottom:355.215000px;}
.y42{bottom:356.616000px;}
.y64{bottom:367.824000px;}
.y1c{bottom:373.240500px;}
.y84{bottom:375.762000px;}
.y41{bottom:377.163000px;}
.yb6{bottom:380.899500px;}
.y1b{bottom:393.787500px;}
.y83{bottom:396.310500px;}
.y40{bottom:397.711500px;}
.yb5{bottom:406.584000px;}
.yce{bottom:408.919500px;}
.y1a{bottom:414.336000px;}
.y82{bottom:416.857500px;}
.y3f{bottom:418.258500px;}
.ya1{bottom:423.396000px;}
.y63{bottom:424.330500px;}
.ycd{bottom:429.466500px;}
.y19{bottom:434.883000px;}
.y81{bottom:437.406000px;}
.y3e{bottom:438.807000px;}
.yb4{bottom:444.411000px;}
.y62{bottom:444.877500px;}
.ya0{bottom:449.080500px;}
.ycc{bottom:450.015000px;}
.y18{bottom:455.431500px;}
.y80{bottom:463.090500px;}
.y3d{bottom:464.491500px;}
.yb3{bottom:464.959500px;}
.y61{bottom:465.426000px;}
.ycb{bottom:475.699500px;}
.y17{bottom:475.980000px;}
.yb2{bottom:485.506500px;}
.y60{bottom:485.974500px;}
.y9f{bottom:487.842000px;}
.y7f{bottom:488.776500px;}
.y16{bottom:496.527000px;}
.y3c{bottom:503.253000px;}
.yb1{bottom:506.055000px;}
.y5f{bottom:506.521500px;}
.y9e{bottom:508.390500px;}
.yca{bottom:511.659000px;}
.y15{bottom:517.075500px;}
.y3b{bottom:523.801500px;}
.y7e{bottom:526.603500px;}
.y5e{bottom:527.070000px;}
.y9d{bottom:528.937500px;}
.yb0{bottom:531.739500px;}
.yc9{bottom:532.207500px;}
.y14{bottom:537.624000px;}
.y3a{bottom:544.348500px;}
.y7d{bottom:547.150500px;}
.y5d{bottom:547.618500px;}
.y9c{bottom:549.486000px;}
.yc8{bottom:552.754500px;}
.y13{bottom:558.171000px;}
.y39{bottom:564.897000px;}
.y7c{bottom:567.699000px;}
.y5c{bottom:568.165500px;}
.yaf{bottom:569.566500px;}
.y9b{bottom:570.034500px;}
.yc7{bottom:573.303000px;}
.y12{bottom:578.719500px;}
.y38{bottom:585.445500px;}
.y7b{bottom:588.246000px;}
.y7a{bottom:588.247500px;}
.y5b{bottom:588.714000px;}
.yae{bottom:590.115000px;}
.y9a{bottom:590.581500px;}
.yc6{bottom:593.850000px;}
.y11{bottom:599.266500px;}
.y37{bottom:605.992500px;}
.y5a{bottom:609.261000px;}
.yad{bottom:610.662000px;}
.y99{bottom:611.130000px;}
.y79{bottom:613.932000px;}
.yc5{bottom:614.398500px;}
.y10{bottom:619.815000px;}
.y59{bottom:629.809500px;}
.yac{bottom:631.210500px;}
.y36{bottom:631.677000px;}
.yc4{bottom:634.947000px;}
.y98{bottom:636.814500px;}
.yf{bottom:640.363500px;}
.y58{bottom:650.358000px;}
.y78{bottom:651.759000px;}
.yc3{bottom:655.494000px;}
.ye{bottom:666.048000px;}
.y35{bottom:670.438500px;}
.y57{bottom:670.905000px;}
.y77{bottom:672.306000px;}
.y97{bottom:675.576000px;}
.yc2{bottom:676.042500px;}
.y34{bottom:690.987000px;}
.y56{bottom:691.453500px;}
.y76{bottom:692.854500px;}
.y96{bottom:696.123000px;}
.yab{bottom:697.992000px;}
.yc1{bottom:701.727000px;}
.yd{bottom:702.565500px;}
.y33{bottom:711.534000px;}
.y55{bottom:712.002000px;}
.y75{bottom:713.403000px;}
.y95{bottom:721.809000px;}
.yc{bottom:723.114000px;}
.y54{bottom:732.549000px;}
.y74{bottom:733.950000px;}
.yaa{bottom:735.819000px;}
.y32{bottom:737.220000px;}
.yc0{bottom:737.686500px;}
.yb{bottom:743.661000px;}
.y53{bottom:753.097500px;}
.ya9{bottom:756.366000px;}
.ybf{bottom:758.235000px;}
.y73{bottom:759.636000px;}
.y94{bottom:760.569000px;}
.ya{bottom:764.209500px;}
.y52{bottom:773.646000px;}
.y31{bottom:775.980000px;}
.ya8{bottom:776.914500px;}
.ybe{bottom:778.782000px;}
.y93{bottom:781.117500px;}
.y9{bottom:784.758000px;}
.y51{bottom:794.193000px;}
.y30{bottom:796.528500px;}
.y72{bottom:797.461500px;}
.ybd{bottom:799.330500px;}
.y92{bottom:801.664500px;}
.y8{bottom:810.442500px;}
.y50{bottom:814.741500px;}
.y71{bottom:818.010000px;}
.ybc{bottom:819.877500px;}
.y2f{bottom:822.213000px;}
.y4f{bottom:835.288500px;}
.y70{bottom:838.558500px;}
.ybb{bottom:840.426000px;}
.y91{bottom:842.761500px;}
.y2e{bottom:847.897500px;}
.y7{bottom:848.064000px;}
.y6f{bottom:859.105500px;}
.y4e{bottom:860.974500px;}
.y90{bottom:863.308500px;}
.ya7{bottom:864.243000px;}
.y6e{bottom:879.654000px;}
.yba{bottom:881.521500px;}
.y8f{bottom:883.857000px;}
.y6{bottom:885.802500px;}
.y2d{bottom:886.659000px;}
.ya6{bottom:902.070000px;}
.y8e{bottom:904.405500px;}
.y6d{bottom:905.338500px;}
.y2c{bottom:907.207500px;}
.y5{bottom:910.086000px;}
.y4d{bottom:917.481000px;}
.ya5{bottom:922.618500px;}
.y8d{bottom:924.952500px;}
.y2b{bottom:927.754500px;}
.y4{bottom:934.369500px;}
.y4c{bottom:938.029500px;}
.y6c{bottom:943.165500px;}
.y2a{bottom:948.303000px;}
.y8c{bottom:950.638500px;}
.y4b{bottom:958.576500px;}
.y3{bottom:958.654500px;}
.y6b{bottom:963.714000px;}
.y29{bottom:968.850000px;}
.y4a{bottom:979.125000px;}
.y2{bottom:982.938000px;}
.y6a{bottom:984.261000px;}
.y28{bottom:989.398500px;}
.y49{bottom:1004.809500px;}
.y27{bottom:1009.947000px;}
.y26{bottom:1030.494000px;}
.y1{bottom:1033.002000px;}
.y25{bottom:1071.291000px;}
.h4{height:33.856985px;}
.h5{height:37.551283px;}
.h3{height:38.089267px;}
.h1{height:50.068378px;}
.h2{height:53.672772px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:110.161500px;}
.x2{left:125.104500px;}
.x7{left:131.359500px;}
.x8{left:153.100500px;}
.x9{left:157.741500px;}
.x3{left:165.241500px;}
.x4{left:180.186000px;}
.x5{left:186.439500px;}
.x6{left:207.711000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsa{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-3.538739pt;}
.ws3c{word-spacing:-2.917069pt;}
.ws18{word-spacing:-2.869248pt;}
.ws41{word-spacing:-2.773606pt;}
.ws36{word-spacing:-2.725786pt;}
.ws3a{word-spacing:-2.486682pt;}
.ws28{word-spacing:-2.391040pt;}
.ws2f{word-spacing:-2.343219pt;}
.ws35{word-spacing:-2.151936pt;}
.ws27{word-spacing:-2.008474pt;}
.ws37{word-spacing:-1.865011pt;}
.ws24{word-spacing:-1.386803pt;}
.ws14{word-spacing:-1.099878pt;}
.ws31{word-spacing:-1.004237pt;}
.ws7{word-spacing:-0.908595pt;}
.ws39{word-spacing:-0.812954pt;}
.ws2d{word-spacing:-0.621670pt;}
.ws2e{word-spacing:-0.573850pt;}
.ws1c{word-spacing:-0.526029pt;}
.ws3b{word-spacing:-0.478208pt;}
.ws2b{word-spacing:-0.430387pt;}
.ws26{word-spacing:-0.382566pt;}
.ws15{word-spacing:-0.286925pt;}
.ws19{word-spacing:-0.239104pt;}
.wse{word-spacing:-0.191283pt;}
.wsc{word-spacing:-0.183666pt;}
.ws1e{word-spacing:-0.143462pt;}
.wsf{word-spacing:-0.095642pt;}
.wsb{word-spacing:-0.047821pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.047821pt;}
.ws8{word-spacing:0.095642pt;}
.ws17{word-spacing:0.143462pt;}
.ws16{word-spacing:0.191283pt;}
.ws12{word-spacing:0.239104pt;}
.ws25{word-spacing:0.286925pt;}
.ws9{word-spacing:0.334746pt;}
.ws23{word-spacing:0.382566pt;}
.ws10{word-spacing:0.669491pt;}
.ws21{word-spacing:0.765133pt;}
.ws1f{word-spacing:0.860774pt;}
.ws3d{word-spacing:0.956416pt;}
.ws34{word-spacing:1.147699pt;}
.ws13{word-spacing:1.243341pt;}
.ws30{word-spacing:1.386803pt;}
.ws1a{word-spacing:1.482445pt;}
.ws32{word-spacing:1.673728pt;}
.ws3e{word-spacing:1.865011pt;}
.ws38{word-spacing:2.295398pt;}
.ws20{word-spacing:2.391040pt;}
.ws22{word-spacing:2.486682pt;}
.ws2c{word-spacing:2.630144pt;}
.ws33{word-spacing:2.869248pt;}
.ws11{word-spacing:2.964890pt;}
.ws3f{word-spacing:3.490918pt;}
.ws29{word-spacing:3.730022pt;}
.ws40{word-spacing:5.595034pt;}
.wsd{word-spacing:11.716096pt;}
.ws4{word-spacing:11.893394pt;}
.ws1{word-spacing:11.894873pt;}
.ws3{word-spacing:11.896377pt;}
.ws6{word-spacing:11.907379pt;}
.ws5{word-spacing:11.919870pt;}
.ws42{word-spacing:14.608265pt;}
.ws0{word-spacing:15.876506pt;}
.ws1d{word-spacing:47.772979pt;}
._3{margin-left:-6.516369pt;}
._0{margin-left:-3.432730pt;}
._2{margin-left:-1.779737pt;}
._5{width:0.935681pt;}
._b{width:1.923199pt;}
._7{width:10.520576pt;}
._8{width:12.768154pt;}
._1{width:14.545467pt;}
._9{width:24.914637pt;}
._c{width:26.588365pt;}
._4{width:47.820800pt;}
._a{width:1169.266381pt;}
._6{width:1557.810381pt;}
._d{width:1558.910259pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:185.649333pt;}
.y8b{bottom:186.232000pt;}
.y48{bottom:186.646667pt;}
.y69{bottom:194.533333pt;}
.y23{bottom:203.914667pt;}
.y8a{bottom:204.496000pt;}
.y47{bottom:204.912000pt;}
.y68{bottom:217.365333pt;}
.y22{bottom:222.180000pt;}
.y89{bottom:222.761333pt;}
.y46{bottom:223.176000pt;}
.yb9{bottom:227.328000pt;}
.y21{bottom:240.444000pt;}
.y88{bottom:241.026667pt;}
.y45{bottom:241.441333pt;}
.ya4{bottom:246.008000pt;}
.y20{bottom:258.709333pt;}
.y44{bottom:259.706667pt;}
.yb8{bottom:260.952000pt;}
.y87{bottom:263.857333pt;}
.y67{bottom:267.593333pt;}
.y1f{bottom:276.974667pt;}
.yb7{bottom:279.216000pt;}
.ya3{bottom:280.461333pt;}
.y43{bottom:282.537333pt;}
.y66{bottom:285.858667pt;}
.y1e{bottom:295.238667pt;}
.y86{bottom:297.481333pt;}
.ya2{bottom:298.726667pt;}
.y65{bottom:304.122667pt;}
.y1d{bottom:313.504000pt;}
.y85{bottom:315.746667pt;}
.y42{bottom:316.992000pt;}
.y64{bottom:326.954667pt;}
.y1c{bottom:331.769333pt;}
.y84{bottom:334.010667pt;}
.y41{bottom:335.256000pt;}
.yb6{bottom:338.577333pt;}
.y1b{bottom:350.033333pt;}
.y83{bottom:352.276000pt;}
.y40{bottom:353.521333pt;}
.yb5{bottom:361.408000pt;}
.yce{bottom:363.484000pt;}
.y1a{bottom:368.298667pt;}
.y82{bottom:370.540000pt;}
.y3f{bottom:371.785333pt;}
.ya1{bottom:376.352000pt;}
.y63{bottom:377.182667pt;}
.ycd{bottom:381.748000pt;}
.y19{bottom:386.562667pt;}
.y81{bottom:388.805333pt;}
.y3e{bottom:390.050667pt;}
.yb4{bottom:395.032000pt;}
.y62{bottom:395.446667pt;}
.ya0{bottom:399.182667pt;}
.ycc{bottom:400.013333pt;}
.y18{bottom:404.828000pt;}
.y80{bottom:411.636000pt;}
.y3d{bottom:412.881333pt;}
.yb3{bottom:413.297333pt;}
.y61{bottom:413.712000pt;}
.ycb{bottom:422.844000pt;}
.y17{bottom:423.093333pt;}
.yb2{bottom:431.561333pt;}
.y60{bottom:431.977333pt;}
.y9f{bottom:433.637333pt;}
.y7f{bottom:434.468000pt;}
.y16{bottom:441.357333pt;}
.y3c{bottom:447.336000pt;}
.yb1{bottom:449.826667pt;}
.y5f{bottom:450.241333pt;}
.y9e{bottom:451.902667pt;}
.yca{bottom:454.808000pt;}
.y15{bottom:459.622667pt;}
.y3b{bottom:465.601333pt;}
.y7e{bottom:468.092000pt;}
.y5e{bottom:468.506667pt;}
.y9d{bottom:470.166667pt;}
.yb0{bottom:472.657333pt;}
.yc9{bottom:473.073333pt;}
.y14{bottom:477.888000pt;}
.y3a{bottom:483.865333pt;}
.y7d{bottom:486.356000pt;}
.y5d{bottom:486.772000pt;}
.y9c{bottom:488.432000pt;}
.yc8{bottom:491.337333pt;}
.y13{bottom:496.152000pt;}
.y39{bottom:502.130667pt;}
.y7c{bottom:504.621333pt;}
.y5c{bottom:505.036000pt;}
.yaf{bottom:506.281333pt;}
.y9b{bottom:506.697333pt;}
.yc7{bottom:509.602667pt;}
.y12{bottom:514.417333pt;}
.y38{bottom:520.396000pt;}
.y7b{bottom:522.885333pt;}
.y7a{bottom:522.886667pt;}
.y5b{bottom:523.301333pt;}
.yae{bottom:524.546667pt;}
.y9a{bottom:524.961333pt;}
.yc6{bottom:527.866667pt;}
.y11{bottom:532.681333pt;}
.y37{bottom:538.660000pt;}
.y5a{bottom:541.565333pt;}
.yad{bottom:542.810667pt;}
.y99{bottom:543.226667pt;}
.y79{bottom:545.717333pt;}
.yc5{bottom:546.132000pt;}
.y10{bottom:550.946667pt;}
.y59{bottom:559.830667pt;}
.yac{bottom:561.076000pt;}
.y36{bottom:561.490667pt;}
.yc4{bottom:564.397333pt;}
.y98{bottom:566.057333pt;}
.yf{bottom:569.212000pt;}
.y58{bottom:578.096000pt;}
.y78{bottom:579.341333pt;}
.yc3{bottom:582.661333pt;}
.ye{bottom:592.042667pt;}
.y35{bottom:595.945333pt;}
.y57{bottom:596.360000pt;}
.y77{bottom:597.605333pt;}
.y97{bottom:600.512000pt;}
.yc2{bottom:600.926667pt;}
.y34{bottom:614.210667pt;}
.y56{bottom:614.625333pt;}
.y76{bottom:615.870667pt;}
.y96{bottom:618.776000pt;}
.yab{bottom:620.437333pt;}
.yc1{bottom:623.757333pt;}
.yd{bottom:624.502667pt;}
.y33{bottom:632.474667pt;}
.y55{bottom:632.890667pt;}
.y75{bottom:634.136000pt;}
.y95{bottom:641.608000pt;}
.yc{bottom:642.768000pt;}
.y54{bottom:651.154667pt;}
.y74{bottom:652.400000pt;}
.yaa{bottom:654.061333pt;}
.y32{bottom:655.306667pt;}
.yc0{bottom:655.721333pt;}
.yb{bottom:661.032000pt;}
.y53{bottom:669.420000pt;}
.ya9{bottom:672.325333pt;}
.ybf{bottom:673.986667pt;}
.y73{bottom:675.232000pt;}
.y94{bottom:676.061333pt;}
.ya{bottom:679.297333pt;}
.y52{bottom:687.685333pt;}
.y31{bottom:689.760000pt;}
.ya8{bottom:690.590667pt;}
.ybe{bottom:692.250667pt;}
.y93{bottom:694.326667pt;}
.y9{bottom:697.562667pt;}
.y51{bottom:705.949333pt;}
.y30{bottom:708.025333pt;}
.y72{bottom:708.854667pt;}
.ybd{bottom:710.516000pt;}
.y92{bottom:712.590667pt;}
.y8{bottom:720.393333pt;}
.y50{bottom:724.214667pt;}
.y71{bottom:727.120000pt;}
.ybc{bottom:728.780000pt;}
.y2f{bottom:730.856000pt;}
.y4f{bottom:742.478667pt;}
.y70{bottom:745.385333pt;}
.ybb{bottom:747.045333pt;}
.y91{bottom:749.121333pt;}
.y2e{bottom:753.686667pt;}
.y7{bottom:753.834667pt;}
.y6f{bottom:763.649333pt;}
.y4e{bottom:765.310667pt;}
.y90{bottom:767.385333pt;}
.ya7{bottom:768.216000pt;}
.y6e{bottom:781.914667pt;}
.yba{bottom:783.574667pt;}
.y8f{bottom:785.650667pt;}
.y6{bottom:787.380000pt;}
.y2d{bottom:788.141333pt;}
.ya6{bottom:801.840000pt;}
.y8e{bottom:803.916000pt;}
.y6d{bottom:804.745333pt;}
.y2c{bottom:806.406667pt;}
.y5{bottom:808.965333pt;}
.y4d{bottom:815.538667pt;}
.ya5{bottom:820.105333pt;}
.y8d{bottom:822.180000pt;}
.y2b{bottom:824.670667pt;}
.y4{bottom:830.550667pt;}
.y4c{bottom:833.804000pt;}
.y6c{bottom:838.369333pt;}
.y2a{bottom:842.936000pt;}
.y8c{bottom:845.012000pt;}
.y4b{bottom:852.068000pt;}
.y3{bottom:852.137333pt;}
.y6b{bottom:856.634667pt;}
.y29{bottom:861.200000pt;}
.y4a{bottom:870.333333pt;}
.y2{bottom:873.722667pt;}
.y6a{bottom:874.898667pt;}
.y28{bottom:879.465333pt;}
.y49{bottom:893.164000pt;}
.y27{bottom:897.730667pt;}
.y26{bottom:915.994667pt;}
.y1{bottom:918.224000pt;}
.y25{bottom:952.258667pt;}
.h4{height:30.095098pt;}
.h5{height:33.378918pt;}
.h3{height:33.857126pt;}
.h1{height:44.505225pt;}
.h2{height:47.709131pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:97.921333pt;}
.x2{left:111.204000pt;}
.x7{left:116.764000pt;}
.x8{left:136.089333pt;}
.x9{left:140.214667pt;}
.x3{left:146.881333pt;}
.x4{left:160.165333pt;}
.x5{left:165.724000pt;}
.x6{left:184.632000pt;}
}




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