
    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_29fdeaffd7f95dfe352a2145.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e0bb6ca2b5a946c62a16e2bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8b0da3fb723aa682ebd691de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_6d7b74dadf114356a2c3b5c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_479855641f23fae08a6aa9fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_bf07a2c22f2427e97000735f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_87d01d979743d10fe3cbac2b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_56cd424d2cd8fce2cd32f4f8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_88c03919154c57448c38dc94.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d8f73b58690002320884b358.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.018000px;}
.ls17{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.087600px;}
.ls13{letter-spacing:0.106560px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.174000px;}
.ls5{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:10.980000px;}
.ls16{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2.951760px;}
._0{margin-left:-1.176000px;}
._1{width:1.238640px;}
._b{width:2.482800px;}
._7{width:4.020240px;}
._d{width:5.736960px;}
._5{width:6.769200px;}
._6{width:8.018640px;}
._c{width:9.143280px;}
._8{width:10.637280px;}
._11{width:11.729280px;}
._10{width:12.848400px;}
._15{width:13.899600px;}
._16{width:15.982080px;}
._14{width:17.672640px;}
._a{width:19.079760px;}
._12{width:20.258640px;}
._1a{width:21.695280px;}
._17{width:23.349840px;}
._e{width:24.398400px;}
._f{width:26.174880px;}
._1d{width:27.800400px;}
._13{width:30.216960px;}
._1b{width:31.232880px;}
._3{width:32.368080px;}
._4{width:33.438960px;}
._1c{width:34.677120px;}
._19{width:39.006960px;}
._18{width:40.294560px;}
._1f{width:44.955840px;}
._9{width:48.601200px;}
._1e{width:948.000000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:3.240000px;}
.y19{bottom:3.600000px;}
.y3{bottom:3.636000px;}
.ye{bottom:10.800000px;}
.yc{bottom:13.860000px;}
.y50{bottom:14.940000px;}
.y4{bottom:17.316000px;}
.y4f{bottom:17.820000px;}
.y18{bottom:19.980000px;}
.y2{bottom:20.016000px;}
.y4c{bottom:20.520000px;}
.y94{bottom:20.565000px;}
.yb{bottom:30.240000px;}
.y98{bottom:37.620000px;}
.y4b{bottom:37.800000px;}
.y93{bottom:37.845000px;}
.y17{bottom:40.365000px;}
.y5{bottom:45.900000px;}
.ya{bottom:46.620000px;}
.y4a{bottom:55.080000px;}
.y16{bottom:56.205000px;}
.y15{bottom:66.645000px;}
.y1{bottom:66.960000px;}
.y49{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y14{bottom:85.005000px;}
.y48{bottom:89.640000px;}
.y8{bottom:93.090000px;}
.y13{bottom:103.185000px;}
.y47{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y8f{bottom:111.456000px;}
.y51{bottom:115.056000px;}
.ycd{bottom:121.176000px;}
.y12{bottom:122.265000px;}
.y46{bottom:124.020000px;}
.y9f{bottom:124.236000px;}
.y8e{bottom:128.736000px;}
.y4e{bottom:129.096000px;}
.ycc{bottom:138.456000px;}
.y45{bottom:141.300000px;}
.y9e{bottom:141.516000px;}
.y8d{bottom:146.016000px;}
.y11{bottom:148.005000px;}
.ycb{bottom:155.550000px;}
.y1b{bottom:158.250000px;}
.y44{bottom:158.580000px;}
.y9d{bottom:158.610000px;}
.y8c{bottom:163.110000px;}
.y10{bottom:172.305000px;}
.yca{bottom:172.830000px;}
.y43{bottom:175.860000px;}
.y9c{bottom:175.890000px;}
.y8b{bottom:180.390000px;}
.yaf{bottom:184.890000px;}
.yc9{bottom:190.110000px;}
.y42{bottom:193.005000px;}
.y9b{bottom:193.170000px;}
.y8a{bottom:197.670000px;}
.yae{bottom:202.170000px;}
.yc8{bottom:207.390000px;}
.y41{bottom:210.285000px;}
.y9a{bottom:210.450000px;}
.y89{bottom:214.950000px;}
.yad{bottom:219.450000px;}
.yc7{bottom:224.670000px;}
.y40{bottom:227.565000px;}
.y99{bottom:227.730000px;}
.y88{bottom:232.230000px;}
.yac{bottom:233.310000px;}
.yc6{bottom:241.950000px;}
.y97{bottom:242.490000px;}
.y3f{bottom:244.845000px;}
.y87{bottom:249.510000px;}
.yc5{bottom:259.050000px;}
.y3e{bottom:262.125000px;}
.y86{bottom:266.610000px;}
.yc4{bottom:276.330000px;}
.y3d{bottom:279.405000px;}
.y85{bottom:283.890000px;}
.yc3{bottom:293.610000px;}
.y96{bottom:294.870000px;}
.y3c{bottom:296.505000px;}
.y84{bottom:301.170000px;}
.yc2{bottom:310.890000px;}
.y95{bottom:312.150000px;}
.y3b{bottom:313.785000px;}
.y83{bottom:318.450000px;}
.yc1{bottom:328.170000px;}
.y92{bottom:330.150000px;}
.y3a{bottom:331.065000px;}
.y82{bottom:335.730000px;}
.yc0{bottom:345.495000px;}
.y39{bottom:348.345000px;}
.y81{bottom:352.875000px;}
.ybf{bottom:362.595000px;}
.y38{bottom:365.625000px;}
.y80{bottom:370.155000px;}
.ybe{bottom:379.875000px;}
.y91{bottom:382.755000px;}
.y37{bottom:382.905000px;}
.y7f{bottom:387.435000px;}
.ybd{bottom:397.155000px;}
.y36{bottom:400.005000px;}
.y90{bottom:400.755000px;}
.y7e{bottom:404.715000px;}
.ybc{bottom:414.435000px;}
.y35{bottom:417.285000px;}
.y7d{bottom:421.995000px;}
.ybb{bottom:431.715000px;}
.y34{bottom:434.565000px;}
.y7c{bottom:439.275000px;}
.y27{bottom:441.405000px;}
.yba{bottom:448.815000px;}
.y33{bottom:451.875000px;}
.y7b{bottom:456.375000px;}
.y26{bottom:456.735000px;}
.yb9{bottom:466.095000px;}
.y32{bottom:469.155000px;}
.y7a{bottom:473.655000px;}
.y25{bottom:474.375000px;}
.yb8{bottom:483.375000px;}
.y31{bottom:486.255000px;}
.y79{bottom:490.935000px;}
.y24{bottom:491.655000px;}
.yb7{bottom:500.655000px;}
.y30{bottom:503.535000px;}
.y78{bottom:508.215000px;}
.y23{bottom:508.755000px;}
.yb6{bottom:517.935000px;}
.y2f{bottom:520.815000px;}
.yab{bottom:522.435000px;}
.y77{bottom:525.495000px;}
.y22{bottom:526.575000px;}
.yb5{bottom:535.215000px;}
.y2e{bottom:538.095000px;}
.yaa{bottom:539.715000px;}
.y76{bottom:542.775000px;}
.y21{bottom:544.035000px;}
.yb4{bottom:552.315000px;}
.y2d{bottom:555.375000px;}
.ya9{bottom:556.995000px;}
.y75{bottom:559.875000px;}
.y20{bottom:561.495000px;}
.yb3{bottom:566.355000px;}
.ya8{bottom:571.035000px;}
.y2c{bottom:572.655000px;}
.y74{bottom:577.155000px;}
.y1f{bottom:578.775000px;}
.y2b{bottom:589.755000px;}
.y73{bottom:594.435000px;}
.y1e{bottom:599.115000px;}
.y2a{bottom:607.035000px;}
.y72{bottom:611.745000px;}
.y29{bottom:624.315000px;}
.y1d{bottom:626.475000px;}
.y71{bottom:629.025000px;}
.y28{bottom:641.595000px;}
.y1c{bottom:644.295000px;}
.y70{bottom:646.305000px;}
.y6f{bottom:663.405000px;}
.y6e{bottom:680.685000px;}
.y6d{bottom:697.965000px;}
.y6c{bottom:715.245000px;}
.y6b{bottom:732.525000px;}
.y6a{bottom:749.625000px;}
.y69{bottom:766.905000px;}
.y68{bottom:784.185000px;}
.y67{bottom:801.465000px;}
.y1a{bottom:813.885000px;}
.y66{bottom:818.745000px;}
.y65{bottom:836.025000px;}
.yf{bottom:843.405000px;}
.y64{bottom:853.125000px;}
.yb2{bottom:853.845000px;}
.y63{bottom:870.405000px;}
.yb1{bottom:871.170000px;}
.yb0{bottom:885.210000px;}
.y62{bottom:887.730000px;}
.ya7{bottom:899.070000px;}
.y61{bottom:905.010000px;}
.yce{bottom:910.230000px;}
.ya6{bottom:913.830000px;}
.y60{bottom:922.290000px;}
.ya5{bottom:931.830000px;}
.y5f{bottom:939.570000px;}
.ya4{bottom:949.830000px;}
.y5e{bottom:956.670000px;}
.ya3{bottom:967.830000px;}
.y5d{bottom:973.950000px;}
.ya2{bottom:985.830000px;}
.y5c{bottom:991.230000px;}
.ya1{bottom:1003.650000px;}
.y5b{bottom:1008.510000px;}
.ya0{bottom:1021.650000px;}
.y5a{bottom:1025.790000px;}
.yd{bottom:1030.830000px;}
.y59{bottom:1042.890000px;}
.y6{bottom:1056.210000px;}
.y58{bottom:1060.170000px;}
.y57{bottom:1077.450000px;}
.y56{bottom:1094.730000px;}
.y55{bottom:1112.010000px;}
.y54{bottom:1129.290000px;}
.y53{bottom:1146.420000px;}
.y52{bottom:1163.700000px;}
.h24{height:17.100000px;}
.h21{height:17.280000px;}
.hc{height:25.020000px;}
.h25{height:27.147656px;}
.h14{height:28.968750px;}
.h1f{height:29.160000px;}
.h16{height:29.520000px;}
.h2{height:32.976000px;}
.h13{height:35.806641px;}
.h8{height:36.180000px;}
.h1c{height:38.818125px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1b{height:42.281367px;}
.h4{height:43.453125px;}
.h26{height:43.506914px;}
.hf{height:44.002969px;}
.h15{height:44.088750px;}
.ha{height:44.820000px;}
.h1a{height:45.770625px;}
.h18{height:47.980898px;}
.h20{height:48.027656px;}
.hd{height:49.680000px;}
.h23{height:51.660000px;}
.h22{height:51.876000px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h7{height:121.536000px;}
.he{height:187.410000px;}
.h17{height:655.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:155.370000px;}
.w8{width:220.935000px;}
.wc{width:222.150000px;}
.wd{width:248.430000px;}
.wb{width:274.575000px;}
.wa{width:373.215000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xc{left:33.516000px;}
.x26{left:61.740000px;}
.xe{left:69.516000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x2f{left:108.035987px;}
.x19{left:128.370000px;}
.x30{left:135.035987px;}
.x16{left:137.910000px;}
.x18{left:142.590000px;}
.x21{left:150.870000px;}
.x10{left:156.090000px;}
.x1f{left:160.770000px;}
.x1d{left:164.550000px;}
.x22{left:169.950000px;}
.x1c{left:171.210000px;}
.x20{left:174.090000px;}
.x1b{left:175.350000px;}
.x1a{left:178.950000px;}
.x2c{left:181.289987px;}
.x1e{left:186.510000px;}
.x28{left:197.849987px;}
.x12{left:215.175000px;}
.x11{left:216.255000px;}
.x6{left:228.270000px;}
.x2e{left:236.189987px;}
.x2a{left:242.129987px;}
.x15{left:255.809987px;}
.x9{left:285.015000px;}
.x13{left:293.835000px;}
.xf{left:308.595000px;}
.xd{left:311.475000px;}
.x23{left:331.994987px;}
.x7{left:344.775000px;}
.x24{left:348.555000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x17{left:447.375000px;}
.xa{left:452.280000px;}
.x2b{left:459.254987px;}
.x25{left:571.425000px;}
.x2d{left:575.924987px;}
.x29{left:705.209987px;}
.x27{left:717.629987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls17{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.077867pt;}
.ls13{letter-spacing:0.094720pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.154667pt;}
.ls5{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:9.760000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-2.623787pt;}
._0{margin-left:-1.045333pt;}
._1{width:1.101013pt;}
._b{width:2.206933pt;}
._7{width:3.573547pt;}
._d{width:5.099520pt;}
._5{width:6.017067pt;}
._6{width:7.127680pt;}
._c{width:8.127360pt;}
._8{width:9.455360pt;}
._11{width:10.426027pt;}
._10{width:11.420800pt;}
._15{width:12.355200pt;}
._16{width:14.206293pt;}
._14{width:15.709013pt;}
._a{width:16.959787pt;}
._12{width:18.007680pt;}
._1a{width:19.284693pt;}
._17{width:20.755413pt;}
._e{width:21.687467pt;}
._f{width:23.266560pt;}
._1d{width:24.711467pt;}
._13{width:26.859520pt;}
._1b{width:27.762560pt;}
._3{width:28.771627pt;}
._4{width:29.723520pt;}
._1c{width:30.824107pt;}
._19{width:34.672853pt;}
._18{width:35.817387pt;}
._1f{width:39.960747pt;}
._9{width:43.201067pt;}
._1e{width:842.666667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.880000pt;}
.y19{bottom:3.200000pt;}
.y3{bottom:3.232000pt;}
.ye{bottom:9.600000pt;}
.yc{bottom:12.320000pt;}
.y50{bottom:13.280000pt;}
.y4{bottom:15.392000pt;}
.y4f{bottom:15.840000pt;}
.y18{bottom:17.760000pt;}
.y2{bottom:17.792000pt;}
.y4c{bottom:18.240000pt;}
.y94{bottom:18.280000pt;}
.yb{bottom:26.880000pt;}
.y98{bottom:33.440000pt;}
.y4b{bottom:33.600000pt;}
.y93{bottom:33.640000pt;}
.y17{bottom:35.880000pt;}
.y5{bottom:40.800000pt;}
.ya{bottom:41.440000pt;}
.y4a{bottom:48.960000pt;}
.y16{bottom:49.960000pt;}
.y15{bottom:59.240000pt;}
.y1{bottom:59.520000pt;}
.y49{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:75.560000pt;}
.y48{bottom:79.680000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:91.720000pt;}
.y47{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y8f{bottom:99.072000pt;}
.y51{bottom:102.272000pt;}
.ycd{bottom:107.712000pt;}
.y12{bottom:108.680000pt;}
.y46{bottom:110.240000pt;}
.y9f{bottom:110.432000pt;}
.y8e{bottom:114.432000pt;}
.y4e{bottom:114.752000pt;}
.ycc{bottom:123.072000pt;}
.y45{bottom:125.600000pt;}
.y9e{bottom:125.792000pt;}
.y8d{bottom:129.792000pt;}
.y11{bottom:131.560000pt;}
.ycb{bottom:138.266667pt;}
.y1b{bottom:140.666667pt;}
.y44{bottom:140.960000pt;}
.y9d{bottom:140.986667pt;}
.y8c{bottom:144.986667pt;}
.y10{bottom:153.160000pt;}
.yca{bottom:153.626667pt;}
.y43{bottom:156.320000pt;}
.y9c{bottom:156.346667pt;}
.y8b{bottom:160.346667pt;}
.yaf{bottom:164.346667pt;}
.yc9{bottom:168.986667pt;}
.y42{bottom:171.560000pt;}
.y9b{bottom:171.706667pt;}
.y8a{bottom:175.706667pt;}
.yae{bottom:179.706667pt;}
.yc8{bottom:184.346667pt;}
.y41{bottom:186.920000pt;}
.y9a{bottom:187.066667pt;}
.y89{bottom:191.066667pt;}
.yad{bottom:195.066667pt;}
.yc7{bottom:199.706667pt;}
.y40{bottom:202.280000pt;}
.y99{bottom:202.426667pt;}
.y88{bottom:206.426667pt;}
.yac{bottom:207.386667pt;}
.yc6{bottom:215.066667pt;}
.y97{bottom:215.546667pt;}
.y3f{bottom:217.640000pt;}
.y87{bottom:221.786667pt;}
.yc5{bottom:230.266667pt;}
.y3e{bottom:233.000000pt;}
.y86{bottom:236.986667pt;}
.yc4{bottom:245.626667pt;}
.y3d{bottom:248.360000pt;}
.y85{bottom:252.346667pt;}
.yc3{bottom:260.986667pt;}
.y96{bottom:262.106667pt;}
.y3c{bottom:263.560000pt;}
.y84{bottom:267.706667pt;}
.yc2{bottom:276.346667pt;}
.y95{bottom:277.466667pt;}
.y3b{bottom:278.920000pt;}
.y83{bottom:283.066667pt;}
.yc1{bottom:291.706667pt;}
.y92{bottom:293.466667pt;}
.y3a{bottom:294.280000pt;}
.y82{bottom:298.426667pt;}
.yc0{bottom:307.106667pt;}
.y39{bottom:309.640000pt;}
.y81{bottom:313.666667pt;}
.ybf{bottom:322.306667pt;}
.y38{bottom:325.000000pt;}
.y80{bottom:329.026667pt;}
.ybe{bottom:337.666667pt;}
.y91{bottom:340.226667pt;}
.y37{bottom:340.360000pt;}
.y7f{bottom:344.386667pt;}
.ybd{bottom:353.026667pt;}
.y36{bottom:355.560000pt;}
.y90{bottom:356.226667pt;}
.y7e{bottom:359.746667pt;}
.ybc{bottom:368.386667pt;}
.y35{bottom:370.920000pt;}
.y7d{bottom:375.106667pt;}
.ybb{bottom:383.746667pt;}
.y34{bottom:386.280000pt;}
.y7c{bottom:390.466667pt;}
.y27{bottom:392.360000pt;}
.yba{bottom:398.946667pt;}
.y33{bottom:401.666667pt;}
.y7b{bottom:405.666667pt;}
.y26{bottom:405.986667pt;}
.yb9{bottom:414.306667pt;}
.y32{bottom:417.026667pt;}
.y7a{bottom:421.026667pt;}
.y25{bottom:421.666667pt;}
.yb8{bottom:429.666667pt;}
.y31{bottom:432.226667pt;}
.y79{bottom:436.386667pt;}
.y24{bottom:437.026667pt;}
.yb7{bottom:445.026667pt;}
.y30{bottom:447.586667pt;}
.y78{bottom:451.746667pt;}
.y23{bottom:452.226667pt;}
.yb6{bottom:460.386667pt;}
.y2f{bottom:462.946667pt;}
.yab{bottom:464.386667pt;}
.y77{bottom:467.106667pt;}
.y22{bottom:468.066667pt;}
.yb5{bottom:475.746667pt;}
.y2e{bottom:478.306667pt;}
.yaa{bottom:479.746667pt;}
.y76{bottom:482.466667pt;}
.y21{bottom:483.586667pt;}
.yb4{bottom:490.946667pt;}
.y2d{bottom:493.666667pt;}
.ya9{bottom:495.106667pt;}
.y75{bottom:497.666667pt;}
.y20{bottom:499.106667pt;}
.yb3{bottom:503.426667pt;}
.ya8{bottom:507.586667pt;}
.y2c{bottom:509.026667pt;}
.y74{bottom:513.026667pt;}
.y1f{bottom:514.466667pt;}
.y2b{bottom:524.226667pt;}
.y73{bottom:528.386667pt;}
.y1e{bottom:532.546667pt;}
.y2a{bottom:539.586667pt;}
.y72{bottom:543.773333pt;}
.y29{bottom:554.946667pt;}
.y1d{bottom:556.866667pt;}
.y71{bottom:559.133333pt;}
.y28{bottom:570.306667pt;}
.y1c{bottom:572.706667pt;}
.y70{bottom:574.493333pt;}
.y6f{bottom:589.693333pt;}
.y6e{bottom:605.053333pt;}
.y6d{bottom:620.413333pt;}
.y6c{bottom:635.773333pt;}
.y6b{bottom:651.133333pt;}
.y6a{bottom:666.333333pt;}
.y69{bottom:681.693333pt;}
.y68{bottom:697.053333pt;}
.y67{bottom:712.413333pt;}
.y1a{bottom:723.453333pt;}
.y66{bottom:727.773333pt;}
.y65{bottom:743.133333pt;}
.yf{bottom:749.693333pt;}
.y64{bottom:758.333333pt;}
.yb2{bottom:758.973333pt;}
.y63{bottom:773.693333pt;}
.yb1{bottom:774.373333pt;}
.yb0{bottom:786.853333pt;}
.y62{bottom:789.093333pt;}
.ya7{bottom:799.173333pt;}
.y61{bottom:804.453333pt;}
.yce{bottom:809.093333pt;}
.ya6{bottom:812.293333pt;}
.y60{bottom:819.813333pt;}
.ya5{bottom:828.293333pt;}
.y5f{bottom:835.173333pt;}
.ya4{bottom:844.293333pt;}
.y5e{bottom:850.373333pt;}
.ya3{bottom:860.293333pt;}
.y5d{bottom:865.733333pt;}
.ya2{bottom:876.293333pt;}
.y5c{bottom:881.093333pt;}
.ya1{bottom:892.133333pt;}
.y5b{bottom:896.453333pt;}
.ya0{bottom:908.133333pt;}
.y5a{bottom:911.813333pt;}
.yd{bottom:916.293333pt;}
.y59{bottom:927.013333pt;}
.y6{bottom:938.853333pt;}
.y58{bottom:942.373333pt;}
.y57{bottom:957.733333pt;}
.y56{bottom:973.093333pt;}
.y55{bottom:988.453333pt;}
.y54{bottom:1003.813333pt;}
.y53{bottom:1019.040000pt;}
.y52{bottom:1034.400000pt;}
.h24{height:15.200000pt;}
.h21{height:15.360000pt;}
.hc{height:22.240000pt;}
.h25{height:24.131250pt;}
.h14{height:25.750000pt;}
.h1f{height:25.920000pt;}
.h16{height:26.240000pt;}
.h2{height:29.312000pt;}
.h13{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1c{height:34.505000pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h4{height:38.625000pt;}
.h26{height:38.672812pt;}
.hf{height:39.113750pt;}
.h15{height:39.190000pt;}
.ha{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h18{height:42.649687pt;}
.h20{height:42.691250pt;}
.hd{height:44.160000pt;}
.h23{height:45.920000pt;}
.h22{height:46.112000pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h7{height:108.032000pt;}
.he{height:166.586667pt;}
.h17{height:582.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:138.106667pt;}
.w8{width:196.386667pt;}
.wc{width:197.466667pt;}
.wd{width:220.826667pt;}
.wb{width:244.066667pt;}
.wa{width:331.746667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xc{left:29.792000pt;}
.x26{left:54.880000pt;}
.xe{left:61.792000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x2f{left:96.031988pt;}
.x19{left:114.106667pt;}
.x30{left:120.031988pt;}
.x16{left:122.586667pt;}
.x18{left:126.746667pt;}
.x21{left:134.106667pt;}
.x10{left:138.746667pt;}
.x1f{left:142.906667pt;}
.x1d{left:146.266667pt;}
.x22{left:151.066667pt;}
.x1c{left:152.186667pt;}
.x20{left:154.746667pt;}
.x1b{left:155.866667pt;}
.x1a{left:159.066667pt;}
.x2c{left:161.146655pt;}
.x1e{left:165.786667pt;}
.x28{left:175.866655pt;}
.x12{left:191.266667pt;}
.x11{left:192.226667pt;}
.x6{left:202.906667pt;}
.x2e{left:209.946655pt;}
.x2a{left:215.226655pt;}
.x15{left:227.386655pt;}
.x9{left:253.346667pt;}
.x13{left:261.186667pt;}
.xf{left:274.306667pt;}
.xd{left:276.866667pt;}
.x23{left:295.106655pt;}
.x7{left:306.466667pt;}
.x24{left:309.826667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x17{left:397.666667pt;}
.xa{left:402.026667pt;}
.x2b{left:408.226655pt;}
.x25{left:507.933333pt;}
.x2d{left:511.933322pt;}
.x29{left:626.853322pt;}
.x27{left:637.893322pt;}
.x3{left:663.013333pt;}
}




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