
    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_08b4efdb4693a0bb9b4423c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711914;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_45bd1284d87ae22ad6c164d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_3842feba937c9dceb5143cca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_7eb41e7cf50bf4b87f98af62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_e3d5050dd4a254992a8f6a18.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_99605b99d6d72bd43b1e1bb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_dd3b75775bf92db0f63bb19a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924316;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.144000px;}
.v2{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.269400px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.233280px;}
.ls0{letter-spacing:0.241200px;}
.ls3{letter-spacing:0.269400px;}
.lsd{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:152.909280px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws7{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.872000px;}
.wsc{word-spacing:-19.800000px;}
.wsa{word-spacing:-18.305520px;}
.ws8{word-spacing:-16.506480px;}
.ws1{word-spacing:-13.680120px;}
.ws4{word-spacing:-13.634520px;}
.ws3{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.141320px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-6.026400px;}
._a{margin-left:-4.896000px;}
._7{margin-left:-3.024000px;}
._1{margin-left:-1.350720px;}
._0{width:1.418400px;}
._10{width:2.418720px;}
._2{width:3.456000px;}
._4{width:5.400000px;}
._3{width:6.486720px;}
._5{width:7.920000px;}
._17{width:9.360000px;}
._11{width:10.728000px;}
._b{width:12.096000px;}
._c{width:13.296000px;}
._18{width:14.376000px;}
._19{width:15.576000px;}
._d{width:17.208000px;}
._16{width:18.702720px;}
._27{width:21.053280px;}
._9{width:22.074720px;}
._8{width:23.448000px;}
._14{width:25.463040px;}
._13{width:26.928000px;}
._22{width:28.296000px;}
._12{width:29.592000px;}
._1f{width:31.032000px;}
._26{width:32.400000px;}
._25{width:33.408000px;}
._f{width:34.632000px;}
._2c{width:35.928000px;}
._2b{width:37.008000px;}
._1e{width:38.088000px;}
._1b{width:39.672000px;}
._1a{width:40.680000px;}
._6{width:41.688000px;}
._e{width:42.780000px;}
._1d{width:44.640000px;}
._1c{width:45.792000px;}
._2a{width:47.100000px;}
._2d{width:48.372000px;}
._2e{width:49.699200px;}
._29{width:50.988000px;}
._28{width:52.128000px;}
._21{width:54.347040px;}
._20{width:55.656000px;}
._24{width:60.408000px;}
._23{width:61.704000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y43{bottom:-17.100000px;}
.ye{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.y42{bottom:1.800000px;}
.y40{bottom:3.240000px;}
.y81{bottom:3.420000px;}
.y84{bottom:3.600000px;}
.yb{bottom:3.780000px;}
.yd{bottom:5.580000px;}
.y3f{bottom:21.060000px;}
.y9{bottom:33.300000px;}
.y3d{bottom:33.660000px;}
.y3e{bottom:39.960000px;}
.y8{bottom:51.660000px;}
.y3c{bottom:53.100000px;}
.yc{bottom:60.480000px;}
.y41{bottom:60.660000px;}
.y7{bottom:66.780000px;}
.y6{bottom:80.676000px;}
.y5{bottom:94.536000px;}
.y4{bottom:109.656000px;}
.y8f{bottom:115.056000px;}
.ya5{bottom:123.516000px;}
.yb2{bottom:123.876000px;}
.y3a{bottom:129.636000px;}
.y7d{bottom:134.316000px;}
.ya4{bottom:144.216000px;}
.y7a{bottom:144.576000px;}
.y8e{bottom:146.016000px;}
.y39{bottom:146.916000px;}
.y38{bottom:164.190000px;}
.ya3{bottom:164.910000px;}
.y62{bottom:165.270000px;}
.y79{bottom:175.710000px;}
.y8d{bottom:177.150000px;}
.y37{bottom:181.470000px;}
.ya2{bottom:185.610000px;}
.yb1{bottom:185.970000px;}
.y61{bottom:196.410000px;}
.y36{bottom:198.750000px;}
.ya1{bottom:206.310000px;}
.y78{bottom:206.670000px;}
.y8c{bottom:208.110000px;}
.yc6{bottom:208.650000px;}
.y35{bottom:216.030000px;}
.yc5{bottom:224.130000px;}
.ya0{bottom:227.010000px;}
.y60{bottom:227.370000px;}
.y34{bottom:233.130000px;}
.y77{bottom:237.810000px;}
.y8b{bottom:239.250000px;}
.yc4{bottom:239.790000px;}
.y9f{bottom:247.710000px;}
.yb0{bottom:248.070000px;}
.y33{bottom:250.410000px;}
.yc3{bottom:255.270000px;}
.y5f{bottom:258.510000px;}
.y8a{bottom:259.950000px;}
.y32{bottom:267.690000px;}
.y9e{bottom:268.410000px;}
.y76{bottom:268.770000px;}
.yc2{bottom:271.650000px;}
.y89{bottom:283.350000px;}
.y31{bottom:284.970000px;}
.y9d{bottom:289.110000px;}
.y5e{bottom:289.470000px;}
.yc1{bottom:292.350000px;}
.y75{bottom:299.910000px;}
.y30{bottom:302.970000px;}
.y88{bottom:306.930000px;}
.y9c{bottom:309.810000px;}
.yaf{bottom:310.170000px;}
.yc0{bottom:313.050000px;}
.y5d{bottom:320.610000px;}
.y87{bottom:330.330000px;}
.y9b{bottom:330.510000px;}
.y74{bottom:330.870000px;}
.ybf{bottom:333.750000px;}
.y9a{bottom:351.255000px;}
.y5c{bottom:351.615000px;}
.y86{bottom:353.775000px;}
.ybe{bottom:354.495000px;}
.y2f{bottom:357.375000px;}
.y73{bottom:362.055000px;}
.y99{bottom:371.955000px;}
.yae{bottom:372.315000px;}
.ybd{bottom:375.195000px;}
.y85{bottom:377.355000px;}
.y5b{bottom:382.755000px;}
.y2e{bottom:388.515000px;}
.y98{bottom:392.655000px;}
.y72{bottom:393.015000px;}
.ybc{bottom:395.895000px;}
.y83{bottom:400.755000px;}
.y97{bottom:413.355000px;}
.y5a{bottom:413.715000px;}
.ybb{bottom:416.595000px;}
.y2d{bottom:419.475000px;}
.y71{bottom:423.975000px;}
.y82{bottom:424.335000px;}
.y96{bottom:434.055000px;}
.yad{bottom:434.415000px;}
.yba{bottom:437.295000px;}
.y59{bottom:444.675000px;}
.y80{bottom:448.095000px;}
.y2c{bottom:450.615000px;}
.y95{bottom:454.755000px;}
.y70{bottom:455.115000px;}
.yb9{bottom:457.995000px;}
.y94{bottom:475.455000px;}
.y58{bottom:475.815000px;}
.y2b{bottom:481.575000px;}
.y6f{bottom:486.075000px;}
.yb8{bottom:487.695000px;}
.y7f{bottom:489.135000px;}
.y93{bottom:496.155000px;}
.yac{bottom:496.515000px;}
.y57{bottom:506.775000px;}
.y7e{bottom:508.215000px;}
.yb7{bottom:508.395000px;}
.y2a{bottom:512.715000px;}
.y92{bottom:516.855000px;}
.y6e{bottom:517.215000px;}
.yb6{bottom:529.095000px;}
.y91{bottom:537.735000px;}
.y56{bottom:537.915000px;}
.y29{bottom:543.675000px;}
.y6d{bottom:548.175000px;}
.yb5{bottom:549.795000px;}
.y90{bottom:558.615000px;}
.y55{bottom:568.875000px;}
.y28{bottom:574.815000px;}
.y6c{bottom:579.315000px;}
.yb4{bottom:579.495000px;}
.y54{bottom:600.015000px;}
.y27{bottom:605.805000px;}
.y6b{bottom:610.305000px;}
.yab{bottom:620.745000px;}
.y53{bottom:631.005000px;}
.y26{bottom:636.945000px;}
.yb3{bottom:641.265000px;}
.y6a{bottom:641.445000px;}
.y52{bottom:662.145000px;}
.y25{bottom:667.905000px;}
.y69{bottom:672.405000px;}
.y51{bottom:682.845000px;}
.y24{bottom:688.605000px;}
.y7c{bottom:693.105000px;}
.y50{bottom:703.545000px;}
.y23{bottom:709.305000px;}
.y4f{bottom:724.245000px;}
.y68{bottom:734.505000px;}
.y22{bottom:740.445000px;}
.y4e{bottom:744.945000px;}
.y7b{bottom:755.205000px;}
.y21{bottom:761.145000px;}
.y4d{bottom:765.645000px;}
.y20{bottom:781.845000px;}
.y4c{bottom:786.345000px;}
.y67{bottom:796.605000px;}
.y1e{bottom:802.545000px;}
.yaa{bottom:807.045000px;}
.y1f{bottom:808.485000px;}
.y4b{bottom:817.305000px;}
.y66{bottom:827.745000px;}
.y1c{bottom:832.065000px;}
.y1d{bottom:838.005000px;}
.y4a{bottom:848.445000px;}
.y65{bottom:858.705000px;}
.y1a{bottom:861.765000px;}
.y1b{bottom:867.705000px;}
.ya9{bottom:869.145000px;}
.y49{bottom:879.450000px;}
.ya8{bottom:889.890000px;}
.y19{bottom:891.510000px;}
.y64{bottom:900.150000px;}
.y48{bottom:910.590000px;}
.y18{bottom:912.210000px;}
.y63{bottom:920.850000px;}
.ya7{bottom:931.290000px;}
.y17{bottom:932.910000px;}
.y47{bottom:941.550000px;}
.ya6{bottom:951.990000px;}
.y16{bottom:953.610000px;}
.y46{bottom:972.690000px;}
.y15{bottom:974.130000px;}
.y14{bottom:993.390000px;}
.y45{bottom:1003.650000px;}
.y13{bottom:1014.090000px;}
.y12{bottom:1034.790000px;}
.y11{bottom:1055.490000px;}
.y44{bottom:1065.750000px;}
.y10{bottom:1076.190000px;}
.yf{bottom:1096.890000px;}
.y3{bottom:1164.060000px;}
.ya{bottom:1174.860000px;}
.y2{bottom:1181.340000px;}
.y3b{bottom:1196.460000px;}
.y1{bottom:1199.340000px;}
.h14{height:11.736000px;}
.h9{height:15.516000px;}
.h15{height:18.900000px;}
.h18{height:18.936000px;}
.h17{height:19.080000px;}
.h8{height:20.520000px;}
.ha{height:37.437188px;}
.h13{height:37.836000px;}
.h11{height:41.726953px;}
.h4{height:43.646836px;}
.h5{height:45.504703px;}
.h1b{height:48.410156px;}
.h6{height:48.858398px;}
.h2{height:50.273438px;}
.h10{height:53.573906px;}
.h3{height:54.069961px;}
.hc{height:59.221406px;}
.h7{height:59.383125px;}
.h16{height:59.932969px;}
.hd{height:64.371094px;}
.hf{height:64.546875px;}
.hb{height:65.144531px;}
.h19{height:65.320312px;}
.he{height:67.406836px;}
.h1a{height:71.613281px;}
.h12{height:76.219102px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:17.820000px;}
.w6{width:92.730000px;}
.wa{width:135.036000px;}
.w9{width:205.950000px;}
.w8{width:326.730000px;}
.w4{width:380.415000px;}
.w7{width:386.355000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:1.080000px;}
.xb{left:10.800000px;}
.xa{left:13.500000px;}
.x1d{left:21.780000px;}
.x24{left:41.805000px;}
.x25{left:50.985000px;}
.x23{left:94.170000px;}
.x26{left:103.350000px;}
.xc{left:108.035987px;}
.x1f{left:110.376000px;}
.xf{left:116.315987px;}
.x29{left:129.095987px;}
.xd{left:151.949987px;}
.x1e{left:161.129987px;}
.x18{left:212.609987px;}
.xe{left:222.509987px;}
.x10{left:268.409987px;}
.x1{left:324.074987px;}
.x6{left:414.974987px;}
.x19{left:427.214987px;}
.x21{left:439.455000px;}
.x4{left:446.474987px;}
.x27{left:499.604987px;}
.x28{left:504.824987px;}
.x7{left:523.544987px;}
.x1a{left:525.164987px;}
.x17{left:530.384987px;}
.x12{left:535.604987px;}
.x8{left:584.564987px;}
.x14{left:589.424987px;}
.x5{left:598.064987px;}
.x2{left:634.964987px;}
.x22{left:647.745000px;}
.x15{left:736.889973px;}
.x13{left:740.129973px;}
.x16{left:743.549987px;}
.x9{left:747.510000px;}
.x1b{left:758.129987px;}
.x3{left:776.129987px;}
.x11{left:785.129987px;}
.x1c{left:800.250000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.128000pt;}
.v2{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.207360pt;}
.ls0{letter-spacing:0.214400pt;}
.ls3{letter-spacing:0.239467pt;}
.lsd{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:135.919360pt;}
.wsb{word-spacing:-64.000000pt;}
.ws7{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.664000pt;}
.wsc{word-spacing:-17.600000pt;}
.wsa{word-spacing:-16.271573pt;}
.ws8{word-spacing:-14.672427pt;}
.ws1{word-spacing:-12.160107pt;}
.ws4{word-spacing:-12.119573pt;}
.ws3{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.681173pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-5.356800pt;}
._a{margin-left:-4.352000pt;}
._7{margin-left:-2.688000pt;}
._1{margin-left:-1.200640pt;}
._0{width:1.260800pt;}
._10{width:2.149973pt;}
._2{width:3.072000pt;}
._4{width:4.800000pt;}
._3{width:5.765973pt;}
._5{width:7.040000pt;}
._17{width:8.320000pt;}
._11{width:9.536000pt;}
._b{width:10.752000pt;}
._c{width:11.818667pt;}
._18{width:12.778667pt;}
._19{width:13.845333pt;}
._d{width:15.296000pt;}
._16{width:16.624640pt;}
._27{width:18.714027pt;}
._9{width:19.621973pt;}
._8{width:20.842667pt;}
._14{width:22.633813pt;}
._13{width:23.936000pt;}
._22{width:25.152000pt;}
._12{width:26.304000pt;}
._1f{width:27.584000pt;}
._26{width:28.800000pt;}
._25{width:29.696000pt;}
._f{width:30.784000pt;}
._2c{width:31.936000pt;}
._2b{width:32.896000pt;}
._1e{width:33.856000pt;}
._1b{width:35.264000pt;}
._1a{width:36.160000pt;}
._6{width:37.056000pt;}
._e{width:38.026667pt;}
._1d{width:39.680000pt;}
._1c{width:40.704000pt;}
._2a{width:41.866667pt;}
._2d{width:42.997333pt;}
._2e{width:44.177067pt;}
._29{width:45.322667pt;}
._28{width:46.336000pt;}
._21{width:48.308480pt;}
._20{width:49.472000pt;}
._24{width:53.696000pt;}
._23{width:54.848000pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y43{bottom:-15.200000pt;}
.ye{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:1.600000pt;}
.y40{bottom:2.880000pt;}
.y81{bottom:3.040000pt;}
.y84{bottom:3.200000pt;}
.yb{bottom:3.360000pt;}
.yd{bottom:4.960000pt;}
.y3f{bottom:18.720000pt;}
.y9{bottom:29.600000pt;}
.y3d{bottom:29.920000pt;}
.y3e{bottom:35.520000pt;}
.y8{bottom:45.920000pt;}
.y3c{bottom:47.200000pt;}
.yc{bottom:53.760000pt;}
.y41{bottom:53.920000pt;}
.y7{bottom:59.360000pt;}
.y6{bottom:71.712000pt;}
.y5{bottom:84.032000pt;}
.y4{bottom:97.472000pt;}
.y8f{bottom:102.272000pt;}
.ya5{bottom:109.792000pt;}
.yb2{bottom:110.112000pt;}
.y3a{bottom:115.232000pt;}
.y7d{bottom:119.392000pt;}
.ya4{bottom:128.192000pt;}
.y7a{bottom:128.512000pt;}
.y8e{bottom:129.792000pt;}
.y39{bottom:130.592000pt;}
.y38{bottom:145.946667pt;}
.ya3{bottom:146.586667pt;}
.y62{bottom:146.906667pt;}
.y79{bottom:156.186667pt;}
.y8d{bottom:157.466667pt;}
.y37{bottom:161.306667pt;}
.ya2{bottom:164.986667pt;}
.yb1{bottom:165.306667pt;}
.y61{bottom:174.586667pt;}
.y36{bottom:176.666667pt;}
.ya1{bottom:183.386667pt;}
.y78{bottom:183.706667pt;}
.y8c{bottom:184.986667pt;}
.yc6{bottom:185.466667pt;}
.y35{bottom:192.026667pt;}
.yc5{bottom:199.226667pt;}
.ya0{bottom:201.786667pt;}
.y60{bottom:202.106667pt;}
.y34{bottom:207.226667pt;}
.y77{bottom:211.386667pt;}
.y8b{bottom:212.666667pt;}
.yc4{bottom:213.146667pt;}
.y9f{bottom:220.186667pt;}
.yb0{bottom:220.506667pt;}
.y33{bottom:222.586667pt;}
.yc3{bottom:226.906667pt;}
.y5f{bottom:229.786667pt;}
.y8a{bottom:231.066667pt;}
.y32{bottom:237.946667pt;}
.y9e{bottom:238.586667pt;}
.y76{bottom:238.906667pt;}
.yc2{bottom:241.466667pt;}
.y89{bottom:251.866667pt;}
.y31{bottom:253.306667pt;}
.y9d{bottom:256.986667pt;}
.y5e{bottom:257.306667pt;}
.yc1{bottom:259.866667pt;}
.y75{bottom:266.586667pt;}
.y30{bottom:269.306667pt;}
.y88{bottom:272.826667pt;}
.y9c{bottom:275.386667pt;}
.yaf{bottom:275.706667pt;}
.yc0{bottom:278.266667pt;}
.y5d{bottom:284.986667pt;}
.y87{bottom:293.626667pt;}
.y9b{bottom:293.786667pt;}
.y74{bottom:294.106667pt;}
.ybf{bottom:296.666667pt;}
.y9a{bottom:312.226667pt;}
.y5c{bottom:312.546667pt;}
.y86{bottom:314.466667pt;}
.ybe{bottom:315.106667pt;}
.y2f{bottom:317.666667pt;}
.y73{bottom:321.826667pt;}
.y99{bottom:330.626667pt;}
.yae{bottom:330.946667pt;}
.ybd{bottom:333.506667pt;}
.y85{bottom:335.426667pt;}
.y5b{bottom:340.226667pt;}
.y2e{bottom:345.346667pt;}
.y98{bottom:349.026667pt;}
.y72{bottom:349.346667pt;}
.ybc{bottom:351.906667pt;}
.y83{bottom:356.226667pt;}
.y97{bottom:367.426667pt;}
.y5a{bottom:367.746667pt;}
.ybb{bottom:370.306667pt;}
.y2d{bottom:372.866667pt;}
.y71{bottom:376.866667pt;}
.y82{bottom:377.186667pt;}
.y96{bottom:385.826667pt;}
.yad{bottom:386.146667pt;}
.yba{bottom:388.706667pt;}
.y59{bottom:395.266667pt;}
.y80{bottom:398.306667pt;}
.y2c{bottom:400.546667pt;}
.y95{bottom:404.226667pt;}
.y70{bottom:404.546667pt;}
.yb9{bottom:407.106667pt;}
.y94{bottom:422.626667pt;}
.y58{bottom:422.946667pt;}
.y2b{bottom:428.066667pt;}
.y6f{bottom:432.066667pt;}
.yb8{bottom:433.506667pt;}
.y7f{bottom:434.786667pt;}
.y93{bottom:441.026667pt;}
.yac{bottom:441.346667pt;}
.y57{bottom:450.466667pt;}
.y7e{bottom:451.746667pt;}
.yb7{bottom:451.906667pt;}
.y2a{bottom:455.746667pt;}
.y92{bottom:459.426667pt;}
.y6e{bottom:459.746667pt;}
.yb6{bottom:470.306667pt;}
.y91{bottom:477.986667pt;}
.y56{bottom:478.146667pt;}
.y29{bottom:483.266667pt;}
.y6d{bottom:487.266667pt;}
.yb5{bottom:488.706667pt;}
.y90{bottom:496.546667pt;}
.y55{bottom:505.666667pt;}
.y28{bottom:510.946667pt;}
.y6c{bottom:514.946667pt;}
.yb4{bottom:515.106667pt;}
.y54{bottom:533.346667pt;}
.y27{bottom:538.493333pt;}
.y6b{bottom:542.493333pt;}
.yab{bottom:551.773333pt;}
.y53{bottom:560.893333pt;}
.y26{bottom:566.173333pt;}
.yb3{bottom:570.013333pt;}
.y6a{bottom:570.173333pt;}
.y52{bottom:588.573333pt;}
.y25{bottom:593.693333pt;}
.y69{bottom:597.693333pt;}
.y51{bottom:606.973333pt;}
.y24{bottom:612.093333pt;}
.y7c{bottom:616.093333pt;}
.y50{bottom:625.373333pt;}
.y23{bottom:630.493333pt;}
.y4f{bottom:643.773333pt;}
.y68{bottom:652.893333pt;}
.y22{bottom:658.173333pt;}
.y4e{bottom:662.173333pt;}
.y7b{bottom:671.293333pt;}
.y21{bottom:676.573333pt;}
.y4d{bottom:680.573333pt;}
.y20{bottom:694.973333pt;}
.y4c{bottom:698.973333pt;}
.y67{bottom:708.093333pt;}
.y1e{bottom:713.373333pt;}
.yaa{bottom:717.373333pt;}
.y1f{bottom:718.653333pt;}
.y4b{bottom:726.493333pt;}
.y66{bottom:735.773333pt;}
.y1c{bottom:739.613333pt;}
.y1d{bottom:744.893333pt;}
.y4a{bottom:754.173333pt;}
.y65{bottom:763.293333pt;}
.y1a{bottom:766.013333pt;}
.y1b{bottom:771.293333pt;}
.ya9{bottom:772.573333pt;}
.y49{bottom:781.733333pt;}
.ya8{bottom:791.013333pt;}
.y19{bottom:792.453333pt;}
.y64{bottom:800.133333pt;}
.y48{bottom:809.413333pt;}
.y18{bottom:810.853333pt;}
.y63{bottom:818.533333pt;}
.ya7{bottom:827.813333pt;}
.y17{bottom:829.253333pt;}
.y47{bottom:836.933333pt;}
.ya6{bottom:846.213333pt;}
.y16{bottom:847.653333pt;}
.y46{bottom:864.613333pt;}
.y15{bottom:865.893333pt;}
.y14{bottom:883.013333pt;}
.y45{bottom:892.133333pt;}
.y13{bottom:901.413333pt;}
.y12{bottom:919.813333pt;}
.y11{bottom:938.213333pt;}
.y44{bottom:947.333333pt;}
.y10{bottom:956.613333pt;}
.yf{bottom:975.013333pt;}
.y3{bottom:1034.720000pt;}
.ya{bottom:1044.320000pt;}
.y2{bottom:1050.080000pt;}
.y3b{bottom:1063.520000pt;}
.y1{bottom:1066.080000pt;}
.h14{height:10.432000pt;}
.h9{height:13.792000pt;}
.h15{height:16.800000pt;}
.h18{height:16.832000pt;}
.h17{height:16.960000pt;}
.h8{height:18.240000pt;}
.ha{height:33.277500pt;}
.h13{height:33.632000pt;}
.h11{height:37.090625pt;}
.h4{height:38.797187pt;}
.h5{height:40.448625pt;}
.h1b{height:43.031250pt;}
.h6{height:43.429688pt;}
.h2{height:44.687500pt;}
.h10{height:47.621250pt;}
.h3{height:48.062188pt;}
.hc{height:52.641250pt;}
.h7{height:52.785000pt;}
.h16{height:53.273750pt;}
.hd{height:57.218750pt;}
.hf{height:57.375000pt;}
.hb{height:57.906250pt;}
.h19{height:58.062500pt;}
.he{height:59.917188pt;}
.h1a{height:63.656250pt;}
.h12{height:67.750312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:15.840000pt;}
.w6{width:82.426667pt;}
.wa{width:120.032000pt;}
.w9{width:183.066667pt;}
.w8{width:290.426667pt;}
.w4{width:338.146667pt;}
.w7{width:343.426667pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:0.960000pt;}
.xb{left:9.600000pt;}
.xa{left:12.000000pt;}
.x1d{left:19.360000pt;}
.x24{left:37.160000pt;}
.x25{left:45.320000pt;}
.x23{left:83.706667pt;}
.x26{left:91.866667pt;}
.xc{left:96.031988pt;}
.x1f{left:98.112000pt;}
.xf{left:103.391988pt;}
.x29{left:114.751988pt;}
.xd{left:135.066655pt;}
.x1e{left:143.226655pt;}
.x18{left:188.986655pt;}
.xe{left:197.786655pt;}
.x10{left:238.586655pt;}
.x1{left:288.066655pt;}
.x6{left:368.866655pt;}
.x19{left:379.746655pt;}
.x21{left:390.626667pt;}
.x4{left:396.866655pt;}
.x27{left:444.093322pt;}
.x28{left:448.733322pt;}
.x7{left:465.373322pt;}
.x1a{left:466.813322pt;}
.x17{left:471.453322pt;}
.x12{left:476.093322pt;}
.x8{left:519.613322pt;}
.x14{left:523.933322pt;}
.x5{left:531.613322pt;}
.x2{left:564.413322pt;}
.x22{left:575.773333pt;}
.x15{left:655.013310pt;}
.x13{left:657.893310pt;}
.x16{left:660.933322pt;}
.x9{left:664.453333pt;}
.x1b{left:673.893322pt;}
.x3{left:689.893322pt;}
.x11{left:697.893322pt;}
.x1c{left:711.333333pt;}
}




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