
    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_517f54f8515291ca99136957.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_a81ed0f63796d86bbc6f287f.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_fa5ae031170104fa166c4c10.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7dfe4b8f724432d5e36c634d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_16f3e6ba3c2e7a503f60b84c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fa0603b70c2f5ef3db16277b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4301e51e403b4f7b66d74b77.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.097800px;}
.ls1f{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.097800px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262080px;}
.lse{letter-spacing:0.305280px;}
.ls15{letter-spacing:0.305400px;}
.ls20{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.485280px;}
.ls1c{letter-spacing:0.613440px;}
.ls1b{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.025280px;}
.ls19{letter-spacing:3.905280px;}
.ls1e{letter-spacing:6.426720px;}
.lsc{letter-spacing:9.665280px;}
.lsb{letter-spacing:10.385280px;}
.ls9{letter-spacing:13.985280px;}
.ls1a{letter-spacing:19.386720px;}
.ls11{letter-spacing:21.905280px;}
.lsd{letter-spacing:25.505280px;}
.lsf{letter-spacing:33.425280px;}
.ls3{letter-spacing:34.865280px;}
.ls17{letter-spacing:40.625280px;}
.lsa{letter-spacing:46.385280px;}
.ls16{letter-spacing:59.321280px;}
.ls10{letter-spacing:89.585280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.512520px;}
.ws6{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.316920px;}
.ws4{word-spacing:-18.305520px;}
.wsb{word-spacing:-16.973280px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.812640px;}
.wsa{word-spacing:-13.410720px;}
.ws7{word-spacing:0.000000px;}
._2f{margin-left:-13.679280px;}
._22{margin-left:-4.734720px;}
._9{margin-left:-3.492000px;}
._8{margin-left:-2.390400px;}
._4{margin-left:-1.135440px;}
._0{width:1.041840px;}
._5{width:2.928240px;}
._1a{width:4.379760px;}
._1{width:5.936160px;}
._2{width:7.051680px;}
._2a{width:8.192880px;}
._c{width:10.002240px;}
._1b{width:11.093280px;}
._13{width:12.320640px;}
._6{width:14.342400px;}
._7{width:15.366240px;}
._12{width:16.565760px;}
._b{width:18.559440px;}
._a{width:19.736400px;}
._1c{width:21.263040px;}
._2d{width:22.700880px;}
._2c{width:23.718720px;}
._19{width:24.759360px;}
._18{width:25.833600px;}
._3{width:27.668880px;}
._23{width:28.975680px;}
._16{width:31.000320px;}
._14{width:32.466960px;}
._15{width:33.523200px;}
._d{width:35.637120px;}
._e{width:37.898640px;}
._f{width:39.337680px;}
._1e{width:41.169600px;}
._2e{width:44.102880px;}
._17{width:45.771840px;}
._27{width:47.106000px;}
._26{width:48.692160px;}
._1d{width:49.944960px;}
._28{width:53.323200px;}
._29{width:54.714240px;}
._2b{width:56.461200px;}
._1f{width:57.770640px;}
._30{width:64.839600px;}
._11{width:65.851920px;}
._10{width:67.173120px;}
._24{width:84.522240px;}
._20{width:88.572240px;}
._21{width:90.390960px;}
._31{width:92.448720px;}
._25{width:126.793200px;}
._32{width:845.741280px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.420000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y26{bottom:110.376000px;}
.y65{bottom:115.416000px;}
.y25{bottom:129.276000px;}
.y64{bottom:134.316000px;}
.y49{bottom:135.396000px;}
.y24{bottom:148.176000px;}
.y63{bottom:153.210000px;}
.y48{bottom:154.470000px;}
.y85{bottom:157.890000px;}
.y23{bottom:167.250000px;}
.y62{bottom:172.290000px;}
.y47{bottom:173.370000px;}
.y84{bottom:175.170000px;}
.ya1{bottom:184.170000px;}
.y22{bottom:186.150000px;}
.y61{bottom:191.190000px;}
.y46{bottom:192.270000px;}
.y83{bottom:192.450000px;}
.ya0{bottom:202.890000px;}
.y21{bottom:205.230000px;}
.y82{bottom:209.730000px;}
.y60{bottom:210.270000px;}
.y45{bottom:211.350000px;}
.y9f{bottom:219.990000px;}
.y20{bottom:224.130000px;}
.y81{bottom:227.010000px;}
.y5f{bottom:229.170000px;}
.y44{bottom:230.250000px;}
.y9e{bottom:237.315000px;}
.y1f{bottom:243.075000px;}
.y80{bottom:244.335000px;}
.y5e{bottom:248.115000px;}
.y43{bottom:249.375000px;}
.y9d{bottom:254.595000px;}
.y7f{bottom:261.435000px;}
.y1e{bottom:262.155000px;}
.y5d{bottom:267.195000px;}
.y42{bottom:268.275000px;}
.y9c{bottom:271.875000px;}
.y7e{bottom:278.715000px;}
.y1d{bottom:281.055000px;}
.y5c{bottom:286.095000px;}
.y41{bottom:287.175000px;}
.y9b{bottom:289.155000px;}
.y7d{bottom:295.995000px;}
.y1c{bottom:300.135000px;}
.y5b{bottom:305.175000px;}
.y40{bottom:306.255000px;}
.y9a{bottom:306.435000px;}
.y7c{bottom:313.275000px;}
.y1b{bottom:319.035000px;}
.y99{bottom:323.535000px;}
.y5a{bottom:324.075000px;}
.y3f{bottom:325.155000px;}
.y7b{bottom:330.555000px;}
.y1a{bottom:338.115000px;}
.y98{bottom:340.815000px;}
.y59{bottom:342.975000px;}
.y3e{bottom:344.235000px;}
.y7a{bottom:347.835000px;}
.y97{bottom:358.095000px;}
.y58{bottom:362.055000px;}
.y3d{bottom:363.135000px;}
.y79{bottom:364.935000px;}
.y19{bottom:372.135000px;}
.y96{bottom:375.375000px;}
.y57{bottom:380.955000px;}
.y3c{bottom:382.215000px;}
.y95{bottom:392.655000px;}
.y78{bottom:399.495000px;}
.y56{bottom:400.035000px;}
.y3b{bottom:401.115000px;}
.y94{bottom:409.935000px;}
.y77{bottom:416.775000px;}
.y18{bottom:418.035000px;}
.y55{bottom:418.935000px;}
.y3a{bottom:420.015000px;}
.y93{bottom:427.065000px;}
.y76{bottom:434.085000px;}
.y17{bottom:435.345000px;}
.y54{bottom:438.045000px;}
.y92{bottom:444.345000px;}
.y39{bottom:445.425000px;}
.y75{bottom:451.365000px;}
.y53{bottom:456.945000px;}
.y16{bottom:461.625000px;}
.y74{bottom:468.465000px;}
.y52{bottom:475.845000px;}
.y15{bottom:478.905000px;}
.y38{bottom:482.505000px;}
.y73{bottom:486.105000px;}
.y51{bottom:494.925000px;}
.y14{bottom:496.185000px;}
.y37{bottom:501.585000px;}
.y72{bottom:505.005000px;}
.y13{bottom:513.285000px;}
.y50{bottom:513.825000px;}
.y36{bottom:520.485000px;}
.y71{bottom:523.905000px;}
.y12{bottom:530.565000px;}
.y4f{bottom:532.725000px;}
.y35{bottom:539.565000px;}
.y70{bottom:542.985000px;}
.y11{bottom:547.845000px;}
.y4e{bottom:552.885000px;}
.y34{bottom:558.465000px;}
.y6f{bottom:561.885000px;}
.y10{bottom:565.125000px;}
.y4d{bottom:572.865000px;}
.y33{bottom:577.365000px;}
.y6e{bottom:580.965000px;}
.yf{bottom:582.405000px;}
.y4c{bottom:593.025000px;}
.y32{bottom:596.445000px;}
.ye{bottom:599.685000px;}
.y6d{bottom:599.865000px;}
.y4b{bottom:613.050000px;}
.y31{bottom:615.390000px;}
.y91{bottom:616.830000px;}
.yd{bottom:617.370000px;}
.y6c{bottom:618.810000px;}
.y4a{bottom:633.210000px;}
.y90{bottom:634.110000px;}
.y30{bottom:634.470000px;}
.y6b{bottom:637.890000px;}
.yc{bottom:638.070000px;}
.y8f{bottom:651.390000px;}
.y2f{bottom:653.370000px;}
.y6a{bottom:656.790000px;}
.yb{bottom:658.770000px;}
.y8e{bottom:668.670000px;}
.y2e{bottom:672.270000px;}
.y69{bottom:675.870000px;}
.ya{bottom:679.470000px;}
.y8d{bottom:685.950000px;}
.y2d{bottom:691.350000px;}
.y68{bottom:694.770000px;}
.y9{bottom:700.170000px;}
.y8c{bottom:703.230000px;}
.y2c{bottom:710.250000px;}
.y67{bottom:713.670000px;}
.y8b{bottom:720.330000px;}
.y8{bottom:720.870000px;}
.y2b{bottom:729.330000px;}
.y8a{bottom:737.610000px;}
.y66{bottom:739.050000px;}
.y7{bottom:741.570000px;}
.y2a{bottom:748.230000px;}
.y89{bottom:754.890000px;}
.y6{bottom:762.270000px;}
.y29{bottom:767.310000px;}
.y88{bottom:772.170000px;}
.y5{bottom:782.970000px;}
.y28{bottom:786.210000px;}
.y87{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y27{bottom:805.140000px;}
.y86{bottom:806.760000px;}
.h7{height:44.090508px;}
.h6{height:45.549492px;}
.h3{height:46.251562px;}
.h8{height:50.488594px;}
.h2{height:53.603086px;}
.ha{height:54.390938px;}
.h9{height:59.415469px;}
.h5{height:64.582031px;}
.h4{height:65.531250px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x2{left:80.855991px;}
.x3{left:84.815991px;}
.x7{left:98.675991px;}
.xb{left:107.855991px;}
.xa{left:123.335991px;}
.xc{left:134.855991px;}
.x4{left:172.289991px;}
.x8{left:181.109991px;}
.x9{left:240.374991px;}
.x6{left:244.514991px;}
.x1{left:306.434991px;}
.x5{left:314.714991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.086933pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.086933pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.271360pt;}
.ls15{letter-spacing:0.271467pt;}
.ls20{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.431360pt;}
.ls1c{letter-spacing:0.545280pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.911360pt;}
.ls19{letter-spacing:3.471360pt;}
.ls1e{letter-spacing:5.712640pt;}
.lsc{letter-spacing:8.591360pt;}
.lsb{letter-spacing:9.231360pt;}
.ls9{letter-spacing:12.431360pt;}
.ls1a{letter-spacing:17.232640pt;}
.ls11{letter-spacing:19.471360pt;}
.lsd{letter-spacing:22.671360pt;}
.lsf{letter-spacing:29.711360pt;}
.ls3{letter-spacing:30.991360pt;}
.ls17{letter-spacing:36.111360pt;}
.lsa{letter-spacing:41.231360pt;}
.ls16{letter-spacing:52.730027pt;}
.ls10{letter-spacing:79.631360pt;}
.ws5{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.455573pt;}
.ws6{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.281707pt;}
.ws4{word-spacing:-16.271573pt;}
.wsb{word-spacing:-15.087360pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.055680pt;}
.wsa{word-spacing:-11.920640pt;}
.ws7{word-spacing:0.000000pt;}
._2f{margin-left:-12.159360pt;}
._22{margin-left:-4.208640pt;}
._9{margin-left:-3.104000pt;}
._8{margin-left:-2.124800pt;}
._4{margin-left:-1.009280pt;}
._0{width:0.926080pt;}
._5{width:2.602880pt;}
._1a{width:3.893120pt;}
._1{width:5.276587pt;}
._2{width:6.268160pt;}
._2a{width:7.282560pt;}
._c{width:8.890880pt;}
._1b{width:9.860693pt;}
._13{width:10.951680pt;}
._6{width:12.748800pt;}
._7{width:13.658880pt;}
._12{width:14.725120pt;}
._b{width:16.497280pt;}
._a{width:17.543467pt;}
._1c{width:18.900480pt;}
._2d{width:20.178560pt;}
._2c{width:21.083307pt;}
._19{width:22.008320pt;}
._18{width:22.963200pt;}
._3{width:24.594560pt;}
._23{width:25.756160pt;}
._16{width:27.555840pt;}
._14{width:28.859520pt;}
._15{width:29.798400pt;}
._d{width:31.677440pt;}
._e{width:33.687680pt;}
._f{width:34.966827pt;}
._1e{width:36.595200pt;}
._2e{width:39.202560pt;}
._17{width:40.686080pt;}
._27{width:41.872000pt;}
._26{width:43.281920pt;}
._1d{width:44.395520pt;}
._28{width:47.398400pt;}
._29{width:48.634880pt;}
._2b{width:50.187733pt;}
._1f{width:51.351680pt;}
._30{width:57.635200pt;}
._11{width:58.535040pt;}
._10{width:59.709440pt;}
._24{width:75.130880pt;}
._20{width:78.730880pt;}
._21{width:80.347520pt;}
._31{width:82.176640pt;}
._25{width:112.705067pt;}
._32{width:751.770027pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.040000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y26{bottom:98.112000pt;}
.y65{bottom:102.592000pt;}
.y25{bottom:114.912000pt;}
.y64{bottom:119.392000pt;}
.y49{bottom:120.352000pt;}
.y24{bottom:131.712000pt;}
.y63{bottom:136.186667pt;}
.y48{bottom:137.306667pt;}
.y85{bottom:140.346667pt;}
.y23{bottom:148.666667pt;}
.y62{bottom:153.146667pt;}
.y47{bottom:154.106667pt;}
.y84{bottom:155.706667pt;}
.ya1{bottom:163.706667pt;}
.y22{bottom:165.466667pt;}
.y61{bottom:169.946667pt;}
.y46{bottom:170.906667pt;}
.y83{bottom:171.066667pt;}
.ya0{bottom:180.346667pt;}
.y21{bottom:182.426667pt;}
.y82{bottom:186.426667pt;}
.y60{bottom:186.906667pt;}
.y45{bottom:187.866667pt;}
.y9f{bottom:195.546667pt;}
.y20{bottom:199.226667pt;}
.y81{bottom:201.786667pt;}
.y5f{bottom:203.706667pt;}
.y44{bottom:204.666667pt;}
.y9e{bottom:210.946667pt;}
.y1f{bottom:216.066667pt;}
.y80{bottom:217.186667pt;}
.y5e{bottom:220.546667pt;}
.y43{bottom:221.666667pt;}
.y9d{bottom:226.306667pt;}
.y7f{bottom:232.386667pt;}
.y1e{bottom:233.026667pt;}
.y5d{bottom:237.506667pt;}
.y42{bottom:238.466667pt;}
.y9c{bottom:241.666667pt;}
.y7e{bottom:247.746667pt;}
.y1d{bottom:249.826667pt;}
.y5c{bottom:254.306667pt;}
.y41{bottom:255.266667pt;}
.y9b{bottom:257.026667pt;}
.y7d{bottom:263.106667pt;}
.y1c{bottom:266.786667pt;}
.y5b{bottom:271.266667pt;}
.y40{bottom:272.226667pt;}
.y9a{bottom:272.386667pt;}
.y7c{bottom:278.466667pt;}
.y1b{bottom:283.586667pt;}
.y99{bottom:287.586667pt;}
.y5a{bottom:288.066667pt;}
.y3f{bottom:289.026667pt;}
.y7b{bottom:293.826667pt;}
.y1a{bottom:300.546667pt;}
.y98{bottom:302.946667pt;}
.y59{bottom:304.866667pt;}
.y3e{bottom:305.986667pt;}
.y7a{bottom:309.186667pt;}
.y97{bottom:318.306667pt;}
.y58{bottom:321.826667pt;}
.y3d{bottom:322.786667pt;}
.y79{bottom:324.386667pt;}
.y19{bottom:330.786667pt;}
.y96{bottom:333.666667pt;}
.y57{bottom:338.626667pt;}
.y3c{bottom:339.746667pt;}
.y95{bottom:349.026667pt;}
.y78{bottom:355.106667pt;}
.y56{bottom:355.586667pt;}
.y3b{bottom:356.546667pt;}
.y94{bottom:364.386667pt;}
.y77{bottom:370.466667pt;}
.y18{bottom:371.586667pt;}
.y55{bottom:372.386667pt;}
.y3a{bottom:373.346667pt;}
.y93{bottom:379.613333pt;}
.y76{bottom:385.853333pt;}
.y17{bottom:386.973333pt;}
.y54{bottom:389.373333pt;}
.y92{bottom:394.973333pt;}
.y39{bottom:395.933333pt;}
.y75{bottom:401.213333pt;}
.y53{bottom:406.173333pt;}
.y16{bottom:410.333333pt;}
.y74{bottom:416.413333pt;}
.y52{bottom:422.973333pt;}
.y15{bottom:425.693333pt;}
.y38{bottom:428.893333pt;}
.y73{bottom:432.093333pt;}
.y51{bottom:439.933333pt;}
.y14{bottom:441.053333pt;}
.y37{bottom:445.853333pt;}
.y72{bottom:448.893333pt;}
.y13{bottom:456.253333pt;}
.y50{bottom:456.733333pt;}
.y36{bottom:462.653333pt;}
.y71{bottom:465.693333pt;}
.y12{bottom:471.613333pt;}
.y4f{bottom:473.533333pt;}
.y35{bottom:479.613333pt;}
.y70{bottom:482.653333pt;}
.y11{bottom:486.973333pt;}
.y4e{bottom:491.453333pt;}
.y34{bottom:496.413333pt;}
.y6f{bottom:499.453333pt;}
.y10{bottom:502.333333pt;}
.y4d{bottom:509.213333pt;}
.y33{bottom:513.213333pt;}
.y6e{bottom:516.413333pt;}
.yf{bottom:517.693333pt;}
.y4c{bottom:527.133333pt;}
.y32{bottom:530.173333pt;}
.ye{bottom:533.053333pt;}
.y6d{bottom:533.213333pt;}
.y4b{bottom:544.933333pt;}
.y31{bottom:547.013333pt;}
.y91{bottom:548.293333pt;}
.yd{bottom:548.773333pt;}
.y6c{bottom:550.053333pt;}
.y4a{bottom:562.853333pt;}
.y90{bottom:563.653333pt;}
.y30{bottom:563.973333pt;}
.y6b{bottom:567.013333pt;}
.yc{bottom:567.173333pt;}
.y8f{bottom:579.013333pt;}
.y2f{bottom:580.773333pt;}
.y6a{bottom:583.813333pt;}
.yb{bottom:585.573333pt;}
.y8e{bottom:594.373333pt;}
.y2e{bottom:597.573333pt;}
.y69{bottom:600.773333pt;}
.ya{bottom:603.973333pt;}
.y8d{bottom:609.733333pt;}
.y2d{bottom:614.533333pt;}
.y68{bottom:617.573333pt;}
.y9{bottom:622.373333pt;}
.y8c{bottom:625.093333pt;}
.y2c{bottom:631.333333pt;}
.y67{bottom:634.373333pt;}
.y8b{bottom:640.293333pt;}
.y8{bottom:640.773333pt;}
.y2b{bottom:648.293333pt;}
.y8a{bottom:655.653333pt;}
.y66{bottom:656.933333pt;}
.y7{bottom:659.173333pt;}
.y2a{bottom:665.093333pt;}
.y89{bottom:671.013333pt;}
.y6{bottom:677.573333pt;}
.y29{bottom:682.053333pt;}
.y88{bottom:686.373333pt;}
.y5{bottom:695.973333pt;}
.y28{bottom:698.853333pt;}
.y87{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y27{bottom:715.680000pt;}
.y86{bottom:717.120000pt;}
.h7{height:39.191562pt;}
.h6{height:40.488438pt;}
.h3{height:41.112500pt;}
.h8{height:44.878750pt;}
.h2{height:47.647188pt;}
.ha{height:48.347500pt;}
.h9{height:52.813750pt;}
.h5{height:57.406250pt;}
.h4{height:58.250000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x2{left:71.871992pt;}
.x3{left:75.391992pt;}
.x7{left:87.711992pt;}
.xb{left:95.871992pt;}
.xa{left:109.631992pt;}
.xc{left:119.871992pt;}
.x4{left:153.146658pt;}
.x8{left:160.986658pt;}
.x9{left:213.666658pt;}
.x6{left:217.346658pt;}
.x1{left:272.386658pt;}
.x5{left:279.746658pt;}
}




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