
    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_bb8ee6c328adf51fc8a72099.woff')format("woff");}.ff1{font-family:ff1;line-height:1.126465;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_211977938ed68d2e72bd3ac5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907715;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_a9dfeaf9110935207123b179.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_bf154d37a27fb3d7b1b051e8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_35b016a8d8f0569c46234721.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_943db071b6a4e6c4334666f4.woff')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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;}
.ls24{letter-spacing:-6.555000px;}
.ls22{letter-spacing:-2.691000px;}
.ls1e{letter-spacing:-0.897000px;}
.ls2f{letter-spacing:-0.690000px;}
.ls25{letter-spacing:-0.621000px;}
.ls8{letter-spacing:-0.552000px;}
.ls1a{letter-spacing:-0.483000px;}
.lsf{letter-spacing:-0.414000px;}
.ls7{letter-spacing:-0.345000px;}
.ls14{letter-spacing:-0.276000px;}
.ls1c{letter-spacing:-0.207000px;}
.ls1d{letter-spacing:-0.138000px;}
.ls6{letter-spacing:-0.069000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.069000px;}
.ls10{letter-spacing:0.138000px;}
.ls20{letter-spacing:0.207000px;}
.ls2{letter-spacing:0.276000px;}
.ls32{letter-spacing:0.315000px;}
.lsc{letter-spacing:0.345000px;}
.ls36{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.414000px;}
.ls12{letter-spacing:0.483000px;}
.ls19{letter-spacing:0.552000px;}
.ls1b{letter-spacing:0.621000px;}
.ls18{letter-spacing:0.690000px;}
.ls21{letter-spacing:0.759000px;}
.ls15{letter-spacing:0.828000px;}
.lsb{letter-spacing:0.897000px;}
.ls3{letter-spacing:0.966000px;}
.ls1f{letter-spacing:1.035000px;}
.ls11{letter-spacing:1.173000px;}
.ls2e{letter-spacing:1.656000px;}
.ls2b{letter-spacing:2.001000px;}
.ls2a{letter-spacing:2.070000px;}
.lse{letter-spacing:2.730000px;}
.ls4{letter-spacing:3.312000px;}
.ls0{letter-spacing:3.900000px;}
.ls2d{letter-spacing:4.416000px;}
.ls26{letter-spacing:4.485000px;}
.ls27{letter-spacing:4.968000px;}
.ls33{letter-spacing:5.400000px;}
.ls1{letter-spacing:6.000000px;}
.ls9{letter-spacing:6.240000px;}
.ls30{letter-spacing:6.300000px;}
.ls17{letter-spacing:6.693000px;}
.ls23{letter-spacing:6.831000px;}
.ls2c{letter-spacing:7.107000px;}
.ls16{letter-spacing:7.245000px;}
.lsa{letter-spacing:7.731000px;}
.ls28{letter-spacing:8.901000px;}
.ls29{letter-spacing:9.108000px;}
.ls31{letter-spacing:9.450000px;}
.ls34{letter-spacing:9.702000px;}
.ls35{letter-spacing:9.828000px;}
.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;}
}
.wsb{word-spacing:-24.003000px;}
.ws0{word-spacing:-21.075000px;}
.ws8{word-spacing:-19.803000px;}
.ws1{word-spacing:-19.389000px;}
.ws9{word-spacing:-17.871000px;}
.wsc{word-spacing:-17.703000px;}
.ws6{word-spacing:-17.664000px;}
.wsa{word-spacing:-17.595000px;}
.ws5{word-spacing:-17.388000px;}
.ws7{word-spacing:-17.181000px;}
.ws3{word-spacing:-17.112000px;}
.ws4{word-spacing:-17.043000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1615.752000px;}
._14{margin-left:-15.378000px;}
._f{margin-left:-14.289000px;}
._e{margin-left:-13.272000px;}
._10{margin-left:-12.228000px;}
._12{margin-left:-10.011000px;}
._11{margin-left:-8.889000px;}
._d{margin-left:-7.383000px;}
._8{margin-left:-6.033000px;}
._3{margin-left:-4.710000px;}
._4{margin-left:-3.480000px;}
._2{margin-left:-1.800000px;}
._7{width:1.050000px;}
._b{width:2.520000px;}
._1{width:4.080000px;}
._5{width:6.000000px;}
._6{width:7.560000px;}
._a{width:8.733000px;}
._c{width:10.524000px;}
._13{width:12.036000px;}
._15{width:13.833000px;}
._9{width:15.600000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.691000px;}
.y95{bottom:109.355250px;}
.y4a{bottom:110.200500px;}
.y22{bottom:110.394000px;}
.yb4{bottom:110.691900px;}
.y70{bottom:111.660000px;}
.yb3{bottom:130.341900px;}
.y94{bottom:130.797000px;}
.y49{bottom:131.055750px;}
.y21{bottom:131.697750px;}
.y6f{bottom:132.360000px;}
.yb2{bottom:149.991900px;}
.y48{bottom:151.911000px;}
.y93{bottom:152.238750px;}
.y20{bottom:153.001500px;}
.y6e{bottom:153.060000px;}
.yb1{bottom:170.092500px;}
.y47{bottom:172.766250px;}
.y92{bottom:173.680500px;}
.y6d{bottom:173.760000px;}
.y1f{bottom:174.305250px;}
.y46{bottom:193.621500px;}
.y6c{bottom:194.460000px;}
.y91{bottom:195.122250px;}
.y1e{bottom:195.609000px;}
.yb0{bottom:205.042500px;}
.y45{bottom:214.476750px;}
.y6b{bottom:215.160000px;}
.y90{bottom:216.564000px;}
.y1d{bottom:216.757500px;}
.yaf{bottom:225.142500px;}
.y44{bottom:235.332000px;}
.y6a{bottom:235.860000px;}
.y1c{bottom:237.906000px;}
.y8f{bottom:238.005750px;}
.yae{bottom:245.242500px;}
.y43{bottom:256.187250px;}
.y69{bottom:256.560000px;}
.y1b{bottom:259.054500px;}
.y8e{bottom:259.447500px;}
.yad{bottom:265.342500px;}
.y42{bottom:277.042500px;}
.y68{bottom:277.260000px;}
.y1a{bottom:280.203000px;}
.y8d{bottom:280.889250px;}
.y41{bottom:297.897750px;}
.y67{bottom:297.960000px;}
.yac{bottom:300.292500px;}
.y19{bottom:301.351500px;}
.y8c{bottom:302.331000px;}
.y66{bottom:318.660000px;}
.y40{bottom:318.753000px;}
.y18{bottom:322.500000px;}
.y8b{bottom:323.772750px;}
.y65{bottom:339.360000px;}
.y3f{bottom:339.608250px;}
.y17{bottom:343.648500px;}
.y8a{bottom:345.214500px;}
.yab{bottom:350.148000px;}
.y64{bottom:360.060000px;}
.y3e{bottom:360.463500px;}
.y16{bottom:364.797000px;}
.y89{bottom:366.656250px;}
.yaa{bottom:377.694750px;}
.y63{bottom:380.760000px;}
.y3d{bottom:381.318750px;}
.y15{bottom:385.945500px;}
.y88{bottom:388.098000px;}
.ya9{bottom:396.752250px;}
.y62{bottom:401.460000px;}
.y3c{bottom:402.174000px;}
.y14{bottom:407.094000px;}
.y87{bottom:409.539750px;}
.y61{bottom:422.160000px;}
.y3b{bottom:423.029250px;}
.ya8{bottom:424.299000px;}
.y13{bottom:428.242500px;}
.y86{bottom:430.981500px;}
.y60{bottom:442.860000px;}
.y3a{bottom:443.884500px;}
.y12{bottom:449.391000px;}
.ya7{bottom:451.845750px;}
.y85{bottom:452.423250px;}
.y5f{bottom:463.560000px;}
.y39{bottom:464.739750px;}
.y11{bottom:470.539500px;}
.y84{bottom:473.865000px;}
.ya6{bottom:479.392500px;}
.y5e{bottom:484.260000px;}
.y38{bottom:485.595000px;}
.y10{bottom:491.688000px;}
.y83{bottom:495.306750px;}
.ya5{bottom:498.450000px;}
.y5d{bottom:504.960000px;}
.y37{bottom:506.450250px;}
.yf{bottom:512.836500px;}
.y82{bottom:516.748500px;}
.y5c{bottom:525.660000px;}
.ya4{bottom:525.996750px;}
.y36{bottom:527.305500px;}
.y81{bottom:538.190250px;}
.ya3{bottom:545.054250px;}
.y5b{bottom:546.360000px;}
.y35{bottom:548.160750px;}
.ye{bottom:554.836500px;}
.y80{bottom:559.632000px;}
.y5a{bottom:567.060000px;}
.y34{bottom:569.016000px;}
.ya2{bottom:572.601000px;}
.yd{bottom:574.336500px;}
.y7f{bottom:581.073750px;}
.y59{bottom:587.760000px;}
.y33{bottom:589.871250px;}
.ya1{bottom:600.147750px;}
.y7e{bottom:602.515500px;}
.yc{bottom:604.467000px;}
.y58{bottom:608.460000px;}
.y32{bottom:610.726500px;}
.y7d{bottom:623.957250px;}
.ya0{bottom:627.694500px;}
.y57{bottom:629.160000px;}
.y31{bottom:631.581750px;}
.yb{bottom:636.867000px;}
.y7c{bottom:645.399000px;}
.y9f{bottom:646.752000px;}
.y30{bottom:652.437000px;}
.y56{bottom:660.484500px;}
.y7b{bottom:666.840750px;}
.ya{bottom:669.267000px;}
.y2f{bottom:673.292250px;}
.y9e{bottom:674.298750px;}
.y7a{bottom:688.282500px;}
.y55{bottom:690.469500px;}
.y2e{bottom:694.147500px;}
.y9d{bottom:701.845500px;}
.y79{bottom:709.724250px;}
.y54{bottom:709.819500px;}
.y2d{bottom:715.002750px;}
.y9c{bottom:720.903000px;}
.y53{bottom:729.169500px;}
.y78{bottom:731.166000px;}
.y2c{bottom:735.858000px;}
.y9{bottom:736.167000px;}
.y9b{bottom:748.449750px;}
.y52{bottom:748.519500px;}
.y77{bottom:752.607750px;}
.y8{bottom:754.167000px;}
.y2b{bottom:756.713250px;}
.y7{bottom:772.167000px;}
.y76{bottom:774.049500px;}
.y9a{bottom:775.996500px;}
.y2a{bottom:777.568500px;}
.y51{bottom:778.500000px;}
.y6{bottom:790.167000px;}
.y99{bottom:795.054000px;}
.y75{bottom:795.491250px;}
.y29{bottom:798.423750px;}
.y50{bottom:799.200000px;}
.y74{bottom:816.933000px;}
.y28{bottom:819.279000px;}
.y4f{bottom:819.900000px;}
.y98{bottom:822.600750px;}
.y73{bottom:838.374750px;}
.y5{bottom:839.062500px;}
.y27{bottom:840.134250px;}
.y4e{bottom:840.600000px;}
.y97{bottom:850.147500px;}
.y4{bottom:857.062500px;}
.y72{bottom:859.816500px;}
.y26{bottom:860.989500px;}
.y4d{bottom:861.300000px;}
.y96{bottom:869.205000px;}
.y71{bottom:881.258250px;}
.y25{bottom:881.844750px;}
.y4c{bottom:882.000000px;}
.y3{bottom:885.697500px;}
.y24{bottom:902.700000px;}
.y2{bottom:903.697500px;}
.y23{bottom:948.406500px;}
.y4b{bottom:966.406500px;}
.h8{height:42.890625px;}
.hb{height:48.251953px;}
.h9{height:50.947266px;}
.h4{height:53.613281px;}
.h3{height:56.293945px;}
.ha{height:58.589355px;}
.h7{height:61.655273px;}
.h2{height:67.016602px;}
.h5{height:75.058594px;}
.h6{height:96.503906px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:85.044563px;}
.x3{left:106.299150px;}
.x5{left:136.063050px;}
.x2{left:233.857500px;}
.x1{left:609.670500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-5.826667pt;}
.ls22{letter-spacing:-2.392000pt;}
.ls1e{letter-spacing:-0.797333pt;}
.ls2f{letter-spacing:-0.613333pt;}
.ls25{letter-spacing:-0.552000pt;}
.ls8{letter-spacing:-0.490667pt;}
.ls1a{letter-spacing:-0.429333pt;}
.lsf{letter-spacing:-0.368000pt;}
.ls7{letter-spacing:-0.306667pt;}
.ls14{letter-spacing:-0.245333pt;}
.ls1c{letter-spacing:-0.184000pt;}
.ls1d{letter-spacing:-0.122667pt;}
.ls6{letter-spacing:-0.061333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.061333pt;}
.ls10{letter-spacing:0.122667pt;}
.ls20{letter-spacing:0.184000pt;}
.ls2{letter-spacing:0.245333pt;}
.ls32{letter-spacing:0.280000pt;}
.lsc{letter-spacing:0.306667pt;}
.ls36{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.368000pt;}
.ls12{letter-spacing:0.429333pt;}
.ls19{letter-spacing:0.490667pt;}
.ls1b{letter-spacing:0.552000pt;}
.ls18{letter-spacing:0.613333pt;}
.ls21{letter-spacing:0.674667pt;}
.ls15{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.797333pt;}
.ls3{letter-spacing:0.858667pt;}
.ls1f{letter-spacing:0.920000pt;}
.ls11{letter-spacing:1.042667pt;}
.ls2e{letter-spacing:1.472000pt;}
.ls2b{letter-spacing:1.778667pt;}
.ls2a{letter-spacing:1.840000pt;}
.lse{letter-spacing:2.426667pt;}
.ls4{letter-spacing:2.944000pt;}
.ls0{letter-spacing:3.466667pt;}
.ls2d{letter-spacing:3.925333pt;}
.ls26{letter-spacing:3.986667pt;}
.ls27{letter-spacing:4.416000pt;}
.ls33{letter-spacing:4.800000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls9{letter-spacing:5.546667pt;}
.ls30{letter-spacing:5.600000pt;}
.ls17{letter-spacing:5.949333pt;}
.ls23{letter-spacing:6.072000pt;}
.ls2c{letter-spacing:6.317333pt;}
.ls16{letter-spacing:6.440000pt;}
.lsa{letter-spacing:6.872000pt;}
.ls28{letter-spacing:7.912000pt;}
.ls29{letter-spacing:8.096000pt;}
.ls31{letter-spacing:8.400000pt;}
.ls34{letter-spacing:8.624000pt;}
.ls35{letter-spacing:8.736000pt;}
.wsb{word-spacing:-21.336000pt;}
.ws0{word-spacing:-18.733333pt;}
.ws8{word-spacing:-17.602667pt;}
.ws1{word-spacing:-17.234667pt;}
.ws9{word-spacing:-15.885333pt;}
.wsc{word-spacing:-15.736000pt;}
.ws6{word-spacing:-15.701333pt;}
.wsa{word-spacing:-15.640000pt;}
.ws5{word-spacing:-15.456000pt;}
.ws7{word-spacing:-15.272000pt;}
.ws3{word-spacing:-15.210667pt;}
.ws4{word-spacing:-15.149333pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1436.224000pt;}
._14{margin-left:-13.669333pt;}
._f{margin-left:-12.701333pt;}
._e{margin-left:-11.797333pt;}
._10{margin-left:-10.869333pt;}
._12{margin-left:-8.898667pt;}
._11{margin-left:-7.901333pt;}
._d{margin-left:-6.562667pt;}
._8{margin-left:-5.362667pt;}
._3{margin-left:-4.186667pt;}
._4{margin-left:-3.093333pt;}
._2{margin-left:-1.600000pt;}
._7{width:0.933333pt;}
._b{width:2.240000pt;}
._1{width:3.626667pt;}
._5{width:5.333333pt;}
._6{width:6.720000pt;}
._a{width:7.762667pt;}
._c{width:9.354667pt;}
._13{width:10.698667pt;}
._15{width:12.296000pt;}
._9{width:13.866667pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.392000pt;}
.y95{bottom:97.204667pt;}
.y4a{bottom:97.956000pt;}
.y22{bottom:98.128000pt;}
.yb4{bottom:98.392800pt;}
.y70{bottom:99.253333pt;}
.yb3{bottom:115.859467pt;}
.y94{bottom:116.264000pt;}
.y49{bottom:116.494000pt;}
.y21{bottom:117.064667pt;}
.y6f{bottom:117.653333pt;}
.yb2{bottom:133.326133pt;}
.y48{bottom:135.032000pt;}
.y93{bottom:135.323333pt;}
.y20{bottom:136.001333pt;}
.y6e{bottom:136.053333pt;}
.yb1{bottom:151.193333pt;}
.y47{bottom:153.570000pt;}
.y92{bottom:154.382667pt;}
.y6d{bottom:154.453333pt;}
.y1f{bottom:154.938000pt;}
.y46{bottom:172.108000pt;}
.y6c{bottom:172.853333pt;}
.y91{bottom:173.442000pt;}
.y1e{bottom:173.874667pt;}
.yb0{bottom:182.260000pt;}
.y45{bottom:190.646000pt;}
.y6b{bottom:191.253333pt;}
.y90{bottom:192.501333pt;}
.y1d{bottom:192.673333pt;}
.yaf{bottom:200.126667pt;}
.y44{bottom:209.184000pt;}
.y6a{bottom:209.653333pt;}
.y1c{bottom:211.472000pt;}
.y8f{bottom:211.560667pt;}
.yae{bottom:217.993333pt;}
.y43{bottom:227.722000pt;}
.y69{bottom:228.053333pt;}
.y1b{bottom:230.270667pt;}
.y8e{bottom:230.620000pt;}
.yad{bottom:235.860000pt;}
.y42{bottom:246.260000pt;}
.y68{bottom:246.453333pt;}
.y1a{bottom:249.069333pt;}
.y8d{bottom:249.679333pt;}
.y41{bottom:264.798000pt;}
.y67{bottom:264.853333pt;}
.yac{bottom:266.926667pt;}
.y19{bottom:267.868000pt;}
.y8c{bottom:268.738667pt;}
.y66{bottom:283.253333pt;}
.y40{bottom:283.336000pt;}
.y18{bottom:286.666667pt;}
.y8b{bottom:287.798000pt;}
.y65{bottom:301.653333pt;}
.y3f{bottom:301.874000pt;}
.y17{bottom:305.465333pt;}
.y8a{bottom:306.857333pt;}
.yab{bottom:311.242667pt;}
.y64{bottom:320.053333pt;}
.y3e{bottom:320.412000pt;}
.y16{bottom:324.264000pt;}
.y89{bottom:325.916667pt;}
.yaa{bottom:335.728667pt;}
.y63{bottom:338.453333pt;}
.y3d{bottom:338.950000pt;}
.y15{bottom:343.062667pt;}
.y88{bottom:344.976000pt;}
.ya9{bottom:352.668667pt;}
.y62{bottom:356.853333pt;}
.y3c{bottom:357.488000pt;}
.y14{bottom:361.861333pt;}
.y87{bottom:364.035333pt;}
.y61{bottom:375.253333pt;}
.y3b{bottom:376.026000pt;}
.ya8{bottom:377.154667pt;}
.y13{bottom:380.660000pt;}
.y86{bottom:383.094667pt;}
.y60{bottom:393.653333pt;}
.y3a{bottom:394.564000pt;}
.y12{bottom:399.458667pt;}
.ya7{bottom:401.640667pt;}
.y85{bottom:402.154000pt;}
.y5f{bottom:412.053333pt;}
.y39{bottom:413.102000pt;}
.y11{bottom:418.257333pt;}
.y84{bottom:421.213333pt;}
.ya6{bottom:426.126667pt;}
.y5e{bottom:430.453333pt;}
.y38{bottom:431.640000pt;}
.y10{bottom:437.056000pt;}
.y83{bottom:440.272667pt;}
.ya5{bottom:443.066667pt;}
.y5d{bottom:448.853333pt;}
.y37{bottom:450.178000pt;}
.yf{bottom:455.854667pt;}
.y82{bottom:459.332000pt;}
.y5c{bottom:467.253333pt;}
.ya4{bottom:467.552667pt;}
.y36{bottom:468.716000pt;}
.y81{bottom:478.391333pt;}
.ya3{bottom:484.492667pt;}
.y5b{bottom:485.653333pt;}
.y35{bottom:487.254000pt;}
.ye{bottom:493.188000pt;}
.y80{bottom:497.450667pt;}
.y5a{bottom:504.053333pt;}
.y34{bottom:505.792000pt;}
.ya2{bottom:508.978667pt;}
.yd{bottom:510.521333pt;}
.y7f{bottom:516.510000pt;}
.y59{bottom:522.453333pt;}
.y33{bottom:524.330000pt;}
.ya1{bottom:533.464667pt;}
.y7e{bottom:535.569333pt;}
.yc{bottom:537.304000pt;}
.y58{bottom:540.853333pt;}
.y32{bottom:542.868000pt;}
.y7d{bottom:554.628667pt;}
.ya0{bottom:557.950667pt;}
.y57{bottom:559.253333pt;}
.y31{bottom:561.406000pt;}
.yb{bottom:566.104000pt;}
.y7c{bottom:573.688000pt;}
.y9f{bottom:574.890667pt;}
.y30{bottom:579.944000pt;}
.y56{bottom:587.097333pt;}
.y7b{bottom:592.747333pt;}
.ya{bottom:594.904000pt;}
.y2f{bottom:598.482000pt;}
.y9e{bottom:599.376667pt;}
.y7a{bottom:611.806667pt;}
.y55{bottom:613.750667pt;}
.y2e{bottom:617.020000pt;}
.y9d{bottom:623.862667pt;}
.y79{bottom:630.866000pt;}
.y54{bottom:630.950667pt;}
.y2d{bottom:635.558000pt;}
.y9c{bottom:640.802667pt;}
.y53{bottom:648.150667pt;}
.y78{bottom:649.925333pt;}
.y2c{bottom:654.096000pt;}
.y9{bottom:654.370667pt;}
.y9b{bottom:665.288667pt;}
.y52{bottom:665.350667pt;}
.y77{bottom:668.984667pt;}
.y8{bottom:670.370667pt;}
.y2b{bottom:672.634000pt;}
.y7{bottom:686.370667pt;}
.y76{bottom:688.044000pt;}
.y9a{bottom:689.774667pt;}
.y2a{bottom:691.172000pt;}
.y51{bottom:692.000000pt;}
.y6{bottom:702.370667pt;}
.y99{bottom:706.714667pt;}
.y75{bottom:707.103333pt;}
.y29{bottom:709.710000pt;}
.y50{bottom:710.400000pt;}
.y74{bottom:726.162667pt;}
.y28{bottom:728.248000pt;}
.y4f{bottom:728.800000pt;}
.y98{bottom:731.200667pt;}
.y73{bottom:745.222000pt;}
.y5{bottom:745.833333pt;}
.y27{bottom:746.786000pt;}
.y4e{bottom:747.200000pt;}
.y97{bottom:755.686667pt;}
.y4{bottom:761.833333pt;}
.y72{bottom:764.281333pt;}
.y26{bottom:765.324000pt;}
.y4d{bottom:765.600000pt;}
.y96{bottom:772.626667pt;}
.y71{bottom:783.340667pt;}
.y25{bottom:783.862000pt;}
.y4c{bottom:784.000000pt;}
.y3{bottom:787.286667pt;}
.y24{bottom:802.400000pt;}
.y2{bottom:803.286667pt;}
.y23{bottom:843.028000pt;}
.y4b{bottom:859.028000pt;}
.h8{height:38.125000pt;}
.hb{height:42.890625pt;}
.h9{height:45.286458pt;}
.h4{height:47.656250pt;}
.h3{height:50.039062pt;}
.ha{height:52.079427pt;}
.h7{height:54.804688pt;}
.h2{height:59.570312pt;}
.h5{height:66.718750pt;}
.h6{height:85.781250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:75.595167pt;}
.x3{left:94.488133pt;}
.x5{left:120.944933pt;}
.x2{left:207.873333pt;}
.x1{left:541.929333pt;}
}




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