
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_83b5457c9e64cb38495df152.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e573b8ce1ea9418088704f41.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_f08daa9584db300353aa0daa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_a55283f78b8656dacb9eaa2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_5c4e6f89714f40e2f2064050.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_89413ab7e7a806f9e3d8d390.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.034000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c35f38af48148e563d2a392c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_771283e324a75b547a5528c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_9524e82575e01fcc1d504be0.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-9.107269px;}
.ls16{letter-spacing:-1.224000px;}
.lsf{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.524933px;}
.ls14{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.021250px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.466560px;}
.ls7{letter-spacing:0.466800px;}
.ls2{letter-spacing:0.491793px;}
.lsa{letter-spacing:0.492045px;}
.ls9{letter-spacing:0.607151px;}
.ls3{letter-spacing:0.618282px;}
.lsd{letter-spacing:0.628655px;}
.ls5{letter-spacing:0.661795px;}
.ls10{letter-spacing:0.664072px;}
.ls4{letter-spacing:0.681527px;}
.ls1{letter-spacing:0.720000px;}
.ls15{letter-spacing:46.546560px;}
.ls12{letter-spacing:110.952000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-29.370941px;}
.wsd{word-spacing:-27.576000px;}
.ws10{word-spacing:-27.504000px;}
.ws1{word-spacing:-27.288000px;}
.wse{word-spacing:-26.928000px;}
.wsa{word-spacing:-26.462687px;}
.wsf{word-spacing:-26.064000px;}
.wsb{word-spacing:-19.410625px;}
.ws7{word-spacing:-17.722745px;}
.ws2{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.120000px;}
.ws9{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws8{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._7{margin-left:-8.687520px;}
._12{margin-left:-7.244188px;}
._5{margin-left:-2.119680px;}
._6{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._f{width:5.084892px;}
._9{width:6.345230px;}
._11{width:7.511558px;}
._8{width:8.588160px;}
._b{width:10.073622px;}
._a{width:11.469570px;}
._e{width:12.972508px;}
._d{width:14.961798px;}
._c{width:16.008265px;}
._10{width:17.590099px;}
._3{width:118.920000px;}
._4{width:382.500000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsc{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fse{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs9{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:69.822393px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fsf{font-size:83.664000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.875500px;}
.y5{bottom:4.320000px;}
.y50{bottom:7.170000px;}
.y2{bottom:10.080000px;}
.y42{bottom:10.795500px;}
.y4{bottom:23.400000px;}
.y4d{bottom:24.115500px;}
.y41{bottom:40.354500px;}
.y39{bottom:42.120000px;}
.y4c{bottom:46.114500px;}
.y3{bottom:47.880000px;}
.y40{bottom:52.234500px;}
.y7{bottom:57.636000px;}
.y38{bottom:60.840000px;}
.y3f{bottom:65.194500px;}
.y4b{bottom:66.634500px;}
.y3e{bottom:78.154500px;}
.y37{bottom:79.920000px;}
.y4a{bottom:88.234500px;}
.y49{bottom:94.354500px;}
.y36{bottom:98.685000px;}
.y3d{bottom:99.754500px;}
.y4e{bottom:100.116000px;}
.y48{bottom:110.194500px;}
.y3a{bottom:115.240500px;}
.y35{bottom:117.765000px;}
.y47{bottom:125.674500px;}
.y84{bottom:125.676000px;}
.y34{bottom:136.485000px;}
.y46{bottom:141.154500px;}
.y83{bottom:144.792000px;}
.y33{bottom:155.565000px;}
.y45{bottom:156.634500px;}
.y3c{bottom:162.424500px;}
.y82{bottom:163.515000px;}
.y44{bottom:172.144500px;}
.y3b{bottom:173.224500px;}
.y32{bottom:174.285000px;}
.y81{bottom:182.595000px;}
.y31{bottom:193.365000px;}
.y80{bottom:201.315000px;}
.y30{bottom:214.605000px;}
.y7f{bottom:220.035000px;}
.y7e{bottom:239.115000px;}
.y2f{bottom:240.915000px;}
.y7d{bottom:257.835000px;}
.y2e{bottom:266.835000px;}
.y7c{bottom:276.945000px;}
.y2d{bottom:292.035000px;}
.y7b{bottom:295.665000px;}
.y2c{bottom:312.555000px;}
.y7a{bottom:314.745000px;}
.ye{bottom:317.985000px;}
.y1c{bottom:318.315000px;}
.y2b{bottom:332.715000px;}
.y79{bottom:333.465000px;}
.y1b{bottom:342.435000px;}
.y78{bottom:352.545000px;}
.y2a{bottom:353.265000px;}
.y1a{bottom:366.585000px;}
.y77{bottom:371.265000px;}
.y29{bottom:373.425000px;}
.y76{bottom:390.345000px;}
.y19{bottom:390.705000px;}
.y28{bottom:393.945000px;}
.y75{bottom:409.110000px;}
.y27{bottom:414.465000px;}
.y18{bottom:414.825000px;}
.y74{bottom:427.830000px;}
.y26{bottom:434.625000px;}
.y17{bottom:438.945000px;}
.y73{bottom:446.910000px;}
.y25{bottom:455.145000px;}
.y16{bottom:463.065000px;}
.y72{bottom:465.630000px;}
.y24{bottom:475.305000px;}
.y71{bottom:484.710000px;}
.y15{bottom:487.230000px;}
.y23{bottom:495.870000px;}
.y70{bottom:503.430000px;}
.y14{bottom:511.350000px;}
.y22{bottom:516.390000px;}
.y6f{bottom:522.510000px;}
.y13{bottom:535.470000px;}
.y21{bottom:536.550000px;}
.y6e{bottom:541.260000px;}
.y20{bottom:557.070000px;}
.y12{bottom:559.590000px;}
.y6d{bottom:560.340000px;}
.y8c{bottom:575.460000px;}
.y1f{bottom:577.230000px;}
.y6c{bottom:579.060000px;}
.y11{bottom:583.710000px;}
.y1e{bottom:597.750000px;}
.y6b{bottom:597.780000px;}
.y8b{bottom:600.660000px;}
.y10{bottom:608.190000px;}
.y6a{bottom:616.860000px;}
.y1d{bottom:618.300000px;}
.y8a{bottom:619.380000px;}
.yf{bottom:632.340000px;}
.y69{bottom:635.580000px;}
.y89{bottom:640.980000px;}
.y68{bottom:654.660000px;}
.y88{bottom:659.700000px;}
.y67{bottom:673.410000px;}
.y87{bottom:680.970000px;}
.y66{bottom:692.490000px;}
.y86{bottom:702.210000px;}
.y65{bottom:711.210000px;}
.y85{bottom:721.290000px;}
.y64{bottom:730.290000px;}
.y63{bottom:749.010000px;}
.y62{bottom:768.090000px;}
.y61{bottom:786.810000px;}
.y60{bottom:805.575000px;}
.y5f{bottom:824.655000px;}
.y5e{bottom:843.375000px;}
.y5d{bottom:862.455000px;}
.y5c{bottom:881.175000px;}
.y5b{bottom:900.255000px;}
.y5a{bottom:918.975000px;}
.y59{bottom:938.085000px;}
.y58{bottom:956.805000px;}
.yd{bottom:962.565000px;}
.yc{bottom:967.605000px;}
.y57{bottom:975.525000px;}
.yb{bottom:988.125000px;}
.y56{bottom:994.605000px;}
.y55{bottom:1013.325000px;}
.ya{bottom:1014.405000px;}
.y54{bottom:1032.405000px;}
.y9{bottom:1039.965000px;}
.y53{bottom:1051.125000px;}
.y52{bottom:1070.250000px;}
.y8{bottom:1072.050000px;}
.y4f{bottom:1075.320000px;}
.y51{bottom:1088.970000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.650313px;}
.h19{height:27.720000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h1d{height:51.064455px;}
.h14{height:53.677969px;}
.h15{height:55.147500px;}
.h7{height:57.290625px;}
.h10{height:57.672000px;}
.h6{height:59.357813px;}
.he{height:60.791018px;}
.ha{height:60.952500px;}
.h18{height:61.143509px;}
.h1b{height:62.163910px;}
.h1a{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.hf{height:67.579668px;}
.h1c{height:70.664062px;}
.h17{height:74.015827px;}
.h8{height:77.280480px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h11{height:202.005000px;}
.hb{height:641.685000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x4{left:13.305000px;}
.x14{left:16.906500px;}
.x1a{left:18.346500px;}
.x15{left:19.426500px;}
.x6{left:28.785000px;}
.xf{left:43.906500px;}
.x1b{left:47.542500px;}
.x10{left:50.782500px;}
.x13{left:53.302500px;}
.xe{left:55.102500px;}
.x1d{left:57.262500px;}
.x17{left:62.295000px;}
.x1c{left:66.265500px;}
.x12{left:73.105500px;}
.x1{left:78.529500px;}
.x1f{left:83.535000px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x19{left:106.945500px;}
.x18{left:116.340000px;}
.x11{left:124.585500px;}
.x20{left:126.060000px;}
.x3{left:182.250000px;}
.x22{left:194.475000px;}
.x16{left:218.970000px;}
.x21{left:269.400000px;}
.xb{left:372.750000px;}
.xc{left:576.210000px;}
.xa{left:714.165000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-8.095350pt;}
.ls16{letter-spacing:-1.088000pt;}
.lsf{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.466607pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.018889pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.414720pt;}
.ls7{letter-spacing:0.414933pt;}
.ls2{letter-spacing:0.437149pt;}
.lsa{letter-spacing:0.437374pt;}
.ls9{letter-spacing:0.539690pt;}
.ls3{letter-spacing:0.549584pt;}
.lsd{letter-spacing:0.558804pt;}
.ls5{letter-spacing:0.588262pt;}
.ls10{letter-spacing:0.590286pt;}
.ls4{letter-spacing:0.605802pt;}
.ls1{letter-spacing:0.640000pt;}
.ls15{letter-spacing:41.374720pt;}
.ls12{letter-spacing:98.624000pt;}
.ws6{word-spacing:-26.107503pt;}
.wsd{word-spacing:-24.512000pt;}
.ws10{word-spacing:-24.448000pt;}
.ws1{word-spacing:-24.256000pt;}
.wse{word-spacing:-23.936000pt;}
.wsa{word-spacing:-23.522388pt;}
.wsf{word-spacing:-23.168000pt;}
.wsb{word-spacing:-17.253889pt;}
.ws7{word-spacing:-15.753551pt;}
.ws2{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws9{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._7{margin-left:-7.722240pt;}
._12{margin-left:-6.439278pt;}
._5{margin-left:-1.884160pt;}
._6{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._f{width:4.519904pt;}
._9{width:5.640205pt;}
._11{width:6.676940pt;}
._8{width:7.633920pt;}
._b{width:8.954331pt;}
._a{width:10.195173pt;}
._e{width:11.531119pt;}
._d{width:13.299376pt;}
._c{width:14.229569pt;}
._10{width:15.635643pt;}
._3{width:105.706667pt;}
._4{width:340.000000pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsc{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fse{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs9{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:62.064349pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fsf{font-size:74.368000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.556000pt;}
.y5{bottom:3.840000pt;}
.y50{bottom:6.373333pt;}
.y2{bottom:8.960000pt;}
.y42{bottom:9.596000pt;}
.y4{bottom:20.800000pt;}
.y4d{bottom:21.436000pt;}
.y41{bottom:35.870667pt;}
.y39{bottom:37.440000pt;}
.y4c{bottom:40.990667pt;}
.y3{bottom:42.560000pt;}
.y40{bottom:46.430667pt;}
.y7{bottom:51.232000pt;}
.y38{bottom:54.080000pt;}
.y3f{bottom:57.950667pt;}
.y4b{bottom:59.230667pt;}
.y3e{bottom:69.470667pt;}
.y37{bottom:71.040000pt;}
.y4a{bottom:78.430667pt;}
.y49{bottom:83.870667pt;}
.y36{bottom:87.720000pt;}
.y3d{bottom:88.670667pt;}
.y4e{bottom:88.992000pt;}
.y48{bottom:97.950667pt;}
.y3a{bottom:102.436000pt;}
.y35{bottom:104.680000pt;}
.y47{bottom:111.710667pt;}
.y84{bottom:111.712000pt;}
.y34{bottom:121.320000pt;}
.y46{bottom:125.470667pt;}
.y83{bottom:128.704000pt;}
.y33{bottom:138.280000pt;}
.y45{bottom:139.230667pt;}
.y3c{bottom:144.377333pt;}
.y82{bottom:145.346667pt;}
.y44{bottom:153.017333pt;}
.y3b{bottom:153.977333pt;}
.y32{bottom:154.920000pt;}
.y81{bottom:162.306667pt;}
.y31{bottom:171.880000pt;}
.y80{bottom:178.946667pt;}
.y30{bottom:190.760000pt;}
.y7f{bottom:195.586667pt;}
.y7e{bottom:212.546667pt;}
.y2f{bottom:214.146667pt;}
.y7d{bottom:229.186667pt;}
.y2e{bottom:237.186667pt;}
.y7c{bottom:246.173333pt;}
.y2d{bottom:259.586667pt;}
.y7b{bottom:262.813333pt;}
.y2c{bottom:277.826667pt;}
.y7a{bottom:279.773333pt;}
.ye{bottom:282.653333pt;}
.y1c{bottom:282.946667pt;}
.y2b{bottom:295.746667pt;}
.y79{bottom:296.413333pt;}
.y1b{bottom:304.386667pt;}
.y78{bottom:313.373333pt;}
.y2a{bottom:314.013333pt;}
.y1a{bottom:325.853333pt;}
.y77{bottom:330.013333pt;}
.y29{bottom:331.933333pt;}
.y76{bottom:346.973333pt;}
.y19{bottom:347.293333pt;}
.y28{bottom:350.173333pt;}
.y75{bottom:363.653333pt;}
.y27{bottom:368.413333pt;}
.y18{bottom:368.733333pt;}
.y74{bottom:380.293333pt;}
.y26{bottom:386.333333pt;}
.y17{bottom:390.173333pt;}
.y73{bottom:397.253333pt;}
.y25{bottom:404.573333pt;}
.y16{bottom:411.613333pt;}
.y72{bottom:413.893333pt;}
.y24{bottom:422.493333pt;}
.y71{bottom:430.853333pt;}
.y15{bottom:433.093333pt;}
.y23{bottom:440.773333pt;}
.y70{bottom:447.493333pt;}
.y14{bottom:454.533333pt;}
.y22{bottom:459.013333pt;}
.y6f{bottom:464.453333pt;}
.y13{bottom:475.973333pt;}
.y21{bottom:476.933333pt;}
.y6e{bottom:481.120000pt;}
.y20{bottom:495.173333pt;}
.y12{bottom:497.413333pt;}
.y6d{bottom:498.080000pt;}
.y8c{bottom:511.520000pt;}
.y1f{bottom:513.093333pt;}
.y6c{bottom:514.720000pt;}
.y11{bottom:518.853333pt;}
.y1e{bottom:531.333333pt;}
.y6b{bottom:531.360000pt;}
.y8b{bottom:533.920000pt;}
.y10{bottom:540.613333pt;}
.y6a{bottom:548.320000pt;}
.y1d{bottom:549.600000pt;}
.y8a{bottom:550.560000pt;}
.yf{bottom:562.080000pt;}
.y69{bottom:564.960000pt;}
.y89{bottom:569.760000pt;}
.y68{bottom:581.920000pt;}
.y88{bottom:586.400000pt;}
.y67{bottom:598.586667pt;}
.y87{bottom:605.306667pt;}
.y66{bottom:615.546667pt;}
.y86{bottom:624.186667pt;}
.y65{bottom:632.186667pt;}
.y85{bottom:641.146667pt;}
.y64{bottom:649.146667pt;}
.y63{bottom:665.786667pt;}
.y62{bottom:682.746667pt;}
.y61{bottom:699.386667pt;}
.y60{bottom:716.066667pt;}
.y5f{bottom:733.026667pt;}
.y5e{bottom:749.666667pt;}
.y5d{bottom:766.626667pt;}
.y5c{bottom:783.266667pt;}
.y5b{bottom:800.226667pt;}
.y5a{bottom:816.866667pt;}
.y59{bottom:833.853333pt;}
.y58{bottom:850.493333pt;}
.yd{bottom:855.613333pt;}
.yc{bottom:860.093333pt;}
.y57{bottom:867.133333pt;}
.yb{bottom:878.333333pt;}
.y56{bottom:884.093333pt;}
.y55{bottom:900.733333pt;}
.ya{bottom:901.693333pt;}
.y54{bottom:917.693333pt;}
.y9{bottom:924.413333pt;}
.y53{bottom:934.333333pt;}
.y52{bottom:951.333333pt;}
.y8{bottom:952.933333pt;}
.y4f{bottom:955.840000pt;}
.y51{bottom:967.973333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h16{height:5.022500pt;}
.h19{height:24.640000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h1d{height:45.390627pt;}
.h14{height:47.713750pt;}
.h15{height:49.020000pt;}
.h7{height:50.925000pt;}
.h10{height:51.264000pt;}
.h6{height:52.762500pt;}
.he{height:54.036460pt;}
.ha{height:54.180000pt;}
.h18{height:54.349786pt;}
.h1b{height:55.256809pt;}
.h1a{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.hf{height:60.070816pt;}
.h1c{height:62.812500pt;}
.h17{height:65.791846pt;}
.h8{height:68.693760pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h11{height:179.560000pt;}
.hb{height:570.386667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x4{left:11.826667pt;}
.x14{left:15.028000pt;}
.x1a{left:16.308000pt;}
.x15{left:17.268000pt;}
.x6{left:25.586667pt;}
.xf{left:39.028000pt;}
.x1b{left:42.260000pt;}
.x10{left:45.140000pt;}
.x13{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x17{left:55.373333pt;}
.x1c{left:58.902667pt;}
.x12{left:64.982667pt;}
.x1{left:69.804000pt;}
.x1f{left:74.253333pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x19{left:95.062667pt;}
.x18{left:103.413333pt;}
.x11{left:110.742667pt;}
.x20{left:112.053333pt;}
.x3{left:162.000000pt;}
.x22{left:172.866667pt;}
.x16{left:194.640000pt;}
.x21{left:239.466667pt;}
.xb{left:331.333333pt;}
.xc{left:512.186667pt;}
.xa{left:634.813333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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