
    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_c441f440c0f5475101b910e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_585162a4a000127e3bef2a77.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_59d5932667bdba88f3c5508e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_26b6719f7190b271dd8046f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_ad7ed7543887d0234f9385b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_f0ef6cbc41a857a622dcec40.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_3a04ed3050736714620321d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966309;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_946d8c242480479ffb198946.woff2')format("woff");}.ff8{font-family:ff8;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:-90.120000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.lsd{letter-spacing:2.160000px;}
.ls3{letter-spacing:22.176000px;}
.ls7{letter-spacing:33.960000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.wsc{word-spacing:-25.704000px;}
.ws7{word-spacing:-25.632000px;}
.wsd{word-spacing:-25.560000px;}
.ws1{word-spacing:-25.344000px;}
.ws3{word-spacing:-25.272000px;}
.ws9{word-spacing:-25.128000px;}
.ws6{word-spacing:-25.056000px;}
.wsb{word-spacing:-24.912000px;}
.ws0{word-spacing:-22.654080px;}
.ws5{word-spacing:-21.035520px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.280000px;}
.ws2{word-spacing:0.000000px;}
._2c{margin-left:-2.352960px;}
._2{margin-left:-1.191840px;}
._3{width:1.527840px;}
._1e{width:3.528000px;}
._1f{width:4.680000px;}
._20{width:5.976000px;}
._21{width:6.992160px;}
._c{width:8.208000px;}
._18{width:9.380160px;}
._6{width:11.016000px;}
._13{width:12.224160px;}
._1d{width:13.671360px;}
._1a{width:14.767680px;}
._14{width:15.984000px;}
._15{width:17.840160px;}
._2a{width:19.119840px;}
._26{width:20.160000px;}
._19{width:21.988320px;}
._9{width:23.007840px;}
._22{width:24.192000px;}
._17{width:26.408160px;}
._11{width:27.576000px;}
._12{width:28.640160px;}
._24{width:29.664000px;}
._25{width:30.860160px;}
._29{width:32.736000px;}
._16{width:33.768000px;}
._b{width:35.688000px;}
._5{width:37.512000px;}
._4{width:38.568000px;}
._27{width:40.200000px;}
._2b{width:42.288000px;}
._d{width:43.320000px;}
._e{width:44.520000px;}
._f{width:46.512000px;}
._10{width:47.520000px;}
._2e{width:48.600000px;}
._28{width:49.608000px;}
._31{width:54.504000px;}
._2d{width:56.376000px;}
._a{width:58.656000px;}
._23{width:59.760000px;}
._1b{width:61.848000px;}
._1c{width:63.000000px;}
._7{width:76.752000px;}
._8{width:78.192000px;}
._0{width:85.404000px;}
._34{width:137.160000px;}
._2f{width:169.704000px;}
._30{width:171.216000px;}
._1{width:187.776000px;}
._32{width:232.560000px;}
._35{width:323.844000px;}
._36{width:324.888000px;}
._33{width:838.152000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs5{font-size:23.760000px;}
.fs2{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:3.225000px;}
.y71{bottom:3.240000px;}
.y7a{bottom:3.405000px;}
.y84{bottom:3.420000px;}
.y81{bottom:4.305000px;}
.y80{bottom:5.385000px;}
.ya7{bottom:12.630000px;}
.y6e{bottom:12.780000px;}
.ya5{bottom:21.990000px;}
.y6d{bottom:28.260000px;}
.ya6{bottom:31.350000px;}
.y6f{bottom:38.520000px;}
.ya4{bottom:40.530000px;}
.y6c{bottom:43.740000px;}
.y6b{bottom:59.220000px;}
.y6a{bottom:74.880000px;}
.y33{bottom:91.260000px;}
.y89{bottom:97.740000px;}
.y63{bottom:98.820000px;}
.yde{bottom:109.440000px;}
.y32{bottom:113.220000px;}
.y94{bottom:114.660000px;}
.y88{bottom:119.700000px;}
.y62{bottom:120.780000px;}
.ydd{bottom:131.400000px;}
.y31{bottom:135.180000px;}
.y93{bottom:136.620000px;}
.y87{bottom:141.480000px;}
.y61{bottom:142.740000px;}
.ydc{bottom:153.180000px;}
.y30{bottom:156.960000px;}
.y92{bottom:158.400000px;}
.y86{bottom:163.440000px;}
.y60{bottom:164.520000px;}
.ydb{bottom:175.140000px;}
.y2f{bottom:178.920000px;}
.y91{bottom:180.360000px;}
.y85{bottom:182.160000px;}
.y5f{bottom:186.480000px;}
.yda{bottom:197.100000px;}
.y2e{bottom:200.700000px;}
.y83{bottom:201.420000px;}
.y90{bottom:202.140000px;}
.y5e{bottom:208.290000px;}
.yd9{bottom:218.910000px;}
.y82{bottom:220.905000px;}
.y2d{bottom:222.690000px;}
.y8f{bottom:224.130000px;}
.y5d{bottom:230.250000px;}
.y7f{bottom:240.165000px;}
.yd8{bottom:240.870000px;}
.y2c{bottom:244.470000px;}
.y8e{bottom:246.090000px;}
.y5c{bottom:252.030000px;}
.y7e{bottom:261.585000px;}
.yd7{bottom:262.650000px;}
.y2b{bottom:266.430000px;}
.y8d{bottom:267.870000px;}
.y5b{bottom:273.990000px;}
.y7d{bottom:281.025000px;}
.yd6{bottom:284.610000px;}
.y2a{bottom:288.210000px;}
.y8c{bottom:289.830000px;}
.y5a{bottom:295.770000px;}
.y7c{bottom:300.285000px;}
.yd5{bottom:306.390000px;}
.y8b{bottom:309.090000px;}
.y29{bottom:310.170000px;}
.y8a{bottom:315.030000px;}
.y59{bottom:317.730000px;}
.y7b{bottom:319.725000px;}
.yd4{bottom:328.350000px;}
.y28{bottom:331.950000px;}
.yb6{bottom:332.130000px;}
.y79{bottom:338.985000px;}
.y58{bottom:339.510000px;}
.yd3{bottom:350.130000px;}
.y27{bottom:353.910000px;}
.y78{bottom:358.425000px;}
.y57{bottom:361.470000px;}
.yd2{bottom:372.090000px;}
.y26{bottom:375.690000px;}
.yb5{bottom:375.870000px;}
.y77{bottom:377.685000px;}
.y56{bottom:383.250000px;}
.yd1{bottom:393.870000px;}
.y76{bottom:397.125000px;}
.y25{bottom:397.650000px;}
.yb4{bottom:397.830000px;}
.y55{bottom:405.210000px;}
.yd0{bottom:415.830000px;}
.y75{bottom:416.385000px;}
.y24{bottom:419.430000px;}
.yb3{bottom:419.610000px;}
.y54{bottom:426.990000px;}
.y73{bottom:435.825000px;}
.ycf{bottom:437.610000px;}
.y23{bottom:441.390000px;}
.yb2{bottom:441.570000px;}
.y53{bottom:448.995000px;}
.y72{bottom:455.115000px;}
.yce{bottom:459.615000px;}
.y22{bottom:463.395000px;}
.y52{bottom:470.955000px;}
.y70{bottom:474.555000px;}
.ycd{bottom:481.395000px;}
.y21{bottom:485.175000px;}
.yb1{bottom:485.355000px;}
.y51{bottom:492.735000px;}
.y69{bottom:493.815000px;}
.ycc{bottom:503.355000px;}
.yb0{bottom:505.335000px;}
.y20{bottom:507.135000px;}
.y50{bottom:514.695000px;}
.yaf{bottom:515.055000px;}
.ycb{bottom:525.315000px;}
.y1f{bottom:528.915000px;}
.yae{bottom:534.315000px;}
.y4f{bottom:536.475000px;}
.yca{bottom:547.095000px;}
.y1e{bottom:550.875000px;}
.yad{bottom:553.755000px;}
.y4e{bottom:558.435000px;}
.yc9{bottom:569.055000px;}
.y1d{bottom:572.655000px;}
.yac{bottom:573.015000px;}
.y4d{bottom:580.215000px;}
.y68{bottom:586.155000px;}
.yc8{bottom:590.835000px;}
.yab{bottom:592.275000px;}
.y1c{bottom:594.615000px;}
.y4c{bottom:602.175000px;}
.y67{bottom:608.115000px;}
.yaa{bottom:611.715000px;}
.yc7{bottom:612.795000px;}
.y1b{bottom:616.395000px;}
.y4b{bottom:623.955000px;}
.y66{bottom:629.895000px;}
.ya9{bottom:630.975000px;}
.yc6{bottom:634.575000px;}
.y1a{bottom:638.355000px;}
.y4a{bottom:645.915000px;}
.ya8{bottom:650.415000px;}
.y65{bottom:651.855000px;}
.yc5{bottom:656.535000px;}
.y19{bottom:660.135000px;}
.y49{bottom:667.695000px;}
.ya3{bottom:669.675000px;}
.yc4{bottom:678.315000px;}
.y18{bottom:682.125000px;}
.y64{bottom:682.845000px;}
.y48{bottom:689.685000px;}
.yc3{bottom:700.305000px;}
.y17{bottom:703.905000px;}
.y47{bottom:711.465000px;}
.yc2{bottom:722.085000px;}
.y16{bottom:725.865000px;}
.ya2{bottom:727.845000px;}
.y46{bottom:733.425000px;}
.ya1{bottom:739.365000px;}
.yc1{bottom:744.045000px;}
.y15{bottom:747.645000px;}
.y45{bottom:755.205000px;}
.ya0{bottom:761.145000px;}
.yc0{bottom:765.825000px;}
.y14{bottom:769.605000px;}
.y44{bottom:777.165000px;}
.y9f{bottom:783.105000px;}
.ybf{bottom:787.785000px;}
.y13{bottom:791.565000px;}
.y43{bottom:799.125000px;}
.y9e{bottom:804.885000px;}
.ybe{bottom:809.565000px;}
.y12{bottom:813.345000px;}
.y42{bottom:820.905000px;}
.y9d{bottom:826.845000px;}
.ybd{bottom:831.525000px;}
.y11{bottom:835.305000px;}
.y41{bottom:842.865000px;}
.y9c{bottom:848.625000px;}
.ybc{bottom:853.485000px;}
.y10{bottom:857.085000px;}
.y40{bottom:864.645000px;}
.y9b{bottom:870.585000px;}
.ybb{bottom:873.465000px;}
.yf{bottom:882.285000px;}
.yba{bottom:886.245000px;}
.y3f{bottom:886.605000px;}
.y9a{bottom:892.365000px;}
.ye{bottom:903.885000px;}
.yb9{bottom:908.025000px;}
.y3e{bottom:908.385000px;}
.y99{bottom:914.325000px;}
.yd{bottom:924.090000px;}
.yb8{bottom:928.230000px;}
.y3d{bottom:930.390000px;}
.y98{bottom:936.150000px;}
.yb7{bottom:937.230000px;}
.yc{bottom:944.070000px;}
.y3c{bottom:952.170000px;}
.y97{bottom:958.110000px;}
.yb{bottom:964.050000px;}
.y3b{bottom:974.130000px;}
.y96{bottom:979.890000px;}
.ya{bottom:983.490000px;}
.y3a{bottom:995.910000px;}
.y95{bottom:997.890000px;}
.y9{bottom:998.070000px;}
.y39{bottom:1017.870000px;}
.y8{bottom:1023.270000px;}
.y38{bottom:1039.650000px;}
.y7{bottom:1048.470000px;}
.y37{bottom:1061.610000px;}
.y6{bottom:1073.670000px;}
.y36{bottom:1083.390000px;}
.y5{bottom:1098.870000px;}
.y35{bottom:1105.350000px;}
.y4{bottom:1123.890000px;}
.y34{bottom:1127.310000px;}
.y3{bottom:1149.090000px;}
.y2{bottom:1171.620000px;}
.y1{bottom:1191.780000px;}
.h7{height:9.359297px;}
.h10{height:18.168047px;}
.ha{height:18.525000px;}
.hf{height:18.540000px;}
.hb{height:18.561000px;}
.hc{height:18.705000px;}
.he{height:18.756000px;}
.hd{height:20.685000px;}
.h4{height:23.122969px;}
.h9{height:45.695391px;}
.h6{height:50.650312px;}
.h11{height:54.703125px;}
.h2{height:55.054688px;}
.h12{height:55.830000px;}
.h5{height:65.010937px;}
.h3{height:70.664062px;}
.h13{height:74.004654px;}
.h8{height:87.825000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:43.056000px;}
.w6{width:52.725000px;}
.wa{width:65.370000px;}
.w8{width:81.201000px;}
.w7{width:82.965000px;}
.w4{width:83.880000px;}
.w9{width:85.305000px;}
.w2{width:105.829500px;}
.we{width:116.121000px;}
.w3{width:122.061000px;}
.wd{width:124.545000px;}
.wf{width:139.170000px;}
.wb{width:145.642500px;}
.wc{width:203.430000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:7.729500px;}
.x30{left:10.969500px;}
.x12{left:12.409500px;}
.x20{left:13.710000px;}
.x39{left:16.380000px;}
.x21{left:18.525000px;}
.x25{left:21.450000px;}
.x27{left:24.870000px;}
.x26{left:26.265000px;}
.x38{left:28.260000px;}
.x1d{left:29.503500px;}
.x28{left:30.943500px;}
.x23{left:32.790000px;}
.x1f{left:34.200000px;}
.x14{left:35.443500px;}
.x2f{left:39.043500px;}
.x22{left:41.385000px;}
.x24{left:42.480000px;}
.x31{left:49.663500px;}
.x33{left:51.480000px;}
.x1e{left:53.130000px;}
.x34{left:56.520000px;}
.x3b{left:57.960000px;}
.x3e{left:59.940000px;}
.x29{left:61.050000px;}
.x3d{left:62.460000px;}
.x13{left:67.663500px;}
.x3c{left:69.660000px;}
.x3f{left:71.100000px;}
.x2e{left:119.926500px;}
.x1{left:127.656000px;}
.x44{left:132.696000px;}
.x42{left:143.496000px;}
.x10{left:159.690000px;}
.x3{left:161.310000px;}
.x11{left:169.590000px;}
.xe{left:180.750000px;}
.x4{left:201.810000px;}
.x2c{left:211.530000px;}
.x15{left:234.405000px;}
.x32{left:266.295000px;}
.x43{left:297.615000px;}
.x16{left:357.195000px;}
.xd{left:369.615000px;}
.x9{left:385.635000px;}
.xb{left:389.595000px;}
.xc{left:422.715000px;}
.x8{left:433.155000px;}
.x17{left:441.975000px;}
.x35{left:470.460000px;}
.x2{left:478.365000px;}
.x18{left:485.760000px;}
.x41{left:499.605000px;}
.x2d{left:505.005000px;}
.x19{left:539.220000px;}
.x36{left:595.920000px;}
.x7{left:612.645000px;}
.x1a{left:622.920000px;}
.x2b{left:647.070000px;}
.x6{left:659.670000px;}
.x1b{left:704.850000px;}
.x37{left:712.770000px;}
.xa{left:718.350000px;}
.xf{left:762.630000px;}
.x2a{left:781.350000px;}
.x40{left:783.150000px;}
.x1c{left:791.250000px;}
.x5{left:829.260000px;}
@media print{
.v1{vertical-align:-80.106667pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls3{letter-spacing:19.712000pt;}
.ls7{letter-spacing:30.186667pt;}
.ws4{word-spacing:-64.000000pt;}
.wsc{word-spacing:-22.848000pt;}
.ws7{word-spacing:-22.784000pt;}
.wsd{word-spacing:-22.720000pt;}
.ws1{word-spacing:-22.528000pt;}
.ws3{word-spacing:-22.464000pt;}
.ws9{word-spacing:-22.336000pt;}
.ws6{word-spacing:-22.272000pt;}
.wsb{word-spacing:-22.144000pt;}
.ws0{word-spacing:-20.136960pt;}
.ws5{word-spacing:-18.698240pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws2{word-spacing:0.000000pt;}
._2c{margin-left:-2.091520pt;}
._2{margin-left:-1.059413pt;}
._3{width:1.358080pt;}
._1e{width:3.136000pt;}
._1f{width:4.160000pt;}
._20{width:5.312000pt;}
._21{width:6.215253pt;}
._c{width:7.296000pt;}
._18{width:8.337920pt;}
._6{width:9.792000pt;}
._13{width:10.865920pt;}
._1d{width:12.152320pt;}
._1a{width:13.126827pt;}
._14{width:14.208000pt;}
._15{width:15.857920pt;}
._2a{width:16.995413pt;}
._26{width:17.920000pt;}
._19{width:19.545173pt;}
._9{width:20.451413pt;}
._22{width:21.504000pt;}
._17{width:23.473920pt;}
._11{width:24.512000pt;}
._12{width:25.457920pt;}
._24{width:26.368000pt;}
._25{width:27.431253pt;}
._29{width:29.098667pt;}
._16{width:30.016000pt;}
._b{width:31.722667pt;}
._5{width:33.344000pt;}
._4{width:34.282667pt;}
._27{width:35.733333pt;}
._2b{width:37.589333pt;}
._d{width:38.506667pt;}
._e{width:39.573333pt;}
._f{width:41.344000pt;}
._10{width:42.240000pt;}
._2e{width:43.200000pt;}
._28{width:44.096000pt;}
._31{width:48.448000pt;}
._2d{width:50.112000pt;}
._a{width:52.138667pt;}
._23{width:53.120000pt;}
._1b{width:54.976000pt;}
._1c{width:56.000000pt;}
._7{width:68.224000pt;}
._8{width:69.504000pt;}
._0{width:75.914667pt;}
._34{width:121.920000pt;}
._2f{width:150.848000pt;}
._30{width:152.192000pt;}
._1{width:166.912000pt;}
._32{width:206.720000pt;}
._35{width:287.861333pt;}
._36{width:288.789333pt;}
._33{width:745.024000pt;}
.fs3{font-size:10.880000pt;}
.fs5{font-size:21.120000pt;}
.fs2{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:2.866667pt;}
.y71{bottom:2.880000pt;}
.y7a{bottom:3.026667pt;}
.y84{bottom:3.040000pt;}
.y81{bottom:3.826667pt;}
.y80{bottom:4.786667pt;}
.ya7{bottom:11.226667pt;}
.y6e{bottom:11.360000pt;}
.ya5{bottom:19.546667pt;}
.y6d{bottom:25.120000pt;}
.ya6{bottom:27.866667pt;}
.y6f{bottom:34.240000pt;}
.ya4{bottom:36.026667pt;}
.y6c{bottom:38.880000pt;}
.y6b{bottom:52.640000pt;}
.y6a{bottom:66.560000pt;}
.y33{bottom:81.120000pt;}
.y89{bottom:86.880000pt;}
.y63{bottom:87.840000pt;}
.yde{bottom:97.280000pt;}
.y32{bottom:100.640000pt;}
.y94{bottom:101.920000pt;}
.y88{bottom:106.400000pt;}
.y62{bottom:107.360000pt;}
.ydd{bottom:116.800000pt;}
.y31{bottom:120.160000pt;}
.y93{bottom:121.440000pt;}
.y87{bottom:125.760000pt;}
.y61{bottom:126.880000pt;}
.ydc{bottom:136.160000pt;}
.y30{bottom:139.520000pt;}
.y92{bottom:140.800000pt;}
.y86{bottom:145.280000pt;}
.y60{bottom:146.240000pt;}
.ydb{bottom:155.680000pt;}
.y2f{bottom:159.040000pt;}
.y91{bottom:160.320000pt;}
.y85{bottom:161.920000pt;}
.y5f{bottom:165.760000pt;}
.yda{bottom:175.200000pt;}
.y2e{bottom:178.400000pt;}
.y83{bottom:179.040000pt;}
.y90{bottom:179.680000pt;}
.y5e{bottom:185.146667pt;}
.yd9{bottom:194.586667pt;}
.y82{bottom:196.360000pt;}
.y2d{bottom:197.946667pt;}
.y8f{bottom:199.226667pt;}
.y5d{bottom:204.666667pt;}
.y7f{bottom:213.480000pt;}
.yd8{bottom:214.106667pt;}
.y2c{bottom:217.306667pt;}
.y8e{bottom:218.746667pt;}
.y5c{bottom:224.026667pt;}
.y7e{bottom:232.520000pt;}
.yd7{bottom:233.466667pt;}
.y2b{bottom:236.826667pt;}
.y8d{bottom:238.106667pt;}
.y5b{bottom:243.546667pt;}
.y7d{bottom:249.800000pt;}
.yd6{bottom:252.986667pt;}
.y2a{bottom:256.186667pt;}
.y8c{bottom:257.626667pt;}
.y5a{bottom:262.906667pt;}
.y7c{bottom:266.920000pt;}
.yd5{bottom:272.346667pt;}
.y8b{bottom:274.746667pt;}
.y29{bottom:275.706667pt;}
.y8a{bottom:280.026667pt;}
.y59{bottom:282.426667pt;}
.y7b{bottom:284.200000pt;}
.yd4{bottom:291.866667pt;}
.y28{bottom:295.066667pt;}
.yb6{bottom:295.226667pt;}
.y79{bottom:301.320000pt;}
.y58{bottom:301.786667pt;}
.yd3{bottom:311.226667pt;}
.y27{bottom:314.586667pt;}
.y78{bottom:318.600000pt;}
.y57{bottom:321.306667pt;}
.yd2{bottom:330.746667pt;}
.y26{bottom:333.946667pt;}
.yb5{bottom:334.106667pt;}
.y77{bottom:335.720000pt;}
.y56{bottom:340.666667pt;}
.yd1{bottom:350.106667pt;}
.y76{bottom:353.000000pt;}
.y25{bottom:353.466667pt;}
.yb4{bottom:353.626667pt;}
.y55{bottom:360.186667pt;}
.yd0{bottom:369.626667pt;}
.y75{bottom:370.120000pt;}
.y24{bottom:372.826667pt;}
.yb3{bottom:372.986667pt;}
.y54{bottom:379.546667pt;}
.y73{bottom:387.400000pt;}
.ycf{bottom:388.986667pt;}
.y23{bottom:392.346667pt;}
.yb2{bottom:392.506667pt;}
.y53{bottom:399.106667pt;}
.y72{bottom:404.546667pt;}
.yce{bottom:408.546667pt;}
.y22{bottom:411.906667pt;}
.y52{bottom:418.626667pt;}
.y70{bottom:421.826667pt;}
.ycd{bottom:427.906667pt;}
.y21{bottom:431.266667pt;}
.yb1{bottom:431.426667pt;}
.y51{bottom:437.986667pt;}
.y69{bottom:438.946667pt;}
.ycc{bottom:447.426667pt;}
.yb0{bottom:449.186667pt;}
.y20{bottom:450.786667pt;}
.y50{bottom:457.506667pt;}
.yaf{bottom:457.826667pt;}
.ycb{bottom:466.946667pt;}
.y1f{bottom:470.146667pt;}
.yae{bottom:474.946667pt;}
.y4f{bottom:476.866667pt;}
.yca{bottom:486.306667pt;}
.y1e{bottom:489.666667pt;}
.yad{bottom:492.226667pt;}
.y4e{bottom:496.386667pt;}
.yc9{bottom:505.826667pt;}
.y1d{bottom:509.026667pt;}
.yac{bottom:509.346667pt;}
.y4d{bottom:515.746667pt;}
.y68{bottom:521.026667pt;}
.yc8{bottom:525.186667pt;}
.yab{bottom:526.466667pt;}
.y1c{bottom:528.546667pt;}
.y4c{bottom:535.266667pt;}
.y67{bottom:540.546667pt;}
.yaa{bottom:543.746667pt;}
.yc7{bottom:544.706667pt;}
.y1b{bottom:547.906667pt;}
.y4b{bottom:554.626667pt;}
.y66{bottom:559.906667pt;}
.ya9{bottom:560.866667pt;}
.yc6{bottom:564.066667pt;}
.y1a{bottom:567.426667pt;}
.y4a{bottom:574.146667pt;}
.ya8{bottom:578.146667pt;}
.y65{bottom:579.426667pt;}
.yc5{bottom:583.586667pt;}
.y19{bottom:586.786667pt;}
.y49{bottom:593.506667pt;}
.ya3{bottom:595.266667pt;}
.yc4{bottom:602.946667pt;}
.y18{bottom:606.333333pt;}
.y64{bottom:606.973333pt;}
.y48{bottom:613.053333pt;}
.yc3{bottom:622.493333pt;}
.y17{bottom:625.693333pt;}
.y47{bottom:632.413333pt;}
.yc2{bottom:641.853333pt;}
.y16{bottom:645.213333pt;}
.ya2{bottom:646.973333pt;}
.y46{bottom:651.933333pt;}
.ya1{bottom:657.213333pt;}
.yc1{bottom:661.373333pt;}
.y15{bottom:664.573333pt;}
.y45{bottom:671.293333pt;}
.ya0{bottom:676.573333pt;}
.yc0{bottom:680.733333pt;}
.y14{bottom:684.093333pt;}
.y44{bottom:690.813333pt;}
.y9f{bottom:696.093333pt;}
.ybf{bottom:700.253333pt;}
.y13{bottom:703.613333pt;}
.y43{bottom:710.333333pt;}
.y9e{bottom:715.453333pt;}
.ybe{bottom:719.613333pt;}
.y12{bottom:722.973333pt;}
.y42{bottom:729.693333pt;}
.y9d{bottom:734.973333pt;}
.ybd{bottom:739.133333pt;}
.y11{bottom:742.493333pt;}
.y41{bottom:749.213333pt;}
.y9c{bottom:754.333333pt;}
.ybc{bottom:758.653333pt;}
.y10{bottom:761.853333pt;}
.y40{bottom:768.573333pt;}
.y9b{bottom:773.853333pt;}
.ybb{bottom:776.413333pt;}
.yf{bottom:784.253333pt;}
.yba{bottom:787.773333pt;}
.y3f{bottom:788.093333pt;}
.y9a{bottom:793.213333pt;}
.ye{bottom:803.453333pt;}
.yb9{bottom:807.133333pt;}
.y3e{bottom:807.453333pt;}
.y99{bottom:812.733333pt;}
.yd{bottom:821.413333pt;}
.yb8{bottom:825.093333pt;}
.y3d{bottom:827.013333pt;}
.y98{bottom:832.133333pt;}
.yb7{bottom:833.093333pt;}
.yc{bottom:839.173333pt;}
.y3c{bottom:846.373333pt;}
.y97{bottom:851.653333pt;}
.yb{bottom:856.933333pt;}
.y3b{bottom:865.893333pt;}
.y96{bottom:871.013333pt;}
.ya{bottom:874.213333pt;}
.y3a{bottom:885.253333pt;}
.y95{bottom:887.013333pt;}
.y9{bottom:887.173333pt;}
.y39{bottom:904.773333pt;}
.y8{bottom:909.573333pt;}
.y38{bottom:924.133333pt;}
.y7{bottom:931.973333pt;}
.y37{bottom:943.653333pt;}
.y6{bottom:954.373333pt;}
.y36{bottom:963.013333pt;}
.y5{bottom:976.773333pt;}
.y35{bottom:982.533333pt;}
.y4{bottom:999.013333pt;}
.y34{bottom:1002.053333pt;}
.y3{bottom:1021.413333pt;}
.y2{bottom:1041.440000pt;}
.y1{bottom:1059.360000pt;}
.h7{height:8.319375pt;}
.h10{height:16.149375pt;}
.ha{height:16.466667pt;}
.hf{height:16.480000pt;}
.hb{height:16.498667pt;}
.hc{height:16.626667pt;}
.he{height:16.672000pt;}
.hd{height:18.386667pt;}
.h4{height:20.553750pt;}
.h9{height:40.618125pt;}
.h6{height:45.022500pt;}
.h11{height:48.625000pt;}
.h2{height:48.937500pt;}
.h12{height:49.626667pt;}
.h5{height:57.787500pt;}
.h3{height:62.812500pt;}
.h13{height:65.781915pt;}
.h8{height:78.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:38.272000pt;}
.w6{width:46.866667pt;}
.wa{width:58.106667pt;}
.w8{width:72.178667pt;}
.w7{width:73.746667pt;}
.w4{width:74.560000pt;}
.w9{width:75.826667pt;}
.w2{width:94.070667pt;}
.we{width:103.218667pt;}
.w3{width:108.498667pt;}
.wd{width:110.706667pt;}
.wf{width:123.706667pt;}
.wb{width:129.460000pt;}
.wc{width:180.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:6.870667pt;}
.x30{left:9.750667pt;}
.x12{left:11.030667pt;}
.x20{left:12.186667pt;}
.x39{left:14.560000pt;}
.x21{left:16.466667pt;}
.x25{left:19.066667pt;}
.x27{left:22.106667pt;}
.x26{left:23.346667pt;}
.x38{left:25.120000pt;}
.x1d{left:26.225333pt;}
.x28{left:27.505333pt;}
.x23{left:29.146667pt;}
.x1f{left:30.400000pt;}
.x14{left:31.505333pt;}
.x2f{left:34.705333pt;}
.x22{left:36.786667pt;}
.x24{left:37.760000pt;}
.x31{left:44.145333pt;}
.x33{left:45.760000pt;}
.x1e{left:47.226667pt;}
.x34{left:50.240000pt;}
.x3b{left:51.520000pt;}
.x3e{left:53.280000pt;}
.x29{left:54.266667pt;}
.x3d{left:55.520000pt;}
.x13{left:60.145333pt;}
.x3c{left:61.920000pt;}
.x3f{left:63.200000pt;}
.x2e{left:106.601333pt;}
.x1{left:113.472000pt;}
.x44{left:117.952000pt;}
.x42{left:127.552000pt;}
.x10{left:141.946667pt;}
.x3{left:143.386667pt;}
.x11{left:150.746667pt;}
.xe{left:160.666667pt;}
.x4{left:179.386667pt;}
.x2c{left:188.026667pt;}
.x15{left:208.360000pt;}
.x32{left:236.706667pt;}
.x43{left:264.546667pt;}
.x16{left:317.506667pt;}
.xd{left:328.546667pt;}
.x9{left:342.786667pt;}
.xb{left:346.306667pt;}
.xc{left:375.746667pt;}
.x8{left:385.026667pt;}
.x17{left:392.866667pt;}
.x35{left:418.186667pt;}
.x2{left:425.213333pt;}
.x18{left:431.786667pt;}
.x41{left:444.093333pt;}
.x2d{left:448.893333pt;}
.x19{left:479.306667pt;}
.x36{left:529.706667pt;}
.x7{left:544.573333pt;}
.x1a{left:553.706667pt;}
.x2b{left:575.173333pt;}
.x6{left:586.373333pt;}
.x1b{left:626.533333pt;}
.x37{left:633.573333pt;}
.xa{left:638.533333pt;}
.xf{left:677.893333pt;}
.x2a{left:694.533333pt;}
.x40{left:696.133333pt;}
.x1c{left:703.333333pt;}
.x5{left:737.120000pt;}
}




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