
    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_56cd1bd61b5ec3ac91f568a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_02fa763315cc64c2459433e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_d902e4285602bffbd2671efd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_971b33174616920384341b5e.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_6d7208b84477adb74760607a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_301676c4df16f101a9031986.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ede5df1d9d33d7d65e0d3298.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2a3ef0a706704082d31eee3b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_328b46e072f9e2efbbc23031.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_685021dee0dd0e82da8e4d33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7fde014fc066ab96e736baf4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2b9cb39b4d733fb83b548021.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b7ee97decc56e56ca059fc30.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.201172;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:ffe;src:url('chunks/assets/font_404f53fb120b4cceea5833b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:30.240000px;}
.ls4{letter-spacing:-2.622000px;}
.ls19{letter-spacing:-0.684000px;}
.ls5{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.130800px;}
.ls13{letter-spacing:-0.115800px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.lsf{letter-spacing:0.245520px;}
.ls15{letter-spacing:0.252720px;}
.ls10{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.341400px;}
.ls11{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.369360px;}
.ls1d{letter-spacing:0.378600px;}
.lse{letter-spacing:0.473760px;}
.lsd{letter-spacing:0.900000px;}
.ls1b{letter-spacing:3.420000px;}
.ls17{letter-spacing:4.860000px;}
.lsa{letter-spacing:5.580000px;}
.ls6{letter-spacing:6.300000px;}
.ls7{letter-spacing:16.380000px;}
.ls9{letter-spacing:29.340000px;}
.ls1{letter-spacing:53.100000px;}
.ls8{letter-spacing:74.700000px;}
.ls1c{letter-spacing:169.541280px;}
.ls16{letter-spacing:211.301280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-21.438600px;}
.ws6{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws1{word-spacing:-19.800000px;}
.ws0{word-spacing:-19.620000px;}
.ws2{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.809200px;}
.ws7{word-spacing:-13.505760px;}
.ws3{word-spacing:-12.348240px;}
.ws5{word-spacing:0.000000px;}
._20{margin-left:-6.402240px;}
._7{margin-left:-5.196240px;}
._15{margin-left:-4.185360px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.121760px;}
._2{width:1.614480px;}
._e{width:3.558240px;}
._3{width:4.717440px;}
._4{width:5.754960px;}
._14{width:7.120560px;}
._5{width:8.253600px;}
._b{width:10.055040px;}
._13{width:11.847360px;}
._d{width:13.141440px;}
._8{width:14.994720px;}
._9{width:16.324320px;}
._6{width:17.437680px;}
._1f{width:18.590160px;}
._1e{width:19.980480px;}
._36{width:22.141200px;}
._22{width:23.183280px;}
._10{width:25.019280px;}
._f{width:26.114400px;}
._12{width:28.584000px;}
._c{width:30.452400px;}
._1c{width:32.459040px;}
._1d{width:34.010640px;}
._25{width:35.238960px;}
._17{width:36.839520px;}
._18{width:38.536080px;}
._39{width:39.598560px;}
._3a{width:41.348640px;}
._23{width:42.493680px;}
._37{width:43.696560px;}
._28{width:46.611360px;}
._24{width:48.717360px;}
._11{width:50.149440px;}
._16{width:52.313040px;}
._31{width:58.883760px;}
._a{width:60.716880px;}
._2f{width:65.396880px;}
._2d{width:66.518640px;}
._35{width:70.872480px;}
._1b{width:75.226320px;}
._38{width:80.523360px;}
._2c{width:83.818800px;}
._19{width:91.905840px;}
._1a{width:93.027600px;}
._21{width:94.357920px;}
._3b{width:96.312960px;}
._33{width:98.897760px;}
._26{width:102.520080px;}
._2a{width:105.215760px;}
._2b{width:106.784640px;}
._30{width:108.780480px;}
._2e{width:110.354400px;}
._34{width:137.027520px;}
._27{width:138.421440px;}
._29{width:143.208000px;}
._32{width:195.490080px;}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y67{bottom:8.100000px;}
.y6d{bottom:8.145000px;}
.y62{bottom:8.280000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y74{bottom:35.820000px;}
.y6c{bottom:35.865000px;}
.y66{bottom:36.000000px;}
.y7f{bottom:36.045000px;}
.y7a{bottom:39.060000px;}
.y5b{bottom:39.780000px;}
.y79{bottom:44.280000px;}
.y5a{bottom:45.000000px;}
.y94{bottom:46.980000px;}
.y78{bottom:57.060000px;}
.y59{bottom:58.140000px;}
.y77{bottom:62.280000px;}
.y58{bottom:63.360000px;}
.y7c{bottom:63.540000px;}
.y73{bottom:63.570000px;}
.y6b{bottom:63.585000px;}
.y65{bottom:63.720000px;}
.y82{bottom:63.750000px;}
.y7e{bottom:63.765000px;}
.y2{bottom:72.720000px;}
.y93{bottom:74.880000px;}
.y76{bottom:75.060000px;}
.y57{bottom:76.500000px;}
.y56{bottom:81.720000px;}
.y64{bottom:91.440000px;}
.y72{bottom:91.470000px;}
.y6a{bottom:91.485000px;}
.y86{bottom:91.620000px;}
.y55{bottom:94.860000px;}
.y54{bottom:100.080000px;}
.y2e{bottom:100.260000px;}
.y92{bottom:102.600000px;}
.y75{bottom:108.000000px;}
.y53{bottom:112.320000px;}
.y52{bottom:117.540000px;}
.y6f{bottom:119.160000px;}
.y71{bottom:119.190000px;}
.y69{bottom:119.205000px;}
.y85{bottom:119.340000px;}
.y2d{bottom:128.160000px;}
.y51{bottom:129.600000px;}
.y91{bottom:130.320000px;}
.y50{bottom:134.820000px;}
.y4f{bottom:146.880000px;}
.y84{bottom:147.060000px;}
.y4e{bottom:152.100000px;}
.y2c{bottom:155.700000px;}
.y90{bottom:158.040000px;}
.y70{bottom:164.340000px;}
.y4d{bottom:164.520000px;}
.y8f{bottom:185.940000px;}
.y2b{bottom:204.660000px;}
.y8e{bottom:213.690000px;}
.y2a{bottom:232.410000px;}
.y8d{bottom:241.410000px;}
.y4b{bottom:245.190000px;}
.y4c{bottom:252.750000px;}
.y29{bottom:260.130000px;}
.y4a{bottom:273.090000px;}
.y28{bottom:288.030000px;}
.y8c{bottom:290.190000px;}
.y49{bottom:300.810000px;}
.y6e{bottom:303.870000px;}
.y27{bottom:315.750000px;}
.y8b{bottom:317.910000px;}
.y26{bottom:343.470000px;}
.y8a{bottom:345.810000px;}
.y47{bottom:349.590000px;}
.y48{bottom:357.150000px;}
.y25{bottom:371.190000px;}
.y89{bottom:373.530000px;}
.y46{bottom:377.310000px;}
.y24{bottom:399.090000px;}
.y88{bottom:401.250000px;}
.y45{bottom:405.030000px;}
.y23{bottom:426.810000px;}
.y44{bottom:432.930000px;}
.y68{bottom:443.550000px;}
.y87{bottom:450.075000px;}
.y22{bottom:454.575000px;}
.y83{bottom:470.415000px;}
.y42{bottom:481.755000px;}
.y21{bottom:482.475000px;}
.y43{bottom:489.315000px;}
.y41{bottom:509.475000px;}
.y20{bottom:510.195000px;}
.y40{bottom:537.195000px;}
.y1f{bottom:537.915000px;}
.y3f{bottom:565.095000px;}
.y1e{bottom:565.635000px;}
.y63{bottom:583.095000px;}
.y1d{bottom:593.535000px;}
.y3e{bottom:613.695000px;}
.y1c{bottom:621.255000px;}
.y81{bottom:637.815000px;}
.y3d{bottom:641.595000px;}
.y1b{bottom:648.975000px;}
.y3c{bottom:669.315000px;}
.y1a{bottom:676.695000px;}
.y61{bottom:694.905000px;}
.y3b{bottom:697.065000px;}
.y19{bottom:704.625000px;}
.y18{bottom:732.345000px;}
.y39{bottom:745.845000px;}
.y80{bottom:749.805000px;}
.y60{bottom:752.685000px;}
.y3a{bottom:753.405000px;}
.y17{bottom:760.065000px;}
.y38{bottom:773.745000px;}
.y16{bottom:787.965000px;}
.y37{bottom:801.465000px;}
.y15{bottom:815.685000px;}
.y36{bottom:829.185000px;}
.y14{bottom:843.405000px;}
.y5e{bottom:850.245000px;}
.y35{bottom:856.905000px;}
.y5f{bottom:857.805000px;}
.y13{bottom:871.125000px;}
.y5d{bottom:877.965000px;}
.y7d{bottom:889.305000px;}
.y12{bottom:899.025000px;}
.y33{bottom:905.685000px;}
.y34{bottom:913.245000px;}
.y11{bottom:926.790000px;}
.y32{bottom:933.630000px;}
.y10{bottom:954.510000px;}
.y31{bottom:961.350000px;}
.yf{bottom:982.410000px;}
.y30{bottom:989.070000px;}
.ye{bottom:1010.130000px;}
.y5c{bottom:1017.690000px;}
.y7b{bottom:1029.030000px;}
.yd{bottom:1037.850000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y2f{bottom:1101.030000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h15{height:27.900000px;}
.h12{height:38.158594px;}
.h3{height:48.224531px;}
.hd{height:52.971680px;}
.hf{height:52.998047px;}
.h19{height:55.440000px;}
.h8{height:58.651172px;}
.h13{height:59.439023px;}
.h14{height:61.189805px;}
.hc{height:61.575820px;}
.h11{height:65.010937px;}
.h6{height:65.884219px;}
.hb{height:74.244727px;}
.h4{height:75.849609px;}
.h10{height:82.635820px;}
.ha{height:82.676953px;}
.h1a{height:83.160000px;}
.he{height:83.238047px;}
.h9{height:84.898125px;}
.h1c{height:86.585445px;}
.h2{height:92.340000px;}
.h16{height:111.096000px;}
.h18{height:138.780000px;}
.h17{height:138.816000px;}
.h1b{height:166.680000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.800000px;}
.w9{width:126.936000px;}
.w7{width:161.310000px;}
.w3{width:207.255000px;}
.w8{width:379.185000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w6{width:893.339973px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x27{left:7.740000px;}
.x26{left:20.160000px;}
.x22{left:34.596000px;}
.x4{left:62.280000px;}
.x7{left:63.899987px;}
.x8{left:66.779987px;}
.x1c{left:68.759987px;}
.x1{left:137.736000px;}
.x24{left:158.085000px;}
.xb{left:169.949987px;}
.x11{left:193.529973px;}
.x12{left:200.369987px;}
.x23{left:226.650000px;}
.x1b{left:279.974987px;}
.x28{left:291.674987px;}
.xc{left:331.994987px;}
.x2{left:340.269000px;}
.x1f{left:364.934973px;}
.x20{left:371.774987px;}
.x9{left:380.594987px;}
.x17{left:423.464973px;}
.x18{left:430.304987px;}
.xa{left:452.084987px;}
.x1d{left:479.984973px;}
.x1e{left:486.824987px;}
.xf{left:500.144973px;}
.x10{left:506.984987px;}
.x25{left:606.570000px;}
.x13{left:651.929973px;}
.x14{left:658.769987px;}
.xd{left:748.079973px;}
.x21{left:751.139987px;}
.x5{left:752.580000px;}
.xe{left:754.919987px;}
.x19{left:807.479973px;}
.x15{left:810.899973px;}
.x1a{left:814.319987px;}
.x16{left:817.739987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls4{letter-spacing:-2.330667pt;}
.ls19{letter-spacing:-0.608000pt;}
.ls5{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.116267pt;}
.ls13{letter-spacing:-0.102933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.lsf{letter-spacing:0.218240pt;}
.ls15{letter-spacing:0.224640pt;}
.ls10{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.303467pt;}
.ls11{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.328320pt;}
.ls1d{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.421120pt;}
.lsd{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:3.040000pt;}
.ls17{letter-spacing:4.320000pt;}
.lsa{letter-spacing:4.960000pt;}
.ls6{letter-spacing:5.600000pt;}
.ls7{letter-spacing:14.560000pt;}
.ls9{letter-spacing:26.080000pt;}
.ls1{letter-spacing:47.200000pt;}
.ls8{letter-spacing:66.400000pt;}
.ls1c{letter-spacing:150.703360pt;}
.ls16{letter-spacing:187.823360pt;}
.ws9{word-spacing:-19.056533pt;}
.ws6{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws1{word-spacing:-17.600000pt;}
.ws0{word-spacing:-17.440000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.163733pt;}
.ws7{word-spacing:-12.005120pt;}
.ws3{word-spacing:-10.976213pt;}
.ws5{word-spacing:0.000000pt;}
._20{margin-left:-5.690880pt;}
._7{margin-left:-4.618880pt;}
._15{margin-left:-3.720320pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-0.997120pt;}
._2{width:1.435093pt;}
._e{width:3.162880pt;}
._3{width:4.193280pt;}
._4{width:5.115520pt;}
._14{width:6.329387pt;}
._5{width:7.336533pt;}
._b{width:8.937813pt;}
._13{width:10.530987pt;}
._d{width:11.681280pt;}
._8{width:13.328640pt;}
._9{width:14.510507pt;}
._6{width:15.500160pt;}
._1f{width:16.524587pt;}
._1e{width:17.760427pt;}
._36{width:19.681067pt;}
._22{width:20.607360pt;}
._10{width:22.239360pt;}
._f{width:23.212800pt;}
._12{width:25.408000pt;}
._c{width:27.068800pt;}
._1c{width:28.852480pt;}
._1d{width:30.231680pt;}
._25{width:31.323520pt;}
._17{width:32.746240pt;}
._18{width:34.254293pt;}
._39{width:35.198720pt;}
._3a{width:36.754347pt;}
._23{width:37.772160pt;}
._37{width:38.841387pt;}
._28{width:41.432320pt;}
._24{width:43.304320pt;}
._11{width:44.577280pt;}
._16{width:46.500480pt;}
._31{width:52.341120pt;}
._a{width:53.970560pt;}
._2f{width:58.130560pt;}
._2d{width:59.127680pt;}
._35{width:62.997760pt;}
._1b{width:66.867840pt;}
._38{width:71.576320pt;}
._2c{width:74.505600pt;}
._19{width:81.694080pt;}
._1a{width:82.691200pt;}
._21{width:83.873707pt;}
._3b{width:85.611520pt;}
._33{width:87.909120pt;}
._26{width:91.128960pt;}
._2a{width:93.525120pt;}
._2b{width:94.919680pt;}
._30{width:96.693760pt;}
._2e{width:98.092800pt;}
._34{width:121.802240pt;}
._27{width:123.041280pt;}
._29{width:127.296000pt;}
._32{width:173.768960pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y67{bottom:7.200000pt;}
.y6d{bottom:7.240000pt;}
.y62{bottom:7.360000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y74{bottom:31.840000pt;}
.y6c{bottom:31.880000pt;}
.y66{bottom:32.000000pt;}
.y7f{bottom:32.040000pt;}
.y7a{bottom:34.720000pt;}
.y5b{bottom:35.360000pt;}
.y79{bottom:39.360000pt;}
.y5a{bottom:40.000000pt;}
.y94{bottom:41.760000pt;}
.y78{bottom:50.720000pt;}
.y59{bottom:51.680000pt;}
.y77{bottom:55.360000pt;}
.y58{bottom:56.320000pt;}
.y7c{bottom:56.480000pt;}
.y73{bottom:56.506667pt;}
.y6b{bottom:56.520000pt;}
.y65{bottom:56.640000pt;}
.y82{bottom:56.666667pt;}
.y7e{bottom:56.680000pt;}
.y2{bottom:64.640000pt;}
.y93{bottom:66.560000pt;}
.y76{bottom:66.720000pt;}
.y57{bottom:68.000000pt;}
.y56{bottom:72.640000pt;}
.y64{bottom:81.280000pt;}
.y72{bottom:81.306667pt;}
.y6a{bottom:81.320000pt;}
.y86{bottom:81.440000pt;}
.y55{bottom:84.320000pt;}
.y54{bottom:88.960000pt;}
.y2e{bottom:89.120000pt;}
.y92{bottom:91.200000pt;}
.y75{bottom:96.000000pt;}
.y53{bottom:99.840000pt;}
.y52{bottom:104.480000pt;}
.y6f{bottom:105.920000pt;}
.y71{bottom:105.946667pt;}
.y69{bottom:105.960000pt;}
.y85{bottom:106.080000pt;}
.y2d{bottom:113.920000pt;}
.y51{bottom:115.200000pt;}
.y91{bottom:115.840000pt;}
.y50{bottom:119.840000pt;}
.y4f{bottom:130.560000pt;}
.y84{bottom:130.720000pt;}
.y4e{bottom:135.200000pt;}
.y2c{bottom:138.400000pt;}
.y90{bottom:140.480000pt;}
.y70{bottom:146.080000pt;}
.y4d{bottom:146.240000pt;}
.y8f{bottom:165.280000pt;}
.y2b{bottom:181.920000pt;}
.y8e{bottom:189.946667pt;}
.y2a{bottom:206.586667pt;}
.y8d{bottom:214.586667pt;}
.y4b{bottom:217.946667pt;}
.y4c{bottom:224.666667pt;}
.y29{bottom:231.226667pt;}
.y4a{bottom:242.746667pt;}
.y28{bottom:256.026667pt;}
.y8c{bottom:257.946667pt;}
.y49{bottom:267.386667pt;}
.y6e{bottom:270.106667pt;}
.y27{bottom:280.666667pt;}
.y8b{bottom:282.586667pt;}
.y26{bottom:305.306667pt;}
.y8a{bottom:307.386667pt;}
.y47{bottom:310.746667pt;}
.y48{bottom:317.466667pt;}
.y25{bottom:329.946667pt;}
.y89{bottom:332.026667pt;}
.y46{bottom:335.386667pt;}
.y24{bottom:354.746667pt;}
.y88{bottom:356.666667pt;}
.y45{bottom:360.026667pt;}
.y23{bottom:379.386667pt;}
.y44{bottom:384.826667pt;}
.y68{bottom:394.266667pt;}
.y87{bottom:400.066667pt;}
.y22{bottom:404.066667pt;}
.y83{bottom:418.146667pt;}
.y42{bottom:428.226667pt;}
.y21{bottom:428.866667pt;}
.y43{bottom:434.946667pt;}
.y41{bottom:452.866667pt;}
.y20{bottom:453.506667pt;}
.y40{bottom:477.506667pt;}
.y1f{bottom:478.146667pt;}
.y3f{bottom:502.306667pt;}
.y1e{bottom:502.786667pt;}
.y63{bottom:518.306667pt;}
.y1d{bottom:527.586667pt;}
.y3e{bottom:545.506667pt;}
.y1c{bottom:552.226667pt;}
.y81{bottom:566.946667pt;}
.y3d{bottom:570.306667pt;}
.y1b{bottom:576.866667pt;}
.y3c{bottom:594.946667pt;}
.y1a{bottom:601.506667pt;}
.y61{bottom:617.693333pt;}
.y3b{bottom:619.613333pt;}
.y19{bottom:626.333333pt;}
.y18{bottom:650.973333pt;}
.y39{bottom:662.973333pt;}
.y80{bottom:666.493333pt;}
.y60{bottom:669.053333pt;}
.y3a{bottom:669.693333pt;}
.y17{bottom:675.613333pt;}
.y38{bottom:687.773333pt;}
.y16{bottom:700.413333pt;}
.y37{bottom:712.413333pt;}
.y15{bottom:725.053333pt;}
.y36{bottom:737.053333pt;}
.y14{bottom:749.693333pt;}
.y5e{bottom:755.773333pt;}
.y35{bottom:761.693333pt;}
.y5f{bottom:762.493333pt;}
.y13{bottom:774.333333pt;}
.y5d{bottom:780.413333pt;}
.y7d{bottom:790.493333pt;}
.y12{bottom:799.133333pt;}
.y33{bottom:805.053333pt;}
.y34{bottom:811.773333pt;}
.y11{bottom:823.813333pt;}
.y32{bottom:829.893333pt;}
.y10{bottom:848.453333pt;}
.y31{bottom:854.533333pt;}
.yf{bottom:873.253333pt;}
.y30{bottom:879.173333pt;}
.ye{bottom:897.893333pt;}
.y5c{bottom:904.613333pt;}
.y7b{bottom:914.693333pt;}
.yd{bottom:922.533333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y2f{bottom:978.693333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h15{height:24.800000pt;}
.h12{height:33.918750pt;}
.h3{height:42.866250pt;}
.hd{height:47.085938pt;}
.hf{height:47.109375pt;}
.h19{height:49.280000pt;}
.h8{height:52.134375pt;}
.h13{height:52.834688pt;}
.h14{height:54.390938pt;}
.hc{height:54.734062pt;}
.h11{height:57.787500pt;}
.h6{height:58.563750pt;}
.hb{height:65.995312pt;}
.h4{height:67.421875pt;}
.h10{height:73.454062pt;}
.ha{height:73.490625pt;}
.h1a{height:73.920000pt;}
.he{height:73.989375pt;}
.h9{height:75.465000pt;}
.h1c{height:76.964840pt;}
.h2{height:82.080000pt;}
.h16{height:98.752000pt;}
.h18{height:123.360000pt;}
.h17{height:123.392000pt;}
.h1b{height:148.160000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.600000pt;}
.w9{width:112.832000pt;}
.w7{width:143.386667pt;}
.w3{width:184.226667pt;}
.w8{width:337.053333pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w6{width:794.079976pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x27{left:6.880000pt;}
.x26{left:17.920000pt;}
.x22{left:30.752000pt;}
.x4{left:55.360000pt;}
.x7{left:56.799988pt;}
.x8{left:59.359988pt;}
.x1c{left:61.119988pt;}
.x1{left:122.432000pt;}
.x24{left:140.520000pt;}
.xb{left:151.066655pt;}
.x11{left:172.026643pt;}
.x12{left:178.106655pt;}
.x23{left:201.466667pt;}
.x1b{left:248.866655pt;}
.x28{left:259.266655pt;}
.xc{left:295.106655pt;}
.x2{left:302.461333pt;}
.x1f{left:324.386643pt;}
.x20{left:330.466655pt;}
.x9{left:338.306655pt;}
.x17{left:376.413310pt;}
.x18{left:382.493321pt;}
.xa{left:401.853321pt;}
.x1d{left:426.653310pt;}
.x1e{left:432.733321pt;}
.xf{left:444.573310pt;}
.x10{left:450.653321pt;}
.x25{left:539.173333pt;}
.x13{left:579.493310pt;}
.x14{left:585.573322pt;}
.xd{left:664.959976pt;}
.x21{left:667.679988pt;}
.x5{left:668.960000pt;}
.xe{left:671.039988pt;}
.x19{left:717.759976pt;}
.x15{left:720.799976pt;}
.x1a{left:723.839988pt;}
.x16{left:726.879988pt;}
}




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