
    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_786457ceea856851fac963c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ff5d47b513d8a001c707c905.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_6a8eaa995def9df0fc0ebf31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_78c09e78160778f08e3e9ddf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8b098b9ad5979acc12e2cf16.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aaaa02fb6af5fad18594f7cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.077148;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_ddb97cb8f15cbb05ac2d94a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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);}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls19{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.229800px;}
.ls1c{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.191400px;}
.ls1b{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls24{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.119520px;}
.lsf{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.792000px;}
.ls22{letter-spacing:0.864000px;}
.ls15{letter-spacing:3.600000px;}
.ls14{letter-spacing:4.500000px;}
.ls0{letter-spacing:5.535936px;}
.ls6{letter-spacing:5.688000px;}
.ls5{letter-spacing:5.724000px;}
.ls1{letter-spacing:5.745312px;}
.lsd{letter-spacing:5.832000px;}
.ls3{letter-spacing:5.904000px;}
.ls4{letter-spacing:6.360000px;}
.lse{letter-spacing:6.420000px;}
.ls1d{letter-spacing:6.480000px;}
.ls2{letter-spacing:6.624000px;}
.lsb{letter-spacing:7.200000px;}
.ls25{letter-spacing:12.960000px;}
.ls13{letter-spacing:19.440000px;}
.ls1e{letter-spacing:27.360000px;}
.ls1f{letter-spacing:48.240000px;}
.ls20{letter-spacing:141.840000px;}
.ls8{letter-spacing:1342.956000px;}
.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:-72.000000px;}
.ws0{word-spacing:-26.316000px;}
.ws4{word-spacing:-24.456000px;}
.ws3{word-spacing:-23.868000px;}
.ws6{word-spacing:-21.088080px;}
.ws5{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.616000px;}
.wsc{word-spacing:-18.808440px;}
.ws10{word-spacing:-18.792000px;}
.ws11{word-spacing:-18.432000px;}
.ws12{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.036000px;}
.ws8{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws7{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.220000px;}
.wsb{word-spacing:0.000000px;}
._9{margin-left:-4.968000px;}
._a{margin-left:-3.960000px;}
._b{margin-left:-2.940192px;}
._5{margin-left:-1.131552px;}
._6{width:1.309248px;}
._c{width:2.406096px;}
._37{width:3.506208px;}
._7{width:4.666800px;}
._0{width:5.754240px;}
._1{width:7.000992px;}
._2{width:8.127264px;}
._25{width:9.920736px;}
._33{width:11.247264px;}
._49{width:12.319728px;}
._d{width:13.723824px;}
._44{width:14.760000px;}
._20{width:16.227552px;}
._24{width:19.186752px;}
._1d{width:20.448000px;}
._2a{width:22.080000px;}
._29{width:23.098752px;}
._2b{width:24.336000px;}
._2c{width:25.608000px;}
._19{width:27.144000px;}
._1a{width:28.656000px;}
._28{width:29.758752px;}
._1e{width:31.368000px;}
._1f{width:32.614752px;}
._4a{width:34.055040px;}
._3a{width:35.385696px;}
._3b{width:36.984000px;}
._15{width:38.024448px;}
._14{width:39.267552px;}
._16{width:41.191200px;}
._13{width:43.704000px;}
._43{width:44.784000px;}
._42{width:46.297008px;}
._32{width:47.571552px;}
._10{width:48.960672px;}
._21{width:50.242080px;}
._35{width:51.469920px;}
._18{width:53.518752px;}
._12{width:54.603552px;}
._11{width:55.800000px;}
._48{width:56.860896px;}
._39{width:58.011552px;}
._38{width:59.400000px;}
._34{width:60.723552px;}
._23{width:62.424000px;}
._4c{width:64.680000px;}
._4b{width:66.000000px;}
._41{width:69.840000px;}
._45{width:71.225472px;}
._26{width:72.288000px;}
._27{width:74.014752px;}
._3e{width:76.484448px;}
._3d{width:77.811552px;}
._31{width:79.107552px;}
._30{width:80.208000px;}
._36{width:82.488000px;}
._3f{width:83.592000px;}
._17{width:85.464000px;}
._3{width:86.795568px;}
._2f{width:88.356432px;}
._1b{width:94.032000px;}
._1c{width:95.160000px;}
._3c{width:102.291552px;}
._47{width:106.777296px;}
._2d{width:115.272000px;}
._2e{width:116.724000px;}
._8{width:127.812000px;}
._e{width:136.980000px;}
._4e{width:140.832000px;}
._4d{width:142.051536px;}
._40{width:147.672000px;}
._46{width:178.560000px;}
._4{width:194.484000px;}
._f{width:197.580000px;}
._22{width:249.552000px;}
._4f{width:1422.300000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:48.240000px;}
.fs9{font-size:56.880000px;}
.fs5{font-size:57.024000px;}
.fsb{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:95.904000px;}
.fs4{font-size:105.264000px;}
.fs3{font-size:131.904000px;}
.fs1{font-size:144.144000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.456000px;}
.y1{bottom:78.156000px;}
.y31{bottom:88.236000px;}
.y30{bottom:105.336000px;}
.y2f{bottom:122.616000px;}
.y2c{bottom:124.776000px;}
.yaf{bottom:143.316000px;}
.yc0{bottom:143.856000px;}
.y83{bottom:149.796000px;}
.ya3{bottom:152.310000px;}
.yb6{bottom:155.910000px;}
.y2b{bottom:157.530000px;}
.y82{bottom:173.550000px;}
.ybf{bottom:173.730000px;}
.ya2{bottom:176.070000px;}
.y5a{bottom:176.790000px;}
.yb5{bottom:185.790000px;}
.y2a{bottom:190.290000px;}
.ybe{bottom:194.430000px;}
.y81{bottom:197.310000px;}
.y59{bottom:200.550000px;}
.ya1{bottom:209.010000px;}
.yb4{bottom:215.490000px;}
.y80{bottom:221.070000px;}
.y29{bottom:223.230000px;}
.ybd{bottom:224.130000px;}
.y58{bottom:224.310000px;}
.ya0{bottom:232.770000px;}
.yae{bottom:241.770000px;}
.yb3{bottom:243.750000px;}
.ybc{bottom:244.830000px;}
.y7f{bottom:245.010000px;}
.y57{bottom:248.070000px;}
.y28{bottom:255.990000px;}
.y9f{bottom:256.530000px;}
.y7e{bottom:268.770000px;}
.ybb{bottom:270.030000px;}
.y56{bottom:272.010000px;}
.yad{bottom:274.530000px;}
.y27{bottom:283.035000px;}
.y9e{bottom:289.335000px;}
.y7d{bottom:292.575000px;}
.y55{bottom:295.815000px;}
.yac{bottom:307.335000px;}
.y26{bottom:308.235000px;}
.y9d{bottom:313.275000px;}
.y7c{bottom:316.335000px;}
.y54{bottom:319.575000px;}
.y25{bottom:328.935000px;}
.y9c{bottom:337.035000px;}
.y7b{bottom:340.275000px;}
.y53{bottom:343.335000px;}
.y24{bottom:359.895000px;}
.y9b{bottom:360.795000px;}
.y7a{bottom:364.035000px;}
.y52{bottom:367.275000px;}
.y23{bottom:383.295000px;}
.y9a{bottom:384.555000px;}
.y79{bottom:387.795000px;}
.y51{bottom:391.035000px;}
.y22{bottom:407.415000px;}
.y99{bottom:408.315000px;}
.y78{bottom:411.555000px;}
.y50{bottom:414.795000px;}
.y21{bottom:431.355000px;}
.y77{bottom:435.315000px;}
.y4f{bottom:438.555000px;}
.y98{bottom:441.255000px;}
.y20{bottom:455.115000px;}
.yab{bottom:459.255000px;}
.y4e{bottom:462.315000px;}
.y97{bottom:465.015000px;}
.y76{bottom:467.895000px;}
.y1f{bottom:478.875000px;}
.yaa{bottom:483.015000px;}
.y4d{bottom:486.255000px;}
.y96{bottom:488.775000px;}
.y75{bottom:501.015000px;}
.y1e{bottom:502.635000px;}
.y4c{bottom:510.015000px;}
.y95{bottom:512.535000px;}
.ya9{bottom:515.775000px;}
.y74{bottom:524.775000px;}
.y1d{bottom:526.395000px;}
.y4b{bottom:533.775000px;}
.y94{bottom:536.475000px;}
.ya8{bottom:539.535000px;}
.y73{bottom:548.535000px;}
.y1c{bottom:550.335000px;}
.y4a{bottom:557.535000px;}
.ya7{bottom:563.475000px;}
.y93{bottom:569.265000px;}
.y1b{bottom:571.245000px;}
.y72{bottom:572.505000px;}
.y49{bottom:581.505000px;}
.ya6{bottom:587.265000px;}
.y1a{bottom:591.945000px;}
.y92{bottom:593.025000px;}
.y71{bottom:596.265000px;}
.y48{bottom:605.265000px;}
.y19{bottom:612.645000px;}
.y91{bottom:616.785000px;}
.y70{bottom:620.025000px;}
.y47{bottom:629.025000px;}
.y90{bottom:640.725000px;}
.y6f{bottom:643.785000px;}
.y18{bottom:650.265000px;}
.y46{bottom:652.785000px;}
.y6e{bottom:667.725000px;}
.yba{bottom:673.305000px;}
.y8f{bottom:673.485000px;}
.y17{bottom:674.565000px;}
.y45{bottom:685.725000px;}
.y6d{bottom:691.485000px;}
.y8e{bottom:697.245000px;}
.yb9{bottom:706.065000px;}
.y44{bottom:709.485000px;}
.y16{bottom:712.365000px;}
.y6c{bottom:715.245000px;}
.y8d{bottom:721.005000px;}
.y15{bottom:726.405000px;}
.y43{bottom:733.245000px;}
.yb8{bottom:738.825000px;}
.y6b{bottom:739.005000px;}
.y8c{bottom:744.945000px;}
.y14{bottom:747.105000px;}
.yb2{bottom:751.065000px;}
.y42{bottom:757.005000px;}
.y6a{bottom:762.945000px;}
.yb7{bottom:767.265000px;}
.y13{bottom:767.805000px;}
.ya5{bottom:771.945000px;}
.y8b{bottom:777.345000px;}
.y41{bottom:780.945000px;}
.yb1{bottom:783.825000px;}
.y12{bottom:788.505000px;}
.y69{bottom:795.705000px;}
.y40{bottom:804.705000px;}
.y8a{bottom:810.465000px;}
.yb0{bottom:812.265000px;}
.y68{bottom:819.465000px;}
.y3f{bottom:828.465000px;}
.y11{bottom:829.905000px;}
.y89{bottom:834.225000px;}
.y67{bottom:843.225000px;}
.y10{bottom:850.290000px;}
.y3e{bottom:852.270000px;}
.y88{bottom:858.210000px;}
.y66{bottom:867.210000px;}
.yf{bottom:871.530000px;}
.y3d{bottom:876.210000px;}
.y87{bottom:881.970000px;}
.y65{bottom:890.970000px;}
.ye{bottom:895.650000px;}
.y3c{bottom:899.970000px;}
.y86{bottom:905.730000px;}
.y64{bottom:914.730000px;}
.yd{bottom:919.950000px;}
.y3b{bottom:923.730000px;}
.y85{bottom:929.490000px;}
.y63{bottom:938.490000px;}
.yc{bottom:944.070000px;}
.y3a{bottom:947.490000px;}
.y84{bottom:962.070000px;}
.y62{bottom:962.430000px;}
.yb{bottom:968.190000px;}
.y39{bottom:971.430000px;}
.y61{bottom:986.190000px;}
.ya{bottom:992.130000px;}
.y38{bottom:995.190000px;}
.y60{bottom:1009.950000px;}
.y9{bottom:1012.830000px;}
.y37{bottom:1018.950000px;}
.y8{bottom:1033.530000px;}
.y5f{bottom:1033.710000px;}
.y36{bottom:1042.710000px;}
.y7{bottom:1054.230000px;}
.y5e{bottom:1057.470000px;}
.y35{bottom:1066.470000px;}
.y6{bottom:1074.930000px;}
.y5d{bottom:1090.050000px;}
.y34{bottom:1090.410000px;}
.y5{bottom:1095.630000px;}
.ya4{bottom:1099.410000px;}
.y33{bottom:1114.170000px;}
.y4{bottom:1115.790000px;}
.y5c{bottom:1123.170000px;}
.y3{bottom:1143.360000px;}
.y32{bottom:1146.600000px;}
.y5b{bottom:1146.960000px;}
.y2e{bottom:1167.840000px;}
.y2d{bottom:1189.800000px;}
.h7{height:47.344922px;}
.ha{height:58.651172px;}
.h8{height:63.175781px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:74.704922px;}
.h9{height:80.208984px;}
.h4{height:84.898125px;}
.h3{height:141.469453px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:84.959987px;}
.x2{left:106.235987px;}
.x3{left:108.215987px;}
.x11{left:117.035987px;}
.xa{left:139.895987px;}
.x5{left:160.229987px;}
.x7{left:195.509987px;}
.xc{left:251.849987px;}
.x8{left:254.009987px;}
.x6{left:256.889987px;}
.x9{left:309.494987px;}
.xb{left:360.974987px;}
.x10{left:420.554987px;}
.x14{left:441.254987px;}
.x4{left:446.474987px;}
.xf{left:473.114987px;}
.x12{left:505.184987px;}
.xd{left:645.944987px;}
.x1{left:786.749987px;}
.x13{left:806.009987px;}
.x15{left:807.809987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.204267pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.170133pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls24{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106240pt;}
.lsf{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.704000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls14{letter-spacing:4.000000pt;}
.ls0{letter-spacing:4.920832pt;}
.ls6{letter-spacing:5.056000pt;}
.ls5{letter-spacing:5.088000pt;}
.ls1{letter-spacing:5.106944pt;}
.lsd{letter-spacing:5.184000pt;}
.ls3{letter-spacing:5.248000pt;}
.ls4{letter-spacing:5.653333pt;}
.lse{letter-spacing:5.706667pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls2{letter-spacing:5.888000pt;}
.lsb{letter-spacing:6.400000pt;}
.ls25{letter-spacing:11.520000pt;}
.ls13{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:24.320000pt;}
.ls1f{letter-spacing:42.880000pt;}
.ls20{letter-spacing:126.080000pt;}
.ls8{letter-spacing:1193.738667pt;}
.wse{word-spacing:-64.000000pt;}
.ws0{word-spacing:-23.392000pt;}
.ws4{word-spacing:-21.738667pt;}
.ws3{word-spacing:-21.216000pt;}
.ws6{word-spacing:-18.744960pt;}
.ws5{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.325333pt;}
.wsc{word-spacing:-16.718613pt;}
.ws10{word-spacing:-16.704000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws12{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.032000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws7{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws9{word-spacing:-12.640000pt;}
.wsb{word-spacing:0.000000pt;}
._9{margin-left:-4.416000pt;}
._a{margin-left:-3.520000pt;}
._b{margin-left:-2.613504pt;}
._5{margin-left:-1.005824pt;}
._6{width:1.163776pt;}
._c{width:2.138752pt;}
._37{width:3.116629pt;}
._7{width:4.148267pt;}
._0{width:5.114880pt;}
._1{width:6.223104pt;}
._2{width:7.224235pt;}
._25{width:8.818432pt;}
._33{width:9.997568pt;}
._49{width:10.950869pt;}
._d{width:12.198955pt;}
._44{width:13.120000pt;}
._20{width:14.424491pt;}
._24{width:17.054891pt;}
._1d{width:18.176000pt;}
._2a{width:19.626667pt;}
._29{width:20.532224pt;}
._2b{width:21.632000pt;}
._2c{width:22.762667pt;}
._19{width:24.128000pt;}
._1a{width:25.472000pt;}
._28{width:26.452224pt;}
._1e{width:27.882667pt;}
._1f{width:28.990891pt;}
._4a{width:30.271147pt;}
._3a{width:31.453952pt;}
._3b{width:32.874667pt;}
._15{width:33.799509pt;}
._14{width:34.904491pt;}
._16{width:36.614400pt;}
._13{width:38.848000pt;}
._43{width:39.808000pt;}
._42{width:41.152896pt;}
._32{width:42.285824pt;}
._10{width:43.520597pt;}
._21{width:44.659627pt;}
._35{width:45.751040pt;}
._18{width:47.572224pt;}
._12{width:48.536491pt;}
._11{width:49.600000pt;}
._48{width:50.543019pt;}
._39{width:51.565824pt;}
._38{width:52.800000pt;}
._34{width:53.976491pt;}
._23{width:55.488000pt;}
._4c{width:57.493333pt;}
._4b{width:58.666667pt;}
._41{width:62.080000pt;}
._45{width:63.311531pt;}
._26{width:64.256000pt;}
._27{width:65.790891pt;}
._3e{width:67.986176pt;}
._3d{width:69.165824pt;}
._31{width:70.317824pt;}
._30{width:71.296000pt;}
._36{width:73.322667pt;}
._3f{width:74.304000pt;}
._17{width:75.968000pt;}
._3{width:77.151616pt;}
._2f{width:78.539051pt;}
._1b{width:83.584000pt;}
._1c{width:84.586667pt;}
._3c{width:90.925824pt;}
._47{width:94.913152pt;}
._2d{width:102.464000pt;}
._2e{width:103.754667pt;}
._8{width:113.610667pt;}
._e{width:121.760000pt;}
._4e{width:125.184000pt;}
._4d{width:126.268032pt;}
._40{width:131.264000pt;}
._46{width:158.720000pt;}
._4{width:172.874667pt;}
._f{width:175.626667pt;}
._22{width:221.824000pt;}
._4f{width:1264.266667pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:50.560000pt;}
.fs5{font-size:50.688000pt;}
.fsb{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:85.248000pt;}
.fs4{font-size:93.568000pt;}
.fs3{font-size:117.248000pt;}
.fs1{font-size:128.128000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.072000pt;}
.y1{bottom:69.472000pt;}
.y31{bottom:78.432000pt;}
.y30{bottom:93.632000pt;}
.y2f{bottom:108.992000pt;}
.y2c{bottom:110.912000pt;}
.yaf{bottom:127.392000pt;}
.yc0{bottom:127.872000pt;}
.y83{bottom:133.152000pt;}
.ya3{bottom:135.386667pt;}
.yb6{bottom:138.586667pt;}
.y2b{bottom:140.026667pt;}
.y82{bottom:154.266667pt;}
.ybf{bottom:154.426667pt;}
.ya2{bottom:156.506667pt;}
.y5a{bottom:157.146667pt;}
.yb5{bottom:165.146667pt;}
.y2a{bottom:169.146667pt;}
.ybe{bottom:172.826667pt;}
.y81{bottom:175.386667pt;}
.y59{bottom:178.266667pt;}
.ya1{bottom:185.786667pt;}
.yb4{bottom:191.546667pt;}
.y80{bottom:196.506667pt;}
.y29{bottom:198.426667pt;}
.ybd{bottom:199.226667pt;}
.y58{bottom:199.386667pt;}
.ya0{bottom:206.906667pt;}
.yae{bottom:214.906667pt;}
.yb3{bottom:216.666667pt;}
.ybc{bottom:217.626667pt;}
.y7f{bottom:217.786667pt;}
.y57{bottom:220.506667pt;}
.y28{bottom:227.546667pt;}
.y9f{bottom:228.026667pt;}
.y7e{bottom:238.906667pt;}
.ybb{bottom:240.026667pt;}
.y56{bottom:241.786667pt;}
.yad{bottom:244.026667pt;}
.y27{bottom:251.586667pt;}
.y9e{bottom:257.186667pt;}
.y7d{bottom:260.066667pt;}
.y55{bottom:262.946667pt;}
.yac{bottom:273.186667pt;}
.y26{bottom:273.986667pt;}
.y9d{bottom:278.466667pt;}
.y7c{bottom:281.186667pt;}
.y54{bottom:284.066667pt;}
.y25{bottom:292.386667pt;}
.y9c{bottom:299.586667pt;}
.y7b{bottom:302.466667pt;}
.y53{bottom:305.186667pt;}
.y24{bottom:319.906667pt;}
.y9b{bottom:320.706667pt;}
.y7a{bottom:323.586667pt;}
.y52{bottom:326.466667pt;}
.y23{bottom:340.706667pt;}
.y9a{bottom:341.826667pt;}
.y79{bottom:344.706667pt;}
.y51{bottom:347.586667pt;}
.y22{bottom:362.146667pt;}
.y99{bottom:362.946667pt;}
.y78{bottom:365.826667pt;}
.y50{bottom:368.706667pt;}
.y21{bottom:383.426667pt;}
.y77{bottom:386.946667pt;}
.y4f{bottom:389.826667pt;}
.y98{bottom:392.226667pt;}
.y20{bottom:404.546667pt;}
.yab{bottom:408.226667pt;}
.y4e{bottom:410.946667pt;}
.y97{bottom:413.346667pt;}
.y76{bottom:415.906667pt;}
.y1f{bottom:425.666667pt;}
.yaa{bottom:429.346667pt;}
.y4d{bottom:432.226667pt;}
.y96{bottom:434.466667pt;}
.y75{bottom:445.346667pt;}
.y1e{bottom:446.786667pt;}
.y4c{bottom:453.346667pt;}
.y95{bottom:455.586667pt;}
.ya9{bottom:458.466667pt;}
.y74{bottom:466.466667pt;}
.y1d{bottom:467.906667pt;}
.y4b{bottom:474.466667pt;}
.y94{bottom:476.866667pt;}
.ya8{bottom:479.586667pt;}
.y73{bottom:487.586667pt;}
.y1c{bottom:489.186667pt;}
.y4a{bottom:495.586667pt;}
.ya7{bottom:500.866667pt;}
.y93{bottom:506.013333pt;}
.y1b{bottom:507.773333pt;}
.y72{bottom:508.893333pt;}
.y49{bottom:516.893333pt;}
.ya6{bottom:522.013333pt;}
.y1a{bottom:526.173333pt;}
.y92{bottom:527.133333pt;}
.y71{bottom:530.013333pt;}
.y48{bottom:538.013333pt;}
.y19{bottom:544.573333pt;}
.y91{bottom:548.253333pt;}
.y70{bottom:551.133333pt;}
.y47{bottom:559.133333pt;}
.y90{bottom:569.533333pt;}
.y6f{bottom:572.253333pt;}
.y18{bottom:578.013333pt;}
.y46{bottom:580.253333pt;}
.y6e{bottom:593.533333pt;}
.yba{bottom:598.493333pt;}
.y8f{bottom:598.653333pt;}
.y17{bottom:599.613333pt;}
.y45{bottom:609.533333pt;}
.y6d{bottom:614.653333pt;}
.y8e{bottom:619.773333pt;}
.yb9{bottom:627.613333pt;}
.y44{bottom:630.653333pt;}
.y16{bottom:633.213333pt;}
.y6c{bottom:635.773333pt;}
.y8d{bottom:640.893333pt;}
.y15{bottom:645.693333pt;}
.y43{bottom:651.773333pt;}
.yb8{bottom:656.733333pt;}
.y6b{bottom:656.893333pt;}
.y8c{bottom:662.173333pt;}
.y14{bottom:664.093333pt;}
.yb2{bottom:667.613333pt;}
.y42{bottom:672.893333pt;}
.y6a{bottom:678.173333pt;}
.yb7{bottom:682.013333pt;}
.y13{bottom:682.493333pt;}
.ya5{bottom:686.173333pt;}
.y8b{bottom:690.973333pt;}
.y41{bottom:694.173333pt;}
.yb1{bottom:696.733333pt;}
.y12{bottom:700.893333pt;}
.y69{bottom:707.293333pt;}
.y40{bottom:715.293333pt;}
.y8a{bottom:720.413333pt;}
.yb0{bottom:722.013333pt;}
.y68{bottom:728.413333pt;}
.y3f{bottom:736.413333pt;}
.y11{bottom:737.693333pt;}
.y89{bottom:741.533333pt;}
.y67{bottom:749.533333pt;}
.y10{bottom:755.813333pt;}
.y3e{bottom:757.573333pt;}
.y88{bottom:762.853333pt;}
.y66{bottom:770.853333pt;}
.yf{bottom:774.693333pt;}
.y3d{bottom:778.853333pt;}
.y87{bottom:783.973333pt;}
.y65{bottom:791.973333pt;}
.ye{bottom:796.133333pt;}
.y3c{bottom:799.973333pt;}
.y86{bottom:805.093333pt;}
.y64{bottom:813.093333pt;}
.yd{bottom:817.733333pt;}
.y3b{bottom:821.093333pt;}
.y85{bottom:826.213333pt;}
.y63{bottom:834.213333pt;}
.yc{bottom:839.173333pt;}
.y3a{bottom:842.213333pt;}
.y84{bottom:855.173333pt;}
.y62{bottom:855.493333pt;}
.yb{bottom:860.613333pt;}
.y39{bottom:863.493333pt;}
.y61{bottom:876.613333pt;}
.ya{bottom:881.893333pt;}
.y38{bottom:884.613333pt;}
.y60{bottom:897.733333pt;}
.y9{bottom:900.293333pt;}
.y37{bottom:905.733333pt;}
.y8{bottom:918.693333pt;}
.y5f{bottom:918.853333pt;}
.y36{bottom:926.853333pt;}
.y7{bottom:937.093333pt;}
.y5e{bottom:939.973333pt;}
.y35{bottom:947.973333pt;}
.y6{bottom:955.493333pt;}
.y5d{bottom:968.933333pt;}
.y34{bottom:969.253333pt;}
.y5{bottom:973.893333pt;}
.ya4{bottom:977.253333pt;}
.y33{bottom:990.373333pt;}
.y4{bottom:991.813333pt;}
.y5c{bottom:998.373333pt;}
.y3{bottom:1016.320000pt;}
.y32{bottom:1019.200000pt;}
.y5b{bottom:1019.520000pt;}
.y2e{bottom:1038.080000pt;}
.y2d{bottom:1057.600000pt;}
.h7{height:42.084375pt;}
.ha{height:52.134375pt;}
.h8{height:56.156250pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:66.404375pt;}
.h9{height:71.296875pt;}
.h4{height:75.465000pt;}
.h3{height:125.750625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:75.519988pt;}
.x2{left:94.431988pt;}
.x3{left:96.191988pt;}
.x11{left:104.031988pt;}
.xa{left:124.351988pt;}
.x5{left:142.426655pt;}
.x7{left:173.786655pt;}
.xc{left:223.866655pt;}
.x8{left:225.786655pt;}
.x6{left:228.346655pt;}
.x9{left:275.106655pt;}
.xb{left:320.866655pt;}
.x10{left:373.826655pt;}
.x14{left:392.226655pt;}
.x4{left:396.866655pt;}
.xf{left:420.546655pt;}
.x12{left:449.053322pt;}
.xd{left:574.173322pt;}
.x1{left:699.333322pt;}
.x13{left:716.453322pt;}
.x15{left:718.053322pt;}
}




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