
    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_280c1a71237e89047be8556b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_b94ace1ec75a8cefde4740c5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_51c432c8c5f8f64b64ed800e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_c77ea7f00df8d185237b4e75.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5b1f6a9e99893ad05bd8efa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_60c434e0303bc1dab31cf52a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_6ad6288e39dd257057abb35c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_e2b44ccc7be13f1bc440fc28.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_8028940d47b2d317cb1ffa78.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899000;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_1b97030f50108157d440507c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.234000;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_cd3476cac5b3d9bf757b1403.woff')format("woff");}.ffb{font-family:ffb;line-height:0.482000;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);}
.mb{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.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);}
.ma{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);}
.m9{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);}
.m16{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);}
.m12{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);}
.m11{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);}
.m19{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);}
.m15{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);}
.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);}
.m14{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);}
.m10{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);}
.mc{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m13{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);}
.m18{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);}
.m17{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);}
.m8{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);}
.m1a{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);}
.me{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);}
.mf{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);}
.m7{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:17.280014px;}
.ls3{letter-spacing:19.505471px;}
.ls1{letter-spacing:26.378204px;}
.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;}
}
.ws1b{word-spacing:-40.341627px;}
.ws7{word-spacing:-15.535678px;}
.ws2e{word-spacing:-15.329467px;}
.ws2b{word-spacing:-14.609467px;}
.ws29{word-spacing:-14.478558px;}
.ws2a{word-spacing:-13.562193px;}
.ws16{word-spacing:-13.442427px;}
.ws2f{word-spacing:-13.431284px;}
.ws32{word-spacing:-13.104011px;}
.ws26{word-spacing:-12.449465px;}
.ws1c{word-spacing:-12.253101px;}
.ws30{word-spacing:-11.991283px;}
.ws2c{word-spacing:-11.925828px;}
.ws28{word-spacing:-11.533101px;}
.ws18{word-spacing:-11.467646px;}
.wsb{word-spacing:-11.336737px;}
.ws10{word-spacing:-11.271282px;}
.ws1d{word-spacing:-11.205828px;}
.ws12{word-spacing:-11.140373px;}
.wsf{word-spacing:-11.074918px;}
.wsd{word-spacing:-11.009464px;}
.ws17{word-spacing:-10.944009px;}
.wsa{word-spacing:-10.878555px;}
.wse{word-spacing:-10.813100px;}
.ws1f{word-spacing:-10.747645px;}
.ws11{word-spacing:-10.682191px;}
.ws15{word-spacing:-10.616736px;}
.ws20{word-spacing:-10.551282px;}
.ws9{word-spacing:-10.485827px;}
.ws27{word-spacing:-10.158554px;}
.ws4{word-spacing:-10.036323px;}
.ws5{word-spacing:-9.976548px;}
.ws33{word-spacing:-9.962190px;}
.ws3{word-spacing:-9.856996px;}
.ws2{word-spacing:-9.558118px;}
.wsc{word-spacing:-9.504008px;}
.ws1e{word-spacing:-8.914917px;}
.ws21{word-spacing:-8.653098px;}
.ws1a{word-spacing:-8.456734px;}
.ws22{word-spacing:-8.260371px;}
.ws31{word-spacing:-7.409461px;}
.ws24{word-spacing:-7.278552px;}
.ws23{word-spacing:-7.213097px;}
.ws19{word-spacing:-6.165823px;}
.ws25{word-spacing:-5.838550px;}
.ws8{word-spacing:-0.086077px;}
.ws13{word-spacing:0.000000px;}
.ws2d{word-spacing:22.894055px;}
.ws1{word-spacing:23.312640px;}
.ws6{word-spacing:24.089567px;}
.ws14{word-spacing:31.504255px;}
.ws0{word-spacing:36.978679px;}
._14{margin-left:-6.742733px;}
._1{margin-left:-4.901599px;}
._7{margin-left:-3.287658px;}
._0{margin-left:-1.936742px;}
._3{width:1.613941px;}
._8{width:3.287658px;}
._13{width:19.716319px;}
._5{width:21.363812px;}
._12{width:23.578888px;}
._d{width:25.128278px;}
._4{width:26.157854px;}
._6{width:27.221821px;}
._2{width:28.716211px;}
._9{width:29.870624px;}
._24{width:32.307677px;}
._a{width:33.819421px;}
._e{width:35.422602px;}
._f{width:38.108057px;}
._10{width:40.943212px;}
._c{width:44.385410px;}
._11{width:45.617181px;}
._1a{width:72.113297px;}
._18{width:81.019861px;}
._1d{width:87.033274px;}
._1c{width:141.536692px;}
._22{width:177.413981px;}
._1e{width:186.547718px;}
._15{width:191.939452px;}
._16{width:212.884835px;}
._1b{width:230.195836px;}
._19{width:248.606720px;}
._17{width:260.083636px;}
._1f{width:273.533146px;}
._21{width:279.271603px;}
._20{width:316.212924px;}
._23{width:384.237557px;}
._b{width:2264.366847px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b{bottom:60.180000px;}
.y1a{bottom:105.010500px;}
.y5a{bottom:124.441500px;}
.y3b{bottom:127.344000px;}
.y19{bottom:133.464000px;}
.y73{bottom:147.691500px;}
.y59{bottom:152.895000px;}
.y3a{bottom:155.797500px;}
.y18{bottom:161.917500px;}
.y72{bottom:176.143500px;}
.y39{bottom:184.251000px;}
.y58{bottom:195.574500px;}
.y17{bottom:204.597000px;}
.y38{bottom:212.703000px;}
.y57{bottom:224.028000px;}
.y16{bottom:233.050500px;}
.y37{bottom:241.156500px;}
.y56{bottom:252.481500px;}
.y15{bottom:261.504000px;}
.y36{bottom:269.610000px;}
.y55{bottom:280.935000px;}
.y14{bottom:289.957500px;}
.y35{bottom:298.063500px;}
.y71{bottom:304.183500px;}
.y54{bottom:323.614500px;}
.y34{bottom:326.517000px;}
.y13{bottom:332.637000px;}
.y53{bottom:352.068000px;}
.y33{bottom:354.969000px;}
.y12{bottom:361.090500px;}
.y52{bottom:380.521500px;}
.y32{bottom:386.944500px;}
.y11{bottom:389.542500px;}
.y70{bottom:403.770000px;}
.y51{bottom:408.973500px;}
.y10{bottom:417.996000px;}
.y31{bottom:423.279000px;}
.y6f{bottom:432.222000px;}
.y50{bottom:451.653000px;}
.y30{bottom:451.731000px;}
.yf{bottom:460.675500px;}
.y6e{bottom:464.902500px;}
.y4f{bottom:480.106500px;}
.ye{bottom:489.129000px;}
.y2f{bottom:494.412000px;}
.y4e{bottom:508.560000px;}
.y6d{bottom:512.395500px;}
.yd{bottom:521.808000px;}
.y2e{bottom:522.864000px;}
.y6c{bottom:532.719000px;}
.y4d{bottom:537.013500px;}
.y2d{bottom:551.317500px;}
.y6b{bottom:553.042500px;}
.y4c{bottom:565.467000px;}
.yc{bottom:575.782500px;}
.y2c{bottom:579.771000px;}
.y6a{bottom:590.250000px;}
.y4b{bottom:593.919000px;}
.yb{bottom:600.888000px;}
.y69{bottom:608.182500px;}
.y2b{bottom:608.224500px;}
.y4a{bottom:622.372500px;}
.y68{bottom:626.115000px;}
.ya{bottom:629.982000px;}
.y67{bottom:644.047500px;}
.y2a{bottom:650.904000px;}
.y9{bottom:655.087500px;}
.y49{bottom:665.052000px;}
.y66{bottom:670.189500px;}
.y29{bottom:679.357500px;}
.y8{bottom:680.194500px;}
.y65{bottom:688.123500px;}
.y48{bottom:693.505500px;}
.y7{bottom:705.300000px;}
.y64{bottom:706.056000px;}
.y28{bottom:707.809500px;}
.y47{bottom:721.959000px;}
.y63{bottom:723.988500px;}
.y6{bottom:730.405500px;}
.y27{bottom:736.263000px;}
.y62{bottom:750.130500px;}
.y46{bottom:750.412500px;}
.y5{bottom:755.511000px;}
.y26{bottom:764.716500px;}
.y61{bottom:787.858500px;}
.y45{bottom:793.092000px;}
.y4{bottom:794.229000px;}
.y25{bottom:807.396000px;}
.y60{bottom:816.312000px;}
.y44{bottom:825.067500px;}
.y24{bottom:835.849500px;}
.y5f{bottom:844.764000px;}
.y43{bottom:861.400500px;}
.y23{bottom:864.303000px;}
.y5e{bottom:873.217500px;}
.y3{bottom:884.791500px;}
.y42{bottom:889.854000px;}
.y22{bottom:892.756500px;}
.y5d{bottom:907.762500px;}
.y41{bottom:918.307500px;}
.y21{bottom:924.730500px;}
.y5c{bottom:936.214500px;}
.y40{bottom:946.759500px;}
.y2{bottom:952.714500px;}
.y20{bottom:961.065000px;}
.y5b{bottom:968.190000px;}
.y3f{bottom:975.213000px;}
.y1{bottom:982.003500px;}
.y1f{bottom:989.517000px;}
.y3e{bottom:1003.666500px;}
.y1e{bottom:1017.970500px;}
.y3d{bottom:1032.120000px;}
.y1d{bottom:1050.651000px;}
.y3c{bottom:1060.573500px;}
.y1c{bottom:1120.468500px;}
.h9{height:24.021838px;}
.h3{height:41.783144px;}
.h8{height:44.705492px;}
.h4{height:44.891476px;}
.h6{height:49.156405px;}
.h7{height:50.283571px;}
.h2{height:50.642227px;}
.h5{height:60.167963px;}
.h1{height:72.304680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:106.096500px;}
.x7{left:108.000000px;}
.xc{left:121.017000px;}
.x6{left:147.160500px;}
.x5{left:148.909500px;}
.xd{left:272.050500px;}
.x9{left:322.335000px;}
.x2{left:329.160000px;}
.xa{left:341.380500px;}
.x1{left:348.843000px;}
.xb{left:360.628500px;}
.x3{left:409.092000px;}
.x4{left:426.361500px;}
.x8{left:454.932000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:15.360013pt;}
.ls3{letter-spacing:17.338196pt;}
.ls1{letter-spacing:23.447292pt;}
.ws1b{word-spacing:-35.859224pt;}
.ws7{word-spacing:-13.809492pt;}
.ws2e{word-spacing:-13.626193pt;}
.ws2b{word-spacing:-12.986193pt;}
.ws29{word-spacing:-12.869829pt;}
.ws2a{word-spacing:-12.055283pt;}
.ws16{word-spacing:-11.948824pt;}
.ws2f{word-spacing:-11.938919pt;}
.ws32{word-spacing:-11.648010pt;}
.ws26{word-spacing:-11.066191pt;}
.ws1c{word-spacing:-10.891645pt;}
.ws30{word-spacing:-10.658918pt;}
.ws2c{word-spacing:-10.600736pt;}
.ws28{word-spacing:-10.251645pt;}
.ws18{word-spacing:-10.193463pt;}
.wsb{word-spacing:-10.077099pt;}
.ws10{word-spacing:-10.018917pt;}
.ws1d{word-spacing:-9.960736pt;}
.ws12{word-spacing:-9.902554pt;}
.wsf{word-spacing:-9.844372pt;}
.wsd{word-spacing:-9.786190pt;}
.ws17{word-spacing:-9.728008pt;}
.wsa{word-spacing:-9.669826pt;}
.wse{word-spacing:-9.611644pt;}
.ws1f{word-spacing:-9.553463pt;}
.ws11{word-spacing:-9.495281pt;}
.ws15{word-spacing:-9.437099pt;}
.ws20{word-spacing:-9.378917pt;}
.ws9{word-spacing:-9.320735pt;}
.ws27{word-spacing:-9.029826pt;}
.ws4{word-spacing:-8.921176pt;}
.ws5{word-spacing:-8.868042pt;}
.ws33{word-spacing:-8.855280pt;}
.ws3{word-spacing:-8.761775pt;}
.ws2{word-spacing:-8.496105pt;}
.wsc{word-spacing:-8.448007pt;}
.ws1e{word-spacing:-7.924370pt;}
.ws21{word-spacing:-7.691643pt;}
.ws1a{word-spacing:-7.517097pt;}
.ws22{word-spacing:-7.342552pt;}
.ws31{word-spacing:-6.586187pt;}
.ws24{word-spacing:-6.469824pt;}
.ws23{word-spacing:-6.411642pt;}
.ws19{word-spacing:-5.480732pt;}
.ws25{word-spacing:-5.189823pt;}
.ws8{word-spacing:-0.076513pt;}
.ws13{word-spacing:0.000000pt;}
.ws2d{word-spacing:20.350271pt;}
.ws1{word-spacing:20.722347pt;}
.ws6{word-spacing:21.412948pt;}
.ws14{word-spacing:28.003782pt;}
.ws0{word-spacing:32.869937pt;}
._14{margin-left:-5.993540pt;}
._1{margin-left:-4.356977pt;}
._7{margin-left:-2.922363pt;}
._0{margin-left:-1.721549pt;}
._3{width:1.434614pt;}
._8{width:2.922363pt;}
._13{width:17.525617pt;}
._5{width:18.990055pt;}
._12{width:20.959012pt;}
._d{width:22.336247pt;}
._4{width:23.251426pt;}
._6{width:24.197174pt;}
._2{width:25.525521pt;}
._9{width:26.551666pt;}
._24{width:28.717935pt;}
._a{width:30.061708pt;}
._e{width:31.486757pt;}
._f{width:33.873829pt;}
._10{width:36.393966pt;}
._c{width:39.453698pt;}
._11{width:40.548605pt;}
._1a{width:64.100708pt;}
._18{width:72.017654pt;}
._1d{width:77.362910pt;}
._1c{width:125.810393pt;}
._22{width:157.701316pt;}
._1e{width:165.820194pt;}
._15{width:170.612846pt;}
._16{width:189.230964pt;}
._1b{width:204.618521pt;}
._19{width:220.983751pt;}
._17{width:231.185454pt;}
._1f{width:243.140574pt;}
._21{width:248.241425pt;}
._20{width:281.078155pt;}
._23{width:341.544495pt;}
._b{width:2012.770531pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:53.493333pt;}
.y1a{bottom:93.342667pt;}
.y5a{bottom:110.614667pt;}
.y3b{bottom:113.194667pt;}
.y19{bottom:118.634667pt;}
.y73{bottom:131.281333pt;}
.y59{bottom:135.906667pt;}
.y3a{bottom:138.486667pt;}
.y18{bottom:143.926667pt;}
.y72{bottom:156.572000pt;}
.y39{bottom:163.778667pt;}
.y58{bottom:173.844000pt;}
.y17{bottom:181.864000pt;}
.y38{bottom:189.069333pt;}
.y57{bottom:199.136000pt;}
.y16{bottom:207.156000pt;}
.y37{bottom:214.361333pt;}
.y56{bottom:224.428000pt;}
.y15{bottom:232.448000pt;}
.y36{bottom:239.653333pt;}
.y55{bottom:249.720000pt;}
.y14{bottom:257.740000pt;}
.y35{bottom:264.945333pt;}
.y71{bottom:270.385333pt;}
.y54{bottom:287.657333pt;}
.y34{bottom:290.237333pt;}
.y13{bottom:295.677333pt;}
.y53{bottom:312.949333pt;}
.y33{bottom:315.528000pt;}
.y12{bottom:320.969333pt;}
.y52{bottom:338.241333pt;}
.y32{bottom:343.950667pt;}
.y11{bottom:346.260000pt;}
.y70{bottom:358.906667pt;}
.y51{bottom:363.532000pt;}
.y10{bottom:371.552000pt;}
.y31{bottom:376.248000pt;}
.y6f{bottom:384.197333pt;}
.y50{bottom:401.469333pt;}
.y30{bottom:401.538667pt;}
.yf{bottom:409.489333pt;}
.y6e{bottom:413.246667pt;}
.y4f{bottom:426.761333pt;}
.ye{bottom:434.781333pt;}
.y2f{bottom:439.477333pt;}
.y4e{bottom:452.053333pt;}
.y6d{bottom:455.462667pt;}
.yd{bottom:463.829333pt;}
.y2e{bottom:464.768000pt;}
.y6c{bottom:473.528000pt;}
.y4d{bottom:477.345333pt;}
.y2d{bottom:490.060000pt;}
.y6b{bottom:491.593333pt;}
.y4c{bottom:502.637333pt;}
.yc{bottom:511.806667pt;}
.y2c{bottom:515.352000pt;}
.y6a{bottom:524.666667pt;}
.y4b{bottom:527.928000pt;}
.yb{bottom:534.122667pt;}
.y69{bottom:540.606667pt;}
.y2b{bottom:540.644000pt;}
.y4a{bottom:553.220000pt;}
.y68{bottom:556.546667pt;}
.ya{bottom:559.984000pt;}
.y67{bottom:572.486667pt;}
.y2a{bottom:578.581333pt;}
.y9{bottom:582.300000pt;}
.y49{bottom:591.157333pt;}
.y66{bottom:595.724000pt;}
.y29{bottom:603.873333pt;}
.y8{bottom:604.617333pt;}
.y65{bottom:611.665333pt;}
.y48{bottom:616.449333pt;}
.y7{bottom:626.933333pt;}
.y64{bottom:627.605333pt;}
.y28{bottom:629.164000pt;}
.y47{bottom:641.741333pt;}
.y63{bottom:643.545333pt;}
.y6{bottom:649.249333pt;}
.y27{bottom:654.456000pt;}
.y62{bottom:666.782667pt;}
.y46{bottom:667.033333pt;}
.y5{bottom:671.565333pt;}
.y26{bottom:679.748000pt;}
.y61{bottom:700.318667pt;}
.y45{bottom:704.970667pt;}
.y4{bottom:705.981333pt;}
.y25{bottom:717.685333pt;}
.y60{bottom:725.610667pt;}
.y44{bottom:733.393333pt;}
.y24{bottom:742.977333pt;}
.y5f{bottom:750.901333pt;}
.y43{bottom:765.689333pt;}
.y23{bottom:768.269333pt;}
.y5e{bottom:776.193333pt;}
.y3{bottom:786.481333pt;}
.y42{bottom:790.981333pt;}
.y22{bottom:793.561333pt;}
.y5d{bottom:806.900000pt;}
.y41{bottom:816.273333pt;}
.y21{bottom:821.982667pt;}
.y5c{bottom:832.190667pt;}
.y40{bottom:841.564000pt;}
.y2{bottom:846.857333pt;}
.y20{bottom:854.280000pt;}
.y5b{bottom:860.613333pt;}
.y3f{bottom:866.856000pt;}
.y1{bottom:872.892000pt;}
.y1f{bottom:879.570667pt;}
.y3e{bottom:892.148000pt;}
.y1e{bottom:904.862667pt;}
.y3d{bottom:917.440000pt;}
.y1d{bottom:933.912000pt;}
.y3c{bottom:942.732000pt;}
.y1c{bottom:995.972000pt;}
.h9{height:21.352745pt;}
.h3{height:37.140573pt;}
.h8{height:39.738215pt;}
.h4{height:39.903534pt;}
.h6{height:43.694582pt;}
.h7{height:44.696508pt;}
.h2{height:45.015313pt;}
.h5{height:53.482634pt;}
.h1{height:64.270827pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:94.308000pt;}
.x7{left:96.000000pt;}
.xc{left:107.570667pt;}
.x6{left:130.809333pt;}
.x5{left:132.364000pt;}
.xd{left:241.822667pt;}
.x9{left:286.520000pt;}
.x2{left:292.586667pt;}
.xa{left:303.449333pt;}
.x1{left:310.082667pt;}
.xb{left:320.558667pt;}
.x3{left:363.637333pt;}
.x4{left:378.988000pt;}
.x8{left:404.384000pt;}
}




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