
    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_17ab58e3d06eb2c7f5ac6659.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_d0e2e551f90e7f1e23cb3565.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fb1b5dec3a101db337c7e0e8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193848;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_81d2827a7fe8603e4c383958.woff')format("woff");}.ff4{font-family:ff4;line-height:1.193848;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_d532d2a81d1edc447a2774f9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_a56b54908940ebed914f563a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c7cf697986000b0015c93d01.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.994400px;}
.ls6{letter-spacing:-1.728000px;}
.ls7{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls4{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.740000px;}
.lsa{letter-spacing:2.400000px;}
.lsf{letter-spacing:4.950000px;}
.ls1{letter-spacing:6.000000px;}
.lsc{letter-spacing:6.300000px;}
.lse{letter-spacing:6.525000px;}
.ls8{letter-spacing:7.314000px;}
.lsb{letter-spacing:8.100000px;}
.ls3{letter-spacing:8.400000px;}
.ls10{letter-spacing:8.820000px;}
.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;}
}
.ws9{word-spacing:-29.175000px;}
.ws2{word-spacing:-28.620000px;}
.wsd{word-spacing:-27.600000px;}
.ws10{word-spacing:-26.523000px;}
.wsf{word-spacing:-26.025000px;}
.ws0{word-spacing:-18.600000px;}
.ws1{word-spacing:-18.120000px;}
.wsa{word-spacing:-18.102000px;}
.ws12{word-spacing:-17.703000px;}
.wse{word-spacing:-17.043000px;}
.ws11{word-spacing:-15.561000px;}
.ws13{word-spacing:-14.820000px;}
.ws3{word-spacing:-11.303787px;}
.ws6{word-spacing:-8.400000px;}
.ws14{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.wsb{word-spacing:-2.400000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.480000px;}
.ws7{word-spacing:0.840000px;}
.ws8{word-spacing:2.376000px;}
._1c{margin-left:-19.389000px;}
._18{margin-left:-7.001100px;}
._13{margin-left:-5.814000px;}
._a{margin-left:-3.994200px;}
._6{margin-left:-2.683800px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._4{width:2.949300px;}
._b{width:4.023900px;}
._8{width:5.136000px;}
._5{width:6.312000px;}
._7{width:7.644000px;}
._9{width:9.180000px;}
._f{width:10.588914px;}
._10{width:11.820600px;}
._12{width:13.308000px;}
._c{width:14.795700px;}
._d{width:15.814800px;}
._17{width:17.307900px;}
._20{width:19.057500px;}
._19{width:20.675100px;}
._1f{width:21.903600px;}
._1e{width:23.643900px;}
._14{width:25.658400px;}
._15{width:26.998200px;}
._e{width:43.445160px;}
._11{width:447.060000px;}
._1a{width:449.548200px;}
._1d{width:452.438700px;}
._0{width:578.400000px;}
._16{width:940.057200px;}
._3{width:947.227200px;}
._1b{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:40.227000px;}
.fsa{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yd5{bottom:100.892250px;}
.y92{bottom:106.165350px;}
.y1e{bottom:106.293450px;}
.y46{bottom:109.294950px;}
.yd4{bottom:121.142250px;}
.y1d{bottom:123.546450px;}
.y91{bottom:126.589350px;}
.y45{bottom:127.786500px;}
.y6b{bottom:130.797000px;}
.yd3{bottom:141.392250px;}
.y1c{bottom:143.794950px;}
.y44{bottom:145.039500px;}
.y90{bottom:147.013350px;}
.yb7{bottom:153.382350px;}
.yd2{bottom:161.642250px;}
.y43{bottom:162.292500px;}
.y8f{bottom:167.437350px;}
.yb6{bottom:173.633850px;}
.y6a{bottom:174.693750px;}
.y42{bottom:179.545500px;}
.y1b{bottom:187.806750px;}
.y8e{bottom:187.861350px;}
.yb5{bottom:193.885350px;}
.yd1{bottom:194.642250px;}
.y69{bottom:195.497250px;}
.y41{bottom:196.798500px;}
.y1a{bottom:208.161750px;}
.y8d{bottom:208.285350px;}
.yb4{bottom:214.136850px;}
.yd0{bottom:214.892250px;}
.y68{bottom:216.300750px;}
.y40{bottom:217.047000px;}
.y19{bottom:228.516750px;}
.y8c{bottom:228.709350px;}
.yb3{bottom:234.388350px;}
.ycf{bottom:235.142250px;}
.y3f{bottom:235.547700px;}
.y67{bottom:237.104250px;}
.y18{bottom:248.867400px;}
.y8b{bottom:249.133350px;}
.y3e{bottom:252.800700px;}
.yb2{bottom:254.639850px;}
.yce{bottom:255.392250px;}
.y66{bottom:257.907750px;}
.y17{bottom:269.222400px;}
.y8a{bottom:269.557350px;}
.y3d{bottom:273.049200px;}
.yb1{bottom:274.891350px;}
.y65{bottom:278.711250px;}
.ycd{bottom:288.392250px;}
.y16{bottom:289.577400px;}
.y89{bottom:289.981350px;}
.yb0{bottom:295.142850px;}
.y64{bottom:299.514750px;}
.y88{bottom:310.405350px;}
.yaf{bottom:315.394350px;}
.y3c{bottom:317.101500px;}
.y63{bottom:320.318250px;}
.ycc{bottom:329.802600px;}
.y87{bottom:330.829350px;}
.yae{bottom:335.645850px;}
.y3b{bottom:338.008500px;}
.y15{bottom:339.689550px;}
.y62{bottom:341.121750px;}
.ycb{bottom:350.057100px;}
.y86{bottom:351.253350px;}
.yad{bottom:355.897350px;}
.y3a{bottom:358.915500px;}
.y14{bottom:360.794550px;}
.y61{bottom:361.925250px;}
.yca{bottom:370.311600px;}
.y85{bottom:371.677350px;}
.yac{bottom:376.148850px;}
.y39{bottom:379.822500px;}
.y13{bottom:381.899550px;}
.y60{bottom:382.728750px;}
.yc9{bottom:390.566100px;}
.y84{bottom:392.101350px;}
.yab{bottom:396.400350px;}
.y38{bottom:400.763400px;}
.y5f{bottom:403.532250px;}
.y83{bottom:412.525350px;}
.yaa{bottom:416.651850px;}
.yc8{bottom:419.325600px;}
.y37{bottom:421.670400px;}
.y5e{bottom:424.335750px;}
.y12{bottom:428.552700px;}
.y82{bottom:432.949350px;}
.ya9{bottom:436.903350px;}
.yc7{bottom:439.580100px;}
.y36{bottom:442.577400px;}
.y5d{bottom:445.139250px;}
.y81{bottom:453.373350px;}
.ya8{bottom:457.154850px;}
.y11{bottom:460.142700px;}
.y35{bottom:463.484400px;}
.y5c{bottom:465.942750px;}
.yc6{bottom:468.339600px;}
.y80{bottom:473.797350px;}
.ya7{bottom:477.406350px;}
.y34{bottom:484.399950px;}
.y5b{bottom:486.746250px;}
.yc5{bottom:488.594100px;}
.y10{bottom:491.732700px;}
.y7f{bottom:494.221350px;}
.ya6{bottom:497.657850px;}
.y33{bottom:505.468350px;}
.y5a{bottom:507.549750px;}
.y7e{bottom:514.645350px;}
.yc4{bottom:517.353600px;}
.ya5{bottom:517.909350px;}
.yf{bottom:523.322700px;}
.y32{bottom:526.375350px;}
.y59{bottom:528.353250px;}
.y7d{bottom:535.069350px;}
.yc3{bottom:537.608100px;}
.ya4{bottom:538.160850px;}
.y31{bottom:547.282350px;}
.y58{bottom:549.122850px;}
.ye{bottom:554.925600px;}
.y7c{bottom:555.493350px;}
.ya3{bottom:558.412350px;}
.yc2{bottom:566.367600px;}
.y30{bottom:568.189350px;}
.y57{bottom:569.926350px;}
.y7b{bottom:575.917350px;}
.ya2{bottom:578.663850px;}
.yc1{bottom:586.622100px;}
.y2f{bottom:589.096350px;}
.y56{bottom:590.729850px;}
.y7a{bottom:596.341350px;}
.ya1{bottom:598.915350px;}
.y2e{bottom:610.003350px;}
.y55{bottom:611.533350px;}
.yc0{bottom:615.381600px;}
.yd{bottom:616.281300px;}
.y79{bottom:616.765350px;}
.ya0{bottom:619.166850px;}
.y2d{bottom:630.910350px;}
.y54{bottom:632.336850px;}
.ybf{bottom:635.636100px;}
.y78{bottom:637.189350px;}
.y9f{bottom:639.418350px;}
.yc{bottom:645.891300px;}
.y2c{bottom:651.817350px;}
.y53{bottom:653.059350px;}
.y77{bottom:657.613350px;}
.y9e{bottom:659.669850px;}
.ybe{bottom:664.395600px;}
.yb{bottom:666.996300px;}
.y2b{bottom:672.724350px;}
.y52{bottom:673.862850px;}
.y76{bottom:678.037350px;}
.y9d{bottom:679.921350px;}
.ybd{bottom:684.650100px;}
.y2a{bottom:693.631350px;}
.y51{bottom:694.666350px;}
.ya{bottom:696.606300px;}
.y75{bottom:698.461350px;}
.y9c{bottom:700.172850px;}
.ybc{bottom:713.409600px;}
.y29{bottom:714.538350px;}
.y50{bottom:715.469850px;}
.y9{bottom:717.711300px;}
.y74{bottom:718.885350px;}
.y9b{bottom:720.424350px;}
.ybb{bottom:733.664100px;}
.y28{bottom:735.445350px;}
.y4f{bottom:736.273350px;}
.y8{bottom:738.814200px;}
.y73{bottom:739.309350px;}
.y9a{bottom:740.675850px;}
.y27{bottom:756.352350px;}
.y4e{bottom:757.076850px;}
.y72{bottom:759.733350px;}
.y99{bottom:760.927350px;}
.yba{bottom:762.423600px;}
.y26{bottom:777.259350px;}
.y4d{bottom:777.880350px;}
.y71{bottom:780.157350px;}
.y98{bottom:781.192350px;}
.yb9{bottom:782.678100px;}
.y7{bottom:789.671100px;}
.y25{bottom:798.166350px;}
.y4c{bottom:798.683850px;}
.y70{bottom:800.581350px;}
.y97{bottom:801.443850px;}
.y6{bottom:810.776100px;}
.yb8{bottom:811.437600px;}
.y24{bottom:819.073350px;}
.y4b{bottom:819.487350px;}
.y6f{bottom:821.005350px;}
.y96{bottom:821.695350px;}
.y5{bottom:831.881100px;}
.y23{bottom:839.980350px;}
.y4a{bottom:840.290850px;}
.y6e{bottom:841.429350px;}
.y95{bottom:841.946850px;}
.y22{bottom:860.887350px;}
.y49{bottom:861.094350px;}
.y4{bottom:861.491100px;}
.y6d{bottom:861.853350px;}
.y94{bottom:862.198350px;}
.y21{bottom:881.794350px;}
.y48{bottom:881.897850px;}
.y6c{bottom:882.277350px;}
.y93{bottom:882.449850px;}
.y3{bottom:882.596100px;}
.y20{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:948.189000px;}
.y47{bottom:966.189000px;}
.h9{height:35.347102px;}
.hc{height:42.070312px;}
.hb{height:47.329102px;}
.ha{height:50.572266px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.hf{height:56.191406px;}
.h12{height:59.000977px;}
.h7{height:60.476074px;}
.h8{height:60.493474px;}
.h11{height:60.611674px;}
.h10{height:60.800074px;}
.hd{height:63.974517px;}
.he{height:64.620117px;}
.h2{height:65.734863px;}
.h5{height:73.623047px;}
.h6{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:82.766700px;}
.x5{left:83.779350px;}
.x1{left:85.039350px;}
.x7{left:102.205500px;}
.x6{left:104.250750px;}
.x4{left:105.779550px;}
.x3{left:232.076250px;}
.x2{left:233.813700px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.106133pt;}
.ls6{letter-spacing:-1.536000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls4{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.546667pt;}
.lsa{letter-spacing:2.133333pt;}
.lsf{letter-spacing:4.400000pt;}
.ls1{letter-spacing:5.333333pt;}
.lsc{letter-spacing:5.600000pt;}
.lse{letter-spacing:5.800000pt;}
.ls8{letter-spacing:6.501333pt;}
.lsb{letter-spacing:7.200000pt;}
.ls3{letter-spacing:7.466667pt;}
.ls10{letter-spacing:7.840000pt;}
.ws9{word-spacing:-25.933333pt;}
.ws2{word-spacing:-25.440000pt;}
.wsd{word-spacing:-24.533333pt;}
.ws10{word-spacing:-23.576000pt;}
.wsf{word-spacing:-23.133333pt;}
.ws0{word-spacing:-16.533333pt;}
.ws1{word-spacing:-16.106667pt;}
.wsa{word-spacing:-16.090667pt;}
.ws12{word-spacing:-15.736000pt;}
.wse{word-spacing:-15.149333pt;}
.ws11{word-spacing:-13.832000pt;}
.ws13{word-spacing:-13.173333pt;}
.ws3{word-spacing:-10.047811pt;}
.ws6{word-spacing:-7.466667pt;}
.ws14{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.wsb{word-spacing:-2.133333pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.426667pt;}
.ws7{word-spacing:0.746667pt;}
.ws8{word-spacing:2.112000pt;}
._1c{margin-left:-17.234667pt;}
._18{margin-left:-6.223200pt;}
._13{margin-left:-5.168000pt;}
._a{margin-left:-3.550400pt;}
._6{margin-left:-2.385600pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._4{width:2.621600pt;}
._b{width:3.576800pt;}
._8{width:4.565333pt;}
._5{width:5.610667pt;}
._7{width:6.794667pt;}
._9{width:8.160000pt;}
._f{width:9.412368pt;}
._10{width:10.507200pt;}
._12{width:11.829333pt;}
._c{width:13.151733pt;}
._d{width:14.057600pt;}
._17{width:15.384800pt;}
._20{width:16.940000pt;}
._19{width:18.377867pt;}
._1f{width:19.469867pt;}
._1e{width:21.016800pt;}
._14{width:22.807467pt;}
._15{width:23.998400pt;}
._e{width:38.617920pt;}
._11{width:397.386667pt;}
._1a{width:399.598400pt;}
._1d{width:402.167733pt;}
._0{width:514.133333pt;}
._16{width:835.606400pt;}
._3{width:841.979733pt;}
._1b{width:843.739733pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:35.757333pt;}
.fsa{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yd5{bottom:89.682000pt;}
.y92{bottom:94.369200pt;}
.y1e{bottom:94.483067pt;}
.y46{bottom:97.151067pt;}
.yd4{bottom:107.682000pt;}
.y1d{bottom:109.819067pt;}
.y91{bottom:112.523867pt;}
.y45{bottom:113.588000pt;}
.y6b{bottom:116.264000pt;}
.yd3{bottom:125.682000pt;}
.y1c{bottom:127.817733pt;}
.y44{bottom:128.924000pt;}
.y90{bottom:130.678533pt;}
.yb7{bottom:136.339867pt;}
.yd2{bottom:143.682000pt;}
.y43{bottom:144.260000pt;}
.y8f{bottom:148.833200pt;}
.yb6{bottom:154.341200pt;}
.y6a{bottom:155.283333pt;}
.y42{bottom:159.596000pt;}
.y1b{bottom:166.939333pt;}
.y8e{bottom:166.987867pt;}
.yb5{bottom:172.342533pt;}
.yd1{bottom:173.015333pt;}
.y69{bottom:173.775333pt;}
.y41{bottom:174.932000pt;}
.y1a{bottom:185.032667pt;}
.y8d{bottom:185.142533pt;}
.yb4{bottom:190.343867pt;}
.yd0{bottom:191.015333pt;}
.y68{bottom:192.267333pt;}
.y40{bottom:192.930667pt;}
.y19{bottom:203.126000pt;}
.y8c{bottom:203.297200pt;}
.yb3{bottom:208.345200pt;}
.ycf{bottom:209.015333pt;}
.y3f{bottom:209.375733pt;}
.y67{bottom:210.759333pt;}
.y18{bottom:221.215467pt;}
.y8b{bottom:221.451867pt;}
.y3e{bottom:224.711733pt;}
.yb2{bottom:226.346533pt;}
.yce{bottom:227.015333pt;}
.y66{bottom:229.251333pt;}
.y17{bottom:239.308800pt;}
.y8a{bottom:239.606533pt;}
.y3d{bottom:242.710400pt;}
.yb1{bottom:244.347867pt;}
.y65{bottom:247.743333pt;}
.ycd{bottom:256.348667pt;}
.y16{bottom:257.402133pt;}
.y89{bottom:257.761200pt;}
.yb0{bottom:262.349200pt;}
.y64{bottom:266.235333pt;}
.y88{bottom:275.915867pt;}
.yaf{bottom:280.350533pt;}
.y3c{bottom:281.868000pt;}
.y63{bottom:284.727333pt;}
.ycc{bottom:293.157867pt;}
.y87{bottom:294.070533pt;}
.yae{bottom:298.351867pt;}
.y3b{bottom:300.452000pt;}
.y15{bottom:301.946267pt;}
.y62{bottom:303.219333pt;}
.ycb{bottom:311.161867pt;}
.y86{bottom:312.225200pt;}
.yad{bottom:316.353200pt;}
.y3a{bottom:319.036000pt;}
.y14{bottom:320.706267pt;}
.y61{bottom:321.711333pt;}
.yca{bottom:329.165867pt;}
.y85{bottom:330.379867pt;}
.yac{bottom:334.354533pt;}
.y39{bottom:337.620000pt;}
.y13{bottom:339.466267pt;}
.y60{bottom:340.203333pt;}
.yc9{bottom:347.169867pt;}
.y84{bottom:348.534533pt;}
.yab{bottom:352.355867pt;}
.y38{bottom:356.234133pt;}
.y5f{bottom:358.695333pt;}
.y83{bottom:366.689200pt;}
.yaa{bottom:370.357200pt;}
.yc8{bottom:372.733867pt;}
.y37{bottom:374.818133pt;}
.y5e{bottom:377.187333pt;}
.y12{bottom:380.935733pt;}
.y82{bottom:384.843867pt;}
.ya9{bottom:388.358533pt;}
.yc7{bottom:390.737867pt;}
.y36{bottom:393.402133pt;}
.y5d{bottom:395.679333pt;}
.y81{bottom:402.998533pt;}
.ya8{bottom:406.359867pt;}
.y11{bottom:409.015733pt;}
.y35{bottom:411.986133pt;}
.y5c{bottom:414.171333pt;}
.yc6{bottom:416.301867pt;}
.y80{bottom:421.153200pt;}
.ya7{bottom:424.361200pt;}
.y34{bottom:430.577733pt;}
.y5b{bottom:432.663333pt;}
.yc5{bottom:434.305867pt;}
.y10{bottom:437.095733pt;}
.y7f{bottom:439.307867pt;}
.ya6{bottom:442.362533pt;}
.y33{bottom:449.305200pt;}
.y5a{bottom:451.155333pt;}
.y7e{bottom:457.462533pt;}
.yc4{bottom:459.869867pt;}
.ya5{bottom:460.363867pt;}
.yf{bottom:465.175733pt;}
.y32{bottom:467.889200pt;}
.y59{bottom:469.647333pt;}
.y7d{bottom:475.617200pt;}
.yc3{bottom:477.873867pt;}
.ya4{bottom:478.365200pt;}
.y31{bottom:486.473200pt;}
.y58{bottom:488.109200pt;}
.ye{bottom:493.267200pt;}
.y7c{bottom:493.771867pt;}
.ya3{bottom:496.366533pt;}
.yc2{bottom:503.437867pt;}
.y30{bottom:505.057200pt;}
.y57{bottom:506.601200pt;}
.y7b{bottom:511.926533pt;}
.ya2{bottom:514.367867pt;}
.yc1{bottom:521.441867pt;}
.y2f{bottom:523.641200pt;}
.y56{bottom:525.093200pt;}
.y7a{bottom:530.081200pt;}
.ya1{bottom:532.369200pt;}
.y2e{bottom:542.225200pt;}
.y55{bottom:543.585200pt;}
.yc0{bottom:547.005867pt;}
.yd{bottom:547.805600pt;}
.y79{bottom:548.235867pt;}
.ya0{bottom:550.370533pt;}
.y2d{bottom:560.809200pt;}
.y54{bottom:562.077200pt;}
.ybf{bottom:565.009867pt;}
.y78{bottom:566.390533pt;}
.y9f{bottom:568.371867pt;}
.yc{bottom:574.125600pt;}
.y2c{bottom:579.393200pt;}
.y53{bottom:580.497200pt;}
.y77{bottom:584.545200pt;}
.y9e{bottom:586.373200pt;}
.ybe{bottom:590.573867pt;}
.yb{bottom:592.885600pt;}
.y2b{bottom:597.977200pt;}
.y52{bottom:598.989200pt;}
.y76{bottom:602.699867pt;}
.y9d{bottom:604.374533pt;}
.ybd{bottom:608.577867pt;}
.y2a{bottom:616.561200pt;}
.y51{bottom:617.481200pt;}
.ya{bottom:619.205600pt;}
.y75{bottom:620.854533pt;}
.y9c{bottom:622.375867pt;}
.ybc{bottom:634.141867pt;}
.y29{bottom:635.145200pt;}
.y50{bottom:635.973200pt;}
.y9{bottom:637.965600pt;}
.y74{bottom:639.009200pt;}
.y9b{bottom:640.377200pt;}
.ybb{bottom:652.145867pt;}
.y28{bottom:653.729200pt;}
.y4f{bottom:654.465200pt;}
.y8{bottom:656.723733pt;}
.y73{bottom:657.163867pt;}
.y9a{bottom:658.378533pt;}
.y27{bottom:672.313200pt;}
.y4e{bottom:672.957200pt;}
.y72{bottom:675.318533pt;}
.y99{bottom:676.379867pt;}
.yba{bottom:677.709867pt;}
.y26{bottom:690.897200pt;}
.y4d{bottom:691.449200pt;}
.y71{bottom:693.473200pt;}
.y98{bottom:694.393200pt;}
.yb9{bottom:695.713867pt;}
.y7{bottom:701.929867pt;}
.y25{bottom:709.481200pt;}
.y4c{bottom:709.941200pt;}
.y70{bottom:711.627867pt;}
.y97{bottom:712.394533pt;}
.y6{bottom:720.689867pt;}
.yb8{bottom:721.277867pt;}
.y24{bottom:728.065200pt;}
.y4b{bottom:728.433200pt;}
.y6f{bottom:729.782533pt;}
.y96{bottom:730.395867pt;}
.y5{bottom:739.449867pt;}
.y23{bottom:746.649200pt;}
.y4a{bottom:746.925200pt;}
.y6e{bottom:747.937200pt;}
.y95{bottom:748.397200pt;}
.y22{bottom:765.233200pt;}
.y49{bottom:765.417200pt;}
.y4{bottom:765.769867pt;}
.y6d{bottom:766.091867pt;}
.y94{bottom:766.398533pt;}
.y21{bottom:783.817200pt;}
.y48{bottom:783.909200pt;}
.y6c{bottom:784.246533pt;}
.y93{bottom:784.399867pt;}
.y3{bottom:784.529867pt;}
.y20{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:842.834667pt;}
.y47{bottom:858.834667pt;}
.h9{height:31.419646pt;}
.hc{height:37.395833pt;}
.hb{height:42.070312pt;}
.ha{height:44.953125pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.hf{height:49.947917pt;}
.h12{height:52.445312pt;}
.h7{height:53.756510pt;}
.h8{height:53.771977pt;}
.h11{height:53.877044pt;}
.h10{height:54.044510pt;}
.hd{height:56.866238pt;}
.he{height:57.440104pt;}
.h2{height:58.430990pt;}
.h5{height:65.442708pt;}
.h6{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:73.570400pt;}
.x5{left:74.470533pt;}
.x1{left:75.590533pt;}
.x7{left:90.849333pt;}
.x6{left:92.667333pt;}
.x4{left:94.026267pt;}
.x3{left:206.290000pt;}
.x2{left:207.834400pt;}
}




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