
    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_b96800d0ca356f810d3b1696.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_44a573ee903bf03eb9e583ea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_1ee26c0d3354d2139436a8a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.865234;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_c808d054d91644296e06dbae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_a8ecc56b295f8c3db5ec552e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.965332;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_e66c2632693fa49a4a022550.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v5{vertical-align:-26.640000px;}
.v2{vertical-align:-22.200000px;}
.v4{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v1{vertical-align:26.376000px;}
.ls13{letter-spacing:-6.480000px;}
.lse{letter-spacing:-5.616000px;}
.ls12{letter-spacing:-5.544000px;}
.ls11{letter-spacing:-3.672000px;}
.ls14{letter-spacing:-3.456000px;}
.ls10{letter-spacing:-3.168000px;}
.ls6{letter-spacing:-2.808000px;}
.ls5{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.285000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.029400px;}
.lsa{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.360000px;}
.ls0{letter-spacing:4.200000px;}
.ls15{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls8{letter-spacing:7.200000px;}
.lsd{letter-spacing:8.550000px;}
.ls2{letter-spacing:10.200000px;}
.ls16{letter-spacing:19.800000px;}
.ls7{letter-spacing:38.923200px;}
.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:-27.432000px;}
.ws5{word-spacing:-20.232000px;}
.ws9{word-spacing:-18.546000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.860000px;}
.ws8{word-spacing:-15.732000px;}
.ws4{word-spacing:-14.079000px;}
.ws0{word-spacing:-12.139200px;}
.ws6{word-spacing:-11.707200px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-21.132000px;}
._17{margin-left:-20.052000px;}
._e{margin-left:-14.484000px;}
._16{margin-left:-12.564000px;}
._19{margin-left:-11.559000px;}
._f{margin-left:-10.047000px;}
._11{margin-left:-8.256000px;}
._c{margin-left:-7.014000px;}
._3{margin-left:-5.916000px;}
._2{margin-left:-4.208000px;}
._1{margin-left:-2.730000px;}
._0{margin-left:-1.680000px;}
._4{width:1.392000px;}
._8{width:3.336000px;}
._b{width:4.671000px;}
._6{width:6.564000px;}
._7{width:8.340000px;}
._9{width:9.672000px;}
._5{width:11.592000px;}
._10{width:12.888000px;}
._13{width:14.184000px;}
._12{width:15.384000px;}
._d{width:17.424000px;}
._14{width:18.864000px;}
._15{width:38.923200px;}
._a{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y46{bottom:140.310150px;}
.y6b{bottom:140.311500px;}
.y1f{bottom:140.313150px;}
.y90{bottom:145.851300px;}
.y45{bottom:156.811650px;}
.y1e{bottom:157.413150px;}
.y8f{bottom:162.351300px;}
.y6a{bottom:162.363000px;}
.y69{bottom:173.311500px;}
.y1d{bottom:174.513150px;}
.y44{bottom:178.863150px;}
.yb3{bottom:182.374800px;}
.yd4{bottom:189.811500px;}
.y43{bottom:189.811650px;}
.y1c{bottom:191.613150px;}
.y8e{bottom:193.300650px;}
.y68{bottom:195.363000px;}
.yb2{bottom:203.668800px;}
.yc8{bottom:206.311500px;}
.y1b{bottom:208.713150px;}
.y67{bottom:211.863000px;}
.y42{bottom:211.863150px;}
.y8d{bottom:214.900650px;}
.y41{bottom:222.808650px;}
.yd3{bottom:222.811500px;}
.yb1{bottom:224.962800px;}
.y1a{bottom:225.813150px;}
.y66{bottom:228.363000px;}
.y8c{bottom:236.500650px;}
.y40{bottom:239.310150px;}
.yd2{bottom:239.311500px;}
.y19{bottom:242.913150px;}
.yb0{bottom:246.256800px;}
.yd1{bottom:255.811500px;}
.y3f{bottom:255.811650px;}
.y8b{bottom:258.100650px;}
.y65{bottom:258.112350px;}
.y18{bottom:265.563150px;}
.yaf{bottom:267.550800px;}
.yc7{bottom:271.208550px;}
.yd0{bottom:272.311500px;}
.y3e{bottom:277.863150px;}
.y8a{bottom:279.700650px;}
.y64{bottom:279.712350px;}
.ycf{bottom:288.811500px;}
.yae{bottom:288.844800px;}
.yc6{bottom:292.808550px;}
.y89{bottom:301.300650px;}
.y63{bottom:301.312350px;}
.y3d{bottom:310.030500px;}
.yad{bottom:310.138800px;}
.yce{bottom:310.863000px;}
.yc5{bottom:314.408550px;}
.y17{bottom:317.284650px;}
.y88{bottom:322.900650px;}
.y62{bottom:322.912350px;}
.y3c{bottom:331.324500px;}
.yac{bottom:331.432800px;}
.yc4{bottom:336.008550px;}
.y16{bottom:339.478650px;}
.y87{bottom:344.500650px;}
.y61{bottom:344.512350px;}
.y3b{bottom:352.618500px;}
.yab{bottom:352.726800px;}
.yc3{bottom:357.608550px;}
.y15{bottom:361.672650px;}
.y86{bottom:366.100650px;}
.y60{bottom:366.112350px;}
.ycd{bottom:370.612500px;}
.y3a{bottom:373.966500px;}
.yaa{bottom:374.020800px;}
.yc2{bottom:379.208550px;}
.y14{bottom:383.866650px;}
.y85{bottom:387.700650px;}
.y5f{bottom:387.712350px;}
.y39{bottom:395.260500px;}
.ya9{bottom:395.314800px;}
.yc1{bottom:400.808550px;}
.y13{bottom:406.060650px;}
.y84{bottom:409.300650px;}
.y5e{bottom:409.312350px;}
.y38{bottom:416.554500px;}
.ya8{bottom:416.608800px;}
.yc0{bottom:422.408550px;}
.y12{bottom:428.254650px;}
.y83{bottom:430.900650px;}
.ycc{bottom:430.912350px;}
.y5d{bottom:430.912500px;}
.y37{bottom:437.848500px;}
.ya7{bottom:437.902800px;}
.y11{bottom:450.514650px;}
.y82{bottom:452.500650px;}
.ybf{bottom:452.512350px;}
.y5c{bottom:452.512500px;}
.y36{bottom:459.142500px;}
.ya6{bottom:459.196800px;}
.y10{bottom:472.708650px;}
.y81{bottom:474.100650px;}
.y5b{bottom:474.112350px;}
.ycb{bottom:474.112500px;}
.y35{bottom:480.436500px;}
.ya5{bottom:480.490800px;}
.yf{bottom:494.902650px;}
.y80{bottom:495.700650px;}
.y5a{bottom:495.712350px;}
.yca{bottom:495.712500px;}
.y34{bottom:501.730500px;}
.ya4{bottom:501.784800px;}
.ye{bottom:517.096650px;}
.y7f{bottom:517.300650px;}
.y59{bottom:517.312350px;}
.yc9{bottom:517.312500px;}
.y33{bottom:523.024500px;}
.ya3{bottom:523.078800px;}
.ye4{bottom:525.008400px;}
.y7e{bottom:538.900650px;}
.ybe{bottom:538.912350px;}
.y58{bottom:538.912500px;}
.yd{bottom:539.290650px;}
.ye3{bottom:543.008400px;}
.y32{bottom:544.318500px;}
.ya2{bottom:544.372800px;}
.y7d{bottom:560.500650px;}
.ybd{bottom:560.512350px;}
.y57{bottom:560.512500px;}
.ye2{bottom:561.008400px;}
.yc{bottom:561.484650px;}
.ya1{bottom:565.666800px;}
.y31{bottom:565.714500px;}
.ye1{bottom:579.008400px;}
.y7c{bottom:582.100650px;}
.ybc{bottom:582.112350px;}
.y56{bottom:582.112500px;}
.yb{bottom:583.678650px;}
.ya0{bottom:586.960800px;}
.y30{bottom:587.008500px;}
.y7b{bottom:603.700650px;}
.ybb{bottom:603.712350px;}
.y55{bottom:603.712500px;}
.ya{bottom:605.872650px;}
.y9f{bottom:608.254800px;}
.y2f{bottom:608.302500px;}
.y7a{bottom:625.300650px;}
.yba{bottom:625.312350px;}
.y54{bottom:625.312500px;}
.y9{bottom:628.066650px;}
.y9e{bottom:629.548800px;}
.y2e{bottom:629.596500px;}
.ye0{bottom:640.208550px;}
.y79{bottom:646.900650px;}
.yb9{bottom:646.912350px;}
.y53{bottom:646.912500px;}
.y8{bottom:650.260650px;}
.y9d{bottom:650.842800px;}
.y2d{bottom:650.890500px;}
.ydf{bottom:660.008550px;}
.y78{bottom:668.500650px;}
.yb8{bottom:668.512350px;}
.y52{bottom:668.512500px;}
.y9c{bottom:672.136800px;}
.y2c{bottom:672.184500px;}
.y7{bottom:672.454650px;}
.yde{bottom:679.808550px;}
.y77{bottom:690.100650px;}
.yb7{bottom:690.112350px;}
.y51{bottom:690.112500px;}
.y9b{bottom:693.430800px;}
.y2b{bottom:693.478500px;}
.y6{bottom:694.648650px;}
.ydd{bottom:699.608550px;}
.y76{bottom:711.700800px;}
.yb6{bottom:711.712350px;}
.y50{bottom:711.712500px;}
.y9a{bottom:714.724800px;}
.y2a{bottom:714.772500px;}
.ydc{bottom:719.408550px;}
.y75{bottom:733.300800px;}
.yb5{bottom:733.312350px;}
.y4f{bottom:733.312500px;}
.y99{bottom:736.018800px;}
.y29{bottom:736.066500px;}
.ydb{bottom:739.208550px;}
.y74{bottom:754.900800px;}
.yb4{bottom:754.912350px;}
.y4e{bottom:754.912500px;}
.y98{bottom:757.312800px;}
.y28{bottom:757.360500px;}
.yda{bottom:759.008550px;}
.y73{bottom:776.500800px;}
.y4d{bottom:776.512500px;}
.y97{bottom:778.606800px;}
.y27{bottom:778.654500px;}
.yd9{bottom:778.808550px;}
.y4c{bottom:798.112500px;}
.yd8{bottom:798.608550px;}
.y96{bottom:799.936800px;}
.y26{bottom:799.948500px;}
.yd7{bottom:818.408550px;}
.y72{bottom:819.700800px;}
.y4b{bottom:819.712500px;}
.y95{bottom:821.230800px;}
.y25{bottom:821.242500px;}
.y5{bottom:824.848650px;}
.yd6{bottom:838.208550px;}
.y71{bottom:841.300800px;}
.y4a{bottom:841.312500px;}
.y94{bottom:842.524800px;}
.y24{bottom:842.536500px;}
.y4{bottom:855.448650px;}
.y70{bottom:862.900800px;}
.y49{bottom:862.912500px;}
.y93{bottom:863.818800px;}
.y23{bottom:863.830500px;}
.yd5{bottom:877.808550px;}
.y6f{bottom:884.500800px;}
.y48{bottom:884.512500px;}
.y92{bottom:885.112800px;}
.y22{bottom:885.124500px;}
.y6e{bottom:906.100800px;}
.y47{bottom:906.112500px;}
.y91{bottom:906.406800px;}
.y21{bottom:906.418500px;}
.y3{bottom:910.710000px;}
.y6d{bottom:927.700800px;}
.y20{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.h8{height:26.199902px;}
.hb{height:27.993164px;}
.he{height:30.568359px;}
.ha{height:35.663086px;}
.h10{height:38.936719px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.h13{height:43.447266px;}
.h12{height:47.791992px;}
.h9{height:48.399902px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h11{height:61.142719px;}
.hc{height:63.321431px;}
.hf{height:63.322031px;}
.hd{height:63.322631px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.775400px;}
.x7{left:119.046300px;}
.x1{left:125.272200px;}
.x8{left:140.313150px;}
.x5{left:150.670350px;}
.x6{left:270.577950px;}
.x9{left:521.949450px;}
.x2{left:572.164350px;}
@media print{
.v5{vertical-align:-23.680000pt;}
.v2{vertical-align:-19.733333pt;}
.v4{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v1{vertical-align:23.445333pt;}
.ls13{letter-spacing:-5.760000pt;}
.lse{letter-spacing:-4.992000pt;}
.ls12{letter-spacing:-4.928000pt;}
.ls11{letter-spacing:-3.264000pt;}
.ls14{letter-spacing:-3.072000pt;}
.ls10{letter-spacing:-2.816000pt;}
.ls6{letter-spacing:-2.496000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.253333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.026133pt;}
.lsa{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls15{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls8{letter-spacing:6.400000pt;}
.lsd{letter-spacing:7.600000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls16{letter-spacing:17.600000pt;}
.ls7{letter-spacing:34.598400pt;}
.ws7{word-spacing:-24.384000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws9{word-spacing:-16.485333pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws8{word-spacing:-13.984000pt;}
.ws4{word-spacing:-12.514667pt;}
.ws0{word-spacing:-10.790400pt;}
.ws6{word-spacing:-10.406400pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-18.784000pt;}
._17{margin-left:-17.824000pt;}
._e{margin-left:-12.874667pt;}
._16{margin-left:-11.168000pt;}
._19{margin-left:-10.274667pt;}
._f{margin-left:-8.930667pt;}
._11{margin-left:-7.338667pt;}
._c{margin-left:-6.234667pt;}
._3{margin-left:-5.258667pt;}
._2{margin-left:-3.740444pt;}
._1{margin-left:-2.426667pt;}
._0{margin-left:-1.493333pt;}
._4{width:1.237333pt;}
._8{width:2.965333pt;}
._b{width:4.152000pt;}
._6{width:5.834667pt;}
._7{width:7.413333pt;}
._9{width:8.597333pt;}
._5{width:10.304000pt;}
._10{width:11.456000pt;}
._13{width:12.608000pt;}
._12{width:13.674667pt;}
._d{width:15.488000pt;}
._14{width:16.768000pt;}
._15{width:34.598400pt;}
._a{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y46{bottom:124.720133pt;}
.y6b{bottom:124.721333pt;}
.y1f{bottom:124.722800pt;}
.y90{bottom:129.645600pt;}
.y45{bottom:139.388133pt;}
.y1e{bottom:139.922800pt;}
.y8f{bottom:144.312267pt;}
.y6a{bottom:144.322667pt;}
.y69{bottom:154.054667pt;}
.y1d{bottom:155.122800pt;}
.y44{bottom:158.989467pt;}
.yb3{bottom:162.110933pt;}
.yd4{bottom:168.721333pt;}
.y43{bottom:168.721467pt;}
.y1c{bottom:170.322800pt;}
.y8e{bottom:171.822800pt;}
.y68{bottom:173.656000pt;}
.yb2{bottom:181.038933pt;}
.yc8{bottom:183.388000pt;}
.y1b{bottom:185.522800pt;}
.y67{bottom:188.322667pt;}
.y42{bottom:188.322800pt;}
.y8d{bottom:191.022800pt;}
.y41{bottom:198.052133pt;}
.yd3{bottom:198.054667pt;}
.yb1{bottom:199.966933pt;}
.y1a{bottom:200.722800pt;}
.y66{bottom:202.989333pt;}
.y8c{bottom:210.222800pt;}
.y40{bottom:212.720133pt;}
.yd2{bottom:212.721333pt;}
.y19{bottom:215.922800pt;}
.yb0{bottom:218.894933pt;}
.yd1{bottom:227.388000pt;}
.y3f{bottom:227.388133pt;}
.y8b{bottom:229.422800pt;}
.y65{bottom:229.433200pt;}
.y18{bottom:236.056133pt;}
.yaf{bottom:237.822933pt;}
.yc7{bottom:241.074267pt;}
.yd0{bottom:242.054667pt;}
.y3e{bottom:246.989467pt;}
.y8a{bottom:248.622800pt;}
.y64{bottom:248.633200pt;}
.ycf{bottom:256.721333pt;}
.yae{bottom:256.750933pt;}
.yc6{bottom:260.274267pt;}
.y89{bottom:267.822800pt;}
.y63{bottom:267.833200pt;}
.y3d{bottom:275.582667pt;}
.yad{bottom:275.678933pt;}
.yce{bottom:276.322667pt;}
.yc5{bottom:279.474267pt;}
.y17{bottom:282.030800pt;}
.y88{bottom:287.022800pt;}
.y62{bottom:287.033200pt;}
.y3c{bottom:294.510667pt;}
.yac{bottom:294.606933pt;}
.yc4{bottom:298.674267pt;}
.y16{bottom:301.758800pt;}
.y87{bottom:306.222800pt;}
.y61{bottom:306.233200pt;}
.y3b{bottom:313.438667pt;}
.yab{bottom:313.534933pt;}
.yc3{bottom:317.874267pt;}
.y15{bottom:321.486800pt;}
.y86{bottom:325.422800pt;}
.y60{bottom:325.433200pt;}
.ycd{bottom:329.433333pt;}
.y3a{bottom:332.414667pt;}
.yaa{bottom:332.462933pt;}
.yc2{bottom:337.074267pt;}
.y14{bottom:341.214800pt;}
.y85{bottom:344.622800pt;}
.y5f{bottom:344.633200pt;}
.y39{bottom:351.342667pt;}
.ya9{bottom:351.390933pt;}
.yc1{bottom:356.274267pt;}
.y13{bottom:360.942800pt;}
.y84{bottom:363.822800pt;}
.y5e{bottom:363.833200pt;}
.y38{bottom:370.270667pt;}
.ya8{bottom:370.318933pt;}
.yc0{bottom:375.474267pt;}
.y12{bottom:380.670800pt;}
.y83{bottom:383.022800pt;}
.ycc{bottom:383.033200pt;}
.y5d{bottom:383.033333pt;}
.y37{bottom:389.198667pt;}
.ya7{bottom:389.246933pt;}
.y11{bottom:400.457467pt;}
.y82{bottom:402.222800pt;}
.ybf{bottom:402.233200pt;}
.y5c{bottom:402.233333pt;}
.y36{bottom:408.126667pt;}
.ya6{bottom:408.174933pt;}
.y10{bottom:420.185467pt;}
.y81{bottom:421.422800pt;}
.y5b{bottom:421.433200pt;}
.ycb{bottom:421.433333pt;}
.y35{bottom:427.054667pt;}
.ya5{bottom:427.102933pt;}
.yf{bottom:439.913467pt;}
.y80{bottom:440.622800pt;}
.y5a{bottom:440.633200pt;}
.yca{bottom:440.633333pt;}
.y34{bottom:445.982667pt;}
.ya4{bottom:446.030933pt;}
.ye{bottom:459.641467pt;}
.y7f{bottom:459.822800pt;}
.y59{bottom:459.833200pt;}
.yc9{bottom:459.833333pt;}
.y33{bottom:464.910667pt;}
.ya3{bottom:464.958933pt;}
.ye4{bottom:466.674133pt;}
.y7e{bottom:479.022800pt;}
.ybe{bottom:479.033200pt;}
.y58{bottom:479.033333pt;}
.yd{bottom:479.369467pt;}
.ye3{bottom:482.674133pt;}
.y32{bottom:483.838667pt;}
.ya2{bottom:483.886933pt;}
.y7d{bottom:498.222800pt;}
.ybd{bottom:498.233200pt;}
.y57{bottom:498.233333pt;}
.ye2{bottom:498.674133pt;}
.yc{bottom:499.097467pt;}
.ya1{bottom:502.814933pt;}
.y31{bottom:502.857333pt;}
.ye1{bottom:514.674133pt;}
.y7c{bottom:517.422800pt;}
.ybc{bottom:517.433200pt;}
.y56{bottom:517.433333pt;}
.yb{bottom:518.825467pt;}
.ya0{bottom:521.742933pt;}
.y30{bottom:521.785333pt;}
.y7b{bottom:536.622800pt;}
.ybb{bottom:536.633200pt;}
.y55{bottom:536.633333pt;}
.ya{bottom:538.553467pt;}
.y9f{bottom:540.670933pt;}
.y2f{bottom:540.713333pt;}
.y7a{bottom:555.822800pt;}
.yba{bottom:555.833200pt;}
.y54{bottom:555.833333pt;}
.y9{bottom:558.281467pt;}
.y9e{bottom:559.598933pt;}
.y2e{bottom:559.641333pt;}
.ye0{bottom:569.074267pt;}
.y79{bottom:575.022800pt;}
.yb9{bottom:575.033200pt;}
.y53{bottom:575.033333pt;}
.y8{bottom:578.009467pt;}
.y9d{bottom:578.526933pt;}
.y2d{bottom:578.569333pt;}
.ydf{bottom:586.674267pt;}
.y78{bottom:594.222800pt;}
.yb8{bottom:594.233200pt;}
.y52{bottom:594.233333pt;}
.y9c{bottom:597.454933pt;}
.y2c{bottom:597.497333pt;}
.y7{bottom:597.737467pt;}
.yde{bottom:604.274267pt;}
.y77{bottom:613.422800pt;}
.yb7{bottom:613.433200pt;}
.y51{bottom:613.433333pt;}
.y9b{bottom:616.382933pt;}
.y2b{bottom:616.425333pt;}
.y6{bottom:617.465467pt;}
.ydd{bottom:621.874267pt;}
.y76{bottom:632.622933pt;}
.yb6{bottom:632.633200pt;}
.y50{bottom:632.633333pt;}
.y9a{bottom:635.310933pt;}
.y2a{bottom:635.353333pt;}
.ydc{bottom:639.474267pt;}
.y75{bottom:651.822933pt;}
.yb5{bottom:651.833200pt;}
.y4f{bottom:651.833333pt;}
.y99{bottom:654.238933pt;}
.y29{bottom:654.281333pt;}
.ydb{bottom:657.074267pt;}
.y74{bottom:671.022933pt;}
.yb4{bottom:671.033200pt;}
.y4e{bottom:671.033333pt;}
.y98{bottom:673.166933pt;}
.y28{bottom:673.209333pt;}
.yda{bottom:674.674267pt;}
.y73{bottom:690.222933pt;}
.y4d{bottom:690.233333pt;}
.y97{bottom:692.094933pt;}
.y27{bottom:692.137333pt;}
.yd9{bottom:692.274267pt;}
.y4c{bottom:709.433333pt;}
.yd8{bottom:709.874267pt;}
.y96{bottom:711.054933pt;}
.y26{bottom:711.065333pt;}
.yd7{bottom:727.474267pt;}
.y72{bottom:728.622933pt;}
.y4b{bottom:728.633333pt;}
.y95{bottom:729.982933pt;}
.y25{bottom:729.993333pt;}
.y5{bottom:733.198800pt;}
.yd6{bottom:745.074267pt;}
.y71{bottom:747.822933pt;}
.y4a{bottom:747.833333pt;}
.y94{bottom:748.910933pt;}
.y24{bottom:748.921333pt;}
.y4{bottom:760.398800pt;}
.y70{bottom:767.022933pt;}
.y49{bottom:767.033333pt;}
.y93{bottom:767.838933pt;}
.y23{bottom:767.849333pt;}
.yd5{bottom:780.274267pt;}
.y6f{bottom:786.222933pt;}
.y48{bottom:786.233333pt;}
.y92{bottom:786.766933pt;}
.y22{bottom:786.777333pt;}
.y6e{bottom:805.422933pt;}
.y47{bottom:805.433333pt;}
.y91{bottom:805.694933pt;}
.y21{bottom:805.705333pt;}
.y3{bottom:809.520000pt;}
.y6d{bottom:824.622933pt;}
.y20{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.h8{height:23.288802pt;}
.hb{height:24.882812pt;}
.he{height:27.171875pt;}
.ha{height:31.700521pt;}
.h10{height:34.610417pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.h13{height:38.619792pt;}
.h12{height:42.481771pt;}
.h9{height:43.022135pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h11{height:54.349083pt;}
.hc{height:56.285717pt;}
.hf{height:56.286250pt;}
.hd{height:56.286783pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.911467pt;}
.x7{left:105.818933pt;}
.x1{left:111.353067pt;}
.x8{left:124.722800pt;}
.x5{left:133.929200pt;}
.x6{left:240.513733pt;}
.x9{left:463.955067pt;}
.x2{left:508.590533pt;}
}




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