
    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_9792f351299230af51db76b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_53e139bdca75f3e25da0fc4d.woff2')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_4a5bb4a87a2704008b97500d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6266694a0a387d45c2adad5.woff2')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_8a3fd8130c9c989afb3a8697.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.259000;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_67c82cd23301b1e2f88b62db.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.452000;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_ac1d5350773e808962d5e7fb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ae57b3d55415ebe6f3335dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858000;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_e60b5b35ee49f83571efaf4f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m3{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.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m10{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.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.ma{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.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);}
.m9{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);}
.m1{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);}
.m16{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);}
.me{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);}
.m7{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);}
.m17{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.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);}
.m15{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);}
.m13{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);}
.m6{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);}
.m12{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:24.684000px;}
.lse{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.004200px;}
.lsb{letter-spacing:0.004800px;}
.lsa{letter-spacing:1.609133px;}
.ls1d{letter-spacing:1.749377px;}
.ls1c{letter-spacing:1.761634px;}
.ls18{letter-spacing:1.796725px;}
.ls2{letter-spacing:2.155133px;}
.ls20{letter-spacing:2.212200px;}
.ls10{letter-spacing:2.390725px;}
.ls3{letter-spacing:2.609510px;}
.ls11{letter-spacing:2.901634px;}
.ls1b{letter-spacing:3.050725px;}
.ls1a{letter-spacing:3.584725px;}
.ls6{letter-spacing:4.445510px;}
.ls14{letter-spacing:4.653634px;}
.lsc{letter-spacing:9.554400px;}
.ls19{letter-spacing:10.622100px;}
.ls8{letter-spacing:11.930218px;}
.ls1{letter-spacing:12.158045px;}
.ls16{letter-spacing:13.282718px;}
.lsf{letter-spacing:13.508383px;}
.ls1f{letter-spacing:14.056718px;}
.ls1e{letter-spacing:15.496200px;}
.ls5{letter-spacing:15.755347px;}
.ls9{letter-spacing:16.049510px;}
.lsd{letter-spacing:16.669133px;}
.ls7{letter-spacing:17.122447px;}
.ls0{letter-spacing:17.472422px;}
.ls13{letter-spacing:17.496845px;}
.ls4{letter-spacing:17.629133px;}
.ls15{letter-spacing:18.472447px;}
.ls12{letter-spacing:19.592725px;}
.ls21{letter-spacing:119.055527px;}
.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;}
}
.ws25{word-spacing:-48.435827px;}
.ws26{word-spacing:-42.825604px;}
.ws28{word-spacing:-42.822436px;}
.ws1e{word-spacing:-23.910300px;}
.ws33{word-spacing:-19.128192px;}
.ws1b{word-spacing:-19.068416px;}
.ws34{word-spacing:-18.829314px;}
.ws2f{word-spacing:-17.813129px;}
.ws2b{word-spacing:-17.802256px;}
.ws2d{word-spacing:-17.753353px;}
.ws22{word-spacing:-17.036046px;}
.ws10{word-spacing:-16.946496px;}
.ws32{word-spacing:-16.378514px;}
.ws3c{word-spacing:-16.139412px;}
.ws3e{word-spacing:-16.019861px;}
.ws3f{word-spacing:-15.302554px;}
.ws19{word-spacing:-15.183002px;}
.wse{word-spacing:-15.117350px;}
.ws1c{word-spacing:-15.003676px;}
.ws2{word-spacing:-14.943900px;}
.ws14{word-spacing:-14.884124px;}
.ws12{word-spacing:-14.824349px;}
.ws21{word-spacing:-14.704798px;}
.ws15{word-spacing:-14.645022px;}
.ws6{word-spacing:-14.310374px;}
.wsc{word-spacing:-13.664794px;}
.wsd{word-spacing:-13.610995px;}
.ws37{word-spacing:-13.476778px;}
.ws39{word-spacing:-13.474157px;}
.ws3a{word-spacing:-13.472179px;}
.ws4{word-spacing:-13.449600px;}
.ws30{word-spacing:-13.389734px;}
.ws8{word-spacing:-13.234406px;}
.ws7{word-spacing:-13.180608px;}
.ws3d{word-spacing:-12.313774px;}
.ws17{word-spacing:-11.596466px;}
.ws23{word-spacing:-11.359217px;}
.ws16{word-spacing:-10.341179px;}
.wsb{word-spacing:-10.230355px;}
.ws5{word-spacing:-9.683712px;}
.ws18{word-spacing:-8.727238px;}
.ws3b{word-spacing:-8.308808px;}
.ws36{word-spacing:-7.830604px;}
.ws31{word-spacing:-7.770828px;}
.ws20{word-spacing:-7.352399px;}
.ws13{word-spacing:-4.722272px;}
.ws9{word-spacing:-4.099267px;}
.ws1{word-spacing:-0.083686px;}
.ws35{word-spacing:-0.071731px;}
.ws24{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws1f{word-spacing:0.000000px;}
.ws1d{word-spacing:2.199748px;}
.ws2c{word-spacing:12.078064px;}
.ws2e{word-spacing:12.982079px;}
.ws38{word-spacing:13.395802px;}
.ws29{word-spacing:14.884124px;}
.ws1a{word-spacing:17.861069px;}
.wsf{word-spacing:19.830712px;}
.ws0{word-spacing:20.837864px;}
.ws3{word-spacing:26.858234px;}
.ws2a{word-spacing:28.190047px;}
.ws27{word-spacing:60.851561px;}
.ws11{word-spacing:71.659469px;}
._2{margin-left:-6.276465px;}
._5{margin-left:-5.224427px;}
._1{margin-left:-3.765879px;}
._0{margin-left:-2.092155px;}
._3{margin-left:-1.075968px;}
._4{width:1.392776px;}
._d{width:3.806477px;}
._b{width:5.379804px;}
._6{width:12.415465px;}
._13{width:13.927724px;}
._7{width:16.079714px;}
._c{width:20.801909px;}
._8{width:24.149342px;}
._f{width:28.884524px;}
._12{width:29.911910px;}
._e{width:59.775600px;}
._9{width:71.731200px;}
._11{width:100.183906px;}
._10{width:102.036949px;}
._a{width:121.464019px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:43.636200px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.797800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y21{bottom:223.228500px;}
.y20{bottom:237.424500px;}
.y6b{bottom:238.899000px;}
.y3e{bottom:241.161000px;}
.y3d{bottom:259.093500px;}
.y1f{bottom:263.107500px;}
.y6a{bottom:264.924000px;}
.y3c{bottom:277.026000px;}
.y1e{bottom:281.040000px;}
.y69{bottom:290.949000px;}
.y3b{bottom:294.960000px;}
.y53{bottom:296.736000px;}
.y3a{bottom:312.892500px;}
.y1d{bottom:316.521000px;}
.y68{bottom:316.975500px;}
.y39{bottom:330.825000px;}
.y67{bottom:343.183500px;}
.y52{bottom:346.335000px;}
.y38{bottom:348.757500px;}
.y37{bottom:366.690000px;}
.y1c{bottom:371.428500px;}
.y51{bottom:371.739000px;}
.y36{bottom:384.622500px;}
.y1b{bottom:389.361000px;}
.y50{bottom:397.144500px;}
.y66{bottom:398.223000px;}
.y35{bottom:402.556500px;}
.y1a{bottom:407.293500px;}
.y65{bottom:416.155500px;}
.y4f{bottom:424.044000px;}
.y19{bottom:425.226000px;}
.y64{bottom:434.088000px;}
.y34{bottom:442.053000px;}
.y18{bottom:443.160000px;}
.y17{bottom:461.092500px;}
.y4e{bottom:461.686500px;}
.y63{bottom:469.699500px;}
.y33{bottom:481.549500px;}
.y16{bottom:490.980000px;}
.y15{bottom:508.912500px;}
.y4d{bottom:511.284000px;}
.y62{bottom:524.739000px;}
.y14{bottom:526.845000px;}
.y4c{bottom:529.216500px;}
.y32{bottom:533.001000px;}
.y61{bottom:542.671500px;}
.y13{bottom:544.779000px;}
.y4b{bottom:547.149000px;}
.y31{bottom:550.933500px;}
.y60{bottom:560.605500px;}
.y12{bottom:580.258500px;}
.y4a{bottom:584.793000px;}
.y30{bottom:590.430000px;}
.y5f{bottom:596.217000px;}
.y49{bottom:617.952000px;}
.y11{bottom:635.166000px;}
.y2f{bottom:641.881500px;}
.y5e{bottom:651.256500px;}
.y10{bottom:653.098500px;}
.y2e{bottom:667.287000px;}
.y48{bottom:670.539000px;}
.y5d{bottom:676.660500px;}
.yf{bottom:679.998000px;}
.y47{bottom:688.471500px;}
.y2d{bottom:694.185000px;}
.ye{bottom:694.941000px;}
.y5c{bottom:702.066000px;}
.y46{bottom:706.404000px;}
.yd{bottom:709.885500px;}
.y2c{bottom:724.129500px;}
.yc{bottom:724.830000px;}
.y5b{bottom:727.470000px;}
.y45{bottom:736.293000px;}
.yb{bottom:739.773000px;}
.y5a{bottom:752.875500px;}
.y2b{bottom:754.072500px;}
.y44{bottom:754.225500px;}
.ya{bottom:754.717500px;}
.y9{bottom:769.662000px;}
.y43{bottom:772.158000px;}
.y59{bottom:782.763000px;}
.y8{bottom:784.605000px;}
.y2a{bottom:789.085500px;}
.y7{bottom:799.549500px;}
.y74{bottom:800.188500px;}
.y42{bottom:805.317000px;}
.y6{bottom:814.494000px;}
.y73{bottom:818.121000px;}
.y5{bottom:829.437000px;}
.y72{bottom:836.053500px;}
.y58{bottom:837.802500px;}
.y29{bottom:843.526500px;}
.y4{bottom:844.381500px;}
.y71{bottom:853.987500px;}
.y41{bottom:857.904000px;}
.y28{bottom:861.459000px;}
.y57{bottom:863.206500px;}
.y70{bottom:871.920000px;}
.y40{bottom:875.836500px;}
.y27{bottom:879.391500px;}
.y56{bottom:888.612000px;}
.y6f{bottom:889.852500px;}
.y26{bottom:897.324000px;}
.y3{bottom:902.662500px;}
.y6e{bottom:907.785000px;}
.y3f{bottom:913.480500px;}
.y55{bottom:914.016000px;}
.y6d{bottom:925.717500px;}
.y25{bottom:927.213000px;}
.y54{bottom:940.915500px;}
.y6c{bottom:943.650000px;}
.y24{bottom:945.145500px;}
.y2{bottom:946.000500px;}
.y23{bottom:963.078000px;}
.y1{bottom:971.404500px;}
.y22{bottom:981.010500px;}
.h9{height:32.900573px;}
.he{height:36.636302px;}
.h5{height:37.013299px;}
.h4{height:37.336090px;}
.h6{height:38.767564px;}
.h8{height:41.125613px;}
.hd{height:41.484266px;}
.hb{height:42.859105px;}
.ha{height:43.927564px;}
.h7{height:49.781453px;}
.h3{height:51.723706px;}
.hc{height:52.983155px;}
.h2{height:58.078223px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:178.582500px;}
.x6{left:193.527000px;}
.x8{left:199.842000px;}
.x7{left:202.443000px;}
.x9{left:228.085500px;}
.x2{left:685.677000px;}
.x3{left:693.148500px;}
.x4{left:700.597500px;}
.x5{left:708.070500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:21.941333pt;}
.lse{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.003733pt;}
.lsb{letter-spacing:0.004267pt;}
.lsa{letter-spacing:1.430340pt;}
.ls1d{letter-spacing:1.555002pt;}
.ls1c{letter-spacing:1.565897pt;}
.ls18{letter-spacing:1.597089pt;}
.ls2{letter-spacing:1.915674pt;}
.ls20{letter-spacing:1.966400pt;}
.ls10{letter-spacing:2.125089pt;}
.ls3{letter-spacing:2.319565pt;}
.ls11{letter-spacing:2.579230pt;}
.ls1b{letter-spacing:2.711756pt;}
.ls1a{letter-spacing:3.186422pt;}
.ls6{letter-spacing:3.951565pt;}
.ls14{letter-spacing:4.136563pt;}
.lsc{letter-spacing:8.492800pt;}
.ls19{letter-spacing:9.441867pt;}
.ls8{letter-spacing:10.604638pt;}
.ls1{letter-spacing:10.807151pt;}
.ls16{letter-spacing:11.806861pt;}
.lsf{letter-spacing:12.007452pt;}
.ls1f{letter-spacing:12.494861pt;}
.ls1e{letter-spacing:13.774400pt;}
.ls5{letter-spacing:14.004753pt;}
.ls9{letter-spacing:14.266231pt;}
.lsd{letter-spacing:14.817007pt;}
.ls7{letter-spacing:15.219953pt;}
.ls0{letter-spacing:15.531042pt;}
.ls13{letter-spacing:15.552751pt;}
.ls4{letter-spacing:15.670340pt;}
.ls15{letter-spacing:16.419953pt;}
.ls12{letter-spacing:17.415756pt;}
.ls21{letter-spacing:105.827135pt;}
.ws25{word-spacing:-43.054068pt;}
.ws26{word-spacing:-38.067203pt;}
.ws28{word-spacing:-38.064387pt;}
.ws1e{word-spacing:-21.253600pt;}
.ws33{word-spacing:-17.002837pt;}
.ws1b{word-spacing:-16.949703pt;}
.ws34{word-spacing:-16.737168pt;}
.ws2f{word-spacing:-15.833892pt;}
.ws2b{word-spacing:-15.824228pt;}
.ws2d{word-spacing:-15.780758pt;}
.ws22{word-spacing:-15.143152pt;}
.ws10{word-spacing:-15.063552pt;}
.ws32{word-spacing:-14.558679pt;}
.ws3c{word-spacing:-14.346144pt;}
.ws3e{word-spacing:-14.239876pt;}
.ws3f{word-spacing:-13.602270pt;}
.ws19{word-spacing:-13.496002pt;}
.wse{word-spacing:-13.437645pt;}
.ws1c{word-spacing:-13.336601pt;}
.ws2{word-spacing:-13.283467pt;}
.ws14{word-spacing:-13.230333pt;}
.ws12{word-spacing:-13.177199pt;}
.ws21{word-spacing:-13.070931pt;}
.ws15{word-spacing:-13.017797pt;}
.ws6{word-spacing:-12.720333pt;}
.wsc{word-spacing:-12.146483pt;}
.wsd{word-spacing:-12.098662pt;}
.ws37{word-spacing:-11.979358pt;}
.ws39{word-spacing:-11.977028pt;}
.ws3a{word-spacing:-11.975270pt;}
.ws4{word-spacing:-11.955200pt;}
.ws30{word-spacing:-11.901986pt;}
.ws8{word-spacing:-11.763917pt;}
.ws7{word-spacing:-11.716096pt;}
.ws3d{word-spacing:-10.945577pt;}
.ws17{word-spacing:-10.307970pt;}
.ws23{word-spacing:-10.097082pt;}
.ws16{word-spacing:-9.192159pt;}
.wsb{word-spacing:-9.093649pt;}
.ws5{word-spacing:-8.607744pt;}
.ws18{word-spacing:-7.757545pt;}
.ws3b{word-spacing:-7.385607pt;}
.ws36{word-spacing:-6.960537pt;}
.ws31{word-spacing:-6.907403pt;}
.ws20{word-spacing:-6.535466pt;}
.ws13{word-spacing:-4.197575pt;}
.ws9{word-spacing:-3.643793pt;}
.ws1{word-spacing:-0.074388pt;}
.ws35{word-spacing:-0.063761pt;}
.ws24{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws1f{word-spacing:0.000000pt;}
.ws1d{word-spacing:1.955331pt;}
.ws2c{word-spacing:10.736056pt;}
.ws2e{word-spacing:11.539626pt;}
.ws38{word-spacing:11.907379pt;}
.ws29{word-spacing:13.230333pt;}
.ws1a{word-spacing:15.876506pt;}
.wsf{word-spacing:17.627300pt;}
.ws0{word-spacing:18.522546pt;}
.ws3{word-spacing:23.873985pt;}
.ws2a{word-spacing:25.057820pt;}
.ws27{word-spacing:54.090276pt;}
.ws11{word-spacing:63.697306pt;}
._2{margin-left:-5.579080pt;}
._5{margin-left:-4.643935pt;}
._1{margin-left:-3.347448pt;}
._0{margin-left:-1.859693pt;}
._3{margin-left:-0.956416pt;}
._4{width:1.238023pt;}
._d{width:3.383535pt;}
._b{width:4.782048pt;}
._6{width:11.035969pt;}
._13{width:12.380199pt;}
._7{width:14.293079pt;}
._c{width:18.490586pt;}
._8{width:21.466082pt;}
._f{width:25.675132pt;}
._12{width:26.588365pt;}
._e{width:53.133867pt;}
._9{width:63.761067pt;}
._11{width:89.052361pt;}
._10{width:90.699510pt;}
._a{width:107.968017pt;}
.fs2{font-size:38.787733pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820267pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:198.425333pt;}
.y20{bottom:211.044000pt;}
.y6b{bottom:212.354667pt;}
.y3e{bottom:214.365333pt;}
.y3d{bottom:230.305333pt;}
.y1f{bottom:233.873333pt;}
.y6a{bottom:235.488000pt;}
.y3c{bottom:246.245333pt;}
.y1e{bottom:249.813333pt;}
.y69{bottom:258.621333pt;}
.y3b{bottom:262.186667pt;}
.y53{bottom:263.765333pt;}
.y3a{bottom:278.126667pt;}
.y1d{bottom:281.352000pt;}
.y68{bottom:281.756000pt;}
.y39{bottom:294.066667pt;}
.y67{bottom:305.052000pt;}
.y52{bottom:307.853333pt;}
.y38{bottom:310.006667pt;}
.y37{bottom:325.946667pt;}
.y1c{bottom:330.158667pt;}
.y51{bottom:330.434667pt;}
.y36{bottom:341.886667pt;}
.y1b{bottom:346.098667pt;}
.y50{bottom:353.017333pt;}
.y66{bottom:353.976000pt;}
.y35{bottom:357.828000pt;}
.y1a{bottom:362.038667pt;}
.y65{bottom:369.916000pt;}
.y4f{bottom:376.928000pt;}
.y19{bottom:377.978667pt;}
.y64{bottom:385.856000pt;}
.y34{bottom:392.936000pt;}
.y18{bottom:393.920000pt;}
.y17{bottom:409.860000pt;}
.y4e{bottom:410.388000pt;}
.y63{bottom:417.510667pt;}
.y33{bottom:428.044000pt;}
.y16{bottom:436.426667pt;}
.y15{bottom:452.366667pt;}
.y4d{bottom:454.474667pt;}
.y62{bottom:466.434667pt;}
.y14{bottom:468.306667pt;}
.y4c{bottom:470.414667pt;}
.y32{bottom:473.778667pt;}
.y61{bottom:482.374667pt;}
.y13{bottom:484.248000pt;}
.y4b{bottom:486.354667pt;}
.y31{bottom:489.718667pt;}
.y60{bottom:498.316000pt;}
.y12{bottom:515.785333pt;}
.y4a{bottom:519.816000pt;}
.y30{bottom:524.826667pt;}
.y5f{bottom:529.970667pt;}
.y49{bottom:549.290667pt;}
.y11{bottom:564.592000pt;}
.y2f{bottom:570.561333pt;}
.y5e{bottom:578.894667pt;}
.y10{bottom:580.532000pt;}
.y2e{bottom:593.144000pt;}
.y48{bottom:596.034667pt;}
.y5d{bottom:601.476000pt;}
.yf{bottom:604.442667pt;}
.y47{bottom:611.974667pt;}
.y2d{bottom:617.053333pt;}
.ye{bottom:617.725333pt;}
.y5c{bottom:624.058667pt;}
.y46{bottom:627.914667pt;}
.yd{bottom:631.009333pt;}
.y2c{bottom:643.670667pt;}
.yc{bottom:644.293333pt;}
.y5b{bottom:646.640000pt;}
.y45{bottom:654.482667pt;}
.yb{bottom:657.576000pt;}
.y5a{bottom:669.222667pt;}
.y2b{bottom:670.286667pt;}
.y44{bottom:670.422667pt;}
.ya{bottom:670.860000pt;}
.y9{bottom:684.144000pt;}
.y43{bottom:686.362667pt;}
.y59{bottom:695.789333pt;}
.y8{bottom:697.426667pt;}
.y2a{bottom:701.409333pt;}
.y7{bottom:710.710667pt;}
.y74{bottom:711.278667pt;}
.y42{bottom:715.837333pt;}
.y6{bottom:723.994667pt;}
.y73{bottom:727.218667pt;}
.y5{bottom:737.277333pt;}
.y72{bottom:743.158667pt;}
.y58{bottom:744.713333pt;}
.y29{bottom:749.801333pt;}
.y4{bottom:750.561333pt;}
.y71{bottom:759.100000pt;}
.y41{bottom:762.581333pt;}
.y28{bottom:765.741333pt;}
.y57{bottom:767.294667pt;}
.y70{bottom:775.040000pt;}
.y40{bottom:778.521333pt;}
.y27{bottom:781.681333pt;}
.y56{bottom:789.877333pt;}
.y6f{bottom:790.980000pt;}
.y26{bottom:797.621333pt;}
.y3{bottom:802.366667pt;}
.y6e{bottom:806.920000pt;}
.y3f{bottom:811.982667pt;}
.y55{bottom:812.458667pt;}
.y6d{bottom:822.860000pt;}
.y25{bottom:824.189333pt;}
.y54{bottom:836.369333pt;}
.y6c{bottom:838.800000pt;}
.y24{bottom:840.129333pt;}
.y2{bottom:840.889333pt;}
.y23{bottom:856.069333pt;}
.y1{bottom:863.470667pt;}
.y22{bottom:872.009333pt;}
.h9{height:29.244954pt;}
.he{height:32.565602pt;}
.h5{height:32.900710pt;}
.h4{height:33.187635pt;}
.h6{height:34.460057pt;}
.h8{height:36.556100pt;}
.hd{height:36.874903pt;}
.hb{height:38.096982pt;}
.ha{height:39.046724pt;}
.h7{height:44.250180pt;}
.h3{height:45.976627pt;}
.hc{height:47.096138pt;}
.h2{height:51.625087pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:158.740000pt;}
.x6{left:172.024000pt;}
.x8{left:177.637333pt;}
.x7{left:179.949333pt;}
.x9{left:202.742667pt;}
.x2{left:609.490667pt;}
.x3{left:616.132000pt;}
.x4{left:622.753333pt;}
.x5{left:629.396000pt;}
}




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