
    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_15d9c0562453a61c2b2c2d8c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_f5e76c82f7224d329c15143c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9460d8ea1fbcb8b67bf43169.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_2a6db081733669e776f69079.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_7e51d9b358304afaeee0b6d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{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);}
.me{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);}
.m4{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);}
.m18{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);}
.m9{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);}
.mf{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);}
.md{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);}
.mb{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);}
.m2{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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.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);}
.m7{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);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m14{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);}
.m13{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);}
.m10{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);}
.m6{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.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);}
.m8{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);}
.m19{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.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);}
.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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.989200px;}
.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;}
}
.ws14{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.449600px;}
.ws1f{word-spacing:-8.966400px;}
.ws2c{word-spacing:-3.168107px;}
.ws34{word-spacing:-2.689902px;}
.ws1c{word-spacing:-2.211697px;}
.ws33{word-spacing:-2.092146px;}
.ws36{word-spacing:-1.733492px;}
.ws32{word-spacing:-1.434614px;}
.ws44{word-spacing:-1.315063px;}
.ws3f{word-spacing:-0.358654px;}
.ws48{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.179327px;}
.ws10{word-spacing:-0.119551px;}
.ws3e{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws39{word-spacing:-0.053798px;}
.ws2{word-spacing:0.000000px;}
.ws22{word-spacing:0.059776px;}
.ws1a{word-spacing:0.119551px;}
.ws30{word-spacing:0.179327px;}
.ws21{word-spacing:0.239102px;}
.ws9{word-spacing:0.298878px;}
.ws1b{word-spacing:0.358654px;}
.ws28{word-spacing:0.537980px;}
.ws4c{word-spacing:0.550136px;}
.ws3d{word-spacing:0.597756px;}
.ws31{word-spacing:0.896634px;}
.ws23{word-spacing:0.956410px;}
.ws12{word-spacing:1.016185px;}
.ws24{word-spacing:1.135736px;}
.ws3c{word-spacing:1.315063px;}
.wsf{word-spacing:1.494390px;}
.ws7{word-spacing:1.554166px;}
.ws6{word-spacing:1.673717px;}
.ws4a{word-spacing:1.972595px;}
.ws3b{word-spacing:2.032370px;}
.ws45{word-spacing:2.211697px;}
.ws35{word-spacing:2.570351px;}
.ws3a{word-spacing:2.630126px;}
.ws11{word-spacing:2.809453px;}
.ws41{word-spacing:2.869229px;}
.ws37{word-spacing:2.929004px;}
.ws2f{word-spacing:2.988780px;}
.ws8{word-spacing:3.108331px;}
.ws1d{word-spacing:3.227882px;}
.ws2d{word-spacing:3.407209px;}
.ws16{word-spacing:3.646312px;}
.ws19{word-spacing:3.706087px;}
.ws2a{word-spacing:3.765863px;}
.ws40{word-spacing:4.064741px;}
.wsa{word-spacing:4.102716px;}
.ws15{word-spacing:4.303843px;}
.ws47{word-spacing:4.722272px;}
.ws46{word-spacing:4.782048px;}
.ws4b{word-spacing:5.080926px;}
.ws29{word-spacing:5.320028px;}
.ws25{word-spacing:5.559131px;}
.ws26{word-spacing:5.977560px;}
.ws2e{word-spacing:6.455765px;}
.ws27{word-spacing:6.515540px;}
.ws49{word-spacing:6.569226px;}
.ws42{word-spacing:6.573000px;}
.ws43{word-spacing:6.575316px;}
.wse{word-spacing:6.993745px;}
.ws5{word-spacing:7.053521px;}
.ws1e{word-spacing:7.470163px;}
.ws17{word-spacing:14.672074px;}
.ws1{word-spacing:14.884124px;}
.wsb{word-spacing:15.234736px;}
.ws38{word-spacing:17.781494px;}
.wsc{word-spacing:17.861069px;}
.ws2b{word-spacing:18.646200px;}
.wsd{word-spacing:21.881494px;}
.ws4{word-spacing:21.934435px;}
.ws0{word-spacing:25.719808px;}
._4{margin-left:-6.635092px;}
._3{margin-left:-5.025930px;}
._2{margin-left:-3.821819px;}
._6{margin-left:-2.639686px;}
._0{margin-left:-1.549386px;}
._d{width:2.978141px;}
._16{width:12.494060px;}
._b{width:13.724969px;}
._8{width:16.268522px;}
._5{width:17.629022px;}
._a{width:18.710723px;}
._c{width:19.950712px;}
._12{width:21.165342px;}
._e{width:22.305858px;}
._10{width:23.956637px;}
._15{width:24.993319px;}
._14{width:26.057382px;}
._7{width:28.393410px;}
._1{width:31.504182px;}
._13{width:35.830442px;}
._17{width:37.984586px;}
._11{width:39.383521px;}
._f{width:59.775600px;}
._9{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y62{bottom:63.168000px;}
.y2e{bottom:78.184500px;}
.y2d{bottom:93.129000px;}
.y61{bottom:113.713500px;}
.y2c{bottom:135.594000px;}
.y8c{bottom:138.573000px;}
.y60{bottom:148.368000px;}
.y2b{bottom:151.957500px;}
.y8b{bottom:154.936500px;}
.y5f{bottom:164.731500px;}
.y2a{bottom:168.321000px;}
.y5e{bottom:181.095000px;}
.y29{bottom:184.684500px;}
.y8a{bottom:185.529000px;}
.y5d{bottom:197.458500px;}
.y28{bottom:201.048000px;}
.y89{bottom:201.892500px;}
.y5c{bottom:213.822000px;}
.y27{bottom:217.411500px;}
.y88{bottom:218.256000px;}
.y5b{bottom:230.185500px;}
.y26{bottom:233.775000px;}
.y5a{bottom:246.550500px;}
.y87{bottom:248.850000px;}
.y25{bottom:258.358500px;}
.y59{bottom:262.914000px;}
.y86{bottom:265.213500px;}
.y24{bottom:274.722000px;}
.y23{bottom:291.085500px;}
.y58{bottom:295.551000px;}
.y85{bottom:295.806000px;}
.y22{bottom:307.449000px;}
.y84{bottom:312.169500px;}
.y21{bottom:323.812500px;}
.y83{bottom:328.533000px;}
.y57{bottom:338.928000px;}
.y20{bottom:340.176000px;}
.y56{bottom:355.291500px;}
.y82{bottom:359.127000px;}
.y1f{bottom:364.759500px;}
.y55{bottom:371.655000px;}
.y81{bottom:375.490500px;}
.y1e{bottom:381.123000px;}
.y54{bottom:388.018500px;}
.y1d{bottom:397.486500px;}
.y53{bottom:404.382000px;}
.y80{bottom:406.083000px;}
.y1c{bottom:413.850000px;}
.y52{bottom:420.745500px;}
.y1b{bottom:430.213500px;}
.y7f{bottom:436.675500px;}
.y51{bottom:437.109000px;}
.y1a{bottom:446.577000px;}
.y7e{bottom:453.040500px;}
.y50{bottom:453.472500px;}
.y19{bottom:462.940500px;}
.y4f{bottom:469.836000px;}
.y18{bottom:479.305500px;}
.y7d{bottom:483.633000px;}
.y4e{bottom:486.199500px;}
.y7c{bottom:499.996500px;}
.y4d{bottom:502.563000px;}
.y17{bottom:514.404000px;}
.y7b{bottom:516.360000px;}
.y4c{bottom:518.926500px;}
.y4b{bottom:543.510000px;}
.y7a{bottom:546.952500px;}
.y4a{bottom:559.873500px;}
.y79{bottom:563.317500px;}
.y16{bottom:565.657500px;}
.y49{bottom:576.237000px;}
.y15{bottom:582.021000px;}
.y48{bottom:592.600500px;}
.y78{bottom:593.910000px;}
.y14{bottom:598.384500px;}
.y47{bottom:608.964000px;}
.y77{bottom:610.273500px;}
.y13{bottom:614.748000px;}
.y46{bottom:625.327500px;}
.y76{bottom:626.637000px;}
.y12{bottom:631.113000px;}
.y45{bottom:641.692500px;}
.y11{bottom:647.476500px;}
.y75{bottom:657.229500px;}
.y44{bottom:658.056000px;}
.y10{bottom:663.840000px;}
.y43{bottom:674.419500px;}
.yf{bottom:680.203500px;}
.y74{bottom:687.823500px;}
.y41{bottom:690.783000px;}
.y42{bottom:696.205500px;}
.ye{bottom:696.567000px;}
.y73{bottom:704.187000px;}
.y40{bottom:707.146500px;}
.yd{bottom:712.930500px;}
.y3f{bottom:723.510000px;}
.y72{bottom:731.406000px;}
.y3e{bottom:748.093500px;}
.yc{bottom:748.824000px;}
.y3d{bottom:764.457000px;}
.y71{bottom:775.275000px;}
.y3c{bottom:780.820500px;}
.y70{bottom:791.638500px;}
.y3b{bottom:797.184000px;}
.y6f{bottom:808.002000px;}
.yb{bottom:810.597000px;}
.y3a{bottom:813.547500px;}
.y6e{bottom:824.365500px;}
.ya{bottom:826.960500px;}
.y39{bottom:829.911000px;}
.y6d{bottom:840.729000px;}
.y9{bottom:843.324000px;}
.y38{bottom:846.274500px;}
.y6c{bottom:857.092500px;}
.y8{bottom:859.687500px;}
.y37{bottom:862.638000px;}
.y6b{bottom:873.456000px;}
.y36{bottom:879.001500px;}
.y93{bottom:881.917500px;}
.y92{bottom:898.281000px;}
.y7{bottom:901.957500px;}
.y6a{bottom:908.893500px;}
.y35{bottom:911.640000px;}
.y91{bottom:914.644500px;}
.y6{bottom:918.321000px;}
.y5{bottom:934.684500px;}
.y90{bottom:942.964500px;}
.y34{bottom:950.323500px;}
.y4{bottom:951.048000px;}
.y69{bottom:952.764000px;}
.y8f{bottom:959.328000px;}
.y3{bottom:967.411500px;}
.y68{bottom:969.127500px;}
.y67{bottom:985.491000px;}
.y8e{bottom:987.646500px;}
.y33{bottom:999.601500px;}
.y66{bottom:1001.854500px;}
.y8d{bottom:1004.010000px;}
.y2{bottom:1013.299500px;}
.y32{bottom:1015.965000px;}
.y65{bottom:1018.218000px;}
.y31{bottom:1032.328500px;}
.y63{bottom:1034.581500px;}
.y64{bottom:1040.005500px;}
.y1{bottom:1043.188500px;}
.y30{bottom:1048.692000px;}
.y2f{bottom:1065.055500px;}
.h8{height:24.675533px;}
.h7{height:28.787846px;}
.h4{height:36.941321px;}
.h9{height:40.826735px;}
.h3{height:41.125613px;}
.h2{height:41.304940px;}
.h6{height:47.529533px;}
.h5{height:49.566259px;}
.h1{height:71.375048px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:160.012500px;}
.x10{left:162.000000px;}
.x18{left:175.704000px;}
.x17{left:176.944500px;}
.x14{left:180.979500px;}
.x1{left:182.875500px;}
.x4{left:194.581500px;}
.x2{left:209.460000px;}
.xf{left:215.799000px;}
.x5{left:237.967500px;}
.x3{left:244.120500px;}
.x11{left:284.628000px;}
.x12{left:290.605500px;}
.x16{left:300.580500px;}
.xd{left:387.613500px;}
.xc{left:403.177500px;}
.xe{left:425.637000px;}
.xb{left:430.942500px;}
.x15{left:455.263500px;}
.x7{left:479.773500px;}
.x8{left:528.424500px;}
.x9{left:530.209500px;}
.xa{left:542.769000px;}
.x6{left:544.996500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.657067pt;}
.ws14{word-spacing:-13.283467pt;}
.ws20{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-7.970133pt;}
.ws2c{word-spacing:-2.816095pt;}
.ws34{word-spacing:-2.391024pt;}
.ws1c{word-spacing:-1.965953pt;}
.ws33{word-spacing:-1.859685pt;}
.ws36{word-spacing:-1.540882pt;}
.ws32{word-spacing:-1.275213pt;}
.ws44{word-spacing:-1.168945pt;}
.ws3f{word-spacing:-0.318803pt;}
.ws48{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.159402pt;}
.ws10{word-spacing:-0.106268pt;}
.ws3e{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws39{word-spacing:-0.047821pt;}
.ws2{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053134pt;}
.ws1a{word-spacing:0.106268pt;}
.ws30{word-spacing:0.159402pt;}
.ws21{word-spacing:0.212535pt;}
.ws9{word-spacing:0.265669pt;}
.ws1b{word-spacing:0.318803pt;}
.ws28{word-spacing:0.478205pt;}
.ws4c{word-spacing:0.489010pt;}
.ws3d{word-spacing:0.531339pt;}
.ws31{word-spacing:0.797008pt;}
.ws23{word-spacing:0.850142pt;}
.ws12{word-spacing:0.903276pt;}
.ws24{word-spacing:1.009543pt;}
.ws3c{word-spacing:1.168945pt;}
.wsf{word-spacing:1.328347pt;}
.ws7{word-spacing:1.381481pt;}
.ws6{word-spacing:1.487748pt;}
.ws4a{word-spacing:1.753418pt;}
.ws3b{word-spacing:1.806551pt;}
.ws45{word-spacing:1.965953pt;}
.ws35{word-spacing:2.284756pt;}
.ws3a{word-spacing:2.337890pt;}
.ws11{word-spacing:2.497292pt;}
.ws41{word-spacing:2.550426pt;}
.ws37{word-spacing:2.603559pt;}
.ws2f{word-spacing:2.656693pt;}
.ws8{word-spacing:2.762961pt;}
.ws1d{word-spacing:2.869229pt;}
.ws2d{word-spacing:3.028630pt;}
.ws16{word-spacing:3.241166pt;}
.ws19{word-spacing:3.294300pt;}
.ws2a{word-spacing:3.347434pt;}
.ws40{word-spacing:3.613103pt;}
.wsa{word-spacing:3.646858pt;}
.ws15{word-spacing:3.825638pt;}
.ws47{word-spacing:4.197575pt;}
.ws46{word-spacing:4.250709pt;}
.ws4b{word-spacing:4.516379pt;}
.ws29{word-spacing:4.728914pt;}
.ws25{word-spacing:4.941450pt;}
.ws26{word-spacing:5.313387pt;}
.ws2e{word-spacing:5.738458pt;}
.ws27{word-spacing:5.791591pt;}
.ws49{word-spacing:5.839312pt;}
.ws42{word-spacing:5.842667pt;}
.ws43{word-spacing:5.844725pt;}
.wse{word-spacing:6.216662pt;}
.ws5{word-spacing:6.269796pt;}
.ws1e{word-spacing:6.640145pt;}
.ws17{word-spacing:13.041843pt;}
.ws1{word-spacing:13.230333pt;}
.wsb{word-spacing:13.541987pt;}
.ws38{word-spacing:15.805772pt;}
.wsc{word-spacing:15.876506pt;}
.ws2b{word-spacing:16.574400pt;}
.wsd{word-spacing:19.450217pt;}
.ws4{word-spacing:19.497276pt;}
.ws0{word-spacing:22.862051pt;}
._4{margin-left:-5.897859pt;}
._3{margin-left:-4.467493pt;}
._2{margin-left:-3.397172pt;}
._6{margin-left:-2.346387pt;}
._0{margin-left:-1.377232pt;}
._d{width:2.647236pt;}
._16{width:11.105831pt;}
._b{width:12.199973pt;}
._8{width:14.460909pt;}
._5{width:15.670242pt;}
._a{width:16.631754pt;}
._c{width:17.733966pt;}
._12{width:18.813637pt;}
._e{width:19.827429pt;}
._10{width:21.294788pt;}
._15{width:22.216284pt;}
._14{width:23.162117pt;}
._7{width:25.238587pt;}
._1{width:28.003717pt;}
._13{width:31.849282pt;}
._17{width:33.764076pt;}
._11{width:35.007574pt;}
._f{width:53.133867pt;}
._9{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:56.149333pt;}
.y2e{bottom:69.497333pt;}
.y2d{bottom:82.781333pt;}
.y61{bottom:101.078667pt;}
.y2c{bottom:120.528000pt;}
.y8c{bottom:123.176000pt;}
.y60{bottom:131.882667pt;}
.y2b{bottom:135.073333pt;}
.y8b{bottom:137.721333pt;}
.y5f{bottom:146.428000pt;}
.y2a{bottom:149.618667pt;}
.y5e{bottom:160.973333pt;}
.y29{bottom:164.164000pt;}
.y8a{bottom:164.914667pt;}
.y5d{bottom:175.518667pt;}
.y28{bottom:178.709333pt;}
.y89{bottom:179.460000pt;}
.y5c{bottom:190.064000pt;}
.y27{bottom:193.254667pt;}
.y88{bottom:194.005333pt;}
.y5b{bottom:204.609333pt;}
.y26{bottom:207.800000pt;}
.y5a{bottom:219.156000pt;}
.y87{bottom:221.200000pt;}
.y25{bottom:229.652000pt;}
.y59{bottom:233.701333pt;}
.y86{bottom:235.745333pt;}
.y24{bottom:244.197333pt;}
.y23{bottom:258.742667pt;}
.y58{bottom:262.712000pt;}
.y85{bottom:262.938667pt;}
.y22{bottom:273.288000pt;}
.y84{bottom:277.484000pt;}
.y21{bottom:287.833333pt;}
.y83{bottom:292.029333pt;}
.y57{bottom:301.269333pt;}
.y20{bottom:302.378667pt;}
.y56{bottom:315.814667pt;}
.y82{bottom:319.224000pt;}
.y1f{bottom:324.230667pt;}
.y55{bottom:330.360000pt;}
.y81{bottom:333.769333pt;}
.y1e{bottom:338.776000pt;}
.y54{bottom:344.905333pt;}
.y1d{bottom:353.321333pt;}
.y53{bottom:359.450667pt;}
.y80{bottom:360.962667pt;}
.y1c{bottom:367.866667pt;}
.y52{bottom:373.996000pt;}
.y1b{bottom:382.412000pt;}
.y7f{bottom:388.156000pt;}
.y51{bottom:388.541333pt;}
.y1a{bottom:396.957333pt;}
.y7e{bottom:402.702667pt;}
.y50{bottom:403.086667pt;}
.y19{bottom:411.502667pt;}
.y4f{bottom:417.632000pt;}
.y18{bottom:426.049333pt;}
.y7d{bottom:429.896000pt;}
.y4e{bottom:432.177333pt;}
.y7c{bottom:444.441333pt;}
.y4d{bottom:446.722667pt;}
.y17{bottom:457.248000pt;}
.y7b{bottom:458.986667pt;}
.y4c{bottom:461.268000pt;}
.y4b{bottom:483.120000pt;}
.y7a{bottom:486.180000pt;}
.y4a{bottom:497.665333pt;}
.y79{bottom:500.726667pt;}
.y16{bottom:502.806667pt;}
.y49{bottom:512.210667pt;}
.y15{bottom:517.352000pt;}
.y48{bottom:526.756000pt;}
.y78{bottom:527.920000pt;}
.y14{bottom:531.897333pt;}
.y47{bottom:541.301333pt;}
.y77{bottom:542.465333pt;}
.y13{bottom:546.442667pt;}
.y46{bottom:555.846667pt;}
.y76{bottom:557.010667pt;}
.y12{bottom:560.989333pt;}
.y45{bottom:570.393333pt;}
.y11{bottom:575.534667pt;}
.y75{bottom:584.204000pt;}
.y44{bottom:584.938667pt;}
.y10{bottom:590.080000pt;}
.y43{bottom:599.484000pt;}
.yf{bottom:604.625333pt;}
.y74{bottom:611.398667pt;}
.y41{bottom:614.029333pt;}
.y42{bottom:618.849333pt;}
.ye{bottom:619.170667pt;}
.y73{bottom:625.944000pt;}
.y40{bottom:628.574667pt;}
.yd{bottom:633.716000pt;}
.y3f{bottom:643.120000pt;}
.y72{bottom:650.138667pt;}
.y3e{bottom:664.972000pt;}
.yc{bottom:665.621333pt;}
.y3d{bottom:679.517333pt;}
.y71{bottom:689.133333pt;}
.y3c{bottom:694.062667pt;}
.y70{bottom:703.678667pt;}
.y3b{bottom:708.608000pt;}
.y6f{bottom:718.224000pt;}
.yb{bottom:720.530667pt;}
.y3a{bottom:723.153333pt;}
.y6e{bottom:732.769333pt;}
.ya{bottom:735.076000pt;}
.y39{bottom:737.698667pt;}
.y6d{bottom:747.314667pt;}
.y9{bottom:749.621333pt;}
.y38{bottom:752.244000pt;}
.y6c{bottom:761.860000pt;}
.y8{bottom:764.166667pt;}
.y37{bottom:766.789333pt;}
.y6b{bottom:776.405333pt;}
.y36{bottom:781.334667pt;}
.y93{bottom:783.926667pt;}
.y92{bottom:798.472000pt;}
.y7{bottom:801.740000pt;}
.y6a{bottom:807.905333pt;}
.y35{bottom:810.346667pt;}
.y91{bottom:813.017333pt;}
.y6{bottom:816.285333pt;}
.y5{bottom:830.830667pt;}
.y90{bottom:838.190667pt;}
.y34{bottom:844.732000pt;}
.y4{bottom:845.376000pt;}
.y69{bottom:846.901333pt;}
.y8f{bottom:852.736000pt;}
.y3{bottom:859.921333pt;}
.y68{bottom:861.446667pt;}
.y67{bottom:875.992000pt;}
.y8e{bottom:877.908000pt;}
.y33{bottom:888.534667pt;}
.y66{bottom:890.537333pt;}
.y8d{bottom:892.453333pt;}
.y2{bottom:900.710667pt;}
.y32{bottom:903.080000pt;}
.y65{bottom:905.082667pt;}
.y31{bottom:917.625333pt;}
.y63{bottom:919.628000pt;}
.y64{bottom:924.449333pt;}
.y1{bottom:927.278667pt;}
.y30{bottom:932.170667pt;}
.y2f{bottom:946.716000pt;}
.h8{height:21.933807pt;}
.h7{height:25.589197pt;}
.h4{height:32.836730pt;}
.h9{height:36.290431pt;}
.h3{height:36.556100pt;}
.h2{height:36.715502pt;}
.h6{height:42.248474pt;}
.h5{height:44.058897pt;}
.h1{height:63.444487pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:142.233333pt;}
.x10{left:144.000000pt;}
.x18{left:156.181333pt;}
.x17{left:157.284000pt;}
.x14{left:160.870667pt;}
.x1{left:162.556000pt;}
.x4{left:172.961333pt;}
.x2{left:186.186667pt;}
.xf{left:191.821333pt;}
.x5{left:211.526667pt;}
.x3{left:216.996000pt;}
.x11{left:253.002667pt;}
.x12{left:258.316000pt;}
.x16{left:267.182667pt;}
.xd{left:344.545333pt;}
.xc{left:358.380000pt;}
.xe{left:378.344000pt;}
.xb{left:383.060000pt;}
.x15{left:404.678667pt;}
.x7{left:426.465333pt;}
.x8{left:469.710667pt;}
.x9{left:471.297333pt;}
.xa{left:482.461333pt;}
.x6{left:484.441333pt;}
}




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