
    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_26556e66e59727dae963577a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eaa60ec0b6e6f390e242e682.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_b4dafe4aea1147416bf98232.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_41d9ad4625ecac717798abb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_41704d3f6d6ece3009dfc4b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9cea4e7cfcf9b77e2b3196da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_8a70544324b0435e6def775b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;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_e7210da971713de3fd87b3bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_05ff094c48aeb32faec67dc4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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_20ff928790da28bc95d2fe03.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dbbbfb20a488a824236ae91a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fcdf166ef2c434765b160699.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_72f5a5644d62f3c6b26d73a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.674805;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:fff;src:url('chunks/assets/font_1144c9e5676b2e0def291b2a.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_aa36034413b6e92d0bcbaf2f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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:ff11;src:url('chunks/assets/font_4020743830b5a4b2e7612eb0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.663200px;}
.ls23{letter-spacing:-1.596672px;}
.ls26{letter-spacing:-1.584576px;}
.ls21{letter-spacing:-1.536192px;}
.ls1b{letter-spacing:-1.518048px;}
.ls12{letter-spacing:-1.505952px;}
.ls1d{letter-spacing:-1.499904px;}
.ls14{letter-spacing:-1.493856px;}
.ls13{letter-spacing:-1.475712px;}
.ls22{letter-spacing:-1.457568px;}
.ls1e{letter-spacing:-1.439424px;}
.ls1c{letter-spacing:-1.421280px;}
.ls27{letter-spacing:-1.378944px;}
.ls1f{letter-spacing:-1.360800px;}
.ls25{letter-spacing:-1.342656px;}
.ls24{letter-spacing:-1.318464px;}
.lsf{letter-spacing:-1.209600px;}
.ls10{letter-spacing:-1.202400px;}
.lse{letter-spacing:-1.188000px;}
.lsd{letter-spacing:-0.320544px;}
.lsc{letter-spacing:-0.302400px;}
.ls18{letter-spacing:-0.221760px;}
.lsa{letter-spacing:-0.178848px;}
.ls19{letter-spacing:-0.177408px;}
.ls4{letter-spacing:-0.145728px;}
.ls9{letter-spacing:-0.132480px;}
.ls8{letter-spacing:-0.066240px;}
.ls5{letter-spacing:-0.059616px;}
.ls6{letter-spacing:-0.052992px;}
.lsb{letter-spacing:-0.021600px;}
.ls1a{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.011520px;}
.ls0{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.202752px;}
.ls11{letter-spacing:1.483200px;}
.ls3{letter-spacing:3.561120px;}
.ls16{letter-spacing:13.282704px;}
.ls1{letter-spacing:23.532768px;}
.ls2{letter-spacing:34.959888px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-27.021600px;}
.ws0{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.282240px;}
.ws1{word-spacing:-18.235872px;}
.ws7{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.813440px;}
.ws5{word-spacing:-16.812000px;}
.wsb{word-spacing:-16.797600px;}
.ws6{word-spacing:-16.790400px;}
.ws9{word-spacing:-15.307488px;}
.wsd{word-spacing:-15.120000px;}
.ws14{word-spacing:-13.777344px;}
.ws13{word-spacing:-13.759200px;}
.ws12{word-spacing:-13.741056px;}
.ws15{word-spacing:-13.698720px;}
.wse{word-spacing:-13.680576px;}
.wsf{word-spacing:-13.662432px;}
.ws10{word-spacing:-13.601952px;}
.ws11{word-spacing:-13.535424px;}
.wsc{word-spacing:-0.057600px;}
.ws3{word-spacing:-0.050400px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-2.167920px;}
._0{margin-left:-1.009872px;}
._1{width:1.118448px;}
._8{width:2.183760px;}
._17{width:3.384000px;}
._10{width:4.464000px;}
._7{width:5.472000px;}
._9{width:7.200000px;}
._4{width:8.399088px;}
._5{width:9.727488px;}
._6{width:10.770048px;}
._1a{width:11.837952px;}
._22{width:13.104000px;}
._a{width:14.382288px;}
._16{width:15.767424px;}
._18{width:18.000000px;}
._1d{width:19.004832px;}
._11{width:20.136528px;}
._3{width:21.623472px;}
._2{width:22.804992px;}
._13{width:24.048000px;}
._e{width:26.195184px;}
._c{width:27.288000px;}
._12{width:28.584000px;}
._d{width:30.024000px;}
._15{width:31.348656px;}
._14{width:33.048000px;}
._24{width:34.270992px;}
._f{width:36.046656px;}
._1b{width:37.418688px;}
._1e{width:39.528000px;}
._1c{width:40.608000px;}
._23{width:43.560000px;}
._b{width:45.648000px;}
._21{width:48.087792px;}
._20{width:49.976208px;}
._1f{width:51.984000px;}
._25{width:68.705280px;}
.fc2{color:rgb(14,16,26);}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y35{bottom:93.600000px;}
.y66{bottom:101.520000px;}
.ycb{bottom:110.880000px;}
.y34{bottom:114.480000px;}
.yaa{bottom:116.640000px;}
.y65{bottom:122.040000px;}
.yca{bottom:128.160000px;}
.ya9{bottom:137.520000px;}
.y84{bottom:140.760000px;}
.y64{bottom:142.920000px;}
.yc9{bottom:145.440000px;}
.y33{bottom:146.880000px;}
.ya8{bottom:158.040000px;}
.y83{bottom:162.000000px;}
.yc8{bottom:162.720000px;}
.y63{bottom:163.440000px;}
.y32{bottom:167.760000px;}
.ya7{bottom:178.920000px;}
.yc7{bottom:179.640000px;}
.y82{bottom:183.240000px;}
.y62{bottom:184.320000px;}
.y31{bottom:188.640000px;}
.yc6{bottom:196.920000px;}
.ya6{bottom:199.440000px;}
.y81{bottom:200.160000px;}
.y61{bottom:204.840000px;}
.y30{bottom:209.160000px;}
.yc5{bottom:214.200000px;}
.ya5{bottom:220.320000px;}
.y60{bottom:225.720000px;}
.y2f{bottom:230.040000px;}
.yc4{bottom:231.480000px;}
.ya4{bottom:240.840000px;}
.yc3{bottom:248.760000px;}
.y2e{bottom:250.560000px;}
.y5f{bottom:258.120000px;}
.ya3{bottom:261.720000px;}
.yc2{bottom:266.040000px;}
.y2d{bottom:271.440000px;}
.y5e{bottom:279.000000px;}
.ya2{bottom:282.240000px;}
.yc1{bottom:283.320000px;}
.y2c{bottom:291.960000px;}
.y5d{bottom:299.880000px;}
.yc0{bottom:300.600000px;}
.ya1{bottom:303.120000px;}
.y2b{bottom:312.840000px;}
.ybf{bottom:317.880000px;}
.y5c{bottom:320.400000px;}
.ya0{bottom:323.640000px;}
.y2a{bottom:333.360000px;}
.ybe{bottom:335.160000px;}
.y5b{bottom:341.280000px;}
.y9f{bottom:344.520000px;}
.ybd{bottom:352.440000px;}
.y29{bottom:354.240000px;}
.y5a{bottom:361.800000px;}
.y9e{bottom:365.040000px;}
.ybc{bottom:369.720000px;}
.y28{bottom:374.760000px;}
.y59{bottom:382.680000px;}
.y9d{bottom:385.920000px;}
.ybb{bottom:386.640000px;}
.y27{bottom:395.640000px;}
.y58{bottom:403.200000px;}
.yba{bottom:403.920000px;}
.y9c{bottom:406.440000px;}
.y26{bottom:416.160000px;}
.yb9{bottom:421.200000px;}
.y57{bottom:424.080000px;}
.y9b{bottom:427.320000px;}
.y25{bottom:437.040000px;}
.yb8{bottom:438.480000px;}
.y9a{bottom:447.840000px;}
.yb7{bottom:455.760000px;}
.y56{bottom:456.480000px;}
.y24{bottom:457.560000px;}
.y99{bottom:468.720000px;}
.yb6{bottom:473.040000px;}
.y55{bottom:477.360000px;}
.y23{bottom:478.440000px;}
.y98{bottom:489.240000px;}
.yb5{bottom:490.320000px;}
.y54{bottom:498.240000px;}
.y22{bottom:498.960000px;}
.yb4{bottom:507.600000px;}
.y97{bottom:510.120000px;}
.y53{bottom:518.760000px;}
.y21{bottom:519.840000px;}
.yb3{bottom:524.880000px;}
.y52{bottom:539.640000px;}
.yb2{bottom:542.160000px;}
.y96{bottom:542.520000px;}
.y80{bottom:549.000000px;}
.y20{bottom:551.880000px;}
.yb1{bottom:559.440000px;}
.y51{bottom:560.160000px;}
.y95{bottom:563.400000px;}
.y7f{bottom:569.520000px;}
.y1f{bottom:572.760000px;}
.yb0{bottom:576.360000px;}
.y50{bottom:581.040000px;}
.y94{bottom:584.280000px;}
.y7e{bottom:590.760000px;}
.yaf{bottom:593.640000px;}
.y4f{bottom:601.560000px;}
.y1e{bottom:603.000000px;}
.y93{bottom:604.800000px;}
.yae{bottom:610.920000px;}
.y7d{bottom:611.640000px;}
.y4e{bottom:622.440000px;}
.y1d{bottom:623.880000px;}
.y92{bottom:625.680000px;}
.yad{bottom:628.200000px;}
.y7c{bottom:632.160000px;}
.y4d{bottom:642.960000px;}
.yac{bottom:645.480000px;}
.y91{bottom:646.200000px;}
.y7b{bottom:653.040000px;}
.y1c{bottom:653.400000px;}
.y90{bottom:667.080000px;}
.y7a{bottom:673.560000px;}
.y1b{bottom:674.280000px;}
.y4c{bottom:675.360000px;}
.y8f{bottom:687.600000px;}
.y79{bottom:694.440000px;}
.y1a{bottom:695.160000px;}
.y4b{bottom:696.240000px;}
.y8e{bottom:708.480000px;}
.y78{bottom:714.960000px;}
.y19{bottom:715.680000px;}
.y4a{bottom:717.120000px;}
.y8d{bottom:729.000000px;}
.y77{bottom:735.840000px;}
.y18{bottom:736.560000px;}
.y49{bottom:737.640000px;}
.y8c{bottom:749.880000px;}
.y76{bottom:756.360000px;}
.y17{bottom:757.080000px;}
.y48{bottom:758.520000px;}
.y8b{bottom:770.400000px;}
.y75{bottom:777.240000px;}
.y16{bottom:777.960000px;}
.y47{bottom:779.040000px;}
.y8a{bottom:791.280000px;}
.y74{bottom:797.760000px;}
.y15{bottom:798.480000px;}
.y46{bottom:799.920000px;}
.y89{bottom:811.800000px;}
.y73{bottom:818.640000px;}
.y14{bottom:819.000000px;}
.y45{bottom:820.440000px;}
.y88{bottom:832.680000px;}
.y72{bottom:839.160000px;}
.y13{bottom:839.880000px;}
.y44{bottom:841.320000px;}
.y87{bottom:853.200000px;}
.y71{bottom:860.040000px;}
.y12{bottom:860.400000px;}
.y43{bottom:861.840000px;}
.yab{bottom:873.720000px;}
.y86{bottom:874.080000px;}
.y70{bottom:880.560000px;}
.y11{bottom:881.280000px;}
.y42{bottom:894.240000px;}
.y85{bottom:894.600000px;}
.y6f{bottom:901.440000px;}
.y10{bottom:901.800000px;}
.y41{bottom:915.480000px;}
.y6e{bottom:921.960000px;}
.yf{bottom:922.680000px;}
.y40{bottom:936.000000px;}
.y6d{bottom:942.840000px;}
.ye{bottom:943.200000px;}
.y3f{bottom:956.880000px;}
.y6c{bottom:961.920000px;}
.yd{bottom:963.720000px;}
.y3e{bottom:977.400000px;}
.yc{bottom:984.240000px;}
.y3d{bottom:998.280000px;}
.yb{bottom:1010.880000px;}
.y3c{bottom:1018.800000px;}
.ya{bottom:1031.760000px;}
.y3b{bottom:1039.680000px;}
.y9{bottom:1054.800000px;}
.y3a{bottom:1060.200000px;}
.y39{bottom:1081.080000px;}
.y8{bottom:1086.120000px;}
.y38{bottom:1101.600000px;}
.y6b{bottom:1113.120000px;}
.y7{bottom:1117.080000px;}
.y37{bottom:1134.000000px;}
.y6a{bottom:1134.360000px;}
.y3{bottom:1146.600000px;}
.y69{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y68{bottom:1191.240000px;}
.y67{bottom:1191.600000px;}
.y36{bottom:1192.320000px;}
.h5{height:24.000000px;}
.hd{height:31.672266px;}
.h11{height:40.310156px;}
.h8{height:41.993438px;}
.h10{height:42.022969px;}
.h3{height:44.149219px;}
.ha{height:46.448640px;}
.hf{height:47.988281px;}
.hc{height:48.660480px;}
.hb{height:48.761719px;}
.h7{height:48.796875px;}
.he{height:49.992188px;}
.h9{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:127.439928px;}
.x2{left:129.695076px;}
.xe{left:148.740228px;}
.x4{left:154.439928px;}
.xb{left:169.965072px;}
.x7{left:214.813116px;}
.x1{left:242.852076px;}
.xa{left:252.393660px;}
.xc{left:286.029792px;}
.x6{left:308.172744px;}
.x10{left:327.416400px;}
.x11{left:345.987648px;}
.x9{left:372.385800px;}
.x3{left:446.152320px;}
.xd{left:534.392985px;}
.xf{left:705.532320px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.478400pt;}
.ls23{letter-spacing:-1.419264pt;}
.ls26{letter-spacing:-1.408512pt;}
.ls21{letter-spacing:-1.365504pt;}
.ls1b{letter-spacing:-1.349376pt;}
.ls12{letter-spacing:-1.338624pt;}
.ls1d{letter-spacing:-1.333248pt;}
.ls14{letter-spacing:-1.327872pt;}
.ls13{letter-spacing:-1.311744pt;}
.ls22{letter-spacing:-1.295616pt;}
.ls1e{letter-spacing:-1.279488pt;}
.ls1c{letter-spacing:-1.263360pt;}
.ls27{letter-spacing:-1.225728pt;}
.ls1f{letter-spacing:-1.209600pt;}
.ls25{letter-spacing:-1.193472pt;}
.ls24{letter-spacing:-1.171968pt;}
.lsf{letter-spacing:-1.075200pt;}
.ls10{letter-spacing:-1.068800pt;}
.lse{letter-spacing:-1.056000pt;}
.lsd{letter-spacing:-0.284928pt;}
.lsc{letter-spacing:-0.268800pt;}
.ls18{letter-spacing:-0.197120pt;}
.lsa{letter-spacing:-0.158976pt;}
.ls19{letter-spacing:-0.157696pt;}
.ls4{letter-spacing:-0.129536pt;}
.ls9{letter-spacing:-0.117760pt;}
.ls8{letter-spacing:-0.058880pt;}
.ls5{letter-spacing:-0.052992pt;}
.ls6{letter-spacing:-0.047104pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls1a{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.010240pt;}
.ls0{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.180224pt;}
.ls11{letter-spacing:1.318400pt;}
.ls3{letter-spacing:3.165440pt;}
.ls16{letter-spacing:11.806848pt;}
.ls1{letter-spacing:20.918016pt;}
.ls2{letter-spacing:31.075456pt;}
.ws4{word-spacing:-24.019200pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.250880pt;}
.ws1{word-spacing:-16.209664pt;}
.ws7{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.945280pt;}
.ws5{word-spacing:-14.944000pt;}
.wsb{word-spacing:-14.931200pt;}
.ws6{word-spacing:-14.924800pt;}
.ws9{word-spacing:-13.606656pt;}
.wsd{word-spacing:-13.440000pt;}
.ws14{word-spacing:-12.246528pt;}
.ws13{word-spacing:-12.230400pt;}
.ws12{word-spacing:-12.214272pt;}
.ws15{word-spacing:-12.176640pt;}
.wse{word-spacing:-12.160512pt;}
.wsf{word-spacing:-12.144384pt;}
.ws10{word-spacing:-12.090624pt;}
.ws11{word-spacing:-12.031488pt;}
.wsc{word-spacing:-0.051200pt;}
.ws3{word-spacing:-0.044800pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-1.927040pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.994176pt;}
._8{width:1.941120pt;}
._17{width:3.008000pt;}
._10{width:3.968000pt;}
._7{width:4.864000pt;}
._9{width:6.400000pt;}
._4{width:7.465856pt;}
._5{width:8.646656pt;}
._6{width:9.573376pt;}
._1a{width:10.522624pt;}
._22{width:11.648000pt;}
._a{width:12.784256pt;}
._16{width:14.015488pt;}
._18{width:16.000000pt;}
._1d{width:16.893184pt;}
._11{width:17.899136pt;}
._3{width:19.220864pt;}
._2{width:20.271104pt;}
._13{width:21.376000pt;}
._e{width:23.284608pt;}
._c{width:24.256000pt;}
._12{width:25.408000pt;}
._d{width:26.688000pt;}
._15{width:27.865472pt;}
._14{width:29.376000pt;}
._24{width:30.463104pt;}
._f{width:32.041472pt;}
._1b{width:33.261056pt;}
._1e{width:35.136000pt;}
._1c{width:36.096000pt;}
._23{width:38.720000pt;}
._b{width:40.576000pt;}
._21{width:42.744704pt;}
._20{width:44.423296pt;}
._1f{width:46.208000pt;}
._25{width:61.071360pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y35{bottom:83.200000pt;}
.y66{bottom:90.240000pt;}
.ycb{bottom:98.560000pt;}
.y34{bottom:101.760000pt;}
.yaa{bottom:103.680000pt;}
.y65{bottom:108.480000pt;}
.yca{bottom:113.920000pt;}
.ya9{bottom:122.240000pt;}
.y84{bottom:125.120000pt;}
.y64{bottom:127.040000pt;}
.yc9{bottom:129.280000pt;}
.y33{bottom:130.560000pt;}
.ya8{bottom:140.480000pt;}
.y83{bottom:144.000000pt;}
.yc8{bottom:144.640000pt;}
.y63{bottom:145.280000pt;}
.y32{bottom:149.120000pt;}
.ya7{bottom:159.040000pt;}
.yc7{bottom:159.680000pt;}
.y82{bottom:162.880000pt;}
.y62{bottom:163.840000pt;}
.y31{bottom:167.680000pt;}
.yc6{bottom:175.040000pt;}
.ya6{bottom:177.280000pt;}
.y81{bottom:177.920000pt;}
.y61{bottom:182.080000pt;}
.y30{bottom:185.920000pt;}
.yc5{bottom:190.400000pt;}
.ya5{bottom:195.840000pt;}
.y60{bottom:200.640000pt;}
.y2f{bottom:204.480000pt;}
.yc4{bottom:205.760000pt;}
.ya4{bottom:214.080000pt;}
.yc3{bottom:221.120000pt;}
.y2e{bottom:222.720000pt;}
.y5f{bottom:229.440000pt;}
.ya3{bottom:232.640000pt;}
.yc2{bottom:236.480000pt;}
.y2d{bottom:241.280000pt;}
.y5e{bottom:248.000000pt;}
.ya2{bottom:250.880000pt;}
.yc1{bottom:251.840000pt;}
.y2c{bottom:259.520000pt;}
.y5d{bottom:266.560000pt;}
.yc0{bottom:267.200000pt;}
.ya1{bottom:269.440000pt;}
.y2b{bottom:278.080000pt;}
.ybf{bottom:282.560000pt;}
.y5c{bottom:284.800000pt;}
.ya0{bottom:287.680000pt;}
.y2a{bottom:296.320000pt;}
.ybe{bottom:297.920000pt;}
.y5b{bottom:303.360000pt;}
.y9f{bottom:306.240000pt;}
.ybd{bottom:313.280000pt;}
.y29{bottom:314.880000pt;}
.y5a{bottom:321.600000pt;}
.y9e{bottom:324.480000pt;}
.ybc{bottom:328.640000pt;}
.y28{bottom:333.120000pt;}
.y59{bottom:340.160000pt;}
.y9d{bottom:343.040000pt;}
.ybb{bottom:343.680000pt;}
.y27{bottom:351.680000pt;}
.y58{bottom:358.400000pt;}
.yba{bottom:359.040000pt;}
.y9c{bottom:361.280000pt;}
.y26{bottom:369.920000pt;}
.yb9{bottom:374.400000pt;}
.y57{bottom:376.960000pt;}
.y9b{bottom:379.840000pt;}
.y25{bottom:388.480000pt;}
.yb8{bottom:389.760000pt;}
.y9a{bottom:398.080000pt;}
.yb7{bottom:405.120000pt;}
.y56{bottom:405.760000pt;}
.y24{bottom:406.720000pt;}
.y99{bottom:416.640000pt;}
.yb6{bottom:420.480000pt;}
.y55{bottom:424.320000pt;}
.y23{bottom:425.280000pt;}
.y98{bottom:434.880000pt;}
.yb5{bottom:435.840000pt;}
.y54{bottom:442.880000pt;}
.y22{bottom:443.520000pt;}
.yb4{bottom:451.200000pt;}
.y97{bottom:453.440000pt;}
.y53{bottom:461.120000pt;}
.y21{bottom:462.080000pt;}
.yb3{bottom:466.560000pt;}
.y52{bottom:479.680000pt;}
.yb2{bottom:481.920000pt;}
.y96{bottom:482.240000pt;}
.y80{bottom:488.000000pt;}
.y20{bottom:490.560000pt;}
.yb1{bottom:497.280000pt;}
.y51{bottom:497.920000pt;}
.y95{bottom:500.800000pt;}
.y7f{bottom:506.240000pt;}
.y1f{bottom:509.120000pt;}
.yb0{bottom:512.320000pt;}
.y50{bottom:516.480000pt;}
.y94{bottom:519.360000pt;}
.y7e{bottom:525.120000pt;}
.yaf{bottom:527.680000pt;}
.y4f{bottom:534.720000pt;}
.y1e{bottom:536.000000pt;}
.y93{bottom:537.600000pt;}
.yae{bottom:543.040000pt;}
.y7d{bottom:543.680000pt;}
.y4e{bottom:553.280000pt;}
.y1d{bottom:554.560000pt;}
.y92{bottom:556.160000pt;}
.yad{bottom:558.400000pt;}
.y7c{bottom:561.920000pt;}
.y4d{bottom:571.520000pt;}
.yac{bottom:573.760000pt;}
.y91{bottom:574.400000pt;}
.y7b{bottom:580.480000pt;}
.y1c{bottom:580.800000pt;}
.y90{bottom:592.960000pt;}
.y7a{bottom:598.720000pt;}
.y1b{bottom:599.360000pt;}
.y4c{bottom:600.320000pt;}
.y8f{bottom:611.200000pt;}
.y79{bottom:617.280000pt;}
.y1a{bottom:617.920000pt;}
.y4b{bottom:618.880000pt;}
.y8e{bottom:629.760000pt;}
.y78{bottom:635.520000pt;}
.y19{bottom:636.160000pt;}
.y4a{bottom:637.440000pt;}
.y8d{bottom:648.000000pt;}
.y77{bottom:654.080000pt;}
.y18{bottom:654.720000pt;}
.y49{bottom:655.680000pt;}
.y8c{bottom:666.560000pt;}
.y76{bottom:672.320000pt;}
.y17{bottom:672.960000pt;}
.y48{bottom:674.240000pt;}
.y8b{bottom:684.800000pt;}
.y75{bottom:690.880000pt;}
.y16{bottom:691.520000pt;}
.y47{bottom:692.480000pt;}
.y8a{bottom:703.360000pt;}
.y74{bottom:709.120000pt;}
.y15{bottom:709.760000pt;}
.y46{bottom:711.040000pt;}
.y89{bottom:721.600000pt;}
.y73{bottom:727.680000pt;}
.y14{bottom:728.000000pt;}
.y45{bottom:729.280000pt;}
.y88{bottom:740.160000pt;}
.y72{bottom:745.920000pt;}
.y13{bottom:746.560000pt;}
.y44{bottom:747.840000pt;}
.y87{bottom:758.400000pt;}
.y71{bottom:764.480000pt;}
.y12{bottom:764.800000pt;}
.y43{bottom:766.080000pt;}
.yab{bottom:776.640000pt;}
.y86{bottom:776.960000pt;}
.y70{bottom:782.720000pt;}
.y11{bottom:783.360000pt;}
.y42{bottom:794.880000pt;}
.y85{bottom:795.200000pt;}
.y6f{bottom:801.280000pt;}
.y10{bottom:801.600000pt;}
.y41{bottom:813.760000pt;}
.y6e{bottom:819.520000pt;}
.yf{bottom:820.160000pt;}
.y40{bottom:832.000000pt;}
.y6d{bottom:838.080000pt;}
.ye{bottom:838.400000pt;}
.y3f{bottom:850.560000pt;}
.y6c{bottom:855.040000pt;}
.yd{bottom:856.640000pt;}
.y3e{bottom:868.800000pt;}
.yc{bottom:874.880000pt;}
.y3d{bottom:887.360000pt;}
.yb{bottom:898.560000pt;}
.y3c{bottom:905.600000pt;}
.ya{bottom:917.120000pt;}
.y3b{bottom:924.160000pt;}
.y9{bottom:937.600000pt;}
.y3a{bottom:942.400000pt;}
.y39{bottom:960.960000pt;}
.y8{bottom:965.440000pt;}
.y38{bottom:979.200000pt;}
.y6b{bottom:989.440000pt;}
.y7{bottom:992.960000pt;}
.y37{bottom:1008.000000pt;}
.y6a{bottom:1008.320000pt;}
.y3{bottom:1019.200000pt;}
.y69{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y68{bottom:1058.880000pt;}
.y67{bottom:1059.200000pt;}
.y36{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.hd{height:28.153125pt;}
.h11{height:35.831250pt;}
.h8{height:37.327500pt;}
.h10{height:37.353750pt;}
.h3{height:39.243750pt;}
.ha{height:41.287680pt;}
.hf{height:42.656250pt;}
.hc{height:43.253760pt;}
.hb{height:43.343750pt;}
.h7{height:43.375000pt;}
.he{height:44.437500pt;}
.h9{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:113.279936pt;}
.x2{left:115.284512pt;}
.xe{left:132.213536pt;}
.x4{left:137.279936pt;}
.xb{left:151.080064pt;}
.x7{left:190.944992pt;}
.x1{left:215.868512pt;}
.xa{left:224.349920pt;}
.xc{left:254.248704pt;}
.x6{left:273.931328pt;}
.x10{left:291.036800pt;}
.x11{left:307.544576pt;}
.x9{left:331.009600pt;}
.x3{left:396.579840pt;}
.xd{left:475.015987pt;}
.xf{left:627.139840pt;}
.x5{left:653.333333pt;}
}




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