
    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_33b6f8b383ab3ec599638f64.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c0405459567a2200e9d214f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_237fd8deac6d051594112c98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766000;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_78267b27d349bcf476e802ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_a3c239adbeb1b11417ab9644.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_144495e2a24fe5d8febfc472.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_85a2bdb1b92380b5c0129d0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_3b61c384df6165ca9b741410.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.244000;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;}
.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);}
.m1{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);}
.v3{vertical-align:-34.182000px;}
.v4{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.542000px;}
.v2{vertical-align:5.976000px;}
.v1{vertical-align:28.206000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001500px;}
.ls11{letter-spacing:0.001710px;}
.ls2{letter-spacing:2.988600px;}
.ls6{letter-spacing:8.367600px;}
.lsc{letter-spacing:9.962276px;}
.lse{letter-spacing:9.982525px;}
.ls3{letter-spacing:10.955674px;}
.ls4{letter-spacing:10.957200px;}
.ls5{letter-spacing:10.961674px;}
.lsf{letter-spacing:13.279032px;}
.lsd{letter-spacing:13.285032px;}
.lsb{letter-spacing:16.603032px;}
.ls10{letter-spacing:16.603198px;}
.ls8{letter-spacing:18.773400px;}
.lsa{letter-spacing:19.905275px;}
.ls12{letter-spacing:19.927032px;}
.ls9{letter-spacing:23.790689px;}
.ls7{letter-spacing:26.900600px;}
.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;}
}
.ws9{word-spacing:-64.904742px;}
.ws44{word-spacing:-14.943900px;}
.ws11{word-spacing:-13.449600px;}
.ws5{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.ws46{word-spacing:-10.042301px;}
.ws7{word-spacing:-5.487426px;}
.ws10{word-spacing:-5.057050px;}
.ws12{word-spacing:-3.586545px;}
.ws45{word-spacing:-1.664050px;}
.ws47{word-spacing:-1.658050px;}
.ws42{word-spacing:-0.537980px;}
.ws4d{word-spacing:-0.179327px;}
.ws3{word-spacing:-0.095641px;}
.ws57{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053200px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:1.135736px;}
.ws19{word-spacing:1.255288px;}
.ws21{word-spacing:1.340063px;}
.ws2d{word-spacing:1.374839px;}
.ws48{word-spacing:1.661442px;}
.ws43{word-spacing:1.661476px;}
.ws55{word-spacing:1.673717px;}
.ws52{word-spacing:1.853044px;}
.ws6{word-spacing:2.008474px;}
.ws51{word-spacing:2.929004px;}
.ws36{word-spacing:3.108331px;}
.ws53{word-spacing:3.168107px;}
.ws41{word-spacing:3.347434px;}
.ws54{word-spacing:3.586536px;}
.ws3a{word-spacing:3.825638px;}
.ws23{word-spacing:4.160392px;}
.ws38{word-spacing:4.542946px;}
.wsd{word-spacing:4.949453px;}
.ws2a{word-spacing:4.961375px;}
.ws4f{word-spacing:5.021150px;}
.ws26{word-spacing:5.080926px;}
.ws33{word-spacing:5.559131px;}
.ws56{word-spacing:5.738458px;}
.wsf{word-spacing:5.756429px;}
.ws1a{word-spacing:6.336214px;}
.ws37{word-spacing:6.575316px;}
.ws2c{word-spacing:6.635092px;}
.ws29{word-spacing:6.754643px;}
.ws28{word-spacing:6.814418px;}
.ws22{word-spacing:6.838346px;}
.ws1d{word-spacing:7.113296px;}
.ws1c{word-spacing:7.173072px;}
.ws3e{word-spacing:7.232848px;}
.ws2f{word-spacing:7.352399px;}
.ws35{word-spacing:7.412174px;}
.ws1e{word-spacing:7.460014px;}
.ws20{word-spacing:7.507834px;}
.ws3f{word-spacing:7.531726px;}
.ws40{word-spacing:7.890379px;}
.ws4{word-spacing:7.986040px;}
.ws2e{word-spacing:8.069706px;}
.ws32{word-spacing:8.249033px;}
.ws3c{word-spacing:8.308808px;}
.ws58{word-spacing:8.368584px;}
.wse{word-spacing:8.446349px;}
.ws27{word-spacing:8.846789px;}
.ws15{word-spacing:8.906564px;}
.ws16{word-spacing:9.085891px;}
.wsc{word-spacing:9.145728px;}
.wsb{word-spacing:9.414720px;}
.ws3d{word-spacing:9.444545px;}
.ws5c{word-spacing:9.468479px;}
.ws25{word-spacing:9.803198px;}
.ws34{word-spacing:10.998710px;}
.ws50{word-spacing:11.058486px;}
.ws4e{word-spacing:11.118262px;}
.ws18{word-spacing:11.297588px;}
.ws4c{word-spacing:11.524765px;}
.ws31{word-spacing:11.835569px;}
.ws13{word-spacing:11.907221px;}
.wsa{word-spacing:11.907329px;}
.ws5d{word-spacing:11.955150px;}
.ws59{word-spacing:12.791978px;}
.ws30{word-spacing:12.911530px;}
.ws17{word-spacing:13.509286px;}
.ws1b{word-spacing:16.079636px;}
.ws5b{word-spacing:16.785031px;}
.ws3b{word-spacing:17.872904px;}
.ws5a{word-spacing:17.932725px;}
.ws1f{word-spacing:19.367343px;}
.ws2b{word-spacing:19.845499px;}
.ws24{word-spacing:19.893370px;}
.ws1{word-spacing:19.896875px;}
.ws4b{word-spacing:23.432094px;}
.ws14{word-spacing:29.828024px;}
.ws4a{word-spacing:614.623950px;}
.ws49{word-spacing:853.894446px;}
._6{margin-left:-7.173090px;}
._5{margin-left:-6.121080px;}
._4{margin-left:-4.782115px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.099891px;}
._9{width:1.966613px;}
._3{width:3.634366px;}
._12{width:15.756845px;}
._c{width:17.119757px;}
._d{width:18.913039px;}
._13{width:20.909495px;}
._f{width:22.726676px;}
._10{width:25.424945px;}
._a{width:29.505233px;}
._8{width:37.605082px;}
._b{width:39.222465px;}
._7{width:45.644966px;}
._14{width:55.411981px;}
._11{width:60.231911px;}
._e{width:626.568859px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs10{font-size:40.647600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.200200px;}
.fse{font-size:53.798400px;}
.fsc{font-size:59.058000px;}
.fsf{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.708400px;}
.fs6{font-size:95.641200px;}
.fs9{font-size:101.619000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y4c{bottom:53.050500px;}
.y5{bottom:66.525004px;}
.y4b{bottom:67.995000px;}
.y4a{bottom:87.421500px;}
.y7c{bottom:88.168500px;}
.y8c{bottom:88.170000px;}
.y4{bottom:97.125005px;}
.y49{bottom:102.366000px;}
.y8b{bottom:105.829500px;}
.y7b{bottom:106.006500px;}
.y48{bottom:117.310500px;}
.y8a{bottom:123.489000px;}
.y7a{bottom:123.843000px;}
.y22{bottom:139.264499px;}
.y89{bottom:141.148500px;}
.y79{bottom:141.681000px;}
.y47{bottom:144.957000px;}
.y88{bottom:158.808000px;}
.y78{bottom:159.517500px;}
.y46{bottom:163.717500px;}
.y77{bottom:177.355500px;}
.y87{bottom:184.887000px;}
.y45{bottom:191.715000px;}
.y76{bottom:195.192000px;}
.y19{bottom:196.933500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y44{bottom:209.920500px;}
.y75{bottom:213.030000px;}
.y86{bottom:219.112500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y43{bottom:228.126000px;}
.y74{bottom:230.866500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y85{bottom:236.772000px;}
.y42{bottom:246.331500px;}
.y84{bottom:254.431500px;}
.y73{bottom:257.479500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y41{bottom:264.537000px;}
.y83{bottom:272.091000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y40{bottom:282.742500px;}
.y72{bottom:284.092500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y82{bottom:289.750500px;}
.y3f{bottom:300.948000px;}
.y71{bottom:301.929000px;}
.y81{bottom:307.410000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y3e{bottom:319.153500px;}
.y70{bottom:319.767000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y80{bottom:325.069500px;}
.y3d{bottom:337.359000px;}
.y6f{bottom:337.603500px;}
.y10{bottom:348.133500px;}
.y7f{bottom:351.148500px;}
.y6e{bottom:355.441500px;}
.y3c{bottom:366.168000px;}
.y6d{bottom:373.278000px;}
.yf{bottom:386.785499px;}
.y6c{bottom:391.116000px;}
.y7e{bottom:401.958000px;}
.ye{bottom:408.044999px;}
.y6b{bottom:408.952500px;}
.y7d{bottom:416.901000px;}
.y6a{bottom:426.790500px;}
.y3b{bottom:428.949000px;}
.y69{bottom:444.627000px;}
.y68{bottom:471.240000px;}
.y3a{bottom:472.768500px;}
.y39{bottom:498.172500px;}
.yd{bottom:502.864502px;}
.y67{bottom:506.532000px;}
.y38{bottom:514.611000px;}
.y37{bottom:515.044500px;}
.yc{bottom:520.864502px;}
.y66{bottom:524.370000px;}
.y36{bottom:531.049500px;}
.yb{bottom:538.864499px;}
.y65{bottom:542.206500px;}
.y35{bottom:547.488000px;}
.ya{bottom:556.864499px;}
.y64{bottom:560.044500px;}
.y34{bottom:563.926500px;}
.y63{bottom:577.881000px;}
.y33{bottom:580.365000px;}
.y62{bottom:595.719000px;}
.y32{bottom:596.803500px;}
.y31{bottom:613.242000px;}
.y61{bottom:613.555500px;}
.y60{bottom:631.393500px;}
.y30{bottom:638.646000px;}
.y9{bottom:645.510000px;}
.y5f{bottom:649.230000px;}
.y8{bottom:666.771000px;}
.y5e{bottom:667.068000px;}
.y5d{bottom:684.904500px;}
.y2f{bottom:701.175000px;}
.y5c{bottom:702.742500px;}
.y7{bottom:726.298500px;}
.y2e{bottom:726.982500px;}
.y5b{bottom:729.355500px;}
.y2d{bottom:742.471500px;}
.y3{bottom:752.599495px;}
.y2c{bottom:757.960500px;}
.y99{bottom:762.832500px;}
.y5a{bottom:764.647500px;}
.y98{bottom:777.777000px;}
.y2b{bottom:779.871000px;}
.y59{bottom:782.484000px;}
.y97{bottom:792.720000px;}
.y58{bottom:800.322000px;}
.y96{bottom:807.664500px;}
.y2a{bottom:817.347000px;}
.y57{bottom:818.158500px;}
.y95{bottom:822.609000px;}
.y56{bottom:835.996500px;}
.y94{bottom:837.552000px;}
.y29{bottom:847.234500px;}
.y93{bottom:852.496500px;}
.y55{bottom:853.833000px;}
.y92{bottom:867.441000px;}
.y2{bottom:879.369000px;}
.y54{bottom:880.446000px;}
.y91{bottom:882.384000px;}
.y28{bottom:883.831500px;}
.y27{bottom:901.764000px;}
.y90{bottom:906.294000px;}
.y53{bottom:915.738000px;}
.y52{bottom:933.576000px;}
.y26{bottom:941.653500px;}
.y8f{bottom:942.160500px;}
.y51{bottom:951.412500px;}
.y25{bottom:956.596500px;}
.y8e{bottom:960.093000px;}
.y1{bottom:966.726000px;}
.y50{bottom:969.250500px;}
.y8d{bottom:978.025500px;}
.y4f{bottom:987.087000px;}
.y4e{bottom:1004.925000px;}
.y24{bottom:1009.275000px;}
.y23{bottom:1035.292500px;}
.y4d{bottom:1037.802000px;}
.h10{height:24.675533px;}
.h15{height:27.599720px;}
.h7{height:32.130000px;}
.hc{height:32.900573px;}
.h17{height:33.044035px;}
.h16{height:34.442573px;}
.h12{height:37.013299px;}
.h11{height:37.174694px;}
.ha{height:38.782946px;}
.h14{height:41.125613px;}
.h13{height:41.304940px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:49.351066px;}
.h2{height:55.080000px;}
.he{height:69.913872px;}
.hb{height:72.113465px;}
.hf{height:74.282382px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1113.750000px;}
.h8{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:55.666500px;}
.x1a{left:57.651000px;}
.x11{left:61.644000px;}
.x13{left:65.383500px;}
.x9{left:72.363000px;}
.x18{left:73.599000px;}
.x12{left:79.576500px;}
.x14{left:84.060000px;}
.xa{left:86.044500px;}
.x19{left:91.531500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:116.769000px;}
.xb{left:133.245000px;}
.xe{left:196.272000px;}
.xf{left:197.413500px;}
.x4{left:203.484001px;}
.xd{left:211.108500px;}
.xc{left:223.470000px;}
.x16{left:230.244000px;}
.x5{left:260.890500px;}
.x10{left:276.150000px;}
.x7{left:301.570500px;}
.x6{left:317.613000px;}
.x3{left:454.959000px;}
.x8{left:618.787500px;}
@media print{
.v3{vertical-align:-30.384000pt;}
.v4{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.370667pt;}
.v2{vertical-align:5.312000pt;}
.v1{vertical-align:25.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001333pt;}
.ls11{letter-spacing:0.001520pt;}
.ls2{letter-spacing:2.656533pt;}
.ls6{letter-spacing:7.437867pt;}
.lsc{letter-spacing:8.855357pt;}
.lse{letter-spacing:8.873356pt;}
.ls3{letter-spacing:9.738377pt;}
.ls4{letter-spacing:9.739733pt;}
.ls5{letter-spacing:9.743710pt;}
.lsf{letter-spacing:11.803584pt;}
.lsd{letter-spacing:11.808917pt;}
.lsb{letter-spacing:14.758251pt;}
.ls10{letter-spacing:14.758398pt;}
.ls8{letter-spacing:16.687467pt;}
.lsa{letter-spacing:17.693578pt;}
.ls12{letter-spacing:17.712917pt;}
.ls9{letter-spacing:21.147279pt;}
.ls7{letter-spacing:23.911645pt;}
.ws9{word-spacing:-57.693104pt;}
.ws44{word-spacing:-13.283467pt;}
.ws11{word-spacing:-11.955200pt;}
.ws5{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.ws46{word-spacing:-8.926490pt;}
.ws7{word-spacing:-4.877712pt;}
.ws10{word-spacing:-4.495155pt;}
.ws12{word-spacing:-3.188040pt;}
.ws45{word-spacing:-1.479155pt;}
.ws47{word-spacing:-1.473822pt;}
.ws42{word-spacing:-0.478205pt;}
.ws4d{word-spacing:-0.159402pt;}
.ws3{word-spacing:-0.085014pt;}
.ws57{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047289pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:1.009543pt;}
.ws19{word-spacing:1.115811pt;}
.ws21{word-spacing:1.191167pt;}
.ws2d{word-spacing:1.222079pt;}
.ws48{word-spacing:1.476837pt;}
.ws43{word-spacing:1.476867pt;}
.ws55{word-spacing:1.487748pt;}
.ws52{word-spacing:1.647150pt;}
.ws6{word-spacing:1.785310pt;}
.ws51{word-spacing:2.603559pt;}
.ws36{word-spacing:2.762961pt;}
.ws53{word-spacing:2.816095pt;}
.ws41{word-spacing:2.975497pt;}
.ws54{word-spacing:3.188032pt;}
.ws3a{word-spacing:3.400567pt;}
.ws23{word-spacing:3.698126pt;}
.ws38{word-spacing:4.038174pt;}
.wsd{word-spacing:4.399514pt;}
.ws2a{word-spacing:4.410111pt;}
.ws4f{word-spacing:4.463245pt;}
.ws26{word-spacing:4.516379pt;}
.ws33{word-spacing:4.941450pt;}
.ws56{word-spacing:5.100851pt;}
.wsf{word-spacing:5.116826pt;}
.ws1a{word-spacing:5.632190pt;}
.ws37{word-spacing:5.844725pt;}
.ws2c{word-spacing:5.897859pt;}
.ws29{word-spacing:6.004127pt;}
.ws28{word-spacing:6.057261pt;}
.ws22{word-spacing:6.078530pt;}
.ws1d{word-spacing:6.322930pt;}
.ws1c{word-spacing:6.376064pt;}
.ws3e{word-spacing:6.429198pt;}
.ws2f{word-spacing:6.535466pt;}
.ws35{word-spacing:6.588599pt;}
.ws1e{word-spacing:6.631123pt;}
.ws20{word-spacing:6.673630pt;}
.ws3f{word-spacing:6.694867pt;}
.ws40{word-spacing:7.013670pt;}
.ws4{word-spacing:7.098702pt;}
.ws2e{word-spacing:7.173072pt;}
.ws32{word-spacing:7.332474pt;}
.ws3c{word-spacing:7.385607pt;}
.ws58{word-spacing:7.438741pt;}
.wse{word-spacing:7.507866pt;}
.ws27{word-spacing:7.863812pt;}
.ws15{word-spacing:7.916946pt;}
.ws16{word-spacing:8.076348pt;}
.wsc{word-spacing:8.129536pt;}
.wsb{word-spacing:8.368640pt;}
.ws3d{word-spacing:8.395151pt;}
.ws5c{word-spacing:8.416426pt;}
.ws25{word-spacing:8.713954pt;}
.ws34{word-spacing:9.776631pt;}
.ws50{word-spacing:9.829765pt;}
.ws4e{word-spacing:9.882899pt;}
.ws18{word-spacing:10.042301pt;}
.ws4c{word-spacing:10.244235pt;}
.ws31{word-spacing:10.520506pt;}
.ws13{word-spacing:10.584196pt;}
.wsa{word-spacing:10.584293pt;}
.ws5d{word-spacing:10.626800pt;}
.ws59{word-spacing:11.370647pt;}
.ws30{word-spacing:11.476915pt;}
.ws17{word-spacing:12.008254pt;}
.ws1b{word-spacing:14.293010pt;}
.ws5b{word-spacing:14.920027pt;}
.ws3b{word-spacing:15.887026pt;}
.ws5a{word-spacing:15.940200pt;}
.ws1f{word-spacing:17.215416pt;}
.ws2b{word-spacing:17.640444pt;}
.ws24{word-spacing:17.682995pt;}
.ws1{word-spacing:17.686111pt;}
.ws4b{word-spacing:20.828528pt;}
.ws14{word-spacing:26.513799pt;}
.ws4a{word-spacing:546.332400pt;}
.ws49{word-spacing:759.017285pt;}
._6{margin-left:-6.376080pt;}
._5{margin-left:-5.440960pt;}
._4{margin-left:-4.250769pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.977681pt;}
._9{width:1.748100pt;}
._3{width:3.230547pt;}
._12{width:14.006084pt;}
._c{width:15.217562pt;}
._d{width:16.811590pt;}
._13{width:18.586218pt;}
._f{width:20.201490pt;}
._10{width:22.599951pt;}
._a{width:26.226874pt;}
._8{width:33.426739pt;}
._b{width:34.864413pt;}
._7{width:40.573303pt;}
._14{width:49.255094pt;}
._11{width:53.539476pt;}
._e{width:556.950097pt;}
.fsd{font-size:31.880533pt;}
.fs10{font-size:36.131200pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.289067pt;}
.fse{font-size:47.820800pt;}
.fsc{font-size:52.496000pt;}
.fsf{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.074133pt;}
.fs6{font-size:85.014400pt;}
.fs9{font-size:90.328000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y4c{bottom:47.156000pt;}
.y5{bottom:59.133337pt;}
.y4b{bottom:60.440000pt;}
.y4a{bottom:77.708000pt;}
.y7c{bottom:78.372000pt;}
.y8c{bottom:78.373333pt;}
.y4{bottom:86.333337pt;}
.y49{bottom:90.992000pt;}
.y8b{bottom:94.070667pt;}
.y7b{bottom:94.228000pt;}
.y48{bottom:104.276000pt;}
.y8a{bottom:109.768000pt;}
.y7a{bottom:110.082667pt;}
.y22{bottom:123.790666pt;}
.y89{bottom:125.465333pt;}
.y79{bottom:125.938667pt;}
.y47{bottom:128.850667pt;}
.y88{bottom:141.162667pt;}
.y78{bottom:141.793333pt;}
.y46{bottom:145.526667pt;}
.y77{bottom:157.649333pt;}
.y87{bottom:164.344000pt;}
.y45{bottom:170.413333pt;}
.y76{bottom:173.504000pt;}
.y19{bottom:175.052000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y44{bottom:186.596000pt;}
.y75{bottom:189.360000pt;}
.y86{bottom:194.766667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y43{bottom:202.778667pt;}
.y74{bottom:205.214667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y85{bottom:210.464000pt;}
.y42{bottom:218.961333pt;}
.y84{bottom:226.161333pt;}
.y73{bottom:228.870667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y41{bottom:235.144000pt;}
.y83{bottom:241.858667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y40{bottom:251.326667pt;}
.y72{bottom:252.526667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y82{bottom:257.556000pt;}
.y3f{bottom:267.509333pt;}
.y71{bottom:268.381333pt;}
.y81{bottom:273.253333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y3e{bottom:283.692000pt;}
.y70{bottom:284.237333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y80{bottom:288.950667pt;}
.y3d{bottom:299.874667pt;}
.y6f{bottom:300.092000pt;}
.y10{bottom:309.452000pt;}
.y7f{bottom:312.132000pt;}
.y6e{bottom:315.948000pt;}
.y3c{bottom:325.482667pt;}
.y6d{bottom:331.802667pt;}
.yf{bottom:343.809333pt;}
.y6c{bottom:347.658667pt;}
.y7e{bottom:357.296000pt;}
.ye{bottom:362.706666pt;}
.y6b{bottom:363.513333pt;}
.y7d{bottom:370.578667pt;}
.y6a{bottom:379.369333pt;}
.y3b{bottom:381.288000pt;}
.y69{bottom:395.224000pt;}
.y68{bottom:418.880000pt;}
.y3a{bottom:420.238667pt;}
.y39{bottom:442.820000pt;}
.yd{bottom:446.990669pt;}
.y67{bottom:450.250667pt;}
.y38{bottom:457.432000pt;}
.y37{bottom:457.817333pt;}
.yc{bottom:462.990669pt;}
.y66{bottom:466.106667pt;}
.y36{bottom:472.044000pt;}
.yb{bottom:478.990666pt;}
.y65{bottom:481.961333pt;}
.y35{bottom:486.656000pt;}
.ya{bottom:494.990666pt;}
.y64{bottom:497.817333pt;}
.y34{bottom:501.268000pt;}
.y63{bottom:513.672000pt;}
.y33{bottom:515.880000pt;}
.y62{bottom:529.528000pt;}
.y32{bottom:530.492000pt;}
.y31{bottom:545.104000pt;}
.y61{bottom:545.382667pt;}
.y60{bottom:561.238667pt;}
.y30{bottom:567.685333pt;}
.y9{bottom:573.786667pt;}
.y5f{bottom:577.093333pt;}
.y8{bottom:592.685334pt;}
.y5e{bottom:592.949333pt;}
.y5d{bottom:608.804000pt;}
.y2f{bottom:623.266667pt;}
.y5c{bottom:624.660000pt;}
.y7{bottom:645.598667pt;}
.y2e{bottom:646.206667pt;}
.y5b{bottom:648.316000pt;}
.y2d{bottom:659.974667pt;}
.y3{bottom:668.977329pt;}
.y2c{bottom:673.742667pt;}
.y99{bottom:678.073333pt;}
.y5a{bottom:679.686667pt;}
.y98{bottom:691.357333pt;}
.y2b{bottom:693.218667pt;}
.y59{bottom:695.541333pt;}
.y97{bottom:704.640000pt;}
.y58{bottom:711.397333pt;}
.y96{bottom:717.924000pt;}
.y2a{bottom:726.530667pt;}
.y57{bottom:727.252000pt;}
.y95{bottom:731.208000pt;}
.y56{bottom:743.108000pt;}
.y94{bottom:744.490667pt;}
.y29{bottom:753.097333pt;}
.y93{bottom:757.774667pt;}
.y55{bottom:758.962667pt;}
.y92{bottom:771.058667pt;}
.y2{bottom:781.661334pt;}
.y54{bottom:782.618667pt;}
.y91{bottom:784.341333pt;}
.y28{bottom:785.628000pt;}
.y27{bottom:801.568000pt;}
.y90{bottom:805.594667pt;}
.y53{bottom:813.989333pt;}
.y52{bottom:829.845333pt;}
.y26{bottom:837.025333pt;}
.y8f{bottom:837.476000pt;}
.y51{bottom:845.700000pt;}
.y25{bottom:850.308000pt;}
.y8e{bottom:853.416000pt;}
.y1{bottom:859.312000pt;}
.y50{bottom:861.556000pt;}
.y8d{bottom:869.356000pt;}
.y4f{bottom:877.410667pt;}
.y4e{bottom:893.266667pt;}
.y24{bottom:897.133333pt;}
.y23{bottom:920.260000pt;}
.y4d{bottom:922.490667pt;}
.h10{height:21.933807pt;}
.h15{height:24.533085pt;}
.h7{height:28.560000pt;}
.hc{height:29.244954pt;}
.h17{height:29.372475pt;}
.h16{height:30.615620pt;}
.h12{height:32.900710pt;}
.h11{height:33.044173pt;}
.ha{height:34.473730pt;}
.h14{height:36.556100pt;}
.h13{height:36.715502pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:43.867614pt;}
.h2{height:48.960000pt;}
.he{height:62.145664pt;}
.hb{height:64.100858pt;}
.hf{height:66.028784pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:990.000000pt;}
.h8{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:49.481333pt;}
.x1a{left:51.245333pt;}
.x11{left:54.794667pt;}
.x13{left:58.118667pt;}
.x9{left:64.322667pt;}
.x18{left:65.421333pt;}
.x12{left:70.734667pt;}
.x14{left:74.720000pt;}
.xa{left:76.484000pt;}
.x19{left:81.361333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:103.794667pt;}
.xb{left:118.440000pt;}
.xe{left:174.464000pt;}
.xf{left:175.478667pt;}
.x4{left:180.874667pt;}
.xd{left:187.652000pt;}
.xc{left:198.640000pt;}
.x16{left:204.661333pt;}
.x5{left:231.902667pt;}
.x10{left:245.466667pt;}
.x7{left:268.062667pt;}
.x6{left:282.322667pt;}
.x3{left:404.408000pt;}
.x8{left:550.033333pt;}
}




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