
    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_f80fd5d644ed70aa0d92627c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_4aca62eebeb877e571bb79b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_327865c3c140203663ddaea1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6d8ac670f7b182d7c2ea70b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116699;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_77ae567dac365579aaca9bcb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.116699;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;}
.lsf{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls11{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.511800px;}
.lsc{letter-spacing:0.756000px;}
.ls8{letter-spacing:1.134720px;}
.ls3{letter-spacing:1.330560px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls1{letter-spacing:2.160000px;}
.ls17{letter-spacing:11.466720px;}
.ls9{letter-spacing:41.706720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.146400px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2617.848000px;}
._6{margin-left:-1594.356480px;}
._4{margin-left:-1366.159680px;}
._5{margin-left:-997.269120px;}
._7{margin-left:-576.313920px;}
._8{margin-left:-9.604800px;}
._15{margin-left:-8.445600px;}
._9{margin-left:-5.082720px;}
._a{margin-left:-3.643200px;}
._d{margin-left:-2.219040px;}
._3{margin-left:-1.059840px;}
._0{width:1.296000px;}
._1{width:3.090000px;}
._e{width:4.570800px;}
._f{width:5.825520px;}
._13{width:6.913680px;}
._12{width:8.145840px;}
._10{width:9.283440px;}
._14{width:11.231040px;}
._17{width:12.695520px;}
._18{width:13.938960px;}
._11{width:16.086720px;}
._19{width:17.095680px;}
._b{width:18.172080px;}
._c{width:19.639200px;}
._16{width:26.216640px;}
._1a{width:413.580000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y49{bottom:5.760000px;}
.y47{bottom:5.940000px;}
.y4e{bottom:7.560000px;}
.y4b{bottom:25.560000px;}
.y4d{bottom:27.360000px;}
.y6{bottom:60.300000px;}
.yae{bottom:87.876000px;}
.y6c{bottom:92.736000px;}
.y103{bottom:96.516000px;}
.yc5{bottom:98.856000px;}
.yde{bottom:104.076000px;}
.y92{bottom:107.316000px;}
.yad{bottom:107.676000px;}
.y6b{bottom:112.716000px;}
.y102{bottom:116.316000px;}
.yc4{bottom:118.656000px;}
.y32{bottom:120.636000px;}
.ydd{bottom:123.876000px;}
.y91{bottom:127.116000px;}
.yac{bottom:127.476000px;}
.y6a{bottom:132.516000px;}
.y101{bottom:136.116000px;}
.yc3{bottom:138.636000px;}
.y31{bottom:140.436000px;}
.ydc{bottom:143.676000px;}
.y90{bottom:146.916000px;}
.yab{bottom:147.276000px;}
.y69{bottom:152.310000px;}
.y100{bottom:155.910000px;}
.yc2{bottom:158.430000px;}
.y30{bottom:160.230000px;}
.ydb{bottom:163.470000px;}
.y8f{bottom:166.710000px;}
.yaa{bottom:167.250000px;}
.y68{bottom:172.110000px;}
.yff{bottom:175.710000px;}
.yc1{bottom:178.230000px;}
.y2f{bottom:180.210000px;}
.yda{bottom:183.270000px;}
.y8e{bottom:186.690000px;}
.ya9{bottom:187.050000px;}
.y67{bottom:191.910000px;}
.yfe{bottom:195.690000px;}
.yc0{bottom:198.030000px;}
.y2e{bottom:200.010000px;}
.yd9{bottom:203.250000px;}
.y8d{bottom:206.490000px;}
.ya8{bottom:206.850000px;}
.y66{bottom:211.890000px;}
.yfd{bottom:215.490000px;}
.ybf{bottom:217.830000px;}
.y2d{bottom:219.810000px;}
.yd8{bottom:223.050000px;}
.y8c{bottom:226.290000px;}
.ya7{bottom:226.650000px;}
.y65{bottom:231.690000px;}
.yfc{bottom:235.290000px;}
.ybe{bottom:237.810000px;}
.y2c{bottom:239.610000px;}
.y8b{bottom:246.090000px;}
.ya6{bottom:246.450000px;}
.yfb{bottom:255.090000px;}
.ybd{bottom:257.610000px;}
.y2b{bottom:259.410000px;}
.y64{bottom:260.490000px;}
.y8a{bottom:265.890000px;}
.ya5{bottom:266.430000px;}
.yfa{bottom:274.890000px;}
.ybc{bottom:277.410000px;}
.y107{bottom:278.670000px;}
.y2a{bottom:279.390000px;}
.y63{bottom:280.290000px;}
.y89{bottom:285.870000px;}
.ya4{bottom:286.230000px;}
.yf9{bottom:294.870000px;}
.ybb{bottom:297.210000px;}
.y29{bottom:299.190000px;}
.y62{bottom:300.090000px;}
.y88{bottom:305.670000px;}
.ya3{bottom:306.030000px;}
.y106{bottom:310.530000px;}
.yf8{bottom:314.670000px;}
.yba{bottom:317.010000px;}
.y28{bottom:318.990000px;}
.y61{bottom:320.070000px;}
.y87{bottom:325.470000px;}
.ya2{bottom:325.830000px;}
.yf7{bottom:334.515000px;}
.yb9{bottom:337.035000px;}
.y27{bottom:338.835000px;}
.y60{bottom:339.915000px;}
.y105{bottom:342.435000px;}
.y86{bottom:345.315000px;}
.ya1{bottom:345.675000px;}
.yf6{bottom:354.315000px;}
.yb8{bottom:356.835000px;}
.y26{bottom:358.635000px;}
.y5f{bottom:359.715000px;}
.y104{bottom:362.235000px;}
.y85{bottom:365.115000px;}
.ya0{bottom:365.655000px;}
.yf5{bottom:374.115000px;}
.yb7{bottom:376.635000px;}
.y25{bottom:378.615000px;}
.y5e{bottom:379.515000px;}
.y84{bottom:385.095000px;}
.y9f{bottom:385.455000px;}
.yf4{bottom:394.095000px;}
.yb6{bottom:396.435000px;}
.y24{bottom:398.415000px;}
.y5d{bottom:399.315000px;}
.y83{bottom:404.895000px;}
.y9e{bottom:405.255000px;}
.yf3{bottom:413.895000px;}
.yb5{bottom:416.235000px;}
.y23{bottom:418.215000px;}
.y5c{bottom:419.295000px;}
.y82{bottom:424.695000px;}
.y9d{bottom:425.055000px;}
.yf2{bottom:433.695000px;}
.yb4{bottom:436.215000px;}
.y22{bottom:438.015000px;}
.y81{bottom:444.495000px;}
.y9c{bottom:444.855000px;}
.y5b{bottom:448.095000px;}
.yf1{bottom:453.495000px;}
.yb3{bottom:456.015000px;}
.y21{bottom:457.815000px;}
.y80{bottom:464.295000px;}
.y9b{bottom:464.835000px;}
.y5a{bottom:467.895000px;}
.yf0{bottom:473.295000px;}
.yb2{bottom:475.815000px;}
.y20{bottom:477.615000px;}
.y7f{bottom:484.275000px;}
.y9a{bottom:484.635000px;}
.y59{bottom:487.695000px;}
.yef{bottom:493.275000px;}
.yb1{bottom:495.615000px;}
.y1f{bottom:497.595000px;}
.y7e{bottom:504.075000px;}
.y99{bottom:504.435000px;}
.y58{bottom:507.495000px;}
.yee{bottom:513.075000px;}
.yb0{bottom:515.415000px;}
.y1e{bottom:517.395000px;}
.yd7{bottom:519.915000px;}
.y7d{bottom:523.875000px;}
.y98{bottom:524.235000px;}
.y57{bottom:527.475000px;}
.yaf{bottom:532.155000px;}
.yed{bottom:532.875000px;}
.y1d{bottom:537.195000px;}
.yd6{bottom:539.895000px;}
.y7c{bottom:543.675000px;}
.y97{bottom:544.035000px;}
.y56{bottom:547.275000px;}
.yec{bottom:552.675000px;}
.y1c{bottom:556.995000px;}
.yd5{bottom:559.695000px;}
.y7b{bottom:563.475000px;}
.y96{bottom:564.015000px;}
.y55{bottom:567.075000px;}
.yeb{bottom:572.475000px;}
.y1b{bottom:576.795000px;}
.yd4{bottom:579.495000px;}
.y7a{bottom:583.455000px;}
.y95{bottom:583.815000px;}
.y54{bottom:586.875000px;}
.yea{bottom:592.455000px;}
.y1a{bottom:596.805000px;}
.yd3{bottom:599.325000px;}
.y79{bottom:603.285000px;}
.y94{bottom:603.645000px;}
.y53{bottom:606.705000px;}
.ye9{bottom:612.285000px;}
.y19{bottom:616.605000px;}
.yd2{bottom:619.125000px;}
.y93{bottom:620.205000px;}
.y78{bottom:623.085000px;}
.y52{bottom:626.685000px;}
.ye8{bottom:632.085000px;}
.y18{bottom:636.405000px;}
.yd1{bottom:639.105000px;}
.y77{bottom:642.885000px;}
.y51{bottom:646.485000px;}
.ye7{bottom:651.885000px;}
.y17{bottom:656.205000px;}
.yd0{bottom:658.905000px;}
.y76{bottom:662.685000px;}
.y50{bottom:666.285000px;}
.ye6{bottom:671.685000px;}
.y16{bottom:676.005000px;}
.ycf{bottom:678.705000px;}
.y75{bottom:682.665000px;}
.y4f{bottom:686.085000px;}
.ye5{bottom:691.665000px;}
.y15{bottom:695.985000px;}
.yce{bottom:698.505000px;}
.y4c{bottom:700.845000px;}
.y74{bottom:702.465000px;}
.ye4{bottom:711.465000px;}
.y14{bottom:717.945000px;}
.ycd{bottom:718.305000px;}
.y73{bottom:722.265000px;}
.ye3{bottom:731.265000px;}
.y13{bottom:737.925000px;}
.ycc{bottom:738.285000px;}
.y72{bottom:742.065000px;}
.y4a{bottom:743.145000px;}
.ye2{bottom:751.065000px;}
.ycb{bottom:758.085000px;}
.y71{bottom:761.865000px;}
.y12{bottom:766.725000px;}
.ye1{bottom:770.865000px;}
.yca{bottom:777.885000px;}
.y70{bottom:781.845000px;}
.y48{bottom:783.465000px;}
.y11{bottom:786.525000px;}
.ye0{bottom:790.845000px;}
.yc9{bottom:797.685000px;}
.y6f{bottom:801.645000px;}
.y46{bottom:803.985000px;}
.y10{bottom:806.325000px;}
.ydf{bottom:810.645000px;}
.yc8{bottom:817.485000px;}
.y6e{bottom:821.445000px;}
.yf{bottom:826.125000px;}
.y45{bottom:830.445000px;}
.yc7{bottom:837.465000px;}
.y6d{bottom:841.245000px;}
.ye{bottom:846.105000px;}
.y44{bottom:850.245000px;}
.yc6{bottom:854.025000px;}
.yd{bottom:865.950000px;}
.y43{bottom:870.090000px;}
.yc{bottom:885.750000px;}
.y42{bottom:890.070000px;}
.yb{bottom:907.890000px;}
.y41{bottom:909.870000px;}
.ya{bottom:927.690000px;}
.y40{bottom:929.670000px;}
.y9{bottom:948.030000px;}
.y3f{bottom:949.470000px;}
.y3e{bottom:969.270000px;}
.y3d{bottom:989.250000px;}
.y8{bottom:990.870000px;}
.y3c{bottom:1009.050000px;}
.y7{bottom:1022.730000px;}
.y3b{bottom:1028.850000px;}
.y3a{bottom:1048.650000px;}
.y5{bottom:1061.070000px;}
.y39{bottom:1068.450000px;}
.y38{bottom:1088.430000px;}
.y4{bottom:1091.850000px;}
.y37{bottom:1108.230000px;}
.y3{bottom:1122.810000px;}
.y36{bottom:1128.030000px;}
.y35{bottom:1147.860000px;}
.y2{bottom:1153.620000px;}
.y34{bottom:1174.500000px;}
.y1{bottom:1184.400000px;}
.y33{bottom:1193.580000px;}
.h9{height:19.800000px;}
.h8{height:19.980000px;}
.ha{height:39.600000px;}
.hb{height:41.400000px;}
.h7{height:42.164648px;}
.h6{height:43.506914px;}
.h2{height:46.736719px;}
.h5{height:52.435898px;}
.hc{height:53.836523px;}
.h3{height:58.121719px;}
.h4{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:158.430000px;}
.w5{width:272.730000px;}
.w4{width:318.315000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.x1{left:54.179987px;}
.x2{left:71.100000px;}
.xb{left:92.339987px;}
.xc{left:119.375987px;}
.x4{left:230.250000px;}
.x7{left:358.634987px;}
.x5{left:549.285000px;}
.x6{left:786.749987px;}
.x9{left:798.629987px;}
.xa{left:799.889987px;}
.x8{left:804.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls11{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.454933pt;}
.lsc{letter-spacing:0.672000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls3{letter-spacing:1.182720pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls1{letter-spacing:1.920000pt;}
.ls17{letter-spacing:10.192640pt;}
.ls9{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.463467pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws5{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2326.976000pt;}
._6{margin-left:-1417.205760pt;}
._4{margin-left:-1214.364160pt;}
._5{margin-left:-886.461440pt;}
._7{margin-left:-512.279040pt;}
._8{margin-left:-8.537600pt;}
._15{margin-left:-7.507200pt;}
._9{margin-left:-4.517973pt;}
._a{margin-left:-3.238400pt;}
._d{margin-left:-1.972480pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._1{width:2.746667pt;}
._e{width:4.062933pt;}
._f{width:5.178240pt;}
._13{width:6.145493pt;}
._12{width:7.240747pt;}
._10{width:8.251947pt;}
._14{width:9.983147pt;}
._17{width:11.284907pt;}
._18{width:12.390187pt;}
._11{width:14.299307pt;}
._19{width:15.196160pt;}
._b{width:16.152960pt;}
._c{width:17.457067pt;}
._16{width:23.303680pt;}
._1a{width:367.626667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:5.120000pt;}
.y47{bottom:5.280000pt;}
.y4e{bottom:6.720000pt;}
.y4b{bottom:22.720000pt;}
.y4d{bottom:24.320000pt;}
.y6{bottom:53.600000pt;}
.yae{bottom:78.112000pt;}
.y6c{bottom:82.432000pt;}
.y103{bottom:85.792000pt;}
.yc5{bottom:87.872000pt;}
.yde{bottom:92.512000pt;}
.y92{bottom:95.392000pt;}
.yad{bottom:95.712000pt;}
.y6b{bottom:100.192000pt;}
.y102{bottom:103.392000pt;}
.yc4{bottom:105.472000pt;}
.y32{bottom:107.232000pt;}
.ydd{bottom:110.112000pt;}
.y91{bottom:112.992000pt;}
.yac{bottom:113.312000pt;}
.y6a{bottom:117.792000pt;}
.y101{bottom:120.992000pt;}
.yc3{bottom:123.232000pt;}
.y31{bottom:124.832000pt;}
.ydc{bottom:127.712000pt;}
.y90{bottom:130.592000pt;}
.yab{bottom:130.912000pt;}
.y69{bottom:135.386667pt;}
.y100{bottom:138.586667pt;}
.yc2{bottom:140.826667pt;}
.y30{bottom:142.426667pt;}
.ydb{bottom:145.306667pt;}
.y8f{bottom:148.186667pt;}
.yaa{bottom:148.666667pt;}
.y68{bottom:152.986667pt;}
.yff{bottom:156.186667pt;}
.yc1{bottom:158.426667pt;}
.y2f{bottom:160.186667pt;}
.yda{bottom:162.906667pt;}
.y8e{bottom:165.946667pt;}
.ya9{bottom:166.266667pt;}
.y67{bottom:170.586667pt;}
.yfe{bottom:173.946667pt;}
.yc0{bottom:176.026667pt;}
.y2e{bottom:177.786667pt;}
.yd9{bottom:180.666667pt;}
.y8d{bottom:183.546667pt;}
.ya8{bottom:183.866667pt;}
.y66{bottom:188.346667pt;}
.yfd{bottom:191.546667pt;}
.ybf{bottom:193.626667pt;}
.y2d{bottom:195.386667pt;}
.yd8{bottom:198.266667pt;}
.y8c{bottom:201.146667pt;}
.ya7{bottom:201.466667pt;}
.y65{bottom:205.946667pt;}
.yfc{bottom:209.146667pt;}
.ybe{bottom:211.386667pt;}
.y2c{bottom:212.986667pt;}
.y8b{bottom:218.746667pt;}
.ya6{bottom:219.066667pt;}
.yfb{bottom:226.746667pt;}
.ybd{bottom:228.986667pt;}
.y2b{bottom:230.586667pt;}
.y64{bottom:231.546667pt;}
.y8a{bottom:236.346667pt;}
.ya5{bottom:236.826667pt;}
.yfa{bottom:244.346667pt;}
.ybc{bottom:246.586667pt;}
.y107{bottom:247.706667pt;}
.y2a{bottom:248.346667pt;}
.y63{bottom:249.146667pt;}
.y89{bottom:254.106667pt;}
.ya4{bottom:254.426667pt;}
.yf9{bottom:262.106667pt;}
.ybb{bottom:264.186667pt;}
.y29{bottom:265.946667pt;}
.y62{bottom:266.746667pt;}
.y88{bottom:271.706667pt;}
.ya3{bottom:272.026667pt;}
.y106{bottom:276.026667pt;}
.yf8{bottom:279.706667pt;}
.yba{bottom:281.786667pt;}
.y28{bottom:283.546667pt;}
.y61{bottom:284.506667pt;}
.y87{bottom:289.306667pt;}
.ya2{bottom:289.626667pt;}
.yf7{bottom:297.346667pt;}
.yb9{bottom:299.586667pt;}
.y27{bottom:301.186667pt;}
.y60{bottom:302.146667pt;}
.y105{bottom:304.386667pt;}
.y86{bottom:306.946667pt;}
.ya1{bottom:307.266667pt;}
.yf6{bottom:314.946667pt;}
.yb8{bottom:317.186667pt;}
.y26{bottom:318.786667pt;}
.y5f{bottom:319.746667pt;}
.y104{bottom:321.986667pt;}
.y85{bottom:324.546667pt;}
.ya0{bottom:325.026667pt;}
.yf5{bottom:332.546667pt;}
.yb7{bottom:334.786667pt;}
.y25{bottom:336.546667pt;}
.y5e{bottom:337.346667pt;}
.y84{bottom:342.306667pt;}
.y9f{bottom:342.626667pt;}
.yf4{bottom:350.306667pt;}
.yb6{bottom:352.386667pt;}
.y24{bottom:354.146667pt;}
.y5d{bottom:354.946667pt;}
.y83{bottom:359.906667pt;}
.y9e{bottom:360.226667pt;}
.yf3{bottom:367.906667pt;}
.yb5{bottom:369.986667pt;}
.y23{bottom:371.746667pt;}
.y5c{bottom:372.706667pt;}
.y82{bottom:377.506667pt;}
.y9d{bottom:377.826667pt;}
.yf2{bottom:385.506667pt;}
.yb4{bottom:387.746667pt;}
.y22{bottom:389.346667pt;}
.y81{bottom:395.106667pt;}
.y9c{bottom:395.426667pt;}
.y5b{bottom:398.306667pt;}
.yf1{bottom:403.106667pt;}
.yb3{bottom:405.346667pt;}
.y21{bottom:406.946667pt;}
.y80{bottom:412.706667pt;}
.y9b{bottom:413.186667pt;}
.y5a{bottom:415.906667pt;}
.yf0{bottom:420.706667pt;}
.yb2{bottom:422.946667pt;}
.y20{bottom:424.546667pt;}
.y7f{bottom:430.466667pt;}
.y9a{bottom:430.786667pt;}
.y59{bottom:433.506667pt;}
.yef{bottom:438.466667pt;}
.yb1{bottom:440.546667pt;}
.y1f{bottom:442.306667pt;}
.y7e{bottom:448.066667pt;}
.y99{bottom:448.386667pt;}
.y58{bottom:451.106667pt;}
.yee{bottom:456.066667pt;}
.yb0{bottom:458.146667pt;}
.y1e{bottom:459.906667pt;}
.yd7{bottom:462.146667pt;}
.y7d{bottom:465.666667pt;}
.y98{bottom:465.986667pt;}
.y57{bottom:468.866667pt;}
.yaf{bottom:473.026667pt;}
.yed{bottom:473.666667pt;}
.y1d{bottom:477.506667pt;}
.yd6{bottom:479.906667pt;}
.y7c{bottom:483.266667pt;}
.y97{bottom:483.586667pt;}
.y56{bottom:486.466667pt;}
.yec{bottom:491.266667pt;}
.y1c{bottom:495.106667pt;}
.yd5{bottom:497.506667pt;}
.y7b{bottom:500.866667pt;}
.y96{bottom:501.346667pt;}
.y55{bottom:504.066667pt;}
.yeb{bottom:508.866667pt;}
.y1b{bottom:512.706667pt;}
.yd4{bottom:515.106667pt;}
.y7a{bottom:518.626667pt;}
.y95{bottom:518.946667pt;}
.y54{bottom:521.666667pt;}
.yea{bottom:526.626667pt;}
.y1a{bottom:530.493333pt;}
.yd3{bottom:532.733333pt;}
.y79{bottom:536.253333pt;}
.y94{bottom:536.573333pt;}
.y53{bottom:539.293333pt;}
.ye9{bottom:544.253333pt;}
.y19{bottom:548.093333pt;}
.yd2{bottom:550.333333pt;}
.y93{bottom:551.293333pt;}
.y78{bottom:553.853333pt;}
.y52{bottom:557.053333pt;}
.ye8{bottom:561.853333pt;}
.y18{bottom:565.693333pt;}
.yd1{bottom:568.093333pt;}
.y77{bottom:571.453333pt;}
.y51{bottom:574.653333pt;}
.ye7{bottom:579.453333pt;}
.y17{bottom:583.293333pt;}
.yd0{bottom:585.693333pt;}
.y76{bottom:589.053333pt;}
.y50{bottom:592.253333pt;}
.ye6{bottom:597.053333pt;}
.y16{bottom:600.893333pt;}
.ycf{bottom:603.293333pt;}
.y75{bottom:606.813333pt;}
.y4f{bottom:609.853333pt;}
.ye5{bottom:614.813333pt;}
.y15{bottom:618.653333pt;}
.yce{bottom:620.893333pt;}
.y4c{bottom:622.973333pt;}
.y74{bottom:624.413333pt;}
.ye4{bottom:632.413333pt;}
.y14{bottom:638.173333pt;}
.ycd{bottom:638.493333pt;}
.y73{bottom:642.013333pt;}
.ye3{bottom:650.013333pt;}
.y13{bottom:655.933333pt;}
.ycc{bottom:656.253333pt;}
.y72{bottom:659.613333pt;}
.y4a{bottom:660.573333pt;}
.ye2{bottom:667.613333pt;}
.ycb{bottom:673.853333pt;}
.y71{bottom:677.213333pt;}
.y12{bottom:681.533333pt;}
.ye1{bottom:685.213333pt;}
.yca{bottom:691.453333pt;}
.y70{bottom:694.973333pt;}
.y48{bottom:696.413333pt;}
.y11{bottom:699.133333pt;}
.ye0{bottom:702.973333pt;}
.yc9{bottom:709.053333pt;}
.y6f{bottom:712.573333pt;}
.y46{bottom:714.653333pt;}
.y10{bottom:716.733333pt;}
.ydf{bottom:720.573333pt;}
.yc8{bottom:726.653333pt;}
.y6e{bottom:730.173333pt;}
.yf{bottom:734.333333pt;}
.y45{bottom:738.173333pt;}
.yc7{bottom:744.413333pt;}
.y6d{bottom:747.773333pt;}
.ye{bottom:752.093333pt;}
.y44{bottom:755.773333pt;}
.yc6{bottom:759.133333pt;}
.yd{bottom:769.733333pt;}
.y43{bottom:773.413333pt;}
.yc{bottom:787.333333pt;}
.y42{bottom:791.173333pt;}
.yb{bottom:807.013333pt;}
.y41{bottom:808.773333pt;}
.ya{bottom:824.613333pt;}
.y40{bottom:826.373333pt;}
.y9{bottom:842.693333pt;}
.y3f{bottom:843.973333pt;}
.y3e{bottom:861.573333pt;}
.y3d{bottom:879.333333pt;}
.y8{bottom:880.773333pt;}
.y3c{bottom:896.933333pt;}
.y7{bottom:909.093333pt;}
.y3b{bottom:914.533333pt;}
.y3a{bottom:932.133333pt;}
.y5{bottom:943.173333pt;}
.y39{bottom:949.733333pt;}
.y38{bottom:967.493333pt;}
.y4{bottom:970.533333pt;}
.y37{bottom:985.093333pt;}
.y3{bottom:998.053333pt;}
.y36{bottom:1002.693333pt;}
.y35{bottom:1020.320000pt;}
.y2{bottom:1025.440000pt;}
.y34{bottom:1044.000000pt;}
.y1{bottom:1052.800000pt;}
.y33{bottom:1060.960000pt;}
.h9{height:17.600000pt;}
.h8{height:17.760000pt;}
.ha{height:35.200000pt;}
.hb{height:36.800000pt;}
.h7{height:37.479688pt;}
.h6{height:38.672812pt;}
.h2{height:41.543750pt;}
.h5{height:46.609688pt;}
.hc{height:47.854688pt;}
.h3{height:51.663750pt;}
.h4{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:140.826667pt;}
.w5{width:242.426667pt;}
.w4{width:282.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.x1{left:48.159988pt;}
.x2{left:63.200000pt;}
.xb{left:82.079988pt;}
.xc{left:106.111988pt;}
.x4{left:204.666667pt;}
.x7{left:318.786655pt;}
.x5{left:488.253333pt;}
.x6{left:699.333322pt;}
.x9{left:709.893322pt;}
.xa{left:711.013322pt;}
.x8{left:715.013322pt;}
}




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