
    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_31fd6f220d5731d963623813.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_058ed69a1fb44081ad1f9b05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_43cf1ebfdb551a421981e2e8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4567534295cf38245e4691c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992188;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_7b1ad268926365bca4d6e7e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_9d9d8884fa2b9756486cc9ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.028809;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_ea69b9828161e5ba942bf2d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.771978;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_38797a16cec10337da540085.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108398;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_3248542a5e6b99dda34cd3e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_0afb1e2197a297f1c07c8974.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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:ffb;src:url('chunks/assets/font_5b968a0f6727b83d8577288f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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:ffc;src:url('chunks/assets/font_dee130e40b216b656069a851.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_537047baaebf784ba1267c62.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.695312;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:ffe;src:url('chunks/assets/font_67f4bc6a3fa3a0d4943aae44.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104492;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.176000px;}
.ls5{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.306600px;}
.lsb{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.109200px;}
.ls1b{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.070560px;}
.ls18{letter-spacing:0.097920px;}
.ls2{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.394800px;}
.ls1e{letter-spacing:0.612000px;}
.ls1c{letter-spacing:0.666000px;}
.lsd{letter-spacing:2.465280px;}
.ls13{letter-spacing:3.905280px;}
.lsf{letter-spacing:6.785280px;}
.lsc{letter-spacing:7.505280px;}
.ls11{letter-spacing:13.265280px;}
.ls7{letter-spacing:16.145280px;}
.ls8{letter-spacing:22.950720px;}
.lse{letter-spacing:28.385280px;}
.ls12{letter-spacing:34.145280px;}
.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;}
}
.wsb{word-spacing:-18.720120px;}
.ws9{word-spacing:-18.676920px;}
.ws4{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.152520px;}
.ws7{word-spacing:-18.109320px;}
.wsa{word-spacing:-17.586720px;}
.wsc{word-spacing:-17.238720px;}
.ws12{word-spacing:-17.225280px;}
.ws14{word-spacing:-16.873080px;}
.ws10{word-spacing:-16.613280px;}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.506480px;}
.ws11{word-spacing:-16.353480px;}
.ws13{word-spacing:-16.306680px;}
.ws8{word-spacing:-15.012000px;}
.wsd{word-spacing:-13.500000px;}
.ws0{word-spacing:-0.049478px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:331.164720px;}
.ws5{word-spacing:332.398080px;}
._0{margin-left:-5.393105px;}
._1{margin-left:-1.385385px;}
._2{width:1.013943px;}
._8{width:2.542895px;}
._12{width:4.432425px;}
._13{width:5.497920px;}
._3{width:6.955200px;}
._15{width:8.190450px;}
._7{width:9.649920px;}
._6{width:10.791465px;}
._14{width:11.856960px;}
._9{width:12.983040px;}
._a{width:14.154930px;}
._b{width:15.249975px;}
._e{width:16.861650px;}
._11{width:19.468905px;}
._16{width:20.528190px;}
._1a{width:22.082140px;}
._1f{width:23.623460px;}
._21{width:24.773760px;}
._10{width:25.821705px;}
._f{width:27.108585px;}
._25{width:28.941225px;}
._2b{width:30.156240px;}
._24{width:31.259625px;}
._17{width:32.562000px;}
._18{width:34.493385px;}
._23{width:35.733015px;}
._20{width:37.552425px;}
._c{width:38.684160px;}
._d{width:39.804585px;}
._1d{width:41.322450px;}
._1e{width:42.471150px;}
._29{width:43.824314px;}
._1c{width:46.236585px;}
._1b{width:47.952960px;}
._22{width:49.055939px;}
._4{width:50.734185px;}
._5{width:51.924585px;}
._27{width:53.434364px;}
._26{width:54.846720px;}
._2a{width:85.456800px;}
._28{width:98.631360px;}
._19{width:344.064960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:18.000000px;}
.fsd{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:44.018465px;}
.fs6{font-size:49.478028px;}
.fse{font-size:54.000000px;}
.fs2{font-size:58.478028px;}
.fs10{font-size:59.760000px;}
.fs0{font-size:59.976564px;}
.fs5{font-size:65.975100px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:67.473630px;}
.fsf{font-size:72.000000px;}
.fs1{font-size:80.969238px;}
.fs4{font-size:101.957520px;}
.fsb{font-size:120.240000px;}
.fsa{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y15{bottom:56.520000px;}
.y39{bottom:109.080000px;}
.y64{bottom:112.680000px;}
.y8e{bottom:116.280000px;}
.y5e{bottom:116.640000px;}
.y38{bottom:124.560000px;}
.y63{bottom:131.400000px;}
.y37{bottom:140.040000px;}
.y8d{bottom:142.020000px;}
.y5d{bottom:145.080000px;}
.y62{bottom:148.680000px;}
.y36{bottom:155.700000px;}
.y35{bottom:160.200000px;}
.y61{bottom:165.960000px;}
.y8c{bottom:167.940000px;}
.y34{bottom:171.720000px;}
.y5c{bottom:173.520000px;}
.y60{bottom:183.240000px;}
.y8b{bottom:193.860000px;}
.y5f{bottom:201.780000px;}
.y5b{bottom:201.960000px;}
.y33{bottom:205.740000px;}
.y8a{bottom:219.810000px;}
.y5a{bottom:230.430000px;}
.y32{bottom:234.210000px;}
.y89{bottom:245.550000px;}
.y59{bottom:258.870000px;}
.y31{bottom:262.650000px;}
.y88{bottom:271.470000px;}
.y58{bottom:287.310000px;}
.y30{bottom:291.090000px;}
.y87{bottom:297.390000px;}
.y57{bottom:315.750000px;}
.y2f{bottom:319.530000px;}
.y86{bottom:323.310000px;}
.y56{bottom:344.190000px;}
.y2e{bottom:347.970000px;}
.y85{bottom:349.050000px;}
.y55{bottom:372.810000px;}
.y84{bottom:374.970000px;}
.y2d{bottom:376.410000px;}
.y83{bottom:400.890000px;}
.y54{bottom:401.250000px;}
.y2c{bottom:405.030000px;}
.y82{bottom:426.630000px;}
.y53{bottom:429.690000px;}
.y2b{bottom:433.470000px;}
.y81{bottom:452.595000px;}
.y52{bottom:458.175000px;}
.y2a{bottom:461.955000px;}
.y80{bottom:478.515000px;}
.y51{bottom:486.615000px;}
.y29{bottom:490.395000px;}
.y7f{bottom:504.435000px;}
.y50{bottom:515.055000px;}
.y28{bottom:518.835000px;}
.y7e{bottom:530.175000px;}
.y4f{bottom:543.495000px;}
.y27{bottom:547.275000px;}
.y7d{bottom:556.095000px;}
.y4e{bottom:571.935000px;}
.y26{bottom:575.715000px;}
.y7c{bottom:582.015000px;}
.y4d{bottom:600.375000px;}
.y25{bottom:604.155000px;}
.y7b{bottom:607.935000px;}
.y4c{bottom:628.995000px;}
.y23{bottom:632.595000px;}
.y7a{bottom:633.675000px;}
.y24{bottom:638.535000px;}
.y12{bottom:648.046889px;}
.y4b{bottom:657.435000px;}
.y79{bottom:659.595000px;}
.y22{bottom:661.215000px;}
.y11{bottom:662.888689px;}
.y10{bottom:677.736341px;}
.y78{bottom:685.545000px;}
.y4a{bottom:685.905000px;}
.y21{bottom:689.685000px;}
.yf{bottom:692.507820px;}
.y77{bottom:711.465000px;}
.y49{bottom:714.345000px;}
.y20{bottom:718.125000px;}
.ye{bottom:720.175785px;}
.yd{bottom:735.023436px;}
.y76{bottom:737.205000px;}
.y48{bottom:742.785000px;}
.y1f{bottom:746.565000px;}
.yc{bottom:749.794916px;}
.y75{bottom:763.125000px;}
.y47{bottom:771.225000px;}
.y1e{bottom:775.005000px;}
.yb{bottom:777.468744px;}
.y74{bottom:789.045000px;}
.ya{bottom:792.310544px;}
.y46{bottom:799.665000px;}
.y1d{bottom:803.445000px;}
.y9{bottom:807.152345px;}
.y73{bottom:814.965000px;}
.y8{bottom:821.929688px;}
.y45{bottom:828.105000px;}
.y1c{bottom:831.885000px;}
.y72{bottom:840.705000px;}
.y44{bottom:856.545000px;}
.y1b{bottom:860.325000px;}
.y71{bottom:866.625000px;}
.y1a{bottom:879.225000px;}
.y43{bottom:885.165000px;}
.y70{bottom:892.545000px;}
.y19{bottom:907.305000px;}
.y42{bottom:913.605000px;}
.y6f{bottom:918.510000px;}
.y41{bottom:942.090000px;}
.y6e{bottom:944.250000px;}
.y7{bottom:954.187500px;}
.y18{bottom:968.370000px;}
.y40{bottom:970.530000px;}
.y6d{bottom:971.250000px;}
.y6c{bottom:991.590000px;}
.y6{bottom:996.861329px;}
.y3f{bottom:998.970000px;}
.y6b{bottom:1011.930000px;}
.y94{bottom:1013.370000px;}
.y3e{bottom:1027.410000px;}
.y6a{bottom:1032.090000px;}
.y93{bottom:1039.290000px;}
.y17{bottom:1040.910000px;}
.y69{bottom:1050.990000px;}
.y3d{bottom:1055.850000px;}
.y92{bottom:1065.030000px;}
.y68{bottom:1068.270000px;}
.y5{bottom:1072.669924px;}
.y3c{bottom:1084.290000px;}
.y67{bottom:1085.550000px;}
.y4{bottom:1089.533204px;}
.y91{bottom:1090.950000px;}
.y1{bottom:1100.390625px;}
.y3{bottom:1106.132812px;}
.y66{bottom:1112.370000px;}
.y3b{bottom:1112.730000px;}
.y16{bottom:1113.270000px;}
.y90{bottom:1116.870000px;}
.y2{bottom:1137.287109px;}
.y65{bottom:1141.170000px;}
.y3a{bottom:1141.350000px;}
.y8f{bottom:1142.790000px;}
.y14{bottom:1156.320000px;}
.y13{bottom:1173.960000px;}
.hf{height:18.773438px;}
.h11{height:37.546875px;}
.h7{height:38.195685px;}
.h1{height:39.974614px;}
.hb{height:39.977707px;}
.h8{height:40.200898px;}
.h10{height:43.554375px;}
.h3{height:44.543810px;}
.h13{height:48.761719px;}
.h6{height:50.930973px;}
.h4{height:52.087797px;}
.h12{height:56.320312px;}
.h15{height:60.159375px;}
.h2{height:61.675787px;}
.h14{height:62.327813px;}
.hc{height:69.086250px;}
.h5{height:77.165115px;}
.he{height:125.406562px;}
.hd{height:174.968437px;}
.h0{height:1261.500000px;}
.ha{height:1263.000000px;}
.h9{height:1263.060000px;}
.w3{width:892.439973px;}
.w2{width:892.439987px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.558593px;}
.xd{left:135.395987px;}
.x6{left:157.349987px;}
.x11{left:170.129987px;}
.x1{left:244.488282px;}
.x2{left:265.746093px;}
.xc{left:343.694987px;}
.x10{left:437.114987px;}
.x7{left:441.794987px;}
.x4{left:519.764987px;}
.x9{left:548.204987px;}
.x5{left:602.024987px;}
.xe{left:614.624987px;}
.xf{left:623.669987px;}
.xa{left:711.329973px;}
.xb{left:717.089987px;}
.x8{left:765.149987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.272533pt;}
.lsb{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.062720pt;}
.ls18{letter-spacing:0.087040pt;}
.ls2{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.350933pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls1c{letter-spacing:0.592000pt;}
.lsd{letter-spacing:2.191360pt;}
.ls13{letter-spacing:3.471360pt;}
.lsf{letter-spacing:6.031360pt;}
.lsc{letter-spacing:6.671360pt;}
.ls11{letter-spacing:11.791360pt;}
.ls7{letter-spacing:14.351360pt;}
.ls8{letter-spacing:20.400640pt;}
.lse{letter-spacing:25.231360pt;}
.ls12{letter-spacing:30.351360pt;}
.wsb{word-spacing:-16.640107pt;}
.ws9{word-spacing:-16.601707pt;}
.ws4{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.135573pt;}
.ws7{word-spacing:-16.097173pt;}
.wsa{word-spacing:-15.632640pt;}
.wsc{word-spacing:-15.323307pt;}
.ws12{word-spacing:-15.311360pt;}
.ws14{word-spacing:-14.998293pt;}
.ws10{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.672427pt;}
.ws11{word-spacing:-14.536427pt;}
.ws13{word-spacing:-14.494827pt;}
.ws8{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws0{word-spacing:-0.043980pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:294.368640pt;}
.ws5{word-spacing:295.464960pt;}
._0{margin-left:-4.793871pt;}
._1{margin-left:-1.231453pt;}
._2{width:0.901282pt;}
._8{width:2.260351pt;}
._12{width:3.939933pt;}
._13{width:4.887040pt;}
._3{width:6.182400pt;}
._15{width:7.280400pt;}
._7{width:8.577707pt;}
._6{width:9.592413pt;}
._14{width:10.539520pt;}
._9{width:11.540480pt;}
._a{width:12.582160pt;}
._b{width:13.555534pt;}
._e{width:14.988133pt;}
._11{width:17.305693pt;}
._16{width:18.247280pt;}
._1a{width:19.628569pt;}
._1f{width:20.998631pt;}
._21{width:22.021120pt;}
._10{width:22.952626pt;}
._f{width:24.096520pt;}
._25{width:25.725533pt;}
._2b{width:26.805547pt;}
._24{width:27.786333pt;}
._17{width:28.944000pt;}
._18{width:30.660786pt;}
._23{width:31.762680pt;}
._20{width:33.379933pt;}
._c{width:34.385920pt;}
._d{width:35.381853pt;}
._1d{width:36.731066pt;}
._1e{width:37.752134pt;}
._29{width:38.954946pt;}
._1c{width:41.099186pt;}
._1b{width:42.624853pt;}
._22{width:43.605279pt;}
._4{width:45.097053pt;}
._5{width:46.155186pt;}
._27{width:47.497212pt;}
._26{width:48.752640pt;}
._2a{width:75.961600pt;}
._28{width:87.672320pt;}
._19{width:305.835520pt;}
.fsc{font-size:16.000000pt;}
.fsd{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:39.127524pt;}
.fs6{font-size:43.980469pt;}
.fse{font-size:48.000000pt;}
.fs2{font-size:51.980469pt;}
.fs10{font-size:53.120000pt;}
.fs0{font-size:53.312501pt;}
.fs5{font-size:58.644533pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:59.976560pt;}
.fsf{font-size:64.000000pt;}
.fs1{font-size:71.972656pt;}
.fs4{font-size:90.628907pt;}
.fsb{font-size:106.880000pt;}
.fsa{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:50.240000pt;}
.y39{bottom:96.960000pt;}
.y64{bottom:100.160000pt;}
.y8e{bottom:103.360000pt;}
.y5e{bottom:103.680000pt;}
.y38{bottom:110.720000pt;}
.y63{bottom:116.800000pt;}
.y37{bottom:124.480000pt;}
.y8d{bottom:126.240000pt;}
.y5d{bottom:128.960000pt;}
.y62{bottom:132.160000pt;}
.y36{bottom:138.400000pt;}
.y35{bottom:142.400000pt;}
.y61{bottom:147.520000pt;}
.y8c{bottom:149.280000pt;}
.y34{bottom:152.640000pt;}
.y5c{bottom:154.240000pt;}
.y60{bottom:162.880000pt;}
.y8b{bottom:172.320000pt;}
.y5f{bottom:179.360000pt;}
.y5b{bottom:179.520000pt;}
.y33{bottom:182.880000pt;}
.y8a{bottom:195.386667pt;}
.y5a{bottom:204.826667pt;}
.y32{bottom:208.186667pt;}
.y89{bottom:218.266667pt;}
.y59{bottom:230.106667pt;}
.y31{bottom:233.466667pt;}
.y88{bottom:241.306667pt;}
.y58{bottom:255.386667pt;}
.y30{bottom:258.746667pt;}
.y87{bottom:264.346667pt;}
.y57{bottom:280.666667pt;}
.y2f{bottom:284.026667pt;}
.y86{bottom:287.386667pt;}
.y56{bottom:305.946667pt;}
.y2e{bottom:309.306667pt;}
.y85{bottom:310.266667pt;}
.y55{bottom:331.386667pt;}
.y84{bottom:333.306667pt;}
.y2d{bottom:334.586667pt;}
.y83{bottom:356.346667pt;}
.y54{bottom:356.666667pt;}
.y2c{bottom:360.026667pt;}
.y82{bottom:379.226667pt;}
.y53{bottom:381.946667pt;}
.y2b{bottom:385.306667pt;}
.y81{bottom:402.306667pt;}
.y52{bottom:407.266667pt;}
.y2a{bottom:410.626667pt;}
.y80{bottom:425.346667pt;}
.y51{bottom:432.546667pt;}
.y29{bottom:435.906667pt;}
.y7f{bottom:448.386667pt;}
.y50{bottom:457.826667pt;}
.y28{bottom:461.186667pt;}
.y7e{bottom:471.266667pt;}
.y4f{bottom:483.106667pt;}
.y27{bottom:486.466667pt;}
.y7d{bottom:494.306667pt;}
.y4e{bottom:508.386667pt;}
.y26{bottom:511.746667pt;}
.y7c{bottom:517.346667pt;}
.y4d{bottom:533.666667pt;}
.y25{bottom:537.026667pt;}
.y7b{bottom:540.386667pt;}
.y4c{bottom:559.106667pt;}
.y23{bottom:562.306667pt;}
.y7a{bottom:563.266667pt;}
.y24{bottom:567.586667pt;}
.y12{bottom:576.041679pt;}
.y4b{bottom:584.386667pt;}
.y79{bottom:586.306667pt;}
.y22{bottom:587.746667pt;}
.y11{bottom:589.234391pt;}
.y10{bottom:602.432303pt;}
.y78{bottom:609.373333pt;}
.y4a{bottom:609.693333pt;}
.y21{bottom:613.053333pt;}
.yf{bottom:615.562507pt;}
.y77{bottom:632.413333pt;}
.y49{bottom:634.973333pt;}
.y20{bottom:638.333333pt;}
.ye{bottom:640.156253pt;}
.yd{bottom:653.354166pt;}
.y76{bottom:655.293333pt;}
.y48{bottom:660.253333pt;}
.y1f{bottom:663.613333pt;}
.yc{bottom:666.484370pt;}
.y75{bottom:678.333333pt;}
.y47{bottom:685.533333pt;}
.y1e{bottom:688.893333pt;}
.yb{bottom:691.083328pt;}
.y74{bottom:701.373333pt;}
.ya{bottom:704.276039pt;}
.y46{bottom:710.813333pt;}
.y1d{bottom:714.173333pt;}
.y9{bottom:717.468751pt;}
.y73{bottom:724.413333pt;}
.y8{bottom:730.604167pt;}
.y45{bottom:736.093333pt;}
.y1c{bottom:739.453333pt;}
.y72{bottom:747.293333pt;}
.y44{bottom:761.373333pt;}
.y1b{bottom:764.733333pt;}
.y71{bottom:770.333333pt;}
.y1a{bottom:781.533333pt;}
.y43{bottom:786.813333pt;}
.y70{bottom:793.373333pt;}
.y19{bottom:806.493333pt;}
.y42{bottom:812.093333pt;}
.y6f{bottom:816.453333pt;}
.y41{bottom:837.413333pt;}
.y6e{bottom:839.333333pt;}
.y7{bottom:848.166667pt;}
.y18{bottom:860.773333pt;}
.y40{bottom:862.693333pt;}
.y6d{bottom:863.333333pt;}
.y6c{bottom:881.413333pt;}
.y6{bottom:886.098959pt;}
.y3f{bottom:887.973333pt;}
.y6b{bottom:899.493333pt;}
.y94{bottom:900.773333pt;}
.y3e{bottom:913.253333pt;}
.y6a{bottom:917.413333pt;}
.y93{bottom:923.813333pt;}
.y17{bottom:925.253333pt;}
.y69{bottom:934.213333pt;}
.y3d{bottom:938.533333pt;}
.y92{bottom:946.693333pt;}
.y68{bottom:949.573333pt;}
.y5{bottom:953.484377pt;}
.y3c{bottom:963.813333pt;}
.y67{bottom:964.933333pt;}
.y4{bottom:968.473959pt;}
.y91{bottom:969.733333pt;}
.y1{bottom:978.125000pt;}
.y3{bottom:983.229167pt;}
.y66{bottom:988.773333pt;}
.y3b{bottom:989.093333pt;}
.y16{bottom:989.573333pt;}
.y90{bottom:992.773333pt;}
.y2{bottom:1010.921875pt;}
.y65{bottom:1014.373333pt;}
.y3a{bottom:1014.533333pt;}
.y8f{bottom:1015.813333pt;}
.y14{bottom:1027.840000pt;}
.y13{bottom:1043.520000pt;}
.hf{height:16.687500pt;}
.h11{height:33.375000pt;}
.h7{height:33.951720pt;}
.h1{height:35.532990pt;}
.hb{height:35.535740pt;}
.h8{height:35.734131pt;}
.h10{height:38.715000pt;}
.h3{height:39.594498pt;}
.h13{height:43.343750pt;}
.h6{height:45.271976pt;}
.h4{height:46.300264pt;}
.h12{height:50.062500pt;}
.h15{height:53.475000pt;}
.h2{height:54.822922pt;}
.h14{height:55.402500pt;}
.hc{height:61.410000pt;}
.h5{height:68.591214pt;}
.he{height:111.472500pt;}
.hd{height:155.527500pt;}
.h0{height:1121.333333pt;}
.ha{height:1122.666667pt;}
.h9{height:1122.720000pt;}
.w3{width:793.279976pt;}
.w2{width:793.279988pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.385416pt;}
.xd{left:120.351988pt;}
.x6{left:139.866655pt;}
.x11{left:151.226655pt;}
.x1{left:217.322917pt;}
.x2{left:236.218749pt;}
.xc{left:305.506655pt;}
.x10{left:388.546655pt;}
.x7{left:392.706655pt;}
.x4{left:462.013322pt;}
.x9{left:487.293322pt;}
.x5{left:535.133322pt;}
.xe{left:546.333322pt;}
.xf{left:554.373322pt;}
.xa{left:632.293310pt;}
.xb{left:637.413322pt;}
.x8{left:680.133322pt;}
}




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