
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_f26a3f68d9f3d79d22b24151.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_b114abab682e87afcba2944f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_da20bc1efd4cefa60338e445.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_0e4ba90cc67b89e706904871.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_5bf4b248f5a0c29c1b0ee471.woff')format("woff");}.ffa{font-family:ffa;line-height:0.916016;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_15f0961147e39fee4c19254f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls14{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.450600px;}
.lsc{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.269400px;}
.ls11{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls12{letter-spacing:7.920000px;}
.ls10{letter-spacing:33.984000px;}
.lse{letter-spacing:69.984000px;}
.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;}
}
.wse{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.064000px;}
.ws0{word-spacing:-13.447440px;}
.ws8{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.329400px;}
.ws7{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.609400px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-4.896000px;}
._17{margin-left:-3.880858px;}
._10{margin-left:-2.880000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._9{width:2.937158px;}
._b{width:4.164825px;}
._a{width:6.120000px;}
._c{width:7.598284px;}
._4{width:8.856000px;}
._5{width:9.921158px;}
._f{width:11.016000px;}
._15{width:12.024000px;}
._14{width:13.108301px;}
._6{width:14.304000px;}
._7{width:15.948000px;}
._1c{width:16.992000px;}
._3{width:19.326317px;}
._8{width:20.862623px;}
._1a{width:22.752000px;}
._d{width:24.120000px;}
._e{width:25.200000px;}
._1b{width:27.072000px;}
._19{width:28.531142px;}
._18{width:30.096000px;}
._11{width:31.368000px;}
._12{width:32.556000px;}
._13{width:33.840000px;}
._2{width:146.082865px;}
._1d{width:198.000000px;}
.fc5{color:rgb(32,33,34);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc6{color:rgb(85,85,85);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.580000px;}
.yc7{bottom:112.176000px;}
.y8f{bottom:119.916000px;}
.yfc{bottom:125.676000px;}
.yb8{bottom:128.016000px;}
.y5b{bottom:128.916000px;}
.y33{bottom:131.076000px;}
.y5a{bottom:135.756000px;}
.y8e{bottom:140.616000px;}
.yc6{bottom:141.876000px;}
.yfb{bottom:146.376000px;}
.yb7{bottom:148.716000px;}
.yf2{bottom:149.076000px;}
.y59{bottom:149.616000px;}
.y32{bottom:151.770000px;}
.y5e{bottom:156.450000px;}
.y8d{bottom:161.310000px;}
.yfa{bottom:167.070000px;}
.yb6{bottom:169.410000px;}
.yf1{bottom:169.770000px;}
.y58{bottom:170.310000px;}
.yc5{bottom:171.570000px;}
.y31{bottom:172.470000px;}
.y5d{bottom:177.150000px;}
.y8c{bottom:182.010000px;}
.yf9{bottom:187.770000px;}
.yb5{bottom:190.110000px;}
.yf0{bottom:190.470000px;}
.y57{bottom:191.010000px;}
.y30{bottom:193.170000px;}
.y5c{bottom:197.850000px;}
.yc4{bottom:201.270000px;}
.y8b{bottom:202.710000px;}
.yf8{bottom:208.470000px;}
.yb4{bottom:210.810000px;}
.yef{bottom:211.170000px;}
.y56{bottom:211.710000px;}
.y2f{bottom:213.870000px;}
.y8a{bottom:223.410000px;}
.yf7{bottom:229.170000px;}
.yc3{bottom:230.970000px;}
.yb3{bottom:231.510000px;}
.yee{bottom:231.870000px;}
.y55{bottom:232.410000px;}
.y2e{bottom:234.570000px;}
.y89{bottom:244.110000px;}
.yf6{bottom:249.870000px;}
.yb2{bottom:252.210000px;}
.yed{bottom:252.570000px;}
.y54{bottom:253.110000px;}
.y2d{bottom:255.270000px;}
.yc2{bottom:260.670000px;}
.y88{bottom:264.810000px;}
.yf5{bottom:270.570000px;}
.yb1{bottom:272.910000px;}
.yec{bottom:273.270000px;}
.y53{bottom:273.810000px;}
.y2c{bottom:275.970000px;}
.y87{bottom:285.510000px;}
.yc1{bottom:290.370000px;}
.yf4{bottom:291.270000px;}
.yb0{bottom:293.610000px;}
.yeb{bottom:293.970000px;}
.y52{bottom:294.510000px;}
.y2b{bottom:296.670000px;}
.y86{bottom:306.210000px;}
.yaf{bottom:314.310000px;}
.yea{bottom:314.670000px;}
.y51{bottom:315.210000px;}
.y2a{bottom:317.370000px;}
.yc0{bottom:320.070000px;}
.y85{bottom:326.910000px;}
.yf3{bottom:327.810000px;}
.yae{bottom:335.010000px;}
.ye9{bottom:335.370000px;}
.y50{bottom:335.910000px;}
.y29{bottom:338.115000px;}
.y84{bottom:347.655000px;}
.ybf{bottom:349.815000px;}
.yad{bottom:355.755000px;}
.ye8{bottom:356.115000px;}
.y4f{bottom:356.655000px;}
.y28{bottom:358.815000px;}
.y83{bottom:368.355000px;}
.yac{bottom:376.455000px;}
.ye7{bottom:376.815000px;}
.y4e{bottom:377.355000px;}
.y27{bottom:379.515000px;}
.y82{bottom:389.055000px;}
.yab{bottom:397.155000px;}
.ye6{bottom:397.515000px;}
.y4d{bottom:398.055000px;}
.y26{bottom:400.215000px;}
.ybe{bottom:409.215000px;}
.y81{bottom:409.755000px;}
.yaa{bottom:417.855000px;}
.ye5{bottom:418.215000px;}
.y4c{bottom:418.755000px;}
.y25{bottom:420.915000px;}
.y80{bottom:430.455000px;}
.ya9{bottom:438.555000px;}
.ybd{bottom:438.915000px;}
.y4b{bottom:439.455000px;}
.y24{bottom:441.615000px;}
.y7f{bottom:451.155000px;}
.ya8{bottom:459.255000px;}
.ye4{bottom:459.615000px;}
.y4a{bottom:460.155000px;}
.y23{bottom:462.315000px;}
.ybc{bottom:468.615000px;}
.y7e{bottom:471.855000px;}
.ya7{bottom:479.955000px;}
.ye3{bottom:480.315000px;}
.y49{bottom:480.855000px;}
.y22{bottom:483.015000px;}
.y7d{bottom:492.555000px;}
.ybb{bottom:498.315000px;}
.ya6{bottom:500.655000px;}
.ye2{bottom:501.015000px;}
.y48{bottom:501.555000px;}
.y21{bottom:503.715000px;}
.y7c{bottom:513.255000px;}
.ya5{bottom:521.355000px;}
.ye1{bottom:521.715000px;}
.y47{bottom:522.255000px;}
.y20{bottom:524.415000px;}
.yba{bottom:528.015000px;}
.y7b{bottom:533.955000px;}
.ya4{bottom:542.055000px;}
.ye0{bottom:542.415000px;}
.y46{bottom:542.955000px;}
.y1f{bottom:545.115000px;}
.y7a{bottom:554.655000px;}
.ydf{bottom:563.115000px;}
.y45{bottom:563.655000px;}
.y1e{bottom:565.815000px;}
.y79{bottom:575.355000px;}
.ya3{bottom:583.815000px;}
.y44{bottom:584.355000px;}
.y1d{bottom:586.515000px;}
.y78{bottom:596.055000px;}
.ya2{bottom:604.545000px;}
.y43{bottom:605.085000px;}
.y1c{bottom:607.245000px;}
.y77{bottom:616.785000px;}
.yde{bottom:619.485000px;}
.ya1{bottom:625.245000px;}
.y42{bottom:625.785000px;}
.y1b{bottom:627.945000px;}
.y76{bottom:637.485000px;}
.ydd{bottom:640.185000px;}
.ya0{bottom:645.945000px;}
.y41{bottom:646.485000px;}
.y1a{bottom:648.645000px;}
.y75{bottom:658.185000px;}
.ydc{bottom:660.885000px;}
.y9f{bottom:666.645000px;}
.y40{bottom:667.185000px;}
.y74{bottom:678.885000px;}
.ydb{bottom:681.585000px;}
.y19{bottom:687.345000px;}
.y3f{bottom:687.885000px;}
.y73{bottom:699.585000px;}
.yda{bottom:702.285000px;}
.y9e{bottom:708.045000px;}
.y3e{bottom:708.585000px;}
.y72{bottom:720.285000px;}
.yd9{bottom:722.985000px;}
.y9d{bottom:728.745000px;}
.y18{bottom:728.925000px;}
.y3d{bottom:729.285000px;}
.y71{bottom:740.985000px;}
.yd8{bottom:743.685000px;}
.y9c{bottom:749.445000px;}
.y17{bottom:749.625000px;}
.y3c{bottom:749.985000px;}
.y70{bottom:761.685000px;}
.yd7{bottom:764.385000px;}
.y9b{bottom:770.145000px;}
.y16{bottom:770.325000px;}
.y3b{bottom:770.685000px;}
.y6f{bottom:782.385000px;}
.yd6{bottom:785.085000px;}
.y9a{bottom:790.845000px;}
.y15{bottom:791.025000px;}
.y3a{bottom:791.385000px;}
.y6e{bottom:803.085000px;}
.yd5{bottom:805.785000px;}
.y99{bottom:811.545000px;}
.y14{bottom:811.725000px;}
.y39{bottom:812.085000px;}
.y6d{bottom:823.785000px;}
.yd4{bottom:826.485000px;}
.y13{bottom:832.425000px;}
.y38{bottom:832.785000px;}
.y6c{bottom:844.485000px;}
.yd3{bottom:847.185000px;}
.y12{bottom:853.125000px;}
.y37{bottom:853.485000px;}
.y6b{bottom:865.185000px;}
.yd2{bottom:867.885000px;}
.y11{bottom:873.870000px;}
.y36{bottom:874.230000px;}
.y6a{bottom:885.930000px;}
.yd1{bottom:888.630000px;}
.y10{bottom:894.570000px;}
.y35{bottom:894.930000px;}
.y69{bottom:906.630000px;}
.yd0{bottom:909.330000px;}
.y98{bottom:915.270000px;}
.y34{bottom:915.630000px;}
.y68{bottom:927.330000px;}
.ycf{bottom:930.030000px;}
.y97{bottom:935.970000px;}
.yf{bottom:936.330000px;}
.y67{bottom:948.030000px;}
.yce{bottom:950.730000px;}
.y96{bottom:956.670000px;}
.ye{bottom:957.030000px;}
.y66{bottom:968.730000px;}
.ycd{bottom:971.430000px;}
.y95{bottom:977.370000px;}
.yd{bottom:977.730000px;}
.y65{bottom:989.430000px;}
.ycc{bottom:992.130000px;}
.y94{bottom:998.070000px;}
.yc{bottom:998.430000px;}
.y64{bottom:1010.130000px;}
.ycb{bottom:1012.830000px;}
.y93{bottom:1018.770000px;}
.yb{bottom:1019.130000px;}
.y63{bottom:1030.830000px;}
.yca{bottom:1033.530000px;}
.y92{bottom:1039.470000px;}
.ya{bottom:1039.830000px;}
.y62{bottom:1051.530000px;}
.yc9{bottom:1054.230000px;}
.y91{bottom:1060.170000px;}
.y9{bottom:1060.530000px;}
.y61{bottom:1072.230000px;}
.y90{bottom:1080.870000px;}
.y8{bottom:1081.230000px;}
.yc8{bottom:1083.930000px;}
.y60{bottom:1092.930000px;}
.y7{bottom:1101.930000px;}
.yb9{bottom:1108.770000px;}
.y5f{bottom:1113.630000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.ha{height:33.683203px;}
.h2{height:40.790039px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.hc{height:50.414062px;}
.h6{height:50.800781px;}
.hd{height:52.417969px;}
.h5{height:56.900391px;}
.h9{height:59.343750px;}
.h8{height:61.043203px;}
.hb{height:61.223203px;}
.h3{height:70.802565px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xc{left:135.035987px;}
.x3{left:138.095987px;}
.x2{left:142.775987px;}
.xf{left:144.035987px;}
.xa{left:162.029987px;}
.xd{left:174.089987px;}
.xb{left:212.969987px;}
.x7{left:258.509987px;}
.x4{left:260.849987px;}
.x5{left:266.969987px;}
.x9{left:342.974987px;}
.x8{left:353.054987px;}
.xe{left:364.034987px;}
.x6{left:396.434987px;}
.x10{left:446.474987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls14{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.400533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.239467pt;}
.ls11{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls12{letter-spacing:7.040000pt;}
.ls10{letter-spacing:30.208000pt;}
.lse{letter-spacing:62.208000pt;}
.wse{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.319467pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.352000pt;}
._17{margin-left:-3.449651pt;}
._10{margin-left:-2.560000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._9{width:2.610808pt;}
._b{width:3.702067pt;}
._a{width:5.440000pt;}
._c{width:6.754031pt;}
._4{width:7.872000pt;}
._5{width:8.818808pt;}
._f{width:9.792000pt;}
._15{width:10.688000pt;}
._14{width:11.651823pt;}
._6{width:12.714667pt;}
._7{width:14.176000pt;}
._1c{width:15.104000pt;}
._3{width:17.178948pt;}
._8{width:18.544553pt;}
._1a{width:20.224000pt;}
._d{width:21.440000pt;}
._e{width:22.400000pt;}
._1b{width:24.064000pt;}
._19{width:25.361015pt;}
._18{width:26.752000pt;}
._11{width:27.882667pt;}
._12{width:28.938667pt;}
._13{width:30.080000pt;}
._2{width:129.851436pt;}
._1d{width:176.000000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.960000pt;}
.yc7{bottom:99.712000pt;}
.y8f{bottom:106.592000pt;}
.yfc{bottom:111.712000pt;}
.yb8{bottom:113.792000pt;}
.y5b{bottom:114.592000pt;}
.y33{bottom:116.512000pt;}
.y5a{bottom:120.672000pt;}
.y8e{bottom:124.992000pt;}
.yc6{bottom:126.112000pt;}
.yfb{bottom:130.112000pt;}
.yb7{bottom:132.192000pt;}
.yf2{bottom:132.512000pt;}
.y59{bottom:132.992000pt;}
.y32{bottom:134.906667pt;}
.y5e{bottom:139.066667pt;}
.y8d{bottom:143.386667pt;}
.yfa{bottom:148.506667pt;}
.yb6{bottom:150.586667pt;}
.yf1{bottom:150.906667pt;}
.y58{bottom:151.386667pt;}
.yc5{bottom:152.506667pt;}
.y31{bottom:153.306667pt;}
.y5d{bottom:157.466667pt;}
.y8c{bottom:161.786667pt;}
.yf9{bottom:166.906667pt;}
.yb5{bottom:168.986667pt;}
.yf0{bottom:169.306667pt;}
.y57{bottom:169.786667pt;}
.y30{bottom:171.706667pt;}
.y5c{bottom:175.866667pt;}
.yc4{bottom:178.906667pt;}
.y8b{bottom:180.186667pt;}
.yf8{bottom:185.306667pt;}
.yb4{bottom:187.386667pt;}
.yef{bottom:187.706667pt;}
.y56{bottom:188.186667pt;}
.y2f{bottom:190.106667pt;}
.y8a{bottom:198.586667pt;}
.yf7{bottom:203.706667pt;}
.yc3{bottom:205.306667pt;}
.yb3{bottom:205.786667pt;}
.yee{bottom:206.106667pt;}
.y55{bottom:206.586667pt;}
.y2e{bottom:208.506667pt;}
.y89{bottom:216.986667pt;}
.yf6{bottom:222.106667pt;}
.yb2{bottom:224.186667pt;}
.yed{bottom:224.506667pt;}
.y54{bottom:224.986667pt;}
.y2d{bottom:226.906667pt;}
.yc2{bottom:231.706667pt;}
.y88{bottom:235.386667pt;}
.yf5{bottom:240.506667pt;}
.yb1{bottom:242.586667pt;}
.yec{bottom:242.906667pt;}
.y53{bottom:243.386667pt;}
.y2c{bottom:245.306667pt;}
.y87{bottom:253.786667pt;}
.yc1{bottom:258.106667pt;}
.yf4{bottom:258.906667pt;}
.yb0{bottom:260.986667pt;}
.yeb{bottom:261.306667pt;}
.y52{bottom:261.786667pt;}
.y2b{bottom:263.706667pt;}
.y86{bottom:272.186667pt;}
.yaf{bottom:279.386667pt;}
.yea{bottom:279.706667pt;}
.y51{bottom:280.186667pt;}
.y2a{bottom:282.106667pt;}
.yc0{bottom:284.506667pt;}
.y85{bottom:290.586667pt;}
.yf3{bottom:291.386667pt;}
.yae{bottom:297.786667pt;}
.ye9{bottom:298.106667pt;}
.y50{bottom:298.586667pt;}
.y29{bottom:300.546667pt;}
.y84{bottom:309.026667pt;}
.ybf{bottom:310.946667pt;}
.yad{bottom:316.226667pt;}
.ye8{bottom:316.546667pt;}
.y4f{bottom:317.026667pt;}
.y28{bottom:318.946667pt;}
.y83{bottom:327.426667pt;}
.yac{bottom:334.626667pt;}
.ye7{bottom:334.946667pt;}
.y4e{bottom:335.426667pt;}
.y27{bottom:337.346667pt;}
.y82{bottom:345.826667pt;}
.yab{bottom:353.026667pt;}
.ye6{bottom:353.346667pt;}
.y4d{bottom:353.826667pt;}
.y26{bottom:355.746667pt;}
.ybe{bottom:363.746667pt;}
.y81{bottom:364.226667pt;}
.yaa{bottom:371.426667pt;}
.ye5{bottom:371.746667pt;}
.y4c{bottom:372.226667pt;}
.y25{bottom:374.146667pt;}
.y80{bottom:382.626667pt;}
.ya9{bottom:389.826667pt;}
.ybd{bottom:390.146667pt;}
.y4b{bottom:390.626667pt;}
.y24{bottom:392.546667pt;}
.y7f{bottom:401.026667pt;}
.ya8{bottom:408.226667pt;}
.ye4{bottom:408.546667pt;}
.y4a{bottom:409.026667pt;}
.y23{bottom:410.946667pt;}
.ybc{bottom:416.546667pt;}
.y7e{bottom:419.426667pt;}
.ya7{bottom:426.626667pt;}
.ye3{bottom:426.946667pt;}
.y49{bottom:427.426667pt;}
.y22{bottom:429.346667pt;}
.y7d{bottom:437.826667pt;}
.ybb{bottom:442.946667pt;}
.ya6{bottom:445.026667pt;}
.ye2{bottom:445.346667pt;}
.y48{bottom:445.826667pt;}
.y21{bottom:447.746667pt;}
.y7c{bottom:456.226667pt;}
.ya5{bottom:463.426667pt;}
.ye1{bottom:463.746667pt;}
.y47{bottom:464.226667pt;}
.y20{bottom:466.146667pt;}
.yba{bottom:469.346667pt;}
.y7b{bottom:474.626667pt;}
.ya4{bottom:481.826667pt;}
.ye0{bottom:482.146667pt;}
.y46{bottom:482.626667pt;}
.y1f{bottom:484.546667pt;}
.y7a{bottom:493.026667pt;}
.ydf{bottom:500.546667pt;}
.y45{bottom:501.026667pt;}
.y1e{bottom:502.946667pt;}
.y79{bottom:511.426667pt;}
.ya3{bottom:518.946667pt;}
.y44{bottom:519.426667pt;}
.y1d{bottom:521.346667pt;}
.y78{bottom:529.826667pt;}
.ya2{bottom:537.373333pt;}
.y43{bottom:537.853333pt;}
.y1c{bottom:539.773333pt;}
.y77{bottom:548.253333pt;}
.yde{bottom:550.653333pt;}
.ya1{bottom:555.773333pt;}
.y42{bottom:556.253333pt;}
.y1b{bottom:558.173333pt;}
.y76{bottom:566.653333pt;}
.ydd{bottom:569.053333pt;}
.ya0{bottom:574.173333pt;}
.y41{bottom:574.653333pt;}
.y1a{bottom:576.573333pt;}
.y75{bottom:585.053333pt;}
.ydc{bottom:587.453333pt;}
.y9f{bottom:592.573333pt;}
.y40{bottom:593.053333pt;}
.y74{bottom:603.453333pt;}
.ydb{bottom:605.853333pt;}
.y19{bottom:610.973333pt;}
.y3f{bottom:611.453333pt;}
.y73{bottom:621.853333pt;}
.yda{bottom:624.253333pt;}
.y9e{bottom:629.373333pt;}
.y3e{bottom:629.853333pt;}
.y72{bottom:640.253333pt;}
.yd9{bottom:642.653333pt;}
.y9d{bottom:647.773333pt;}
.y18{bottom:647.933333pt;}
.y3d{bottom:648.253333pt;}
.y71{bottom:658.653333pt;}
.yd8{bottom:661.053333pt;}
.y9c{bottom:666.173333pt;}
.y17{bottom:666.333333pt;}
.y3c{bottom:666.653333pt;}
.y70{bottom:677.053333pt;}
.yd7{bottom:679.453333pt;}
.y9b{bottom:684.573333pt;}
.y16{bottom:684.733333pt;}
.y3b{bottom:685.053333pt;}
.y6f{bottom:695.453333pt;}
.yd6{bottom:697.853333pt;}
.y9a{bottom:702.973333pt;}
.y15{bottom:703.133333pt;}
.y3a{bottom:703.453333pt;}
.y6e{bottom:713.853333pt;}
.yd5{bottom:716.253333pt;}
.y99{bottom:721.373333pt;}
.y14{bottom:721.533333pt;}
.y39{bottom:721.853333pt;}
.y6d{bottom:732.253333pt;}
.yd4{bottom:734.653333pt;}
.y13{bottom:739.933333pt;}
.y38{bottom:740.253333pt;}
.y6c{bottom:750.653333pt;}
.yd3{bottom:753.053333pt;}
.y12{bottom:758.333333pt;}
.y37{bottom:758.653333pt;}
.y6b{bottom:769.053333pt;}
.yd2{bottom:771.453333pt;}
.y11{bottom:776.773333pt;}
.y36{bottom:777.093333pt;}
.y6a{bottom:787.493333pt;}
.yd1{bottom:789.893333pt;}
.y10{bottom:795.173333pt;}
.y35{bottom:795.493333pt;}
.y69{bottom:805.893333pt;}
.yd0{bottom:808.293333pt;}
.y98{bottom:813.573333pt;}
.y34{bottom:813.893333pt;}
.y68{bottom:824.293333pt;}
.ycf{bottom:826.693333pt;}
.y97{bottom:831.973333pt;}
.yf{bottom:832.293333pt;}
.y67{bottom:842.693333pt;}
.yce{bottom:845.093333pt;}
.y96{bottom:850.373333pt;}
.ye{bottom:850.693333pt;}
.y66{bottom:861.093333pt;}
.ycd{bottom:863.493333pt;}
.y95{bottom:868.773333pt;}
.yd{bottom:869.093333pt;}
.y65{bottom:879.493333pt;}
.ycc{bottom:881.893333pt;}
.y94{bottom:887.173333pt;}
.yc{bottom:887.493333pt;}
.y64{bottom:897.893333pt;}
.ycb{bottom:900.293333pt;}
.y93{bottom:905.573333pt;}
.yb{bottom:905.893333pt;}
.y63{bottom:916.293333pt;}
.yca{bottom:918.693333pt;}
.y92{bottom:923.973333pt;}
.ya{bottom:924.293333pt;}
.y62{bottom:934.693333pt;}
.yc9{bottom:937.093333pt;}
.y91{bottom:942.373333pt;}
.y9{bottom:942.693333pt;}
.y61{bottom:953.093333pt;}
.y90{bottom:960.773333pt;}
.y8{bottom:961.093333pt;}
.yc8{bottom:963.493333pt;}
.y60{bottom:971.493333pt;}
.y7{bottom:979.493333pt;}
.yb9{bottom:985.573333pt;}
.y5f{bottom:989.893333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.ha{height:29.940625pt;}
.h2{height:36.257812pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.hc{height:44.812500pt;}
.h6{height:45.156250pt;}
.hd{height:46.593750pt;}
.h5{height:50.578125pt;}
.h9{height:52.750000pt;}
.h8{height:54.260625pt;}
.hb{height:54.420625pt;}
.h3{height:62.935614pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xc{left:120.031988pt;}
.x3{left:122.751988pt;}
.x2{left:126.911988pt;}
.xf{left:128.031988pt;}
.xa{left:144.026655pt;}
.xd{left:154.746655pt;}
.xb{left:189.306655pt;}
.x7{left:229.786655pt;}
.x4{left:231.866655pt;}
.x5{left:237.306655pt;}
.x9{left:304.866655pt;}
.x8{left:313.826655pt;}
.xe{left:323.586655pt;}
.x6{left:352.386655pt;}
.x10{left:396.866655pt;}
}




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