
    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_aadad200c059aa6a9fe2241c.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_9e5fd3a9d9278956708604cb.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_f2d5c890044b47d4060cef05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_1203b0cbba0d75edc65ce42d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_1ba0531627daa6e0986e7f4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_90798a6a92bae059a1db6a5a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fd93939c1ff7237a418a27f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_1853793ea1907337b4874b7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_ff63472384d2dc8e604f41ef.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a16831325197270eb98b76ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c4de837d1a7fc68183c8fb27.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.lsc{letter-spacing:37.584000px;}
.ls10{letter-spacing:49.824000px;}
.ls7{letter-spacing:51.264000px;}
.lsf{letter-spacing:54.864000px;}
.ls5{letter-spacing:56.880000px;}
.ls2{letter-spacing:967.656000px;}
.ls1{letter-spacing:1254.216000px;}
.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:-108.000000px;}
.ws6{word-spacing:-72.000000px;}
.ws2{word-spacing:-24.408000px;}
.ws0{word-spacing:-20.718600px;}
.wsc{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.064000px;}
.ws9{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-1.853280px;}
._0{width:1.053360px;}
._1{width:2.465040px;}
._18{width:4.296000px;}
._11{width:5.405280px;}
._7{width:6.744000px;}
._8{width:7.872000px;}
._1a{width:9.250560px;}
._13{width:10.440000px;}
._f{width:11.448000px;}
._10{width:13.202640px;}
._14{width:15.192000px;}
._15{width:16.219920px;}
._19{width:19.056000px;}
._5{width:20.064000px;}
._6{width:21.720000px;}
._1c{width:22.918560px;}
._16{width:24.120000px;}
._17{width:25.238640px;}
._1b{width:26.412000px;}
._9{width:28.440000px;}
._a{width:29.448000px;}
._b{width:31.164000px;}
._c{width:32.501280px;}
._12{width:38.717280px;}
._e{width:39.789360px;}
._d{width:41.021280px;}
._1d{width:48.960000px;}
._1e{width:51.014640px;}
._4{width:56.592000px;}
._3{width:57.917280px;}
.fc1{color:transparent;}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:4.140000px;}
.y20{bottom:4.492500px;}
.ya5{bottom:4.500000px;}
.y8b{bottom:7.005000px;}
.y86{bottom:7.020000px;}
.y8f{bottom:7.365000px;}
.y89{bottom:7.380000px;}
.y9f{bottom:7.740000px;}
.y99{bottom:14.580000px;}
.y95{bottom:24.840000px;}
.ya4{bottom:25.200000px;}
.y9e{bottom:28.440000px;}
.y88{bottom:31.140000px;}
.y8e{bottom:31.305000px;}
.y98{bottom:35.280000px;}
.ya1{bottom:35.325000px;}
.y9b{bottom:38.520000px;}
.y94{bottom:45.540000px;}
.ya9{bottom:45.900000px;}
.ya3{bottom:45.945000px;}
.y9d{bottom:49.140000px;}
.y1f{bottom:52.963500px;}
.y97{bottom:55.980000px;}
.y1e{bottom:57.636000px;}
.y93{bottom:66.240000px;}
.ya8{bottom:66.600000px;}
.ya2{bottom:66.645000px;}
.y9c{bottom:69.840000px;}
.ya7{bottom:87.300000px;}
.y77{bottom:114.156000px;}
.y55{bottom:115.056000px;}
.ybb{bottom:116.136000px;}
.y91{bottom:137.016000px;}
.y38{bottom:138.276000px;}
.y76{bottom:145.116000px;}
.y54{bottom:146.016000px;}
.y1d{bottom:150.870000px;}
.yba{bottom:165.090000px;}
.y1c{bottom:175.170000px;}
.y90{bottom:175.890000px;}
.y75{bottom:176.250000px;}
.y53{bottom:177.150000px;}
.y37{bottom:189.390000px;}
.y8d{bottom:192.825000px;}
.y1b{bottom:199.290000px;}
.y74{bottom:207.210000px;}
.y52{bottom:208.110000px;}
.yb9{bottom:214.230000px;}
.y1a{bottom:223.410000px;}
.y73{bottom:238.350000px;}
.y51{bottom:239.250000px;}
.y8c{bottom:241.245000px;}
.y36{bottom:241.590000px;}
.y19{bottom:247.530000px;}
.yb8{bottom:263.190000px;}
.y8a{bottom:265.725000px;}
.y72{bottom:269.310000px;}
.y50{bottom:270.210000px;}
.y18{bottom:271.650000px;}
.y87{bottom:290.415000px;}
.y35{bottom:290.595000px;}
.yb7{bottom:294.375000px;}
.y71{bottom:300.495000px;}
.y4f{bottom:301.395000px;}
.y17{bottom:319.935000px;}
.yb6{bottom:325.335000px;}
.y70{bottom:331.455000px;}
.y4e{bottom:332.535000px;}
.y85{bottom:338.655000px;}
.y34{bottom:340.995000px;}
.y16{bottom:344.235000px;}
.yb5{bottom:356.475000px;}
.y6f{bottom:362.595000px;}
.y15{bottom:368.355000px;}
.y4d{bottom:382.755000px;}
.yb4{bottom:387.435000px;}
.y33{bottom:391.215000px;}
.y14{bottom:393.015000px;}
.y6e{bottom:393.555000px;}
.y84{bottom:395.895000px;}
.yd2{bottom:409.575000px;}
.y4c{bottom:413.715000px;}
.yb3{bottom:418.575000px;}
.y32{bottom:422.355000px;}
.y6d{bottom:424.695000px;}
.y13{bottom:436.935000px;}
.yd1{bottom:440.535000px;}
.y83{bottom:444.675000px;}
.y4b{bottom:444.855000px;}
.yb2{bottom:449.535000px;}
.y6c{bottom:455.655000px;}
.y82{bottom:466.275000px;}
.yd0{bottom:471.495000px;}
.y31{bottom:472.575000px;}
.y4a{bottom:475.815000px;}
.yb1{bottom:480.675000px;}
.y12{bottom:486.435000px;}
.y6b{bottom:486.795000px;}
.y81{bottom:487.155000px;}
.ycf{bottom:502.635000px;}
.y30{bottom:503.715000px;}
.y49{bottom:506.955000px;}
.yb0{bottom:511.635000px;}
.y6a{bottom:517.755000px;}
.yce{bottom:533.595000px;}
.y2f{bottom:534.675000px;}
.y11{bottom:535.755000px;}
.y48{bottom:537.915000px;}
.yaf{bottom:542.775000px;}
.y69{bottom:548.895000px;}
.ycd{bottom:564.765000px;}
.y2e{bottom:565.845000px;}
.yae{bottom:573.765000px;}
.y10{bottom:578.085000px;}
.y68{bottom:579.885000px;}
.ycc{bottom:588.885000px;}
.y47{bottom:589.245000px;}
.y2d{bottom:596.805000px;}
.yad{bottom:604.905000px;}
.y67{bottom:611.025000px;}
.yf{bottom:614.805000px;}
.ycb{bottom:618.945000px;}
.yac{bottom:635.865000px;}
.y46{bottom:641.265000px;}
.y66{bottom:641.985000px;}
.y2c{bottom:648.105000px;}
.ye{bottom:650.985000px;}
.yca{bottom:659.085000px;}
.yab{bottom:667.005000px;}
.y65{bottom:673.125000px;}
.yd{bottom:686.805000px;}
.yc9{bottom:689.505000px;}
.y45{bottom:690.405000px;}
.yaa{bottom:697.965000px;}
.y2b{bottom:702.285000px;}
.y64{bottom:704.085000px;}
.ya6{bottom:715.065000px;}
.yc8{bottom:720.465000px;}
.y44{bottom:721.365000px;}
.yc{bottom:722.985000px;}
.y63{bottom:735.225000px;}
.y43{bottom:752.505000px;}
.y2a{bottom:754.305000px;}
.yb{bottom:759.345000px;}
.yc7{bottom:760.605000px;}
.y62{bottom:766.185000px;}
.y42{bottom:783.465000px;}
.yc6{bottom:791.025000px;}
.ya{bottom:795.525000px;}
.y80{bottom:797.325000px;}
.y61{bottom:798.585000px;}
.y29{bottom:803.445000px;}
.ya0{bottom:819.285000px;}
.yc5{bottom:821.985000px;}
.y7f{bottom:828.285000px;}
.y60{bottom:829.545000px;}
.y9{bottom:831.705000px;}
.y41{bottom:832.605000px;}
.y28{bottom:834.405000px;}
.yc4{bottom:853.170000px;}
.y7e{bottom:859.470000px;}
.y5f{bottom:860.730000px;}
.y40{bottom:863.610000px;}
.y8{bottom:867.930000px;}
.y27{bottom:883.590000px;}
.yc3{bottom:885.570000px;}
.y7d{bottom:890.430000px;}
.y5e{bottom:891.690000px;}
.y9a{bottom:902.850000px;}
.y7{bottom:904.290000px;}
.y3f{bottom:914.010000px;}
.yc2{bottom:916.530000px;}
.y7c{bottom:921.570000px;}
.y5d{bottom:922.830000px;}
.y26{bottom:932.550000px;}
.y6{bottom:940.470000px;}
.y3e{bottom:944.970000px;}
.yc1{bottom:947.670000px;}
.y7b{bottom:952.530000px;}
.y5c{bottom:953.790000px;}
.y5{bottom:976.650000px;}
.y25{bottom:981.690000px;}
.y7a{bottom:983.670000px;}
.y5b{bottom:984.930000px;}
.y92{bottom:992.850000px;}
.y3d{bottom:995.370000px;}
.yc0{bottom:997.890000px;}
.y4{bottom:1012.830000px;}
.y79{bottom:1014.630000px;}
.y5a{bottom:1015.890000px;}
.y3c{bottom:1026.510000px;}
.ybf{bottom:1029.030000px;}
.y24{bottom:1030.650000px;}
.y78{bottom:1045.770000px;}
.y59{bottom:1047.030000px;}
.y3{bottom:1049.370000px;}
.ybe{bottom:1059.990000px;}
.y23{bottom:1061.790000px;}
.y3b{bottom:1076.730000px;}
.y58{bottom:1077.990000px;}
.y2{bottom:1088.250000px;}
.ybd{bottom:1091.130000px;}
.y3a{bottom:1107.870000px;}
.y57{bottom:1109.130000px;}
.y22{bottom:1112.910000px;}
.y1{bottom:1131.480000px;}
.y21{bottom:1137.420000px;}
.y39{bottom:1138.860000px;}
.ybc{bottom:1139.760000px;}
.y56{bottom:1140.120000px;}
.h9{height:20.692500px;}
.hd{height:23.745000px;}
.hf{height:23.781000px;}
.h15{height:45.184219px;}
.he{height:47.505000px;}
.h10{height:47.685000px;}
.hc{height:53.085938px;}
.h7{height:69.473320px;}
.h8{height:70.664062px;}
.ha{height:72.562500px;}
.hb{height:74.004654px;}
.h4{height:82.676953px;}
.h11{height:82.785000px;}
.h13{height:82.822500px;}
.h5{height:84.898125px;}
.h6{height:89.068359px;}
.h12{height:89.265000px;}
.h3{height:93.983203px;}
.h14{height:103.500000px;}
.h2{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.985000px;}
.w4{width:176.235000px;}
.w7{width:182.190000px;}
.w8{width:243.555000px;}
.w6{width:260.659500px;}
.w3{width:401.284500px;}
.w5{width:578.250000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.725000px;}
.x13{left:20.149500px;}
.x18{left:29.520000px;}
.x17{left:34.560000px;}
.x19{left:41.940000px;}
.x1b{left:53.265000px;}
.x11{left:61.723500px;}
.x15{left:63.703500px;}
.x16{left:68.743500px;}
.x1e{left:73.080000px;}
.x14{left:74.503500px;}
.x10{left:119.926500px;}
.x4{left:127.656000px;}
.x7{left:152.130000px;}
.xc{left:154.650000px;}
.x8{left:158.610000px;}
.x1c{left:174.448500px;}
.x6{left:176.610000px;}
.xd{left:181.650000px;}
.x3{left:191.370000px;}
.xe{left:208.650000px;}
.x2{left:225.750000px;}
.xf{left:235.650000px;}
.x1{left:237.990000px;}
.xa{left:351.075000px;}
.x9{left:380.775000px;}
.x5{left:446.475000px;}
.x12{left:521.940000px;}
.x1a{left:564.240000px;}
.xb{left:756.510000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.lsc{letter-spacing:33.408000pt;}
.ls10{letter-spacing:44.288000pt;}
.ls7{letter-spacing:45.568000pt;}
.lsf{letter-spacing:48.768000pt;}
.ls5{letter-spacing:50.560000pt;}
.ls2{letter-spacing:860.138667pt;}
.ls1{letter-spacing:1114.858667pt;}
.ws1{word-spacing:-96.000000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws2{word-spacing:-21.696000pt;}
.ws0{word-spacing:-18.416533pt;}
.wsc{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws9{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.647360pt;}
._0{width:0.936320pt;}
._1{width:2.191147pt;}
._18{width:3.818667pt;}
._11{width:4.804693pt;}
._7{width:5.994667pt;}
._8{width:6.997333pt;}
._1a{width:8.222720pt;}
._13{width:9.280000pt;}
._f{width:10.176000pt;}
._10{width:11.735680pt;}
._14{width:13.504000pt;}
._15{width:14.417707pt;}
._19{width:16.938667pt;}
._5{width:17.834667pt;}
._6{width:19.306667pt;}
._1c{width:20.372053pt;}
._16{width:21.440000pt;}
._17{width:22.434347pt;}
._1b{width:23.477333pt;}
._9{width:25.280000pt;}
._a{width:26.176000pt;}
._b{width:27.701333pt;}
._c{width:28.890027pt;}
._12{width:34.415360pt;}
._e{width:35.368320pt;}
._d{width:36.463360pt;}
._1d{width:43.520000pt;}
._1e{width:45.346347pt;}
._4{width:50.304000pt;}
._3{width:51.482027pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:3.680000pt;}
.y20{bottom:3.993333pt;}
.ya5{bottom:4.000000pt;}
.y8b{bottom:6.226667pt;}
.y86{bottom:6.240000pt;}
.y8f{bottom:6.546667pt;}
.y89{bottom:6.560000pt;}
.y9f{bottom:6.880000pt;}
.y99{bottom:12.960000pt;}
.y95{bottom:22.080000pt;}
.ya4{bottom:22.400000pt;}
.y9e{bottom:25.280000pt;}
.y88{bottom:27.680000pt;}
.y8e{bottom:27.826667pt;}
.y98{bottom:31.360000pt;}
.ya1{bottom:31.400000pt;}
.y9b{bottom:34.240000pt;}
.y94{bottom:40.480000pt;}
.ya9{bottom:40.800000pt;}
.ya3{bottom:40.840000pt;}
.y9d{bottom:43.680000pt;}
.y1f{bottom:47.078667pt;}
.y97{bottom:49.760000pt;}
.y1e{bottom:51.232000pt;}
.y93{bottom:58.880000pt;}
.ya8{bottom:59.200000pt;}
.ya2{bottom:59.240000pt;}
.y9c{bottom:62.080000pt;}
.ya7{bottom:77.600000pt;}
.y77{bottom:101.472000pt;}
.y55{bottom:102.272000pt;}
.ybb{bottom:103.232000pt;}
.y91{bottom:121.792000pt;}
.y38{bottom:122.912000pt;}
.y76{bottom:128.992000pt;}
.y54{bottom:129.792000pt;}
.y1d{bottom:134.106667pt;}
.yba{bottom:146.746667pt;}
.y1c{bottom:155.706667pt;}
.y90{bottom:156.346667pt;}
.y75{bottom:156.666667pt;}
.y53{bottom:157.466667pt;}
.y37{bottom:168.346667pt;}
.y8d{bottom:171.400000pt;}
.y1b{bottom:177.146667pt;}
.y74{bottom:184.186667pt;}
.y52{bottom:184.986667pt;}
.yb9{bottom:190.426667pt;}
.y1a{bottom:198.586667pt;}
.y73{bottom:211.866667pt;}
.y51{bottom:212.666667pt;}
.y8c{bottom:214.440000pt;}
.y36{bottom:214.746667pt;}
.y19{bottom:220.026667pt;}
.yb8{bottom:233.946667pt;}
.y8a{bottom:236.200000pt;}
.y72{bottom:239.386667pt;}
.y50{bottom:240.186667pt;}
.y18{bottom:241.466667pt;}
.y87{bottom:258.146667pt;}
.y35{bottom:258.306667pt;}
.yb7{bottom:261.666667pt;}
.y71{bottom:267.106667pt;}
.y4f{bottom:267.906667pt;}
.y17{bottom:284.386667pt;}
.yb6{bottom:289.186667pt;}
.y70{bottom:294.626667pt;}
.y4e{bottom:295.586667pt;}
.y85{bottom:301.026667pt;}
.y34{bottom:303.106667pt;}
.y16{bottom:305.986667pt;}
.yb5{bottom:316.866667pt;}
.y6f{bottom:322.306667pt;}
.y15{bottom:327.426667pt;}
.y4d{bottom:340.226667pt;}
.yb4{bottom:344.386667pt;}
.y33{bottom:347.746667pt;}
.y14{bottom:349.346667pt;}
.y6e{bottom:349.826667pt;}
.y84{bottom:351.906667pt;}
.yd2{bottom:364.066667pt;}
.y4c{bottom:367.746667pt;}
.yb3{bottom:372.066667pt;}
.y32{bottom:375.426667pt;}
.y6d{bottom:377.506667pt;}
.y13{bottom:388.386667pt;}
.yd1{bottom:391.586667pt;}
.y83{bottom:395.266667pt;}
.y4b{bottom:395.426667pt;}
.yb2{bottom:399.586667pt;}
.y6c{bottom:405.026667pt;}
.y82{bottom:414.466667pt;}
.yd0{bottom:419.106667pt;}
.y31{bottom:420.066667pt;}
.y4a{bottom:422.946667pt;}
.yb1{bottom:427.266667pt;}
.y12{bottom:432.386667pt;}
.y6b{bottom:432.706667pt;}
.y81{bottom:433.026667pt;}
.ycf{bottom:446.786667pt;}
.y30{bottom:447.746667pt;}
.y49{bottom:450.626667pt;}
.yb0{bottom:454.786667pt;}
.y6a{bottom:460.226667pt;}
.yce{bottom:474.306667pt;}
.y2f{bottom:475.266667pt;}
.y11{bottom:476.226667pt;}
.y48{bottom:478.146667pt;}
.yaf{bottom:482.466667pt;}
.y69{bottom:487.906667pt;}
.ycd{bottom:502.013333pt;}
.y2e{bottom:502.973333pt;}
.yae{bottom:510.013333pt;}
.y10{bottom:513.853333pt;}
.y68{bottom:515.453333pt;}
.ycc{bottom:523.453333pt;}
.y47{bottom:523.773333pt;}
.y2d{bottom:530.493333pt;}
.yad{bottom:537.693333pt;}
.y67{bottom:543.133333pt;}
.yf{bottom:546.493333pt;}
.ycb{bottom:550.173333pt;}
.yac{bottom:565.213333pt;}
.y46{bottom:570.013333pt;}
.y66{bottom:570.653333pt;}
.y2c{bottom:576.093333pt;}
.ye{bottom:578.653333pt;}
.yca{bottom:585.853333pt;}
.yab{bottom:592.893333pt;}
.y65{bottom:598.333333pt;}
.yd{bottom:610.493333pt;}
.yc9{bottom:612.893333pt;}
.y45{bottom:613.693333pt;}
.yaa{bottom:620.413333pt;}
.y2b{bottom:624.253333pt;}
.y64{bottom:625.853333pt;}
.ya6{bottom:635.613333pt;}
.yc8{bottom:640.413333pt;}
.y44{bottom:641.213333pt;}
.yc{bottom:642.653333pt;}
.y63{bottom:653.533333pt;}
.y43{bottom:668.893333pt;}
.y2a{bottom:670.493333pt;}
.yb{bottom:674.973333pt;}
.yc7{bottom:676.093333pt;}
.y62{bottom:681.053333pt;}
.y42{bottom:696.413333pt;}
.yc6{bottom:703.133333pt;}
.ya{bottom:707.133333pt;}
.y80{bottom:708.733333pt;}
.y61{bottom:709.853333pt;}
.y29{bottom:714.173333pt;}
.ya0{bottom:728.253333pt;}
.yc5{bottom:730.653333pt;}
.y7f{bottom:736.253333pt;}
.y60{bottom:737.373333pt;}
.y9{bottom:739.293333pt;}
.y41{bottom:740.093333pt;}
.y28{bottom:741.693333pt;}
.yc4{bottom:758.373333pt;}
.y7e{bottom:763.973333pt;}
.y5f{bottom:765.093333pt;}
.y40{bottom:767.653333pt;}
.y8{bottom:771.493333pt;}
.y27{bottom:785.413333pt;}
.yc3{bottom:787.173333pt;}
.y7d{bottom:791.493333pt;}
.y5e{bottom:792.613333pt;}
.y9a{bottom:802.533333pt;}
.y7{bottom:803.813333pt;}
.y3f{bottom:812.453333pt;}
.yc2{bottom:814.693333pt;}
.y7c{bottom:819.173333pt;}
.y5d{bottom:820.293333pt;}
.y26{bottom:828.933333pt;}
.y6{bottom:835.973333pt;}
.y3e{bottom:839.973333pt;}
.yc1{bottom:842.373333pt;}
.y7b{bottom:846.693333pt;}
.y5c{bottom:847.813333pt;}
.y5{bottom:868.133333pt;}
.y25{bottom:872.613333pt;}
.y7a{bottom:874.373333pt;}
.y5b{bottom:875.493333pt;}
.y92{bottom:882.533333pt;}
.y3d{bottom:884.773333pt;}
.yc0{bottom:887.013333pt;}
.y4{bottom:900.293333pt;}
.y79{bottom:901.893333pt;}
.y5a{bottom:903.013333pt;}
.y3c{bottom:912.453333pt;}
.ybf{bottom:914.693333pt;}
.y24{bottom:916.133333pt;}
.y78{bottom:929.573333pt;}
.y59{bottom:930.693333pt;}
.y3{bottom:932.773333pt;}
.ybe{bottom:942.213333pt;}
.y23{bottom:943.813333pt;}
.y3b{bottom:957.093333pt;}
.y58{bottom:958.213333pt;}
.y2{bottom:967.333333pt;}
.ybd{bottom:969.893333pt;}
.y3a{bottom:984.773333pt;}
.y57{bottom:985.893333pt;}
.y22{bottom:989.253333pt;}
.y1{bottom:1005.760000pt;}
.y21{bottom:1011.040000pt;}
.y39{bottom:1012.320000pt;}
.ybc{bottom:1013.120000pt;}
.y56{bottom:1013.440000pt;}
.h9{height:18.393333pt;}
.hd{height:21.106667pt;}
.hf{height:21.138667pt;}
.h15{height:40.163750pt;}
.he{height:42.226667pt;}
.h10{height:42.386667pt;}
.hc{height:47.187500pt;}
.h7{height:61.754062pt;}
.h8{height:62.812500pt;}
.ha{height:64.500000pt;}
.hb{height:65.781915pt;}
.h4{height:73.490625pt;}
.h11{height:73.586667pt;}
.h13{height:73.620000pt;}
.h5{height:75.465000pt;}
.h6{height:79.171875pt;}
.h12{height:79.346667pt;}
.h3{height:83.540625pt;}
.h14{height:92.000000pt;}
.h2{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.986667pt;}
.w4{width:156.653333pt;}
.w7{width:161.946667pt;}
.w8{width:216.493333pt;}
.w6{width:231.697333pt;}
.w3{width:356.697333pt;}
.w5{width:514.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.866667pt;}
.x13{left:17.910667pt;}
.x18{left:26.240000pt;}
.x17{left:30.720000pt;}
.x19{left:37.280000pt;}
.x1b{left:47.346667pt;}
.x11{left:54.865333pt;}
.x15{left:56.625333pt;}
.x16{left:61.105333pt;}
.x1e{left:64.960000pt;}
.x14{left:66.225333pt;}
.x10{left:106.601333pt;}
.x4{left:113.472000pt;}
.x7{left:135.226667pt;}
.xc{left:137.466667pt;}
.x8{left:140.986667pt;}
.x1c{left:155.065333pt;}
.x6{left:156.986667pt;}
.xd{left:161.466667pt;}
.x3{left:170.106667pt;}
.xe{left:185.466667pt;}
.x2{left:200.666667pt;}
.xf{left:209.466667pt;}
.x1{left:211.546667pt;}
.xa{left:312.066667pt;}
.x9{left:338.466667pt;}
.x5{left:396.866667pt;}
.x12{left:463.946667pt;}
.x1a{left:501.546667pt;}
.xb{left:672.453333pt;}
}




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