
    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_e731637ed682f6ae146a2805.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_e6eba6688a0178f677d5eb3a.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_87d2a3800943f0d52eef47a4.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_26de7563d0bed185cd942edf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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;}
.m5{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);}
.m4{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);}
.m17{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);}
.m3{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);}
.m15{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);}
.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);}
.m13{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);}
.m16{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);}
.m18{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);}
.m6{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);}
.mc{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);}
.me{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);}
.m10{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);}
.m19{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);}
.ma{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);}
.m2{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);}
.m7{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);}
.m14{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);}
.m11{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.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);}
.mb{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);}
.mf{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);}
.md{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;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:10.461300px;}
.ls3{letter-spacing:11.954850px;}
.ls7{letter-spacing:13.293939px;}
.ls6{letter-spacing:13.448400px;}
.ls5{letter-spacing:16.676400px;}
.ls1{letter-spacing:62.761200px;}
.ls2{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;}
}
.ws39{word-spacing:-14.943900px;}
.ws42{word-spacing:-13.449600px;}
.ws25{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws37{word-spacing:-4.841824px;}
.ws38{word-spacing:-2.630126px;}
.ws13{word-spacing:-2.331248px;}
.ws3c{word-spacing:-2.271473px;}
.ws19{word-spacing:-1.613941px;}
.ws17{word-spacing:-1.434614px;}
.ws18{word-spacing:-0.896634px;}
.ws2a{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.239102px;}
.ws3e{word-spacing:-0.215194px;}
.ws10{word-spacing:-0.179327px;}
.ws5d{word-spacing:-0.161395px;}
.ws15{word-spacing:-0.119551px;}
.ws27{word-spacing:-0.059776px;}
.ws43{word-spacing:-0.053798px;}
.ws26{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws53{word-spacing:0.001709px;}
.ws47{word-spacing:0.053798px;}
.ws21{word-spacing:0.059776px;}
.ws5a{word-spacing:0.107597px;}
.ws14{word-spacing:0.119551px;}
.ws44{word-spacing:0.161395px;}
.ws1b{word-spacing:0.179327px;}
.ws57{word-spacing:0.215194px;}
.ws1c{word-spacing:0.239102px;}
.ws4a{word-spacing:0.268992px;}
.ws11{word-spacing:0.298878px;}
.ws2c{word-spacing:0.358654px;}
.ws29{word-spacing:0.597756px;}
.ws2e{word-spacing:0.717307px;}
.ws58{word-spacing:0.914573px;}
.ws30{word-spacing:1.195512px;}
.ws1f{word-spacing:1.315063px;}
.ws34{word-spacing:1.434614px;}
.ws46{word-spacing:1.506355px;}
.ws3b{word-spacing:1.673717px;}
.ws20{word-spacing:1.793268px;}
.ws4f{word-spacing:2.313331px;}
.ws48{word-spacing:2.420928px;}
.ws0{word-spacing:2.511541px;}
.ws12{word-spacing:2.809453px;}
.ws1d{word-spacing:2.869229px;}
.ws4d{word-spacing:2.958912px;}
.wse{word-spacing:2.988780px;}
.ws36{word-spacing:3.048556px;}
.ws5c{word-spacing:3.219398px;}
.ws4c{word-spacing:3.219869px;}
.ws51{word-spacing:3.220560px;}
.ws56{word-spacing:3.221962px;}
.wsf{word-spacing:3.646312px;}
.ws33{word-spacing:3.885414px;}
.ws3d{word-spacing:4.184292px;}
.ws60{word-spacing:4.250074px;}
.ws1a{word-spacing:4.363619px;}
.ws5f{word-spacing:4.626662px;}
.wsb{word-spacing:4.770079px;}
.wsc{word-spacing:4.853765px;}
.ws31{word-spacing:5.200477px;}
.ws23{word-spacing:6.156887px;}
.ws2d{word-spacing:6.276438px;}
.ws22{word-spacing:6.336214px;}
.ws9{word-spacing:7.782761px;}
.ws2b{word-spacing:7.830604px;}
.ws2{word-spacing:10.417688px;}
.ws24{word-spacing:11.907782px;}
.ws7{word-spacing:12.176255px;}
.ws3f{word-spacing:13.150472px;}
.ws5e{word-spacing:13.234406px;}
.ws52{word-spacing:13.384771px;}
.ws5b{word-spacing:13.388467px;}
.ws50{word-spacing:13.388659px;}
.ws54{word-spacing:13.391136px;}
.ws45{word-spacing:13.391875px;}
.ws55{word-spacing:13.393181px;}
.ws40{word-spacing:13.395802px;}
.ws41{word-spacing:13.397875px;}
.ws4b{word-spacing:13.664794px;}
.ws59{word-spacing:14.310374px;}
.ws28{word-spacing:14.824349px;}
.ws32{word-spacing:15.046115px;}
.ws5{word-spacing:15.481836px;}
.ws2f{word-spacing:15.601432px;}
.ws4e{word-spacing:15.706333px;}
.ws49{word-spacing:15.816665px;}
.ws8{word-spacing:16.109478px;}
.ws1e{word-spacing:17.813129px;}
.ws3a{word-spacing:17.872904px;}
.ws35{word-spacing:21.184581px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
._a{margin-left:-6.515540px;}
._7{margin-left:-5.308087px;}
._12{margin-left:-4.119686px;}
._6{margin-left:-3.012698px;}
._2{margin-left:-1.506341px;}
._4{width:2.999021px;}
._0{width:12.971268px;}
._c{width:14.656973px;}
._13{width:16.666397px;}
._b{width:18.052231px;}
._8{width:19.080367px;}
._d{width:20.933411px;}
._14{width:22.515880px;}
._e{width:23.790689px;}
._9{width:27.616327px;}
._1{width:30.587087px;}
._3{width:33.355008px;}
._f{width:37.491252px;}
._5{width:54.410059px;}
._10{width:957.247102px;}
._11{width:2618.919000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(53,91,48);}
.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;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y14{bottom:15.759303px;}
.y45{bottom:31.890000px;}
.y7b{bottom:99.930000px;}
.y44{bottom:103.621500px;}
.y12{bottom:104.646000px;}
.y7a{bottom:117.190500px;}
.y43{bottom:122.449500px;}
.y11{bottom:122.535000px;}
.y79{bottom:134.451000px;}
.y10{bottom:140.422500px;}
.y42{bottom:141.279000px;}
.y78{bottom:151.711500px;}
.yf{bottom:158.310000px;}
.y41{bottom:160.108500px;}
.y77{bottom:168.972000px;}
.ye{bottom:176.199000px;}
.y40{bottom:178.938000px;}
.y76{bottom:186.232500px;}
.yd{bottom:194.086500px;}
.y3f{bottom:197.767500px;}
.y75{bottom:207.975000px;}
.yc{bottom:211.974000px;}
.y3e{bottom:216.597000px;}
.yb{bottom:229.863000px;}
.y3d{bottom:235.426500px;}
.y74{bottom:241.599000px;}
.y3c{bottom:254.256000px;}
.y3b{bottom:273.085500px;}
.y73{bottom:277.105500px;}
.y3a{bottom:291.915000px;}
.y72{bottom:295.935000px;}
.ya{bottom:299.890500px;}
.y39{bottom:310.744500px;}
.y71{bottom:314.764500px;}
.y9{bottom:317.779500px;}
.y38{bottom:329.574000px;}
.y70{bottom:333.594000px;}
.y8{bottom:335.667000px;}
.y37{bottom:348.403500px;}
.y6f{bottom:352.423500px;}
.y7{bottom:362.521500px;}
.y36{bottom:367.233000px;}
.y6e{bottom:371.253000px;}
.y6{bottom:380.409000px;}
.y35{bottom:386.062500px;}
.y6d{bottom:390.082500px;}
.y5{bottom:398.298000px;}
.y34{bottom:404.892000px;}
.y6c{bottom:408.912000px;}
.y4{bottom:416.185500px;}
.y33{bottom:423.721500px;}
.y6b{bottom:427.741500px;}
.y3{bottom:434.073000px;}
.y32{bottom:442.551000px;}
.y6a{bottom:446.571000px;}
.y2{bottom:451.962000px;}
.y31{bottom:461.380500px;}
.y69{bottom:465.400500px;}
.y1{bottom:469.849500px;}
.y30{bottom:480.210000px;}
.y68{bottom:484.230000px;}
.y2f{bottom:499.039500px;}
.y67{bottom:503.059500px;}
.y2e{bottom:517.869000px;}
.y66{bottom:521.889000px;}
.y2d{bottom:536.698500px;}
.y65{bottom:540.718500px;}
.y2c{bottom:555.528000px;}
.y64{bottom:559.548000px;}
.y2b{bottom:574.357500px;}
.y63{bottom:578.377500px;}
.y2a{bottom:593.187000px;}
.y62{bottom:597.207000px;}
.y29{bottom:612.016500px;}
.y61{bottom:616.036500px;}
.y28{bottom:630.844500px;}
.y60{bottom:634.866000px;}
.y27{bottom:649.674000px;}
.y5f{bottom:653.695500px;}
.y26{bottom:668.503500px;}
.y5e{bottom:672.525000px;}
.y25{bottom:687.333000px;}
.y5d{bottom:691.354500px;}
.y24{bottom:706.162500px;}
.y5c{bottom:710.184000px;}
.y90{bottom:721.317000px;}
.y23{bottom:724.992000px;}
.y5b{bottom:729.013500px;}
.y8f{bottom:738.577500px;}
.y22{bottom:743.821500px;}
.y5a{bottom:747.843000px;}
.y8e{bottom:755.838000px;}
.y21{bottom:762.651000px;}
.y59{bottom:766.671000px;}
.y58{bottom:785.500500px;}
.y8d{bottom:794.916000px;}
.y57{bottom:804.330000px;}
.y8c{bottom:812.176500px;}
.y56{bottom:823.159500px;}
.y8b{bottom:829.437000px;}
.y20{bottom:838.096500px;}
.y55{bottom:841.989000px;}
.y8a{bottom:846.697500px;}
.y1f{bottom:854.236500px;}
.y54{bottom:860.818500px;}
.y89{bottom:863.956500px;}
.y1e{bottom:870.376500px;}
.y53{bottom:879.648000px;}
.y88{bottom:881.217000px;}
.y1d{bottom:890.856000px;}
.y52{bottom:898.477500px;}
.y1c{bottom:902.655000px;}
.y87{bottom:915.738000px;}
.y51{bottom:917.307000px;}
.y1b{bottom:923.134500px;}
.y86{bottom:932.998500px;}
.y1a{bottom:934.933500px;}
.y50{bottom:936.136500px;}
.y85{bottom:950.259000px;}
.y4f{bottom:954.966000px;}
.y19{bottom:955.413000px;}
.y84{bottom:967.519500px;}
.y4e{bottom:973.795500px;}
.y83{bottom:984.780000px;}
.y4d{bottom:992.625000px;}
.y18{bottom:999.783000px;}
.y81{bottom:1002.039000px;}
.y82{bottom:1002.040500px;}
.y4c{bottom:1011.454500px;}
.y80{bottom:1019.299500px;}
.y4b{bottom:1030.284000px;}
.y17{bottom:1036.545000px;}
.y7f{bottom:1036.560000px;}
.y4a{bottom:1049.113500px;}
.y7e{bottom:1053.820500px;}
.y16{bottom:1064.790000px;}
.y49{bottom:1067.943000px;}
.y7d{bottom:1071.081000px;}
.y48{bottom:1086.772500px;}
.y7c{bottom:1088.341500px;}
.y15{bottom:1093.033500px;}
.y47{bottom:1105.602000px;}
.y13{bottom:1136.521500px;}
.y46{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.ha{height:34.813397px;}
.hc{height:35.052500px;}
.h10{height:38.734848px;}
.hd{height:39.165235px;}
.hf{height:39.434227px;}
.he{height:43.038432px;}
.hb{height:43.516637px;}
.h6{height:43.815515px;}
.h4{height:50.930649px;}
.h8{height:54.411312px;}
.h7{height:77.469696px;}
.h5{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:163.048945px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x1b{left:85.848000px;}
.x1d{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.914500px;}
.x6{left:281.479500px;}
.x16{left:433.600500px;}
.x14{left:443.226000px;}
.x17{left:448.543500px;}
.x15{left:458.169000px;}
.xf{left:508.432500px;}
.x10{left:515.905500px;}
.xb{left:578.647500px;}
.xc{left:586.119000px;}
.x7{left:607.369500px;}
.x8{left:614.841000px;}
.x12{left:694.293000px;}
.x13{left:701.766000px;}
.x1c{left:721.498500px;}
.x18{left:741.082500px;}
.x11{left:744.181500px;}
.x9{left:752.220000px;}
.xa{left:759.693000px;}
.x19{left:815.757000px;}
.x1a{left:820.120500px;}
.xd{left:826.365000px;}
.xe{left:833.838000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls3{letter-spacing:10.626533pt;}
.ls7{letter-spacing:11.816834pt;}
.ls6{letter-spacing:11.954133pt;}
.ls5{letter-spacing:14.823467pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ws39{word-spacing:-13.283467pt;}
.ws42{word-spacing:-11.955200pt;}
.ws25{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws37{word-spacing:-4.303843pt;}
.ws38{word-spacing:-2.337890pt;}
.ws13{word-spacing:-2.072221pt;}
.ws3c{word-spacing:-2.019087pt;}
.ws19{word-spacing:-1.434614pt;}
.ws17{word-spacing:-1.275213pt;}
.ws18{word-spacing:-0.797008pt;}
.ws2a{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.212535pt;}
.ws3e{word-spacing:-0.191283pt;}
.ws10{word-spacing:-0.159402pt;}
.ws5d{word-spacing:-0.143462pt;}
.ws15{word-spacing:-0.106268pt;}
.ws27{word-spacing:-0.053134pt;}
.ws43{word-spacing:-0.047821pt;}
.ws26{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws53{word-spacing:0.001519pt;}
.ws47{word-spacing:0.047821pt;}
.ws21{word-spacing:0.053134pt;}
.ws5a{word-spacing:0.095642pt;}
.ws14{word-spacing:0.106268pt;}
.ws44{word-spacing:0.143462pt;}
.ws1b{word-spacing:0.159402pt;}
.ws57{word-spacing:0.191283pt;}
.ws1c{word-spacing:0.212535pt;}
.ws4a{word-spacing:0.239104pt;}
.ws11{word-spacing:0.265669pt;}
.ws2c{word-spacing:0.318803pt;}
.ws29{word-spacing:0.531339pt;}
.ws2e{word-spacing:0.637606pt;}
.ws58{word-spacing:0.812954pt;}
.ws30{word-spacing:1.062677pt;}
.ws1f{word-spacing:1.168945pt;}
.ws34{word-spacing:1.275213pt;}
.ws46{word-spacing:1.338982pt;}
.ws3b{word-spacing:1.487748pt;}
.ws20{word-spacing:1.594016pt;}
.ws4f{word-spacing:2.056294pt;}
.ws48{word-spacing:2.151936pt;}
.ws0{word-spacing:2.232481pt;}
.ws12{word-spacing:2.497292pt;}
.ws1d{word-spacing:2.550426pt;}
.ws4d{word-spacing:2.630144pt;}
.wse{word-spacing:2.656693pt;}
.ws36{word-spacing:2.709827pt;}
.ws5c{word-spacing:2.861687pt;}
.ws4c{word-spacing:2.862106pt;}
.ws51{word-spacing:2.862720pt;}
.ws56{word-spacing:2.863966pt;}
.wsf{word-spacing:3.241166pt;}
.ws33{word-spacing:3.453701pt;}
.ws3d{word-spacing:3.719371pt;}
.ws60{word-spacing:3.777843pt;}
.ws1a{word-spacing:3.878772pt;}
.ws5f{word-spacing:4.112589pt;}
.wsb{word-spacing:4.240070pt;}
.wsc{word-spacing:4.314458pt;}
.ws31{word-spacing:4.622646pt;}
.ws23{word-spacing:5.472788pt;}
.ws2d{word-spacing:5.579056pt;}
.ws22{word-spacing:5.632190pt;}
.ws9{word-spacing:6.918010pt;}
.ws2b{word-spacing:6.960537pt;}
.ws2{word-spacing:9.260167pt;}
.ws24{word-spacing:10.584695pt;}
.ws7{word-spacing:10.823338pt;}
.ws3f{word-spacing:11.689308pt;}
.ws5e{word-spacing:11.763917pt;}
.ws52{word-spacing:11.897574pt;}
.ws5b{word-spacing:11.900860pt;}
.ws50{word-spacing:11.901030pt;}
.ws54{word-spacing:11.903232pt;}
.ws45{word-spacing:11.903889pt;}
.ws55{word-spacing:11.905050pt;}
.ws40{word-spacing:11.907379pt;}
.ws41{word-spacing:11.909222pt;}
.ws4b{word-spacing:12.146483pt;}
.ws59{word-spacing:12.720333pt;}
.ws28{word-spacing:13.177199pt;}
.ws32{word-spacing:13.374325pt;}
.ws5{word-spacing:13.761632pt;}
.ws2f{word-spacing:13.867939pt;}
.ws4e{word-spacing:13.961185pt;}
.ws49{word-spacing:14.059258pt;}
.ws8{word-spacing:14.319536pt;}
.ws1e{word-spacing:15.833892pt;}
.ws3a{word-spacing:15.887026pt;}
.ws35{word-spacing:18.830738pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
._a{margin-left:-5.791591pt;}
._7{margin-left:-4.718299pt;}
._12{margin-left:-3.661943pt;}
._6{margin-left:-2.677954pt;}
._2{margin-left:-1.338970pt;}
._4{width:2.665796pt;}
._0{width:11.530016pt;}
._c{width:13.028420pt;}
._13{width:14.814575pt;}
._b{width:16.046428pt;}
._8{width:16.960326pt;}
._d{width:18.607476pt;}
._14{width:20.014115pt;}
._e{width:21.147279pt;}
._9{width:24.547846pt;}
._1{width:27.188522pt;}
._3{width:29.648896pt;}
._f{width:33.325557pt;}
._5{width:48.364497pt;}
._10{width:850.886313pt;}
._11{width:2327.928000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:14.008270pt;}
.y45{bottom:28.346667pt;}
.y7b{bottom:88.826667pt;}
.y44{bottom:92.108000pt;}
.y12{bottom:93.018667pt;}
.y7a{bottom:104.169333pt;}
.y43{bottom:108.844000pt;}
.y11{bottom:108.920000pt;}
.y79{bottom:119.512000pt;}
.y10{bottom:124.820000pt;}
.y42{bottom:125.581333pt;}
.y78{bottom:134.854667pt;}
.yf{bottom:140.720000pt;}
.y41{bottom:142.318667pt;}
.y77{bottom:150.197333pt;}
.ye{bottom:156.621333pt;}
.y40{bottom:159.056000pt;}
.y76{bottom:165.540000pt;}
.yd{bottom:172.521333pt;}
.y3f{bottom:175.793333pt;}
.y75{bottom:184.866667pt;}
.yc{bottom:188.421333pt;}
.y3e{bottom:192.530667pt;}
.yb{bottom:204.322667pt;}
.y3d{bottom:209.268000pt;}
.y74{bottom:214.754667pt;}
.y3c{bottom:226.005333pt;}
.y3b{bottom:242.742667pt;}
.y73{bottom:246.316000pt;}
.y3a{bottom:259.480000pt;}
.y72{bottom:263.053333pt;}
.ya{bottom:266.569333pt;}
.y39{bottom:276.217333pt;}
.y71{bottom:279.790667pt;}
.y9{bottom:282.470667pt;}
.y38{bottom:292.954667pt;}
.y70{bottom:296.528000pt;}
.y8{bottom:298.370667pt;}
.y37{bottom:309.692000pt;}
.y6f{bottom:313.265333pt;}
.y7{bottom:322.241333pt;}
.y36{bottom:326.429333pt;}
.y6e{bottom:330.002667pt;}
.y6{bottom:338.141333pt;}
.y35{bottom:343.166667pt;}
.y6d{bottom:346.740000pt;}
.y5{bottom:354.042667pt;}
.y34{bottom:359.904000pt;}
.y6c{bottom:363.477333pt;}
.y4{bottom:369.942667pt;}
.y33{bottom:376.641333pt;}
.y6b{bottom:380.214667pt;}
.y3{bottom:385.842667pt;}
.y32{bottom:393.378667pt;}
.y6a{bottom:396.952000pt;}
.y2{bottom:401.744000pt;}
.y31{bottom:410.116000pt;}
.y69{bottom:413.689333pt;}
.y1{bottom:417.644000pt;}
.y30{bottom:426.853333pt;}
.y68{bottom:430.426667pt;}
.y2f{bottom:443.590667pt;}
.y67{bottom:447.164000pt;}
.y2e{bottom:460.328000pt;}
.y66{bottom:463.901333pt;}
.y2d{bottom:477.065333pt;}
.y65{bottom:480.638667pt;}
.y2c{bottom:493.802667pt;}
.y64{bottom:497.376000pt;}
.y2b{bottom:510.540000pt;}
.y63{bottom:514.113333pt;}
.y2a{bottom:527.277333pt;}
.y62{bottom:530.850667pt;}
.y29{bottom:544.014667pt;}
.y61{bottom:547.588000pt;}
.y28{bottom:560.750667pt;}
.y60{bottom:564.325333pt;}
.y27{bottom:577.488000pt;}
.y5f{bottom:581.062667pt;}
.y26{bottom:594.225333pt;}
.y5e{bottom:597.800000pt;}
.y25{bottom:610.962667pt;}
.y5d{bottom:614.537333pt;}
.y24{bottom:627.700000pt;}
.y5c{bottom:631.274667pt;}
.y90{bottom:641.170667pt;}
.y23{bottom:644.437333pt;}
.y5b{bottom:648.012000pt;}
.y8f{bottom:656.513333pt;}
.y22{bottom:661.174667pt;}
.y5a{bottom:664.749333pt;}
.y8e{bottom:671.856000pt;}
.y21{bottom:677.912000pt;}
.y59{bottom:681.485333pt;}
.y58{bottom:698.222667pt;}
.y8d{bottom:706.592000pt;}
.y57{bottom:714.960000pt;}
.y8c{bottom:721.934667pt;}
.y56{bottom:731.697333pt;}
.y8b{bottom:737.277333pt;}
.y20{bottom:744.974667pt;}
.y55{bottom:748.434667pt;}
.y8a{bottom:752.620000pt;}
.y1f{bottom:759.321333pt;}
.y54{bottom:765.172000pt;}
.y89{bottom:767.961333pt;}
.y1e{bottom:773.668000pt;}
.y53{bottom:781.909333pt;}
.y88{bottom:783.304000pt;}
.y1d{bottom:791.872000pt;}
.y52{bottom:798.646667pt;}
.y1c{bottom:802.360000pt;}
.y87{bottom:813.989333pt;}
.y51{bottom:815.384000pt;}
.y1b{bottom:820.564000pt;}
.y86{bottom:829.332000pt;}
.y1a{bottom:831.052000pt;}
.y50{bottom:832.121333pt;}
.y85{bottom:844.674667pt;}
.y4f{bottom:848.858667pt;}
.y19{bottom:849.256000pt;}
.y84{bottom:860.017333pt;}
.y4e{bottom:865.596000pt;}
.y83{bottom:875.360000pt;}
.y4d{bottom:882.333333pt;}
.y18{bottom:888.696000pt;}
.y81{bottom:890.701333pt;}
.y82{bottom:890.702667pt;}
.y4c{bottom:899.070667pt;}
.y80{bottom:906.044000pt;}
.y4b{bottom:915.808000pt;}
.y17{bottom:921.373333pt;}
.y7f{bottom:921.386667pt;}
.y4a{bottom:932.545333pt;}
.y7e{bottom:936.729333pt;}
.y16{bottom:946.480000pt;}
.y49{bottom:949.282667pt;}
.y7d{bottom:952.072000pt;}
.y48{bottom:966.020000pt;}
.y7c{bottom:967.414667pt;}
.y15{bottom:971.585333pt;}
.y47{bottom:982.757333pt;}
.y13{bottom:1010.241333pt;}
.y46{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.ha{height:30.945242pt;}
.hc{height:31.157778pt;}
.h10{height:34.430976pt;}
.hd{height:34.813542pt;}
.hf{height:35.052646pt;}
.he{height:38.256384pt;}
.hb{height:38.681455pt;}
.h6{height:38.947124pt;}
.h4{height:45.271688pt;}
.h8{height:48.365611pt;}
.h7{height:68.861952pt;}
.h5{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:144.932396pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x1b{left:76.309333pt;}
.x1d{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.924000pt;}
.x6{left:250.204000pt;}
.x16{left:385.422667pt;}
.x14{left:393.978667pt;}
.x17{left:398.705333pt;}
.x15{left:407.261333pt;}
.xf{left:451.940000pt;}
.x10{left:458.582667pt;}
.xb{left:514.353333pt;}
.xc{left:520.994667pt;}
.x7{left:539.884000pt;}
.x8{left:546.525333pt;}
.x12{left:617.149333pt;}
.x13{left:623.792000pt;}
.x1c{left:641.332000pt;}
.x18{left:658.740000pt;}
.x11{left:661.494667pt;}
.x9{left:668.640000pt;}
.xa{left:675.282667pt;}
.x19{left:725.117333pt;}
.x1a{left:728.996000pt;}
.xd{left:734.546667pt;}
.xe{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; }
  