
    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_c20811e3eaf72d49fc2fbc58.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_4fd6f8b5d59fa1b086e2d83d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_88b6b9e3746491836cf27f99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_471bb09d649278413c02c106.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_d5f73702482280da31246f0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e24df9468644cd28a761b27b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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);}
.v2{vertical-align:-15.114000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.109200px;}
.ls26{letter-spacing:-0.266178px;}
.ls13{letter-spacing:-0.223014px;}
.ls32{letter-spacing:-0.215820px;}
.ls33{letter-spacing:-0.208626px;}
.ls31{letter-spacing:-0.187044px;}
.ls2a{letter-spacing:-0.136686px;}
.ls1e{letter-spacing:-0.129492px;}
.ls2c{letter-spacing:-0.115104px;}
.ls24{letter-spacing:-0.107910px;}
.ls25{letter-spacing:-0.100716px;}
.ls1f{letter-spacing:-0.093522px;}
.ls19{letter-spacing:-0.086328px;}
.ls15{letter-spacing:-0.079134px;}
.ls10{letter-spacing:-0.071940px;}
.ls14{letter-spacing:-0.064746px;}
.ls12{letter-spacing:-0.057552px;}
.ls1d{letter-spacing:-0.050358px;}
.ls11{letter-spacing:-0.043164px;}
.lse{letter-spacing:-0.035970px;}
.lsf{letter-spacing:-0.028776px;}
.ls17{letter-spacing:-0.021582px;}
.lsb{letter-spacing:-0.014388px;}
.ls18{letter-spacing:-0.007194px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.007194px;}
.ls5{letter-spacing:0.014388px;}
.ls8{letter-spacing:0.021582px;}
.ls0{letter-spacing:0.028776px;}
.ls3{letter-spacing:0.035970px;}
.ls30{letter-spacing:0.043164px;}
.ls23{letter-spacing:0.050358px;}
.lsc{letter-spacing:0.057552px;}
.ls7{letter-spacing:0.064746px;}
.ls2e{letter-spacing:0.079134px;}
.ls2f{letter-spacing:0.086328px;}
.ls6{letter-spacing:0.100716px;}
.ls34{letter-spacing:0.107910px;}
.ls22{letter-spacing:0.129492px;}
.ls1a{letter-spacing:0.143880px;}
.ls29{letter-spacing:0.158268px;}
.lsd{letter-spacing:0.358117px;}
.ls1c{letter-spacing:0.661848px;}
.ls21{letter-spacing:0.719400px;}
.ls1b{letter-spacing:0.740982px;}
.ls16{letter-spacing:9.352200px;}
.ls2d{letter-spacing:15.107400px;}
.ls2b{letter-spacing:35.250600px;}
.ls27{letter-spacing:63.963893px;}
.ls28{letter-spacing:80.443908px;}
.ls9{letter-spacing:83.387093px;}
.ls20{letter-spacing:99.867108px;}
.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;}
}
.ws55{word-spacing:-75.824760px;}
.ws30{word-spacing:-59.710200px;}
.ws61{word-spacing:-55.681560px;}
.ws12{word-spacing:-49.926360px;}
.ws1d{word-spacing:-41.315142px;}
.ws46{word-spacing:-41.293560px;}
.ws1e{word-spacing:-41.236008px;}
.ws3c{word-spacing:-41.070546px;}
.ws7a{word-spacing:-41.048964px;}
.ws6a{word-spacing:-41.020188px;}
.ws45{word-spacing:-40.998606px;}
.ws0{word-spacing:-40.991412px;}
.ws22{word-spacing:-40.984218px;}
.ws21{word-spacing:-40.962636px;}
.ws49{word-spacing:-40.955442px;}
.ws52{word-spacing:-40.948248px;}
.ws6b{word-spacing:-40.797174px;}
.wse{word-spacing:-40.782786px;}
.ws5b{word-spacing:-40.732428px;}
.ws19{word-spacing:-40.718040px;}
.ws47{word-spacing:-40.703652px;}
.ws77{word-spacing:-40.660488px;}
.ws74{word-spacing:-40.653294px;}
.ws1b{word-spacing:-40.638906px;}
.ws1{word-spacing:-40.631712px;}
.ws69{word-spacing:-40.624518px;}
.ws9{word-spacing:-40.610130px;}
.ws3{word-spacing:-40.602936px;}
.wsb{word-spacing:-40.588548px;}
.ws7{word-spacing:-40.581354px;}
.wsa{word-spacing:-40.574160px;}
.ws15{word-spacing:-40.566966px;}
.ws5{word-spacing:-40.559772px;}
.ws13{word-spacing:-40.552578px;}
.ws8{word-spacing:-40.545384px;}
.ws6{word-spacing:-40.538190px;}
.wsc{word-spacing:-40.530996px;}
.ws2b{word-spacing:-40.523802px;}
.wsd{word-spacing:-40.516608px;}
.ws1c{word-spacing:-40.509414px;}
.ws14{word-spacing:-40.502220px;}
.ws11{word-spacing:-40.495026px;}
.ws16{word-spacing:-40.487832px;}
.ws60{word-spacing:-40.480638px;}
.ws40{word-spacing:-40.473444px;}
.ws3b{word-spacing:-40.466250px;}
.ws5c{word-spacing:-40.459056px;}
.ws53{word-spacing:-40.444668px;}
.ws51{word-spacing:-40.437474px;}
.ws64{word-spacing:-40.387116px;}
.ws48{word-spacing:-40.307982px;}
.ws1a{word-spacing:-28.545792px;}
.ws73{word-spacing:-27.610572px;}
.ws72{word-spacing:-27.538632px;}
.ws4a{word-spacing:-27.006276px;}
.ws31{word-spacing:-26.819232px;}
.ws32{word-spacing:-26.718516px;}
.ws44{word-spacing:-26.258100px;}
.ws4e{word-spacing:-26.142996px;}
.ws4d{word-spacing:-26.099832px;}
.ws43{word-spacing:-26.013504px;}
.ws5f{word-spacing:-25.409208px;}
.ws5e{word-spacing:-25.351656px;}
.ws3d{word-spacing:-25.337268px;}
.ws3e{word-spacing:-25.286910px;}
.ws67{word-spacing:-23.884080px;}
.ws68{word-spacing:-23.581932px;}
.ws2d{word-spacing:-23.251008px;}
.ws59{word-spacing:-23.207844px;}
.ws2c{word-spacing:-23.179068px;}
.ws34{word-spacing:-22.574772px;}
.ws5a{word-spacing:-22.517220px;}
.ws33{word-spacing:-22.474056px;}
.ws79{word-spacing:-21.855372px;}
.ws78{word-spacing:-21.840984px;}
.ws1f{word-spacing:-21.769044px;}
.ws75{word-spacing:-21.150360px;}
.ws76{word-spacing:-21.121584px;}
.ws41{word-spacing:-21.107196px;}
.ws20{word-spacing:-21.020868px;}
.ws38{word-spacing:-21.006480px;}
.ws42{word-spacing:-20.963316px;}
.ws27{word-spacing:-20.402184px;}
.ws26{word-spacing:-20.387796px;}
.ws3a{word-spacing:-20.373408px;}
.ws39{word-spacing:-20.301468px;}
.ws2e{word-spacing:-19.625232px;}
.ws3f{word-spacing:-19.567680px;}
.ws2f{word-spacing:-18.862668px;}
.ws4c{word-spacing:-18.243984px;}
.ws4b{word-spacing:-18.128880px;}
.ws28{word-spacing:-18.049746px;}
.ws71{word-spacing:-17.538972px;}
.ws70{word-spacing:-17.524584px;}
.ws2a{word-spacing:-16.877124px;}
.ws66{word-spacing:-16.762020px;}
.ws29{word-spacing:-16.747632px;}
.ws65{word-spacing:-16.690080px;}
.ws6c{word-spacing:-16.330380px;}
.ws6d{word-spacing:-16.215276px;}
.ws2{word-spacing:-15.776298px;}
.ws4{word-spacing:-15.418181px;}
.ws62{word-spacing:-13.251348px;}
.ws63{word-spacing:-13.193796px;}
.ws17{word-spacing:-13.179408px;}
.ws18{word-spacing:-13.093080px;}
.ws10{word-spacing:-10.229868px;}
.wsf{word-spacing:-10.215480px;}
.ws6e{word-spacing:-9.568020px;}
.ws6f{word-spacing:-9.524856px;}
.ws58{word-spacing:-5.524992px;}
.ws54{word-spacing:-5.237232px;}
.ws56{word-spacing:-5.194068px;}
.ws57{word-spacing:-5.179680px;}
.ws23{word-spacing:-3.107808px;}
.ws24{word-spacing:-3.064644px;}
.ws25{word-spacing:-2.906376px;}
.ws35{word-spacing:0.000000px;}
.ws4f{word-spacing:4.719264px;}
.ws50{word-spacing:4.776816px;}
.ws36{word-spacing:20.891376px;}
.ws5d{word-spacing:26.430756px;}
.ws37{word-spacing:41.020188px;}
._14{margin-left:-36.495162px;}
._13{margin-left:-35.185854px;}
._15{margin-left:-33.898128px;}
._18{margin-left:-15.373578px;}
._17{margin-left:-13.970748px;}
._4{margin-left:-10.324124px;}
._3{margin-left:-9.281625px;}
._5{margin-left:-8.207620px;}
._10{margin-left:-4.356833px;}
._a{margin-left:-2.765227px;}
._0{margin-left:-1.293555px;}
._1{width:1.309308px;}
._8{width:2.899182px;}
._9{width:4.596966px;}
._b{width:5.798364px;}
._d{width:7.215582px;}
._f{width:8.376694px;}
._2{width:9.388170px;}
._6{width:10.819776px;}
._7{width:11.898876px;}
._11{width:13.366452px;}
._16{width:16.282900px;}
._c{width:18.618072px;}
._e{width:21.941700px;}
._19{width:24.941598px;}
._1a{width:32.207538px;}
._12{width:36.433294px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:27.337200px;}
.fs3{font-size:59.710200px;}
.fs0{font-size:66.184200px;}
.fs1{font-size:71.940000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.878726px;}
.y66{bottom:116.978400px;}
.y7f{bottom:116.978700px;}
.y35{bottom:116.978850px;}
.y65{bottom:137.661150px;}
.y34{bottom:137.661600px;}
.y64{bottom:158.343900px;}
.y33{bottom:158.344350px;}
.y9f{bottom:179.025150px;}
.y32{bottom:179.025750px;}
.y7e{bottom:179.026350px;}
.y63{bottom:179.026650px;}
.y31{bottom:199.708500px;}
.y7d{bottom:199.709250px;}
.y62{bottom:199.709400px;}
.y9e{bottom:220.390650px;}
.y30{bottom:220.391250px;}
.y7c{bottom:220.392000px;}
.y61{bottom:220.392150px;}
.y9d{bottom:241.073400px;}
.y2f{bottom:241.074000px;}
.y7b{bottom:241.074750px;}
.y60{bottom:241.074900px;}
.y2e{bottom:261.755850px;}
.y9c{bottom:261.756150px;}
.y7a{bottom:261.757500px;}
.y5f{bottom:261.757650px;}
.y2d{bottom:282.438600px;}
.y9b{bottom:282.438900px;}
.y5e{bottom:282.440400px;}
.y79{bottom:282.441900px;}
.y2c{bottom:303.121350px;}
.y9a{bottom:303.121650px;}
.y5d{bottom:303.123150px;}
.y78{bottom:303.124650px;}
.y2b{bottom:323.804100px;}
.y99{bottom:323.804400px;}
.y5c{bottom:323.805900px;}
.y77{bottom:323.806650px;}
.y2a{bottom:344.486850px;}
.y98{bottom:344.487150px;}
.y5b{bottom:344.488650px;}
.y29{bottom:365.169600px;}
.y97{bottom:365.169900px;}
.y5a{bottom:365.172150px;}
.y28{bottom:385.852350px;}
.y96{bottom:385.852650px;}
.y59{bottom:385.854300px;}
.y27{bottom:406.535100px;}
.y95{bottom:406.535400px;}
.y76{bottom:406.537200px;}
.y58{bottom:406.537800px;}
.y26{bottom:427.217850px;}
.y94{bottom:427.218150px;}
.y75{bottom:427.219950px;}
.y57{bottom:427.220700px;}
.y25{bottom:447.900600px;}
.y93{bottom:447.900900px;}
.y56{bottom:447.903450px;}
.y24{bottom:468.583350px;}
.y92{bottom:468.583650px;}
.y55{bottom:468.585450px;}
.y23{bottom:489.266100px;}
.y91{bottom:489.266400px;}
.y54{bottom:489.267450px;}
.y22{bottom:509.948850px;}
.y90{bottom:509.949150px;}
.y74{bottom:509.950350px;}
.y53{bottom:509.950950px;}
.y21{bottom:530.631600px;}
.y8f{bottom:530.631900px;}
.y52{bottom:530.633100px;}
.y20{bottom:551.314350px;}
.y8e{bottom:551.314650px;}
.y51{bottom:551.315100px;}
.y1f{bottom:571.997100px;}
.y8d{bottom:571.997400px;}
.y73{bottom:571.997850px;}
.y50{bottom:571.998000px;}
.y1e{bottom:592.679850px;}
.y72{bottom:592.680600px;}
.y4f{bottom:592.680750px;}
.y1d{bottom:613.362600px;}
.y8c{bottom:613.362900px;}
.y4e{bottom:613.363500px;}
.y1c{bottom:634.045350px;}
.y8b{bottom:634.045650px;}
.y4d{bottom:634.046250px;}
.y1b{bottom:654.728100px;}
.y71{bottom:654.728250px;}
.y4c{bottom:654.729000px;}
.y1a{bottom:675.410850px;}
.y8a{bottom:675.411150px;}
.y4b{bottom:675.411750px;}
.y19{bottom:696.093600px;}
.y89{bottom:696.093900px;}
.y4a{bottom:696.094650px;}
.y18{bottom:716.776350px;}
.y88{bottom:716.776650px;}
.y49{bottom:716.777400px;}
.y17{bottom:737.459100px;}
.y87{bottom:737.459400px;}
.y48{bottom:737.460150px;}
.y16{bottom:758.141850px;}
.y47{bottom:758.142900px;}
.y15{bottom:778.824600px;}
.y46{bottom:778.825800px;}
.y86{bottom:778.826550px;}
.y14{bottom:799.507350px;}
.y85{bottom:799.507800px;}
.y45{bottom:799.508550px;}
.y13{bottom:820.190100px;}
.y84{bottom:820.190550px;}
.y44{bottom:820.190700px;}
.y70{bottom:820.191450px;}
.y12{bottom:840.872850px;}
.y43{bottom:840.873450px;}
.y6f{bottom:840.874200px;}
.y11{bottom:861.555600px;}
.y42{bottom:861.556200px;}
.y6e{bottom:861.556950px;}
.y10{bottom:882.238350px;}
.y41{bottom:882.239100px;}
.y6d{bottom:882.239700px;}
.yf{bottom:902.921100px;}
.y40{bottom:902.921850px;}
.y6c{bottom:923.603700px;}
.ye{bottom:923.603850px;}
.y3f{bottom:923.604600px;}
.yd{bottom:944.286600px;}
.y3e{bottom:944.287350px;}
.y3d{bottom:964.969050px;}
.y6b{bottom:964.969350px;}
.yc{bottom:968.746350px;}
.yb{bottom:985.651500px;}
.y3c{bottom:985.651800px;}
.y83{bottom:985.652250px;}
.y6a{bottom:985.652850px;}
.ya{bottom:1006.334250px;}
.y3b{bottom:1006.334550px;}
.y82{bottom:1006.335000px;}
.y69{bottom:1027.017000px;}
.y3a{bottom:1027.017300px;}
.y81{bottom:1027.017750px;}
.y9{bottom:1030.795500px;}
.y8{bottom:1047.699750px;}
.y39{bottom:1047.700050px;}
.y68{bottom:1047.700500px;}
.y7{bottom:1068.381900px;}
.y38{bottom:1068.382800px;}
.y67{bottom:1068.383100px;}
.y80{bottom:1089.064650px;}
.y37{bottom:1089.065550px;}
.y6{bottom:1089.065850px;}
.y36{bottom:1109.748300px;}
.y5{bottom:1109.748600px;}
.y4{bottom:1130.431350px;}
.y3{bottom:1151.114100px;}
.y1{bottom:1173.055650px;}
.h1{height:44.112028px;}
.h5{height:48.992689px;}
.h6{height:48.998689px;}
.h2{height:63.895928px;}
.h3{height:64.106689px;}
.h4{height:64.109089px;}
.h7{height:70.570049px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:106.290900px;}
.x8{left:108.988650px;}
.xf{left:111.326700px;}
.xd{left:116.902200px;}
.x4{left:135.246750px;}
.x10{left:138.304350px;}
.x11{left:143.160150px;}
.x6{left:146.757150px;}
.xe{left:148.735650px;}
.x9{left:154.671300px;}
.xc{left:159.347250px;}
.x12{left:170.137800px;}
.x14{left:182.547450px;}
.x3{left:183.806250px;}
.x5{left:194.234700px;}
.x2{left:196.755450px;}
.x13{left:198.194400px;}
.xb{left:220.316400px;}
.xa{left:309.162300px;}
.x7{left:403.403100px;}
@media print{
.v2{vertical-align:-13.434667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.430400pt;}
.ls26{letter-spacing:-0.236603pt;}
.ls13{letter-spacing:-0.198235pt;}
.ls32{letter-spacing:-0.191840pt;}
.ls33{letter-spacing:-0.185445pt;}
.ls31{letter-spacing:-0.166261pt;}
.ls2a{letter-spacing:-0.121499pt;}
.ls1e{letter-spacing:-0.115104pt;}
.ls2c{letter-spacing:-0.102315pt;}
.ls24{letter-spacing:-0.095920pt;}
.ls25{letter-spacing:-0.089525pt;}
.ls1f{letter-spacing:-0.083131pt;}
.ls19{letter-spacing:-0.076736pt;}
.ls15{letter-spacing:-0.070341pt;}
.ls10{letter-spacing:-0.063947pt;}
.ls14{letter-spacing:-0.057552pt;}
.ls12{letter-spacing:-0.051157pt;}
.ls1d{letter-spacing:-0.044763pt;}
.ls11{letter-spacing:-0.038368pt;}
.lse{letter-spacing:-0.031973pt;}
.lsf{letter-spacing:-0.025579pt;}
.ls17{letter-spacing:-0.019184pt;}
.lsb{letter-spacing:-0.012789pt;}
.ls18{letter-spacing:-0.006395pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.006395pt;}
.ls5{letter-spacing:0.012789pt;}
.ls8{letter-spacing:0.019184pt;}
.ls0{letter-spacing:0.025579pt;}
.ls3{letter-spacing:0.031973pt;}
.ls30{letter-spacing:0.038368pt;}
.ls23{letter-spacing:0.044763pt;}
.lsc{letter-spacing:0.051157pt;}
.ls7{letter-spacing:0.057552pt;}
.ls2e{letter-spacing:0.070341pt;}
.ls2f{letter-spacing:0.076736pt;}
.ls6{letter-spacing:0.089525pt;}
.ls34{letter-spacing:0.095920pt;}
.ls22{letter-spacing:0.115104pt;}
.ls1a{letter-spacing:0.127893pt;}
.ls29{letter-spacing:0.140683pt;}
.lsd{letter-spacing:0.318327pt;}
.ls1c{letter-spacing:0.588309pt;}
.ls21{letter-spacing:0.639467pt;}
.ls1b{letter-spacing:0.658651pt;}
.ls16{letter-spacing:8.313067pt;}
.ls2d{letter-spacing:13.428800pt;}
.ls2b{letter-spacing:31.333867pt;}
.ls27{letter-spacing:56.856794pt;}
.ls28{letter-spacing:71.505696pt;}
.ls9{letter-spacing:74.121860pt;}
.ls20{letter-spacing:88.770763pt;}
.ws55{word-spacing:-67.399787pt;}
.ws30{word-spacing:-53.075733pt;}
.ws61{word-spacing:-49.494720pt;}
.ws12{word-spacing:-44.378987pt;}
.ws1d{word-spacing:-36.724571pt;}
.ws46{word-spacing:-36.705387pt;}
.ws1e{word-spacing:-36.654229pt;}
.ws3c{word-spacing:-36.507152pt;}
.ws7a{word-spacing:-36.487968pt;}
.ws6a{word-spacing:-36.462389pt;}
.ws45{word-spacing:-36.443205pt;}
.ws0{word-spacing:-36.436811pt;}
.ws22{word-spacing:-36.430416pt;}
.ws21{word-spacing:-36.411232pt;}
.ws49{word-spacing:-36.404837pt;}
.ws52{word-spacing:-36.398443pt;}
.ws6b{word-spacing:-36.264155pt;}
.wse{word-spacing:-36.251365pt;}
.ws5b{word-spacing:-36.206603pt;}
.ws19{word-spacing:-36.193813pt;}
.ws47{word-spacing:-36.181024pt;}
.ws77{word-spacing:-36.142656pt;}
.ws74{word-spacing:-36.136261pt;}
.ws1b{word-spacing:-36.123472pt;}
.ws1{word-spacing:-36.117077pt;}
.ws69{word-spacing:-36.110683pt;}
.ws9{word-spacing:-36.097893pt;}
.ws3{word-spacing:-36.091499pt;}
.wsb{word-spacing:-36.078709pt;}
.ws7{word-spacing:-36.072315pt;}
.wsa{word-spacing:-36.065920pt;}
.ws15{word-spacing:-36.059525pt;}
.ws5{word-spacing:-36.053131pt;}
.ws13{word-spacing:-36.046736pt;}
.ws8{word-spacing:-36.040341pt;}
.ws6{word-spacing:-36.033947pt;}
.wsc{word-spacing:-36.027552pt;}
.ws2b{word-spacing:-36.021157pt;}
.wsd{word-spacing:-36.014763pt;}
.ws1c{word-spacing:-36.008368pt;}
.ws14{word-spacing:-36.001973pt;}
.ws11{word-spacing:-35.995579pt;}
.ws16{word-spacing:-35.989184pt;}
.ws60{word-spacing:-35.982789pt;}
.ws40{word-spacing:-35.976395pt;}
.ws3b{word-spacing:-35.970000pt;}
.ws5c{word-spacing:-35.963605pt;}
.ws53{word-spacing:-35.950816pt;}
.ws51{word-spacing:-35.944421pt;}
.ws64{word-spacing:-35.899659pt;}
.ws48{word-spacing:-35.829317pt;}
.ws1a{word-spacing:-25.374037pt;}
.ws73{word-spacing:-24.542731pt;}
.ws72{word-spacing:-24.478784pt;}
.ws4a{word-spacing:-24.005579pt;}
.ws31{word-spacing:-23.839317pt;}
.ws32{word-spacing:-23.749792pt;}
.ws44{word-spacing:-23.340533pt;}
.ws4e{word-spacing:-23.238219pt;}
.ws4d{word-spacing:-23.199851pt;}
.ws43{word-spacing:-23.123115pt;}
.ws5f{word-spacing:-22.585963pt;}
.ws5e{word-spacing:-22.534805pt;}
.ws3d{word-spacing:-22.522016pt;}
.ws3e{word-spacing:-22.477253pt;}
.ws67{word-spacing:-21.230293pt;}
.ws68{word-spacing:-20.961717pt;}
.ws2d{word-spacing:-20.667563pt;}
.ws59{word-spacing:-20.629195pt;}
.ws2c{word-spacing:-20.603616pt;}
.ws34{word-spacing:-20.066464pt;}
.ws5a{word-spacing:-20.015307pt;}
.ws33{word-spacing:-19.976939pt;}
.ws79{word-spacing:-19.426997pt;}
.ws78{word-spacing:-19.414208pt;}
.ws1f{word-spacing:-19.350261pt;}
.ws75{word-spacing:-18.800320pt;}
.ws76{word-spacing:-18.774741pt;}
.ws41{word-spacing:-18.761952pt;}
.ws20{word-spacing:-18.685216pt;}
.ws38{word-spacing:-18.672427pt;}
.ws42{word-spacing:-18.634059pt;}
.ws27{word-spacing:-18.135275pt;}
.ws26{word-spacing:-18.122485pt;}
.ws3a{word-spacing:-18.109696pt;}
.ws39{word-spacing:-18.045749pt;}
.ws2e{word-spacing:-17.444651pt;}
.ws3f{word-spacing:-17.393493pt;}
.ws2f{word-spacing:-16.766816pt;}
.ws4c{word-spacing:-16.216875pt;}
.ws4b{word-spacing:-16.114560pt;}
.ws28{word-spacing:-16.044219pt;}
.ws71{word-spacing:-15.590197pt;}
.ws70{word-spacing:-15.577408pt;}
.ws2a{word-spacing:-15.001888pt;}
.ws66{word-spacing:-14.899573pt;}
.ws29{word-spacing:-14.886784pt;}
.ws65{word-spacing:-14.835627pt;}
.ws6c{word-spacing:-14.515893pt;}
.ws6d{word-spacing:-14.413579pt;}
.ws2{word-spacing:-14.023376pt;}
.ws4{word-spacing:-13.705050pt;}
.ws62{word-spacing:-11.778976pt;}
.ws63{word-spacing:-11.727819pt;}
.ws17{word-spacing:-11.715029pt;}
.ws18{word-spacing:-11.638293pt;}
.ws10{word-spacing:-9.093216pt;}
.wsf{word-spacing:-9.080427pt;}
.ws6e{word-spacing:-8.504907pt;}
.ws6f{word-spacing:-8.466539pt;}
.ws58{word-spacing:-4.911104pt;}
.ws54{word-spacing:-4.655317pt;}
.ws56{word-spacing:-4.616949pt;}
.ws57{word-spacing:-4.604160pt;}
.ws23{word-spacing:-2.762496pt;}
.ws24{word-spacing:-2.724128pt;}
.ws25{word-spacing:-2.583445pt;}
.ws35{word-spacing:0.000000pt;}
.ws4f{word-spacing:4.194901pt;}
.ws50{word-spacing:4.246059pt;}
.ws36{word-spacing:18.570112pt;}
.ws5d{word-spacing:23.494005pt;}
.ws37{word-spacing:36.462389pt;}
._14{margin-left:-32.440144pt;}
._13{margin-left:-31.276315pt;}
._15{margin-left:-30.131669pt;}
._18{margin-left:-13.665403pt;}
._17{margin-left:-12.418443pt;}
._4{margin-left:-9.176999pt;}
._3{margin-left:-8.250334pt;}
._5{margin-left:-7.295662pt;}
._10{margin-left:-3.872741pt;}
._a{margin-left:-2.457979pt;}
._0{margin-left:-1.149826pt;}
._1{width:1.163829pt;}
._8{width:2.577051pt;}
._9{width:4.086192pt;}
._b{width:5.154101pt;}
._d{width:6.413851pt;}
._f{width:7.445950pt;}
._2{width:8.345040pt;}
._6{width:9.617579pt;}
._7{width:10.576779pt;}
._11{width:11.881291pt;}
._16{width:14.473689pt;}
._c{width:16.549397pt;}
._e{width:19.503733pt;}
._19{width:22.170309pt;}
._1a{width:28.628923pt;}
._12{width:32.385150pt;}
.fs2{font-size:24.299733pt;}
.fs3{font-size:53.075733pt;}
.fs0{font-size:58.830400pt;}
.fs1{font-size:63.946667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.892201pt;}
.y66{bottom:103.980800pt;}
.y7f{bottom:103.981067pt;}
.y35{bottom:103.981200pt;}
.y65{bottom:122.365467pt;}
.y34{bottom:122.365867pt;}
.y64{bottom:140.750133pt;}
.y33{bottom:140.750533pt;}
.y9f{bottom:159.133467pt;}
.y32{bottom:159.134000pt;}
.y7e{bottom:159.134533pt;}
.y63{bottom:159.134800pt;}
.y31{bottom:177.518667pt;}
.y7d{bottom:177.519333pt;}
.y62{bottom:177.519467pt;}
.y9e{bottom:195.902800pt;}
.y30{bottom:195.903333pt;}
.y7c{bottom:195.904000pt;}
.y61{bottom:195.904133pt;}
.y9d{bottom:214.287467pt;}
.y2f{bottom:214.288000pt;}
.y7b{bottom:214.288667pt;}
.y60{bottom:214.288800pt;}
.y2e{bottom:232.671867pt;}
.y9c{bottom:232.672133pt;}
.y7a{bottom:232.673333pt;}
.y5f{bottom:232.673467pt;}
.y2d{bottom:251.056533pt;}
.y9b{bottom:251.056800pt;}
.y5e{bottom:251.058133pt;}
.y79{bottom:251.059467pt;}
.y2c{bottom:269.441200pt;}
.y9a{bottom:269.441467pt;}
.y5d{bottom:269.442800pt;}
.y78{bottom:269.444133pt;}
.y2b{bottom:287.825867pt;}
.y99{bottom:287.826133pt;}
.y5c{bottom:287.827467pt;}
.y77{bottom:287.828133pt;}
.y2a{bottom:306.210533pt;}
.y98{bottom:306.210800pt;}
.y5b{bottom:306.212133pt;}
.y29{bottom:324.595200pt;}
.y97{bottom:324.595467pt;}
.y5a{bottom:324.597467pt;}
.y28{bottom:342.979867pt;}
.y96{bottom:342.980133pt;}
.y59{bottom:342.981600pt;}
.y27{bottom:361.364533pt;}
.y95{bottom:361.364800pt;}
.y76{bottom:361.366400pt;}
.y58{bottom:361.366933pt;}
.y26{bottom:379.749200pt;}
.y94{bottom:379.749467pt;}
.y75{bottom:379.751067pt;}
.y57{bottom:379.751733pt;}
.y25{bottom:398.133867pt;}
.y93{bottom:398.134133pt;}
.y56{bottom:398.136400pt;}
.y24{bottom:416.518533pt;}
.y92{bottom:416.518800pt;}
.y55{bottom:416.520400pt;}
.y23{bottom:434.903200pt;}
.y91{bottom:434.903467pt;}
.y54{bottom:434.904400pt;}
.y22{bottom:453.287867pt;}
.y90{bottom:453.288133pt;}
.y74{bottom:453.289200pt;}
.y53{bottom:453.289733pt;}
.y21{bottom:471.672533pt;}
.y8f{bottom:471.672800pt;}
.y52{bottom:471.673867pt;}
.y20{bottom:490.057200pt;}
.y8e{bottom:490.057467pt;}
.y51{bottom:490.057867pt;}
.y1f{bottom:508.441867pt;}
.y8d{bottom:508.442133pt;}
.y73{bottom:508.442533pt;}
.y50{bottom:508.442667pt;}
.y1e{bottom:526.826533pt;}
.y72{bottom:526.827200pt;}
.y4f{bottom:526.827333pt;}
.y1d{bottom:545.211200pt;}
.y8c{bottom:545.211467pt;}
.y4e{bottom:545.212000pt;}
.y1c{bottom:563.595867pt;}
.y8b{bottom:563.596133pt;}
.y4d{bottom:563.596667pt;}
.y1b{bottom:581.980533pt;}
.y71{bottom:581.980667pt;}
.y4c{bottom:581.981333pt;}
.y1a{bottom:600.365200pt;}
.y8a{bottom:600.365467pt;}
.y4b{bottom:600.366000pt;}
.y19{bottom:618.749867pt;}
.y89{bottom:618.750133pt;}
.y4a{bottom:618.750800pt;}
.y18{bottom:637.134533pt;}
.y88{bottom:637.134800pt;}
.y49{bottom:637.135467pt;}
.y17{bottom:655.519200pt;}
.y87{bottom:655.519467pt;}
.y48{bottom:655.520133pt;}
.y16{bottom:673.903867pt;}
.y47{bottom:673.904800pt;}
.y15{bottom:692.288533pt;}
.y46{bottom:692.289600pt;}
.y86{bottom:692.290267pt;}
.y14{bottom:710.673200pt;}
.y85{bottom:710.673600pt;}
.y45{bottom:710.674267pt;}
.y13{bottom:729.057867pt;}
.y84{bottom:729.058267pt;}
.y44{bottom:729.058400pt;}
.y70{bottom:729.059067pt;}
.y12{bottom:747.442533pt;}
.y43{bottom:747.443067pt;}
.y6f{bottom:747.443733pt;}
.y11{bottom:765.827200pt;}
.y42{bottom:765.827733pt;}
.y6e{bottom:765.828400pt;}
.y10{bottom:784.211867pt;}
.y41{bottom:784.212533pt;}
.y6d{bottom:784.213067pt;}
.yf{bottom:802.596533pt;}
.y40{bottom:802.597200pt;}
.y6c{bottom:820.981067pt;}
.ye{bottom:820.981200pt;}
.y3f{bottom:820.981867pt;}
.yd{bottom:839.365867pt;}
.y3e{bottom:839.366533pt;}
.y3d{bottom:857.750267pt;}
.y6b{bottom:857.750533pt;}
.yc{bottom:861.107867pt;}
.yb{bottom:876.134667pt;}
.y3c{bottom:876.134933pt;}
.y83{bottom:876.135333pt;}
.y6a{bottom:876.135867pt;}
.ya{bottom:894.519333pt;}
.y3b{bottom:894.519600pt;}
.y82{bottom:894.520000pt;}
.y69{bottom:912.904000pt;}
.y3a{bottom:912.904267pt;}
.y81{bottom:912.904667pt;}
.y9{bottom:916.262667pt;}
.y8{bottom:931.288667pt;}
.y39{bottom:931.288933pt;}
.y68{bottom:931.289333pt;}
.y7{bottom:949.672800pt;}
.y38{bottom:949.673600pt;}
.y67{bottom:949.673867pt;}
.y80{bottom:968.057467pt;}
.y37{bottom:968.058267pt;}
.y6{bottom:968.058533pt;}
.y36{bottom:986.442933pt;}
.y5{bottom:986.443200pt;}
.y4{bottom:1004.827867pt;}
.y3{bottom:1023.212533pt;}
.y1{bottom:1042.716133pt;}
.h1{height:39.210691pt;}
.h5{height:43.549057pt;}
.h6{height:43.554391pt;}
.h2{height:56.796380pt;}
.h3{height:56.983724pt;}
.h4{height:56.985857pt;}
.h7{height:62.728932pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:94.480800pt;}
.x8{left:96.878800pt;}
.xf{left:98.957067pt;}
.xd{left:103.913067pt;}
.x4{left:120.219333pt;}
.x10{left:122.937200pt;}
.x11{left:127.253467pt;}
.x6{left:130.450800pt;}
.xe{left:132.209467pt;}
.x9{left:137.485600pt;}
.xc{left:141.642000pt;}
.x12{left:151.233600pt;}
.x14{left:162.264400pt;}
.x3{left:163.383333pt;}
.x5{left:172.653067pt;}
.x2{left:174.893733pt;}
.x13{left:176.172800pt;}
.xb{left:195.836800pt;}
.xa{left:274.810933pt;}
.x7{left:358.580533pt;}
}




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