
    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_4ceca4ef1f883faed5491778.woff')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_b9797e8d9d886a2548132014.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cf96c0a6cc81e912ac62e6c8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_9d910af5302bd9ddd53cd286.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_5066551716cffbd9ee011de5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e55f5a1e5dfbb00c23d08d16.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bfbe91834064981cca410d34.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_03f4025ea714836258b55dd3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.968000;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:ff9;src:url('chunks/assets/font_c273c8e1c233ca3f3a0dbe3c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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:ffa;src:url('chunks/assets/font_248030d2b31dd65fccb1e4fa.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_20ea3a2a93f16bada8811180.woff')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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:ffc;src:url('chunks/assets/font_2324bb3b1cec82be68064829.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.me{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);}
.m7{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);}
.m14{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m6{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);}
.m12{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);}
.m5{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);}
.m9{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);}
.mf{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);}
.m13{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);}
.md{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);}
.mc{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);}
.m15{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);}
.m1{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);}
.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);}
.m4{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.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);}
.ma{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);}
.mb{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);}
.v3{vertical-align:-37.902000px;}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.lsd{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001654px;}
.ls4{letter-spacing:0.002915px;}
.ls0{letter-spacing:0.003468px;}
.ls8{letter-spacing:2.987468px;}
.ls1{letter-spacing:2.991113px;}
.ls6{letter-spacing:2.993674px;}
.ls7{letter-spacing:2.993808px;}
.ls9{letter-spacing:4.361804px;}
.lsc{letter-spacing:8.961408px;}
.lsb{letter-spacing:13.449149px;}
.lsa{letter-spacing:13.449600px;}
.lsf{letter-spacing:16.952741px;}
.ls10{letter-spacing:17.149105px;}
.lse{letter-spacing:17.214560px;}
.ls3{letter-spacing:35.793869px;}
.ls2{letter-spacing:35.865600px;}
.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;}
}
.ws5{word-spacing:-50.809387px;}
.ws2{word-spacing:-17.932800px;}
.ws1a{word-spacing:-16.363650px;}
.ws4{word-spacing:-11.955150px;}
.ws33{word-spacing:-3.927276px;}
.ws9{word-spacing:-2.582323px;}
.ws36{word-spacing:-1.832729px;}
.ws27{word-spacing:-1.570910px;}
.ws11{word-spacing:-1.505456px;}
.wsb{word-spacing:-0.753178px;}
.ws1b{word-spacing:-0.654546px;}
.ws1c{word-spacing:-0.458182px;}
.ws1f{word-spacing:-0.327273px;}
.ws21{word-spacing:-0.261818px;}
.ws26{word-spacing:-0.196364px;}
.wsc{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.130909px;}
.ws2c{word-spacing:-0.086077px;}
.wsd{word-spacing:-0.065455px;}
.ws2e{word-spacing:-0.055637px;}
.ws8{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.047821px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.065455px;}
.ws13{word-spacing:0.130909px;}
.wsa{word-spacing:0.161395px;}
.wsf{word-spacing:0.196364px;}
.ws12{word-spacing:0.261818px;}
.ws2b{word-spacing:0.298878px;}
.ws31{word-spacing:0.327273px;}
.ws1d{word-spacing:0.392728px;}
.ws24{word-spacing:0.589091px;}
.ws25{word-spacing:0.654546px;}
.ws22{word-spacing:0.850910px;}
.ws14{word-spacing:1.047274px;}
.ws29{word-spacing:1.832729px;}
.ws20{word-spacing:1.963638px;}
.ws23{word-spacing:2.552729px;}
.ws15{word-spacing:2.749093px;}
.ws18{word-spacing:3.469094px;}
.ws16{word-spacing:4.465267px;}
.ws17{word-spacing:4.519066px;}
.ws1e{word-spacing:5.498186px;}
.ws19{word-spacing:5.694550px;}
.ws35{word-spacing:6.283642px;}
.ws34{word-spacing:7.265461px;}
.ws28{word-spacing:7.330915px;}
.ws7{word-spacing:13.395802px;}
.ws2a{word-spacing:15.183002px;}
.ws6{word-spacing:17.932800px;}
.ws30{word-spacing:19.178198px;}
.ws32{word-spacing:20.814563px;}
.ws2f{word-spacing:22.189109px;}
.ws0{word-spacing:25.719808px;}
.wse{word-spacing:42.952523px;}
._4{margin-left:-5.823212px;}
._5{margin-left:-4.519066px;}
._3{margin-left:-2.995480px;}
._2{margin-left:-1.342801px;}
._1{width:1.032924px;}
._b{width:2.849156px;}
._13{width:3.854296px;}
._a{width:9.199526px;}
._c{width:10.472755px;}
._8{width:13.772390px;}
._6{width:15.063552px;}
._7{width:16.229886px;}
._9{width:17.914867px;}
._d{width:19.440016px;}
._e{width:23.024587px;}
._f{width:25.789112px;}
._0{width:30.264673px;}
._14{width:32.727300px;}
._12{width:40.385488px;}
._10{width:43.592764px;}
._15{width:48.763677px;}
._11{width:64.554549px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs9{font-size:55.636800px;}
.fs8{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:247.480500px;}
.y26{bottom:262.717500px;}
.y64{bottom:265.930500px;}
.y25{bottom:279.156000px;}
.y63{bottom:286.254000px;}
.y4c{bottom:293.874000px;}
.y24{bottom:295.594500px;}
.y62{bottom:306.577500px;}
.y23{bottom:312.033000px;}
.y4b{bottom:314.197500px;}
.y61{bottom:326.901000px;}
.y22{bottom:328.518000px;}
.y4a{bottom:334.521000px;}
.y21{bottom:344.956500px;}
.y60{bottom:347.226000px;}
.y49{bottom:354.844500px;}
.y20{bottom:361.393500px;}
.y5f{bottom:367.549500px;}
.y48{bottom:375.169500px;}
.y1f{bottom:387.570000px;}
.y5e{bottom:387.873000px;}
.y47{bottom:395.493000px;}
.y1e{bottom:403.404000px;}
.y5d{bottom:408.196500px;}
.y1d{bottom:414.129000px;}
.y46{bottom:415.816500px;}
.y5c{bottom:428.520000px;}
.y45{bottom:436.140000px;}
.y5b{bottom:448.845000px;}
.y1c{bottom:451.353000px;}
.y44{bottom:456.463500px;}
.y5a{bottom:469.168500px;}
.y1b{bottom:471.676500px;}
.y43{bottom:476.788500px;}
.y59{bottom:489.492000px;}
.y1a{bottom:492.000000px;}
.y42{bottom:497.112000px;}
.y58{bottom:509.815500px;}
.y19{bottom:512.323500px;}
.y41{bottom:517.435500px;}
.y57{bottom:530.139000px;}
.y18{bottom:532.647000px;}
.y40{bottom:537.759000px;}
.y56{bottom:550.464000px;}
.y17{bottom:552.972000px;}
.y3f{bottom:558.082500px;}
.y55{bottom:570.787500px;}
.y16{bottom:573.295500px;}
.y3e{bottom:578.407500px;}
.y54{bottom:591.111000px;}
.y15{bottom:593.619000px;}
.y3d{bottom:598.731000px;}
.y53{bottom:611.434500px;}
.y14{bottom:613.942500px;}
.y3c{bottom:619.054500px;}
.y52{bottom:631.758000px;}
.y3b{bottom:639.378000px;}
.y13{bottom:650.412000px;}
.y51{bottom:652.081500px;}
.y50{bottom:652.083000px;}
.y3a{bottom:659.701500px;}
.y39{bottom:680.026500px;}
.y4f{bottom:688.552500px;}
.y38{bottom:700.350000px;}
.y37{bottom:720.673500px;}
.y12{bottom:724.452000px;}
.y11{bottom:740.890500px;}
.y36{bottom:740.997000px;}
.y4e{bottom:747.349500px;}
.y35{bottom:761.320500px;}
.y4d{bottom:765.282000px;}
.y10{bottom:768.669000px;}
.yf{bottom:785.106000px;}
.y34{bottom:797.791500px;}
.ye{bottom:801.544500px;}
.yd{bottom:817.983000px;}
.yc{bottom:834.421500px;}
.y33{bottom:849.259500px;}
.yb{bottom:850.860000px;}
.ya{bottom:867.298500px;}
.y32{bottom:869.583000px;}
.y31{bottom:889.908000px;}
.y30{bottom:910.231500px;}
.y9{bottom:918.142500px;}
.y2f{bottom:930.555000px;}
.y8{bottom:937.570500px;}
.y2e{bottom:950.878500px;}
.y7{bottom:956.997000px;}
.y2d{bottom:971.202000px;}
.y6{bottom:976.423500px;}
.y6a{bottom:977.847000px;}
.y2c{bottom:991.527000px;}
.y69{bottom:998.170500px;}
.y5{bottom:1005.082500px;}
.y2b{bottom:1011.850500px;}
.y68{bottom:1018.494000px;}
.y4{bottom:1026.003000px;}
.y67{bottom:1038.817500px;}
.y3{bottom:1046.925000px;}
.y2a{bottom:1048.320000px;}
.y66{bottom:1059.141000px;}
.y65{bottom:1079.466000px;}
.y2{bottom:1085.779500px;}
.y29{bottom:1099.789500px;}
.y1{bottom:1118.656500px;}
.y28{bottom:1120.113000px;}
.hb{height:16.677504px;}
.hc{height:21.070899px;}
.h5{height:25.105920px;}
.hf{height:25.392845px;}
.ha{height:37.658880px;}
.h7{height:38.089267px;}
.h11{height:40.447954px;}
.h10{height:42.321125px;}
.h6{height:45.687311px;}
.he{height:46.212826px;}
.h9{height:46.341857px;}
.hd{height:47.073600px;}
.h3{height:59.884985px;}
.h4{height:59.890985px;}
.h8{height:60.081886px;}
.h2{height:72.098095px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:132.136500px;}
.x1{left:133.936500px;}
.x18{left:141.546000px;}
.x3{left:150.300000px;}
.x19{left:168.988500px;}
.x5{left:187.455000px;}
.x6{left:194.437500px;}
.x2{left:195.871500px;}
.x16{left:225.828000px;}
.x17{left:241.045500px;}
.xf{left:263.715000px;}
.x10{left:271.324500px;}
.x13{left:436.824000px;}
.x14{left:444.433500px;}
.x11{left:521.887500px;}
.x12{left:529.497000px;}
.x15{left:537.297000px;}
.x1a{left:596.073000px;}
.xb{left:605.925000px;}
.xc{left:613.534500px;}
.x7{left:665.593500px;}
.x8{left:673.203000px;}
.x9{left:680.581500px;}
.xa{left:688.191000px;}
.x1b{left:738.502500px;}
.xd{left:743.553000px;}
.xe{left:751.162500px;}
@media print{
.v3{vertical-align:-33.690667pt;}
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001470pt;}
.ls4{letter-spacing:0.002591pt;}
.ls0{letter-spacing:0.003083pt;}
.ls8{letter-spacing:2.655527pt;}
.ls1{letter-spacing:2.658767pt;}
.ls6{letter-spacing:2.661043pt;}
.ls7{letter-spacing:2.661163pt;}
.ls9{letter-spacing:3.877159pt;}
.lsc{letter-spacing:7.965696pt;}
.lsb{letter-spacing:11.954799pt;}
.lsa{letter-spacing:11.955200pt;}
.lsf{letter-spacing:15.069103pt;}
.ls10{letter-spacing:15.243649pt;}
.lse{letter-spacing:15.301831pt;}
.ls3{letter-spacing:31.816772pt;}
.ls2{letter-spacing:31.880533pt;}
.ws5{word-spacing:-45.163900pt;}
.ws2{word-spacing:-15.940267pt;}
.ws1a{word-spacing:-14.545467pt;}
.ws4{word-spacing:-10.626800pt;}
.ws33{word-spacing:-3.490912pt;}
.ws9{word-spacing:-2.295398pt;}
.ws36{word-spacing:-1.629092pt;}
.ws27{word-spacing:-1.396365pt;}
.ws11{word-spacing:-1.338183pt;}
.wsb{word-spacing:-0.669491pt;}
.ws1b{word-spacing:-0.581819pt;}
.ws1c{word-spacing:-0.407273pt;}
.ws1f{word-spacing:-0.290909pt;}
.ws21{word-spacing:-0.232727pt;}
.ws26{word-spacing:-0.174546pt;}
.wsc{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.116364pt;}
.ws2c{word-spacing:-0.076513pt;}
.wsd{word-spacing:-0.058182pt;}
.ws2e{word-spacing:-0.049455pt;}
.ws8{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.042507pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.058182pt;}
.ws13{word-spacing:0.116364pt;}
.wsa{word-spacing:0.143462pt;}
.wsf{word-spacing:0.174546pt;}
.ws12{word-spacing:0.232727pt;}
.ws2b{word-spacing:0.265669pt;}
.ws31{word-spacing:0.290909pt;}
.ws1d{word-spacing:0.349091pt;}
.ws24{word-spacing:0.523637pt;}
.ws25{word-spacing:0.581819pt;}
.ws22{word-spacing:0.756364pt;}
.ws14{word-spacing:0.930910pt;}
.ws29{word-spacing:1.629092pt;}
.ws20{word-spacing:1.745456pt;}
.ws23{word-spacing:2.269093pt;}
.ws15{word-spacing:2.443638pt;}
.ws18{word-spacing:3.083639pt;}
.ws16{word-spacing:3.969126pt;}
.ws17{word-spacing:4.016947pt;}
.ws1e{word-spacing:4.887277pt;}
.ws19{word-spacing:5.061822pt;}
.ws35{word-spacing:5.585459pt;}
.ws34{word-spacing:6.458187pt;}
.ws28{word-spacing:6.516369pt;}
.ws7{word-spacing:11.907379pt;}
.ws2a{word-spacing:13.496002pt;}
.ws6{word-spacing:15.940267pt;}
.ws30{word-spacing:17.047287pt;}
.ws32{word-spacing:18.501834pt;}
.ws2f{word-spacing:19.723653pt;}
.ws0{word-spacing:22.862051pt;}
.wse{word-spacing:38.180020pt;}
._4{margin-left:-5.176188pt;}
._5{margin-left:-4.016947pt;}
._3{margin-left:-2.662649pt;}
._2{margin-left:-1.193601pt;}
._1{width:0.918155pt;}
._b{width:2.532583pt;}
._13{width:3.426041pt;}
._a{width:8.177357pt;}
._c{width:9.309116pt;}
._8{width:12.242125pt;}
._6{width:13.389824pt;}
._7{width:14.426565pt;}
._9{width:15.924326pt;}
._d{width:17.280014pt;}
._e{width:20.466300pt;}
._f{width:22.923655pt;}
._0{width:26.901932pt;}
._14{width:29.090933pt;}
._12{width:35.898212pt;}
._10{width:38.749123pt;}
._15{width:43.345491pt;}
._11{width:57.381821pt;}
.fs7{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs9{font-size:49.454933pt;}
.fs8{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:219.982667pt;}
.y26{bottom:233.526667pt;}
.y64{bottom:236.382667pt;}
.y25{bottom:248.138667pt;}
.y63{bottom:254.448000pt;}
.y4c{bottom:261.221333pt;}
.y24{bottom:262.750667pt;}
.y62{bottom:272.513333pt;}
.y23{bottom:277.362667pt;}
.y4b{bottom:279.286667pt;}
.y61{bottom:290.578667pt;}
.y22{bottom:292.016000pt;}
.y4a{bottom:297.352000pt;}
.y21{bottom:306.628000pt;}
.y60{bottom:308.645333pt;}
.y49{bottom:315.417333pt;}
.y20{bottom:321.238667pt;}
.y5f{bottom:326.710667pt;}
.y48{bottom:333.484000pt;}
.y1f{bottom:344.506667pt;}
.y5e{bottom:344.776000pt;}
.y47{bottom:351.549333pt;}
.y1e{bottom:358.581333pt;}
.y5d{bottom:362.841333pt;}
.y1d{bottom:368.114667pt;}
.y46{bottom:369.614667pt;}
.y5c{bottom:380.906667pt;}
.y45{bottom:387.680000pt;}
.y5b{bottom:398.973333pt;}
.y1c{bottom:401.202667pt;}
.y44{bottom:405.745333pt;}
.y5a{bottom:417.038667pt;}
.y1b{bottom:419.268000pt;}
.y43{bottom:423.812000pt;}
.y59{bottom:435.104000pt;}
.y1a{bottom:437.333333pt;}
.y42{bottom:441.877333pt;}
.y58{bottom:453.169333pt;}
.y19{bottom:455.398667pt;}
.y41{bottom:459.942667pt;}
.y57{bottom:471.234667pt;}
.y18{bottom:473.464000pt;}
.y40{bottom:478.008000pt;}
.y56{bottom:489.301333pt;}
.y17{bottom:491.530667pt;}
.y3f{bottom:496.073333pt;}
.y55{bottom:507.366667pt;}
.y16{bottom:509.596000pt;}
.y3e{bottom:514.140000pt;}
.y54{bottom:525.432000pt;}
.y15{bottom:527.661333pt;}
.y3d{bottom:532.205333pt;}
.y53{bottom:543.497333pt;}
.y14{bottom:545.726667pt;}
.y3c{bottom:550.270667pt;}
.y52{bottom:561.562667pt;}
.y3b{bottom:568.336000pt;}
.y13{bottom:578.144000pt;}
.y51{bottom:579.628000pt;}
.y50{bottom:579.629333pt;}
.y3a{bottom:586.401333pt;}
.y39{bottom:604.468000pt;}
.y4f{bottom:612.046667pt;}
.y38{bottom:622.533333pt;}
.y37{bottom:640.598667pt;}
.y12{bottom:643.957333pt;}
.y11{bottom:658.569333pt;}
.y36{bottom:658.664000pt;}
.y4e{bottom:664.310667pt;}
.y35{bottom:676.729333pt;}
.y4d{bottom:680.250667pt;}
.y10{bottom:683.261333pt;}
.yf{bottom:697.872000pt;}
.y34{bottom:709.148000pt;}
.ye{bottom:712.484000pt;}
.yd{bottom:727.096000pt;}
.yc{bottom:741.708000pt;}
.y33{bottom:754.897333pt;}
.yb{bottom:756.320000pt;}
.ya{bottom:770.932000pt;}
.y32{bottom:772.962667pt;}
.y31{bottom:791.029333pt;}
.y30{bottom:809.094667pt;}
.y9{bottom:816.126667pt;}
.y2f{bottom:827.160000pt;}
.y8{bottom:833.396000pt;}
.y2e{bottom:845.225333pt;}
.y7{bottom:850.664000pt;}
.y2d{bottom:863.290667pt;}
.y6{bottom:867.932000pt;}
.y6a{bottom:869.197333pt;}
.y2c{bottom:881.357333pt;}
.y69{bottom:887.262667pt;}
.y5{bottom:893.406667pt;}
.y2b{bottom:899.422667pt;}
.y68{bottom:905.328000pt;}
.y4{bottom:912.002667pt;}
.y67{bottom:923.393333pt;}
.y3{bottom:930.600000pt;}
.y2a{bottom:931.840000pt;}
.y66{bottom:941.458667pt;}
.y65{bottom:959.525333pt;}
.y2{bottom:965.137333pt;}
.y29{bottom:977.590667pt;}
.y1{bottom:994.361333pt;}
.y28{bottom:995.656000pt;}
.hb{height:14.824448pt;}
.hc{height:18.729688pt;}
.h5{height:22.316373pt;}
.hf{height:22.571418pt;}
.ha{height:33.474560pt;}
.h7{height:33.857126pt;}
.h11{height:35.953737pt;}
.h10{height:37.618778pt;}
.h6{height:40.610943pt;}
.he{height:41.078067pt;}
.h9{height:41.192762pt;}
.hd{height:41.843200pt;}
.h3{height:53.231098pt;}
.h4{height:53.236431pt;}
.h8{height:53.406121pt;}
.h2{height:64.087196pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:117.454667pt;}
.x1{left:119.054667pt;}
.x18{left:125.818667pt;}
.x3{left:133.600000pt;}
.x19{left:150.212000pt;}
.x5{left:166.626667pt;}
.x6{left:172.833333pt;}
.x2{left:174.108000pt;}
.x16{left:200.736000pt;}
.x17{left:214.262667pt;}
.xf{left:234.413333pt;}
.x10{left:241.177333pt;}
.x13{left:388.288000pt;}
.x14{left:395.052000pt;}
.x11{left:463.900000pt;}
.x12{left:470.664000pt;}
.x15{left:477.597333pt;}
.x1a{left:529.842667pt;}
.xb{left:538.600000pt;}
.xc{left:545.364000pt;}
.x7{left:591.638667pt;}
.x8{left:598.402667pt;}
.x9{left:604.961333pt;}
.xa{left:611.725333pt;}
.x1b{left:656.446667pt;}
.xd{left:660.936000pt;}
.xe{left:667.700000pt;}
}




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