
    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_30f0c23f9f1aebf9ea9241d2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_5576e839fbaa2413aeb37c64.woff')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_cbc3c05276e50459f0f64e4c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_2708fd9fd160649447b04223.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_2f93ce796ec598dac10f6add.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_61dcc7d004e369bf53147abc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_1dd5db3ecbe7818b43a0e402.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_16569d1f7a57a60e705fe46b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bc8db6cb6f38bc73d896070b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d6b823e17bef5e8ad7ed0876.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_cc21c39ded1b8b1188e596c8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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_70a29296a905f49072b339be.woff')format("woff");}.ffc{font-family:ffc;line-height:0.890137;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_288769f6248026af54ad9757.woff')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls20{letter-spacing:-5.328000px;}
.ls1b{letter-spacing:-5.256000px;}
.ls1a{letter-spacing:-4.536000px;}
.ls25{letter-spacing:-1.008000px;}
.ls24{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.058320px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.306000px;}
.lse{letter-spacing:0.341400px;}
.lsa{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.433440px;}
.ls12{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.661680px;}
.ls15{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.792000px;}
.ls7{letter-spacing:1.098000px;}
.ls23{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.600000px;}
.ls22{letter-spacing:5.040000px;}
.ls19{letter-spacing:6.480000px;}
.ls1c{letter-spacing:7.920000px;}
.ls1f{letter-spacing:11.088000px;}
.ls17{letter-spacing:12.960000px;}
.ls0{letter-spacing:57.029760px;}
.ls11{letter-spacing:78.480000px;}
.ls1{letter-spacing:201.209760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-21.401400px;}
.wsf{word-spacing:-18.720000px;}
.wse{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.012000px;}
.ws0{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.464000px;}
.ws1{word-spacing:-13.447440px;}
.ws10{word-spacing:-12.672000px;}
.ws6{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.204000px;}
.ws4{word-spacing:-9.437760px;}
.wsa{word-spacing:0.000000px;}
._5{margin-left:-10.585440px;}
._6{margin-left:-7.344000px;}
._8{margin-left:-5.688000px;}
._19{margin-left:-4.652400px;}
._4{margin-left:-3.601440px;}
._2{margin-left:-2.211120px;}
._0{margin-left:-1.149120px;}
._1{width:1.730640px;}
._7{width:2.862240px;}
._18{width:4.121760px;}
._10{width:5.163120px;}
._c{width:6.912000px;}
._d{width:8.256000px;}
._15{width:10.131120px;}
._14{width:11.232000px;}
._b{width:12.816000px;}
._a{width:13.824000px;}
._11{width:14.982960px;}
._9{width:16.701120px;}
._13{width:19.440000px;}
._16{width:21.312000px;}
._17{width:22.321440px;}
._1f{width:23.487120px;}
._12{width:24.504000px;}
._f{width:25.584000px;}
._e{width:26.760000px;}
._1e{width:28.267200px;}
._20{width:30.415920px;}
._1b{width:32.688000px;}
._1c{width:36.000000px;}
._1d{width:37.152000px;}
._21{width:38.808000px;}
._22{width:40.173360px;}
._3{width:64.878480px;}
._1a{width:91.713120px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.580000px;}
.y2{bottom:17.820000px;}
.y8{bottom:25.380000px;}
.y7{bottom:45.030000px;}
.y4{bottom:52.230000px;}
.y11{bottom:57.600000px;}
.y6{bottom:64.830000px;}
.y3{bottom:76.170000px;}
.y10{bottom:76.860000px;}
.y5{bottom:84.630000px;}
.yf{bottom:93.600000px;}
.ye{bottom:109.080000px;}
.yd{bottom:124.560000px;}
.yc{bottom:140.220000px;}
.y82{bottom:160.740000px;}
.y54{bottom:167.940000px;}
.y2c{bottom:169.740000px;}
.y48{bottom:179.820000px;}
.y8c{bottom:186.840000px;}
.y81{bottom:191.880000px;}
.y53{bottom:198.900000px;}
.y2b{bottom:200.700000px;}
.y47{bottom:210.990000px;}
.y8b{bottom:218.010000px;}
.y80{bottom:222.870000px;}
.y5d{bottom:230.070000px;}
.y2a{bottom:231.870000px;}
.y46{bottom:241.950000px;}
.y8a{bottom:248.970000px;}
.y75{bottom:254.010000px;}
.y5c{bottom:261.030000px;}
.y29{bottom:262.830000px;}
.y45{bottom:273.090000px;}
.y74{bottom:284.970000px;}
.y5b{bottom:291.990000px;}
.y28{bottom:293.970000px;}
.y7f{bottom:297.030000px;}
.y52{bottom:304.050000px;}
.y44{bottom:316.110000px;}
.y6e{bottom:323.130000px;}
.y27{bottom:324.930000px;}
.y7e{bottom:327.990000px;}
.y5a{bottom:334.830000px;}
.y51{bottom:335.190000px;}
.y43{bottom:347.070000px;}
.y6d{bottom:354.090000px;}
.y26{bottom:356.070000px;}
.y7d{bottom:359.130000px;}
.y50{bottom:366.150000px;}
.y42{bottom:378.210000px;}
.y6c{bottom:385.230000px;}
.y25{bottom:387.030000px;}
.y7c{bottom:390.090000px;}
.y4f{bottom:397.290000px;}
.y41{bottom:409.170000px;}
.y6b{bottom:416.190000px;}
.y7b{bottom:421.230000px;}
.y4e{bottom:428.250000px;}
.y24{bottom:429.690000px;}
.y40{bottom:440.310000px;}
.y6a{bottom:447.375000px;}
.y7a{bottom:452.235000px;}
.y4d{bottom:459.435000px;}
.y9a{bottom:460.335000px;}
.y3f{bottom:471.315000px;}
.y23{bottom:473.295000px;}
.y89{bottom:478.335000px;}
.y79{bottom:483.375000px;}
.y69{bottom:490.395000px;}
.y3e{bottom:502.455000px;}
.y99{bottom:503.535000px;}
.y78{bottom:514.335000px;}
.y22{bottom:516.315000px;}
.y68{bottom:521.535000px;}
.y3d{bottom:533.415000px;}
.y59{bottom:545.475000px;}
.y98{bottom:545.655000px;}
.y21{bottom:547.275000px;}
.y67{bottom:552.495000px;}
.y3c{bottom:564.555000px;}
.y58{bottom:576.435000px;}
.y20{bottom:578.415000px;}
.y66{bottom:583.635000px;}
.y97{bottom:588.675000px;}
.y3b{bottom:595.515000px;}
.y57{bottom:607.575000px;}
.y1f{bottom:609.375000px;}
.y65{bottom:614.595000px;}
.y4c{bottom:626.655000px;}
.y96{bottom:631.695000px;}
.y3a{bottom:638.535000px;}
.y1e{bottom:640.515000px;}
.y64{bottom:645.555000px;}
.y4b{bottom:657.615000px;}
.y95{bottom:662.655000px;}
.y39{bottom:669.675000px;}
.y1d{bottom:671.475000px;}
.y63{bottom:676.725000px;}
.y4a{bottom:688.785000px;}
.y38{bottom:700.665000px;}
.y1c{bottom:702.645000px;}
.y94{bottom:705.885000px;}
.y88{bottom:707.685000px;}
.y62{bottom:719.745000px;}
.y37{bottom:731.805000px;}
.y1b{bottom:733.605000px;}
.y77{bottom:743.685000px;}
.y93{bottom:748.905000px;}
.y61{bottom:750.885000px;}
.y36{bottom:762.765000px;}
.y1a{bottom:764.745000px;}
.y76{bottom:774.825000px;}
.y92{bottom:779.865000px;}
.y60{bottom:781.845000px;}
.y35{bottom:793.905000px;}
.y19{bottom:795.705000px;}
.y70{bottom:805.785000px;}
.y5f{bottom:812.985000px;}
.y91{bottom:822.885000px;}
.y34{bottom:824.865000px;}
.y6f{bottom:836.925000px;}
.y18{bottom:838.365000px;}
.y87{bottom:843.945000px;}
.y90{bottom:854.025000px;}
.y33{bottom:856.005000px;}
.y56{bottom:867.885000px;}
.y86{bottom:875.085000px;}
.y17{bottom:881.385000px;}
.y32{bottom:886.965000px;}
.y8f{bottom:897.045000px;}
.y55{bottom:899.025000px;}
.y85{bottom:906.045000px;}
.y16{bottom:912.930000px;}
.y49{bottom:918.150000px;}
.y8e{bottom:928.230000px;}
.y31{bottom:930.030000px;}
.y84{bottom:937.230000px;}
.y5e{bottom:949.110000px;}
.y15{bottom:952.170000px;}
.y30{bottom:961.170000px;}
.y8d{bottom:964.770000px;}
.y83{bottom:979.890000px;}
.y73{bottom:980.250000px;}
.y14{bottom:983.310000px;}
.y2f{bottom:992.130000px;}
.y72{bottom:1011.210000px;}
.y13{bottom:1013.910000px;}
.y2e{bottom:1023.270000px;}
.y12{bottom:1051.350000px;}
.y71{bottom:1053.870000px;}
.y2d{bottom:1054.230000px;}
.yb{bottom:1075.290000px;}
.ya{bottom:1095.450000px;}
.y1{bottom:1110.930000px;}
.hc{height:37.544063px;}
.hb{height:41.833125px;}
.hf{height:50.273438px;}
.h12{height:50.800781px;}
.he{height:54.773438px;}
.h8{height:56.320312px;}
.h7{height:59.439023px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h9{height:70.664062px;}
.h11{height:71.613281px;}
.h13{height:71.824219px;}
.hd{height:74.953125px;}
.h10{height:82.676953px;}
.ha{height:87.695156px;}
.h4{height:95.245664px;}
.h2{height:98.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:124.189500px;}
.w4{width:159.675000px;}
.w3{width:384.360000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.085000px;}
.x8{left:21.810000px;}
.x6{left:39.450000px;}
.x7{left:57.090000px;}
.x13{left:94.536000px;}
.x2{left:98.083500px;}
.x1{left:99.946500px;}
.xa{left:108.036000px;}
.x9{left:121.170000px;}
.xb{left:141.876000px;}
.xd{left:162.750000px;}
.xe{left:207.030000px;}
.x12{left:216.030000px;}
.x3{left:224.145000px;}
.xc{left:286.635000px;}
.xf{left:339.555000px;}
.x11{left:397.515000px;}
.x10{left:446.505000px;}
.x5{left:608.520000px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls20{letter-spacing:-4.736000pt;}
.ls1b{letter-spacing:-4.672000pt;}
.ls1a{letter-spacing:-4.032000pt;}
.ls25{letter-spacing:-0.896000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.303467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.385280pt;}
.ls12{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.588160pt;}
.ls15{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.976000pt;}
.ls23{letter-spacing:1.920000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls19{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls1f{letter-spacing:9.856000pt;}
.ls17{letter-spacing:11.520000pt;}
.ls0{letter-spacing:50.693120pt;}
.ls11{letter-spacing:69.760000pt;}
.ls1{letter-spacing:178.853120pt;}
.ws7{word-spacing:-19.023467pt;}
.wsf{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws0{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.968000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.264000pt;}
.ws6{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws4{word-spacing:-8.389120pt;}
.wsa{word-spacing:0.000000pt;}
._5{margin-left:-9.409280pt;}
._6{margin-left:-6.528000pt;}
._8{margin-left:-5.056000pt;}
._19{margin-left:-4.135467pt;}
._4{margin-left:-3.201280pt;}
._2{margin-left:-1.965440pt;}
._0{margin-left:-1.021440pt;}
._1{width:1.538347pt;}
._7{width:2.544213pt;}
._18{width:3.663787pt;}
._10{width:4.589440pt;}
._c{width:6.144000pt;}
._d{width:7.338667pt;}
._15{width:9.005440pt;}
._14{width:9.984000pt;}
._b{width:11.392000pt;}
._a{width:12.288000pt;}
._11{width:13.318187pt;}
._9{width:14.845440pt;}
._13{width:17.280000pt;}
._16{width:18.944000pt;}
._17{width:19.841280pt;}
._1f{width:20.877440pt;}
._12{width:21.781333pt;}
._f{width:22.741333pt;}
._e{width:23.786667pt;}
._1e{width:25.126400pt;}
._20{width:27.036373pt;}
._1b{width:29.056000pt;}
._1c{width:32.000000pt;}
._1d{width:33.024000pt;}
._21{width:34.496000pt;}
._22{width:35.709653pt;}
._3{width:57.669760pt;}
._1a{width:81.522773pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.960000pt;}
.y2{bottom:15.840000pt;}
.y8{bottom:22.560000pt;}
.y7{bottom:40.026667pt;}
.y4{bottom:46.426667pt;}
.y11{bottom:51.200000pt;}
.y6{bottom:57.626667pt;}
.y3{bottom:67.706667pt;}
.y10{bottom:68.320000pt;}
.y5{bottom:75.226667pt;}
.yf{bottom:83.200000pt;}
.ye{bottom:96.960000pt;}
.yd{bottom:110.720000pt;}
.yc{bottom:124.640000pt;}
.y82{bottom:142.880000pt;}
.y54{bottom:149.280000pt;}
.y2c{bottom:150.880000pt;}
.y48{bottom:159.840000pt;}
.y8c{bottom:166.080000pt;}
.y81{bottom:170.560000pt;}
.y53{bottom:176.800000pt;}
.y2b{bottom:178.400000pt;}
.y47{bottom:187.546667pt;}
.y8b{bottom:193.786667pt;}
.y80{bottom:198.106667pt;}
.y5d{bottom:204.506667pt;}
.y2a{bottom:206.106667pt;}
.y46{bottom:215.066667pt;}
.y8a{bottom:221.306667pt;}
.y75{bottom:225.786667pt;}
.y5c{bottom:232.026667pt;}
.y29{bottom:233.626667pt;}
.y45{bottom:242.746667pt;}
.y74{bottom:253.306667pt;}
.y5b{bottom:259.546667pt;}
.y28{bottom:261.306667pt;}
.y7f{bottom:264.026667pt;}
.y52{bottom:270.266667pt;}
.y44{bottom:280.986667pt;}
.y6e{bottom:287.226667pt;}
.y27{bottom:288.826667pt;}
.y7e{bottom:291.546667pt;}
.y5a{bottom:297.626667pt;}
.y51{bottom:297.946667pt;}
.y43{bottom:308.506667pt;}
.y6d{bottom:314.746667pt;}
.y26{bottom:316.506667pt;}
.y7d{bottom:319.226667pt;}
.y50{bottom:325.466667pt;}
.y42{bottom:336.186667pt;}
.y6c{bottom:342.426667pt;}
.y25{bottom:344.026667pt;}
.y7c{bottom:346.746667pt;}
.y4f{bottom:353.146667pt;}
.y41{bottom:363.706667pt;}
.y6b{bottom:369.946667pt;}
.y7b{bottom:374.426667pt;}
.y4e{bottom:380.666667pt;}
.y24{bottom:381.946667pt;}
.y40{bottom:391.386667pt;}
.y6a{bottom:397.666667pt;}
.y7a{bottom:401.986667pt;}
.y4d{bottom:408.386667pt;}
.y9a{bottom:409.186667pt;}
.y3f{bottom:418.946667pt;}
.y23{bottom:420.706667pt;}
.y89{bottom:425.186667pt;}
.y79{bottom:429.666667pt;}
.y69{bottom:435.906667pt;}
.y3e{bottom:446.626667pt;}
.y99{bottom:447.586667pt;}
.y78{bottom:457.186667pt;}
.y22{bottom:458.946667pt;}
.y68{bottom:463.586667pt;}
.y3d{bottom:474.146667pt;}
.y59{bottom:484.866667pt;}
.y98{bottom:485.026667pt;}
.y21{bottom:486.466667pt;}
.y67{bottom:491.106667pt;}
.y3c{bottom:501.826667pt;}
.y58{bottom:512.386667pt;}
.y20{bottom:514.146667pt;}
.y66{bottom:518.786667pt;}
.y97{bottom:523.266667pt;}
.y3b{bottom:529.346667pt;}
.y57{bottom:540.066667pt;}
.y1f{bottom:541.666667pt;}
.y65{bottom:546.306667pt;}
.y4c{bottom:557.026667pt;}
.y96{bottom:561.506667pt;}
.y3a{bottom:567.586667pt;}
.y1e{bottom:569.346667pt;}
.y64{bottom:573.826667pt;}
.y4b{bottom:584.546667pt;}
.y95{bottom:589.026667pt;}
.y39{bottom:595.266667pt;}
.y1d{bottom:596.866667pt;}
.y63{bottom:601.533333pt;}
.y4a{bottom:612.253333pt;}
.y38{bottom:622.813333pt;}
.y1c{bottom:624.573333pt;}
.y94{bottom:627.453333pt;}
.y88{bottom:629.053333pt;}
.y62{bottom:639.773333pt;}
.y37{bottom:650.493333pt;}
.y1b{bottom:652.093333pt;}
.y77{bottom:661.053333pt;}
.y93{bottom:665.693333pt;}
.y61{bottom:667.453333pt;}
.y36{bottom:678.013333pt;}
.y1a{bottom:679.773333pt;}
.y76{bottom:688.733333pt;}
.y92{bottom:693.213333pt;}
.y60{bottom:694.973333pt;}
.y35{bottom:705.693333pt;}
.y19{bottom:707.293333pt;}
.y70{bottom:716.253333pt;}
.y5f{bottom:722.653333pt;}
.y91{bottom:731.453333pt;}
.y34{bottom:733.213333pt;}
.y6f{bottom:743.933333pt;}
.y18{bottom:745.213333pt;}
.y87{bottom:750.173333pt;}
.y90{bottom:759.133333pt;}
.y33{bottom:760.893333pt;}
.y56{bottom:771.453333pt;}
.y86{bottom:777.853333pt;}
.y17{bottom:783.453333pt;}
.y32{bottom:788.413333pt;}
.y8f{bottom:797.373333pt;}
.y55{bottom:799.133333pt;}
.y85{bottom:805.373333pt;}
.y16{bottom:811.493333pt;}
.y49{bottom:816.133333pt;}
.y8e{bottom:825.093333pt;}
.y31{bottom:826.693333pt;}
.y84{bottom:833.093333pt;}
.y5e{bottom:843.653333pt;}
.y15{bottom:846.373333pt;}
.y30{bottom:854.373333pt;}
.y8d{bottom:857.573333pt;}
.y83{bottom:871.013333pt;}
.y73{bottom:871.333333pt;}
.y14{bottom:874.053333pt;}
.y2f{bottom:881.893333pt;}
.y72{bottom:898.853333pt;}
.y13{bottom:901.253333pt;}
.y2e{bottom:909.573333pt;}
.y12{bottom:934.533333pt;}
.y71{bottom:936.773333pt;}
.y2d{bottom:937.093333pt;}
.yb{bottom:955.813333pt;}
.ya{bottom:973.733333pt;}
.y1{bottom:987.493333pt;}
.hc{height:33.372500pt;}
.hb{height:37.185000pt;}
.hf{height:44.687500pt;}
.h12{height:45.156250pt;}
.he{height:48.687500pt;}
.h8{height:50.062500pt;}
.h7{height:52.834688pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h9{height:62.812500pt;}
.h11{height:63.656250pt;}
.h13{height:63.843750pt;}
.hd{height:66.625000pt;}
.h10{height:73.490625pt;}
.ha{height:77.951250pt;}
.h4{height:84.662813pt;}
.h2{height:87.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:110.390667pt;}
.w4{width:141.933333pt;}
.w3{width:341.653333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.186667pt;}
.x8{left:19.386667pt;}
.x6{left:35.066667pt;}
.x7{left:50.746667pt;}
.x13{left:84.032000pt;}
.x2{left:87.185333pt;}
.x1{left:88.841333pt;}
.xa{left:96.032000pt;}
.x9{left:107.706667pt;}
.xb{left:126.112000pt;}
.xd{left:144.666667pt;}
.xe{left:184.026667pt;}
.x12{left:192.026667pt;}
.x3{left:199.240000pt;}
.xc{left:254.786667pt;}
.xf{left:301.826667pt;}
.x11{left:353.346667pt;}
.x10{left:396.893333pt;}
.x5{left:540.906667pt;}
}




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