
    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_c47266cf2549127bde2773dc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_023387231e7e7ed0ed9ffa3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d5f631a9d4eb74eeb7464915.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_19580b473ed0f0c38433c84b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8661dd149978d48ffc908983.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_5e76ffb6e5541ea453bea4cb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_db7e91b78e23eabccefa3b9a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.969238;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_780e55d934beea2c26267bb6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.666000px;}
.lsc{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.134720px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls3{letter-spacing:2.050560px;}
.ls9{letter-spacing:16.560000px;}
.ls11{letter-spacing:41.706720px;}
.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:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-2598.738000px;}
._5{margin-left:-1366.159680px;}
._b{margin-left:-1007.870400px;}
._7{margin-left:-931.253760px;}
._a{margin-left:-872.076000px;}
._d{margin-left:-575.213760px;}
._8{margin-left:-535.046400px;}
._c{margin-left:-182.779200px;}
._9{margin-left:-33.120000px;}
._6{margin-left:-8.213760px;}
._11{margin-left:-6.990480px;}
._f{margin-left:-4.722720px;}
._14{margin-left:-3.645360px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._16{width:3.760800px;}
._19{width:4.800960px;}
._13{width:6.007680px;}
._17{width:7.339680px;}
._1a{width:8.717280px;}
._15{width:9.740880px;}
._10{width:11.100000px;}
._1b{width:12.107280px;}
._12{width:13.121280px;}
._e{width:15.482880px;}
._18{width:17.340960px;}
._1c{width:18.764640px;}
._20{width:19.787040px;}
._1f{width:20.877120px;}
._1d{width:22.057920px;}
._1e{width:23.060880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.336000px;}
.y2c{bottom:87.336000px;}
.y93{bottom:89.136000px;}
.y5f{bottom:91.656000px;}
.y7e{bottom:105.336000px;}
.y2b{bottom:107.136000px;}
.y92{bottom:109.116000px;}
.yb8{bottom:112.536000px;}
.y5e{bottom:120.456000px;}
.y7d{bottom:125.136000px;}
.y2a{bottom:127.116000px;}
.y91{bottom:128.916000px;}
.yb7{bottom:139.536000px;}
.y7c{bottom:144.936000px;}
.y29{bottom:146.916000px;}
.ye8{bottom:148.716000px;}
.y5d{bottom:149.256000px;}
.y90{bottom:157.710000px;}
.y7b{bottom:164.730000px;}
.yb6{bottom:166.350000px;}
.ye7{bottom:168.510000px;}
.y5c{bottom:169.230000px;}
.y28{bottom:175.710000px;}
.y8f{bottom:177.510000px;}
.y7a{bottom:184.530000px;}
.ye6{bottom:188.310000px;}
.y5b{bottom:189.030000px;}
.yb5{bottom:193.350000px;}
.y27{bottom:195.510000px;}
.y8e{bottom:197.310000px;}
.y79{bottom:204.510000px;}
.ye5{bottom:208.290000px;}
.y5a{bottom:208.830000px;}
.y26{bottom:215.310000px;}
.y8d{bottom:217.290000px;}
.yb4{bottom:220.170000px;}
.y78{bottom:224.310000px;}
.ye4{bottom:228.090000px;}
.y59{bottom:228.630000px;}
.y25{bottom:235.290000px;}
.y8c{bottom:237.090000px;}
.yb3{bottom:247.170000px;}
.ye3{bottom:247.890000px;}
.y58{bottom:248.430000px;}
.y77{bottom:253.110000px;}
.y24{bottom:255.090000px;}
.y8b{bottom:256.890000px;}
.ye2{bottom:267.690000px;}
.y57{bottom:268.410000px;}
.y76{bottom:272.910000px;}
.yb2{bottom:273.990000px;}
.y23{bottom:274.890000px;}
.y8a{bottom:276.690000px;}
.ye1{bottom:287.535000px;}
.y56{bottom:288.255000px;}
.y75{bottom:292.755000px;}
.y22{bottom:294.735000px;}
.y89{bottom:298.875000px;}
.yb1{bottom:301.035000px;}
.ye0{bottom:307.515000px;}
.y55{bottom:308.055000px;}
.y74{bottom:312.735000px;}
.y21{bottom:314.535000px;}
.ydf{bottom:327.315000px;}
.y54{bottom:327.855000px;}
.yb0{bottom:330.555000px;}
.y73{bottom:332.535000px;}
.y20{bottom:334.515000px;}
.yde{bottom:347.115000px;}
.y53{bottom:347.655000px;}
.y72{bottom:352.335000px;}
.y1f{bottom:363.315000px;}
.yaf{bottom:364.215000px;}
.ydd{bottom:366.915000px;}
.y52{bottom:367.635000px;}
.y71{bottom:372.135000px;}
.y1e{bottom:383.115000px;}
.yae{bottom:384.015000px;}
.y51{bottom:389.595000px;}
.y70{bottom:391.935000px;}
.ydc{bottom:395.715000px;}
.y1d{bottom:402.915000px;}
.yad{bottom:403.995000px;}
.y88{bottom:411.915000px;}
.ydb{bottom:415.515000px;}
.y50{bottom:416.595000px;}
.y6f{bottom:420.915000px;}
.y1c{bottom:422.715000px;}
.yac{bottom:428.655000px;}
.y87{bottom:431.715000px;}
.yda{bottom:435.495000px;}
.y6e{bottom:440.715000px;}
.y1b{bottom:442.695000px;}
.y4f{bottom:443.415000px;}
.y86{bottom:451.515000px;}
.yab{bottom:453.315000px;}
.yd9{bottom:455.295000px;}
.y6d{bottom:460.515000px;}
.y1a{bottom:462.495000px;}
.y4e{bottom:470.415000px;}
.y85{bottom:471.315000px;}
.yd8{bottom:475.095000px;}
.y6c{bottom:480.315000px;}
.yaa{bottom:482.115000px;}
.y19{bottom:482.295000px;}
.y4d{bottom:497.235000px;}
.y6b{bottom:500.115000px;}
.y18{bottom:502.095000px;}
.yd7{bottom:503.895000px;}
.y6a{bottom:520.095000px;}
.ya9{bottom:521.895000px;}
.yd6{bottom:523.695000px;}
.y17{bottom:524.235000px;}
.y69{bottom:539.895000px;}
.ya8{bottom:541.695000px;}
.yd5{bottom:543.675000px;}
.y4c{bottom:548.895000px;}
.y16{bottom:553.395000px;}
.y68{bottom:559.695000px;}
.ya7{bottom:561.495000px;}
.yd4{bottom:563.475000px;}
.y4b{bottom:568.725000px;}
.y67{bottom:579.525000px;}
.yd3{bottom:583.305000px;}
.y4a{bottom:588.525000px;}
.y15{bottom:589.245000px;}
.ya6{bottom:590.325000px;}
.y66{bottom:599.325000px;}
.yd2{bottom:603.105000px;}
.y49{bottom:608.325000px;}
.ya5{bottom:610.305000px;}
.y14{bottom:616.245000px;}
.y84{bottom:619.305000px;}
.y48{bottom:628.305000px;}
.ya4{bottom:630.105000px;}
.yd1{bottom:631.905000px;}
.y83{bottom:639.105000px;}
.y13{bottom:643.065000px;}
.y47{bottom:648.105000px;}
.ya3{bottom:649.905000px;}
.yd0{bottom:651.885000px;}
.y82{bottom:658.905000px;}
.y46{bottom:667.905000px;}
.ya2{bottom:669.705000px;}
.y12{bottom:670.065000px;}
.ycf{bottom:671.685000px;}
.y45{bottom:687.705000px;}
.ya1{bottom:689.505000px;}
.yce{bottom:691.485000px;}
.y11{bottom:696.885000px;}
.y44{bottom:707.505000px;}
.ycd{bottom:711.285000px;}
.ya0{bottom:718.485000px;}
.y10{bottom:723.885000px;}
.y43{bottom:727.485000px;}
.y9f{bottom:738.285000px;}
.ycc{bottom:740.085000px;}
.y65{bottom:747.285000px;}
.yf{bottom:750.705000px;}
.y42{bottom:756.285000px;}
.y9e{bottom:758.085000px;}
.ycb{bottom:760.065000px;}
.y81{bottom:767.085000px;}
.y41{bottom:776.085000px;}
.ye{bottom:777.705000px;}
.y9d{bottom:777.885000px;}
.yca{bottom:779.865000px;}
.y80{bottom:786.885000px;}
.y40{bottom:795.885000px;}
.y9c{bottom:797.685000px;}
.yc9{bottom:799.665000px;}
.yd{bottom:804.525000px;}
.y7f{bottom:806.685000px;}
.y3f{bottom:815.685000px;}
.y9b{bottom:817.665000px;}
.yc8{bottom:819.465000px;}
.yc{bottom:831.525000px;}
.y3e{bottom:835.665000px;}
.yc7{bottom:839.265000px;}
.y9a{bottom:846.465000px;}
.y3d{bottom:855.510000px;}
.yb{bottom:860.730000px;}
.y99{bottom:866.310000px;}
.yc6{bottom:868.290000px;}
.y3c{bottom:875.310000px;}
.y98{bottom:886.110000px;}
.ya{bottom:887.550000px;}
.yc5{bottom:888.090000px;}
.y3b{bottom:895.110000px;}
.y97{bottom:905.910000px;}
.yc4{bottom:907.890000px;}
.y9{bottom:914.010000px;}
.y3a{bottom:914.910000px;}
.y96{bottom:925.890000px;}
.yc3{bottom:927.690000px;}
.y39{bottom:934.890000px;}
.y95{bottom:945.690000px;}
.yc2{bottom:947.490000px;}
.y38{bottom:954.690000px;}
.y8{bottom:966.210000px;}
.yc1{bottom:967.470000px;}
.y37{bottom:974.490000px;}
.y64{bottom:983.490000px;}
.yea{bottom:991.410000px;}
.y36{bottom:994.290000px;}
.yc0{bottom:996.270000px;}
.y63{bottom:1003.290000px;}
.y7{bottom:1013.010000px;}
.y35{bottom:1014.090000px;}
.ybf{bottom:1016.070000px;}
.ye9{bottom:1018.230000px;}
.y62{bottom:1023.090000px;}
.y34{bottom:1034.070000px;}
.ybe{bottom:1035.870000px;}
.y61{bottom:1043.070000px;}
.y33{bottom:1053.870000px;}
.ybd{bottom:1055.670000px;}
.y5{bottom:1061.070000px;}
.y60{bottom:1062.870000px;}
.y94{bottom:1073.670000px;}
.ybc{bottom:1075.650000px;}
.y32{bottom:1082.670000px;}
.y4{bottom:1091.850000px;}
.ybb{bottom:1095.450000px;}
.y31{bottom:1102.470000px;}
.yba{bottom:1115.250000px;}
.y30{bottom:1122.270000px;}
.y3{bottom:1122.810000px;}
.yb9{bottom:1137.420000px;}
.y2f{bottom:1142.280000px;}
.y2{bottom:1153.620000px;}
.y2e{bottom:1171.620000px;}
.y1{bottom:1184.400000px;}
.y2d{bottom:1193.400000px;}
.h8{height:41.726953px;}
.h7{height:42.164648px;}
.hb{height:46.736719px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.hc{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.010937px;}
.h2{height:66.757500px;}
.h4{height:67.565039px;}
.h5{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x4{left:80.999987px;}
.x3{left:84.239987px;}
.x5{left:108.035987px;}
.x2{left:314.354987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls3{letter-spacing:1.822720pt;}
.ls9{letter-spacing:14.720000pt;}
.ls11{letter-spacing:37.072640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-2309.989333pt;}
._5{margin-left:-1214.364160pt;}
._b{margin-left:-895.884800pt;}
._7{margin-left:-827.781120pt;}
._a{margin-left:-775.178667pt;}
._d{margin-left:-511.301120pt;}
._8{margin-left:-475.596800pt;}
._c{margin-left:-162.470400pt;}
._9{margin-left:-29.440000pt;}
._6{margin-left:-7.301120pt;}
._11{margin-left:-6.213760pt;}
._f{margin-left:-4.197973pt;}
._14{margin-left:-3.240320pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._16{width:3.342933pt;}
._19{width:4.267520pt;}
._13{width:5.340160pt;}
._17{width:6.524160pt;}
._1a{width:7.748693pt;}
._15{width:8.658560pt;}
._10{width:9.866667pt;}
._1b{width:10.762027pt;}
._12{width:11.663360pt;}
._e{width:13.762560pt;}
._18{width:15.414187pt;}
._1c{width:16.679680pt;}
._20{width:17.588480pt;}
._1f{width:18.557440pt;}
._1d{width:19.607040pt;}
._1e{width:20.498560pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.632000pt;}
.y2c{bottom:77.632000pt;}
.y93{bottom:79.232000pt;}
.y5f{bottom:81.472000pt;}
.y7e{bottom:93.632000pt;}
.y2b{bottom:95.232000pt;}
.y92{bottom:96.992000pt;}
.yb8{bottom:100.032000pt;}
.y5e{bottom:107.072000pt;}
.y7d{bottom:111.232000pt;}
.y2a{bottom:112.992000pt;}
.y91{bottom:114.592000pt;}
.yb7{bottom:124.032000pt;}
.y7c{bottom:128.832000pt;}
.y29{bottom:130.592000pt;}
.ye8{bottom:132.192000pt;}
.y5d{bottom:132.672000pt;}
.y90{bottom:140.186667pt;}
.y7b{bottom:146.426667pt;}
.yb6{bottom:147.866667pt;}
.ye7{bottom:149.786667pt;}
.y5c{bottom:150.426667pt;}
.y28{bottom:156.186667pt;}
.y8f{bottom:157.786667pt;}
.y7a{bottom:164.026667pt;}
.ye6{bottom:167.386667pt;}
.y5b{bottom:168.026667pt;}
.yb5{bottom:171.866667pt;}
.y27{bottom:173.786667pt;}
.y8e{bottom:175.386667pt;}
.y79{bottom:181.786667pt;}
.ye5{bottom:185.146667pt;}
.y5a{bottom:185.626667pt;}
.y26{bottom:191.386667pt;}
.y8d{bottom:193.146667pt;}
.yb4{bottom:195.706667pt;}
.y78{bottom:199.386667pt;}
.ye4{bottom:202.746667pt;}
.y59{bottom:203.226667pt;}
.y25{bottom:209.146667pt;}
.y8c{bottom:210.746667pt;}
.yb3{bottom:219.706667pt;}
.ye3{bottom:220.346667pt;}
.y58{bottom:220.826667pt;}
.y77{bottom:224.986667pt;}
.y24{bottom:226.746667pt;}
.y8b{bottom:228.346667pt;}
.ye2{bottom:237.946667pt;}
.y57{bottom:238.586667pt;}
.y76{bottom:242.586667pt;}
.yb2{bottom:243.546667pt;}
.y23{bottom:244.346667pt;}
.y8a{bottom:245.946667pt;}
.ye1{bottom:255.586667pt;}
.y56{bottom:256.226667pt;}
.y75{bottom:260.226667pt;}
.y22{bottom:261.986667pt;}
.y89{bottom:265.666667pt;}
.yb1{bottom:267.586667pt;}
.ye0{bottom:273.346667pt;}
.y55{bottom:273.826667pt;}
.y74{bottom:277.986667pt;}
.y21{bottom:279.586667pt;}
.ydf{bottom:290.946667pt;}
.y54{bottom:291.426667pt;}
.yb0{bottom:293.826667pt;}
.y73{bottom:295.586667pt;}
.y20{bottom:297.346667pt;}
.yde{bottom:308.546667pt;}
.y53{bottom:309.026667pt;}
.y72{bottom:313.186667pt;}
.y1f{bottom:322.946667pt;}
.yaf{bottom:323.746667pt;}
.ydd{bottom:326.146667pt;}
.y52{bottom:326.786667pt;}
.y71{bottom:330.786667pt;}
.y1e{bottom:340.546667pt;}
.yae{bottom:341.346667pt;}
.y51{bottom:346.306667pt;}
.y70{bottom:348.386667pt;}
.ydc{bottom:351.746667pt;}
.y1d{bottom:358.146667pt;}
.yad{bottom:359.106667pt;}
.y88{bottom:366.146667pt;}
.ydb{bottom:369.346667pt;}
.y50{bottom:370.306667pt;}
.y6f{bottom:374.146667pt;}
.y1c{bottom:375.746667pt;}
.yac{bottom:381.026667pt;}
.y87{bottom:383.746667pt;}
.yda{bottom:387.106667pt;}
.y6e{bottom:391.746667pt;}
.y1b{bottom:393.506667pt;}
.y4f{bottom:394.146667pt;}
.y86{bottom:401.346667pt;}
.yab{bottom:402.946667pt;}
.yd9{bottom:404.706667pt;}
.y6d{bottom:409.346667pt;}
.y1a{bottom:411.106667pt;}
.y4e{bottom:418.146667pt;}
.y85{bottom:418.946667pt;}
.yd8{bottom:422.306667pt;}
.y6c{bottom:426.946667pt;}
.yaa{bottom:428.546667pt;}
.y19{bottom:428.706667pt;}
.y4d{bottom:441.986667pt;}
.y6b{bottom:444.546667pt;}
.y18{bottom:446.306667pt;}
.yd7{bottom:447.906667pt;}
.y6a{bottom:462.306667pt;}
.ya9{bottom:463.906667pt;}
.yd6{bottom:465.506667pt;}
.y17{bottom:465.986667pt;}
.y69{bottom:479.906667pt;}
.ya8{bottom:481.506667pt;}
.yd5{bottom:483.266667pt;}
.y4c{bottom:487.906667pt;}
.y16{bottom:491.906667pt;}
.y68{bottom:497.506667pt;}
.ya7{bottom:499.106667pt;}
.yd4{bottom:500.866667pt;}
.y4b{bottom:505.533333pt;}
.y67{bottom:515.133333pt;}
.yd3{bottom:518.493333pt;}
.y4a{bottom:523.133333pt;}
.y15{bottom:523.773333pt;}
.ya6{bottom:524.733333pt;}
.y66{bottom:532.733333pt;}
.yd2{bottom:536.093333pt;}
.y49{bottom:540.733333pt;}
.ya5{bottom:542.493333pt;}
.y14{bottom:547.773333pt;}
.y84{bottom:550.493333pt;}
.y48{bottom:558.493333pt;}
.ya4{bottom:560.093333pt;}
.yd1{bottom:561.693333pt;}
.y83{bottom:568.093333pt;}
.y13{bottom:571.613333pt;}
.y47{bottom:576.093333pt;}
.ya3{bottom:577.693333pt;}
.yd0{bottom:579.453333pt;}
.y82{bottom:585.693333pt;}
.y46{bottom:593.693333pt;}
.ya2{bottom:595.293333pt;}
.y12{bottom:595.613333pt;}
.ycf{bottom:597.053333pt;}
.y45{bottom:611.293333pt;}
.ya1{bottom:612.893333pt;}
.yce{bottom:614.653333pt;}
.y11{bottom:619.453333pt;}
.y44{bottom:628.893333pt;}
.ycd{bottom:632.253333pt;}
.ya0{bottom:638.653333pt;}
.y10{bottom:643.453333pt;}
.y43{bottom:646.653333pt;}
.y9f{bottom:656.253333pt;}
.ycc{bottom:657.853333pt;}
.y65{bottom:664.253333pt;}
.yf{bottom:667.293333pt;}
.y42{bottom:672.253333pt;}
.y9e{bottom:673.853333pt;}
.ycb{bottom:675.613333pt;}
.y81{bottom:681.853333pt;}
.y41{bottom:689.853333pt;}
.ye{bottom:691.293333pt;}
.y9d{bottom:691.453333pt;}
.yca{bottom:693.213333pt;}
.y80{bottom:699.453333pt;}
.y40{bottom:707.453333pt;}
.y9c{bottom:709.053333pt;}
.yc9{bottom:710.813333pt;}
.yd{bottom:715.133333pt;}
.y7f{bottom:717.053333pt;}
.y3f{bottom:725.053333pt;}
.y9b{bottom:726.813333pt;}
.yc8{bottom:728.413333pt;}
.yc{bottom:739.133333pt;}
.y3e{bottom:742.813333pt;}
.yc7{bottom:746.013333pt;}
.y9a{bottom:752.413333pt;}
.y3d{bottom:760.453333pt;}
.yb{bottom:765.093333pt;}
.y99{bottom:770.053333pt;}
.yc6{bottom:771.813333pt;}
.y3c{bottom:778.053333pt;}
.y98{bottom:787.653333pt;}
.ya{bottom:788.933333pt;}
.yc5{bottom:789.413333pt;}
.y3b{bottom:795.653333pt;}
.y97{bottom:805.253333pt;}
.yc4{bottom:807.013333pt;}
.y9{bottom:812.453333pt;}
.y3a{bottom:813.253333pt;}
.y96{bottom:823.013333pt;}
.yc3{bottom:824.613333pt;}
.y39{bottom:831.013333pt;}
.y95{bottom:840.613333pt;}
.yc2{bottom:842.213333pt;}
.y38{bottom:848.613333pt;}
.y8{bottom:858.853333pt;}
.yc1{bottom:859.973333pt;}
.y37{bottom:866.213333pt;}
.y64{bottom:874.213333pt;}
.yea{bottom:881.253333pt;}
.y36{bottom:883.813333pt;}
.yc0{bottom:885.573333pt;}
.y63{bottom:891.813333pt;}
.y7{bottom:900.453333pt;}
.y35{bottom:901.413333pt;}
.ybf{bottom:903.173333pt;}
.ye9{bottom:905.093333pt;}
.y62{bottom:909.413333pt;}
.y34{bottom:919.173333pt;}
.ybe{bottom:920.773333pt;}
.y61{bottom:927.173333pt;}
.y33{bottom:936.773333pt;}
.ybd{bottom:938.373333pt;}
.y5{bottom:943.173333pt;}
.y60{bottom:944.773333pt;}
.y94{bottom:954.373333pt;}
.ybc{bottom:956.133333pt;}
.y32{bottom:962.373333pt;}
.y4{bottom:970.533333pt;}
.ybb{bottom:973.733333pt;}
.y31{bottom:979.973333pt;}
.yba{bottom:991.333333pt;}
.y30{bottom:997.573333pt;}
.y3{bottom:998.053333pt;}
.yb9{bottom:1011.040000pt;}
.y2f{bottom:1015.360000pt;}
.y2{bottom:1025.440000pt;}
.y2e{bottom:1041.440000pt;}
.y1{bottom:1052.800000pt;}
.y2d{bottom:1060.800000pt;}
.h8{height:37.090625pt;}
.h7{height:37.479688pt;}
.hb{height:41.543750pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.hc{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:57.787500pt;}
.h2{height:59.340000pt;}
.h4{height:60.057813pt;}
.h5{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x4{left:71.999988pt;}
.x3{left:74.879988pt;}
.x5{left:96.031988pt;}
.x2{left:279.426655pt;}
}




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