
    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_03dd1381bc50f7ef1d369eed.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bd00c2d010263976635bca09.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_56583d5024d00a4877bb810f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_df0f6da2c88ff6af4725320d.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_ec2b241b78a5a11a3c4b7835.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2619591e7ced6e1a758caccc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_4006c548e43325d288c35645.woff')format("woff");}.ff7{font-family:ff7;line-height:0.828000;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_6cabc7e3c52b850de3b9d81c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.808000;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_61ff220a599a40c0f1411878.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cdce22a0a567cf64027e77b7.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a8c44e1faf8c1ee5759f63b2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:182.400000px;}
.ls15{letter-spacing:-17.784000px;}
.ls25{letter-spacing:-4.248000px;}
.ls20{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.936000px;}
.ls10{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.224000px;}
.ls23{letter-spacing:1.296000px;}
.lsd{letter-spacing:1.368000px;}
.ls14{letter-spacing:1.584000px;}
.ls8{letter-spacing:1.728000px;}
.ls3{letter-spacing:1.944000px;}
.ls24{letter-spacing:4.752000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:10.701190px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws24{word-spacing:-18.144000px;}
.wse{word-spacing:-17.784000px;}
.ws23{word-spacing:-17.640000px;}
.ws2a{word-spacing:-13.536000px;}
.ws2b{word-spacing:-12.336000px;}
.ws2d{word-spacing:-11.856000px;}
.wsd{word-spacing:-8.496000px;}
.ws5{word-spacing:-1.944000px;}
.ws4{word-spacing:-1.728000px;}
.ws16{word-spacing:-1.584000px;}
.ws10{word-spacing:-1.368000px;}
.ws29{word-spacing:-1.296000px;}
.ws22{word-spacing:-1.224000px;}
.ws1b{word-spacing:-1.008000px;}
.wsa{word-spacing:-0.936000px;}
.ws14{word-spacing:-0.864000px;}
.ws12{word-spacing:-0.792000px;}
.wsc{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.648000px;}
.ws13{word-spacing:-0.576000px;}
.ws28{word-spacing:-0.504000px;}
.ws1e{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.288000px;}
.ws6{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.072000px;}
.ws1c{word-spacing:0.144000px;}
.ws19{word-spacing:0.216000px;}
.ws1f{word-spacing:0.288000px;}
.ws1d{word-spacing:0.360000px;}
.ws1a{word-spacing:0.432000px;}
.ws18{word-spacing:0.504000px;}
.ws2c{word-spacing:0.576000px;}
.ws8{word-spacing:0.648000px;}
.ws21{word-spacing:0.720000px;}
.ws26{word-spacing:0.792000px;}
.ws25{word-spacing:0.936000px;}
.ws2{word-spacing:1.440000px;}
.ws3{word-spacing:1.800000px;}
.wsf{word-spacing:4.200000px;}
.ws27{word-spacing:8.928000px;}
.ws17{word-spacing:17.784000px;}
.ws0{word-spacing:146.196000px;}
._f{margin-left:-948.820800px;}
._12{margin-left:-17.776800px;}
._14{margin-left:-15.555600px;}
._b{margin-left:-14.449200px;}
._15{margin-left:-12.633600px;}
._d{margin-left:-7.774800px;}
._c{margin-left:-6.492000px;}
._e{margin-left:-5.354400px;}
._2{margin-left:-3.978000px;}
._6{margin-left:-2.802000px;}
._0{margin-left:-1.782000px;}
._7{width:1.062000px;}
._3{width:2.712000px;}
._1{width:4.302000px;}
._9{width:5.907600px;}
._4{width:7.032000px;}
._10{width:8.088000px;}
._5{width:9.222000px;}
._8{width:10.875600px;}
._a{width:12.774000px;}
._13{width:14.073600px;}
._11{width:20.013600px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:428.278800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y43{bottom:117.000000px;}
.y1f{bottom:117.210300px;}
.y90{bottom:117.998100px;}
.y67{bottom:118.110000px;}
.y8f{bottom:132.698100px;}
.y42{bottom:139.500000px;}
.y1e{bottom:140.016300px;}
.y66{bottom:141.204000px;}
.y8e{bottom:147.398100px;}
.y41{bottom:162.000000px;}
.y8d{bottom:162.098100px;}
.y1d{bottom:162.822300px;}
.y65{bottom:164.298000px;}
.y8c{bottom:183.170100px;}
.y40{bottom:184.500000px;}
.y1c{bottom:185.628300px;}
.y64{bottom:187.392000px;}
.y3f{bottom:207.000000px;}
.y1b{bottom:208.434300px;}
.y63{bottom:210.486000px;}
.yaf{bottom:215.622000px;}
.y8b{bottom:226.670100px;}
.y3e{bottom:229.500000px;}
.y1a{bottom:231.240300px;}
.y62{bottom:233.580000px;}
.yae{bottom:234.372000px;}
.y8a{bottom:241.370100px;}
.y3d{bottom:252.000000px;}
.yad{bottom:253.122000px;}
.y19{bottom:254.046300px;}
.y89{bottom:256.070100px;}
.y61{bottom:256.674000px;}
.y88{bottom:270.770100px;}
.y3c{bottom:274.500000px;}
.y18{bottom:276.852300px;}
.y60{bottom:279.768000px;}
.yac{bottom:283.122000px;}
.y87{bottom:285.470100px;}
.y3b{bottom:297.000000px;}
.y17{bottom:299.658300px;}
.y86{bottom:300.170100px;}
.y5f{bottom:302.862000px;}
.y85{bottom:314.870100px;}
.y3a{bottom:319.500000px;}
.yab{bottom:320.622000px;}
.y16{bottom:322.464300px;}
.y5e{bottom:325.956000px;}
.y84{bottom:329.570100px;}
.yaa{bottom:339.372000px;}
.y39{bottom:342.000000px;}
.y83{bottom:344.270100px;}
.y15{bottom:345.270300px;}
.y5d{bottom:349.050000px;}
.ya9{bottom:358.122000px;}
.y82{bottom:358.970100px;}
.y38{bottom:364.500000px;}
.y14{bottom:368.076300px;}
.y5c{bottom:372.144000px;}
.y81{bottom:373.670100px;}
.ya8{bottom:376.872000px;}
.y37{bottom:387.000000px;}
.y80{bottom:388.370100px;}
.y13{bottom:390.882300px;}
.y5b{bottom:395.238000px;}
.ya7{bottom:395.622000px;}
.y7f{bottom:403.070100px;}
.y36{bottom:409.500000px;}
.y12{bottom:413.688300px;}
.ya6{bottom:414.372000px;}
.y7e{bottom:417.770100px;}
.y5a{bottom:418.332000px;}
.y35{bottom:432.000000px;}
.y7d{bottom:432.470100px;}
.ya5{bottom:433.122000px;}
.y11{bottom:436.494300px;}
.y59{bottom:441.426000px;}
.ya4{bottom:451.872000px;}
.y7c{bottom:453.542100px;}
.y34{bottom:454.500000px;}
.y10{bottom:459.300300px;}
.y58{bottom:464.520000px;}
.ya3{bottom:470.622000px;}
.y33{bottom:477.000000px;}
.yf{bottom:482.106300px;}
.y57{bottom:487.614000px;}
.ya2{bottom:489.372000px;}
.y7b{bottom:497.954100px;}
.y32{bottom:499.500000px;}
.ye{bottom:504.912300px;}
.ya1{bottom:508.122000px;}
.y56{bottom:510.708000px;}
.y7a{bottom:520.148100px;}
.y31{bottom:522.000000px;}
.ya0{bottom:526.872000px;}
.yd{bottom:527.718300px;}
.y55{bottom:533.802000px;}
.y79{bottom:542.342100px;}
.y30{bottom:544.500000px;}
.y9f{bottom:545.622000px;}
.yc{bottom:550.524300px;}
.y54{bottom:556.896000px;}
.y9e{bottom:564.372000px;}
.y2f{bottom:567.000000px;}
.y78{bottom:573.046050px;}
.yb{bottom:573.330300px;}
.y53{bottom:579.990000px;}
.y2e{bottom:589.500000px;}
.y77{bottom:591.496050px;}
.ya{bottom:596.136300px;}
.y52{bottom:603.084000px;}
.y2d{bottom:612.000000px;}
.y76{bottom:618.450000px;}
.y9{bottom:618.942300px;}
.y7{bottom:618.954300px;}
.y51{bottom:626.178000px;}
.y2c{bottom:634.500000px;}
.y75{bottom:640.500000px;}
.y8{bottom:641.748300px;}
.y50{bottom:649.272000px;}
.y9d{bottom:649.500000px;}
.y2b{bottom:657.000000px;}
.y74{bottom:662.550000px;}
.y9c{bottom:664.500000px;}
.y4f{bottom:672.366000px;}
.y2a{bottom:679.500000px;}
.y73{bottom:684.600000px;}
.y9b{bottom:694.500000px;}
.y4e{bottom:695.460000px;}
.y29{bottom:702.000000px;}
.y72{bottom:706.650000px;}
.y9a{bottom:709.500000px;}
.y4d{bottom:718.554000px;}
.y28{bottom:724.500000px;}
.y71{bottom:728.700000px;}
.y6{bottom:732.354300px;}
.y99{bottom:739.500000px;}
.y4c{bottom:741.648000px;}
.y27{bottom:747.000000px;}
.y70{bottom:750.750000px;}
.y98{bottom:754.500000px;}
.y4b{bottom:764.742000px;}
.y26{bottom:769.500000px;}
.y6f{bottom:772.800000px;}
.y5{bottom:777.354300px;}
.y97{bottom:784.500000px;}
.y4a{bottom:787.836000px;}
.y25{bottom:792.000000px;}
.y6e{bottom:794.850000px;}
.y4{bottom:796.104300px;}
.y96{bottom:799.500000px;}
.y49{bottom:810.930000px;}
.y24{bottom:814.500000px;}
.y6d{bottom:816.900000px;}
.y95{bottom:829.500000px;}
.y48{bottom:834.024000px;}
.y23{bottom:837.000000px;}
.y6c{bottom:838.950000px;}
.y94{bottom:844.500000px;}
.y47{bottom:857.118000px;}
.y3{bottom:859.500000px;}
.y6b{bottom:861.000000px;}
.y93{bottom:874.500000px;}
.y46{bottom:880.212000px;}
.y22{bottom:882.000000px;}
.y6a{bottom:883.050000px;}
.y2{bottom:889.500000px;}
.y45{bottom:903.306000px;}
.y21{bottom:904.500000px;}
.y69{bottom:905.100000px;}
.y92{bottom:919.500000px;}
.y44{bottom:926.400000px;}
.y20{bottom:927.000000px;}
.y68{bottom:927.150000px;}
.y91{bottom:934.500000px;}
.h8{height:39.072000px;}
.h7{height:39.990234px;}
.h9{height:40.757812px;}
.h4{height:49.200000px;}
.h1{height:50.947266px;}
.h6{height:61.136719px;}
.h2{height:79.980469px;}
.h3{height:101.894531px;}
.h5{height:346.049270px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.388250px;}
.x9{left:97.263750px;}
.x4{left:108.506250px;}
.x7{left:112.500000px;}
.x8{left:127.368000px;}
.xa{left:180.526950px;}
.x2{left:373.341000px;}
.x3{left:423.921000px;}
.x6{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:162.133333pt;}
.ls15{letter-spacing:-15.808000pt;}
.ls25{letter-spacing:-3.776000pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.832000pt;}
.ls10{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:1.088000pt;}
.ls23{letter-spacing:1.152000pt;}
.lsd{letter-spacing:1.216000pt;}
.ls14{letter-spacing:1.408000pt;}
.ls8{letter-spacing:1.536000pt;}
.ls3{letter-spacing:1.728000pt;}
.ls24{letter-spacing:4.224000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:9.512169pt;}
.ls1{letter-spacing:9.546667pt;}
.ws24{word-spacing:-16.128000pt;}
.wse{word-spacing:-15.808000pt;}
.ws23{word-spacing:-15.680000pt;}
.ws2a{word-spacing:-12.032000pt;}
.ws2b{word-spacing:-10.965333pt;}
.ws2d{word-spacing:-10.538667pt;}
.wsd{word-spacing:-7.552000pt;}
.ws5{word-spacing:-1.728000pt;}
.ws4{word-spacing:-1.536000pt;}
.ws16{word-spacing:-1.408000pt;}
.ws10{word-spacing:-1.216000pt;}
.ws29{word-spacing:-1.152000pt;}
.ws22{word-spacing:-1.088000pt;}
.ws1b{word-spacing:-0.896000pt;}
.wsa{word-spacing:-0.832000pt;}
.ws14{word-spacing:-0.768000pt;}
.ws12{word-spacing:-0.704000pt;}
.wsc{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.576000pt;}
.ws13{word-spacing:-0.512000pt;}
.ws28{word-spacing:-0.448000pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.256000pt;}
.ws6{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.064000pt;}
.ws1c{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws18{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.512000pt;}
.ws8{word-spacing:0.576000pt;}
.ws21{word-spacing:0.640000pt;}
.ws26{word-spacing:0.704000pt;}
.ws25{word-spacing:0.832000pt;}
.ws2{word-spacing:1.280000pt;}
.ws3{word-spacing:1.600000pt;}
.wsf{word-spacing:3.733333pt;}
.ws27{word-spacing:7.936000pt;}
.ws17{word-spacing:15.808000pt;}
.ws0{word-spacing:129.952000pt;}
._f{margin-left:-843.396267pt;}
._12{margin-left:-15.801600pt;}
._14{margin-left:-13.827200pt;}
._b{margin-left:-12.843733pt;}
._15{margin-left:-11.229867pt;}
._d{margin-left:-6.910933pt;}
._c{margin-left:-5.770667pt;}
._e{margin-left:-4.759467pt;}
._2{margin-left:-3.536000pt;}
._6{margin-left:-2.490667pt;}
._0{margin-left:-1.584000pt;}
._7{width:0.944000pt;}
._3{width:2.410667pt;}
._1{width:3.824000pt;}
._9{width:5.251200pt;}
._4{width:6.250667pt;}
._10{width:7.189333pt;}
._5{width:8.197333pt;}
._8{width:9.667200pt;}
._a{width:11.354667pt;}
._13{width:12.509867pt;}
._11{width:17.789867pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:380.692267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y43{bottom:104.000000pt;}
.y1f{bottom:104.186933pt;}
.y90{bottom:104.887200pt;}
.y67{bottom:104.986667pt;}
.y8f{bottom:117.953867pt;}
.y42{bottom:124.000000pt;}
.y1e{bottom:124.458933pt;}
.y66{bottom:125.514667pt;}
.y8e{bottom:131.020533pt;}
.y41{bottom:144.000000pt;}
.y8d{bottom:144.087200pt;}
.y1d{bottom:144.730933pt;}
.y65{bottom:146.042667pt;}
.y8c{bottom:162.817867pt;}
.y40{bottom:164.000000pt;}
.y1c{bottom:165.002933pt;}
.y64{bottom:166.570667pt;}
.y3f{bottom:184.000000pt;}
.y1b{bottom:185.274933pt;}
.y63{bottom:187.098667pt;}
.yaf{bottom:191.664000pt;}
.y8b{bottom:201.484533pt;}
.y3e{bottom:204.000000pt;}
.y1a{bottom:205.546933pt;}
.y62{bottom:207.626667pt;}
.yae{bottom:208.330667pt;}
.y8a{bottom:214.551200pt;}
.y3d{bottom:224.000000pt;}
.yad{bottom:224.997333pt;}
.y19{bottom:225.818933pt;}
.y89{bottom:227.617867pt;}
.y61{bottom:228.154667pt;}
.y88{bottom:240.684533pt;}
.y3c{bottom:244.000000pt;}
.y18{bottom:246.090933pt;}
.y60{bottom:248.682667pt;}
.yac{bottom:251.664000pt;}
.y87{bottom:253.751200pt;}
.y3b{bottom:264.000000pt;}
.y17{bottom:266.362933pt;}
.y86{bottom:266.817867pt;}
.y5f{bottom:269.210667pt;}
.y85{bottom:279.884533pt;}
.y3a{bottom:284.000000pt;}
.yab{bottom:284.997333pt;}
.y16{bottom:286.634933pt;}
.y5e{bottom:289.738667pt;}
.y84{bottom:292.951200pt;}
.yaa{bottom:301.664000pt;}
.y39{bottom:304.000000pt;}
.y83{bottom:306.017867pt;}
.y15{bottom:306.906933pt;}
.y5d{bottom:310.266667pt;}
.ya9{bottom:318.330667pt;}
.y82{bottom:319.084533pt;}
.y38{bottom:324.000000pt;}
.y14{bottom:327.178933pt;}
.y5c{bottom:330.794667pt;}
.y81{bottom:332.151200pt;}
.ya8{bottom:334.997333pt;}
.y37{bottom:344.000000pt;}
.y80{bottom:345.217867pt;}
.y13{bottom:347.450933pt;}
.y5b{bottom:351.322667pt;}
.ya7{bottom:351.664000pt;}
.y7f{bottom:358.284533pt;}
.y36{bottom:364.000000pt;}
.y12{bottom:367.722933pt;}
.ya6{bottom:368.330667pt;}
.y7e{bottom:371.351200pt;}
.y5a{bottom:371.850667pt;}
.y35{bottom:384.000000pt;}
.y7d{bottom:384.417867pt;}
.ya5{bottom:384.997333pt;}
.y11{bottom:387.994933pt;}
.y59{bottom:392.378667pt;}
.ya4{bottom:401.664000pt;}
.y7c{bottom:403.148533pt;}
.y34{bottom:404.000000pt;}
.y10{bottom:408.266933pt;}
.y58{bottom:412.906667pt;}
.ya3{bottom:418.330667pt;}
.y33{bottom:424.000000pt;}
.yf{bottom:428.538933pt;}
.y57{bottom:433.434667pt;}
.ya2{bottom:434.997333pt;}
.y7b{bottom:442.625867pt;}
.y32{bottom:444.000000pt;}
.ye{bottom:448.810933pt;}
.ya1{bottom:451.664000pt;}
.y56{bottom:453.962667pt;}
.y7a{bottom:462.353867pt;}
.y31{bottom:464.000000pt;}
.ya0{bottom:468.330667pt;}
.yd{bottom:469.082933pt;}
.y55{bottom:474.490667pt;}
.y79{bottom:482.081867pt;}
.y30{bottom:484.000000pt;}
.y9f{bottom:484.997333pt;}
.yc{bottom:489.354933pt;}
.y54{bottom:495.018667pt;}
.y9e{bottom:501.664000pt;}
.y2f{bottom:504.000000pt;}
.y78{bottom:509.374267pt;}
.yb{bottom:509.626933pt;}
.y53{bottom:515.546667pt;}
.y2e{bottom:524.000000pt;}
.y77{bottom:525.774267pt;}
.ya{bottom:529.898933pt;}
.y52{bottom:536.074667pt;}
.y2d{bottom:544.000000pt;}
.y76{bottom:549.733333pt;}
.y9{bottom:550.170933pt;}
.y7{bottom:550.181600pt;}
.y51{bottom:556.602667pt;}
.y2c{bottom:564.000000pt;}
.y75{bottom:569.333333pt;}
.y8{bottom:570.442933pt;}
.y50{bottom:577.130667pt;}
.y9d{bottom:577.333333pt;}
.y2b{bottom:584.000000pt;}
.y74{bottom:588.933333pt;}
.y9c{bottom:590.666667pt;}
.y4f{bottom:597.658667pt;}
.y2a{bottom:604.000000pt;}
.y73{bottom:608.533333pt;}
.y9b{bottom:617.333333pt;}
.y4e{bottom:618.186667pt;}
.y29{bottom:624.000000pt;}
.y72{bottom:628.133333pt;}
.y9a{bottom:630.666667pt;}
.y4d{bottom:638.714667pt;}
.y28{bottom:644.000000pt;}
.y71{bottom:647.733333pt;}
.y6{bottom:650.981600pt;}
.y99{bottom:657.333333pt;}
.y4c{bottom:659.242667pt;}
.y27{bottom:664.000000pt;}
.y70{bottom:667.333333pt;}
.y98{bottom:670.666667pt;}
.y4b{bottom:679.770667pt;}
.y26{bottom:684.000000pt;}
.y6f{bottom:686.933333pt;}
.y5{bottom:690.981600pt;}
.y97{bottom:697.333333pt;}
.y4a{bottom:700.298667pt;}
.y25{bottom:704.000000pt;}
.y6e{bottom:706.533333pt;}
.y4{bottom:707.648267pt;}
.y96{bottom:710.666667pt;}
.y49{bottom:720.826667pt;}
.y24{bottom:724.000000pt;}
.y6d{bottom:726.133333pt;}
.y95{bottom:737.333333pt;}
.y48{bottom:741.354667pt;}
.y23{bottom:744.000000pt;}
.y6c{bottom:745.733333pt;}
.y94{bottom:750.666667pt;}
.y47{bottom:761.882667pt;}
.y3{bottom:764.000000pt;}
.y6b{bottom:765.333333pt;}
.y93{bottom:777.333333pt;}
.y46{bottom:782.410667pt;}
.y22{bottom:784.000000pt;}
.y6a{bottom:784.933333pt;}
.y2{bottom:790.666667pt;}
.y45{bottom:802.938667pt;}
.y21{bottom:804.000000pt;}
.y69{bottom:804.533333pt;}
.y92{bottom:817.333333pt;}
.y44{bottom:823.466667pt;}
.y20{bottom:824.000000pt;}
.y68{bottom:824.133333pt;}
.y91{bottom:830.666667pt;}
.h8{height:34.730667pt;}
.h7{height:35.546875pt;}
.h9{height:36.229167pt;}
.h4{height:43.733333pt;}
.h1{height:45.286458pt;}
.h6{height:54.343750pt;}
.h2{height:71.093750pt;}
.h3{height:90.572917pt;}
.h5{height:307.599351pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.234000pt;}
.x9{left:86.456667pt;}
.x4{left:96.450000pt;}
.x7{left:100.000000pt;}
.x8{left:113.216000pt;}
.xa{left:160.468400pt;}
.x2{left:331.858667pt;}
.x3{left:376.818667pt;}
.x6{left:556.250000pt;}
}




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