
    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_61b8dd4b8b5e01bddf4c969f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4529359f63a916a4d321a175.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc5e736e81c01c991e6b2cea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f8893a1645470ca55bb30d08.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_62099960ae97fb94f55b2930.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c7a5c34103c931615012fe8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4571e0be13061a71d0ef781a.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.523926;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_835e25fdacd299cfa82e9c97.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-82.800000px;}
.v4{vertical-align:-80.640000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.lsa{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.567600px;}
.lse{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls19{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.034560px;}
.ls12{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.109200px;}
.ls1f{letter-spacing:0.128640px;}
.ls16{letter-spacing:0.152640px;}
.ls22{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.305400px;}
.ls17{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.828000px;}
.ls2{letter-spacing:0.840000px;}
.ls24{letter-spacing:1.440000px;}
.ls20{letter-spacing:2.160000px;}
.ls25{letter-spacing:2.880000px;}
.ls14{letter-spacing:4.320000px;}
.ls1e{letter-spacing:12.960000px;}
.ls26{letter-spacing:15.840000px;}
.ls1d{letter-spacing:28.080000px;}
.ls2a{letter-spacing:34.841280px;}
.ls15{letter-spacing:67.680000px;}
.ls28{letter-spacing:67.961280px;}
.lsc{letter-spacing:95.760000px;}
.ls2b{letter-spacing:795.900000px;}
.ls27{letter-spacing:861.276000px;}
.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:-84.060000px;}
.wsa{word-spacing:-72.000000px;}
.ws2{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.414080px;}
.wsc{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280000px;}
.ws3{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.ws5{word-spacing:-16.254600px;}
.wse{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-7.921440px;}
._8{margin-left:-5.202000px;}
._7{margin-left:-3.538080px;}
._17{margin-left:-2.188800px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._9{width:2.332320px;}
._e{width:3.444480px;}
._c{width:4.893120px;}
._b{width:5.917440px;}
._d{width:6.955200px;}
._16{width:8.222400px;}
._15{width:9.259200px;}
._f{width:10.267200px;}
._14{width:11.594880px;}
._19{width:12.659520px;}
._1a{width:13.781760px;}
._12{width:14.904000px;}
._13{width:16.128000px;}
._a{width:18.336000px;}
._11{width:20.666880px;}
._18{width:21.744000px;}
._1b{width:23.904000px;}
._1e{width:27.428640px;}
._1d{width:28.491840px;}
._1c{width:37.098720px;}
._10{width:94.458240px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._2{width:870.060000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y69{bottom:4.320000px;}
.yd1{bottom:4.500000px;}
.y9{bottom:21.240000px;}
.yd3{bottom:25.200000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.yc6{bottom:143.856000px;}
.y98{bottom:145.656000px;}
.y36{bottom:149.616000px;}
.yac{bottom:151.230000px;}
.y67{bottom:159.870000px;}
.yc5{bottom:162.750000px;}
.y97{bottom:166.350000px;}
.y35{bottom:168.510000px;}
.yab{bottom:171.930000px;}
.y66{bottom:180.570000px;}
.yc4{bottom:181.830000px;}
.y96{bottom:187.050000px;}
.y34{bottom:187.590000px;}
.yaa{bottom:192.630000px;}
.yc3{bottom:200.730000px;}
.y65{bottom:201.270000px;}
.y33{bottom:206.490000px;}
.y95{bottom:207.750000px;}
.ya9{bottom:213.330000px;}
.y64{bottom:221.970000px;}
.y32{bottom:225.570000px;}
.y94{bottom:228.450000px;}
.ya8{bottom:234.030000px;}
.yc2{bottom:240.330000px;}
.y63{bottom:242.670000px;}
.y31{bottom:244.470000px;}
.y93{bottom:248.970000px;}
.ya7{bottom:254.730000px;}
.yc1{bottom:259.770000px;}
.y30{bottom:263.370000px;}
.y92{bottom:270.210000px;}
.ya6{bottom:275.430000px;}
.yc0{bottom:280.470000px;}
.y2f{bottom:282.450000px;}
.y62{bottom:284.070000px;}
.y91{bottom:290.910000px;}
.ya5{bottom:296.130000px;}
.ybf{bottom:301.170000px;}
.y2e{bottom:301.350000px;}
.y61{bottom:304.770000px;}
.y90{bottom:311.610000px;}
.ya4{bottom:316.830000px;}
.y2d{bottom:320.430000px;}
.ybe{bottom:321.870000px;}
.y60{bottom:325.470000px;}
.y8f{bottom:332.310000px;}
.ya3{bottom:337.530000px;}
.y2c{bottom:339.870000px;}
.ybd{bottom:342.570000px;}
.y5f{bottom:346.170000px;}
.y8e{bottom:353.010000px;}
.ya2{bottom:358.230000px;}
.y2b{bottom:360.750000px;}
.ybc{bottom:363.270000px;}
.y5e{bottom:366.870000px;}
.y8d{bottom:373.350000px;}
.ya1{bottom:378.930000px;}
.y2a{bottom:383.295000px;}
.ybb{bottom:384.015000px;}
.y5d{bottom:387.615000px;}
.y8c{bottom:394.455000px;}
.ya0{bottom:399.675000px;}
.yba{bottom:404.715000px;}
.y29{bottom:405.075000px;}
.y5c{bottom:408.315000px;}
.y8b{bottom:415.155000px;}
.y9f{bottom:420.375000px;}
.yb9{bottom:425.415000px;}
.y28{bottom:428.115000px;}
.y5b{bottom:429.015000px;}
.y8a{bottom:435.855000px;}
.y9e{bottom:441.075000px;}
.yb8{bottom:446.115000px;}
.y5a{bottom:449.715000px;}
.y27{bottom:450.435000px;}
.y89{bottom:456.555000px;}
.y9d{bottom:461.775000px;}
.yd7{bottom:465.195000px;}
.yb7{bottom:466.815000px;}
.y59{bottom:470.415000px;}
.y26{bottom:472.395000px;}
.y9c{bottom:482.475000px;}
.yd6{bottom:485.895000px;}
.yb6{bottom:487.515000px;}
.y58{bottom:491.115000px;}
.y25{bottom:495.435000px;}
.y88{bottom:497.955000px;}
.y9b{bottom:503.175000px;}
.yd5{bottom:506.595000px;}
.yb5{bottom:508.215000px;}
.y57{bottom:511.815000px;}
.y24{bottom:517.755000px;}
.y87{bottom:518.655000px;}
.y9a{bottom:523.875000px;}
.yd4{bottom:527.295000px;}
.yb4{bottom:528.915000px;}
.y56{bottom:532.515000px;}
.y86{bottom:539.355000px;}
.y23{bottom:540.255000px;}
.yd2{bottom:543.495000px;}
.yb3{bottom:549.615000px;}
.y55{bottom:553.215000px;}
.y85{bottom:560.055000px;}
.y22{bottom:562.035000px;}
.yd0{bottom:564.195000px;}
.yb2{bottom:570.315000px;}
.y54{bottom:573.915000px;}
.y84{bottom:580.755000px;}
.y21{bottom:584.715000px;}
.yb1{bottom:591.015000px;}
.y53{bottom:594.615000px;}
.y83{bottom:601.455000px;}
.y20{bottom:605.775000px;}
.ycf{bottom:609.555000px;}
.yb0{bottom:611.715000px;}
.y52{bottom:615.315000px;}
.y82{bottom:622.155000px;}
.y1f{bottom:628.095000px;}
.yce{bottom:628.635000px;}
.yaf{bottom:632.445000px;}
.y51{bottom:636.045000px;}
.y81{bottom:642.885000px;}
.ycd{bottom:647.565000px;}
.y1e{bottom:650.085000px;}
.yae{bottom:653.145000px;}
.y50{bottom:656.745000px;}
.y80{bottom:663.585000px;}
.ycc{bottom:666.465000px;}
.yad{bottom:669.525000px;}
.y1d{bottom:673.125000px;}
.y4f{bottom:677.265000px;}
.y7f{bottom:684.285000px;}
.ycb{bottom:685.545000px;}
.y68{bottom:693.465000px;}
.y1c{bottom:695.445000px;}
.y4e{bottom:697.965000px;}
.yca{bottom:704.445000px;}
.y7e{bottom:704.985000px;}
.y1b{bottom:717.405000px;}
.y4d{bottom:718.665000px;}
.yc9{bottom:723.525000px;}
.y7d{bottom:725.685000px;}
.y4c{bottom:739.005000px;}
.y1a{bottom:740.265000px;}
.yc8{bottom:742.425000px;}
.y7c{bottom:746.385000px;}
.y4b{bottom:760.065000px;}
.yc7{bottom:761.325000px;}
.y19{bottom:762.765000px;}
.y7b{bottom:767.085000px;}
.y4a{bottom:780.405000px;}
.y18{bottom:785.085000px;}
.y7a{bottom:787.785000px;}
.y49{bottom:799.305000px;}
.y17{bottom:807.045000px;}
.y79{bottom:808.485000px;}
.y48{bottom:818.385000px;}
.y16{bottom:829.185000px;}
.y47{bottom:837.285000px;}
.y15{bottom:848.985000px;}
.y78{bottom:849.885000px;}
.y46{bottom:856.185000px;}
.y77{bottom:870.585000px;}
.y14{bottom:873.105000px;}
.y45{bottom:875.265000px;}
.y76{bottom:891.330000px;}
.y44{bottom:894.210000px;}
.y13{bottom:897.270000px;}
.y75{bottom:912.030000px;}
.y43{bottom:913.290000px;}
.y12{bottom:921.390000px;}
.y42{bottom:932.190000px;}
.y74{bottom:932.730000px;}
.y11{bottom:944.970000px;}
.y41{bottom:951.270000px;}
.y73{bottom:953.430000px;}
.y10{bottom:966.210000px;}
.y40{bottom:970.170000px;}
.y72{bottom:974.130000px;}
.y3f{bottom:989.070000px;}
.yf{bottom:990.330000px;}
.y71{bottom:994.830000px;}
.y3e{bottom:1008.150000px;}
.ye{bottom:1014.630000px;}
.y70{bottom:1015.530000px;}
.y3d{bottom:1027.050000px;}
.y6f{bottom:1036.230000px;}
.yd{bottom:1038.750000px;}
.y3c{bottom:1046.130000px;}
.y99{bottom:1056.570000px;}
.y6e{bottom:1056.930000px;}
.yc{bottom:1062.150000px;}
.y3b{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y6d{bottom:1077.630000px;}
.y3a{bottom:1083.930000px;}
.y6c{bottom:1098.330000px;}
.y39{bottom:1103.010000px;}
.y6b{bottom:1119.030000px;}
.y38{bottom:1121.910000px;}
.y6a{bottom:1139.760000px;}
.y37{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h18{height:20.685000px;}
.h19{height:41.385000px;}
.h3{height:45.184219px;}
.hd{height:56.278125px;}
.h17{height:59.383125px;}
.h15{height:61.171875px;}
.hf{height:62.100000px;}
.he{height:64.546875px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h16{height:68.084282px;}
.h13{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h14{height:80.441367px;}
.h12{height:80.464922px;}
.h9{height:84.898125px;}
.h11{height:111.445312px;}
.h10{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x27{left:91.656000px;}
.xe{left:92.916000px;}
.x2a{left:102.630000px;}
.x9{left:109.836000px;}
.x22{left:114.696000px;}
.x10{left:127.476000px;}
.x24{left:128.916000px;}
.x21{left:141.156000px;}
.xd{left:157.890000px;}
.xa{left:169.230000px;}
.x5{left:172.650000px;}
.x13{left:190.110000px;}
.x16{left:191.730000px;}
.x18{left:207.390000px;}
.xb{left:216.930000px;}
.x1b{left:232.230000px;}
.x1e{left:233.850000px;}
.x2b{left:238.755000px;}
.x14{left:305.535000px;}
.x20{left:311.295000px;}
.xf{left:361.155000px;}
.x25{left:386.175000px;}
.x29{left:414.795000px;}
.x15{left:431.175000px;}
.xc{left:446.505000px;}
.x1d{left:453.165000px;}
.x28{left:467.745000px;}
.x17{left:471.345000px;}
.x11{left:482.865000px;}
.x1f{left:486.645000px;}
.x19{left:487.905000px;}
.x1c{left:506.265000px;}
.x4{left:552.900000px;}
.x12{left:559.185000px;}
.x1a{left:666.150000px;}
.x26{left:699.630000px;}
.x6{left:733.650000px;}
.x23{left:804.240000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-71.680000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.504533pt;}
.lse{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.030720pt;}
.ls12{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls1f{letter-spacing:0.114347pt;}
.ls16{letter-spacing:0.135680pt;}
.ls22{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.271467pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.736000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls24{letter-spacing:1.280000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls25{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls1e{letter-spacing:11.520000pt;}
.ls26{letter-spacing:14.080000pt;}
.ls1d{letter-spacing:24.960000pt;}
.ls2a{letter-spacing:30.970027pt;}
.ls15{letter-spacing:60.160000pt;}
.ls28{letter-spacing:60.410027pt;}
.lsc{letter-spacing:85.120000pt;}
.ls2b{letter-spacing:707.466667pt;}
.ls27{letter-spacing:765.578667pt;}
.ws7{word-spacing:-74.720000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.256960pt;}
.wsc{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.448533pt;}
.wse{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-7.041280pt;}
._8{margin-left:-4.624000pt;}
._7{margin-left:-3.144960pt;}
._17{margin-left:-1.945600pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._9{width:2.073173pt;}
._e{width:3.061760pt;}
._c{width:4.349440pt;}
._b{width:5.259947pt;}
._d{width:6.182400pt;}
._16{width:7.308800pt;}
._15{width:8.230400pt;}
._f{width:9.126400pt;}
._14{width:10.306560pt;}
._19{width:11.252907pt;}
._1a{width:12.250453pt;}
._12{width:13.248000pt;}
._13{width:14.336000pt;}
._a{width:16.298667pt;}
._11{width:18.370560pt;}
._18{width:19.328000pt;}
._1b{width:21.248000pt;}
._1e{width:24.381013pt;}
._1d{width:25.326080pt;}
._1c{width:32.976640pt;}
._10{width:83.962880pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._2{width:773.386667pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y69{bottom:3.840000pt;}
.yd1{bottom:4.000000pt;}
.y9{bottom:18.880000pt;}
.yd3{bottom:22.400000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.yc6{bottom:127.872000pt;}
.y98{bottom:129.472000pt;}
.y36{bottom:132.992000pt;}
.yac{bottom:134.426667pt;}
.y67{bottom:142.106667pt;}
.yc5{bottom:144.666667pt;}
.y97{bottom:147.866667pt;}
.y35{bottom:149.786667pt;}
.yab{bottom:152.826667pt;}
.y66{bottom:160.506667pt;}
.yc4{bottom:161.626667pt;}
.y96{bottom:166.266667pt;}
.y34{bottom:166.746667pt;}
.yaa{bottom:171.226667pt;}
.yc3{bottom:178.426667pt;}
.y65{bottom:178.906667pt;}
.y33{bottom:183.546667pt;}
.y95{bottom:184.666667pt;}
.ya9{bottom:189.626667pt;}
.y64{bottom:197.306667pt;}
.y32{bottom:200.506667pt;}
.y94{bottom:203.066667pt;}
.ya8{bottom:208.026667pt;}
.yc2{bottom:213.626667pt;}
.y63{bottom:215.706667pt;}
.y31{bottom:217.306667pt;}
.y93{bottom:221.306667pt;}
.ya7{bottom:226.426667pt;}
.yc1{bottom:230.906667pt;}
.y30{bottom:234.106667pt;}
.y92{bottom:240.186667pt;}
.ya6{bottom:244.826667pt;}
.yc0{bottom:249.306667pt;}
.y2f{bottom:251.066667pt;}
.y62{bottom:252.506667pt;}
.y91{bottom:258.586667pt;}
.ya5{bottom:263.226667pt;}
.ybf{bottom:267.706667pt;}
.y2e{bottom:267.866667pt;}
.y61{bottom:270.906667pt;}
.y90{bottom:276.986667pt;}
.ya4{bottom:281.626667pt;}
.y2d{bottom:284.826667pt;}
.ybe{bottom:286.106667pt;}
.y60{bottom:289.306667pt;}
.y8f{bottom:295.386667pt;}
.ya3{bottom:300.026667pt;}
.y2c{bottom:302.106667pt;}
.ybd{bottom:304.506667pt;}
.y5f{bottom:307.706667pt;}
.y8e{bottom:313.786667pt;}
.ya2{bottom:318.426667pt;}
.y2b{bottom:320.666667pt;}
.ybc{bottom:322.906667pt;}
.y5e{bottom:326.106667pt;}
.y8d{bottom:331.866667pt;}
.ya1{bottom:336.826667pt;}
.y2a{bottom:340.706667pt;}
.ybb{bottom:341.346667pt;}
.y5d{bottom:344.546667pt;}
.y8c{bottom:350.626667pt;}
.ya0{bottom:355.266667pt;}
.yba{bottom:359.746667pt;}
.y29{bottom:360.066667pt;}
.y5c{bottom:362.946667pt;}
.y8b{bottom:369.026667pt;}
.y9f{bottom:373.666667pt;}
.yb9{bottom:378.146667pt;}
.y28{bottom:380.546667pt;}
.y5b{bottom:381.346667pt;}
.y8a{bottom:387.426667pt;}
.y9e{bottom:392.066667pt;}
.yb8{bottom:396.546667pt;}
.y5a{bottom:399.746667pt;}
.y27{bottom:400.386667pt;}
.y89{bottom:405.826667pt;}
.y9d{bottom:410.466667pt;}
.yd7{bottom:413.506667pt;}
.yb7{bottom:414.946667pt;}
.y59{bottom:418.146667pt;}
.y26{bottom:419.906667pt;}
.y9c{bottom:428.866667pt;}
.yd6{bottom:431.906667pt;}
.yb6{bottom:433.346667pt;}
.y58{bottom:436.546667pt;}
.y25{bottom:440.386667pt;}
.y88{bottom:442.626667pt;}
.y9b{bottom:447.266667pt;}
.yd5{bottom:450.306667pt;}
.yb5{bottom:451.746667pt;}
.y57{bottom:454.946667pt;}
.y24{bottom:460.226667pt;}
.y87{bottom:461.026667pt;}
.y9a{bottom:465.666667pt;}
.yd4{bottom:468.706667pt;}
.yb4{bottom:470.146667pt;}
.y56{bottom:473.346667pt;}
.y86{bottom:479.426667pt;}
.y23{bottom:480.226667pt;}
.yd2{bottom:483.106667pt;}
.yb3{bottom:488.546667pt;}
.y55{bottom:491.746667pt;}
.y85{bottom:497.826667pt;}
.y22{bottom:499.586667pt;}
.yd0{bottom:501.506667pt;}
.yb2{bottom:506.946667pt;}
.y54{bottom:510.146667pt;}
.y84{bottom:516.226667pt;}
.y21{bottom:519.746667pt;}
.yb1{bottom:525.346667pt;}
.y53{bottom:528.546667pt;}
.y83{bottom:534.626667pt;}
.y20{bottom:538.466667pt;}
.ycf{bottom:541.826667pt;}
.yb0{bottom:543.746667pt;}
.y52{bottom:546.946667pt;}
.y82{bottom:553.026667pt;}
.y1f{bottom:558.306667pt;}
.yce{bottom:558.786667pt;}
.yaf{bottom:562.173333pt;}
.y51{bottom:565.373333pt;}
.y81{bottom:571.453333pt;}
.ycd{bottom:575.613333pt;}
.y1e{bottom:577.853333pt;}
.yae{bottom:580.573333pt;}
.y50{bottom:583.773333pt;}
.y80{bottom:589.853333pt;}
.ycc{bottom:592.413333pt;}
.yad{bottom:595.133333pt;}
.y1d{bottom:598.333333pt;}
.y4f{bottom:602.013333pt;}
.y7f{bottom:608.253333pt;}
.ycb{bottom:609.373333pt;}
.y68{bottom:616.413333pt;}
.y1c{bottom:618.173333pt;}
.y4e{bottom:620.413333pt;}
.yca{bottom:626.173333pt;}
.y7e{bottom:626.653333pt;}
.y1b{bottom:637.693333pt;}
.y4d{bottom:638.813333pt;}
.yc9{bottom:643.133333pt;}
.y7d{bottom:645.053333pt;}
.y4c{bottom:656.893333pt;}
.y1a{bottom:658.013333pt;}
.yc8{bottom:659.933333pt;}
.y7c{bottom:663.453333pt;}
.y4b{bottom:675.613333pt;}
.yc7{bottom:676.733333pt;}
.y19{bottom:678.013333pt;}
.y7b{bottom:681.853333pt;}
.y4a{bottom:693.693333pt;}
.y18{bottom:697.853333pt;}
.y7a{bottom:700.253333pt;}
.y49{bottom:710.493333pt;}
.y17{bottom:717.373333pt;}
.y79{bottom:718.653333pt;}
.y48{bottom:727.453333pt;}
.y16{bottom:737.053333pt;}
.y47{bottom:744.253333pt;}
.y15{bottom:754.653333pt;}
.y78{bottom:755.453333pt;}
.y46{bottom:761.053333pt;}
.y77{bottom:773.853333pt;}
.y14{bottom:776.093333pt;}
.y45{bottom:778.013333pt;}
.y76{bottom:792.293333pt;}
.y44{bottom:794.853333pt;}
.y13{bottom:797.573333pt;}
.y75{bottom:810.693333pt;}
.y43{bottom:811.813333pt;}
.y12{bottom:819.013333pt;}
.y42{bottom:828.613333pt;}
.y74{bottom:829.093333pt;}
.y11{bottom:839.973333pt;}
.y41{bottom:845.573333pt;}
.y73{bottom:847.493333pt;}
.y10{bottom:858.853333pt;}
.y40{bottom:862.373333pt;}
.y72{bottom:865.893333pt;}
.y3f{bottom:879.173333pt;}
.yf{bottom:880.293333pt;}
.y71{bottom:884.293333pt;}
.y3e{bottom:896.133333pt;}
.ye{bottom:901.893333pt;}
.y70{bottom:902.693333pt;}
.y3d{bottom:912.933333pt;}
.y6f{bottom:921.093333pt;}
.yd{bottom:923.333333pt;}
.y3c{bottom:929.893333pt;}
.y99{bottom:939.173333pt;}
.y6e{bottom:939.493333pt;}
.yc{bottom:944.133333pt;}
.y3b{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y6d{bottom:957.893333pt;}
.y3a{bottom:963.493333pt;}
.y6c{bottom:976.293333pt;}
.y39{bottom:980.453333pt;}
.y6b{bottom:994.693333pt;}
.y38{bottom:997.253333pt;}
.y6a{bottom:1013.120000pt;}
.y37{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h18{height:18.386667pt;}
.h19{height:36.786667pt;}
.h3{height:40.163750pt;}
.hd{height:50.025000pt;}
.h17{height:52.785000pt;}
.h15{height:54.375000pt;}
.hf{height:55.200000pt;}
.he{height:57.375000pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h16{height:60.519362pt;}
.h13{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h14{height:71.503437pt;}
.h12{height:71.524375pt;}
.h9{height:75.465000pt;}
.h11{height:99.062500pt;}
.h10{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x27{left:81.472000pt;}
.xe{left:82.592000pt;}
.x2a{left:91.226667pt;}
.x9{left:97.632000pt;}
.x22{left:101.952000pt;}
.x10{left:113.312000pt;}
.x24{left:114.592000pt;}
.x21{left:125.472000pt;}
.xd{left:140.346667pt;}
.xa{left:150.426667pt;}
.x5{left:153.466667pt;}
.x13{left:168.986667pt;}
.x16{left:170.426667pt;}
.x18{left:184.346667pt;}
.xb{left:192.826667pt;}
.x1b{left:206.426667pt;}
.x1e{left:207.866667pt;}
.x2b{left:212.226667pt;}
.x14{left:271.586667pt;}
.x20{left:276.706667pt;}
.xf{left:321.026667pt;}
.x25{left:343.266667pt;}
.x29{left:368.706667pt;}
.x15{left:383.266667pt;}
.xc{left:396.893333pt;}
.x1d{left:402.813333pt;}
.x28{left:415.773333pt;}
.x17{left:418.973333pt;}
.x11{left:429.213333pt;}
.x1f{left:432.573333pt;}
.x19{left:433.693333pt;}
.x1c{left:450.013333pt;}
.x4{left:491.466667pt;}
.x12{left:497.053333pt;}
.x1a{left:592.133333pt;}
.x26{left:621.893333pt;}
.x6{left:652.133333pt;}
.x23{left:714.880000pt;}
.x8{left:718.240000pt;}
}




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