
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_5db39e8795c8b14f482a9ed6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988000;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_a502b1fdc39d60eb9b42babc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_98c41f24ddd1111adce038a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_05b1cbd14ebfe7562bb205de.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_41abbeaf409deda67672254f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;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_e11fbe1cc830ad55f421f96f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.883000;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_53da5493b03e1b7a5900105d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_375880f8bf1644f9e2e219dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.059000;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:ffd;src:url('chunks/assets/font_1663a47b895feabe322befc7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979492;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:ffe;src:url('chunks/assets/font_9a24bc0b4e82f99c59a9decc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.197754;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:fff;src:url('chunks/assets/font_707674ef6904df00bbeb87e4.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;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:ff10;src:url('chunks/assets/font_cde55860c6c79aea735e77d0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_35215428c4845fd32f6cfcad.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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:ff12;src:url('chunks/assets/font_a77759fc8ac4cd8860b9af79.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{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);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.mb{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);}
.mc{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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls39{letter-spacing:-0.127008px;}
.ls35{letter-spacing:-0.084460px;}
.ls34{letter-spacing:-0.042230px;}
.ls38{letter-spacing:-0.005292px;}
.ls36{letter-spacing:-0.004692px;}
.ls1e{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000124px;}
.lsa{letter-spacing:0.000566px;}
.ls0{letter-spacing:0.000583px;}
.ls32{letter-spacing:0.000845px;}
.ls9{letter-spacing:0.002074px;}
.ls4{letter-spacing:0.002725px;}
.lsd{letter-spacing:0.002870px;}
.ls1d{letter-spacing:0.003488px;}
.ls8{letter-spacing:0.003859px;}
.ls1{letter-spacing:0.004200px;}
.ls2e{letter-spacing:0.005292px;}
.ls2c{letter-spacing:0.010584px;}
.ls2f{letter-spacing:0.015876px;}
.ls25{letter-spacing:0.021168px;}
.ls23{letter-spacing:0.026460px;}
.ls28{letter-spacing:0.031752px;}
.ls2d{letter-spacing:0.037044px;}
.ls2a{letter-spacing:0.041242px;}
.ls24{letter-spacing:0.042336px;}
.ls29{letter-spacing:0.047628px;}
.ls30{letter-spacing:0.058212px;}
.ls22{letter-spacing:0.058918px;}
.ls26{letter-spacing:0.063504px;}
.ls27{letter-spacing:0.074088px;}
.ls37{letter-spacing:0.082485px;}
.ls21{letter-spacing:0.173613px;}
.ls3a{letter-spacing:0.179928px;}
.ls20{letter-spacing:0.187690px;}
.ls1f{letter-spacing:1.275394px;}
.lse{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.998354px;}
.ls31{letter-spacing:3.360420px;}
.ls1c{letter-spacing:11.954850px;}
.ls33{letter-spacing:13.448400px;}
.lsb{letter-spacing:13.450800px;}
.ls1a{letter-spacing:14.845114px;}
.ls19{letter-spacing:14.846695px;}
.ls18{letter-spacing:14.849775px;}
.ls17{letter-spacing:14.851078px;}
.ls16{letter-spacing:14.852659px;}
.lsf{letter-spacing:14.884605px;}
.ls11{letter-spacing:14.887736px;}
.ls10{letter-spacing:14.888319px;}
.ls13{letter-spacing:14.940124px;}
.ls1b{letter-spacing:14.943292px;}
.ls5{letter-spacing:14.944200px;}
.ls15{letter-spacing:14.946124px;}
.ls12{letter-spacing:14.949292px;}
.ls6{letter-spacing:17.929200px;}
.ls2b{letter-spacing:51.290064px;}
.ls2{letter-spacing:57.415200px;}
.ls7{letter-spacing:70.236600px;}
.lsc{letter-spacing:72.353510px;}
.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;}
}
.ws3{word-spacing:-26.899200px;}
.ws6{word-spacing:-14.943900px;}
.ws22{word-spacing:-13.449600px;}
.ws20{word-spacing:-13.256460px;}
.ws1f{word-spacing:-13.240584px;}
.ws1b{word-spacing:-11.955150px;}
.ws1e{word-spacing:-11.918290px;}
.ws8{word-spacing:-11.357400px;}
.ws26{word-spacing:-2.689920px;}
.ws12{word-spacing:-1.908367px;}
.ws11{word-spacing:-1.322630px;}
.ws37{word-spacing:-0.915516px;}
.ws2d{word-spacing:-0.899640px;}
.ws35{word-spacing:-0.889056px;}
.ws2e{word-spacing:-0.873180px;}
.ws36{word-spacing:-0.751464px;}
.ws21{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.119551px;}
.ws2{word-spacing:-0.107597px;}
.ws16{word-spacing:-0.097486px;}
.ws17{word-spacing:-0.091521px;}
.ws27{word-spacing:-0.079768px;}
.ws0{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.053309px;}
.ws1c{word-spacing:-0.047821px;}
.ws14{word-spacing:-0.047339px;}
.ws10{word-spacing:-0.012547px;}
.wsd{word-spacing:-0.003625px;}
.wsa{word-spacing:-0.002666px;}
.ws9{word-spacing:-0.001775px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:0.000900px;}
.ws7{word-spacing:0.001225px;}
.wsc{word-spacing:0.003608px;}
.ws2a{word-spacing:0.011784px;}
.ws29{word-spacing:0.035351px;}
.ws31{word-spacing:0.105840px;}
.wse{word-spacing:0.107597px;}
.ws30{word-spacing:0.116424px;}
.ws19{word-spacing:0.119551px;}
.ws34{word-spacing:0.132300px;}
.ws32{word-spacing:0.148176px;}
.ws2f{word-spacing:0.153468px;}
.ws3d{word-spacing:0.158760px;}
.ws3c{word-spacing:0.169344px;}
.ws33{word-spacing:0.179928px;}
.ws2c{word-spacing:0.846720px;}
.ws2b{word-spacing:0.862596px;}
.ws3b{word-spacing:3.302208px;}
.ws25{word-spacing:3.335501px;}
.ws3a{word-spacing:4.741632px;}
.ws39{word-spacing:4.752216px;}
.ws38{word-spacing:4.762800px;}
.ws28{word-spacing:8.919948px;}
.ws1{word-spacing:10.759680px;}
.ws1a{word-spacing:11.907959px;}
.ws23{word-spacing:15.332544px;}
.ws24{word-spacing:15.386342px;}
.ws5{word-spacing:26.781293px;}
.ws3e{word-spacing:32.979744px;}
.wsb{word-spacing:40.042186px;}
.ws1d{word-spacing:916.242696px;}
._2{margin-left:-11.943245px;}
._5{margin-left:-6.643590px;}
._6{margin-left:-4.949453px;}
._8{margin-left:-3.012710px;}
._0{margin-left:-1.075961px;}
._a{width:1.091170px;}
._3{width:2.999321px;}
._d{width:9.259078px;}
._10{width:14.417971px;}
._9{width:17.861069px;}
._7{width:19.501408px;}
._e{width:21.806172px;}
._f{width:36.582912px;}
._1{width:37.646486px;}
._4{width:54.403759px;}
._c{width:1613.820424px;}
._b{width:2049.254700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs9{font-size:46.922400px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:52.920000px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:70.560000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y2f{bottom:-800.436609px;}
.y3f{bottom:-429.997932px;}
.y3e{bottom:-410.858091px;}
.y3d{bottom:-391.718250px;}
.y3c{bottom:-355.027491px;}
.y3b{bottom:-335.887650px;}
.y3a{bottom:-316.747809px;}
.y39{bottom:-297.696609px;}
.y38{bottom:-260.476209px;}
.y37{bottom:-223.432209px;}
.y36{bottom:-196.796250px;}
.y35{bottom:-170.160291px;}
.y34{bottom:-151.020450px;}
.y33{bottom:-131.880609px;}
.y32{bottom:-94.748259px;}
.y31{bottom:-57.263409px;}
.y30{bottom:-15.985809px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.425340px;}
.y1c{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y2b{bottom:63.780000px;}
.y2a{bottom:184.675500px;}
.y29{bottom:213.906000px;}
.y28{bottom:255.928500px;}
.y27{bottom:276.192000px;}
.y2e{bottom:284.511591px;}
.y26{bottom:305.422500px;}
.y25{bottom:347.445000px;}
.y24{bottom:367.710000px;}
.y23{bottom:387.973500px;}
.y22{bottom:408.237000px;}
.y21{bottom:428.502000px;}
.y20{bottom:448.765500px;}
.y1f{bottom:477.996000px;}
.y4e{bottom:497.974500px;}
.y1e{bottom:513.204000px;}
.y4d{bottom:517.342500px;}
.y4c{bottom:536.709000px;}
.y4b{bottom:568.254000px;}
.y4a{bottom:587.622000px;}
.y1b{bottom:591.642055px;}
.y1a{bottom:599.587500px;}
.y49{bottom:606.988500px;}
.y48{bottom:626.356500px;}
.y19{bottom:631.414500px;}
.y18{bottom:649.572000px;}
.y47{bottom:654.690000px;}
.y17{bottom:672.610500px;}
.y16{bottom:685.885500px;}
.y46{bottom:694.143000px;}
.y15{bottom:708.925500px;}
.y45{bottom:718.306500px;}
.y14{bottom:722.199000px;}
.y13{bottom:745.239000px;}
.y44{bottom:754.402500px;}
.y12{bottom:758.514000px;}
.y43{bottom:774.667500px;}
.y11{bottom:781.552500px;}
.y10{bottom:794.827500px;}
.y42{bottom:794.931000px;}
.yf{bottom:817.867500px;}
.y41{bottom:830.139000px;}
.ye{bottom:831.141000px;}
.yd{bottom:849.298500px;}
.y40{bottom:859.369500px;}
.yc{bottom:867.456000px;}
.yb{bottom:872.338500px;}
.ya{bottom:894.579000px;}
.y2d{bottom:899.061000px;}
.y9{bottom:914.842500px;}
.y8{bottom:935.107500px;}
.y7{bottom:980.055000px;}
.y6{bottom:1010.451000px;}
.y5{bottom:1040.848500px;}
.y4{bottom:1071.244500px;}
.y3{bottom:1100.145000px;}
.y1{bottom:1137.954000px;}
.y2c{bottom:1168.366500px;}
.hf{height:17.932680px;}
.hb{height:25.508090px;}
.h8{height:30.461558px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h10{height:34.813397px;}
.h13{height:35.271387px;}
.h1a{height:37.927872px;}
.h9{height:39.165235px;}
.h4{height:42.560227px;}
.h19{height:43.038432px;}
.he{height:43.516637px;}
.h12{height:43.646080px;}
.h16{height:48.940664px;}
.ha{height:49.117939px;}
.h17{height:49.224902px;}
.h2{height:50.931027px;}
.h15{height:54.487273px;}
.h18{height:54.803725px;}
.h7{height:55.352206px;}
.h14{height:65.254219px;}
.h6{height:77.469696px;}
.h5{height:99.634637px;}
.h3{height:102.503837px;}
.h11{height:231.946890px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w4{width:634.464789px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x13{left:-5.214531px;}
.x0{left:0.000000px;}
.x16{left:21.245171px;}
.x15{left:25.655469px;}
.x8{left:29.274117px;}
.x2{left:58.056593px;}
.x3{left:113.458500px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x12{left:129.226941px;}
.x5{left:146.097000px;}
.x9{left:149.397000px;}
.xe{left:153.909000px;}
.x17{left:175.212000px;}
.x18{left:179.073000px;}
.x19{left:212.152500px;}
.xf{left:213.342000px;}
.x1a{left:218.595000px;}
.x10{left:220.834500px;}
.x29{left:251.667000px;}
.x2b{left:254.101500px;}
.x2a{left:267.238500px;}
.x11{left:279.400500px;}
.x1b{left:280.429500px;}
.x1c{left:286.872000px;}
.x23{left:309.280500px;}
.x24{left:316.005000px;}
.x25{left:355.432500px;}
.x26{left:359.292000px;}
.x1d{left:372.867000px;}
.x1e{left:383.331000px;}
.xa{left:442.258500px;}
.xb{left:452.256000px;}
.x27{left:471.679500px;}
.x28{left:475.540500px;}
.xc{left:613.534500px;}
.xd{left:623.532000px;}
.x14{left:646.936269px;}
.x1f{left:676.533000px;}
.x20{left:683.257500px;}
.x7{left:701.339982px;}
.x21{left:725.922000px;}
.x22{left:732.364500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls39{letter-spacing:-0.112896pt;}
.ls35{letter-spacing:-0.075076pt;}
.ls34{letter-spacing:-0.037538pt;}
.ls38{letter-spacing:-0.004704pt;}
.ls36{letter-spacing:-0.004171pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000110pt;}
.lsa{letter-spacing:0.000503pt;}
.ls0{letter-spacing:0.000518pt;}
.ls32{letter-spacing:0.000751pt;}
.ls9{letter-spacing:0.001843pt;}
.ls4{letter-spacing:0.002422pt;}
.lsd{letter-spacing:0.002551pt;}
.ls1d{letter-spacing:0.003100pt;}
.ls8{letter-spacing:0.003430pt;}
.ls1{letter-spacing:0.003733pt;}
.ls2e{letter-spacing:0.004704pt;}
.ls2c{letter-spacing:0.009408pt;}
.ls2f{letter-spacing:0.014112pt;}
.ls25{letter-spacing:0.018816pt;}
.ls23{letter-spacing:0.023520pt;}
.ls28{letter-spacing:0.028224pt;}
.ls2d{letter-spacing:0.032928pt;}
.ls2a{letter-spacing:0.036660pt;}
.ls24{letter-spacing:0.037632pt;}
.ls29{letter-spacing:0.042336pt;}
.ls30{letter-spacing:0.051744pt;}
.ls22{letter-spacing:0.052371pt;}
.ls26{letter-spacing:0.056448pt;}
.ls27{letter-spacing:0.065856pt;}
.ls37{letter-spacing:0.073320pt;}
.ls21{letter-spacing:0.154323pt;}
.ls3a{letter-spacing:0.159936pt;}
.ls20{letter-spacing:0.166835pt;}
.ls1f{letter-spacing:1.133683pt;}
.lse{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.665203pt;}
.ls31{letter-spacing:2.987040pt;}
.ls1c{letter-spacing:10.626533pt;}
.ls33{letter-spacing:11.954133pt;}
.lsb{letter-spacing:11.956267pt;}
.ls1a{letter-spacing:13.195657pt;}
.ls19{letter-spacing:13.197062pt;}
.ls18{letter-spacing:13.199800pt;}
.ls17{letter-spacing:13.200958pt;}
.ls16{letter-spacing:13.202364pt;}
.lsf{letter-spacing:13.230760pt;}
.ls11{letter-spacing:13.233543pt;}
.ls10{letter-spacing:13.234062pt;}
.ls13{letter-spacing:13.280110pt;}
.ls1b{letter-spacing:13.282926pt;}
.ls5{letter-spacing:13.283733pt;}
.ls15{letter-spacing:13.285443pt;}
.ls12{letter-spacing:13.288259pt;}
.ls6{letter-spacing:15.937067pt;}
.ls2b{letter-spacing:45.591168pt;}
.ls2{letter-spacing:51.035733pt;}
.ls7{letter-spacing:62.432533pt;}
.lsc{letter-spacing:64.314231pt;}
.ws3{word-spacing:-23.910400pt;}
.ws6{word-spacing:-13.283467pt;}
.ws22{word-spacing:-11.955200pt;}
.ws20{word-spacing:-11.783520pt;}
.ws1f{word-spacing:-11.769408pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws1e{word-spacing:-10.594035pt;}
.ws8{word-spacing:-10.095467pt;}
.ws26{word-spacing:-2.391040pt;}
.ws12{word-spacing:-1.696326pt;}
.ws11{word-spacing:-1.175671pt;}
.ws37{word-spacing:-0.813792pt;}
.ws2d{word-spacing:-0.799680pt;}
.ws35{word-spacing:-0.790272pt;}
.ws2e{word-spacing:-0.776160pt;}
.ws36{word-spacing:-0.667968pt;}
.ws21{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.106268pt;}
.ws2{word-spacing:-0.095642pt;}
.ws16{word-spacing:-0.086654pt;}
.ws17{word-spacing:-0.081352pt;}
.ws27{word-spacing:-0.070905pt;}
.ws0{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.047386pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws14{word-spacing:-0.042079pt;}
.ws10{word-spacing:-0.011153pt;}
.wsd{word-spacing:-0.003222pt;}
.wsa{word-spacing:-0.002370pt;}
.ws9{word-spacing:-0.001578pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:0.000800pt;}
.ws7{word-spacing:0.001089pt;}
.wsc{word-spacing:0.003207pt;}
.ws2a{word-spacing:0.010474pt;}
.ws29{word-spacing:0.031423pt;}
.ws31{word-spacing:0.094080pt;}
.wse{word-spacing:0.095642pt;}
.ws30{word-spacing:0.103488pt;}
.ws19{word-spacing:0.106268pt;}
.ws34{word-spacing:0.117600pt;}
.ws32{word-spacing:0.131712pt;}
.ws2f{word-spacing:0.136416pt;}
.ws3d{word-spacing:0.141120pt;}
.ws3c{word-spacing:0.150528pt;}
.ws33{word-spacing:0.159936pt;}
.ws2c{word-spacing:0.752640pt;}
.ws2b{word-spacing:0.766752pt;}
.ws3b{word-spacing:2.935296pt;}
.ws25{word-spacing:2.964890pt;}
.ws3a{word-spacing:4.214784pt;}
.ws39{word-spacing:4.224192pt;}
.ws38{word-spacing:4.233600pt;}
.ws28{word-spacing:7.928843pt;}
.ws1{word-spacing:9.564160pt;}
.ws1a{word-spacing:10.584852pt;}
.ws23{word-spacing:13.628928pt;}
.ws24{word-spacing:13.676749pt;}
.ws5{word-spacing:23.805594pt;}
.ws3e{word-spacing:29.315328pt;}
.wsb{word-spacing:35.593054pt;}
.ws1d{word-spacing:814.437952pt;}
._2{margin-left:-10.616218pt;}
._5{margin-left:-5.905413pt;}
._6{margin-left:-4.399514pt;}
._8{margin-left:-2.677965pt;}
._0{margin-left:-0.956410pt;}
._a{width:0.969929pt;}
._3{width:2.666063pt;}
._d{width:8.230291pt;}
._10{width:12.815974pt;}
._9{width:15.876506pt;}
._7{width:17.334585pt;}
._e{width:19.383264pt;}
._f{width:32.518144pt;}
._1{width:33.463543pt;}
._4{width:48.358897pt;}
._c{width:1434.507043pt;}
._b{width:1821.559733pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs9{font-size:41.708800pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:47.040000pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:62.720000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y2f{bottom:-711.499208pt;}
.y3f{bottom:-382.220384pt;}
.y3e{bottom:-365.207192pt;}
.y3d{bottom:-348.194000pt;}
.y3c{bottom:-315.579992pt;}
.y3b{bottom:-298.566800pt;}
.y3a{bottom:-281.553608pt;}
.y39{bottom:-264.619208pt;}
.y38{bottom:-231.534408pt;}
.y37{bottom:-198.606408pt;}
.y36{bottom:-174.930000pt;}
.y35{bottom:-151.253592pt;}
.y34{bottom:-134.240400pt;}
.y33{bottom:-117.227208pt;}
.y32{bottom:-84.220675pt;}
.y31{bottom:-50.900808pt;}
.y30{bottom:-14.209608pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.044747pt;}
.y1c{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y2b{bottom:56.693333pt;}
.y2a{bottom:164.156000pt;}
.y29{bottom:190.138667pt;}
.y28{bottom:227.492000pt;}
.y27{bottom:245.504000pt;}
.y2e{bottom:252.899192pt;}
.y26{bottom:271.486667pt;}
.y25{bottom:308.840000pt;}
.y24{bottom:326.853333pt;}
.y23{bottom:344.865333pt;}
.y22{bottom:362.877333pt;}
.y21{bottom:380.890667pt;}
.y20{bottom:398.902667pt;}
.y1f{bottom:424.885333pt;}
.y4e{bottom:442.644000pt;}
.y1e{bottom:456.181333pt;}
.y4d{bottom:459.860000pt;}
.y4c{bottom:477.074667pt;}
.y4b{bottom:505.114667pt;}
.y4a{bottom:522.330667pt;}
.y1b{bottom:525.904048pt;}
.y1a{bottom:532.966667pt;}
.y49{bottom:539.545333pt;}
.y48{bottom:556.761333pt;}
.y19{bottom:561.257333pt;}
.y18{bottom:577.397333pt;}
.y47{bottom:581.946667pt;}
.y17{bottom:597.876000pt;}
.y16{bottom:609.676000pt;}
.y46{bottom:617.016000pt;}
.y15{bottom:630.156000pt;}
.y45{bottom:638.494667pt;}
.y14{bottom:641.954667pt;}
.y13{bottom:662.434667pt;}
.y44{bottom:670.580000pt;}
.y12{bottom:674.234667pt;}
.y43{bottom:688.593333pt;}
.y11{bottom:694.713333pt;}
.y10{bottom:706.513333pt;}
.y42{bottom:706.605333pt;}
.yf{bottom:726.993333pt;}
.y41{bottom:737.901333pt;}
.ye{bottom:738.792000pt;}
.yd{bottom:754.932000pt;}
.y40{bottom:763.884000pt;}
.yc{bottom:771.072000pt;}
.yb{bottom:775.412000pt;}
.ya{bottom:795.181333pt;}
.y2d{bottom:799.165333pt;}
.y9{bottom:813.193333pt;}
.y8{bottom:831.206667pt;}
.y7{bottom:871.160000pt;}
.y6{bottom:898.178667pt;}
.y5{bottom:925.198667pt;}
.y4{bottom:952.217333pt;}
.y3{bottom:977.906667pt;}
.y1{bottom:1011.514667pt;}
.y2c{bottom:1038.548000pt;}
.hf{height:15.940160pt;}
.hb{height:22.673858pt;}
.h8{height:27.076941pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h10{height:30.945242pt;}
.h13{height:31.352344pt;}
.h1a{height:33.713664pt;}
.h9{height:34.813542pt;}
.h4{height:37.831313pt;}
.h19{height:38.256384pt;}
.he{height:38.681455pt;}
.h12{height:38.796516pt;}
.h16{height:43.502813pt;}
.ha{height:43.660390pt;}
.h17{height:43.755469pt;}
.h2{height:45.272024pt;}
.h15{height:48.433131pt;}
.h18{height:48.714422pt;}
.h7{height:49.201961pt;}
.h14{height:58.003750pt;}
.h6{height:68.861952pt;}
.h5{height:88.564122pt;}
.h3{height:91.114522pt;}
.h11{height:206.175013pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w4{width:563.968701pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x13{left:-4.635139pt;}
.x0{left:0.000000pt;}
.x16{left:18.884596pt;}
.x15{left:22.804861pt;}
.x8{left:26.021437pt;}
.x2{left:51.605861pt;}
.x3{left:100.852000pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x12{left:114.868392pt;}
.x5{left:129.864000pt;}
.x9{left:132.797333pt;}
.xe{left:136.808000pt;}
.x17{left:155.744000pt;}
.x18{left:159.176000pt;}
.x19{left:188.580000pt;}
.xf{left:189.637333pt;}
.x1a{left:194.306667pt;}
.x10{left:196.297333pt;}
.x29{left:223.704000pt;}
.x2b{left:225.868000pt;}
.x2a{left:237.545333pt;}
.x11{left:248.356000pt;}
.x1b{left:249.270667pt;}
.x1c{left:254.997333pt;}
.x23{left:274.916000pt;}
.x24{left:280.893333pt;}
.x25{left:315.940000pt;}
.x26{left:319.370667pt;}
.x1d{left:331.437333pt;}
.x1e{left:340.738667pt;}
.xa{left:393.118667pt;}
.xb{left:402.005333pt;}
.x27{left:419.270667pt;}
.x28{left:422.702667pt;}
.xc{left:545.364000pt;}
.xd{left:554.250667pt;}
.x14{left:575.054461pt;}
.x1f{left:601.362667pt;}
.x20{left:607.340000pt;}
.x7{left:623.413317pt;}
.x21{left:645.264000pt;}
.x22{left:650.990667pt;}
}




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