
    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_d55d85bf4dcaf23f1e44c9d6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b2df163db799592c8de0a833.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f151ceb2a043a97ff598b62a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_69a5fca89e9f77bc4d8da4f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_ea0d7c8d563f3b3b32a803fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_5150b3d35bbc2fd308f6a726.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d93aea8b77a558a02651b156.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_08a0a5d8bdc83868d15f35cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_cbc6c1baab3e388a6519f9bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7f4f2d7aa34879a17fa31d83.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls28{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.350400px;}
.ls14{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.139200px;}
.ls8{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.037440px;}
.ls1a{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.129600px;}
.ls16{letter-spacing:0.291600px;}
.ls6{letter-spacing:0.360000px;}
.ls26{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.260000px;}
.lsf{letter-spacing:1.980000px;}
.ls1d{letter-spacing:5.580000px;}
.ls10{letter-spacing:13.500000px;}
.lsc{letter-spacing:21.197280px;}
.lsd{letter-spacing:22.860000px;}
.ls11{letter-spacing:25.020000px;}
.ls13{letter-spacing:35.820000px;}
.ls25{letter-spacing:39.420000px;}
.ls24{letter-spacing:40.140000px;}
.ls19{letter-spacing:43.020000px;}
.ls18{letter-spacing:45.677280px;}
.lse{letter-spacing:48.780000px;}
.ls2{letter-spacing:62.460000px;}
.ls1f{letter-spacing:64.002720px;}
.ls12{letter-spacing:65.340000px;}
.ls23{letter-spacing:68.220000px;}
.ls1{letter-spacing:72.720000px;}
.lsa{letter-spacing:73.260000px;}
.lsb{letter-spacing:81.900000px;}
.ls1c{letter-spacing:85.500000px;}
.ls1b{letter-spacing:86.400000px;}
.ls9{letter-spacing:89.820000px;}
.ls21{letter-spacing:91.260000px;}
.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;}
}
.ws3{word-spacing:-84.600000px;}
.ws2{word-spacing:-84.240000px;}
.wsb{word-spacing:-59.760000px;}
.wsd{word-spacing:-22.140000px;}
.ws4{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.031920px;}
.wsc{word-spacing:-20.920800px;}
.ws7{word-spacing:-20.718600px;}
.ws0{word-spacing:-20.709600px;}
.wsa{word-spacing:-20.700000px;}
.wsf{word-spacing:-19.980000px;}
.wse{word-spacing:-18.000000px;}
.ws6{word-spacing:0.000000px;}
._4b{margin-left:-20.510640px;}
._39{margin-left:-4.464000px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._5{width:1.333680px;}
._12{width:2.600160px;}
._11{width:4.451520px;}
._19{width:5.475600px;}
._30{width:6.534960px;}
._14{width:8.211840px;}
._13{width:9.794880px;}
._21{width:10.807200px;}
._17{width:11.842080px;}
._23{width:12.989280px;}
._15{width:14.016000px;}
._16{width:15.228000px;}
._35{width:17.353440px;}
._36{width:18.702000px;}
._49{width:19.880640px;}
._2a{width:22.070880px;}
._2b{width:23.151360px;}
._18{width:25.103520px;}
._d{width:26.752560px;}
._3e{width:28.016160px;}
._3d{width:29.364000px;}
._1b{width:31.253040px;}
._1c{width:32.360880px;}
._42{width:33.392400px;}
._34{width:35.085360px;}
._9{width:36.223200px;}
._a{width:37.526400px;}
._46{width:39.290400px;}
._41{width:41.619360px;}
._22{width:42.650160px;}
._7{width:44.057520px;}
._6{width:45.249600px;}
._b{width:46.753200px;}
._c{width:47.768880px;}
._27{width:48.853680px;}
._8{width:50.171280px;}
._1f{width:51.690720px;}
._20{width:52.844880px;}
._33{width:54.666720px;}
._29{width:56.103840px;}
._4a{width:57.163200px;}
._e{width:61.866480px;}
._1d{width:62.975760px;}
._37{width:64.023600px;}
._10{width:65.166000px;}
._f{width:66.176880px;}
._2f{width:67.813200px;}
._28{width:69.946080px;}
._4{width:71.884560px;}
._1e{width:73.670880px;}
._31{width:75.731760px;}
._32{width:76.839600px;}
._2e{width:78.162000px;}
._2d{width:79.234080px;}
._26{width:81.592800px;}
._24{width:82.603680px;}
._25{width:83.604480px;}
._43{width:86.228640px;}
._1a{width:89.210160px;}
._44{width:91.030560px;}
._45{width:92.733120px;}
._38{width:96.082080px;}
._2c{width:99.957120px;}
._3f{width:107.490240px;}
._40{width:108.633840px;}
._3a{width:111.533760px;}
._3b{width:112.725840px;}
._48{width:118.441440px;}
._47{width:120.006240px;}
._3c{width:150.031440px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(15,17,21);}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y2b{bottom:-4.350000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.y2{bottom:20.340000px;}
.y7{bottom:31.500000px;}
.y4{bottom:47.010000px;}
.yc{bottom:59.400000px;}
.yd{bottom:64.800000px;}
.y29{bottom:82.410000px;}
.y27{bottom:131.400000px;}
.y47{bottom:138.240000px;}
.y6d{bottom:139.680000px;}
.y62{bottom:139.860000px;}
.y9c{bottom:143.640000px;}
.y5a{bottom:144.540000px;}
.y59{bottom:146.520000px;}
.y4f{bottom:147.060000px;}
.y8c{bottom:154.620000px;}
.y26{bottom:167.580000px;}
.y61{bottom:171.030000px;}
.y46{bottom:174.450000px;}
.y6c{bottom:175.890000px;}
.y9b{bottom:179.850000px;}
.y58{bottom:182.730000px;}
.y4e{bottom:183.270000px;}
.y8b{bottom:190.830000px;}
.y25{bottom:203.790000px;}
.y45{bottom:210.630000px;}
.y6b{bottom:212.250000px;}
.y9a{bottom:216.210000px;}
.y57{bottom:218.910000px;}
.y4d{bottom:219.450000px;}
.yae{bottom:225.930000px;}
.y8a{bottom:227.010000px;}
.y24{bottom:239.970000px;}
.y44{bottom:246.990000px;}
.y6a{bottom:248.430000px;}
.y56{bottom:250.050000px;}
.y99{bottom:252.390000px;}
.y4c{bottom:255.630000px;}
.yad{bottom:262.110000px;}
.y89{bottom:263.370000px;}
.y7d{bottom:264.810000px;}
.y23{bottom:276.330000px;}
.y69{bottom:279.570000px;}
.y43{bottom:283.170000px;}
.y98{bottom:288.570000px;}
.y4b{bottom:291.990000px;}
.yac{bottom:298.290000px;}
.y88{bottom:299.550000px;}
.y7c{bottom:301.350000px;}
.y22{bottom:312.150000px;}
.y42{bottom:319.350000px;}
.y4a{bottom:323.310000px;}
.y97{bottom:324.750000px;}
.yab{bottom:334.650000px;}
.y87{bottom:335.730000px;}
.y7b{bottom:337.710000px;}
.y21{bottom:348.330000px;}
.y41{bottom:355.530000px;}
.y96{bottom:361.110000px;}
.yaa{bottom:370.830000px;}
.y86{bottom:371.910000px;}
.y7a{bottom:375.330000px;}
.y20{bottom:384.870000px;}
.y40{bottom:391.890000px;}
.y95{bottom:397.290000px;}
.y60{bottom:399.810000px;}
.y85{bottom:403.230000px;}
.ya9{bottom:407.010000px;}
.y79{bottom:411.510000px;}
.y1f{bottom:421.095000px;}
.y3f{bottom:428.115000px;}
.y94{bottom:433.515000px;}
.y5f{bottom:436.035000px;}
.ya8{bottom:443.235000px;}
.y78{bottom:447.915000px;}
.y1e{bottom:457.455000px;}
.y3e{bottom:464.295000px;}
.y93{bottom:469.695000px;}
.y5e{bottom:472.215000px;}
.ya7{bottom:479.595000px;}
.y77{bottom:485.535000px;}
.y1d{bottom:493.635000px;}
.y9d{bottom:500.115000px;}
.y3d{bottom:500.475000px;}
.y92{bottom:506.055000px;}
.y5d{bottom:508.395000px;}
.y55{bottom:510.195000px;}
.ya6{bottom:515.775000px;}
.y76{bottom:521.715000px;}
.y1c{bottom:529.815000px;}
.y3c{bottom:536.835000px;}
.y91{bottom:542.235000px;}
.y68{bottom:544.215000px;}
.y5c{bottom:544.755000px;}
.y54{bottom:546.555000px;}
.ya5{bottom:551.955000px;}
.y75{bottom:557.895000px;}
.y1b{bottom:565.995000px;}
.y3b{bottom:573.015000px;}
.y5b{bottom:575.895000px;}
.y90{bottom:578.415000px;}
.y67{bottom:580.395000px;}
.y53{bottom:582.735000px;}
.ya4{bottom:588.135000px;}
.y74{bottom:594.255000px;}
.y1a{bottom:602.355000px;}
.y3a{bottom:609.195000px;}
.y8f{bottom:614.595000px;}
.y66{bottom:616.755000px;}
.y52{bottom:618.915000px;}
.ya3{bottom:624.495000px;}
.y73{bottom:630.435000px;}
.y19{bottom:638.535000px;}
.y39{bottom:645.375000px;}
.y8e{bottom:650.955000px;}
.y65{bottom:652.935000px;}
.y51{bottom:655.095000px;}
.ya2{bottom:660.705000px;}
.y72{bottom:666.645000px;}
.y84{bottom:674.565000px;}
.y18{bottom:674.745000px;}
.y38{bottom:681.585000px;}
.y8d{bottom:682.125000px;}
.y50{bottom:686.445000px;}
.y64{bottom:689.145000px;}
.ya1{bottom:696.885000px;}
.y71{bottom:702.825000px;}
.y83{bottom:710.745000px;}
.y17{bottom:710.925000px;}
.y37{bottom:717.945000px;}
.y63{bottom:720.285000px;}
.ya0{bottom:733.065000px;}
.y70{bottom:739.005000px;}
.y82{bottom:747.105000px;}
.y16{bottom:747.285000px;}
.y36{bottom:754.125000px;}
.y9f{bottom:769.245000px;}
.y6f{bottom:775.365000px;}
.y81{bottom:783.285000px;}
.y15{bottom:783.465000px;}
.y35{bottom:790.305000px;}
.y9e{bottom:805.245000px;}
.y6e{bottom:806.505000px;}
.y80{bottom:819.465000px;}
.y14{bottom:819.645000px;}
.y34{bottom:826.125000px;}
.y49{bottom:826.485000px;}
.y7f{bottom:855.645000px;}
.y13{bottom:855.825000px;}
.y33{bottom:862.485000px;}
.y48{bottom:862.845000px;}
.y7e{bottom:886.965000px;}
.y12{bottom:892.005000px;}
.y32{bottom:899.025000px;}
.y11{bottom:928.050000px;}
.y31{bottom:935.250000px;}
.y10{bottom:964.230000px;}
.y30{bottom:971.430000px;}
.yf{bottom:1000.410000px;}
.y2f{bottom:1007.790000px;}
.ye{bottom:1031.910000px;}
.y28{bottom:1033.560000px;}
.y2e{bottom:1043.970000px;}
.y2a{bottom:1079.790000px;}
.y2d{bottom:1080.150000px;}
.y2c{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h6{height:25.380000px;}
.h2{height:40.320000px;}
.h7{height:58.651172px;}
.hb{height:60.465234px;}
.h11{height:61.423863px;}
.h4{height:66.450000px;}
.hf{height:69.432187px;}
.hd{height:72.846211px;}
.ha{height:82.635820px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h10{height:86.585445px;}
.hc{height:101.880000px;}
.h8{height:110.700000px;}
.he{height:145.125000px;}
.h9{height:182.039062px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:122.400000px;}
.w3{width:163.830000px;}
.w4{width:169.230000px;}
.w2{width:188.481000px;}
.w6{width:693.900000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4{left:22.680000px;}
.x7{left:29.880000px;}
.x12{left:75.990000px;}
.x8{left:89.676000px;}
.x6{left:100.476000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.x18{left:127.476000px;}
.xf{left:142.956000px;}
.x29{left:151.050000px;}
.x19{left:154.470000px;}
.x27{left:156.810000px;}
.x22{left:164.370000px;}
.x10{left:169.770000px;}
.x2e{left:172.650000px;}
.x2b{left:182.010000px;}
.x25{left:191.910000px;}
.x17{left:196.230000px;}
.x1e{left:213.150000px;}
.x13{left:215.130000px;}
.x1b{left:216.570000px;}
.xd{left:259.230000px;}
.x2f{left:262.110000px;}
.x15{left:267.375000px;}
.x11{left:277.815000px;}
.x2c{left:283.035000px;}
.x1c{left:295.995000px;}
.x14{left:346.965000px;}
.x16{left:349.635000px;}
.xc{left:365.115000px;}
.xb{left:377.535000px;}
.xa{left:387.615000px;}
.x34{left:402.735000px;}
.x23{left:406.515000px;}
.x31{left:409.035000px;}
.x20{left:463.785000px;}
.xe{left:474.045000px;}
.x1d{left:545.685000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.x21{left:675.690000px;}
.x1a{left:680.370000px;}
.x1f{left:682.170000px;}
.x26{left:692.790000px;}
.x28{left:700.350000px;}
.x24{left:714.030000px;}
.x33{left:717.090000px;}
.x2a{left:719.250000px;}
.x2d{left:724.110000px;}
.x32{left:734.910000px;}
.x30{left:738.330000px;}
.x9{left:795.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.311467pt;}
.ls14{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.123733pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.033280pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.115200pt;}
.ls16{letter-spacing:0.259200pt;}
.ls6{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.120000pt;}
.lsf{letter-spacing:1.760000pt;}
.ls1d{letter-spacing:4.960000pt;}
.ls10{letter-spacing:12.000000pt;}
.lsc{letter-spacing:18.842027pt;}
.lsd{letter-spacing:20.320000pt;}
.ls11{letter-spacing:22.240000pt;}
.ls13{letter-spacing:31.840000pt;}
.ls25{letter-spacing:35.040000pt;}
.ls24{letter-spacing:35.680000pt;}
.ls19{letter-spacing:38.240000pt;}
.ls18{letter-spacing:40.602027pt;}
.lse{letter-spacing:43.360000pt;}
.ls2{letter-spacing:55.520000pt;}
.ls1f{letter-spacing:56.891307pt;}
.ls12{letter-spacing:58.080000pt;}
.ls23{letter-spacing:60.640000pt;}
.ls1{letter-spacing:64.640000pt;}
.lsa{letter-spacing:65.120000pt;}
.lsb{letter-spacing:72.800000pt;}
.ls1c{letter-spacing:76.000000pt;}
.ls1b{letter-spacing:76.800000pt;}
.ls9{letter-spacing:79.840000pt;}
.ls21{letter-spacing:81.120000pt;}
.ws3{word-spacing:-75.200000pt;}
.ws2{word-spacing:-74.880000pt;}
.wsb{word-spacing:-53.120000pt;}
.wsd{word-spacing:-19.680000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.695040pt;}
.wsc{word-spacing:-18.596267pt;}
.ws7{word-spacing:-18.416533pt;}
.ws0{word-spacing:-18.408533pt;}
.wsa{word-spacing:-18.400000pt;}
.wsf{word-spacing:-17.760000pt;}
.wse{word-spacing:-16.000000pt;}
.ws6{word-spacing:0.000000pt;}
._4b{margin-left:-18.231680pt;}
._39{margin-left:-3.968000pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._5{width:1.185493pt;}
._12{width:2.311253pt;}
._11{width:3.956907pt;}
._19{width:4.867200pt;}
._30{width:5.808853pt;}
._14{width:7.299413pt;}
._13{width:8.706560pt;}
._21{width:9.606400pt;}
._17{width:10.526293pt;}
._23{width:11.546027pt;}
._15{width:12.458667pt;}
._16{width:13.536000pt;}
._35{width:15.425280pt;}
._36{width:16.624000pt;}
._49{width:17.671680pt;}
._2a{width:19.618560pt;}
._2b{width:20.578987pt;}
._18{width:22.314240pt;}
._d{width:23.780053pt;}
._3e{width:24.903253pt;}
._3d{width:26.101333pt;}
._1b{width:27.780480pt;}
._1c{width:28.765227pt;}
._42{width:29.682133pt;}
._34{width:31.186987pt;}
._9{width:32.198400pt;}
._a{width:33.356800pt;}
._46{width:34.924800pt;}
._41{width:36.994987pt;}
._22{width:37.911253pt;}
._7{width:39.162240pt;}
._6{width:40.221867pt;}
._b{width:41.558400pt;}
._c{width:42.461227pt;}
._27{width:43.425493pt;}
._8{width:44.596693pt;}
._1f{width:45.947307pt;}
._20{width:46.973227pt;}
._33{width:48.592640pt;}
._29{width:49.870080pt;}
._4a{width:50.811733pt;}
._e{width:54.992427pt;}
._1d{width:55.978453pt;}
._37{width:56.909867pt;}
._10{width:57.925333pt;}
._f{width:58.823893pt;}
._2f{width:60.278400pt;}
._28{width:62.174293pt;}
._4{width:63.897387pt;}
._1e{width:65.485227pt;}
._31{width:67.317120pt;}
._32{width:68.301867pt;}
._2e{width:69.477333pt;}
._2d{width:70.430293pt;}
._26{width:72.526933pt;}
._24{width:73.425493pt;}
._25{width:74.315093pt;}
._43{width:76.647680pt;}
._1a{width:79.297920pt;}
._44{width:80.916053pt;}
._45{width:82.429440pt;}
._38{width:85.406293pt;}
._2c{width:88.850773pt;}
._3f{width:95.546880pt;}
._40{width:96.563413pt;}
._3a{width:99.141120pt;}
._3b{width:100.200747pt;}
._48{width:105.281280pt;}
._47{width:106.672213pt;}
._3c{width:133.361280pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y2b{bottom:-3.866667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.y2{bottom:18.080000pt;}
.y7{bottom:28.000000pt;}
.y4{bottom:41.786667pt;}
.yc{bottom:52.800000pt;}
.yd{bottom:57.600000pt;}
.y29{bottom:73.253333pt;}
.y27{bottom:116.800000pt;}
.y47{bottom:122.880000pt;}
.y6d{bottom:124.160000pt;}
.y62{bottom:124.320000pt;}
.y9c{bottom:127.680000pt;}
.y5a{bottom:128.480000pt;}
.y59{bottom:130.240000pt;}
.y4f{bottom:130.720000pt;}
.y8c{bottom:137.440000pt;}
.y26{bottom:148.960000pt;}
.y61{bottom:152.026667pt;}
.y46{bottom:155.066667pt;}
.y6c{bottom:156.346667pt;}
.y9b{bottom:159.866667pt;}
.y58{bottom:162.426667pt;}
.y4e{bottom:162.906667pt;}
.y8b{bottom:169.626667pt;}
.y25{bottom:181.146667pt;}
.y45{bottom:187.226667pt;}
.y6b{bottom:188.666667pt;}
.y9a{bottom:192.186667pt;}
.y57{bottom:194.586667pt;}
.y4d{bottom:195.066667pt;}
.yae{bottom:200.826667pt;}
.y8a{bottom:201.786667pt;}
.y24{bottom:213.306667pt;}
.y44{bottom:219.546667pt;}
.y6a{bottom:220.826667pt;}
.y56{bottom:222.266667pt;}
.y99{bottom:224.346667pt;}
.y4c{bottom:227.226667pt;}
.yad{bottom:232.986667pt;}
.y89{bottom:234.106667pt;}
.y7d{bottom:235.386667pt;}
.y23{bottom:245.626667pt;}
.y69{bottom:248.506667pt;}
.y43{bottom:251.706667pt;}
.y98{bottom:256.506667pt;}
.y4b{bottom:259.546667pt;}
.yac{bottom:265.146667pt;}
.y88{bottom:266.266667pt;}
.y7c{bottom:267.866667pt;}
.y22{bottom:277.466667pt;}
.y42{bottom:283.866667pt;}
.y4a{bottom:287.386667pt;}
.y97{bottom:288.666667pt;}
.yab{bottom:297.466667pt;}
.y87{bottom:298.426667pt;}
.y7b{bottom:300.186667pt;}
.y21{bottom:309.626667pt;}
.y41{bottom:316.026667pt;}
.y96{bottom:320.986667pt;}
.yaa{bottom:329.626667pt;}
.y86{bottom:330.586667pt;}
.y7a{bottom:333.626667pt;}
.y20{bottom:342.106667pt;}
.y40{bottom:348.346667pt;}
.y95{bottom:353.146667pt;}
.y60{bottom:355.386667pt;}
.y85{bottom:358.426667pt;}
.ya9{bottom:361.786667pt;}
.y79{bottom:365.786667pt;}
.y1f{bottom:374.306667pt;}
.y3f{bottom:380.546667pt;}
.y94{bottom:385.346667pt;}
.y5f{bottom:387.586667pt;}
.ya8{bottom:393.986667pt;}
.y78{bottom:398.146667pt;}
.y1e{bottom:406.626667pt;}
.y3e{bottom:412.706667pt;}
.y93{bottom:417.506667pt;}
.y5e{bottom:419.746667pt;}
.ya7{bottom:426.306667pt;}
.y77{bottom:431.586667pt;}
.y1d{bottom:438.786667pt;}
.y9d{bottom:444.546667pt;}
.y3d{bottom:444.866667pt;}
.y92{bottom:449.826667pt;}
.y5d{bottom:451.906667pt;}
.y55{bottom:453.506667pt;}
.ya6{bottom:458.466667pt;}
.y76{bottom:463.746667pt;}
.y1c{bottom:470.946667pt;}
.y3c{bottom:477.186667pt;}
.y91{bottom:481.986667pt;}
.y68{bottom:483.746667pt;}
.y5c{bottom:484.226667pt;}
.y54{bottom:485.826667pt;}
.ya5{bottom:490.626667pt;}
.y75{bottom:495.906667pt;}
.y1b{bottom:503.106667pt;}
.y3b{bottom:509.346667pt;}
.y5b{bottom:511.906667pt;}
.y90{bottom:514.146667pt;}
.y67{bottom:515.906667pt;}
.y53{bottom:517.986667pt;}
.ya4{bottom:522.786667pt;}
.y74{bottom:528.226667pt;}
.y1a{bottom:535.426667pt;}
.y3a{bottom:541.506667pt;}
.y8f{bottom:546.306667pt;}
.y66{bottom:548.226667pt;}
.y52{bottom:550.146667pt;}
.ya3{bottom:555.106667pt;}
.y73{bottom:560.386667pt;}
.y19{bottom:567.586667pt;}
.y39{bottom:573.666667pt;}
.y8e{bottom:578.626667pt;}
.y65{bottom:580.386667pt;}
.y51{bottom:582.306667pt;}
.ya2{bottom:587.293333pt;}
.y72{bottom:592.573333pt;}
.y84{bottom:599.613333pt;}
.y18{bottom:599.773333pt;}
.y38{bottom:605.853333pt;}
.y8d{bottom:606.333333pt;}
.y50{bottom:610.173333pt;}
.y64{bottom:612.573333pt;}
.ya1{bottom:619.453333pt;}
.y71{bottom:624.733333pt;}
.y83{bottom:631.773333pt;}
.y17{bottom:631.933333pt;}
.y37{bottom:638.173333pt;}
.y63{bottom:640.253333pt;}
.ya0{bottom:651.613333pt;}
.y70{bottom:656.893333pt;}
.y82{bottom:664.093333pt;}
.y16{bottom:664.253333pt;}
.y36{bottom:670.333333pt;}
.y9f{bottom:683.773333pt;}
.y6f{bottom:689.213333pt;}
.y81{bottom:696.253333pt;}
.y15{bottom:696.413333pt;}
.y35{bottom:702.493333pt;}
.y9e{bottom:715.773333pt;}
.y6e{bottom:716.893333pt;}
.y80{bottom:728.413333pt;}
.y14{bottom:728.573333pt;}
.y34{bottom:734.333333pt;}
.y49{bottom:734.653333pt;}
.y7f{bottom:760.573333pt;}
.y13{bottom:760.733333pt;}
.y33{bottom:766.653333pt;}
.y48{bottom:766.973333pt;}
.y7e{bottom:788.413333pt;}
.y12{bottom:792.893333pt;}
.y32{bottom:799.133333pt;}
.y11{bottom:824.933333pt;}
.y31{bottom:831.333333pt;}
.y10{bottom:857.093333pt;}
.y30{bottom:863.493333pt;}
.yf{bottom:889.253333pt;}
.y2f{bottom:895.813333pt;}
.ye{bottom:917.253333pt;}
.y28{bottom:918.720000pt;}
.y2e{bottom:927.973333pt;}
.y2a{bottom:959.813333pt;}
.y2d{bottom:960.133333pt;}
.y2c{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h6{height:22.560000pt;}
.h2{height:35.840000pt;}
.h7{height:52.134375pt;}
.hb{height:53.746875pt;}
.h11{height:54.598989pt;}
.h4{height:59.066667pt;}
.hf{height:61.717500pt;}
.hd{height:64.752187pt;}
.ha{height:73.454062pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h10{height:76.964840pt;}
.hc{height:90.560000pt;}
.h8{height:98.400000pt;}
.he{height:129.000000pt;}
.h9{height:161.812500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:108.800000pt;}
.w3{width:145.626667pt;}
.w4{width:150.426667pt;}
.w2{width:167.538667pt;}
.w6{width:616.800000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4{left:20.160000pt;}
.x7{left:26.560000pt;}
.x12{left:67.546667pt;}
.x8{left:79.712000pt;}
.x6{left:89.312000pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.x18{left:113.312000pt;}
.xf{left:127.072000pt;}
.x29{left:134.266667pt;}
.x19{left:137.306667pt;}
.x27{left:139.386667pt;}
.x22{left:146.106667pt;}
.x10{left:150.906667pt;}
.x2e{left:153.466667pt;}
.x2b{left:161.786667pt;}
.x25{left:170.586667pt;}
.x17{left:174.426667pt;}
.x1e{left:189.466667pt;}
.x13{left:191.226667pt;}
.x1b{left:192.506667pt;}
.xd{left:230.426667pt;}
.x2f{left:232.986667pt;}
.x15{left:237.666667pt;}
.x11{left:246.946667pt;}
.x2c{left:251.586667pt;}
.x1c{left:263.106667pt;}
.x14{left:308.413333pt;}
.x16{left:310.786667pt;}
.xc{left:324.546667pt;}
.xb{left:335.586667pt;}
.xa{left:344.546667pt;}
.x34{left:357.986667pt;}
.x23{left:361.346667pt;}
.x31{left:363.586667pt;}
.x20{left:412.253333pt;}
.xe{left:421.373333pt;}
.x1d{left:485.053333pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.x21{left:600.613333pt;}
.x1a{left:604.773333pt;}
.x1f{left:606.373333pt;}
.x26{left:615.813333pt;}
.x28{left:622.533333pt;}
.x24{left:634.693333pt;}
.x33{left:637.413333pt;}
.x2a{left:639.333333pt;}
.x2d{left:643.653333pt;}
.x32{left:653.253333pt;}
.x30{left:656.293333pt;}
.x9{left:707.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; }
  