
    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_b1db7c74ae8c44ae8519945d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096000;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_ccf3bb78025354350ab3807f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114000;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_742b7ea71e426e02257cf29b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_4b64c392019031e86b3803ab.woff2')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_89ff602a130e25926d22e972.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_1d59ec0cc923aa9f8fb6875f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c707c874bf03e7f9bd89d2f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f8ecdc416bc8cda2a131ce26.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.735000;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_1cd85ff75d59d81c068b99fc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e3ed723b890926980f0a67b6.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.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);}
.m6{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);}
.m9{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);}
.m2{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);}
.mb{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);}
.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);}
.m8{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);}
.me{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);}
.mc{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);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m5{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);}
.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);}
.v2{vertical-align:-14.981088px;}
.v4{vertical-align:-10.481790px;}
.v3{vertical-align:-8.915736px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.568458px;}
.ls26{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000416px;}
.lse{letter-spacing:0.001149px;}
.ls37{letter-spacing:0.001530px;}
.ls20{letter-spacing:0.001615px;}
.ls1d{letter-spacing:0.002170px;}
.ls1f{letter-spacing:0.003664px;}
.ls39{letter-spacing:0.003729px;}
.ls3b{letter-spacing:1.282051px;}
.ls3{letter-spacing:1.301192px;}
.ls4{letter-spacing:2.061971px;}
.ls1e{letter-spacing:2.062735px;}
.ls5{letter-spacing:2.066114px;}
.ls15{letter-spacing:2.130016px;}
.ls34{letter-spacing:2.134159px;}
.ls0{letter-spacing:3.568483px;}
.ls1{letter-spacing:3.594694px;}
.ls1c{letter-spacing:9.905224px;}
.ls12{letter-spacing:13.203468px;}
.lsf{letter-spacing:13.203961px;}
.ls35{letter-spacing:13.205919px;}
.ls11{letter-spacing:13.207315px;}
.ls14{letter-spacing:13.207611px;}
.ls33{letter-spacing:13.208104px;}
.ls10{letter-spacing:13.210062px;}
.ls13{letter-spacing:13.211092px;}
.ls2f{letter-spacing:13.839798px;}
.ls31{letter-spacing:13.843941px;}
.ls6{letter-spacing:14.444242px;}
.ls7{letter-spacing:14.448385px;}
.ls25{letter-spacing:16.505439px;}
.ls28{letter-spacing:16.507321px;}
.ls27{letter-spacing:16.509286px;}
.ls38{letter-spacing:16.511385px;}
.ls3a{letter-spacing:16.511464px;}
.ls9{letter-spacing:16.519750px;}
.ls32{letter-spacing:16.523293px;}
.ls8{letter-spacing:16.525858px;}
.lsb{letter-spacing:17.120485px;}
.lsa{letter-spacing:17.122084px;}
.ls18{letter-spacing:17.829193px;}
.ls36{letter-spacing:17.830903px;}
.ls16{letter-spacing:17.833336px;}
.ls2d{letter-spacing:18.098233px;}
.ls2c{letter-spacing:18.100630px;}
.ls30{letter-spacing:18.520361px;}
.ls24{letter-spacing:18.576733px;}
.ls2e{letter-spacing:20.055339px;}
.ls22{letter-spacing:21.184310px;}
.ls2a{letter-spacing:22.585102px;}
.ls29{letter-spacing:22.587499px;}
.ls21{letter-spacing:22.719288px;}
.ls2b{letter-spacing:24.721795px;}
.ls1b{letter-spacing:28.343793px;}
.ls23{letter-spacing:29.443985px;}
.lsd{letter-spacing:29.806351px;}
.ls1a{letter-spacing:30.645498px;}
.ls2{letter-spacing:31.246661px;}
.lsc{letter-spacing:31.947187px;}
.ls19{letter-spacing:32.712649px;}
.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;}
}
.ws20{word-spacing:-59.436307px;}
.ws3a{word-spacing:-44.103561px;}
.ws28{word-spacing:-42.913013px;}
.ws22{word-spacing:-41.275052px;}
.ws14{word-spacing:-37.837153px;}
.ws30{word-spacing:-32.689969px;}
.ws18{word-spacing:-31.085188px;}
.ws12{word-spacing:-27.970726px;}
.ws26{word-spacing:-27.911290px;}
.ws15{word-spacing:-21.344932px;}
.ws29{word-spacing:-21.342445px;}
.ws16{word-spacing:-21.342348px;}
.ws27{word-spacing:-21.300410px;}
.ws11{word-spacing:-16.166675px;}
.ws7{word-spacing:-15.477337px;}
.ws8{word-spacing:-12.874953px;}
.ws23{word-spacing:-11.466209px;}
.ws21{word-spacing:-11.447433px;}
.ws4{word-spacing:-0.059436px;}
.ws2a{word-spacing:0.000000px;}
.ws13{word-spacing:0.329332px;}
.ws1f{word-spacing:0.329447px;}
.ws25{word-spacing:0.356618px;}
.ws2b{word-spacing:9.866427px;}
.wsa{word-spacing:11.433189px;}
.ws9{word-spacing:12.341240px;}
.wsc{word-spacing:15.394003px;}
.ws2c{word-spacing:16.642166px;}
.ws1a{word-spacing:17.414838px;}
.ws3b{word-spacing:17.474274px;}
.ws34{word-spacing:17.533710px;}
.ws1b{word-spacing:17.593147px;}
.ws32{word-spacing:17.652583px;}
.ws3f{word-spacing:17.712019px;}
.ws1{word-spacing:17.745237px;}
.ws24{word-spacing:17.769713px;}
.ws31{word-spacing:17.770515px;}
.ws0{word-spacing:17.771456px;}
.ws5{word-spacing:17.830892px;}
.ws1e{word-spacing:17.890328px;}
.ws35{word-spacing:18.009201px;}
.wsd{word-spacing:18.068637px;}
.ws1c{word-spacing:18.128074px;}
.ws2f{word-spacing:18.425255px;}
.ws3c{word-spacing:18.484691px;}
.ws1d{word-spacing:18.603564px;}
.wsb{word-spacing:19.376236px;}
.ws39{word-spacing:19.673417px;}
.ws38{word-spacing:19.732854px;}
.wse{word-spacing:19.792290px;}
.ws2d{word-spacing:20.148908px;}
.ws36{word-spacing:20.267781px;}
.ws2{word-spacing:20.327217px;}
.ws3d{word-spacing:20.802707px;}
.ws2e{word-spacing:21.278198px;}
.ws33{word-spacing:21.515943px;}
.ws3e{word-spacing:24.309449px;}
.ws10{word-spacing:24.666067px;}
.ws19{word-spacing:24.963249px;}
.ws37{word-spacing:25.438739px;}
.wsf{word-spacing:25.854793px;}
.ws17{word-spacing:26.389720px;}
.ws3{word-spacing:29.658717px;}
.ws6{word-spacing:61.159959px;}
._c{margin-left:-16.484454px;}
._4{margin-left:-7.531740px;}
._e{margin-left:-6.240812px;}
._5{margin-left:-5.078219px;}
._d{margin-left:-3.982233px;}
._0{margin-left:-2.912379px;}
._2{margin-left:-1.367035px;}
._7{width:1.114746px;}
._6{width:2.139707px;}
._8{width:3.369165px;}
._1{width:9.450373px;}
._f{width:10.460790px;}
._10{width:16.846608px;}
._b{width:18.391952px;}
._9{width:26.208548px;}
._3{width:477.332978px;}
._a{width:1503.857430px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:28.892453px;}
.fs5{font-size:41.275052px;}
.fs2{font-size:57.058639px;}
.fs0{font-size:59.436307px;}
.fs4{font-size:68.483790px;}
.fs1{font-size:71.323402px;}
.fs3{font-size:85.604737px;}
.y0{bottom:0.000000px;}
.y4c{bottom:69.974916px;}
.y27{bottom:80.174982px;}
.y4b{bottom:87.516378px;}
.y26{bottom:100.812301px;}
.y4a{bottom:105.058876px;}
.y25{bottom:121.449620px;}
.y49{bottom:122.600338px;}
.y24{bottom:138.992117px;}
.y48{bottom:140.142836px;}
.y23{bottom:156.533579px;}
.y47{bottom:157.684298px;}
.y22{bottom:174.076077px;}
.y46{bottom:183.543868px;}
.y21{bottom:191.617539px;}
.y45{bottom:199.022116px;}
.y20{bottom:209.160037px;}
.y44{bottom:216.554256px;}
.y1f{bottom:226.701499px;}
.y43{bottom:242.351681px;}
.y1e{bottom:244.243997px;}
.y1d{bottom:261.785459px;}
.y1c{bottom:279.327956px;}
.y42{bottom:284.393810px;}
.y1b{bottom:296.869418px;}
.y41{bottom:301.936307px;}
.y1a{bottom:314.411916px;}
.y40{bottom:323.605233px;}
.y19{bottom:331.953378px;}
.y3f{bottom:341.147731px;}
.y18{bottom:349.495876px;}
.y3e{bottom:358.689193px;}
.y17{bottom:367.037338px;}
.y3d{bottom:376.231691px;}
.y16{bottom:384.579836px;}
.y3c{bottom:393.773153px;}
.y15{bottom:402.121298px;}
.y3b{bottom:411.315650px;}
.y14{bottom:419.663795px;}
.y3a{bottom:431.952969px;}
.y13{bottom:437.205257px;}
.y12{bottom:454.747755px;}
.y39{bottom:455.686145px;}
.y38{bottom:473.227607px;}
.y11{bottom:477.392357px;}
.y37{bottom:490.770104px;}
.y10{bottom:493.518985px;}
.yf{bottom:505.901376px;}
.y36{bottom:508.311566px;}
.ye{bottom:518.284803px;}
.y35{bottom:525.854064px;}
.yd{bottom:530.017779px;}
.y34{bottom:543.395526px;}
.yc{bottom:547.560277px;}
.y33{bottom:560.938024px;}
.yb{bottom:569.457068px;}
.y32{bottom:578.479486px;}
.ya{bottom:595.254493px;}
.y31{bottom:596.021984px;}
.y30{bottom:613.563446px;}
.y2f{bottom:631.105943px;}
.y9{bottom:637.296621px;}
.y2e{bottom:648.647405px;}
.y8{bottom:654.839119px;}
.y2d{bottom:666.189903px;}
.y7{bottom:676.508045px;}
.y2c{bottom:683.731365px;}
.y6{bottom:694.050542px;}
.y2b{bottom:701.273863px;}
.y5{bottom:715.719468px;}
.y2a{bottom:718.815325px;}
.y4{bottom:733.261966px;}
.y29{bottom:736.357823px;}
.y3{bottom:750.803428px;}
.y28{bottom:753.899285px;}
.y2{bottom:771.441782px;}
.y1{bottom:799.958051px;}
.h7{height:21.669340px;}
.h8{height:28.933811px;}
.hc{height:36.363321px;}
.hb{height:40.297816px;}
.ha{height:44.577230px;}
.h9{height:46.063138px;}
.h2{height:52.363386px;}
.h6{height:52.524747px;}
.h5{height:62.046314px;}
.h3{height:62.835917px;}
.h4{height:77.557892px;}
.h0{height:875.905500px;}
.h1{height:876.000000px;}
.w1{width:616.500000px;}
.w2{width:616.530000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x1{left:58.719775px;}
.x5{left:64.992277px;}
.x7{left:77.293880px;}
.x2{left:83.319873px;}
.x6{left:99.691973px;}
.x1b{left:122.006171px;}
.x11{left:123.686158px;}
.x17{left:130.611182px;}
.x3{left:141.448235px;}
.x1d{left:161.430959px;}
.x4{left:165.814253px;}
.x21{left:179.160928px;}
.x18{left:198.361661px;}
.x12{left:199.887321px;}
.x13{left:249.428279px;}
.x20{left:258.318122px;}
.x14{left:262.975889px;}
.xa{left:264.744950px;}
.x1c{left:282.398273px;}
.xb{left:309.280129px;}
.x19{left:335.160414px;}
.x1e{left:352.368365px;}
.x8{left:353.547048px;}
.x1f{left:361.459142px;}
.x1a{left:375.662382px;}
.xd{left:379.593053px;}
.xe{left:384.556367px;}
.x9{left:395.889544px;}
.x15{left:432.434947px;}
.x16{left:470.310253px;}
.xf{left:510.353384px;}
.xc{left:513.723714px;}
.x10{left:555.905669px;}
@media print{
.v2{vertical-align:-13.316523pt;}
.v4{vertical-align:-9.317147pt;}
.v3{vertical-align:-7.925099pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.171963pt;}
.ls26{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000370pt;}
.lse{letter-spacing:0.001021pt;}
.ls37{letter-spacing:0.001360pt;}
.ls20{letter-spacing:0.001435pt;}
.ls1d{letter-spacing:0.001929pt;}
.ls1f{letter-spacing:0.003257pt;}
.ls39{letter-spacing:0.003314pt;}
.ls3b{letter-spacing:1.139601pt;}
.ls3{letter-spacing:1.156615pt;}
.ls4{letter-spacing:1.832863pt;}
.ls1e{letter-spacing:1.833542pt;}
.ls5{letter-spacing:1.836546pt;}
.ls15{letter-spacing:1.893348pt;}
.ls34{letter-spacing:1.897030pt;}
.ls0{letter-spacing:3.171985pt;}
.ls1{letter-spacing:3.195284pt;}
.ls1c{letter-spacing:8.804643pt;}
.ls12{letter-spacing:11.736416pt;}
.lsf{letter-spacing:11.736855pt;}
.ls35{letter-spacing:11.738594pt;}
.ls11{letter-spacing:11.739836pt;}
.ls14{letter-spacing:11.740099pt;}
.ls33{letter-spacing:11.740537pt;}
.ls10{letter-spacing:11.742277pt;}
.ls13{letter-spacing:11.743193pt;}
.ls2f{letter-spacing:12.302042pt;}
.ls31{letter-spacing:12.305725pt;}
.ls6{letter-spacing:12.839326pt;}
.ls7{letter-spacing:12.843009pt;}
.ls25{letter-spacing:14.671501pt;}
.ls28{letter-spacing:14.673175pt;}
.ls27{letter-spacing:14.674921pt;}
.ls38{letter-spacing:14.676786pt;}
.ls3a{letter-spacing:14.676857pt;}
.ls9{letter-spacing:14.684223pt;}
.ls32{letter-spacing:14.687372pt;}
.ls8{letter-spacing:14.689652pt;}
.lsb{letter-spacing:15.218209pt;}
.lsa{letter-spacing:15.219630pt;}
.ls18{letter-spacing:15.848172pt;}
.ls36{letter-spacing:15.849692pt;}
.ls16{letter-spacing:15.851855pt;}
.ls2d{letter-spacing:16.087319pt;}
.ls2c{letter-spacing:16.089449pt;}
.ls30{letter-spacing:16.462543pt;}
.ls24{letter-spacing:16.512651pt;}
.ls2e{letter-spacing:17.826968pt;}
.ls22{letter-spacing:18.830498pt;}
.ls2a{letter-spacing:20.075647pt;}
.ls29{letter-spacing:20.077777pt;}
.ls21{letter-spacing:20.194923pt;}
.ls2b{letter-spacing:21.974929pt;}
.ls1b{letter-spacing:25.194482pt;}
.ls23{letter-spacing:26.172431pt;}
.lsd{letter-spacing:26.494535pt;}
.ls1a{letter-spacing:27.240443pt;}
.ls2{letter-spacing:27.774810pt;}
.lsc{letter-spacing:28.397500pt;}
.ls19{letter-spacing:29.077910pt;}
.ws20{word-spacing:-52.832273pt;}
.ws3a{word-spacing:-39.203165pt;}
.ws28{word-spacing:-38.144901pt;}
.ws22{word-spacing:-36.688935pt;}
.ws14{word-spacing:-33.633025pt;}
.ws30{word-spacing:-29.057750pt;}
.ws18{word-spacing:-27.631279pt;}
.ws12{word-spacing:-24.862867pt;}
.ws26{word-spacing:-24.810035pt;}
.ws15{word-spacing:-18.973273pt;}
.ws29{word-spacing:-18.971062pt;}
.ws16{word-spacing:-18.970976pt;}
.ws27{word-spacing:-18.933698pt;}
.ws11{word-spacing:-14.370378pt;}
.ws7{word-spacing:-13.757632pt;}
.ws8{word-spacing:-11.444402pt;}
.ws23{word-spacing:-10.192186pt;}
.ws21{word-spacing:-10.175496pt;}
.ws4{word-spacing:-0.052832pt;}
.ws2a{word-spacing:0.000000pt;}
.ws13{word-spacing:0.292739pt;}
.ws1f{word-spacing:0.292842pt;}
.ws25{word-spacing:0.316994pt;}
.ws2b{word-spacing:8.770157pt;}
.wsa{word-spacing:10.162835pt;}
.ws9{word-spacing:10.969992pt;}
.wsc{word-spacing:13.683559pt;}
.ws2c{word-spacing:14.793036pt;}
.ws1a{word-spacing:15.479856pt;}
.ws3b{word-spacing:15.532688pt;}
.ws34{word-spacing:15.585520pt;}
.ws1b{word-spacing:15.638353pt;}
.ws32{word-spacing:15.691185pt;}
.ws3f{word-spacing:15.744017pt;}
.ws1{word-spacing:15.773544pt;}
.ws24{word-spacing:15.795301pt;}
.ws31{word-spacing:15.796014pt;}
.ws0{word-spacing:15.796849pt;}
.ws5{word-spacing:15.849682pt;}
.ws1e{word-spacing:15.902514pt;}
.ws35{word-spacing:16.008179pt;}
.wsd{word-spacing:16.061011pt;}
.ws1c{word-spacing:16.113843pt;}
.ws2f{word-spacing:16.378004pt;}
.ws3c{word-spacing:16.430837pt;}
.ws1d{word-spacing:16.536501pt;}
.wsb{word-spacing:17.223321pt;}
.ws39{word-spacing:17.487482pt;}
.ws38{word-spacing:17.540314pt;}
.wse{word-spacing:17.593147pt;}
.ws2d{word-spacing:17.910140pt;}
.ws36{word-spacing:18.015805pt;}
.ws2{word-spacing:18.068637pt;}
.ws3d{word-spacing:18.491295pt;}
.ws2e{word-spacing:18.913954pt;}
.ws33{word-spacing:19.125283pt;}
.ws3e{word-spacing:21.608399pt;}
.ws10{word-spacing:21.925393pt;}
.ws19{word-spacing:22.189554pt;}
.ws37{word-spacing:22.612213pt;}
.wsf{word-spacing:22.982039pt;}
.ws17{word-spacing:23.457529pt;}
.ws3{word-spacing:26.363304pt;}
.ws6{word-spacing:54.364408pt;}
._c{margin-left:-14.652848pt;}
._4{margin-left:-6.694880pt;}
._e{margin-left:-5.547389pt;}
._5{margin-left:-4.513972pt;}
._d{margin-left:-3.539762pt;}
._0{margin-left:-2.588781pt;}
._2{margin-left:-1.215142pt;}
._7{width:0.990886pt;}
._6{width:1.901962pt;}
._8{width:2.994813pt;}
._1{width:8.400331pt;}
._f{width:9.298480pt;}
._10{width:14.974762pt;}
._b{width:16.348401pt;}
._9{width:23.296487pt;}
._3{width:424.295981pt;}
._a{width:1336.762160pt;}
.fs6{font-size:25.682181pt;}
.fs5{font-size:36.688935pt;}
.fs2{font-size:50.718790pt;}
.fs0{font-size:52.832273pt;}
.fs4{font-size:60.874480pt;}
.fs1{font-size:63.398580pt;}
.fs3{font-size:76.093100pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:62.199925pt;}
.y27{bottom:71.266651pt;}
.y4b{bottom:77.792336pt;}
.y26{bottom:89.610934pt;}
.y4a{bottom:93.385667pt;}
.y25{bottom:107.955217pt;}
.y49{bottom:108.978078pt;}
.y24{bottom:123.548549pt;}
.y48{bottom:124.571409pt;}
.y23{bottom:139.140959pt;}
.y47{bottom:140.163820pt;}
.y22{bottom:154.734291pt;}
.y46{bottom:163.150105pt;}
.y21{bottom:170.326701pt;}
.y45{bottom:176.908547pt;}
.y20{bottom:185.920033pt;}
.y44{bottom:192.492672pt;}
.y1f{bottom:201.512443pt;}
.y43{bottom:215.423717pt;}
.y1e{bottom:217.105775pt;}
.y1d{bottom:232.698185pt;}
.y1c{bottom:248.291517pt;}
.y42{bottom:252.794497pt;}
.y1b{bottom:263.883927pt;}
.y41{bottom:268.387829pt;}
.y1a{bottom:279.477259pt;}
.y40{bottom:287.649096pt;}
.y19{bottom:295.069669pt;}
.y3f{bottom:303.242427pt;}
.y18{bottom:310.663001pt;}
.y3e{bottom:318.834838pt;}
.y17{bottom:326.255411pt;}
.y3d{bottom:334.428169pt;}
.y16{bottom:341.848743pt;}
.y3c{bottom:350.020580pt;}
.y15{bottom:357.441153pt;}
.y3b{bottom:365.613911pt;}
.y14{bottom:373.034485pt;}
.y3a{bottom:383.958195pt;}
.y13{bottom:388.626895pt;}
.y12{bottom:404.220227pt;}
.y39{bottom:405.054351pt;}
.y38{bottom:420.646761pt;}
.y11{bottom:424.348762pt;}
.y37{bottom:436.240093pt;}
.y10{bottom:438.683542pt;}
.yf{bottom:449.690112pt;}
.y36{bottom:451.832503pt;}
.ye{bottom:460.697603pt;}
.y35{bottom:467.425835pt;}
.yd{bottom:471.126915pt;}
.y34{bottom:483.018245pt;}
.yc{bottom:486.720246pt;}
.y33{bottom:498.611577pt;}
.yb{bottom:506.184060pt;}
.y32{bottom:514.203987pt;}
.ya{bottom:529.115105pt;}
.y31{bottom:529.797319pt;}
.y30{bottom:545.389729pt;}
.y2f{bottom:560.983061pt;}
.y9{bottom:566.485885pt;}
.y2e{bottom:576.575471pt;}
.y8{bottom:582.079217pt;}
.y2d{bottom:592.168803pt;}
.y7{bottom:601.340484pt;}
.y2c{bottom:607.761213pt;}
.y6{bottom:616.933815pt;}
.y2b{bottom:623.354545pt;}
.y5{bottom:636.195083pt;}
.y2a{bottom:638.946955pt;}
.y4{bottom:651.788414pt;}
.y29{bottom:654.540287pt;}
.y3{bottom:667.380825pt;}
.y28{bottom:670.132697pt;}
.y2{bottom:685.726029pt;}
.y1{bottom:711.073823pt;}
.h7{height:19.261636pt;}
.h8{height:25.718943pt;}
.hc{height:32.322952pt;}
.hb{height:35.820281pt;}
.ha{height:39.624204pt;}
.h9{height:40.945011pt;}
.h2{height:46.545232pt;}
.h6{height:46.688664pt;}
.h5{height:55.152279pt;}
.h3{height:55.854149pt;}
.h4{height:68.940349pt;}
.h0{height:778.582667pt;}
.h1{height:778.666667pt;}
.w1{width:548.000000pt;}
.w2{width:548.026667pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x1{left:52.195355pt;}
.x5{left:57.770913pt;}
.x7{left:68.705671pt;}
.x2{left:74.062109pt;}
.x6{left:88.615087pt;}
.x1b{left:108.449930pt;}
.x11{left:109.943251pt;}
.x17{left:116.098829pt;}
.x3{left:125.731764pt;}
.x1d{left:143.494186pt;}
.x4{left:147.390447pt;}
.x21{left:159.254158pt;}
.x18{left:176.321477pt;}
.x12{left:177.677619pt;}
.x13{left:221.714026pt;}
.x20{left:229.616108pt;}
.x14{left:233.756346pt;}
.xa{left:235.328845pt;}
.x1c{left:251.020687pt;}
.xb{left:274.915670pt;}
.x19{left:297.920368pt;}
.x1e{left:313.216324pt;}
.x8{left:314.264043pt;}
.x1f{left:321.297015pt;}
.x1a{left:333.922117pt;}
.xd{left:337.416047pt;}
.xe{left:341.827882pt;}
.x9{left:351.901817pt;}
.x15{left:384.386619pt;}
.x16{left:418.053558pt;}
.xf{left:453.647452pt;}
.xc{left:456.643301pt;}
.x10{left:494.138372pt;}
}




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