
    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_d0a7d05bbd166076d87fcac7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_47077e2c716ec79a343c5be3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_e1ad2b42b4499a70687c5767.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_444f804d530a3b01afaf35ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_11f5a90a1eef6f5a7f6a65c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_b21ec96bddd9cae400f1f992.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_7e25ac5d487f785a79934ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.310800px;}
.lsb{letter-spacing:-0.303000px;}
.ls16{letter-spacing:-0.240600px;}
.lsc{letter-spacing:-0.154800px;}
.ls5{letter-spacing:-0.132600px;}
.ls7{letter-spacing:-0.092400px;}
.ls12{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.030240px;}
.ls1e{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.038880px;}
.ls1b{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.lse{letter-spacing:0.175200px;}
.ls8{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.269760px;}
.ls13{letter-spacing:0.306000px;}
.ls14{letter-spacing:0.479400px;}
.ls10{letter-spacing:0.654000px;}
.ls1d{letter-spacing:0.660000px;}
.ls2{letter-spacing:1.026000px;}
.ls1a{letter-spacing:12.186720px;}
.ls19{letter-spacing:42.570720px;}
.lsf{letter-spacing:46.170720px;}
.ls15{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws3{word-spacing:-66.147600px;}
.wsf{word-spacing:-59.760000px;}
.ws8{word-spacing:-21.641760px;}
.ws9{word-spacing:-21.611520px;}
.ws0{word-spacing:-19.077120px;}
.ws5{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws7{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws12{word-spacing:-14.165760px;}
.ws11{word-spacing:-13.985160px;}
.wse{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.179360px;}
.ws13{word-spacing:-12.204000px;}
.ws14{word-spacing:-12.186000px;}
.wsc{word-spacing:0.000000px;}
._20{margin-left:-555.092160px;}
._21{margin-left:-548.992080px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._14{margin-left:-292.890240px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._1a{margin-left:-237.337200px;}
._19{margin-left:-220.314240px;}
._23{margin-left:-207.008640px;}
._11{margin-left:-202.290240px;}
._1b{margin-left:-199.946880px;}
._22{margin-left:-188.893440px;}
._29{margin-left:-176.502240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._26{margin-left:-161.365200px;}
._27{margin-left:-156.239040px;}
._b{margin-left:-153.774720px;}
._12{margin-left:-152.099040px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._28{margin-left:-143.281680px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-115.522560px;}
._1f{margin-left:-109.821120px;}
._25{margin-left:-103.052160px;}
._8{margin-left:-91.638240px;}
._1e{margin-left:-87.120000px;}
._15{margin-left:-81.979200px;}
._24{margin-left:-70.652160px;}
._17{margin-left:-66.703680px;}
._16{margin-left:-49.735920px;}
._18{margin-left:-48.703680px;}
._1d{margin-left:-31.528080px;}
._3f{margin-left:-8.370960px;}
._2b{margin-left:-7.302240px;}
._2c{margin-left:-5.685120px;}
._2a{margin-left:-4.349280px;}
._3a{margin-left:-3.286800px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._1c{width:1.236960px;}
._32{width:2.314800px;}
._2d{width:3.346560px;}
._33{width:5.040960px;}
._35{width:6.158880px;}
._2e{width:7.189920px;}
._2f{width:8.844480px;}
._30{width:9.910080px;}
._31{width:11.279040px;}
._38{width:12.294720px;}
._39{width:14.521680px;}
._3e{width:15.832080px;}
._3b{width:16.834320px;}
._3c{width:17.874720px;}
._3d{width:18.984960px;}
._37{width:21.258000px;}
._36{width:22.350240px;}
._34{width:28.744560px;}
._41{width:29.760480px;}
._40{width:31.045680px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.596000px;}
.ya6{bottom:91.296000px;}
.y32{bottom:97.596000px;}
.y64{bottom:100.476000px;}
.ya5{bottom:112.356000px;}
.y31{bottom:118.656000px;}
.y84{bottom:121.176000px;}
.y63{bottom:121.536000px;}
.ya4{bottom:133.416000px;}
.y30{bottom:139.716000px;}
.y83{bottom:142.236000px;}
.y62{bottom:142.596000px;}
.ya3{bottom:154.470000px;}
.y2f{bottom:160.770000px;}
.y82{bottom:163.290000px;}
.y61{bottom:163.650000px;}
.ya2{bottom:175.530000px;}
.y2e{bottom:181.830000px;}
.y81{bottom:184.350000px;}
.y60{bottom:184.710000px;}
.ya1{bottom:196.590000px;}
.y2d{bottom:202.890000px;}
.y80{bottom:205.410000px;}
.y5f{bottom:205.770000px;}
.ya0{bottom:217.650000px;}
.y2c{bottom:223.950000px;}
.y7f{bottom:226.470000px;}
.y5e{bottom:226.830000px;}
.y9f{bottom:238.710000px;}
.y2b{bottom:245.010000px;}
.y7e{bottom:247.530000px;}
.y5d{bottom:247.890000px;}
.y9e{bottom:259.770000px;}
.y2a{bottom:266.070000px;}
.y7d{bottom:268.590000px;}
.y5c{bottom:268.950000px;}
.y9d{bottom:280.830000px;}
.y29{bottom:287.130000px;}
.y7c{bottom:289.650000px;}
.y5b{bottom:290.010000px;}
.y9c{bottom:301.890000px;}
.y28{bottom:308.190000px;}
.y7b{bottom:310.710000px;}
.y5a{bottom:311.070000px;}
.y9b{bottom:322.950000px;}
.y27{bottom:329.295000px;}
.y7a{bottom:331.815000px;}
.y59{bottom:332.175000px;}
.y9a{bottom:344.055000px;}
.y26{bottom:350.355000px;}
.y79{bottom:352.875000px;}
.y58{bottom:353.235000px;}
.y99{bottom:365.115000px;}
.y25{bottom:371.415000px;}
.y78{bottom:373.935000px;}
.y57{bottom:383.295000px;}
.y98{bottom:386.175000px;}
.y24{bottom:392.475000px;}
.y77{bottom:394.995000px;}
.y56{bottom:404.355000px;}
.y97{bottom:407.235000px;}
.y23{bottom:413.535000px;}
.y76{bottom:416.055000px;}
.y55{bottom:425.415000px;}
.y96{bottom:428.295000px;}
.y22{bottom:434.595000px;}
.y75{bottom:437.115000px;}
.y54{bottom:446.475000px;}
.y95{bottom:449.355000px;}
.y21{bottom:455.655000px;}
.y74{bottom:458.175000px;}
.y94{bottom:470.415000px;}
.y53{bottom:476.535000px;}
.y20{bottom:476.715000px;}
.y73{bottom:479.955000px;}
.y93{bottom:491.475000px;}
.y52{bottom:497.595000px;}
.y1f{bottom:497.775000px;}
.y72{bottom:501.015000px;}
.y92{bottom:512.535000px;}
.y51{bottom:518.655000px;}
.y1e{bottom:518.835000px;}
.y71{bottom:522.255000px;}
.y91{bottom:533.595000px;}
.y50{bottom:539.715000px;}
.y1d{bottom:539.895000px;}
.y70{bottom:544.035000px;}
.y90{bottom:554.655000px;}
.y1c{bottom:560.955000px;}
.y6f{bottom:565.095000px;}
.y4f{bottom:569.775000px;}
.y8f{bottom:575.715000px;}
.y1b{bottom:582.015000px;}
.y6e{bottom:586.875000px;}
.y4e{bottom:590.835000px;}
.y8e{bottom:596.805000px;}
.y1a{bottom:603.105000px;}
.y6d{bottom:608.145000px;}
.y4d{bottom:611.925000px;}
.y8d{bottom:617.865000px;}
.y19{bottom:624.165000px;}
.y6c{bottom:629.925000px;}
.y4c{bottom:632.805000px;}
.y8c{bottom:638.925000px;}
.y18{bottom:645.225000px;}
.y6b{bottom:650.805000px;}
.y8b{bottom:659.805000px;}
.y4b{bottom:662.865000px;}
.y17{bottom:666.285000px;}
.y6a{bottom:671.865000px;}
.y8a{bottom:680.865000px;}
.y4a{bottom:683.925000px;}
.y16{bottom:687.345000px;}
.y69{bottom:692.925000px;}
.y89{bottom:701.925000px;}
.y49{bottom:704.985000px;}
.y15{bottom:708.405000px;}
.y68{bottom:713.985000px;}
.y88{bottom:722.985000px;}
.y48{bottom:726.045000px;}
.y14{bottom:729.465000px;}
.y67{bottom:735.045000px;}
.y87{bottom:744.045000px;}
.y13{bottom:750.525000px;}
.y47{bottom:756.105000px;}
.y86{bottom:765.105000px;}
.y12{bottom:771.585000px;}
.y46{bottom:777.165000px;}
.y85{bottom:786.165000px;}
.y11{bottom:792.645000px;}
.y45{bottom:798.225000px;}
.y66{bottom:807.225000px;}
.y10{bottom:813.705000px;}
.y44{bottom:819.285000px;}
.y65{bottom:828.285000px;}
.yf{bottom:834.765000px;}
.y43{bottom:849.345000px;}
.ye{bottom:855.825000px;}
.y42{bottom:870.450000px;}
.yd{bottom:874.230000px;}
.y41{bottom:891.510000px;}
.yc{bottom:897.450000px;}
.y40{bottom:912.570000px;}
.yb{bottom:918.510000px;}
.y3f{bottom:933.630000px;}
.ya{bottom:940.470000px;}
.y3e{bottom:954.690000px;}
.y9{bottom:960.090000px;}
.y3d{bottom:975.750000px;}
.y8{bottom:980.790000px;}
.y3c{bottom:996.810000px;}
.y7{bottom:1010.130000px;}
.y3b{bottom:1017.870000px;}
.y3a{bottom:1038.930000px;}
.y5{bottom:1049.010000px;}
.y39{bottom:1059.990000px;}
.y38{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y37{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y36{bottom:1123.170000px;}
.y35{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y34{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y33{bottom:1193.220000px;}
.h8{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:73.010742px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:80.999987px;}
.x8{left:108.035987px;}
.x5{left:183.449987px;}
.x3{left:286.274987px;}
.x2{left:350.534987px;}
.x4{left:425.774987px;}
.x1{left:478.544987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.276267pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls16{letter-spacing:-0.213867pt;}
.lsc{letter-spacing:-0.137600pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls7{letter-spacing:-0.082133pt;}
.ls12{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.026880pt;}
.ls1e{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.034560pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.lse{letter-spacing:0.155733pt;}
.ls8{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.239787pt;}
.ls13{letter-spacing:0.272000pt;}
.ls14{letter-spacing:0.426133pt;}
.ls10{letter-spacing:0.581333pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.912000pt;}
.ls1a{letter-spacing:10.832640pt;}
.ls19{letter-spacing:37.840640pt;}
.lsf{letter-spacing:41.040640pt;}
.ls15{letter-spacing:57.040640pt;}
.ws4{word-spacing:-58.880000pt;}
.ws3{word-spacing:-58.797867pt;}
.wsf{word-spacing:-53.120000pt;}
.ws8{word-spacing:-19.237120pt;}
.ws9{word-spacing:-19.210240pt;}
.ws0{word-spacing:-16.957440pt;}
.ws5{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws7{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.591787pt;}
.ws11{word-spacing:-12.431253pt;}
.wse{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.714987pt;}
.ws13{word-spacing:-10.848000pt;}
.ws14{word-spacing:-10.832000pt;}
.wsc{word-spacing:0.000000pt;}
._20{margin-left:-493.415253pt;}
._21{margin-left:-487.992960pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._14{margin-left:-260.346880pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._1a{margin-left:-210.966400pt;}
._19{margin-left:-195.834880pt;}
._23{margin-left:-184.007680pt;}
._11{margin-left:-179.813547pt;}
._1b{margin-left:-177.730560pt;}
._22{margin-left:-167.905280pt;}
._29{margin-left:-156.890880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._26{margin-left:-143.435733pt;}
._27{margin-left:-138.879147pt;}
._b{margin-left:-136.688640pt;}
._12{margin-left:-135.199147pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._28{margin-left:-127.361493pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-102.686720pt;}
._1f{margin-left:-97.618773pt;}
._25{margin-left:-91.601920pt;}
._8{margin-left:-81.456213pt;}
._1e{margin-left:-77.440000pt;}
._15{margin-left:-72.870400pt;}
._24{margin-left:-62.801920pt;}
._17{margin-left:-59.292160pt;}
._16{margin-left:-44.209707pt;}
._18{margin-left:-43.292160pt;}
._1d{margin-left:-28.024960pt;}
._3f{margin-left:-7.440853pt;}
._2b{margin-left:-6.490880pt;}
._2c{margin-left:-5.053440pt;}
._2a{margin-left:-3.866027pt;}
._3a{margin-left:-2.921600pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._1c{width:1.099520pt;}
._32{width:2.057600pt;}
._2d{width:2.974720pt;}
._33{width:4.480853pt;}
._35{width:5.474560pt;}
._2e{width:6.391040pt;}
._2f{width:7.861760pt;}
._30{width:8.808960pt;}
._31{width:10.025813pt;}
._38{width:10.928640pt;}
._39{width:12.908160pt;}
._3e{width:14.072960pt;}
._3b{width:14.963840pt;}
._3c{width:15.888640pt;}
._3d{width:16.875520pt;}
._37{width:18.896000pt;}
._36{width:19.866880pt;}
._34{width:25.550720pt;}
._41{width:26.453760pt;}
._40{width:27.596160pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.752000pt;}
.ya6{bottom:81.152000pt;}
.y32{bottom:86.752000pt;}
.y64{bottom:89.312000pt;}
.ya5{bottom:99.872000pt;}
.y31{bottom:105.472000pt;}
.y84{bottom:107.712000pt;}
.y63{bottom:108.032000pt;}
.ya4{bottom:118.592000pt;}
.y30{bottom:124.192000pt;}
.y83{bottom:126.432000pt;}
.y62{bottom:126.752000pt;}
.ya3{bottom:137.306667pt;}
.y2f{bottom:142.906667pt;}
.y82{bottom:145.146667pt;}
.y61{bottom:145.466667pt;}
.ya2{bottom:156.026667pt;}
.y2e{bottom:161.626667pt;}
.y81{bottom:163.866667pt;}
.y60{bottom:164.186667pt;}
.ya1{bottom:174.746667pt;}
.y2d{bottom:180.346667pt;}
.y80{bottom:182.586667pt;}
.y5f{bottom:182.906667pt;}
.ya0{bottom:193.466667pt;}
.y2c{bottom:199.066667pt;}
.y7f{bottom:201.306667pt;}
.y5e{bottom:201.626667pt;}
.y9f{bottom:212.186667pt;}
.y2b{bottom:217.786667pt;}
.y7e{bottom:220.026667pt;}
.y5d{bottom:220.346667pt;}
.y9e{bottom:230.906667pt;}
.y2a{bottom:236.506667pt;}
.y7d{bottom:238.746667pt;}
.y5c{bottom:239.066667pt;}
.y9d{bottom:249.626667pt;}
.y29{bottom:255.226667pt;}
.y7c{bottom:257.466667pt;}
.y5b{bottom:257.786667pt;}
.y9c{bottom:268.346667pt;}
.y28{bottom:273.946667pt;}
.y7b{bottom:276.186667pt;}
.y5a{bottom:276.506667pt;}
.y9b{bottom:287.066667pt;}
.y27{bottom:292.706667pt;}
.y7a{bottom:294.946667pt;}
.y59{bottom:295.266667pt;}
.y9a{bottom:305.826667pt;}
.y26{bottom:311.426667pt;}
.y79{bottom:313.666667pt;}
.y58{bottom:313.986667pt;}
.y99{bottom:324.546667pt;}
.y25{bottom:330.146667pt;}
.y78{bottom:332.386667pt;}
.y57{bottom:340.706667pt;}
.y98{bottom:343.266667pt;}
.y24{bottom:348.866667pt;}
.y77{bottom:351.106667pt;}
.y56{bottom:359.426667pt;}
.y97{bottom:361.986667pt;}
.y23{bottom:367.586667pt;}
.y76{bottom:369.826667pt;}
.y55{bottom:378.146667pt;}
.y96{bottom:380.706667pt;}
.y22{bottom:386.306667pt;}
.y75{bottom:388.546667pt;}
.y54{bottom:396.866667pt;}
.y95{bottom:399.426667pt;}
.y21{bottom:405.026667pt;}
.y74{bottom:407.266667pt;}
.y94{bottom:418.146667pt;}
.y53{bottom:423.586667pt;}
.y20{bottom:423.746667pt;}
.y73{bottom:426.626667pt;}
.y93{bottom:436.866667pt;}
.y52{bottom:442.306667pt;}
.y1f{bottom:442.466667pt;}
.y72{bottom:445.346667pt;}
.y92{bottom:455.586667pt;}
.y51{bottom:461.026667pt;}
.y1e{bottom:461.186667pt;}
.y71{bottom:464.226667pt;}
.y91{bottom:474.306667pt;}
.y50{bottom:479.746667pt;}
.y1d{bottom:479.906667pt;}
.y70{bottom:483.586667pt;}
.y90{bottom:493.026667pt;}
.y1c{bottom:498.626667pt;}
.y6f{bottom:502.306667pt;}
.y4f{bottom:506.466667pt;}
.y8f{bottom:511.746667pt;}
.y1b{bottom:517.346667pt;}
.y6e{bottom:521.666667pt;}
.y4e{bottom:525.186667pt;}
.y8e{bottom:530.493333pt;}
.y1a{bottom:536.093333pt;}
.y6d{bottom:540.573333pt;}
.y4d{bottom:543.933333pt;}
.y8d{bottom:549.213333pt;}
.y19{bottom:554.813333pt;}
.y6c{bottom:559.933333pt;}
.y4c{bottom:562.493333pt;}
.y8c{bottom:567.933333pt;}
.y18{bottom:573.533333pt;}
.y6b{bottom:578.493333pt;}
.y8b{bottom:586.493333pt;}
.y4b{bottom:589.213333pt;}
.y17{bottom:592.253333pt;}
.y6a{bottom:597.213333pt;}
.y8a{bottom:605.213333pt;}
.y4a{bottom:607.933333pt;}
.y16{bottom:610.973333pt;}
.y69{bottom:615.933333pt;}
.y89{bottom:623.933333pt;}
.y49{bottom:626.653333pt;}
.y15{bottom:629.693333pt;}
.y68{bottom:634.653333pt;}
.y88{bottom:642.653333pt;}
.y48{bottom:645.373333pt;}
.y14{bottom:648.413333pt;}
.y67{bottom:653.373333pt;}
.y87{bottom:661.373333pt;}
.y13{bottom:667.133333pt;}
.y47{bottom:672.093333pt;}
.y86{bottom:680.093333pt;}
.y12{bottom:685.853333pt;}
.y46{bottom:690.813333pt;}
.y85{bottom:698.813333pt;}
.y11{bottom:704.573333pt;}
.y45{bottom:709.533333pt;}
.y66{bottom:717.533333pt;}
.y10{bottom:723.293333pt;}
.y44{bottom:728.253333pt;}
.y65{bottom:736.253333pt;}
.yf{bottom:742.013333pt;}
.y43{bottom:754.973333pt;}
.ye{bottom:760.733333pt;}
.y42{bottom:773.733333pt;}
.yd{bottom:777.093333pt;}
.y41{bottom:792.453333pt;}
.yc{bottom:797.733333pt;}
.y40{bottom:811.173333pt;}
.yb{bottom:816.453333pt;}
.y3f{bottom:829.893333pt;}
.ya{bottom:835.973333pt;}
.y3e{bottom:848.613333pt;}
.y9{bottom:853.413333pt;}
.y3d{bottom:867.333333pt;}
.y8{bottom:871.813333pt;}
.y3c{bottom:886.053333pt;}
.y7{bottom:897.893333pt;}
.y3b{bottom:904.773333pt;}
.y3a{bottom:923.493333pt;}
.y5{bottom:932.453333pt;}
.y39{bottom:942.213333pt;}
.y38{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y37{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y36{bottom:998.373333pt;}
.y35{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y34{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y33{bottom:1060.640000pt;}
.h8{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:64.898438pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:71.999988pt;}
.x8{left:96.031988pt;}
.x5{left:163.066655pt;}
.x3{left:254.466655pt;}
.x2{left:311.586655pt;}
.x4{left:378.466655pt;}
.x1{left:425.373322pt;}
}




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