
    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_1333dc6bb8934fc919766f29.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_20924d6cb57d6d94542045af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_2f027ddfba4be7fe9725ebf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_b08a764def4792b45b4d6aec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_cce65e5212857e952c814308.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_7a2e11139d7a828ac433e38d.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:17.820000px;}
.ls38{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.840000px;}
.ls39{letter-spacing:-0.702000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls3b{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.480000px;}
.ls3c{letter-spacing:-0.378000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls17{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.120000px;}
.ls29{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.420000px;}
.ls30{letter-spacing:0.432000px;}
.ls37{letter-spacing:0.472200px;}
.ls4{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.702000px;}
.ls1d{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.756000px;}
.ls0{letter-spacing:0.780000px;}
.ls36{letter-spacing:0.810000px;}
.ls3{letter-spacing:0.840000px;}
.ls31{letter-spacing:0.918000px;}
.lsc{letter-spacing:0.960000px;}
.lsd{letter-spacing:1.020000px;}
.ls2f{letter-spacing:1.080000px;}
.ls33{letter-spacing:1.188000px;}
.ls7{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.380000px;}
.ls21{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.500000px;}
.ls2c{letter-spacing:1.512000px;}
.ls15{letter-spacing:1.620000px;}
.ls25{letter-spacing:1.800000px;}
.ls2{letter-spacing:1.860000px;}
.ls2b{letter-spacing:1.944000px;}
.ls10{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.160000px;}
.ls26{letter-spacing:2.268000px;}
.ls2e{letter-spacing:2.592000px;}
.ls6{letter-spacing:2.820000px;}
.ls20{letter-spacing:2.880000px;}
.lse{letter-spacing:3.024000px;}
.ls24{letter-spacing:3.060000px;}
.lsa{letter-spacing:3.120000px;}
.ls2d{letter-spacing:3.348000px;}
.ls22{letter-spacing:3.660000px;}
.ls1{letter-spacing:3.780000px;}
.ls34{letter-spacing:5.076000px;}
.ls35{letter-spacing:5.346000px;}
.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:-16.980000px;}
.ws4{word-spacing:-16.380000px;}
.ws5{word-spacing:-16.020000px;}
.ws3{word-spacing:-15.480000px;}
.ws25{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.820000px;}
.ws0{word-spacing:-14.760000px;}
.ws27{word-spacing:-14.688000px;}
.ws6{word-spacing:-13.500000px;}
.ws26{word-spacing:-13.176000px;}
.ws1{word-spacing:-7.830000px;}
.ws36{word-spacing:-7.290000px;}
.ws35{word-spacing:-4.266000px;}
.ws20{word-spacing:-4.140000px;}
.ws9{word-spacing:-3.780000px;}
.ws12{word-spacing:-3.720000px;}
.ws3a{word-spacing:-3.510000px;}
.ws41{word-spacing:-3.348000px;}
.ws1b{word-spacing:-3.120000px;}
.ws16{word-spacing:-3.000000px;}
.ws3e{word-spacing:-2.970000px;}
.ws3f{word-spacing:-2.862000px;}
.ws14{word-spacing:-2.820000px;}
.ws29{word-spacing:-2.580000px;}
.ws2a{word-spacing:-2.340000px;}
.ws1d{word-spacing:-1.944000px;}
.ws2c{word-spacing:-1.800000px;}
.wsd{word-spacing:-1.740000px;}
.ws2d{word-spacing:-1.020000px;}
.ws1c{word-spacing:-0.960000px;}
.ws31{word-spacing:-0.702000px;}
.ws18{word-spacing:-0.600000px;}
.ws37{word-spacing:-0.270000px;}
.ws32{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.162000px;}
.ws4a{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:0.180000px;}
.ws49{word-spacing:0.324000px;}
.ws34{word-spacing:0.594000px;}
.ws48{word-spacing:0.702000px;}
.ws2e{word-spacing:0.840000px;}
.ws3b{word-spacing:0.918000px;}
.ws13{word-spacing:0.960000px;}
.ws28{word-spacing:1.380000px;}
.ws44{word-spacing:1.404000px;}
.ws2f{word-spacing:1.512000px;}
.ws3d{word-spacing:1.566000px;}
.wse{word-spacing:1.620000px;}
.wsf{word-spacing:1.860000px;}
.ws46{word-spacing:2.160000px;}
.ws42{word-spacing:2.430000px;}
.ws3c{word-spacing:3.186000px;}
.ws30{word-spacing:3.456000px;}
.wsa{word-spacing:3.600000px;}
.ws21{word-spacing:3.960000px;}
.ws24{word-spacing:4.380000px;}
.ws1a{word-spacing:4.680000px;}
.ws17{word-spacing:4.860000px;}
.ws43{word-spacing:4.968000px;}
.ws33{word-spacing:5.184000px;}
.ws2b{word-spacing:5.220000px;}
.ws23{word-spacing:5.820000px;}
.ws1f{word-spacing:6.540000px;}
.ws38{word-spacing:6.588000px;}
.ws1e{word-spacing:6.750000px;}
.ws39{word-spacing:6.804000px;}
.ws11{word-spacing:7.140000px;}
.wsb{word-spacing:7.260000px;}
.ws22{word-spacing:7.380000px;}
.ws19{word-spacing:7.440000px;}
.wsc{word-spacing:7.500000px;}
.ws10{word-spacing:7.620000px;}
.ws45{word-spacing:10.206000px;}
.ws47{word-spacing:10.746000px;}
._b{margin-left:-94.500000px;}
._4{margin-left:-7.680000px;}
._6{margin-left:-6.211800px;}
._2{margin-left:-4.630800px;}
._3{margin-left:-3.540000px;}
._d{margin-left:-2.538000px;}
._1{margin-left:-1.528200px;}
._5{width:1.001400px;}
._a{width:2.317200px;}
._8{width:7.380000px;}
._9{width:8.668200px;}
._7{width:10.560000px;}
._0{width:1399.268400px;}
._c{width:1480.293600px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:31.320000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:79.459800px;}
.y46{bottom:79.474500px;}
.ya4{bottom:87.014700px;}
.y72{bottom:87.251100px;}
.y45{bottom:97.474500px;}
.y26{bottom:97.759800px;}
.ya3{bottom:100.514700px;}
.y71{bottom:103.450950px;}
.ya2{bottom:114.014700px;}
.y44{bottom:115.474500px;}
.y25{bottom:116.059800px;}
.y70{bottom:119.651100px;}
.ya1{bottom:127.514700px;}
.y43{bottom:133.474500px;}
.y24{bottom:134.359800px;}
.y6f{bottom:135.851100px;}
.ya0{bottom:141.014700px;}
.y42{bottom:151.474500px;}
.y6e{bottom:152.051100px;}
.y23{bottom:152.659800px;}
.y6d{bottom:168.251100px;}
.y41{bottom:169.474500px;}
.y9f{bottom:170.714700px;}
.y22{bottom:170.959800px;}
.y6c{bottom:184.451100px;}
.y9e{bottom:186.914700px;}
.y40{bottom:187.474500px;}
.y21{bottom:189.259800px;}
.y6b{bottom:200.651100px;}
.y9d{bottom:203.114700px;}
.y3f{bottom:205.474500px;}
.y20{bottom:207.559800px;}
.y6a{bottom:216.851100px;}
.y9c{bottom:219.314700px;}
.y3e{bottom:223.474500px;}
.y1f{bottom:225.859800px;}
.y69{bottom:233.051100px;}
.y9b{bottom:235.514700px;}
.y3d{bottom:241.474500px;}
.y1e{bottom:244.159800px;}
.y68{bottom:249.251100px;}
.y9a{bottom:251.714700px;}
.y3c{bottom:259.474500px;}
.y1d{bottom:262.459800px;}
.y67{bottom:265.451100px;}
.y99{bottom:267.914700px;}
.y3b{bottom:277.474500px;}
.y1c{bottom:280.759800px;}
.y66{bottom:281.651100px;}
.y98{bottom:284.114700px;}
.y3a{bottom:295.474500px;}
.y65{bottom:297.851100px;}
.y1b{bottom:299.059800px;}
.y97{bottom:300.314700px;}
.y39{bottom:313.474500px;}
.y64{bottom:314.051100px;}
.y96{bottom:316.514700px;}
.y1a{bottom:317.359800px;}
.y63{bottom:330.251100px;}
.y38{bottom:331.474500px;}
.y95{bottom:332.714700px;}
.y19{bottom:335.659800px;}
.y62{bottom:346.451100px;}
.y94{bottom:348.914700px;}
.y37{bottom:349.474500px;}
.y18{bottom:353.959800px;}
.y61{bottom:362.651100px;}
.y93{bottom:365.114700px;}
.y36{bottom:367.474500px;}
.y17{bottom:372.259800px;}
.y60{bottom:378.851100px;}
.y92{bottom:381.314700px;}
.y35{bottom:385.474500px;}
.y16{bottom:390.559800px;}
.y91{bottom:397.514700px;}
.y34{bottom:403.474500px;}
.y15{bottom:408.859800px;}
.y5f{bottom:413.051100px;}
.y90{bottom:413.714700px;}
.y33{bottom:421.474500px;}
.y14{bottom:427.159800px;}
.y8f{bottom:429.914700px;}
.y32{bottom:437.674500px;}
.y13{bottom:445.459800px;}
.y8e{bottom:446.114700px;}
.y31{bottom:453.874500px;}
.y8d{bottom:462.314700px;}
.y12{bottom:463.759800px;}
.y5e{bottom:467.051100px;}
.y30{bottom:470.074500px;}
.y8c{bottom:478.514700px;}
.y11{bottom:482.059800px;}
.y5d{bottom:485.051100px;}
.y2f{bottom:486.274500px;}
.y8b{bottom:494.714700px;}
.y10{bottom:500.359800px;}
.y2e{bottom:502.474500px;}
.y5c{bottom:503.051100px;}
.y8a{bottom:510.914700px;}
.yf{bottom:518.659800px;}
.y2d{bottom:520.474500px;}
.y5b{bottom:521.051100px;}
.y89{bottom:527.114700px;}
.ye{bottom:536.959800px;}
.y2c{bottom:538.474500px;}
.y5a{bottom:539.051100px;}
.y88{bottom:543.314700px;}
.yd{bottom:555.259800px;}
.y2b{bottom:556.474500px;}
.y59{bottom:557.051100px;}
.y87{bottom:559.514700px;}
.yc{bottom:573.559800px;}
.y2a{bottom:574.474500px;}
.y58{bottom:575.051100px;}
.y86{bottom:575.714700px;}
.yb{bottom:591.859800px;}
.y85{bottom:591.914700px;}
.y29{bottom:592.474500px;}
.y57{bottom:593.051100px;}
.y84{bottom:608.114700px;}
.ya{bottom:610.159800px;}
.y56{bottom:611.051100px;}
.y83{bottom:624.314700px;}
.y9{bottom:628.459800px;}
.y28{bottom:628.474500px;}
.y55{bottom:629.051100px;}
.y82{bottom:640.514700px;}
.y54{bottom:647.051100px;}
.y81{bottom:656.714700px;}
.y53{bottom:665.051100px;}
.y80{bottom:672.914700px;}
.y7{bottom:679.195650px;}
.y52{bottom:683.051100px;}
.y7f{bottom:689.114700px;}
.y51{bottom:701.051100px;}
.y7e{bottom:705.314700px;}
.y6{bottom:707.695650px;}
.y50{bottom:719.051100px;}
.y7d{bottom:721.514700px;}
.y5{bottom:736.195650px;}
.y4f{bottom:737.051100px;}
.y7c{bottom:737.714700px;}
.y7b{bottom:753.914700px;}
.y4e{bottom:755.051100px;}
.y7a{bottom:770.114700px;}
.y4d{bottom:773.051100px;}
.y79{bottom:786.314700px;}
.y8{bottom:787.758000px;}
.y4c{bottom:791.051100px;}
.y78{bottom:802.514700px;}
.y4b{bottom:809.051100px;}
.y77{bottom:818.714700px;}
.y4a{bottom:827.051100px;}
.y4{bottom:828.459900px;}
.y76{bottom:834.914550px;}
.y49{bottom:845.051100px;}
.y75{bottom:851.114700px;}
.y48{bottom:863.051100px;}
.y3{bottom:864.459900px;}
.y74{bottom:867.314700px;}
.y47{bottom:881.051100px;}
.y2{bottom:882.459900px;}
.y73{bottom:883.514700px;}
.y1{bottom:937.589700px;}
.h6{height:42.117188px;}
.h8{height:47.381836px;}
.h5{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h7{height:52.792969px;}
.h3{height:53.291016px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.750000px;}
.x8{left:85.050000px;}
.x4{left:87.750000px;}
.xb{left:106.275000px;}
.x9{left:109.050000px;}
.xa{left:167.390400px;}
.x3{left:206.948400px;}
.x2{left:222.027450px;}
.x5{left:361.425000px;}
.xd{left:382.725000px;}
.x7{left:385.425000px;}
.x6{left:391.125000px;}
.xc{left:403.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.840000pt;}
.ls38{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls39{letter-spacing:-0.624000pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls3b{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.426667pt;}
.ls3c{letter-spacing:-0.336000pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls29{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls30{letter-spacing:0.384000pt;}
.ls37{letter-spacing:0.419733pt;}
.ls4{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.624000pt;}
.ls1d{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.672000pt;}
.ls0{letter-spacing:0.693333pt;}
.ls36{letter-spacing:0.720000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls31{letter-spacing:0.816000pt;}
.lsc{letter-spacing:0.853333pt;}
.lsd{letter-spacing:0.906667pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls33{letter-spacing:1.056000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.226667pt;}
.ls21{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.333333pt;}
.ls2c{letter-spacing:1.344000pt;}
.ls15{letter-spacing:1.440000pt;}
.ls25{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.653333pt;}
.ls2b{letter-spacing:1.728000pt;}
.ls10{letter-spacing:1.760000pt;}
.ls23{letter-spacing:1.920000pt;}
.ls26{letter-spacing:2.016000pt;}
.ls2e{letter-spacing:2.304000pt;}
.ls6{letter-spacing:2.506667pt;}
.ls20{letter-spacing:2.560000pt;}
.lse{letter-spacing:2.688000pt;}
.ls24{letter-spacing:2.720000pt;}
.lsa{letter-spacing:2.773333pt;}
.ls2d{letter-spacing:2.976000pt;}
.ls22{letter-spacing:3.253333pt;}
.ls1{letter-spacing:3.360000pt;}
.ls34{letter-spacing:4.512000pt;}
.ls35{letter-spacing:4.752000pt;}
.ws7{word-spacing:-15.093333pt;}
.ws4{word-spacing:-14.560000pt;}
.ws5{word-spacing:-14.240000pt;}
.ws3{word-spacing:-13.760000pt;}
.ws25{word-spacing:-13.333333pt;}
.ws2{word-spacing:-13.173333pt;}
.ws0{word-spacing:-13.120000pt;}
.ws27{word-spacing:-13.056000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws26{word-spacing:-11.712000pt;}
.ws1{word-spacing:-6.960000pt;}
.ws36{word-spacing:-6.480000pt;}
.ws35{word-spacing:-3.792000pt;}
.ws20{word-spacing:-3.680000pt;}
.ws9{word-spacing:-3.360000pt;}
.ws12{word-spacing:-3.306667pt;}
.ws3a{word-spacing:-3.120000pt;}
.ws41{word-spacing:-2.976000pt;}
.ws1b{word-spacing:-2.773333pt;}
.ws16{word-spacing:-2.666667pt;}
.ws3e{word-spacing:-2.640000pt;}
.ws3f{word-spacing:-2.544000pt;}
.ws14{word-spacing:-2.506667pt;}
.ws29{word-spacing:-2.293333pt;}
.ws2a{word-spacing:-2.080000pt;}
.ws1d{word-spacing:-1.728000pt;}
.ws2c{word-spacing:-1.600000pt;}
.wsd{word-spacing:-1.546667pt;}
.ws2d{word-spacing:-0.906667pt;}
.ws1c{word-spacing:-0.853333pt;}
.ws31{word-spacing:-0.624000pt;}
.ws18{word-spacing:-0.533333pt;}
.ws37{word-spacing:-0.240000pt;}
.ws32{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.144000pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:0.160000pt;}
.ws49{word-spacing:0.288000pt;}
.ws34{word-spacing:0.528000pt;}
.ws48{word-spacing:0.624000pt;}
.ws2e{word-spacing:0.746667pt;}
.ws3b{word-spacing:0.816000pt;}
.ws13{word-spacing:0.853333pt;}
.ws28{word-spacing:1.226667pt;}
.ws44{word-spacing:1.248000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws3d{word-spacing:1.392000pt;}
.wse{word-spacing:1.440000pt;}
.wsf{word-spacing:1.653333pt;}
.ws46{word-spacing:1.920000pt;}
.ws42{word-spacing:2.160000pt;}
.ws3c{word-spacing:2.832000pt;}
.ws30{word-spacing:3.072000pt;}
.wsa{word-spacing:3.200000pt;}
.ws21{word-spacing:3.520000pt;}
.ws24{word-spacing:3.893333pt;}
.ws1a{word-spacing:4.160000pt;}
.ws17{word-spacing:4.320000pt;}
.ws43{word-spacing:4.416000pt;}
.ws33{word-spacing:4.608000pt;}
.ws2b{word-spacing:4.640000pt;}
.ws23{word-spacing:5.173333pt;}
.ws1f{word-spacing:5.813333pt;}
.ws38{word-spacing:5.856000pt;}
.ws1e{word-spacing:6.000000pt;}
.ws39{word-spacing:6.048000pt;}
.ws11{word-spacing:6.346667pt;}
.wsb{word-spacing:6.453333pt;}
.ws22{word-spacing:6.560000pt;}
.ws19{word-spacing:6.613333pt;}
.wsc{word-spacing:6.666667pt;}
.ws10{word-spacing:6.773333pt;}
.ws45{word-spacing:9.072000pt;}
.ws47{word-spacing:9.552000pt;}
._b{margin-left:-84.000000pt;}
._4{margin-left:-6.826667pt;}
._6{margin-left:-5.521600pt;}
._2{margin-left:-4.116267pt;}
._3{margin-left:-3.146667pt;}
._d{margin-left:-2.256000pt;}
._1{margin-left:-1.358400pt;}
._5{width:0.890133pt;}
._a{width:2.059733pt;}
._8{width:6.560000pt;}
._9{width:7.705067pt;}
._7{width:9.386667pt;}
._0{width:1243.794133pt;}
._c{width:1315.816533pt;}
.fs2{font-size:27.840000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:70.630933pt;}
.y46{bottom:70.644000pt;}
.ya4{bottom:77.346400pt;}
.y72{bottom:77.556533pt;}
.y45{bottom:86.644000pt;}
.y26{bottom:86.897600pt;}
.ya3{bottom:89.346400pt;}
.y71{bottom:91.956400pt;}
.ya2{bottom:101.346400pt;}
.y44{bottom:102.644000pt;}
.y25{bottom:103.164267pt;}
.y70{bottom:106.356533pt;}
.ya1{bottom:113.346400pt;}
.y43{bottom:118.644000pt;}
.y24{bottom:119.430933pt;}
.y6f{bottom:120.756533pt;}
.ya0{bottom:125.346400pt;}
.y42{bottom:134.644000pt;}
.y6e{bottom:135.156533pt;}
.y23{bottom:135.697600pt;}
.y6d{bottom:149.556533pt;}
.y41{bottom:150.644000pt;}
.y9f{bottom:151.746400pt;}
.y22{bottom:151.964267pt;}
.y6c{bottom:163.956533pt;}
.y9e{bottom:166.146400pt;}
.y40{bottom:166.644000pt;}
.y21{bottom:168.230933pt;}
.y6b{bottom:178.356533pt;}
.y9d{bottom:180.546400pt;}
.y3f{bottom:182.644000pt;}
.y20{bottom:184.497600pt;}
.y6a{bottom:192.756533pt;}
.y9c{bottom:194.946400pt;}
.y3e{bottom:198.644000pt;}
.y1f{bottom:200.764267pt;}
.y69{bottom:207.156533pt;}
.y9b{bottom:209.346400pt;}
.y3d{bottom:214.644000pt;}
.y1e{bottom:217.030933pt;}
.y68{bottom:221.556533pt;}
.y9a{bottom:223.746400pt;}
.y3c{bottom:230.644000pt;}
.y1d{bottom:233.297600pt;}
.y67{bottom:235.956533pt;}
.y99{bottom:238.146400pt;}
.y3b{bottom:246.644000pt;}
.y1c{bottom:249.564267pt;}
.y66{bottom:250.356533pt;}
.y98{bottom:252.546400pt;}
.y3a{bottom:262.644000pt;}
.y65{bottom:264.756533pt;}
.y1b{bottom:265.830933pt;}
.y97{bottom:266.946400pt;}
.y39{bottom:278.644000pt;}
.y64{bottom:279.156533pt;}
.y96{bottom:281.346400pt;}
.y1a{bottom:282.097600pt;}
.y63{bottom:293.556533pt;}
.y38{bottom:294.644000pt;}
.y95{bottom:295.746400pt;}
.y19{bottom:298.364267pt;}
.y62{bottom:307.956533pt;}
.y94{bottom:310.146400pt;}
.y37{bottom:310.644000pt;}
.y18{bottom:314.630933pt;}
.y61{bottom:322.356533pt;}
.y93{bottom:324.546400pt;}
.y36{bottom:326.644000pt;}
.y17{bottom:330.897600pt;}
.y60{bottom:336.756533pt;}
.y92{bottom:338.946400pt;}
.y35{bottom:342.644000pt;}
.y16{bottom:347.164267pt;}
.y91{bottom:353.346400pt;}
.y34{bottom:358.644000pt;}
.y15{bottom:363.430933pt;}
.y5f{bottom:367.156533pt;}
.y90{bottom:367.746400pt;}
.y33{bottom:374.644000pt;}
.y14{bottom:379.697600pt;}
.y8f{bottom:382.146400pt;}
.y32{bottom:389.044000pt;}
.y13{bottom:395.964267pt;}
.y8e{bottom:396.546400pt;}
.y31{bottom:403.444000pt;}
.y8d{bottom:410.946400pt;}
.y12{bottom:412.230933pt;}
.y5e{bottom:415.156533pt;}
.y30{bottom:417.844000pt;}
.y8c{bottom:425.346400pt;}
.y11{bottom:428.497600pt;}
.y5d{bottom:431.156533pt;}
.y2f{bottom:432.244000pt;}
.y8b{bottom:439.746400pt;}
.y10{bottom:444.764267pt;}
.y2e{bottom:446.644000pt;}
.y5c{bottom:447.156533pt;}
.y8a{bottom:454.146400pt;}
.yf{bottom:461.030933pt;}
.y2d{bottom:462.644000pt;}
.y5b{bottom:463.156533pt;}
.y89{bottom:468.546400pt;}
.ye{bottom:477.297600pt;}
.y2c{bottom:478.644000pt;}
.y5a{bottom:479.156533pt;}
.y88{bottom:482.946400pt;}
.yd{bottom:493.564267pt;}
.y2b{bottom:494.644000pt;}
.y59{bottom:495.156533pt;}
.y87{bottom:497.346400pt;}
.yc{bottom:509.830933pt;}
.y2a{bottom:510.644000pt;}
.y58{bottom:511.156533pt;}
.y86{bottom:511.746400pt;}
.yb{bottom:526.097600pt;}
.y85{bottom:526.146400pt;}
.y29{bottom:526.644000pt;}
.y57{bottom:527.156533pt;}
.y84{bottom:540.546400pt;}
.ya{bottom:542.364267pt;}
.y56{bottom:543.156533pt;}
.y83{bottom:554.946400pt;}
.y9{bottom:558.630933pt;}
.y28{bottom:558.644000pt;}
.y55{bottom:559.156533pt;}
.y82{bottom:569.346400pt;}
.y54{bottom:575.156533pt;}
.y81{bottom:583.746400pt;}
.y53{bottom:591.156533pt;}
.y80{bottom:598.146400pt;}
.y7{bottom:603.729467pt;}
.y52{bottom:607.156533pt;}
.y7f{bottom:612.546400pt;}
.y51{bottom:623.156533pt;}
.y7e{bottom:626.946400pt;}
.y6{bottom:629.062800pt;}
.y50{bottom:639.156533pt;}
.y7d{bottom:641.346400pt;}
.y5{bottom:654.396133pt;}
.y4f{bottom:655.156533pt;}
.y7c{bottom:655.746400pt;}
.y7b{bottom:670.146400pt;}
.y4e{bottom:671.156533pt;}
.y7a{bottom:684.546400pt;}
.y4d{bottom:687.156533pt;}
.y79{bottom:698.946400pt;}
.y8{bottom:700.229333pt;}
.y4c{bottom:703.156533pt;}
.y78{bottom:713.346400pt;}
.y4b{bottom:719.156533pt;}
.y77{bottom:727.746400pt;}
.y4a{bottom:735.156533pt;}
.y4{bottom:736.408800pt;}
.y76{bottom:742.146267pt;}
.y49{bottom:751.156533pt;}
.y75{bottom:756.546400pt;}
.y48{bottom:767.156533pt;}
.y3{bottom:768.408800pt;}
.y74{bottom:770.946400pt;}
.y47{bottom:783.156533pt;}
.y2{bottom:784.408800pt;}
.y73{bottom:785.346400pt;}
.y1{bottom:833.413067pt;}
.h6{height:37.437500pt;}
.h8{height:42.117188pt;}
.h5{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h7{height:46.927083pt;}
.h3{height:47.369792pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.666667pt;}
.x8{left:75.600000pt;}
.x4{left:78.000000pt;}
.xb{left:94.466667pt;}
.x9{left:96.933333pt;}
.xa{left:148.791467pt;}
.x3{left:183.954133pt;}
.x2{left:197.357733pt;}
.x5{left:321.266667pt;}
.xd{left:340.200000pt;}
.x7{left:342.600000pt;}
.x6{left:347.666667pt;}
.xc{left:359.066667pt;}
}




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