
    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_faf3fd8bf0c8a6a4bfe86bc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976000;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_400a9ab68c78d5e6b83b3aa8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_fbad584c50b190d59a0eb7b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.676000;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_1ac9c9397ec62522554a2bcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035645;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_763a9af93c7d59061d40e6fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.653000;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_8ab9b4f14dd90d69877129c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_a15c4c376a2697ad9bfd4776.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;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);}
.m1c{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);}
.m3{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);}
.m13{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m1b{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m7{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);}
.mf{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);}
.m1a{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);}
.m4{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);}
.m15{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);}
.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);}
.m19{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);}
.m9{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.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);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m16{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);}
.md{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);}
.m6{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);}
.m11{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);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.v4{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.002000px;}
.v2{vertical-align:13.200000px;}
.v5{vertical-align:21.702000px;}
.v1{vertical-align:26.034000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986090px;}
.ls2{letter-spacing:2.988007px;}
.ls1{letter-spacing:2.992090px;}
.ls4{letter-spacing:29.890200px;}
.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;}
}
.ws1{word-spacing:-19.941274px;}
.ws31{word-spacing:-16.617617px;}
.ws1a{word-spacing:-14.157000px;}
.ws3f{word-spacing:-3.466985px;}
.ws26{word-spacing:-3.347434px;}
.ws17{word-spacing:-2.570351px;}
.ws21{word-spacing:-2.391024px;}
.ws36{word-spacing:-1.315063px;}
.ws2c{word-spacing:-1.255288px;}
.wse{word-spacing:-0.896634px;}
.ws7{word-spacing:-0.836858px;}
.ws39{word-spacing:-0.478205px;}
.ws18{word-spacing:-0.358654px;}
.wsa{word-spacing:-0.298878px;}
.ws1f{word-spacing:-0.239102px;}
.ws8{word-spacing:-0.179327px;}
.ws4{word-spacing:-0.161395px;}
.ws1b{word-spacing:-0.119551px;}
.ws13{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:0.059776px;}
.ws2{word-spacing:0.107597px;}
.ws29{word-spacing:0.119551px;}
.ws2f{word-spacing:0.179327px;}
.ws1d{word-spacing:0.239102px;}
.ws16{word-spacing:0.298878px;}
.ws5{word-spacing:0.358654px;}
.ws1e{word-spacing:0.418429px;}
.ws3d{word-spacing:0.478205px;}
.ws1c{word-spacing:0.657532px;}
.ws3{word-spacing:0.699379px;}
.ws15{word-spacing:0.836858px;}
.ws6{word-spacing:0.896634px;}
.ws3e{word-spacing:1.016185px;}
.ws20{word-spacing:1.135736px;}
.ws23{word-spacing:1.195512px;}
.wsc{word-spacing:1.434614px;}
.ws3c{word-spacing:1.613941px;}
.ws2e{word-spacing:1.673717px;}
.ws27{word-spacing:1.793268px;}
.ws30{word-spacing:1.912819px;}
.wsd{word-spacing:1.972595px;}
.ws41{word-spacing:2.391024px;}
.ws37{word-spacing:2.570351px;}
.ws38{word-spacing:2.689902px;}
.ws22{word-spacing:2.809453px;}
.ws9{word-spacing:2.869229px;}
.ws19{word-spacing:3.407209px;}
.ws3a{word-spacing:3.586536px;}
.ws24{word-spacing:3.706087px;}
.ws42{word-spacing:3.945190px;}
.ws35{word-spacing:4.004965px;}
.ws2d{word-spacing:4.064741px;}
.ws14{word-spacing:4.303843px;}
.ws11{word-spacing:5.021150px;}
.ws28{word-spacing:5.858009px;}
.ws25{word-spacing:6.097111px;}
.ws12{word-spacing:6.216662px;}
.ws40{word-spacing:6.276438px;}
.ws3b{word-spacing:6.395989px;}
.wsf{word-spacing:7.113296px;}
.ws32{word-spacing:7.173072px;}
.wsb{word-spacing:7.412174px;}
.ws34{word-spacing:7.890379px;}
.ws33{word-spacing:8.069706px;}
.ws2b{word-spacing:8.581357px;}
.ws2a{word-spacing:8.667462px;}
._5{margin-left:-18.111998px;}
._a{margin-left:-9.444527px;}
._3{margin-left:-7.173120px;}
._c{margin-left:-5.260244px;}
._6{margin-left:-2.988780px;}
._0{margin-left:-1.793277px;}
._7{width:1.793268px;}
._11{width:2.809462px;}
._4{width:5.762474px;}
._2{width:7.620762px;}
._14{width:12.253998px;}
._12{width:15.224751px;}
._18{width:16.378532px;}
._9{width:18.428921px;}
._8{width:20.562806px;}
._13{width:21.579019px;}
._10{width:23.252735px;}
._16{width:24.866650px;}
._d{width:25.942610px;}
._e{width:27.138122px;}
._b{width:29.110717px;}
._1a{width:32.219048px;}
._1{width:33.513440px;}
._15{width:38.913916px;}
._19{width:40.049652px;}
._f{width:41.603818px;}
._17{width:45.309932px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:44.233800px;}
.fs5{font-size:49.500000px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y30{bottom:26.823750px;}
.y63{bottom:50.838000px;}
.y2f{bottom:95.670000px;}
.y2e{bottom:113.602500px;}
.ya9{bottom:114.399000px;}
.y86{bottom:131.535000px;}
.y2d{bottom:132.025500px;}
.ya8{bottom:132.331500px;}
.y62{bottom:142.641000px;}
.y85{bottom:149.467500px;}
.y2c{bottom:149.959500px;}
.ya7{bottom:150.265500px;}
.y84{bottom:167.400000px;}
.y2b{bottom:167.892000px;}
.ya6{bottom:168.198000px;}
.y61{bottom:170.994000px;}
.y83{bottom:185.332500px;}
.y2a{bottom:185.824500px;}
.ya5{bottom:186.130500px;}
.y60{bottom:188.928000px;}
.y82{bottom:203.266500px;}
.y29{bottom:203.757000px;}
.ya4{bottom:204.063000px;}
.y5f{bottom:217.281000px;}
.y81{bottom:221.199000px;}
.y28{bottom:221.689500px;}
.ya3{bottom:221.995500px;}
.y80{bottom:239.131500px;}
.ya2{bottom:239.928000px;}
.y27{bottom:240.114000px;}
.y5e{bottom:245.634000px;}
.y7f{bottom:257.064000px;}
.ya1{bottom:257.862000px;}
.y26{bottom:258.046500px;}
.y5d{bottom:274.672500px;}
.y7e{bottom:274.996500px;}
.ya0{bottom:275.794500px;}
.y25{bottom:275.979000px;}
.y5c{bottom:292.606500px;}
.y7d{bottom:292.929000px;}
.y9f{bottom:293.727000px;}
.y24{bottom:293.913000px;}
.y5b{bottom:310.539000px;}
.y7c{bottom:310.863000px;}
.y9e{bottom:311.659500px;}
.y23{bottom:311.845500px;}
.y5a{bottom:328.471500px;}
.y7b{bottom:328.795500px;}
.y9d{bottom:329.592000px;}
.y22{bottom:329.778000px;}
.y59{bottom:346.404000px;}
.y7a{bottom:346.728000px;}
.y9c{bottom:347.524500px;}
.y21{bottom:347.710500px;}
.y58{bottom:364.336500px;}
.y9b{bottom:365.458500px;}
.y20{bottom:365.643000px;}
.y79{bottom:372.132000px;}
.y57{bottom:382.269000px;}
.y9a{bottom:383.391000px;}
.y1f{bottom:383.575500px;}
.y56{bottom:400.203000px;}
.y99{bottom:401.323500px;}
.y1e{bottom:401.509500px;}
.y78{bottom:416.316000px;}
.y55{bottom:418.135500px;}
.y98{bottom:419.256000px;}
.y1d{bottom:419.442000px;}
.y77{bottom:434.248500px;}
.y53{bottom:436.068000px;}
.y97{bottom:437.188500px;}
.y1c{bottom:437.374500px;}
.y54{bottom:441.492000px;}
.y76{bottom:452.181000px;}
.y52{bottom:454.000500px;}
.y96{bottom:455.121000px;}
.y1b{bottom:455.799000px;}
.y75{bottom:470.115000px;}
.y51{bottom:471.933000px;}
.y95{bottom:473.055000px;}
.y1a{bottom:473.731500px;}
.y74{bottom:488.047500px;}
.y50{bottom:489.865500px;}
.y19{bottom:491.664000px;}
.y94{bottom:498.459000px;}
.y73{bottom:505.980000px;}
.y4f{bottom:507.799500px;}
.y18{bottom:509.596500px;}
.y4e{bottom:525.732000px;}
.y17{bottom:527.529000px;}
.y72{bottom:535.744500px;}
.y93{bottom:542.827500px;}
.y4d{bottom:543.664500px;}
.y16{bottom:545.953500px;}
.y71{bottom:553.677000px;}
.y92{bottom:560.760000px;}
.y4c{bottom:561.597000px;}
.y15{bottom:563.886000px;}
.y70{bottom:571.609500px;}
.y4b{bottom:579.529500px;}
.y14{bottom:581.820000px;}
.y91{bottom:586.165500px;}
.y4a{bottom:597.462000px;}
.y13{bottom:599.752500px;}
.y6f{bottom:601.374000px;}
.y49{bottom:615.396000px;}
.y6e{bottom:619.308000px;}
.y12{bottom:625.648500px;}
.y90{bottom:630.534000px;}
.y48{bottom:633.328500px;}
.y6d{bottom:637.240500px;}
.y8f{bottom:648.466500px;}
.y47{bottom:651.261000px;}
.y6c{bottom:655.173000px;}
.y8e{bottom:666.399000px;}
.y46{bottom:669.193500px;}
.y6b{bottom:673.105500px;}
.y8d{bottom:684.331500px;}
.y11{bottom:687.114000px;}
.y45{bottom:687.126000px;}
.y8c{bottom:702.264000px;}
.y6a{bottom:702.870000px;}
.y10{bottom:703.552500px;}
.y44{bottom:705.058500px;}
.yf{bottom:719.991000px;}
.y8b{bottom:720.198000px;}
.y69{bottom:720.802500px;}
.y43{bottom:722.992500px;}
.ye{bottom:736.429500px;}
.y8a{bottom:738.130500px;}
.y68{bottom:738.736500px;}
.y42{bottom:740.925000px;}
.y89{bottom:756.063000px;}
.y41{bottom:758.857500px;}
.y67{bottom:771.304500px;}
.yd{bottom:774.993000px;}
.y40{bottom:776.790000px;}
.y88{bottom:781.467000px;}
.y66{bottom:789.237000px;}
.y3f{bottom:802.195500px;}
.y65{bottom:807.169500px;}
.yc{bottom:823.009500px;}
.y87{bottom:831.679500px;}
.y3e{bottom:844.261500px;}
.yb{bottom:851.382000px;}
.y64{bottom:857.134500px;}
.y3d{bottom:862.194000px;}
.ya{bottom:869.806500px;}
.y3c{bottom:880.126500px;}
.y3b{bottom:898.059000px;}
.y9{bottom:903.175500px;}
.y3a{bottom:915.991500px;}
.y8{bottom:926.532000px;}
.y39{bottom:933.924000px;}
.y7{bottom:939.040500px;}
.y6{bottom:944.464500px;}
.y38{bottom:951.858000px;}
.y37{bottom:969.790500px;}
.y5{bottom:971.917500px;}
.y36{bottom:987.723000px;}
.y4{bottom:992.838000px;}
.y3{bottom:992.839500px;}
.y35{bottom:1005.655500px;}
.y34{bottom:1023.588000px;}
.y2{bottom:1033.167000px;}
.y33{bottom:1041.520500px;}
.y32{bottom:1059.454500px;}
.y1{bottom:1070.527500px;}
.y31{bottom:1077.387000px;}
.he{height:26.540366px;}
.hc{height:28.884671px;}
.h5{height:32.777246px;}
.hb{height:39.590332px;}
.ha{height:39.864614px;}
.hd{height:39.930101px;}
.hf{height:40.725389px;}
.h8{height:44.293720px;}
.h7{height:45.250129px;}
.h6{height:46.084129px;}
.h9{height:51.604049px;}
.h3{height:54.300518px;}
.h4{height:65.898614px;}
.h2{height:67.494518px;}
.h1{height:90.500713px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:112.500000px;}
.x1{left:212.598000px;}
.x9{left:217.081500px;}
.xa{left:235.014000px;}
.x13{left:244.138500px;}
.x10{left:249.958500px;}
.x6{left:305.115000px;}
.xe{left:315.745500px;}
.x12{left:412.300500px;}
.x4{left:467.655000px;}
.x5{left:526.473000px;}
.x3{left:582.858000px;}
.x7{left:589.210500px;}
.xc{left:611.457000px;}
.x2{left:631.006500px;}
.xd{left:636.609000px;}
.x8{left:712.930500px;}
.xf{left:799.929000px;}
.x11{left:814.266000px;}
@media print{
.v4{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.890667pt;}
.v2{vertical-align:11.733333pt;}
.v5{vertical-align:19.290667pt;}
.v1{vertical-align:23.141333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654302pt;}
.ls2{letter-spacing:2.656006pt;}
.ls1{letter-spacing:2.659635pt;}
.ls4{letter-spacing:26.569067pt;}
.ws1{word-spacing:-17.725577pt;}
.ws31{word-spacing:-14.771215pt;}
.ws1a{word-spacing:-12.584000pt;}
.ws3f{word-spacing:-3.081764pt;}
.ws26{word-spacing:-2.975497pt;}
.ws17{word-spacing:-2.284756pt;}
.ws21{word-spacing:-2.125355pt;}
.ws36{word-spacing:-1.168945pt;}
.ws2c{word-spacing:-1.115811pt;}
.wse{word-spacing:-0.797008pt;}
.ws7{word-spacing:-0.743874pt;}
.ws39{word-spacing:-0.425071pt;}
.ws18{word-spacing:-0.318803pt;}
.wsa{word-spacing:-0.265669pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws8{word-spacing:-0.159402pt;}
.ws4{word-spacing:-0.143462pt;}
.ws1b{word-spacing:-0.106268pt;}
.ws13{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:0.053134pt;}
.ws2{word-spacing:0.095642pt;}
.ws29{word-spacing:0.106268pt;}
.ws2f{word-spacing:0.159402pt;}
.ws1d{word-spacing:0.212535pt;}
.ws16{word-spacing:0.265669pt;}
.ws5{word-spacing:0.318803pt;}
.ws1e{word-spacing:0.371937pt;}
.ws3d{word-spacing:0.425071pt;}
.ws1c{word-spacing:0.584473pt;}
.ws3{word-spacing:0.621670pt;}
.ws15{word-spacing:0.743874pt;}
.ws6{word-spacing:0.797008pt;}
.ws3e{word-spacing:0.903276pt;}
.ws20{word-spacing:1.009543pt;}
.ws23{word-spacing:1.062677pt;}
.wsc{word-spacing:1.275213pt;}
.ws3c{word-spacing:1.434614pt;}
.ws2e{word-spacing:1.487748pt;}
.ws27{word-spacing:1.594016pt;}
.ws30{word-spacing:1.700284pt;}
.wsd{word-spacing:1.753418pt;}
.ws41{word-spacing:2.125355pt;}
.ws37{word-spacing:2.284756pt;}
.ws38{word-spacing:2.391024pt;}
.ws22{word-spacing:2.497292pt;}
.ws9{word-spacing:2.550426pt;}
.ws19{word-spacing:3.028630pt;}
.ws3a{word-spacing:3.188032pt;}
.ws24{word-spacing:3.294300pt;}
.ws42{word-spacing:3.506835pt;}
.ws35{word-spacing:3.559969pt;}
.ws2d{word-spacing:3.613103pt;}
.ws14{word-spacing:3.825638pt;}
.ws11{word-spacing:4.463245pt;}
.ws28{word-spacing:5.207119pt;}
.ws25{word-spacing:5.419654pt;}
.ws12{word-spacing:5.525922pt;}
.ws40{word-spacing:5.579056pt;}
.ws3b{word-spacing:5.685324pt;}
.wsf{word-spacing:6.322930pt;}
.ws32{word-spacing:6.376064pt;}
.wsb{word-spacing:6.588599pt;}
.ws34{word-spacing:7.013670pt;}
.ws33{word-spacing:7.173072pt;}
.ws2b{word-spacing:7.627873pt;}
.ws2a{word-spacing:7.704411pt;}
._5{margin-left:-16.099554pt;}
._a{margin-left:-8.395135pt;}
._3{margin-left:-6.376107pt;}
._c{margin-left:-4.675772pt;}
._6{margin-left:-2.656693pt;}
._0{margin-left:-1.594024pt;}
._7{width:1.594016pt;}
._11{width:2.497300pt;}
._4{width:5.122199pt;}
._2{width:6.774011pt;}
._14{width:10.892443pt;}
._12{width:13.533112pt;}
._18{width:14.558695pt;}
._9{width:16.381263pt;}
._8{width:18.278050pt;}
._13{width:19.181350pt;}
._10{width:20.669098pt;}
._16{width:22.103689pt;}
._d{width:23.060098pt;}
._e{width:24.122775pt;}
._b{width:25.876193pt;}
._1a{width:28.639154pt;}
._1{width:29.789725pt;}
._15{width:34.590147pt;}
._19{width:35.599691pt;}
._f{width:36.981171pt;}
._17{width:40.275495pt;}
.fs3{font-size:39.318933pt;}
.fs5{font-size:44.000000pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:23.843333pt;}
.y63{bottom:45.189333pt;}
.y2f{bottom:85.040000pt;}
.y2e{bottom:100.980000pt;}
.ya9{bottom:101.688000pt;}
.y86{bottom:116.920000pt;}
.y2d{bottom:117.356000pt;}
.ya8{bottom:117.628000pt;}
.y62{bottom:126.792000pt;}
.y85{bottom:132.860000pt;}
.y2c{bottom:133.297333pt;}
.ya7{bottom:133.569333pt;}
.y84{bottom:148.800000pt;}
.y2b{bottom:149.237333pt;}
.ya6{bottom:149.509333pt;}
.y61{bottom:151.994667pt;}
.y83{bottom:164.740000pt;}
.y2a{bottom:165.177333pt;}
.ya5{bottom:165.449333pt;}
.y60{bottom:167.936000pt;}
.y82{bottom:180.681333pt;}
.y29{bottom:181.117333pt;}
.ya4{bottom:181.389333pt;}
.y5f{bottom:193.138667pt;}
.y81{bottom:196.621333pt;}
.y28{bottom:197.057333pt;}
.ya3{bottom:197.329333pt;}
.y80{bottom:212.561333pt;}
.ya2{bottom:213.269333pt;}
.y27{bottom:213.434667pt;}
.y5e{bottom:218.341333pt;}
.y7f{bottom:228.501333pt;}
.ya1{bottom:229.210667pt;}
.y26{bottom:229.374667pt;}
.y5d{bottom:244.153333pt;}
.y7e{bottom:244.441333pt;}
.ya0{bottom:245.150667pt;}
.y25{bottom:245.314667pt;}
.y5c{bottom:260.094667pt;}
.y7d{bottom:260.381333pt;}
.y9f{bottom:261.090667pt;}
.y24{bottom:261.256000pt;}
.y5b{bottom:276.034667pt;}
.y7c{bottom:276.322667pt;}
.y9e{bottom:277.030667pt;}
.y23{bottom:277.196000pt;}
.y5a{bottom:291.974667pt;}
.y7b{bottom:292.262667pt;}
.y9d{bottom:292.970667pt;}
.y22{bottom:293.136000pt;}
.y59{bottom:307.914667pt;}
.y7a{bottom:308.202667pt;}
.y9c{bottom:308.910667pt;}
.y21{bottom:309.076000pt;}
.y58{bottom:323.854667pt;}
.y9b{bottom:324.852000pt;}
.y20{bottom:325.016000pt;}
.y79{bottom:330.784000pt;}
.y57{bottom:339.794667pt;}
.y9a{bottom:340.792000pt;}
.y1f{bottom:340.956000pt;}
.y56{bottom:355.736000pt;}
.y99{bottom:356.732000pt;}
.y1e{bottom:356.897333pt;}
.y78{bottom:370.058667pt;}
.y55{bottom:371.676000pt;}
.y98{bottom:372.672000pt;}
.y1d{bottom:372.837333pt;}
.y77{bottom:385.998667pt;}
.y53{bottom:387.616000pt;}
.y97{bottom:388.612000pt;}
.y1c{bottom:388.777333pt;}
.y54{bottom:392.437333pt;}
.y76{bottom:401.938667pt;}
.y52{bottom:403.556000pt;}
.y96{bottom:404.552000pt;}
.y1b{bottom:405.154667pt;}
.y75{bottom:417.880000pt;}
.y51{bottom:419.496000pt;}
.y95{bottom:420.493333pt;}
.y1a{bottom:421.094667pt;}
.y74{bottom:433.820000pt;}
.y50{bottom:435.436000pt;}
.y19{bottom:437.034667pt;}
.y94{bottom:443.074667pt;}
.y73{bottom:449.760000pt;}
.y4f{bottom:451.377333pt;}
.y18{bottom:452.974667pt;}
.y4e{bottom:467.317333pt;}
.y17{bottom:468.914667pt;}
.y72{bottom:476.217333pt;}
.y93{bottom:482.513333pt;}
.y4d{bottom:483.257333pt;}
.y16{bottom:485.292000pt;}
.y71{bottom:492.157333pt;}
.y92{bottom:498.453333pt;}
.y4c{bottom:499.197333pt;}
.y15{bottom:501.232000pt;}
.y70{bottom:508.097333pt;}
.y4b{bottom:515.137333pt;}
.y14{bottom:517.173333pt;}
.y91{bottom:521.036000pt;}
.y4a{bottom:531.077333pt;}
.y13{bottom:533.113333pt;}
.y6f{bottom:534.554667pt;}
.y49{bottom:547.018667pt;}
.y6e{bottom:550.496000pt;}
.y12{bottom:556.132000pt;}
.y90{bottom:560.474667pt;}
.y48{bottom:562.958667pt;}
.y6d{bottom:566.436000pt;}
.y8f{bottom:576.414667pt;}
.y47{bottom:578.898667pt;}
.y6c{bottom:582.376000pt;}
.y8e{bottom:592.354667pt;}
.y46{bottom:594.838667pt;}
.y6b{bottom:598.316000pt;}
.y8d{bottom:608.294667pt;}
.y11{bottom:610.768000pt;}
.y45{bottom:610.778667pt;}
.y8c{bottom:624.234667pt;}
.y6a{bottom:624.773333pt;}
.y10{bottom:625.380000pt;}
.y44{bottom:626.718667pt;}
.yf{bottom:639.992000pt;}
.y8b{bottom:640.176000pt;}
.y69{bottom:640.713333pt;}
.y43{bottom:642.660000pt;}
.ye{bottom:654.604000pt;}
.y8a{bottom:656.116000pt;}
.y68{bottom:656.654667pt;}
.y42{bottom:658.600000pt;}
.y89{bottom:672.056000pt;}
.y41{bottom:674.540000pt;}
.y67{bottom:685.604000pt;}
.yd{bottom:688.882667pt;}
.y40{bottom:690.480000pt;}
.y88{bottom:694.637333pt;}
.y66{bottom:701.544000pt;}
.y3f{bottom:713.062667pt;}
.y65{bottom:717.484000pt;}
.yc{bottom:731.564000pt;}
.y87{bottom:739.270667pt;}
.y3e{bottom:750.454667pt;}
.yb{bottom:756.784000pt;}
.y64{bottom:761.897333pt;}
.y3d{bottom:766.394667pt;}
.ya{bottom:773.161333pt;}
.y3c{bottom:782.334667pt;}
.y3b{bottom:798.274667pt;}
.y9{bottom:802.822667pt;}
.y3a{bottom:814.214667pt;}
.y8{bottom:823.584000pt;}
.y39{bottom:830.154667pt;}
.y7{bottom:834.702667pt;}
.y6{bottom:839.524000pt;}
.y38{bottom:846.096000pt;}
.y37{bottom:862.036000pt;}
.y5{bottom:863.926667pt;}
.y36{bottom:877.976000pt;}
.y4{bottom:882.522667pt;}
.y3{bottom:882.524000pt;}
.y35{bottom:893.916000pt;}
.y34{bottom:909.856000pt;}
.y2{bottom:918.370667pt;}
.y33{bottom:925.796000pt;}
.y32{bottom:941.737333pt;}
.y1{bottom:951.580000pt;}
.y31{bottom:957.677333pt;}
.he{height:23.591437pt;}
.hc{height:25.675263pt;}
.h5{height:29.135330pt;}
.hb{height:35.191406pt;}
.ha{height:35.435213pt;}
.hd{height:35.493423pt;}
.hf{height:36.200346pt;}
.h8{height:39.372195pt;}
.h7{height:40.222337pt;}
.h6{height:40.963670pt;}
.h9{height:45.870266pt;}
.h3{height:48.267127pt;}
.h4{height:58.576546pt;}
.h2{height:59.995127pt;}
.h1{height:80.445078pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:100.000000pt;}
.x1{left:188.976000pt;}
.x9{left:192.961333pt;}
.xa{left:208.901333pt;}
.x13{left:217.012000pt;}
.x10{left:222.185333pt;}
.x6{left:271.213333pt;}
.xe{left:280.662667pt;}
.x12{left:366.489333pt;}
.x4{left:415.693333pt;}
.x5{left:467.976000pt;}
.x3{left:518.096000pt;}
.x7{left:523.742667pt;}
.xc{left:543.517333pt;}
.x2{left:560.894667pt;}
.xd{left:565.874667pt;}
.x8{left:633.716000pt;}
.xf{left:711.048000pt;}
.x11{left:723.792000pt;}
}




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