
    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_dfb93b7cf8cf9895e9e60e22.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_cadf187c081fb66df01f5ec6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7418f09feaa5fb1be2fd3d2c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_7932b3e4df3ce71c0aa550b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_f3a3886715d7b1848c03e14b.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_23049e968cfc18736582cf01.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_cbcd1dea88fc89d3bbeff222.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_338209f89ab41d7b9b7624eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_a0d25677391cf01e25add1c7.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-78.480000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378600px;}
.ls2{letter-spacing:0.720000px;}
.ls7{letter-spacing:2.700000px;}
.ls11{letter-spacing:4.860000px;}
.ls12{letter-spacing:5.580000px;}
.ls18{letter-spacing:7.020000px;}
.ls3{letter-spacing:9.360000px;}
.ls14{letter-spacing:9.900000px;}
.ls15{letter-spacing:12.780000px;}
.ls8{letter-spacing:13.500000px;}
.ls4{letter-spacing:13.860000px;}
.ls19{letter-spacing:19.980000px;}
.ls1b{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.lsf{letter-spacing:119.141280px;}
.ls9{letter-spacing:122.021280px;}
.lse{letter-spacing:123.461280px;}
.ls17{letter-spacing:125.621280px;}
.lsb{letter-spacing:132.624000px;}
.lsa{letter-spacing:136.224000px;}
.ls1{letter-spacing:1153.620000px;}
.ls1a{letter-spacing:1158.096000px;}
.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;}
}
.ws7{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._31{margin-left:-5.636880px;}
._13{margin-left:-3.998160px;}
._30{margin-left:-2.669760px;}
._0{margin-left:-1.516320px;}
._1{width:1.444320px;}
._4{width:3.168000px;}
._5{width:4.176000px;}
._6{width:5.328000px;}
._10{width:6.840000px;}
._f{width:7.888320px;}
._c{width:8.940000px;}
._b{width:10.080000px;}
._3{width:11.232000px;}
._2{width:12.312000px;}
._12{width:13.562640px;}
._11{width:14.657760px;}
._9{width:15.696000px;}
._a{width:16.776000px;}
._15{width:18.364320px;}
._14{width:19.796400px;}
._e{width:21.460320px;}
._d{width:22.536000px;}
._21{width:23.753520px;}
._1a{width:25.187760px;}
._1b{width:26.270640px;}
._1f{width:27.293760px;}
._1d{width:28.810080px;}
._27{width:30.157920px;}
._23{width:31.505760px;}
._24{width:32.853600px;}
._32{width:33.864480px;}
._28{width:34.875360px;}
._20{width:36.644400px;}
._1c{width:37.811520px;}
._18{width:39.087360px;}
._19{width:40.182480px;}
._2b{width:41.698800px;}
._2a{width:42.878160px;}
._2c{width:44.613600px;}
._26{width:46.753200px;}
._25{width:48.353760px;}
._7{width:49.464000px;}
._8{width:51.255360px;}
._22{width:52.565760px;}
._17{width:53.745120px;}
._16{width:55.008720px;}
._2f{width:56.188080px;}
._33{width:57.535920px;}
._34{width:58.871520px;}
._2e{width:60.652800px;}
._2d{width:66.802320px;}
._29{width:78.646800px;}
._1e{width:86.346000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc6{color:rgb(70,120,134);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y31{bottom:88.236000px;}
.y8d{bottom:92.916000px;}
.yb1{bottom:94.536000px;}
.y30{bottom:105.516000px;}
.y2f{bottom:110.736000px;}
.y8c{bottom:120.636000px;}
.yb0{bottom:122.436000px;}
.y9d{bottom:122.796000px;}
.y2e{bottom:124.056000px;}
.y5c{bottom:124.236000px;}
.y53{bottom:125.676000px;}
.y9c{bottom:128.016000px;}
.y9b{bottom:141.336000px;}
.ye7{bottom:147.996000px;}
.y8b{bottom:148.536000px;}
.yaf{bottom:150.150000px;}
.y5b{bottom:151.950000px;}
.y52{bottom:153.570000px;}
.yc3{bottom:156.450000px;}
.y2d{bottom:175.170000px;}
.y8a{bottom:176.250000px;}
.yae{bottom:177.870000px;}
.y5a{bottom:179.670000px;}
.y51{bottom:181.290000px;}
.y9a{bottom:182.730000px;}
.ye6{bottom:184.170000px;}
.yc2{bottom:184.350000px;}
.y2c{bottom:202.890000px;}
.y89{bottom:203.970000px;}
.yad{bottom:205.590000px;}
.ye5{bottom:207.750000px;}
.y50{bottom:209.010000px;}
.y99{bottom:210.630000px;}
.yc1{bottom:212.070000px;}
.ye4{bottom:228.450000px;}
.y2b{bottom:230.610000px;}
.y88{bottom:231.690000px;}
.yac{bottom:233.490000px;}
.y4f{bottom:236.910000px;}
.y98{bottom:238.350000px;}
.yc0{bottom:239.790000px;}
.ye3{bottom:249.150000px;}
.y87{bottom:259.590000px;}
.y2a{bottom:259.950000px;}
.yab{bottom:261.210000px;}
.y4e{bottom:264.630000px;}
.y97{bottom:266.070000px;}
.ybf{bottom:267.690000px;}
.ye2{bottom:269.850000px;}
.y86{bottom:287.355000px;}
.y29{bottom:287.715000px;}
.y75{bottom:287.895000px;}
.yaa{bottom:288.975000px;}
.ye1{bottom:290.595000px;}
.y4d{bottom:292.395000px;}
.y96{bottom:293.835000px;}
.ybe{bottom:295.455000px;}
.ye0{bottom:311.295000px;}
.y85{bottom:315.075000px;}
.y28{bottom:315.615000px;}
.ya9{bottom:316.875000px;}
.y4c{bottom:320.115000px;}
.y95{bottom:321.735000px;}
.ybd{bottom:323.175000px;}
.ydf{bottom:331.995000px;}
.y84{bottom:342.975000px;}
.y27{bottom:343.335000px;}
.y74{bottom:343.515000px;}
.ya8{bottom:344.595000px;}
.y4b{bottom:348.015000px;}
.y59{bottom:349.455000px;}
.ybc{bottom:350.895000px;}
.yde{bottom:352.695000px;}
.y83{bottom:370.695000px;}
.y26{bottom:371.055000px;}
.ya7{bottom:372.315000px;}
.ydd{bottom:373.395000px;}
.y4a{bottom:375.735000px;}
.y58{bottom:377.175000px;}
.ybb{bottom:378.795000px;}
.ydc{bottom:394.095000px;}
.y82{bottom:398.415000px;}
.y25{bottom:398.775000px;}
.ya6{bottom:400.035000px;}
.y73{bottom:400.575000px;}
.y49{bottom:403.455000px;}
.y57{bottom:405.075000px;}
.yba{bottom:406.515000px;}
.ydb{bottom:414.795000px;}
.y81{bottom:426.135000px;}
.y24{bottom:427.935000px;}
.y72{bottom:428.295000px;}
.y48{bottom:431.355000px;}
.y56{bottom:432.795000px;}
.yb9{bottom:434.235000px;}
.yda{bottom:435.495000px;}
.y23{bottom:453.135000px;}
.y80{bottom:454.035000px;}
.ya5{bottom:455.655000px;}
.y71{bottom:456.015000px;}
.yd9{bottom:456.195000px;}
.y47{bottom:458.895000px;}
.ya0{bottom:459.075000px;}
.y55{bottom:460.515000px;}
.yb8{bottom:461.955000px;}
.y22{bottom:473.835000px;}
.yd8{bottom:476.895000px;}
.y7f{bottom:481.755000px;}
.ya4{bottom:483.375000px;}
.y70{bottom:483.735000px;}
.y9f{bottom:486.615000px;}
.y46{bottom:488.235000px;}
.yb7{bottom:489.855000px;}
.y21{bottom:494.535000px;}
.yd7{bottom:497.595000px;}
.y7e{bottom:509.475000px;}
.y6f{bottom:511.635000px;}
.y20{bottom:515.235000px;}
.y45{bottom:516.135000px;}
.yb6{bottom:517.575000px;}
.ya3{bottom:526.035000px;}
.y1f{bottom:535.935000px;}
.yd6{bottom:537.915000px;}
.y7d{bottom:538.815000px;}
.y6e{bottom:539.355000px;}
.y44{bottom:543.855000px;}
.yb5{bottom:545.295000px;}
.yd5{bottom:555.015000px;}
.y1e{bottom:556.635000px;}
.y7c{bottom:566.565000px;}
.y6d{bottom:567.105000px;}
.ya2{bottom:568.905000px;}
.y43{bottom:571.605000px;}
.yb4{bottom:573.225000px;}
.y1d{bottom:577.365000px;}
.yd4{bottom:579.165000px;}
.ya1{bottom:593.745000px;}
.y7b{bottom:594.285000px;}
.y6c{bottom:595.005000px;}
.y1c{bottom:598.065000px;}
.y42{bottom:599.505000px;}
.yb3{bottom:600.945000px;}
.yd3{bottom:603.285000px;}
.y1b{bottom:618.765000px;}
.y7a{bottom:622.185000px;}
.y6b{bottom:622.725000px;}
.y41{bottom:627.045000px;}
.y94{bottom:627.225000px;}
.yd2{bottom:627.405000px;}
.yb2{bottom:628.665000px;}
.y1a{bottom:639.465000px;}
.y79{bottom:649.905000px;}
.y6a{bottom:650.445000px;}
.yd1{bottom:651.705000px;}
.y93{bottom:654.945000px;}
.y40{bottom:656.385000px;}
.y19{bottom:660.165000px;}
.yd0{bottom:675.825000px;}
.y78{bottom:677.625000px;}
.y69{bottom:678.165000px;}
.y18{bottom:680.865000px;}
.y92{bottom:682.665000px;}
.y3f{bottom:684.285000px;}
.ycf{bottom:699.945000px;}
.y17{bottom:701.565000px;}
.y68{bottom:705.885000px;}
.y91{bottom:710.565000px;}
.y3e{bottom:712.005000px;}
.y77{bottom:720.285000px;}
.y16{bottom:722.265000px;}
.yce{bottom:724.065000px;}
.y67{bottom:735.225000px;}
.y90{bottom:738.285000px;}
.y3d{bottom:739.725000px;}
.y15{bottom:742.965000px;}
.y76{bottom:745.125000px;}
.ycd{bottom:748.185000px;}
.y66{bottom:762.945000px;}
.y14{bottom:763.665000px;}
.y8f{bottom:766.005000px;}
.y3c{bottom:767.625000px;}
.ycc{bottom:772.305000px;}
.y13{bottom:784.365000px;}
.y65{bottom:792.285000px;}
.y9e{bottom:793.725000px;}
.y3b{bottom:795.345000px;}
.ycb{bottom:796.605000px;}
.y12{bottom:805.065000px;}
.y64{bottom:820.005000px;}
.yca{bottom:820.725000px;}
.y3a{bottom:823.065000px;}
.y11{bottom:825.765000px;}
.yc9{bottom:844.845000px;}
.y10{bottom:846.465000px;}
.y63{bottom:849.390000px;}
.y39{bottom:850.830000px;}
.yf{bottom:867.210000px;}
.yc8{bottom:869.010000px;}
.y62{bottom:877.110000px;}
.y38{bottom:878.730000px;}
.ye{bottom:887.910000px;}
.yc7{bottom:893.130000px;}
.y61{bottom:905.010000px;}
.y37{bottom:906.450000px;}
.yd{bottom:908.610000px;}
.yc{bottom:914.550000px;}
.yc6{bottom:917.250000px;}
.yb{bottom:929.310000px;}
.y60{bottom:932.730000px;}
.y36{bottom:934.170000px;}
.yc5{bottom:941.370000px;}
.y5f{bottom:960.450000px;}
.y35{bottom:961.890000px;}
.yc4{bottom:965.670000px;}
.y8e{bottom:969.450000px;}
.ya{bottom:970.710000px;}
.y5e{bottom:988.170000px;}
.y34{bottom:989.790000px;}
.y9{bottom:991.410000px;}
.y8{bottom:1012.110000px;}
.y5d{bottom:1015.890000px;}
.y33{bottom:1017.510000px;}
.y7{bottom:1031.730000px;}
.y32{bottom:1045.230000px;}
.y6{bottom:1048.830000px;}
.y54{bottom:1072.950000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hc{height:38.158594px;}
.h9{height:48.616875px;}
.h12{height:49.868086px;}
.h11{height:52.998047px;}
.h6{height:54.421875px;}
.hd{height:58.651172px;}
.ha{height:61.171875px;}
.h13{height:61.423863px;}
.hb{height:70.295977px;}
.h8{height:70.628906px;}
.h14{height:70.664062px;}
.h7{height:72.562500px;}
.h5{height:73.710000px;}
.hf{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h10{height:86.585445px;}
.he{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:27.360000px;}
.x1{left:84.959987px;}
.xf{left:89.855987px;}
.x4{left:95.795987px;}
.x19{left:117.035987px;}
.xc{left:138.095987px;}
.x11{left:199.289987px;}
.x8{left:228.629987px;}
.x14{left:252.929987px;}
.x10{left:297.974987px;}
.xe{left:301.034987px;}
.x7{left:339.734987px;}
.x18{left:389.054987px;}
.x5{left:402.734987px;}
.x2{left:409.035000px;}
.x12{left:440.174987px;}
.x6{left:446.474987px;}
.xd{left:450.254987px;}
.x9{left:472.964987px;}
.x13{left:657.104987px;}
.x17{left:683.609987px;}
.x15{left:738.329973px;}
.x16{left:745.169987px;}
.xa{left:801.869973px;}
.xb{left:807.989987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-69.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336533pt;}
.ls2{letter-spacing:0.640000pt;}
.ls7{letter-spacing:2.400000pt;}
.ls11{letter-spacing:4.320000pt;}
.ls12{letter-spacing:4.960000pt;}
.ls18{letter-spacing:6.240000pt;}
.ls3{letter-spacing:8.320000pt;}
.ls14{letter-spacing:8.800000pt;}
.ls15{letter-spacing:11.360000pt;}
.ls8{letter-spacing:12.000000pt;}
.ls4{letter-spacing:12.320000pt;}
.ls19{letter-spacing:17.760000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.lsf{letter-spacing:105.903360pt;}
.ls9{letter-spacing:108.463360pt;}
.lse{letter-spacing:109.743360pt;}
.ls17{letter-spacing:111.663360pt;}
.lsb{letter-spacing:117.888000pt;}
.lsa{letter-spacing:121.088000pt;}
.ls1{letter-spacing:1025.440000pt;}
.ls1a{letter-spacing:1029.418667pt;}
.ws7{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._31{margin-left:-5.010560pt;}
._13{margin-left:-3.553920pt;}
._30{margin-left:-2.373120pt;}
._0{margin-left:-1.347840pt;}
._1{width:1.283840pt;}
._4{width:2.816000pt;}
._5{width:3.712000pt;}
._6{width:4.736000pt;}
._10{width:6.080000pt;}
._f{width:7.011840pt;}
._c{width:7.946667pt;}
._b{width:8.960000pt;}
._3{width:9.984000pt;}
._2{width:10.944000pt;}
._12{width:12.055680pt;}
._11{width:13.029120pt;}
._9{width:13.952000pt;}
._a{width:14.912000pt;}
._15{width:16.323840pt;}
._14{width:17.596800pt;}
._e{width:19.075840pt;}
._d{width:20.032000pt;}
._21{width:21.114240pt;}
._1a{width:22.389120pt;}
._1b{width:23.351680pt;}
._1f{width:24.261120pt;}
._1d{width:25.608960pt;}
._27{width:26.807040pt;}
._23{width:28.005120pt;}
._24{width:29.203200pt;}
._32{width:30.101760pt;}
._28{width:31.000320pt;}
._20{width:32.572800pt;}
._1c{width:33.610240pt;}
._18{width:34.744320pt;}
._19{width:35.717760pt;}
._2b{width:37.065600pt;}
._2a{width:38.113920pt;}
._2c{width:39.656533pt;}
._26{width:41.558400pt;}
._25{width:42.981120pt;}
._7{width:43.968000pt;}
._8{width:45.560320pt;}
._22{width:46.725120pt;}
._17{width:47.773440pt;}
._16{width:48.896640pt;}
._2f{width:49.944960pt;}
._33{width:51.143040pt;}
._34{width:52.330240pt;}
._2e{width:53.913600pt;}
._2d{width:59.379840pt;}
._29{width:69.908267pt;}
._1e{width:76.752000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y31{bottom:78.432000pt;}
.y8d{bottom:82.592000pt;}
.yb1{bottom:84.032000pt;}
.y30{bottom:93.792000pt;}
.y2f{bottom:98.432000pt;}
.y8c{bottom:107.232000pt;}
.yb0{bottom:108.832000pt;}
.y9d{bottom:109.152000pt;}
.y2e{bottom:110.272000pt;}
.y5c{bottom:110.432000pt;}
.y53{bottom:111.712000pt;}
.y9c{bottom:113.792000pt;}
.y9b{bottom:125.632000pt;}
.ye7{bottom:131.552000pt;}
.y8b{bottom:132.032000pt;}
.yaf{bottom:133.466667pt;}
.y5b{bottom:135.066667pt;}
.y52{bottom:136.506667pt;}
.yc3{bottom:139.066667pt;}
.y2d{bottom:155.706667pt;}
.y8a{bottom:156.666667pt;}
.yae{bottom:158.106667pt;}
.y5a{bottom:159.706667pt;}
.y51{bottom:161.146667pt;}
.y9a{bottom:162.426667pt;}
.ye6{bottom:163.706667pt;}
.yc2{bottom:163.866667pt;}
.y2c{bottom:180.346667pt;}
.y89{bottom:181.306667pt;}
.yad{bottom:182.746667pt;}
.ye5{bottom:184.666667pt;}
.y50{bottom:185.786667pt;}
.y99{bottom:187.226667pt;}
.yc1{bottom:188.506667pt;}
.ye4{bottom:203.066667pt;}
.y2b{bottom:204.986667pt;}
.y88{bottom:205.946667pt;}
.yac{bottom:207.546667pt;}
.y4f{bottom:210.586667pt;}
.y98{bottom:211.866667pt;}
.yc0{bottom:213.146667pt;}
.ye3{bottom:221.466667pt;}
.y87{bottom:230.746667pt;}
.y2a{bottom:231.066667pt;}
.yab{bottom:232.186667pt;}
.y4e{bottom:235.226667pt;}
.y97{bottom:236.506667pt;}
.ybf{bottom:237.946667pt;}
.ye2{bottom:239.866667pt;}
.y86{bottom:255.426667pt;}
.y29{bottom:255.746667pt;}
.y75{bottom:255.906667pt;}
.yaa{bottom:256.866667pt;}
.ye1{bottom:258.306667pt;}
.y4d{bottom:259.906667pt;}
.y96{bottom:261.186667pt;}
.ybe{bottom:262.626667pt;}
.ye0{bottom:276.706667pt;}
.y85{bottom:280.066667pt;}
.y28{bottom:280.546667pt;}
.ya9{bottom:281.666667pt;}
.y4c{bottom:284.546667pt;}
.y95{bottom:285.986667pt;}
.ybd{bottom:287.266667pt;}
.ydf{bottom:295.106667pt;}
.y84{bottom:304.866667pt;}
.y27{bottom:305.186667pt;}
.y74{bottom:305.346667pt;}
.ya8{bottom:306.306667pt;}
.y4b{bottom:309.346667pt;}
.y59{bottom:310.626667pt;}
.ybc{bottom:311.906667pt;}
.yde{bottom:313.506667pt;}
.y83{bottom:329.506667pt;}
.y26{bottom:329.826667pt;}
.ya7{bottom:330.946667pt;}
.ydd{bottom:331.906667pt;}
.y4a{bottom:333.986667pt;}
.y58{bottom:335.266667pt;}
.ybb{bottom:336.706667pt;}
.ydc{bottom:350.306667pt;}
.y82{bottom:354.146667pt;}
.y25{bottom:354.466667pt;}
.ya6{bottom:355.586667pt;}
.y73{bottom:356.066667pt;}
.y49{bottom:358.626667pt;}
.y57{bottom:360.066667pt;}
.yba{bottom:361.346667pt;}
.ydb{bottom:368.706667pt;}
.y81{bottom:378.786667pt;}
.y24{bottom:380.386667pt;}
.y72{bottom:380.706667pt;}
.y48{bottom:383.426667pt;}
.y56{bottom:384.706667pt;}
.yb9{bottom:385.986667pt;}
.yda{bottom:387.106667pt;}
.y23{bottom:402.786667pt;}
.y80{bottom:403.586667pt;}
.ya5{bottom:405.026667pt;}
.y71{bottom:405.346667pt;}
.yd9{bottom:405.506667pt;}
.y47{bottom:407.906667pt;}
.ya0{bottom:408.066667pt;}
.y55{bottom:409.346667pt;}
.yb8{bottom:410.626667pt;}
.y22{bottom:421.186667pt;}
.yd8{bottom:423.906667pt;}
.y7f{bottom:428.226667pt;}
.ya4{bottom:429.666667pt;}
.y70{bottom:429.986667pt;}
.y9f{bottom:432.546667pt;}
.y46{bottom:433.986667pt;}
.yb7{bottom:435.426667pt;}
.y21{bottom:439.586667pt;}
.yd7{bottom:442.306667pt;}
.y7e{bottom:452.866667pt;}
.y6f{bottom:454.786667pt;}
.y20{bottom:457.986667pt;}
.y45{bottom:458.786667pt;}
.yb6{bottom:460.066667pt;}
.ya3{bottom:467.586667pt;}
.y1f{bottom:476.386667pt;}
.yd6{bottom:478.146667pt;}
.y7d{bottom:478.946667pt;}
.y6e{bottom:479.426667pt;}
.y44{bottom:483.426667pt;}
.yb5{bottom:484.706667pt;}
.yd5{bottom:493.346667pt;}
.y1e{bottom:494.786667pt;}
.y7c{bottom:503.613333pt;}
.y6d{bottom:504.093333pt;}
.ya2{bottom:505.693333pt;}
.y43{bottom:508.093333pt;}
.yb4{bottom:509.533333pt;}
.y1d{bottom:513.213333pt;}
.yd4{bottom:514.813333pt;}
.ya1{bottom:527.773333pt;}
.y7b{bottom:528.253333pt;}
.y6c{bottom:528.893333pt;}
.y1c{bottom:531.613333pt;}
.y42{bottom:532.893333pt;}
.yb3{bottom:534.173333pt;}
.yd3{bottom:536.253333pt;}
.y1b{bottom:550.013333pt;}
.y7a{bottom:553.053333pt;}
.y6b{bottom:553.533333pt;}
.y41{bottom:557.373333pt;}
.y94{bottom:557.533333pt;}
.yd2{bottom:557.693333pt;}
.yb2{bottom:558.813333pt;}
.y1a{bottom:568.413333pt;}
.y79{bottom:577.693333pt;}
.y6a{bottom:578.173333pt;}
.yd1{bottom:579.293333pt;}
.y93{bottom:582.173333pt;}
.y40{bottom:583.453333pt;}
.y19{bottom:586.813333pt;}
.yd0{bottom:600.733333pt;}
.y78{bottom:602.333333pt;}
.y69{bottom:602.813333pt;}
.y18{bottom:605.213333pt;}
.y92{bottom:606.813333pt;}
.y3f{bottom:608.253333pt;}
.ycf{bottom:622.173333pt;}
.y17{bottom:623.613333pt;}
.y68{bottom:627.453333pt;}
.y91{bottom:631.613333pt;}
.y3e{bottom:632.893333pt;}
.y77{bottom:640.253333pt;}
.y16{bottom:642.013333pt;}
.yce{bottom:643.613333pt;}
.y67{bottom:653.533333pt;}
.y90{bottom:656.253333pt;}
.y3d{bottom:657.533333pt;}
.y15{bottom:660.413333pt;}
.y76{bottom:662.333333pt;}
.ycd{bottom:665.053333pt;}
.y66{bottom:678.173333pt;}
.y14{bottom:678.813333pt;}
.y8f{bottom:680.893333pt;}
.y3c{bottom:682.333333pt;}
.ycc{bottom:686.493333pt;}
.y13{bottom:697.213333pt;}
.y65{bottom:704.253333pt;}
.y9e{bottom:705.533333pt;}
.y3b{bottom:706.973333pt;}
.ycb{bottom:708.093333pt;}
.y12{bottom:715.613333pt;}
.y64{bottom:728.893333pt;}
.yca{bottom:729.533333pt;}
.y3a{bottom:731.613333pt;}
.y11{bottom:734.013333pt;}
.yc9{bottom:750.973333pt;}
.y10{bottom:752.413333pt;}
.y63{bottom:755.013333pt;}
.y39{bottom:756.293333pt;}
.yf{bottom:770.853333pt;}
.yc8{bottom:772.453333pt;}
.y62{bottom:779.653333pt;}
.y38{bottom:781.093333pt;}
.ye{bottom:789.253333pt;}
.yc7{bottom:793.893333pt;}
.y61{bottom:804.453333pt;}
.y37{bottom:805.733333pt;}
.yd{bottom:807.653333pt;}
.yc{bottom:812.933333pt;}
.yc6{bottom:815.333333pt;}
.yb{bottom:826.053333pt;}
.y60{bottom:829.093333pt;}
.y36{bottom:830.373333pt;}
.yc5{bottom:836.773333pt;}
.y5f{bottom:853.733333pt;}
.y35{bottom:855.013333pt;}
.yc4{bottom:858.373333pt;}
.y8e{bottom:861.733333pt;}
.ya{bottom:862.853333pt;}
.y5e{bottom:878.373333pt;}
.y34{bottom:879.813333pt;}
.y9{bottom:881.253333pt;}
.y8{bottom:899.653333pt;}
.y5d{bottom:903.013333pt;}
.y33{bottom:904.453333pt;}
.y7{bottom:917.093333pt;}
.y32{bottom:929.093333pt;}
.y6{bottom:932.293333pt;}
.y54{bottom:953.733333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hc{height:33.918750pt;}
.h9{height:43.215000pt;}
.h12{height:44.327188pt;}
.h11{height:47.109375pt;}
.h6{height:48.375000pt;}
.hd{height:52.134375pt;}
.ha{height:54.375000pt;}
.h13{height:54.598989pt;}
.hb{height:62.485312pt;}
.h8{height:62.781250pt;}
.h14{height:62.812500pt;}
.h7{height:64.500000pt;}
.h5{height:65.520000pt;}
.hf{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h10{height:76.964840pt;}
.he{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:24.320000pt;}
.x1{left:75.519988pt;}
.xf{left:79.871988pt;}
.x4{left:85.151988pt;}
.x19{left:104.031988pt;}
.xc{left:122.751988pt;}
.x11{left:177.146655pt;}
.x8{left:203.226655pt;}
.x14{left:224.826655pt;}
.x10{left:264.866655pt;}
.xe{left:267.586655pt;}
.x7{left:301.986655pt;}
.x18{left:345.826655pt;}
.x5{left:357.986655pt;}
.x2{left:363.586667pt;}
.x12{left:391.266655pt;}
.x6{left:396.866655pt;}
.xd{left:400.226655pt;}
.x9{left:420.413322pt;}
.x13{left:584.093322pt;}
.x17{left:607.653322pt;}
.x15{left:656.293310pt;}
.x16{left:662.373322pt;}
.xa{left:712.773310pt;}
.xb{left:718.213322pt;}
}




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