
    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_3fb1369d42935d7d0006884d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905273;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_08025149be9a2486ca0f1244.woff')format("woff");}.ff2{font-family:ff2;line-height:0.805176;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_3feafea8dc1122896b9a245b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_85cda6d9e91a0f6808e1c63e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7035bb516045b6dba691e0ec.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_54fbd19f1f627a56e94761a3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_4d87d949bab55b97f2f6cfa5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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.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);}
.m1{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);}
.m2{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;}
.ls10{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.942000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.284602px;}
.ls1{letter-spacing:0.360000px;}
.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;}
}
.wsa{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.ws0{word-spacing:-15.937720px;}
.ws3{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.ws4{word-spacing:-13.860000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._1c{margin-left:-5.301600px;}
._14{margin-left:-3.576960px;}
._4{margin-left:-2.569680px;}
._0{margin-left:-1.254240px;}
._5{width:1.015920px;}
._3{width:2.056800px;}
._9{width:3.466080px;}
._e{width:4.482000px;}
._a{width:5.556960px;}
._7{width:6.932160px;}
._6{width:8.246880px;}
._8{width:9.285360px;}
._10{width:10.338960px;}
._d{width:11.354400px;}
._c{width:12.728880px;}
._13{width:13.756320px;}
._18{width:15.102720px;}
._b{width:16.169040px;}
._11{width:17.814240px;}
._12{width:19.005840px;}
._15{width:20.666880px;}
._19{width:22.389120px;}
._1a{width:23.912640px;}
._1b{width:25.228800px;}
._17{width:26.624160px;}
._16{width:28.019520px;}
._f{width:167.370240px;}
._2{width:423.660000px;}
._1{width:991.768800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.720000px;}
.y4{bottom:68.580000px;}
.y7f{bottom:110.376000px;}
.y7e{bottom:114.876000px;}
.y7d{bottom:124.236000px;}
.y3f{bottom:127.836000px;}
.y89{bottom:128.736000px;}
.y8b{bottom:129.816000px;}
.y7c{bottom:137.916000px;}
.y7b{bottom:142.416000px;}
.y3e{bottom:146.736000px;}
.y7a{bottom:151.770000px;}
.yd7{bottom:154.290000px;}
.y88{bottom:156.270000px;}
.y79{bottom:165.630000px;}
.y3d{bottom:165.810000px;}
.y78{bottom:170.130000px;}
.yd6{bottom:173.190000px;}
.y77{bottom:179.310000px;}
.y87{bottom:183.810000px;}
.y3c{bottom:184.710000px;}
.yd5{bottom:192.090000px;}
.y76{bottom:193.170000px;}
.y75{bottom:197.670000px;}
.y86{bottom:198.750000px;}
.yac{bottom:203.250000px;}
.y3b{bottom:203.790000px;}
.yd4{bottom:211.170000px;}
.y74{bottom:212.610000px;}
.y3a{bottom:221.610000px;}
.yab{bottom:222.150000px;}
.y85{bottom:226.110000px;}
.yd3{bottom:230.070000px;}
.y39{bottom:235.290000px;}
.yaa{bottom:237.450000px;}
.y73{bottom:245.190000px;}
.yd2{bottom:249.150000px;}
.y38{bottom:249.870000px;}
.y72{bottom:264.090000px;}
.y37{bottom:267.150000px;}
.yd1{bottom:268.050000px;}
.y84{bottom:270.030000px;}
.y71{bottom:282.990000px;}
.y36{bottom:284.430000px;}
.yd0{bottom:286.950000px;}
.y35{bottom:301.530000px;}
.y6f{bottom:302.070000px;}
.ycf{bottom:306.030000px;}
.y70{bottom:308.010000px;}
.y34{bottom:318.810000px;}
.y6e{bottom:320.970000px;}
.yce{bottom:324.930000px;}
.y33{bottom:336.090000px;}
.y6d{bottom:340.095000px;}
.ycd{bottom:344.055000px;}
.y83{bottom:346.035000px;}
.y32{bottom:353.415000px;}
.y6c{bottom:358.995000px;}
.ycc{bottom:362.955000px;}
.y31{bottom:370.695000px;}
.y6b{bottom:377.895000px;}
.ycb{bottom:381.855000px;}
.y30{bottom:387.975000px;}
.y6a{bottom:396.975000px;}
.yca{bottom:400.935000px;}
.y2f{bottom:405.075000px;}
.y69{bottom:415.875000px;}
.yc9{bottom:419.835000px;}
.y82{bottom:421.815000px;}
.y2e{bottom:422.355000px;}
.ya9{bottom:423.435000px;}
.y68{bottom:434.955000px;}
.yc8{bottom:438.915000px;}
.y2d{bottom:439.635000px;}
.ya8{bottom:442.335000px;}
.y67{bottom:453.855000px;}
.y2c{bottom:456.915000px;}
.yc7{bottom:457.815000px;}
.ya7{bottom:461.415000px;}
.y66{bottom:472.755000px;}
.y2b{bottom:474.195000px;}
.yc6{bottom:476.715000px;}
.ya6{bottom:480.315000px;}
.y2a{bottom:491.295000px;}
.y65{bottom:491.835000px;}
.yc5{bottom:495.795000px;}
.ya5{bottom:499.215000px;}
.y29{bottom:508.575000px;}
.y64{bottom:510.735000px;}
.yc4{bottom:514.695000px;}
.ya4{bottom:518.295000px;}
.y28{bottom:525.855000px;}
.y63{bottom:529.815000px;}
.yc3{bottom:533.775000px;}
.ya3{bottom:537.195000px;}
.y27{bottom:543.135000px;}
.y62{bottom:548.715000px;}
.yc2{bottom:552.675000px;}
.ya2{bottom:556.275000px;}
.y26{bottom:560.415000px;}
.y61{bottom:567.795000px;}
.yc1{bottom:571.575000px;}
.ya1{bottom:575.175000px;}
.y25{bottom:577.695000px;}
.y60{bottom:586.695000px;}
.yc0{bottom:590.655000px;}
.ya0{bottom:594.075000px;}
.y24{bottom:594.795000px;}
.y5e{bottom:605.625000px;}
.ybf{bottom:609.585000px;}
.y5f{bottom:611.565000px;}
.y23{bottom:612.105000px;}
.y9f{bottom:613.185000px;}
.y5d{bottom:624.705000px;}
.ybe{bottom:628.665000px;}
.y22{bottom:629.385000px;}
.y9e{bottom:632.085000px;}
.y5c{bottom:643.605000px;}
.y21{bottom:646.665000px;}
.ybd{bottom:647.565000px;}
.y9d{bottom:651.165000px;}
.y5b{bottom:662.685000px;}
.y20{bottom:663.945000px;}
.ybc{bottom:666.645000px;}
.y9c{bottom:670.065000px;}
.y1f{bottom:681.225000px;}
.y5a{bottom:681.585000px;}
.ybb{bottom:685.545000px;}
.y9b{bottom:689.145000px;}
.y1e{bottom:698.325000px;}
.y59{bottom:700.485000px;}
.yba{bottom:704.445000px;}
.y9a{bottom:708.045000px;}
.y1d{bottom:715.605000px;}
.y58{bottom:719.565000px;}
.yb9{bottom:723.525000px;}
.y99{bottom:726.945000px;}
.y1c{bottom:732.885000px;}
.y56{bottom:738.465000px;}
.yb8{bottom:742.425000px;}
.y57{bottom:744.405000px;}
.y98{bottom:746.025000px;}
.y1b{bottom:750.165000px;}
.y55{bottom:757.545000px;}
.yb7{bottom:761.505000px;}
.y97{bottom:764.925000px;}
.y1a{bottom:767.445000px;}
.y54{bottom:776.445000px;}
.yb6{bottom:780.405000px;}
.y96{bottom:784.005000px;}
.y19{bottom:784.725000px;}
.y53{bottom:795.345000px;}
.yb5{bottom:799.305000px;}
.y18{bottom:801.825000px;}
.y95{bottom:802.905000px;}
.y52{bottom:814.425000px;}
.yb4{bottom:818.385000px;}
.y17{bottom:819.105000px;}
.y94{bottom:821.805000px;}
.y51{bottom:833.325000px;}
.y16{bottom:836.385000px;}
.yb3{bottom:837.285000px;}
.y93{bottom:840.885000px;}
.y50{bottom:852.405000px;}
.y15{bottom:853.665000px;}
.yb2{bottom:856.365000px;}
.y81{bottom:858.345000px;}
.y92{bottom:859.785000px;}
.y14{bottom:870.990000px;}
.y4f{bottom:871.350000px;}
.yb1{bottom:875.310000px;}
.y91{bottom:878.910000px;}
.y13{bottom:888.090000px;}
.y4e{bottom:890.250000px;}
.yb0{bottom:894.210000px;}
.y80{bottom:896.190000px;}
.y90{bottom:897.810000px;}
.y12{bottom:905.370000px;}
.y4d{bottom:909.330000px;}
.yaf{bottom:913.290000px;}
.y8f{bottom:916.710000px;}
.y11{bottom:921.930000px;}
.y4c{bottom:928.230000px;}
.yae{bottom:932.190000px;}
.y8e{bottom:935.790000px;}
.y10{bottom:936.510000px;}
.y4b{bottom:947.310000px;}
.yad{bottom:947.490000px;}
.yf{bottom:954.150000px;}
.y8d{bottom:954.690000px;}
.y4a{bottom:966.210000px;}
.y8c{bottom:969.990000px;}
.ye{bottom:973.050000px;}
.y49{bottom:985.110000px;}
.yd{bottom:992.130000px;}
.y48{bottom:1004.190000px;}
.yc{bottom:1011.570000px;}
.y47{bottom:1023.090000px;}
.yb{bottom:1033.890000px;}
.y46{bottom:1042.170000px;}
.ya{bottom:1054.770000px;}
.y45{bottom:1061.070000px;}
.y9{bottom:1069.350000px;}
.y43{bottom:1080.150000px;}
.y44{bottom:1086.090000px;}
.y8{bottom:1086.450000px;}
.y42{bottom:1099.050000px;}
.y7{bottom:1103.730000px;}
.y41{bottom:1117.950000px;}
.y6{bottom:1121.010000px;}
.y8a{bottom:1123.890000px;}
.y40{bottom:1137.030000px;}
.y5{bottom:1138.320000px;}
.y3{bottom:1171.080000px;}
.y1{bottom:1184.040000px;}
.h12{height:21.114844px;}
.h2{height:25.740000px;}
.h10{height:29.158594px;}
.he{height:33.683203px;}
.h7{height:34.036523px;}
.hb{height:34.837383px;}
.h3{height:38.326793px;}
.h5{height:39.760312px;}
.h4{height:40.842773px;}
.ha{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:43.156758px;}
.hf{height:46.251562px;}
.h9{height:46.736719px;}
.h14{height:48.224531px;}
.hd{height:49.255313px;}
.h11{height:50.100469px;}
.h13{height:54.596250px;}
.h8{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.100000px;}
.w3{width:618.405000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x2{left:16.020000px;}
.x1{left:108.036000px;}
.x15{left:111.815987px;}
.x22{left:115.595987px;}
.x6{left:125.855987px;}
.x27{left:140.075987px;}
.xc{left:153.029973px;}
.xd{left:158.249987px;}
.xb{left:162.029987px;}
.x3{left:170.130000px;}
.x7{left:263.729987px;}
.x10{left:316.874973px;}
.x11{left:322.094987px;}
.x14{left:324.074987px;}
.x24{left:327.674987px;}
.x26{left:338.654987px;}
.x9{left:341.714987px;}
.x1a{left:360.974973px;}
.x1b{left:366.194987px;}
.x8{left:373.034987px;}
.x18{left:410.654973px;}
.x19{left:415.874987px;}
.x16{left:417.314973px;}
.xa{left:420.734987px;}
.x17{left:422.534987px;}
.x1c{left:430.634973px;}
.x1d{left:435.854987px;}
.x5{left:446.474987px;}
.x1e{left:497.264973px;}
.x1f{left:502.844987px;}
.x20{left:581.324973px;}
.x25{left:583.844987px;}
.x21{left:591.764987px;}
.x23{left:602.924987px;}
.x12{left:642.164973px;}
.x13{left:647.384987px;}
.xe{left:779.549973px;}
.xf{left:784.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.837333pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.252980pt;}
.ls1{letter-spacing:0.320000pt;}
.wsa{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.ws0{word-spacing:-14.166862pt;}
.ws3{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.ws4{word-spacing:-12.320000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._1c{margin-left:-4.712533pt;}
._14{margin-left:-3.179520pt;}
._4{margin-left:-2.284160pt;}
._0{margin-left:-1.114880pt;}
._5{width:0.903040pt;}
._3{width:1.828267pt;}
._9{width:3.080960pt;}
._e{width:3.984000pt;}
._a{width:4.939520pt;}
._7{width:6.161920pt;}
._6{width:7.330560pt;}
._8{width:8.253653pt;}
._10{width:9.190187pt;}
._d{width:10.092800pt;}
._c{width:11.314560pt;}
._13{width:12.227840pt;}
._18{width:13.424640pt;}
._b{width:14.372480pt;}
._11{width:15.834880pt;}
._12{width:16.894080pt;}
._15{width:18.370560pt;}
._19{width:19.901440pt;}
._1a{width:21.255680pt;}
._1b{width:22.425600pt;}
._17{width:23.665920pt;}
._16{width:24.906240pt;}
._f{width:148.773547pt;}
._2{width:376.586667pt;}
._1{width:881.572267pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.640000pt;}
.y4{bottom:60.960000pt;}
.y7f{bottom:98.112000pt;}
.y7e{bottom:102.112000pt;}
.y7d{bottom:110.432000pt;}
.y3f{bottom:113.632000pt;}
.y89{bottom:114.432000pt;}
.y8b{bottom:115.392000pt;}
.y7c{bottom:122.592000pt;}
.y7b{bottom:126.592000pt;}
.y3e{bottom:130.432000pt;}
.y7a{bottom:134.906667pt;}
.yd7{bottom:137.146667pt;}
.y88{bottom:138.906667pt;}
.y79{bottom:147.226667pt;}
.y3d{bottom:147.386667pt;}
.y78{bottom:151.226667pt;}
.yd6{bottom:153.946667pt;}
.y77{bottom:159.386667pt;}
.y87{bottom:163.386667pt;}
.y3c{bottom:164.186667pt;}
.yd5{bottom:170.746667pt;}
.y76{bottom:171.706667pt;}
.y75{bottom:175.706667pt;}
.y86{bottom:176.666667pt;}
.yac{bottom:180.666667pt;}
.y3b{bottom:181.146667pt;}
.yd4{bottom:187.706667pt;}
.y74{bottom:188.986667pt;}
.y3a{bottom:196.986667pt;}
.yab{bottom:197.466667pt;}
.y85{bottom:200.986667pt;}
.yd3{bottom:204.506667pt;}
.y39{bottom:209.146667pt;}
.yaa{bottom:211.066667pt;}
.y73{bottom:217.946667pt;}
.yd2{bottom:221.466667pt;}
.y38{bottom:222.106667pt;}
.y72{bottom:234.746667pt;}
.y37{bottom:237.466667pt;}
.yd1{bottom:238.266667pt;}
.y84{bottom:240.026667pt;}
.y71{bottom:251.546667pt;}
.y36{bottom:252.826667pt;}
.yd0{bottom:255.066667pt;}
.y35{bottom:268.026667pt;}
.y6f{bottom:268.506667pt;}
.ycf{bottom:272.026667pt;}
.y70{bottom:273.786667pt;}
.y34{bottom:283.386667pt;}
.y6e{bottom:285.306667pt;}
.yce{bottom:288.826667pt;}
.y33{bottom:298.746667pt;}
.y6d{bottom:302.306667pt;}
.ycd{bottom:305.826667pt;}
.y83{bottom:307.586667pt;}
.y32{bottom:314.146667pt;}
.y6c{bottom:319.106667pt;}
.ycc{bottom:322.626667pt;}
.y31{bottom:329.506667pt;}
.y6b{bottom:335.906667pt;}
.ycb{bottom:339.426667pt;}
.y30{bottom:344.866667pt;}
.y6a{bottom:352.866667pt;}
.yca{bottom:356.386667pt;}
.y2f{bottom:360.066667pt;}
.y69{bottom:369.666667pt;}
.yc9{bottom:373.186667pt;}
.y82{bottom:374.946667pt;}
.y2e{bottom:375.426667pt;}
.ya9{bottom:376.386667pt;}
.y68{bottom:386.626667pt;}
.yc8{bottom:390.146667pt;}
.y2d{bottom:390.786667pt;}
.ya8{bottom:393.186667pt;}
.y67{bottom:403.426667pt;}
.y2c{bottom:406.146667pt;}
.yc7{bottom:406.946667pt;}
.ya7{bottom:410.146667pt;}
.y66{bottom:420.226667pt;}
.y2b{bottom:421.506667pt;}
.yc6{bottom:423.746667pt;}
.ya6{bottom:426.946667pt;}
.y2a{bottom:436.706667pt;}
.y65{bottom:437.186667pt;}
.yc5{bottom:440.706667pt;}
.ya5{bottom:443.746667pt;}
.y29{bottom:452.066667pt;}
.y64{bottom:453.986667pt;}
.yc4{bottom:457.506667pt;}
.ya4{bottom:460.706667pt;}
.y28{bottom:467.426667pt;}
.y63{bottom:470.946667pt;}
.yc3{bottom:474.466667pt;}
.ya3{bottom:477.506667pt;}
.y27{bottom:482.786667pt;}
.y62{bottom:487.746667pt;}
.yc2{bottom:491.266667pt;}
.ya2{bottom:494.466667pt;}
.y26{bottom:498.146667pt;}
.y61{bottom:504.706667pt;}
.yc1{bottom:508.066667pt;}
.ya1{bottom:511.266667pt;}
.y25{bottom:513.506667pt;}
.y60{bottom:521.506667pt;}
.yc0{bottom:525.026667pt;}
.ya0{bottom:528.066667pt;}
.y24{bottom:528.706667pt;}
.y5e{bottom:538.333333pt;}
.ybf{bottom:541.853333pt;}
.y5f{bottom:543.613333pt;}
.y23{bottom:544.093333pt;}
.y9f{bottom:545.053333pt;}
.y5d{bottom:555.293333pt;}
.ybe{bottom:558.813333pt;}
.y22{bottom:559.453333pt;}
.y9e{bottom:561.853333pt;}
.y5c{bottom:572.093333pt;}
.y21{bottom:574.813333pt;}
.ybd{bottom:575.613333pt;}
.y9d{bottom:578.813333pt;}
.y5b{bottom:589.053333pt;}
.y20{bottom:590.173333pt;}
.ybc{bottom:592.573333pt;}
.y9c{bottom:595.613333pt;}
.y1f{bottom:605.533333pt;}
.y5a{bottom:605.853333pt;}
.ybb{bottom:609.373333pt;}
.y9b{bottom:612.573333pt;}
.y1e{bottom:620.733333pt;}
.y59{bottom:622.653333pt;}
.yba{bottom:626.173333pt;}
.y9a{bottom:629.373333pt;}
.y1d{bottom:636.093333pt;}
.y58{bottom:639.613333pt;}
.yb9{bottom:643.133333pt;}
.y99{bottom:646.173333pt;}
.y1c{bottom:651.453333pt;}
.y56{bottom:656.413333pt;}
.yb8{bottom:659.933333pt;}
.y57{bottom:661.693333pt;}
.y98{bottom:663.133333pt;}
.y1b{bottom:666.813333pt;}
.y55{bottom:673.373333pt;}
.yb7{bottom:676.893333pt;}
.y97{bottom:679.933333pt;}
.y1a{bottom:682.173333pt;}
.y54{bottom:690.173333pt;}
.yb6{bottom:693.693333pt;}
.y96{bottom:696.893333pt;}
.y19{bottom:697.533333pt;}
.y53{bottom:706.973333pt;}
.yb5{bottom:710.493333pt;}
.y18{bottom:712.733333pt;}
.y95{bottom:713.693333pt;}
.y52{bottom:723.933333pt;}
.yb4{bottom:727.453333pt;}
.y17{bottom:728.093333pt;}
.y94{bottom:730.493333pt;}
.y51{bottom:740.733333pt;}
.y16{bottom:743.453333pt;}
.yb3{bottom:744.253333pt;}
.y93{bottom:747.453333pt;}
.y50{bottom:757.693333pt;}
.y15{bottom:758.813333pt;}
.yb2{bottom:761.213333pt;}
.y81{bottom:762.973333pt;}
.y92{bottom:764.253333pt;}
.y14{bottom:774.213333pt;}
.y4f{bottom:774.533333pt;}
.yb1{bottom:778.053333pt;}
.y91{bottom:781.253333pt;}
.y13{bottom:789.413333pt;}
.y4e{bottom:791.333333pt;}
.yb0{bottom:794.853333pt;}
.y80{bottom:796.613333pt;}
.y90{bottom:798.053333pt;}
.y12{bottom:804.773333pt;}
.y4d{bottom:808.293333pt;}
.yaf{bottom:811.813333pt;}
.y8f{bottom:814.853333pt;}
.y11{bottom:819.493333pt;}
.y4c{bottom:825.093333pt;}
.yae{bottom:828.613333pt;}
.y8e{bottom:831.813333pt;}
.y10{bottom:832.453333pt;}
.y4b{bottom:842.053333pt;}
.yad{bottom:842.213333pt;}
.yf{bottom:848.133333pt;}
.y8d{bottom:848.613333pt;}
.y4a{bottom:858.853333pt;}
.y8c{bottom:862.213333pt;}
.ye{bottom:864.933333pt;}
.y49{bottom:875.653333pt;}
.yd{bottom:881.893333pt;}
.y48{bottom:892.613333pt;}
.yc{bottom:899.173333pt;}
.y47{bottom:909.413333pt;}
.yb{bottom:919.013333pt;}
.y46{bottom:926.373333pt;}
.ya{bottom:937.573333pt;}
.y45{bottom:943.173333pt;}
.y9{bottom:950.533333pt;}
.y43{bottom:960.133333pt;}
.y44{bottom:965.413333pt;}
.y8{bottom:965.733333pt;}
.y42{bottom:976.933333pt;}
.y7{bottom:981.093333pt;}
.y41{bottom:993.733333pt;}
.y6{bottom:996.453333pt;}
.y8a{bottom:999.013333pt;}
.y40{bottom:1010.693333pt;}
.y5{bottom:1011.840000pt;}
.y3{bottom:1040.960000pt;}
.y1{bottom:1052.480000pt;}
.h12{height:18.768750pt;}
.h2{height:22.880000pt;}
.h10{height:25.918750pt;}
.he{height:29.940625pt;}
.h7{height:30.254687pt;}
.hb{height:30.966562pt;}
.h3{height:34.068260pt;}
.h5{height:35.342500pt;}
.h4{height:36.304688pt;}
.ha{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:38.361562pt;}
.hf{height:41.112500pt;}
.h9{height:41.543750pt;}
.h14{height:42.866250pt;}
.hd{height:43.782500pt;}
.h11{height:44.533750pt;}
.h13{height:48.530000pt;}
.h8{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.200000pt;}
.w3{width:549.693333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x2{left:14.240000pt;}
.x1{left:96.032000pt;}
.x15{left:99.391988pt;}
.x22{left:102.751988pt;}
.x6{left:111.871988pt;}
.x27{left:124.511988pt;}
.xc{left:136.026643pt;}
.xd{left:140.666655pt;}
.xb{left:144.026655pt;}
.x3{left:151.226667pt;}
.x7{left:234.426655pt;}
.x10{left:281.666643pt;}
.x11{left:286.306655pt;}
.x14{left:288.066655pt;}
.x24{left:291.266655pt;}
.x26{left:301.026655pt;}
.x9{left:303.746655pt;}
.x1a{left:320.866643pt;}
.x1b{left:325.506655pt;}
.x8{left:331.586655pt;}
.x18{left:365.026643pt;}
.x19{left:369.666655pt;}
.x16{left:370.946643pt;}
.xa{left:373.986655pt;}
.x17{left:375.586655pt;}
.x1c{left:382.786643pt;}
.x1d{left:387.426655pt;}
.x5{left:396.866655pt;}
.x1e{left:442.013310pt;}
.x1f{left:446.973322pt;}
.x20{left:516.733310pt;}
.x25{left:518.973322pt;}
.x21{left:526.013322pt;}
.x23{left:535.933322pt;}
.x12{left:570.813310pt;}
.x13{left:575.453322pt;}
.xe{left:692.933310pt;}
.xf{left:697.573322pt;}
}




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