
    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_b2446b9e740a1514f7bd1a4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0633e5fc5dfd70459513a165.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_14aecb56d2c605ef2722815e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_525d7fa9f48952ab2beeadd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125000;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_fe1192503074cffbfe1c4f3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.156738;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_d3b189c90b79fa663ee3a64c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_ccf9dcc3e2c7d57c3c513efd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_62002f77d3cc545263f50bcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_3d9ee8774952ce9f486ee524.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.988000px;}
.ls1f{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.106800px;}
.ls23{letter-spacing:-0.097800px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.ls1d{letter-spacing:0.033840px;}
.ls0{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.299520px;}
.ls14{letter-spacing:0.305280px;}
.ls2d{letter-spacing:0.613440px;}
.ls2a{letter-spacing:0.666720px;}
.lsd{letter-spacing:1.025280px;}
.ls2c{letter-spacing:2.106720px;}
.ls21{letter-spacing:3.185280px;}
.ls1a{letter-spacing:5.345280px;}
.ls9{letter-spacing:6.785280px;}
.ls3{letter-spacing:7.866720px;}
.ls17{letter-spacing:10.385280px;}
.ls20{letter-spacing:11.105280px;}
.ls1c{letter-spacing:12.545280px;}
.ls2b{letter-spacing:14.346720px;}
.ls11{letter-spacing:16.145280px;}
.ls10{letter-spacing:16.865280px;}
.lsa{letter-spacing:19.025280px;}
.ls18{letter-spacing:24.785280px;}
.ls26{letter-spacing:26.225280px;}
.ls25{letter-spacing:29.105280px;}
.lsc{letter-spacing:30.545280px;}
.ls16{letter-spacing:32.705280px;}
.ls15{letter-spacing:33.425280px;}
.ls27{letter-spacing:34.145280px;}
.ls29{letter-spacing:35.946720px;}
.lse{letter-spacing:37.745280px;}
.ls1e{letter-spacing:38.106720px;}
.ls22{letter-spacing:38.826720px;}
.ls19{letter-spacing:44.225280px;}
.ls13{letter-spacing:52.865280px;}
.ls7{letter-spacing:62.225280px;}
.ls1b{letter-spacing:65.105280px;}
.lsf{letter-spacing:83.105280px;}
.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;}
}
.ws6{word-spacing:-18.676920px;}
.ws5{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.316920px;}
.ws7{word-spacing:-17.586720px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws1{word-spacing:-15.812640px;}
.ws9{word-spacing:-15.012000px;}
.ws3{word-spacing:-13.625280px;}
.ws4{word-spacing:0.000000px;}
._27{margin-left:-5.117280px;}
._11{margin-left:-3.645360px;}
._c{margin-left:-2.509920px;}
._0{margin-left:-1.008000px;}
._1{width:1.088400px;}
._e{width:2.339520px;}
._d{width:3.406320px;}
._5{width:5.258880px;}
._6{width:6.274800px;}
._8{width:7.935360px;}
._7{width:9.224640px;}
._4{width:10.697040px;}
._20{width:11.856960px;}
._3{width:13.049280px;}
._2{width:14.116080px;}
._17{width:15.207600px;}
._1e{width:16.574400px;}
._f{width:18.609600px;}
._22{width:19.798560px;}
._31{width:21.643200px;}
._b{width:22.649040px;}
._18{width:24.159120px;}
._1a{width:25.797600px;}
._a{width:26.892000px;}
._9{width:28.146960px;}
._41{width:29.155440px;}
._2a{width:30.205440px;}
._29{width:31.596480px;}
._2b{width:33.001920px;}
._15{width:34.716960px;}
._14{width:36.108000px;}
._10{width:37.425600px;}
._3c{width:38.480160px;}
._16{width:39.677760px;}
._23{width:40.759200px;}
._34{width:41.915520px;}
._1f{width:42.989760px;}
._35{width:44.395200px;}
._32{width:46.434240px;}
._3a{width:47.574720px;}
._3f{width:49.114080px;}
._36{width:50.238720px;}
._1d{width:51.792720px;}
._1c{width:52.925760px;}
._39{width:53.948160px;}
._19{width:55.906560px;}
._26{width:57.775680px;}
._25{width:59.388480px;}
._24{width:60.491520px;}
._12{width:61.868160px;}
._13{width:63.503520px;}
._38{width:64.685280px;}
._37{width:65.835360px;}
._3e{width:66.968640px;}
._30{width:68.094720px;}
._28{width:69.750720px;}
._3d{width:77.924640px;}
._3b{width:78.990000px;}
._2d{width:80.614080px;}
._2c{width:82.590240px;}
._40{width:83.849280px;}
._1b{width:88.179840px;}
._2f{width:89.452800px;}
._2e{width:90.682560px;}
._33{width:94.590720px;}
._21{width:99.227520px;}
._42{width:847.920000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y76{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.y7f{bottom:11.880000px;}
.y80{bottom:20.340000px;}
.y7a{bottom:20.520000px;}
.y2{bottom:22.500000px;}
.y81{bottom:28.980000px;}
.y78{bottom:29.160000px;}
.y84{bottom:29.205000px;}
.y82{bottom:37.620000px;}
.y79{bottom:37.800000px;}
.y85{bottom:37.845000px;}
.y1{bottom:41.040000px;}
.y7d{bottom:54.900000px;}
.y7b{bottom:55.080000px;}
.y2a{bottom:109.476000px;}
.y8a{bottom:114.336000px;}
.y91{bottom:117.576000px;}
.y4f{bottom:122.076000px;}
.y71{bottom:122.976000px;}
.y29{bottom:126.576000px;}
.y89{bottom:133.236000px;}
.y90{bottom:136.656000px;}
.y4e{bottom:140.976000px;}
.y70{bottom:141.876000px;}
.y28{bottom:143.856000px;}
.y27{bottom:148.356000px;}
.y88{bottom:152.310000px;}
.y8f{bottom:155.550000px;}
.y4d{bottom:159.870000px;}
.y6f{bottom:160.950000px;}
.ya7{bottom:161.490000px;}
.y26{bottom:161.850000px;}
.y87{bottom:171.210000px;}
.ya6{bottom:178.590000px;}
.y4c{bottom:178.950000px;}
.y6e{bottom:179.850000px;}
.y25{bottom:182.550000px;}
.y8e{bottom:183.630000px;}
.y86{bottom:189.930000px;}
.ya5{bottom:195.870000px;}
.y4b{bottom:197.850000px;}
.y6d{bottom:198.930000px;}
.y8d{bottom:199.110000px;}
.y24{bottom:201.630000px;}
.y83{bottom:204.690000px;}
.ya4{bottom:213.150000px;}
.y4a{bottom:216.930000px;}
.y6c{bottom:217.830000px;}
.y23{bottom:229.530000px;}
.ya3{bottom:230.430000px;}
.y49{bottom:235.875000px;}
.y6b{bottom:236.955000px;}
.ya2{bottom:247.755000px;}
.y48{bottom:254.955000px;}
.y6a{bottom:255.855000px;}
.y22{bottom:257.295000px;}
.y73{bottom:264.855000px;}
.ya1{bottom:265.035000px;}
.y47{bottom:273.855000px;}
.y21{bottom:274.575000px;}
.y69{bottom:274.755000px;}
.ya0{bottom:282.135000px;}
.y20{bottom:291.855000px;}
.y46{bottom:292.755000px;}
.y68{bottom:293.835000px;}
.y9f{bottom:299.415000px;}
.y7e{bottom:309.675000px;}
.y45{bottom:311.835000px;}
.y67{bottom:312.735000px;}
.y9e{bottom:316.695000px;}
.y1f{bottom:326.955000px;}
.y44{bottom:330.735000px;}
.y66{bottom:331.815000px;}
.y9d{bottom:333.975000px;}
.y1e{bottom:344.235000px;}
.y43{bottom:349.815000px;}
.y65{bottom:350.715000px;}
.y9c{bottom:351.255000px;}
.y1d{bottom:361.515000px;}
.y7c{bottom:362.235000px;}
.y9b{bottom:368.535000px;}
.y42{bottom:368.715000px;}
.y64{bottom:369.615000px;}
.y1c{bottom:378.795000px;}
.y9a{bottom:385.635000px;}
.y41{bottom:387.615000px;}
.y63{bottom:388.695000px;}
.y1b{bottom:396.075000px;}
.y99{bottom:402.915000px;}
.y40{bottom:406.695000px;}
.y62{bottom:407.595000px;}
.y1a{bottom:413.355000px;}
.y98{bottom:420.195000px;}
.y3f{bottom:425.625000px;}
.y61{bottom:426.705000px;}
.y19{bottom:430.665000px;}
.y77{bottom:431.925000px;}
.y72{bottom:435.705000px;}
.y97{bottom:437.505000px;}
.y3e{bottom:444.705000px;}
.y60{bottom:445.605000px;}
.y18{bottom:447.765000px;}
.y96{bottom:454.785000px;}
.y3d{bottom:463.605000px;}
.y5f{bottom:464.505000px;}
.y17{bottom:465.045000px;}
.y95{bottom:471.885000px;}
.y16{bottom:482.325000px;}
.y3c{bottom:482.505000px;}
.y5e{bottom:483.585000px;}
.y94{bottom:489.165000px;}
.y15{bottom:499.605000px;}
.y3b{bottom:501.585000px;}
.y75{bottom:501.765000px;}
.y5d{bottom:502.485000px;}
.y93{bottom:506.805000px;}
.y14{bottom:516.885000px;}
.y3a{bottom:520.485000px;}
.y5c{bottom:521.565000px;}
.y92{bottom:524.805000px;}
.y74{bottom:532.005000px;}
.y13{bottom:533.985000px;}
.y39{bottom:539.565000px;}
.y5b{bottom:540.465000px;}
.y12{bottom:551.265000px;}
.y38{bottom:558.465000px;}
.y5a{bottom:559.365000px;}
.y11{bottom:568.545000px;}
.y8c{bottom:571.605000px;}
.y37{bottom:577.365000px;}
.y59{bottom:578.445000px;}
.y10{bottom:586.365000px;}
.y8b{bottom:588.885000px;}
.y36{bottom:596.445000px;}
.y58{bottom:597.345000px;}
.yf{bottom:606.525000px;}
.y35{bottom:615.390000px;}
.y57{bottom:616.470000px;}
.ye{bottom:624.390000px;}
.y34{bottom:634.470000px;}
.y56{bottom:635.370000px;}
.yd{bottom:645.090000px;}
.y33{bottom:653.370000px;}
.y55{bottom:654.270000px;}
.yc{bottom:665.790000px;}
.y32{bottom:672.270000px;}
.y54{bottom:673.350000px;}
.yb{bottom:685.950000px;}
.y31{bottom:691.350000px;}
.y53{bottom:692.250000px;}
.ya{bottom:703.770000px;}
.y30{bottom:710.250000px;}
.y52{bottom:711.330000px;}
.y9{bottom:723.930000px;}
.y2f{bottom:729.330000px;}
.y51{bottom:739.230000px;}
.y7{bottom:741.570000px;}
.y8{bottom:747.510000px;}
.y2e{bottom:748.230000px;}
.y50{bottom:758.310000px;}
.y6{bottom:762.270000px;}
.y2d{bottom:767.310000px;}
.y5{bottom:782.970000px;}
.y2c{bottom:786.210000px;}
.y4{bottom:803.700000px;}
.y2b{bottom:805.140000px;}
.h10{height:17.280000px;}
.he{height:34.874297px;}
.h7{height:41.726953px;}
.h16{height:43.269961px;}
.h6{height:43.905937px;}
.ha{height:44.090508px;}
.h9{height:45.549492px;}
.h3{height:46.251562px;}
.hd{height:50.273438px;}
.h14{height:51.660000px;}
.h15{height:51.696000px;}
.h13{height:51.840000px;}
.h2{height:53.603086px;}
.hf{height:54.390938px;}
.hc{height:59.415469px;}
.hb{height:60.288750px;}
.h8{height:64.582031px;}
.h4{height:65.531250px;}
.h12{height:68.976000px;}
.h11{height:69.120000px;}
.h17{height:75.560977px;}
.h5{height:80.703984px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:28.260000px;}
.w5{width:116.316000px;}
.w6{width:126.576000px;}
.w7{width:222.870000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x22{left:1.980000px;}
.x14{left:6.120000px;}
.x16{left:7.920000px;}
.x1b{left:9.900000px;}
.x1f{left:12.060000px;}
.x20{left:14.400000px;}
.x1c{left:16.740000px;}
.x18{left:18.180000px;}
.x1e{left:20.520000px;}
.x26{left:23.040000px;}
.x24{left:27.000000px;}
.x1d{left:28.800000px;}
.x25{left:30.780000px;}
.x23{left:32.040000px;}
.x21{left:34.740000px;}
.x27{left:39.060000px;}
.x1a{left:49.860000px;}
.x13{left:73.476000px;}
.x2{left:80.855991px;}
.x3{left:83.735991px;}
.xf{left:86.255991px;}
.xb{left:89.675991px;}
.x5{left:91.655991px;}
.xa{left:93.635991px;}
.x15{left:102.456000px;}
.x2b{left:106.415991px;}
.x10{left:107.855991px;}
.x28{left:112.175991px;}
.x4{left:114.155991px;}
.x29{left:115.775991px;}
.xd{left:123.335991px;}
.x11{left:134.855991px;}
.xc{left:189.749991px;}
.x12{left:199.109991px;}
.x6{left:200.234991px;}
.x17{left:219.495000px;}
.x9{left:239.474991px;}
.xe{left:296.894991px;}
.x1{left:306.434991px;}
.x19{left:346.785000px;}
.x7{left:422.564981px;}
.x8{left:429.224991px;}
.x2a{left:562.469991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.656000pt;}
.ls1f{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls23{letter-spacing:-0.086933pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.ls1d{letter-spacing:0.030080pt;}
.ls0{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266240pt;}
.ls14{letter-spacing:0.271360pt;}
.ls2d{letter-spacing:0.545280pt;}
.ls2a{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.911360pt;}
.ls2c{letter-spacing:1.872640pt;}
.ls21{letter-spacing:2.831360pt;}
.ls1a{letter-spacing:4.751360pt;}
.ls9{letter-spacing:6.031360pt;}
.ls3{letter-spacing:6.992640pt;}
.ls17{letter-spacing:9.231360pt;}
.ls20{letter-spacing:9.871360pt;}
.ls1c{letter-spacing:11.151360pt;}
.ls2b{letter-spacing:12.752640pt;}
.ls11{letter-spacing:14.351360pt;}
.ls10{letter-spacing:14.991360pt;}
.lsa{letter-spacing:16.911360pt;}
.ls18{letter-spacing:22.031360pt;}
.ls26{letter-spacing:23.311360pt;}
.ls25{letter-spacing:25.871360pt;}
.lsc{letter-spacing:27.151360pt;}
.ls16{letter-spacing:29.071360pt;}
.ls15{letter-spacing:29.711360pt;}
.ls27{letter-spacing:30.351360pt;}
.ls29{letter-spacing:31.952640pt;}
.lse{letter-spacing:33.551360pt;}
.ls1e{letter-spacing:33.872640pt;}
.ls22{letter-spacing:34.512640pt;}
.ls19{letter-spacing:39.311360pt;}
.ls13{letter-spacing:46.991360pt;}
.ls7{letter-spacing:55.311360pt;}
.ls1b{letter-spacing:57.871360pt;}
.lsf{letter-spacing:73.871360pt;}
.ws6{word-spacing:-16.601707pt;}
.ws5{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.281707pt;}
.ws7{word-spacing:-15.632640pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws1{word-spacing:-14.055680pt;}
.ws9{word-spacing:-13.344000pt;}
.ws3{word-spacing:-12.111360pt;}
.ws4{word-spacing:0.000000pt;}
._27{margin-left:-4.548693pt;}
._11{margin-left:-3.240320pt;}
._c{margin-left:-2.231040pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.967467pt;}
._e{width:2.079573pt;}
._d{width:3.027840pt;}
._5{width:4.674560pt;}
._6{width:5.577600pt;}
._8{width:7.053653pt;}
._7{width:8.199680pt;}
._4{width:9.508480pt;}
._20{width:10.539520pt;}
._3{width:11.599360pt;}
._2{width:12.547627pt;}
._17{width:13.517867pt;}
._1e{width:14.732800pt;}
._f{width:16.541867pt;}
._22{width:17.598720pt;}
._31{width:19.238400pt;}
._b{width:20.132480pt;}
._18{width:21.474773pt;}
._1a{width:22.931200pt;}
._a{width:23.904000pt;}
._9{width:25.019520pt;}
._41{width:25.915947pt;}
._2a{width:26.849280pt;}
._29{width:28.085760pt;}
._2b{width:29.335040pt;}
._15{width:30.859520pt;}
._14{width:32.096000pt;}
._10{width:33.267200pt;}
._3c{width:34.204587pt;}
._16{width:35.269120pt;}
._23{width:36.230400pt;}
._34{width:37.258240pt;}
._1f{width:38.213120pt;}
._35{width:39.462400pt;}
._32{width:41.274880pt;}
._3a{width:42.288640pt;}
._3f{width:43.656960pt;}
._36{width:44.656640pt;}
._1d{width:46.037973pt;}
._1c{width:47.045120pt;}
._39{width:47.953920pt;}
._19{width:49.694720pt;}
._26{width:51.356160pt;}
._25{width:52.789760pt;}
._24{width:53.770240pt;}
._12{width:54.993920pt;}
._13{width:56.447573pt;}
._38{width:57.498027pt;}
._37{width:58.520320pt;}
._3e{width:59.527680pt;}
._30{width:60.528640pt;}
._28{width:62.000640pt;}
._3d{width:69.266347pt;}
._3b{width:70.213333pt;}
._2d{width:71.656960pt;}
._2c{width:73.413547pt;}
._40{width:74.532693pt;}
._1b{width:78.382080pt;}
._2f{width:79.513600pt;}
._2e{width:80.606720pt;}
._33{width:84.080640pt;}
._21{width:88.202240pt;}
._42{width:753.706667pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.y7f{bottom:10.560000pt;}
.y80{bottom:18.080000pt;}
.y7a{bottom:18.240000pt;}
.y2{bottom:20.000000pt;}
.y81{bottom:25.760000pt;}
.y78{bottom:25.920000pt;}
.y84{bottom:25.960000pt;}
.y82{bottom:33.440000pt;}
.y79{bottom:33.600000pt;}
.y85{bottom:33.640000pt;}
.y1{bottom:36.480000pt;}
.y7d{bottom:48.800000pt;}
.y7b{bottom:48.960000pt;}
.y2a{bottom:97.312000pt;}
.y8a{bottom:101.632000pt;}
.y91{bottom:104.512000pt;}
.y4f{bottom:108.512000pt;}
.y71{bottom:109.312000pt;}
.y29{bottom:112.512000pt;}
.y89{bottom:118.432000pt;}
.y90{bottom:121.472000pt;}
.y4e{bottom:125.312000pt;}
.y70{bottom:126.112000pt;}
.y28{bottom:127.872000pt;}
.y27{bottom:131.872000pt;}
.y88{bottom:135.386667pt;}
.y8f{bottom:138.266667pt;}
.y4d{bottom:142.106667pt;}
.y6f{bottom:143.066667pt;}
.ya7{bottom:143.546667pt;}
.y26{bottom:143.866667pt;}
.y87{bottom:152.186667pt;}
.ya6{bottom:158.746667pt;}
.y4c{bottom:159.066667pt;}
.y6e{bottom:159.866667pt;}
.y25{bottom:162.266667pt;}
.y8e{bottom:163.226667pt;}
.y86{bottom:168.826667pt;}
.ya5{bottom:174.106667pt;}
.y4b{bottom:175.866667pt;}
.y6d{bottom:176.826667pt;}
.y8d{bottom:176.986667pt;}
.y24{bottom:179.226667pt;}
.y83{bottom:181.946667pt;}
.ya4{bottom:189.466667pt;}
.y4a{bottom:192.826667pt;}
.y6c{bottom:193.626667pt;}
.y23{bottom:204.026667pt;}
.ya3{bottom:204.826667pt;}
.y49{bottom:209.666667pt;}
.y6b{bottom:210.626667pt;}
.ya2{bottom:220.226667pt;}
.y48{bottom:226.626667pt;}
.y6a{bottom:227.426667pt;}
.y22{bottom:228.706667pt;}
.y73{bottom:235.426667pt;}
.ya1{bottom:235.586667pt;}
.y47{bottom:243.426667pt;}
.y21{bottom:244.066667pt;}
.y69{bottom:244.226667pt;}
.ya0{bottom:250.786667pt;}
.y20{bottom:259.426667pt;}
.y46{bottom:260.226667pt;}
.y68{bottom:261.186667pt;}
.y9f{bottom:266.146667pt;}
.y7e{bottom:275.266667pt;}
.y45{bottom:277.186667pt;}
.y67{bottom:277.986667pt;}
.y9e{bottom:281.506667pt;}
.y1f{bottom:290.626667pt;}
.y44{bottom:293.986667pt;}
.y66{bottom:294.946667pt;}
.y9d{bottom:296.866667pt;}
.y1e{bottom:305.986667pt;}
.y43{bottom:310.946667pt;}
.y65{bottom:311.746667pt;}
.y9c{bottom:312.226667pt;}
.y1d{bottom:321.346667pt;}
.y7c{bottom:321.986667pt;}
.y9b{bottom:327.586667pt;}
.y42{bottom:327.746667pt;}
.y64{bottom:328.546667pt;}
.y1c{bottom:336.706667pt;}
.y9a{bottom:342.786667pt;}
.y41{bottom:344.546667pt;}
.y63{bottom:345.506667pt;}
.y1b{bottom:352.066667pt;}
.y99{bottom:358.146667pt;}
.y40{bottom:361.506667pt;}
.y62{bottom:362.306667pt;}
.y1a{bottom:367.426667pt;}
.y98{bottom:373.506667pt;}
.y3f{bottom:378.333333pt;}
.y61{bottom:379.293333pt;}
.y19{bottom:382.813333pt;}
.y77{bottom:383.933333pt;}
.y72{bottom:387.293333pt;}
.y97{bottom:388.893333pt;}
.y3e{bottom:395.293333pt;}
.y60{bottom:396.093333pt;}
.y18{bottom:398.013333pt;}
.y96{bottom:404.253333pt;}
.y3d{bottom:412.093333pt;}
.y5f{bottom:412.893333pt;}
.y17{bottom:413.373333pt;}
.y95{bottom:419.453333pt;}
.y16{bottom:428.733333pt;}
.y3c{bottom:428.893333pt;}
.y5e{bottom:429.853333pt;}
.y94{bottom:434.813333pt;}
.y15{bottom:444.093333pt;}
.y3b{bottom:445.853333pt;}
.y75{bottom:446.013333pt;}
.y5d{bottom:446.653333pt;}
.y93{bottom:450.493333pt;}
.y14{bottom:459.453333pt;}
.y3a{bottom:462.653333pt;}
.y5c{bottom:463.613333pt;}
.y92{bottom:466.493333pt;}
.y74{bottom:472.893333pt;}
.y13{bottom:474.653333pt;}
.y39{bottom:479.613333pt;}
.y5b{bottom:480.413333pt;}
.y12{bottom:490.013333pt;}
.y38{bottom:496.413333pt;}
.y5a{bottom:497.213333pt;}
.y11{bottom:505.373333pt;}
.y8c{bottom:508.093333pt;}
.y37{bottom:513.213333pt;}
.y59{bottom:514.173333pt;}
.y10{bottom:521.213333pt;}
.y8b{bottom:523.453333pt;}
.y36{bottom:530.173333pt;}
.y58{bottom:530.973333pt;}
.yf{bottom:539.133333pt;}
.y35{bottom:547.013333pt;}
.y57{bottom:547.973333pt;}
.ye{bottom:555.013333pt;}
.y34{bottom:563.973333pt;}
.y56{bottom:564.773333pt;}
.yd{bottom:573.413333pt;}
.y33{bottom:580.773333pt;}
.y55{bottom:581.573333pt;}
.yc{bottom:591.813333pt;}
.y32{bottom:597.573333pt;}
.y54{bottom:598.533333pt;}
.yb{bottom:609.733333pt;}
.y31{bottom:614.533333pt;}
.y53{bottom:615.333333pt;}
.ya{bottom:625.573333pt;}
.y30{bottom:631.333333pt;}
.y52{bottom:632.293333pt;}
.y9{bottom:643.493333pt;}
.y2f{bottom:648.293333pt;}
.y51{bottom:657.093333pt;}
.y7{bottom:659.173333pt;}
.y8{bottom:664.453333pt;}
.y2e{bottom:665.093333pt;}
.y50{bottom:674.053333pt;}
.y6{bottom:677.573333pt;}
.y2d{bottom:682.053333pt;}
.y5{bottom:695.973333pt;}
.y2c{bottom:698.853333pt;}
.y4{bottom:714.400000pt;}
.y2b{bottom:715.680000pt;}
.h10{height:15.360000pt;}
.he{height:30.999375pt;}
.h7{height:37.090625pt;}
.h16{height:38.462187pt;}
.h6{height:39.027500pt;}
.ha{height:39.191562pt;}
.h9{height:40.488438pt;}
.h3{height:41.112500pt;}
.hd{height:44.687500pt;}
.h14{height:45.920000pt;}
.h15{height:45.952000pt;}
.h13{height:46.080000pt;}
.h2{height:47.647188pt;}
.hf{height:48.347500pt;}
.hc{height:52.813750pt;}
.hb{height:53.590000pt;}
.h8{height:57.406250pt;}
.h4{height:58.250000pt;}
.h12{height:61.312000pt;}
.h11{height:61.440000pt;}
.h17{height:67.165312pt;}
.h5{height:71.736875pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:25.120000pt;}
.w5{width:103.392000pt;}
.w6{width:112.512000pt;}
.w7{width:198.106667pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x22{left:1.760000pt;}
.x14{left:5.440000pt;}
.x16{left:7.040000pt;}
.x1b{left:8.800000pt;}
.x1f{left:10.720000pt;}
.x20{left:12.800000pt;}
.x1c{left:14.880000pt;}
.x18{left:16.160000pt;}
.x1e{left:18.240000pt;}
.x26{left:20.480000pt;}
.x24{left:24.000000pt;}
.x1d{left:25.600000pt;}
.x25{left:27.360000pt;}
.x23{left:28.480000pt;}
.x21{left:30.880000pt;}
.x27{left:34.720000pt;}
.x1a{left:44.320000pt;}
.x13{left:65.312000pt;}
.x2{left:71.871992pt;}
.x3{left:74.431992pt;}
.xf{left:76.671992pt;}
.xb{left:79.711992pt;}
.x5{left:81.471992pt;}
.xa{left:83.231992pt;}
.x15{left:91.072000pt;}
.x2b{left:94.591992pt;}
.x10{left:95.871992pt;}
.x28{left:99.711992pt;}
.x4{left:101.471992pt;}
.x29{left:102.911992pt;}
.xd{left:109.631992pt;}
.x11{left:119.871992pt;}
.xc{left:168.666658pt;}
.x12{left:176.986658pt;}
.x6{left:177.986658pt;}
.x17{left:195.106667pt;}
.x9{left:212.866658pt;}
.xe{left:263.906658pt;}
.x1{left:272.386658pt;}
.x19{left:308.253333pt;}
.x7{left:375.613317pt;}
.x8{left:381.533325pt;}
.x2a{left:499.973325pt;}
}




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