
    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_fb36d5b76d133dc69b2b8fdd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_fb68801a7924583f82a9a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ce42c5f8dcf28d3d9bde6903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_64772b8c8b594bbd04e3ff5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_72670c31bd631666f1557d10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854980;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_d93cde6abbc6aec6f023b598.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056641;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_6c89d7637925f92597d68c1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_b0561b7081bbf57352b2dce7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_6f8592a3cb5cbd43973bd6f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854980;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_ec5f3902243cabfc0685ffb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854980;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_a8c9d9adc0ef9fa8aafd2acd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_244960999d9165c027ab8c2e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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;}
.ls14{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.229200px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:10.224000px;}
.ls16{letter-spacing:19.386720px;}
.lsd{letter-spacing:20.304000px;}
.lsb{letter-spacing:21.024000px;}
.lsf{letter-spacing:24.624000px;}
.ls7{letter-spacing:25.344000px;}
.lsc{letter-spacing:28.944000px;}
.lse{letter-spacing:39.024000px;}
.ls10{letter-spacing:40.464000px;}
.ls13{letter-spacing:56.280000px;}
.ls5{letter-spacing:93.594720px;}
.ls6{letter-spacing:141.240000px;}
.ls2{letter-spacing:143.803200px;}
.ls17{letter-spacing:850.972800px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-36.907200px;}
.wsb{word-spacing:-36.000000px;}
.ws6{word-spacing:-16.200000px;}
.ws4{word-spacing:-16.056000px;}
.ws8{word-spacing:-15.984000px;}
.ws5{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.696000px;}
.ws2{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.552000px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-15.408000px;}
._e{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._f{margin-left:-10.836000px;}
._10{margin-left:-8.340000px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._c{width:1.019760px;}
._13{width:2.410800px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._19{width:8.773440px;}
._1c{width:10.029120px;}
._1b{width:11.448000px;}
._17{width:12.563520px;}
._14{width:14.112000px;}
._3{width:15.769440px;}
._1a{width:17.352000px;}
._15{width:18.480000px;}
._16{width:19.500240px;}
._1d{width:20.976000px;}
._20{width:22.104000px;}
._1f{width:23.472000px;}
._6{width:24.492960px;}
._7{width:26.774640px;}
._18{width:28.728000px;}
._1e{width:31.752000px;}
._21{width:33.108240px;}
._12{width:843.088800px;}
._d{width:848.316000px;}
.fc4{color:transparent;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.120000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y20{bottom:5.400000px;}
.yc2{bottom:72.216000px;}
.y91{bottom:126.216000px;}
.y1c{bottom:129.096000px;}
.y64{bottom:130.716000px;}
.yab{bottom:130.896000px;}
.y54{bottom:135.576000px;}
.y1b{bottom:153.390000px;}
.yaa{bottom:155.370000px;}
.y90{bottom:157.890000px;}
.y53{bottom:159.870000px;}
.y88{bottom:175.530000px;}
.y8f{bottom:177.150000px;}
.y1a{bottom:177.690000px;}
.y52{bottom:183.990000px;}
.ya9{bottom:188.670000px;}
.y8e{bottom:196.770000px;}
.yc1{bottom:199.470000px;}
.y87{bottom:199.650000px;}
.y51{bottom:208.290000px;}
.ya8{bottom:212.970000px;}
.y19{bottom:213.870000px;}
.y8d{bottom:216.210000px;}
.yc0{bottom:219.090000px;}
.y86{bottom:223.950000px;}
.y50{bottom:232.590000px;}
.y8c{bottom:235.830000px;}
.yc7{bottom:236.730000px;}
.ya7{bottom:237.270000px;}
.y18{bottom:238.170000px;}
.ybf{bottom:238.710000px;}
.y85{bottom:248.250000px;}
.y8b{bottom:255.270000px;}
.y4f{bottom:256.890000px;}
.ybe{bottom:258.150000px;}
.yc6{bottom:260.850000px;}
.ya6{bottom:261.390000px;}
.y17{bottom:262.470000px;}
.y84{bottom:272.550000px;}
.ybd{bottom:277.770000px;}
.yc5{bottom:280.470000px;}
.y4e{bottom:281.190000px;}
.y8a{bottom:282.450000px;}
.ya5{bottom:285.690000px;}
.yc3{bottom:292.710000px;}
.yc4{bottom:293.070000px;}
.y83{bottom:296.850000px;}
.y16{bottom:300.090000px;}
.y4d{bottom:305.310000px;}
.ybc{bottom:305.670000px;}
.ya4{bottom:309.990000px;}
.y82{bottom:321.195000px;}
.y15{bottom:327.135000px;}
.y4c{bottom:329.655000px;}
.ya3{bottom:334.335000px;}
.y81{bottom:345.315000px;}
.ybb{bottom:347.655000px;}
.y14{bottom:352.335000px;}
.y4b{bottom:353.955000px;}
.ya2{bottom:358.635000px;}
.yba{bottom:367.275000px;}
.y80{bottom:369.615000px;}
.y4a{bottom:378.255000px;}
.ya1{bottom:382.935000px;}
.yb9{bottom:386.715000px;}
.y13{bottom:388.695000px;}
.y7f{bottom:393.915000px;}
.y49{bottom:402.555000px;}
.yb8{bottom:406.335000px;}
.ya0{bottom:407.055000px;}
.y7e{bottom:418.215000px;}
.y30{bottom:423.795000px;}
.y12{bottom:424.875000px;}
.y48{bottom:426.855000px;}
.yb7{bottom:434.415000px;}
.y9f{bottom:438.555000px;}
.y7d{bottom:442.515000px;}
.y47{bottom:450.975000px;}
.y11{bottom:461.235000px;}
.y2f{bottom:461.415000px;}
.y7c{bottom:466.815000px;}
.yb6{bottom:476.355000px;}
.y9e{bottom:477.795000px;}
.y46{bottom:483.555000px;}
.y7b{bottom:490.935000px;}
.y2e{bottom:493.095000px;}
.y10{bottom:497.415000px;}
.yb5{bottom:512.715000px;}
.y9d{bottom:513.975000px;}
.y7a{bottom:515.235000px;}
.y2d{bottom:524.955000px;}
.y45{bottom:525.495000px;}
.y9c{bottom:533.235000px;}
.yf{bottom:533.775000px;}
.y79{bottom:539.535000px;}
.y44{bottom:544.935000px;}
.yb4{bottom:548.895000px;}
.y2c{bottom:556.635000px;}
.y78{bottom:563.835000px;}
.ye{bottom:569.985000px;}
.y43{bottom:576.825000px;}
.yb3{bottom:585.285000px;}
.y77{bottom:588.165000px;}
.y2b{bottom:588.525000px;}
.y42{bottom:601.125000px;}
.yd{bottom:606.345000px;}
.y76{bottom:612.285000px;}
.y2a{bottom:620.205000px;}
.yb2{bottom:621.465000px;}
.y41{bottom:625.245000px;}
.y75{bottom:636.585000px;}
.yc{bottom:642.525000px;}
.y63{bottom:647.025000px;}
.y40{bottom:649.545000px;}
.y29{bottom:652.065000px;}
.yb1{bottom:656.205000px;}
.y74{bottom:660.885000px;}
.y62{bottom:671.145000px;}
.y3f{bottom:673.845000px;}
.yb{bottom:678.885000px;}
.yb0{bottom:680.505000px;}
.y28{bottom:683.745000px;}
.y73{bottom:685.185000px;}
.y61{bottom:695.445000px;}
.y3e{bottom:698.145000px;}
.yaf{bottom:704.805000px;}
.y72{bottom:709.485000px;}
.ya{bottom:715.065000px;}
.y27{bottom:715.605000px;}
.y60{bottom:719.745000px;}
.y3d{bottom:722.445000px;}
.yae{bottom:729.105000px;}
.y71{bottom:733.785000px;}
.y5f{bottom:744.045000px;}
.y3c{bottom:746.745000px;}
.y26{bottom:747.285000px;}
.y9b{bottom:747.465000px;}
.y9{bottom:752.505000px;}
.y70{bottom:757.905000px;}
.yad{bottom:764.385000px;}
.y5e{bottom:768.345000px;}
.y3b{bottom:770.865000px;}
.y89{bottom:775.005000px;}
.y25{bottom:779.145000px;}
.y6f{bottom:782.205000px;}
.y8{bottom:791.745000px;}
.y5d{bottom:792.645000px;}
.y3a{bottom:795.165000px;}
.yac{bottom:796.065000px;}
.y9a{bottom:803.445000px;}
.y6e{bottom:806.505000px;}
.y24{bottom:810.825000px;}
.y39{bottom:819.510000px;}
.y99{bottom:827.790000px;}
.y5c{bottom:828.870000px;}
.y7{bottom:829.230000px;}
.y6d{bottom:830.850000px;}
.y38{bottom:843.810000px;}
.y23{bottom:847.770000px;}
.y98{bottom:852.090000px;}
.y6c{bottom:855.150000px;}
.y6{bottom:864.510000px;}
.y5b{bottom:865.230000px;}
.y37{bottom:868.110000px;}
.y97{bottom:876.210000px;}
.y6b{bottom:879.450000px;}
.y5a{bottom:889.350000px;}
.y36{bottom:892.230000px;}
.y22{bottom:895.830000px;}
.y96{bottom:900.510000px;}
.y6a{bottom:903.570000px;}
.y59{bottom:913.650000px;}
.y5{bottom:913.830000px;}
.y35{bottom:916.530000px;}
.y95{bottom:924.810000px;}
.y69{bottom:927.870000px;}
.y21{bottom:937.050000px;}
.y58{bottom:937.950000px;}
.y34{bottom:940.830000px;}
.y68{bottom:952.170000px;}
.y94{bottom:956.310000px;}
.y1f{bottom:960.270000px;}
.y57{bottom:962.250000px;}
.y4{bottom:962.970000px;}
.y33{bottom:973.410000px;}
.y67{bottom:976.470000px;}
.y56{bottom:986.550000px;}
.y93{bottom:997.710000px;}
.y66{bottom:1000.770000px;}
.y55{bottom:1010.670000px;}
.y1e{bottom:1012.110000px;}
.y3{bottom:1012.290000px;}
.y32{bottom:1015.530000px;}
.y65{bottom:1032.090000px;}
.y1d{bottom:1034.970000px;}
.y31{bottom:1039.470000px;}
.y92{bottom:1039.650000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.h4{height:22.500000px;}
.hc{height:28.042031px;}
.h7{height:39.830273px;}
.ha{height:40.843828px;}
.hf{height:50.364141px;}
.hb{height:50.597578px;}
.h1{height:60.960938px;}
.he{height:61.423863px;}
.hd{height:65.837812px;}
.h3{height:71.324297px;}
.h9{height:74.004654px;}
.h6{height:81.078047px;}
.h5{height:98.051133px;}
.h8{height:98.426190px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w3{width:150.870000px;}
.w5{width:172.290000px;}
.w2{width:174.780000px;}
.w4{width:201.270000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x4{left:100.296000px;}
.x2{left:108.035986px;}
.x13{left:115.595986px;}
.x9{left:124.595986px;}
.x11{left:129.275986px;}
.xd{left:135.035986px;}
.xa{left:140.975986px;}
.xb{left:162.029986px;}
.xf{left:171.929986px;}
.xc{left:189.029986px;}
.x1{left:266.609986px;}
.x6{left:275.790000px;}
.x3{left:322.814986px;}
.x7{left:427.395000px;}
.x16{left:587.264986px;}
.x8{left:629.385000px;}
.x10{left:747.689986px;}
.x12{left:772.349986px;}
.x14{left:786.389986px;}
.xe{left:810.149986px;}
.x15{left:866.129986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.203733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:9.088000pt;}
.ls16{letter-spacing:17.232640pt;}
.lsd{letter-spacing:18.048000pt;}
.lsb{letter-spacing:18.688000pt;}
.lsf{letter-spacing:21.888000pt;}
.ls7{letter-spacing:22.528000pt;}
.lsc{letter-spacing:25.728000pt;}
.lse{letter-spacing:34.688000pt;}
.ls10{letter-spacing:35.968000pt;}
.ls13{letter-spacing:50.026667pt;}
.ls5{letter-spacing:83.195307pt;}
.ls6{letter-spacing:125.546667pt;}
.ls2{letter-spacing:127.825067pt;}
.ls17{letter-spacing:756.420267pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-32.806400pt;}
.wsb{word-spacing:-32.000000pt;}
.ws6{word-spacing:-14.400000pt;}
.ws4{word-spacing:-14.272000pt;}
.ws8{word-spacing:-14.208000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.952000pt;}
.ws2{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.824000pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-13.696000pt;}
._e{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._f{margin-left:-9.632000pt;}
._10{margin-left:-7.413333pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._c{width:0.906453pt;}
._13{width:2.142933pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._19{width:7.798613pt;}
._1c{width:8.914773pt;}
._1b{width:10.176000pt;}
._17{width:11.167573pt;}
._14{width:12.544000pt;}
._3{width:14.017280pt;}
._1a{width:15.424000pt;}
._15{width:16.426667pt;}
._16{width:17.333547pt;}
._1d{width:18.645333pt;}
._20{width:19.648000pt;}
._1f{width:20.864000pt;}
._6{width:21.771520pt;}
._7{width:23.799680pt;}
._18{width:25.536000pt;}
._1e{width:28.224000pt;}
._21{width:29.429547pt;}
._12{width:749.412267pt;}
._d{width:754.058667pt;}
.fs7{font-size:29.440000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:4.800000pt;}
.yc2{bottom:64.192000pt;}
.y91{bottom:112.192000pt;}
.y1c{bottom:114.752000pt;}
.y64{bottom:116.192000pt;}
.yab{bottom:116.352000pt;}
.y54{bottom:120.512000pt;}
.y1b{bottom:136.346667pt;}
.yaa{bottom:138.106667pt;}
.y90{bottom:140.346667pt;}
.y53{bottom:142.106667pt;}
.y88{bottom:156.026667pt;}
.y8f{bottom:157.466667pt;}
.y1a{bottom:157.946667pt;}
.y52{bottom:163.546667pt;}
.ya9{bottom:167.706667pt;}
.y8e{bottom:174.906667pt;}
.yc1{bottom:177.306667pt;}
.y87{bottom:177.466667pt;}
.y51{bottom:185.146667pt;}
.ya8{bottom:189.306667pt;}
.y19{bottom:190.106667pt;}
.y8d{bottom:192.186667pt;}
.yc0{bottom:194.746667pt;}
.y86{bottom:199.066667pt;}
.y50{bottom:206.746667pt;}
.y8c{bottom:209.626667pt;}
.yc7{bottom:210.426667pt;}
.ya7{bottom:210.906667pt;}
.y18{bottom:211.706667pt;}
.ybf{bottom:212.186667pt;}
.y85{bottom:220.666667pt;}
.y8b{bottom:226.906667pt;}
.y4f{bottom:228.346667pt;}
.ybe{bottom:229.466667pt;}
.yc6{bottom:231.866667pt;}
.ya6{bottom:232.346667pt;}
.y17{bottom:233.306667pt;}
.y84{bottom:242.266667pt;}
.ybd{bottom:246.906667pt;}
.yc5{bottom:249.306667pt;}
.y4e{bottom:249.946667pt;}
.y8a{bottom:251.066667pt;}
.ya5{bottom:253.946667pt;}
.yc3{bottom:260.186667pt;}
.yc4{bottom:260.506667pt;}
.y83{bottom:263.866667pt;}
.y16{bottom:266.746667pt;}
.y4d{bottom:271.386667pt;}
.ybc{bottom:271.706667pt;}
.ya4{bottom:275.546667pt;}
.y82{bottom:285.506667pt;}
.y15{bottom:290.786667pt;}
.y4c{bottom:293.026667pt;}
.ya3{bottom:297.186667pt;}
.y81{bottom:306.946667pt;}
.ybb{bottom:309.026667pt;}
.y14{bottom:313.186667pt;}
.y4b{bottom:314.626667pt;}
.ya2{bottom:318.786667pt;}
.yba{bottom:326.466667pt;}
.y80{bottom:328.546667pt;}
.y4a{bottom:336.226667pt;}
.ya1{bottom:340.386667pt;}
.yb9{bottom:343.746667pt;}
.y13{bottom:345.506667pt;}
.y7f{bottom:350.146667pt;}
.y49{bottom:357.826667pt;}
.yb8{bottom:361.186667pt;}
.ya0{bottom:361.826667pt;}
.y7e{bottom:371.746667pt;}
.y30{bottom:376.706667pt;}
.y12{bottom:377.666667pt;}
.y48{bottom:379.426667pt;}
.yb7{bottom:386.146667pt;}
.y9f{bottom:389.826667pt;}
.y7d{bottom:393.346667pt;}
.y47{bottom:400.866667pt;}
.y11{bottom:409.986667pt;}
.y2f{bottom:410.146667pt;}
.y7c{bottom:414.946667pt;}
.yb6{bottom:423.426667pt;}
.y9e{bottom:424.706667pt;}
.y46{bottom:429.826667pt;}
.y7b{bottom:436.386667pt;}
.y2e{bottom:438.306667pt;}
.y10{bottom:442.146667pt;}
.yb5{bottom:455.746667pt;}
.y9d{bottom:456.866667pt;}
.y7a{bottom:457.986667pt;}
.y2d{bottom:466.626667pt;}
.y45{bottom:467.106667pt;}
.y9c{bottom:473.986667pt;}
.yf{bottom:474.466667pt;}
.y79{bottom:479.586667pt;}
.y44{bottom:484.386667pt;}
.yb4{bottom:487.906667pt;}
.y2c{bottom:494.786667pt;}
.y78{bottom:501.186667pt;}
.ye{bottom:506.653333pt;}
.y43{bottom:512.733333pt;}
.yb3{bottom:520.253333pt;}
.y77{bottom:522.813333pt;}
.y2b{bottom:523.133333pt;}
.y42{bottom:534.333333pt;}
.yd{bottom:538.973333pt;}
.y76{bottom:544.253333pt;}
.y2a{bottom:551.293333pt;}
.yb2{bottom:552.413333pt;}
.y41{bottom:555.773333pt;}
.y75{bottom:565.853333pt;}
.yc{bottom:571.133333pt;}
.y63{bottom:575.133333pt;}
.y40{bottom:577.373333pt;}
.y29{bottom:579.613333pt;}
.yb1{bottom:583.293333pt;}
.y74{bottom:587.453333pt;}
.y62{bottom:596.573333pt;}
.y3f{bottom:598.973333pt;}
.yb{bottom:603.453333pt;}
.yb0{bottom:604.893333pt;}
.y28{bottom:607.773333pt;}
.y73{bottom:609.053333pt;}
.y61{bottom:618.173333pt;}
.y3e{bottom:620.573333pt;}
.yaf{bottom:626.493333pt;}
.y72{bottom:630.653333pt;}
.ya{bottom:635.613333pt;}
.y27{bottom:636.093333pt;}
.y60{bottom:639.773333pt;}
.y3d{bottom:642.173333pt;}
.yae{bottom:648.093333pt;}
.y71{bottom:652.253333pt;}
.y5f{bottom:661.373333pt;}
.y3c{bottom:663.773333pt;}
.y26{bottom:664.253333pt;}
.y9b{bottom:664.413333pt;}
.y9{bottom:668.893333pt;}
.y70{bottom:673.693333pt;}
.yad{bottom:679.453333pt;}
.y5e{bottom:682.973333pt;}
.y3b{bottom:685.213333pt;}
.y89{bottom:688.893333pt;}
.y25{bottom:692.573333pt;}
.y6f{bottom:695.293333pt;}
.y8{bottom:703.773333pt;}
.y5d{bottom:704.573333pt;}
.y3a{bottom:706.813333pt;}
.yac{bottom:707.613333pt;}
.y9a{bottom:714.173333pt;}
.y6e{bottom:716.893333pt;}
.y24{bottom:720.733333pt;}
.y39{bottom:728.453333pt;}
.y99{bottom:735.813333pt;}
.y5c{bottom:736.773333pt;}
.y7{bottom:737.093333pt;}
.y6d{bottom:738.533333pt;}
.y38{bottom:750.053333pt;}
.y23{bottom:753.573333pt;}
.y98{bottom:757.413333pt;}
.y6c{bottom:760.133333pt;}
.y6{bottom:768.453333pt;}
.y5b{bottom:769.093333pt;}
.y37{bottom:771.653333pt;}
.y97{bottom:778.853333pt;}
.y6b{bottom:781.733333pt;}
.y5a{bottom:790.533333pt;}
.y36{bottom:793.093333pt;}
.y22{bottom:796.293333pt;}
.y96{bottom:800.453333pt;}
.y6a{bottom:803.173333pt;}
.y59{bottom:812.133333pt;}
.y5{bottom:812.293333pt;}
.y35{bottom:814.693333pt;}
.y95{bottom:822.053333pt;}
.y69{bottom:824.773333pt;}
.y21{bottom:832.933333pt;}
.y58{bottom:833.733333pt;}
.y34{bottom:836.293333pt;}
.y68{bottom:846.373333pt;}
.y94{bottom:850.053333pt;}
.y1f{bottom:853.573333pt;}
.y57{bottom:855.333333pt;}
.y4{bottom:855.973333pt;}
.y33{bottom:865.253333pt;}
.y67{bottom:867.973333pt;}
.y56{bottom:876.933333pt;}
.y93{bottom:886.853333pt;}
.y66{bottom:889.573333pt;}
.y55{bottom:898.373333pt;}
.y1e{bottom:899.653333pt;}
.y3{bottom:899.813333pt;}
.y32{bottom:902.693333pt;}
.y65{bottom:917.413333pt;}
.y1d{bottom:919.973333pt;}
.y31{bottom:923.973333pt;}
.y92{bottom:924.133333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.h4{height:20.000000pt;}
.hc{height:24.926250pt;}
.h7{height:35.404688pt;}
.ha{height:36.305625pt;}
.hf{height:44.768125pt;}
.hb{height:44.975625pt;}
.h1{height:54.187500pt;}
.he{height:54.598989pt;}
.hd{height:58.522500pt;}
.h3{height:63.399375pt;}
.h9{height:65.781915pt;}
.h6{height:72.069375pt;}
.h5{height:87.156562pt;}
.h8{height:87.489947pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w3{width:134.106667pt;}
.w5{width:153.146667pt;}
.w2{width:155.360000pt;}
.w4{width:178.906667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x4{left:89.152000pt;}
.x2{left:96.031988pt;}
.x13{left:102.751988pt;}
.x9{left:110.751988pt;}
.x11{left:114.911988pt;}
.xd{left:120.031988pt;}
.xa{left:125.311988pt;}
.xb{left:144.026655pt;}
.xf{left:152.826655pt;}
.xc{left:168.026655pt;}
.x1{left:236.986655pt;}
.x6{left:245.146667pt;}
.x3{left:286.946655pt;}
.x7{left:379.906667pt;}
.x16{left:522.013321pt;}
.x8{left:559.453333pt;}
.x10{left:664.613321pt;}
.x12{left:686.533321pt;}
.x14{left:699.013321pt;}
.xe{left:720.133321pt;}
.x15{left:769.893321pt;}
}




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