
    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_ca2bcd0231bf9aca1fbdfa50.woff2')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_3cfa01907e3677751999866c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_de66f837e55bf54bb27d610f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_d5a0d3674eaba150d32a5289.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4585cae7e73de648f04de204.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_0eeb85ad3e7c918916956dae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_6f7d8e5afd744adf722f3e2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.205078;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_37e4b68286d3bcd4f87f25ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_c5e190bae6d33836f1452020.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.372000;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_825a4ac0f4a56850a5886be1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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;}
.m1{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);}
.mf{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);}
.m11{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);}
.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);}
.m9{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);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.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);}
.m4{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);}
.m1a{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);}
.m12{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);}
.m8{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);}
.m10{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);}
.m1d{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);}
.m16{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);}
.m17{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);}
.ma{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);}
.m1c{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);}
.md{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.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.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);}
.m18{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);}
.m1b{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);}
.mc{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);}
.m19{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);}
.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);}
.m2{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);}
.m3{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);}
.m7{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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:11.956683px;}
.ls3{letter-spacing:21.819527px;}
.ls5{letter-spacing:21.939527px;}
.ls6{letter-spacing:22.119527px;}
.ls4{letter-spacing:22.539527px;}
.ls2{letter-spacing:23.913527px;}
.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;}
}
.ws2c{word-spacing:-14.943900px;}
.ws1b{word-spacing:-8.599883px;}
.ws3{word-spacing:-4.662497px;}
.ws17{word-spacing:-3.825638px;}
.ws0{word-spacing:-2.917450px;}
.ws2{word-spacing:-2.915238px;}
.ws15{word-spacing:-2.271473px;}
.ws14{word-spacing:-2.032370px;}
.ws23{word-spacing:-1.195512px;}
.wse{word-spacing:-1.135736px;}
.ws1a{word-spacing:-0.896634px;}
.ws29{word-spacing:-0.717307px;}
.ws22{word-spacing:-0.645581px;}
.ws18{word-spacing:-0.358654px;}
.ws13{word-spacing:-0.298878px;}
.ws5{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.179327px;}
.ws20{word-spacing:-0.161395px;}
.ws33{word-spacing:-0.143462px;}
.ws4{word-spacing:-0.119551px;}
.ws28{word-spacing:-0.095641px;}
.ws24{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.042855px;}
.ws1d{word-spacing:-0.038053px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.047821px;}
.ws1e{word-spacing:0.053798px;}
.wsb{word-spacing:0.059776px;}
.ws34{word-spacing:0.095641px;}
.wsf{word-spacing:0.119551px;}
.ws21{word-spacing:0.161395px;}
.ws9{word-spacing:0.179327px;}
.ws31{word-spacing:0.191282px;}
.ws1f{word-spacing:0.215194px;}
.ws7{word-spacing:0.239102px;}
.ws6{word-spacing:0.358654px;}
.wsa{word-spacing:0.478205px;}
.ws25{word-spacing:0.597756px;}
.ws2e{word-spacing:0.669488px;}
.ws26{word-spacing:0.717309px;}
.ws16{word-spacing:0.777083px;}
.ws2b{word-spacing:0.956410px;}
.ws10{word-spacing:1.135736px;}
.ws12{word-spacing:1.255288px;}
.ws2f{word-spacing:1.434618px;}
.wsd{word-spacing:1.554166px;}
.wsc{word-spacing:1.613941px;}
.ws2a{word-spacing:2.749678px;}
.ws30{word-spacing:5.258183px;}
.ws8{word-spacing:11.907329px;}
.ws35{word-spacing:12.002971px;}
.ws32{word-spacing:12.098612px;}
.ws27{word-spacing:12.916058px;}
.ws11{word-spacing:16.168249px;}
._3{margin-left:-7.330915px;}
._e{margin-left:-5.864026px;}
._b{margin-left:-4.841824px;}
._6{margin-left:-3.746166px;}
._1{margin-left:-2.225456px;}
._5{margin-left:-1.163843px;}
._8{width:1.235591px;}
._2{width:2.421820px;}
._d{width:12.266035px;}
._a{width:14.107042px;}
._0{width:16.363650px;}
._f{width:18.100046px;}
._11{width:20.439152px;}
._12{width:22.995756px;}
._4{width:26.899200px;}
._10{width:29.542967px;}
._7{width:59.775600px;}
._9{width:1745.686767px;}
._c{width:1886.596999px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:37.060800px;}
.fs6{font-size:38.052578px;}
.fs7{font-size:42.855330px;}
.fs5{font-size:43.636200px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y43{bottom:80.791797px;}
.y51{bottom:81.963458px;}
.y45{bottom:82.902897px;}
.y50{bottom:124.781843px;}
.y4f{bottom:143.264524px;}
.y35{bottom:152.499000px;}
.y6c{bottom:153.162000px;}
.y42{bottom:160.338045px;}
.y4e{bottom:166.264958px;}
.y6b{bottom:168.105000px;}
.y13{bottom:168.358500px;}
.y34{bottom:170.431500px;}
.y4d{bottom:177.754620px;}
.y6a{bottom:183.049500px;}
.y12{bottom:184.795500px;}
.y4a{bottom:187.069849px;}
.y69{bottom:187.389000px;}
.y33{bottom:188.364000px;}
.y4c{bottom:189.244282px;}
.y47{bottom:192.516487px;}
.y9a{bottom:197.806500px;}
.y49{bottom:198.564788px;}
.y11{bottom:201.234000px;}
.y46{bottom:204.011426px;}
.y32{bottom:206.296500px;}
.y48{bottom:210.070283px;}
.y99{bottom:212.751000px;}
.y68{bottom:214.386000px;}
.y31{bottom:224.229000px;}
.y98{bottom:227.695500px;}
.y67{bottom:232.318500px;}
.y41{bottom:239.884293px;}
.y30{bottom:242.161500px;}
.y97{bottom:242.638500px;}
.y52{bottom:249.943685px;}
.y66{bottom:250.252500px;}
.y96{bottom:257.583000px;}
.y2f{bottom:260.095500px;}
.y10{bottom:266.836500px;}
.y65{bottom:268.185000px;}
.y95{bottom:272.526000px;}
.y2e{bottom:278.028000px;}
.yf{bottom:281.779500px;}
.y64{bottom:286.117500px;}
.y94{bottom:287.470500px;}
.y2d{bottom:295.960500px;}
.y93{bottom:302.415000px;}
.y63{bottom:304.050000px;}
.y3e{bottom:307.893380px;}
.y40{bottom:312.785854px;}
.ye{bottom:315.879000px;}
.y92{bottom:317.358000px;}
.y44{bottom:318.628323px;}
.y3d{bottom:319.383041px;}
.y62{bottom:321.982500px;}
.y3f{bottom:324.275515px;}
.y2c{bottom:330.373500px;}
.y3c{bottom:330.872703px;}
.y91{bottom:332.302500px;}
.yd{bottom:333.811500px;}
.y61{bottom:339.915000px;}
.y90{bottom:347.247000px;}
.y53{bottom:347.629559px;}
.yc{bottom:351.745500px;}
.y60{bottom:357.849000px;}
.y8f{bottom:362.190000px;}
.y4b{bottom:366.935569px;}
.yb{bottom:369.678000px;}
.y5f{bottom:375.781500px;}
.y8e{bottom:377.134500px;}
.ya{bottom:387.610500px;}
.y8d{bottom:392.079000px;}
.y5e{bottom:393.714000px;}
.y9{bottom:405.543000px;}
.y8c{bottom:407.022000px;}
.y5d{bottom:411.646500px;}
.y8b{bottom:421.966500px;}
.y8{bottom:423.475500px;}
.y5c{bottom:434.062500px;}
.y8a{bottom:436.911000px;}
.y7{bottom:441.408000px;}
.y89{bottom:451.854000px;}
.y6{bottom:463.824000px;}
.y88{bottom:471.282000px;}
.y5b{bottom:490.086000px;}
.y5{bottom:501.999000px;}
.y87{bottom:502.663500px;}
.y5a{bottom:506.524500px;}
.y59{bottom:522.963000px;}
.y86{bottom:525.079500px;}
.y58{bottom:539.401500px;}
.y4{bottom:539.767500px;}
.y57{bottom:555.840000px;}
.y85{bottom:556.462500px;}
.y56{bottom:572.278500px;}
.y84{bottom:574.395000px;}
.y55{bottom:588.717000px;}
.y83{bottom:592.327500px;}
.y54{bottom:605.155500px;}
.y82{bottom:614.743500px;}
.y3b{bottom:634.594500px;}
.y81{bottom:646.125000px;}
.y80{bottom:668.541000px;}
.y7f{bottom:699.924000px;}
.y7e{bottom:717.856500px;}
.y2b{bottom:721.863000px;}
.y7d{bottom:735.789000px;}
.y2a{bottom:739.795500px;}
.y7c{bottom:753.721500px;}
.y29{bottom:757.729500px;}
.y7b{bottom:771.655500px;}
.y28{bottom:775.662000px;}
.y7a{bottom:789.588000px;}
.y27{bottom:793.594500px;}
.y79{bottom:807.520500px;}
.y26{bottom:811.527000px;}
.y78{bottom:828.591000px;}
.y25{bottom:829.459500px;}
.y24{bottom:847.392000px;}
.y77{bottom:858.166500px;}
.y23{bottom:865.326000px;}
.y76{bottom:876.099000px;}
.y22{bottom:883.258500px;}
.y75{bottom:894.031500px;}
.y21{bottom:901.191000px;}
.y74{bottom:911.964000px;}
.y20{bottom:919.123500px;}
.y73{bottom:929.898000px;}
.y1f{bottom:937.056000px;}
.y72{bottom:947.830500px;}
.y1e{bottom:954.988500px;}
.y71{bottom:968.901000px;}
.y1d{bottom:972.922500px;}
.y1c{bottom:990.855000px;}
.y70{bottom:995.338500px;}
.y1b{bottom:1008.787500px;}
.y6f{bottom:1013.271000px;}
.y1a{bottom:1026.720000px;}
.y6e{bottom:1031.203500px;}
.y19{bottom:1044.652500px;}
.y3a{bottom:1049.136000px;}
.y18{bottom:1062.585000px;}
.y3{bottom:1066.834500px;}
.y39{bottom:1067.068500px;}
.y6d{bottom:1071.552000px;}
.y17{bottom:1080.519000px;}
.y38{bottom:1085.001000px;}
.y2{bottom:1086.261000px;}
.y16{bottom:1098.451500px;}
.y37{bottom:1102.935000px;}
.y15{bottom:1120.867500px;}
.y1{bottom:1120.887000px;}
.y36{bottom:1126.291500px;}
.y14{bottom:1161.216000px;}
.h10{height:27.276749px;}
.hb{height:32.116243px;}
.h9{height:33.474420px;}
.ha{height:33.856985px;}
.h8{height:35.195962px;}
.hd{height:37.848194px;}
.h4{height:38.089267px;}
.hf{height:38.963015px;}
.he{height:39.465406px;}
.h5{height:39.595622px;}
.h6{height:41.723369px;}
.h7{height:43.994842px;}
.h3{height:46.341857px;}
.h2{height:60.081886px;}
.hc{height:389.102119px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:731.496139px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:23.512365px;}
.x19{left:28.565811px;}
.x18{left:30.320663px;}
.x1a{left:31.494962px;}
.x24{left:79.038000px;}
.x1{left:80.697000px;}
.x9{left:86.118000px;}
.xa{left:93.067500px;}
.xb{left:95.641500px;}
.x26{left:100.746000px;}
.x25{left:103.905000px;}
.x7{left:137.715000px;}
.x8{left:144.664500px;}
.x2{left:176.503500px;}
.x1d{left:200.739210px;}
.x1b{left:202.032259px;}
.x23{left:205.885017px;}
.xe{left:244.141500px;}
.x11{left:252.655500px;}
.x22{left:256.377251px;}
.x12{left:259.603500px;}
.x13{left:292.065000px;}
.x14{left:297.885000px;}
.x21{left:306.742819px;}
.x15{left:327.484377px;}
.x16{left:330.202418px;}
.x3{left:349.653000px;}
.x4{left:356.602500px;}
.x1c{left:412.366430px;}
.xf{left:522.192000px;}
.x10{left:529.140000px;}
.x5{left:586.657500px;}
.x6{left:593.607000px;}
.x20{left:607.812068px;}
.x1f{left:609.395393px;}
.x1e{left:616.689243px;}
.xc{left:782.979000px;}
.xd{left:789.928500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:10.628163pt;}
.ls3{letter-spacing:19.395135pt;}
.ls5{letter-spacing:19.501802pt;}
.ls6{letter-spacing:19.661802pt;}
.ls4{letter-spacing:20.035135pt;}
.ls2{letter-spacing:21.256468pt;}
.ws2c{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-7.644340pt;}
.ws3{word-spacing:-4.144442pt;}
.ws17{word-spacing:-3.400567pt;}
.ws0{word-spacing:-2.593289pt;}
.ws2{word-spacing:-2.591323pt;}
.ws15{word-spacing:-2.019087pt;}
.ws14{word-spacing:-1.806551pt;}
.ws23{word-spacing:-1.062677pt;}
.wse{word-spacing:-1.009543pt;}
.ws1a{word-spacing:-0.797008pt;}
.ws29{word-spacing:-0.637606pt;}
.ws22{word-spacing:-0.573850pt;}
.ws18{word-spacing:-0.318803pt;}
.ws13{word-spacing:-0.265669pt;}
.ws5{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.159402pt;}
.ws20{word-spacing:-0.143462pt;}
.ws33{word-spacing:-0.127522pt;}
.ws4{word-spacing:-0.106268pt;}
.ws28{word-spacing:-0.085014pt;}
.ws24{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.038094pt;}
.ws1d{word-spacing:-0.033825pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.042507pt;}
.ws1e{word-spacing:0.047821pt;}
.wsb{word-spacing:0.053134pt;}
.ws34{word-spacing:0.085014pt;}
.wsf{word-spacing:0.106268pt;}
.ws21{word-spacing:0.143462pt;}
.ws9{word-spacing:0.159402pt;}
.ws31{word-spacing:0.170029pt;}
.ws1f{word-spacing:0.191283pt;}
.ws7{word-spacing:0.212535pt;}
.ws6{word-spacing:0.318803pt;}
.wsa{word-spacing:0.425071pt;}
.ws25{word-spacing:0.531339pt;}
.ws2e{word-spacing:0.595101pt;}
.ws26{word-spacing:0.637608pt;}
.ws16{word-spacing:0.690740pt;}
.ws2b{word-spacing:0.850142pt;}
.ws10{word-spacing:1.009543pt;}
.ws12{word-spacing:1.115811pt;}
.ws2f{word-spacing:1.275216pt;}
.wsd{word-spacing:1.381481pt;}
.wsc{word-spacing:1.434614pt;}
.ws2a{word-spacing:2.444158pt;}
.ws30{word-spacing:4.673940pt;}
.ws8{word-spacing:10.584293pt;}
.ws35{word-spacing:10.669307pt;}
.ws32{word-spacing:10.754322pt;}
.ws27{word-spacing:11.480941pt;}
.ws11{word-spacing:14.371777pt;}
._3{margin-left:-6.516369pt;}
._e{margin-left:-5.212467pt;}
._b{margin-left:-4.303843pt;}
._6{margin-left:-3.329925pt;}
._1{margin-left:-1.978183pt;}
._5{margin-left:-1.034527pt;}
._8{width:1.098303pt;}
._2{width:2.152729pt;}
._d{width:10.903142pt;}
._a{width:12.539593pt;}
._0{width:14.545467pt;}
._f{width:16.088930pt;}
._11{width:18.168135pt;}
._12{width:20.440672pt;}
._4{width:23.910400pt;}
._10{width:26.260415pt;}
._7{width:53.133867pt;}
._9{width:1551.721571pt;}
._c{width:1676.975110pt;}
.fs8{font-size:32.942933pt;}
.fs6{font-size:33.824513pt;}
.fs7{font-size:38.093627pt;}
.fs5{font-size:38.787733pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:71.814931pt;}
.y51{bottom:72.856407pt;}
.y45{bottom:73.691464pt;}
.y50{bottom:110.917194pt;}
.y4f{bottom:127.346243pt;}
.y35{bottom:135.554667pt;}
.y6c{bottom:136.144000pt;}
.y42{bottom:142.522707pt;}
.y4e{bottom:147.791074pt;}
.y6b{bottom:149.426667pt;}
.y13{bottom:149.652000pt;}
.y34{bottom:151.494667pt;}
.y4d{bottom:158.004107pt;}
.y6a{bottom:162.710667pt;}
.y12{bottom:164.262667pt;}
.y4a{bottom:166.284310pt;}
.y69{bottom:166.568000pt;}
.y33{bottom:167.434667pt;}
.y4c{bottom:168.217139pt;}
.y47{bottom:171.125766pt;}
.y9a{bottom:175.828000pt;}
.y49{bottom:176.502034pt;}
.y11{bottom:178.874667pt;}
.y46{bottom:181.343490pt;}
.y32{bottom:183.374667pt;}
.y48{bottom:186.729141pt;}
.y99{bottom:189.112000pt;}
.y68{bottom:190.565333pt;}
.y31{bottom:199.314667pt;}
.y98{bottom:202.396000pt;}
.y67{bottom:206.505333pt;}
.y41{bottom:213.230483pt;}
.y30{bottom:215.254667pt;}
.y97{bottom:215.678667pt;}
.y52{bottom:222.172164pt;}
.y66{bottom:222.446667pt;}
.y96{bottom:228.962667pt;}
.y2f{bottom:231.196000pt;}
.y10{bottom:237.188000pt;}
.y65{bottom:238.386667pt;}
.y95{bottom:242.245333pt;}
.y2e{bottom:247.136000pt;}
.yf{bottom:250.470667pt;}
.y64{bottom:254.326667pt;}
.y94{bottom:255.529333pt;}
.y2d{bottom:263.076000pt;}
.y93{bottom:268.813333pt;}
.y63{bottom:270.266667pt;}
.y3e{bottom:273.683004pt;}
.y40{bottom:278.031870pt;}
.ye{bottom:280.781333pt;}
.y92{bottom:282.096000pt;}
.y44{bottom:283.225176pt;}
.y3d{bottom:283.896037pt;}
.y62{bottom:286.206667pt;}
.y3f{bottom:288.244903pt;}
.y2c{bottom:293.665333pt;}
.y3c{bottom:294.109069pt;}
.y91{bottom:295.380000pt;}
.yd{bottom:296.721333pt;}
.y61{bottom:302.146667pt;}
.y90{bottom:308.664000pt;}
.y53{bottom:309.004053pt;}
.yc{bottom:312.662667pt;}
.y60{bottom:318.088000pt;}
.y8f{bottom:321.946667pt;}
.y4b{bottom:326.164950pt;}
.yb{bottom:328.602667pt;}
.y5f{bottom:334.028000pt;}
.y8e{bottom:335.230667pt;}
.ya{bottom:344.542667pt;}
.y8d{bottom:348.514667pt;}
.y5e{bottom:349.968000pt;}
.y9{bottom:360.482667pt;}
.y8c{bottom:361.797333pt;}
.y5d{bottom:365.908000pt;}
.y8b{bottom:375.081333pt;}
.y8{bottom:376.422667pt;}
.y5c{bottom:385.833333pt;}
.y8a{bottom:388.365333pt;}
.y7{bottom:392.362667pt;}
.y89{bottom:401.648000pt;}
.y6{bottom:412.288000pt;}
.y88{bottom:418.917333pt;}
.y5b{bottom:435.632000pt;}
.y5{bottom:446.221333pt;}
.y87{bottom:446.812000pt;}
.y5a{bottom:450.244000pt;}
.y59{bottom:464.856000pt;}
.y86{bottom:466.737333pt;}
.y58{bottom:479.468000pt;}
.y4{bottom:479.793333pt;}
.y57{bottom:494.080000pt;}
.y85{bottom:494.633333pt;}
.y56{bottom:508.692000pt;}
.y84{bottom:510.573333pt;}
.y55{bottom:523.304000pt;}
.y83{bottom:526.513333pt;}
.y54{bottom:537.916000pt;}
.y82{bottom:546.438667pt;}
.y3b{bottom:564.084000pt;}
.y81{bottom:574.333333pt;}
.y80{bottom:594.258667pt;}
.y7f{bottom:622.154667pt;}
.y7e{bottom:638.094667pt;}
.y2b{bottom:641.656000pt;}
.y7d{bottom:654.034667pt;}
.y2a{bottom:657.596000pt;}
.y7c{bottom:669.974667pt;}
.y29{bottom:673.537333pt;}
.y7b{bottom:685.916000pt;}
.y28{bottom:689.477333pt;}
.y7a{bottom:701.856000pt;}
.y27{bottom:705.417333pt;}
.y79{bottom:717.796000pt;}
.y26{bottom:721.357333pt;}
.y78{bottom:736.525333pt;}
.y25{bottom:737.297333pt;}
.y24{bottom:753.237333pt;}
.y77{bottom:762.814667pt;}
.y23{bottom:769.178667pt;}
.y76{bottom:778.754667pt;}
.y22{bottom:785.118667pt;}
.y75{bottom:794.694667pt;}
.y21{bottom:801.058667pt;}
.y74{bottom:810.634667pt;}
.y20{bottom:816.998667pt;}
.y73{bottom:826.576000pt;}
.y1f{bottom:832.938667pt;}
.y72{bottom:842.516000pt;}
.y1e{bottom:848.878667pt;}
.y71{bottom:861.245333pt;}
.y1d{bottom:864.820000pt;}
.y1c{bottom:880.760000pt;}
.y70{bottom:884.745333pt;}
.y1b{bottom:896.700000pt;}
.y6f{bottom:900.685333pt;}
.y1a{bottom:912.640000pt;}
.y6e{bottom:916.625333pt;}
.y19{bottom:928.580000pt;}
.y3a{bottom:932.565333pt;}
.y18{bottom:944.520000pt;}
.y3{bottom:948.297333pt;}
.y39{bottom:948.505333pt;}
.y6d{bottom:952.490667pt;}
.y17{bottom:960.461333pt;}
.y38{bottom:964.445333pt;}
.y2{bottom:965.565333pt;}
.y16{bottom:976.401333pt;}
.y37{bottom:980.386667pt;}
.y15{bottom:996.326667pt;}
.y1{bottom:996.344000pt;}
.y36{bottom:1001.148000pt;}
.y14{bottom:1032.192000pt;}
.h10{height:24.245999pt;}
.hb{height:28.547772pt;}
.h9{height:29.755040pt;}
.ha{height:30.095098pt;}
.h8{height:31.285299pt;}
.hd{height:33.642839pt;}
.h4{height:33.857126pt;}
.hf{height:34.633791pt;}
.he{height:35.080361pt;}
.h5{height:35.196109pt;}
.h6{height:37.087439pt;}
.h7{height:39.106526pt;}
.h3{height:41.192762pt;}
.h2{height:53.406121pt;}
.hc{height:345.868550pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:650.218790pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.899880pt;}
.x19{left:25.391832pt;}
.x18{left:26.951700pt;}
.x1a{left:27.995522pt;}
.x24{left:70.256000pt;}
.x1{left:71.730667pt;}
.x9{left:76.549333pt;}
.xa{left:82.726667pt;}
.xb{left:85.014667pt;}
.x26{left:89.552000pt;}
.x25{left:92.360000pt;}
.x7{left:122.413333pt;}
.x8{left:128.590667pt;}
.x2{left:156.892000pt;}
.x1d{left:178.434854pt;}
.x1b{left:179.584230pt;}
.x23{left:183.008904pt;}
.xe{left:217.014667pt;}
.x11{left:224.582667pt;}
.x22{left:227.890890pt;}
.x12{left:230.758667pt;}
.x13{left:259.613333pt;}
.x14{left:264.786667pt;}
.x21{left:272.660284pt;}
.x15{left:291.097224pt;}
.x16{left:293.513260pt;}
.x3{left:310.802667pt;}
.x4{left:316.980000pt;}
.x1c{left:366.547938pt;}
.xf{left:464.170667pt;}
.x10{left:470.346667pt;}
.x5{left:521.473333pt;}
.x6{left:527.650667pt;}
.x20{left:540.277394pt;}
.x1f{left:541.684794pt;}
.x1e{left:548.168216pt;}
.xc{left:695.981333pt;}
.xd{left:702.158667pt;}
}




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