
    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_2c9d395c888f32fcc32b0f4a.woff')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_08d47311963d0bfb8eaf4534.woff')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_e271d01a78092e02bf7878ed.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a5271fbf1b43b43d5522c8e2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_682eebe1ef11c4ce5115a26b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_96627b96bcd9c58c5c989546.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_58bb8ca1b0d1763987728015.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aac3bc9d8a003c6ae2a77cb4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3bb5278192d49a7bff3487c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_b5b832aec85260fcf37215c7.woff')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_f5c3d4f956299372c74de532.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3f5165cef986e7f7863f0266.woff')format("woff");}.ffc{font-family:ffc;line-height:0.875488;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_737ab13d010b7e0bf63321ae.woff')format("woff");}.ffd{font-family:ffd;line-height:0.866699;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_a13b55ef241e80c72a43c730.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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:fff;src:url('chunks/assets/font_f9932d235d14d1eeeae286b2.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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:ff10;src:url('chunks/assets/font_3fdc02cf5829449548581e04.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908203;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:ff11;src:url('chunks/assets/font_327fae2866b83a859c2086e2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.708008;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:ff12;src:url('chunks/assets/font_a7b4d8a6ecfb4be819346569.woff')format("woff");}.ff12{font-family:ff12;line-height:0.997070;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:ff13;src:url('chunks/assets/font_306bd59270740dc5c73378b7.woff')format("woff");}.ff13{font-family:ff13;line-height:0.997070;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.350400px;}
.lsf{letter-spacing:-0.230400px;}
.ls1b{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.126000px;}
.lsb{letter-spacing:-0.107400px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015120px;}
.ls6{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.018840px;}
.ls4{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.178560px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:1.080000px;}
.ls12{letter-spacing:3.060000px;}
.ls1e{letter-spacing:3.204000px;}
.ls16{letter-spacing:5.940000px;}
.ls18{letter-spacing:11.700000px;}
.ls17{letter-spacing:12.420000px;}
.ls11{letter-spacing:16.740000px;}
.ls15{letter-spacing:24.060000px;}
.ls19{letter-spacing:28.260000px;}
.ls1d{letter-spacing:30.564000px;}
.ls14{letter-spacing:34.020000px;}
.ls13{letter-spacing:34.860000px;}
.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:-108.162840px;}
.ws2{word-spacing:-108.000000px;}
.wsf{word-spacing:-72.000000px;}
.ws6{word-spacing:-28.800000px;}
.ws5{word-spacing:-20.709600px;}
.ws0{word-spacing:-19.368000px;}
.wsa{word-spacing:-14.940000px;}
.ws12{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.536000px;}
.wsb{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.398360px;}
.ws11{word-spacing:-13.284000px;}
.ws9{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.944000px;}
.ws10{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.440000px;}
.ws13{word-spacing:-9.684000px;}
.wsd{word-spacing:-8.820000px;}
.ws8{word-spacing:-7.740000px;}
.wse{word-spacing:0.000000px;}
._7{margin-left:-4.744800px;}
._0{margin-left:-2.052000px;}
._5{margin-left:-1.020960px;}
._3{width:1.155600px;}
._4{width:3.119040px;}
._6{width:4.386240px;}
._1{width:5.443200px;}
._2{width:6.577200px;}
._b{width:7.732800px;}
._a{width:8.910000px;}
._9{width:10.098000px;}
._10{width:12.096000px;}
._c{width:15.066000px;}
._d{width:16.208400px;}
._12{width:18.684000px;}
._e{width:19.710000px;}
._16{width:21.434400px;}
._f{width:22.680000px;}
._11{width:23.706000px;}
._14{width:24.782400px;}
._8{width:29.231280px;}
._15{width:30.564000px;}
._13{width:34.632000px;}
.fc2{color:rgb(10,80,164);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.960000px;}
.fsd{font-size:35.280000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:45.504000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y52{bottom:18.900000px;}
.y6{bottom:19.620000px;}
.y51{bottom:37.980000px;}
.ya{bottom:61.020000px;}
.y9{bottom:75.096000px;}
.y8{bottom:89.316000px;}
.y7{bottom:103.536000px;}
.yf{bottom:137.556000px;}
.y86{bottom:152.670000px;}
.y4e{bottom:155.550000px;}
.ye{bottom:166.710000px;}
.y85{bottom:169.770000px;}
.y4d{bottom:172.470000px;}
.yac{bottom:178.950000px;}
.y4c{bottom:189.570000px;}
.yd{bottom:192.450000px;}
.yab{bottom:196.050000px;}
.y84{bottom:196.410000px;}
.y4b{bottom:206.490000px;}
.yc{bottom:209.370000px;}
.yaa{bottom:221.970000px;}
.y83{bottom:223.410000px;}
.y4a{bottom:223.590000px;}
.yb{bottom:235.110000px;}
.ya9{bottom:239.070000px;}
.y82{bottom:240.330000px;}
.y49{bottom:240.510000px;}
.ya8{bottom:255.990000px;}
.y81{bottom:257.430000px;}
.y48{bottom:257.610000px;}
.ya7{bottom:273.090000px;}
.y80{bottom:274.350000px;}
.y47{bottom:274.530000px;}
.ya6{bottom:290.010000px;}
.y7f{bottom:291.450000px;}
.y46{bottom:296.850000px;}
.y7e{bottom:308.550000px;}
.ya5{bottom:316.830000px;}
.y45{bottom:319.170000px;}
.y7d{bottom:325.470000px;}
.y44{bottom:336.270000px;}
.y7c{bottom:342.615000px;}
.ya4{bottom:343.695000px;}
.y43{bottom:353.235000px;}
.y7b{bottom:368.535000px;}
.y42{bottom:370.335000px;}
.ya3{bottom:370.515000px;}
.yd1{bottom:371.055000px;}
.y7a{bottom:385.635000px;}
.y41{bottom:391.755000px;}
.yd0{bottom:396.975000px;}
.ya2{bottom:397.335000px;}
.y1c{bottom:397.875000px;}
.y79{bottom:402.555000px;}
.y40{bottom:408.855000px;}
.y1b{bottom:411.015000px;}
.ycf{bottom:414.075000px;}
.y78{bottom:419.655000px;}
.ya1{bottom:424.155000px;}
.y1a{bottom:424.335000px;}
.y3f{bottom:425.775000px;}
.yce{bottom:430.995000px;}
.y77{bottom:436.575000px;}
.y3e{bottom:442.875000px;}
.ya0{bottom:450.975000px;}
.y76{bottom:453.675000px;}
.ycd{bottom:457.095000px;}
.y3d{bottom:459.795000px;}
.y9f{bottom:468.075000px;}
.y75{bottom:470.595000px;}
.ycc{bottom:474.015000px;}
.y3c{bottom:476.895000px;}
.y9e{bottom:484.995000px;}
.y74{bottom:487.695000px;}
.ycb{bottom:491.115000px;}
.y3b{bottom:493.995000px;}
.y9d{bottom:502.095000px;}
.yca{bottom:508.035000px;}
.y3a{bottom:510.915000px;}
.y73{bottom:513.615000px;}
.y9c{bottom:519.015000px;}
.yc9{bottom:525.135000px;}
.y39{bottom:528.015000px;}
.y72{bottom:530.715000px;}
.y9b{bottom:536.115000px;}
.y71{bottom:547.635000px;}
.y38{bottom:550.155000px;}
.yc8{bottom:551.055000px;}
.y9a{bottom:553.035000px;}
.y70{bottom:564.735000px;}
.yc7{bottom:568.155000px;}
.y99{bottom:579.855000px;}
.y6f{bottom:581.655000px;}
.y37{bottom:591.195000px;}
.yc6{bottom:594.255000px;}
.y6e{bottom:598.755000px;}
.y98{bottom:606.705000px;}
.y36{bottom:608.145000px;}
.yc5{bottom:611.205000px;}
.y6d{bottom:615.705000px;}
.y97{bottom:623.805000px;}
.yc4{bottom:628.305000px;}
.y6c{bottom:632.805000px;}
.y35{bottom:635.685000px;}
.y96{bottom:640.725000px;}
.yc3{bottom:645.225000px;}
.y2c{bottom:648.645000px;}
.y34{bottom:649.005000px;}
.y6b{bottom:649.725000px;}
.y95{bottom:657.825000px;}
.y33{bottom:662.145000px;}
.y2b{bottom:665.565000px;}
.y6a{bottom:666.825000px;}
.yc2{bottom:671.325000px;}
.y94{bottom:674.745000px;}
.y32{bottom:675.465000px;}
.y2a{bottom:682.665000px;}
.y69{bottom:683.745000px;}
.yc1{bottom:688.245000px;}
.y31{bottom:688.605000px;}
.y93{bottom:691.845000px;}
.y29{bottom:699.585000px;}
.y68{bottom:700.845000px;}
.y30{bottom:701.925000px;}
.yc0{bottom:705.345000px;}
.y92{bottom:708.945000px;}
.y2f{bottom:715.785000px;}
.y28{bottom:716.685000px;}
.y67{bottom:717.945000px;}
.y91{bottom:725.865000px;}
.y2e{bottom:730.905000px;}
.ybf{bottom:731.265000px;}
.y27{bottom:733.785000px;}
.y66{bottom:734.865000px;}
.y90{bottom:742.965000px;}
.y2d{bottom:746.025000px;}
.ybe{bottom:748.365000px;}
.y26{bottom:750.705000px;}
.y65{bottom:751.965000px;}
.y8f{bottom:759.885000px;}
.ybd{bottom:765.285000px;}
.y25{bottom:767.805000px;}
.y64{bottom:768.885000px;}
.y63{bottom:785.985000px;}
.y24{bottom:789.945000px;}
.ybc{bottom:791.385000px;}
.y62{bottom:802.905000px;}
.ybb{bottom:808.305000px;}
.y19{bottom:812.265000px;}
.y61{bottom:820.005000px;}
.y18{bottom:825.405000px;}
.y23{bottom:831.885000px;}
.y8e{bottom:836.925000px;}
.y17{bottom:843.945000px;}
.y60{bottom:845.925000px;}
.yba{bottom:851.325000px;}
.y22{bottom:851.685000px;}
.y8d{bottom:854.025000px;}
.y16{bottom:857.445000px;}
.y5f{bottom:863.025000px;}
.y21{bottom:866.085000px;}
.yb9{bottom:868.425000px;}
.y8c{bottom:870.945000px;}
.y15{bottom:875.130000px;}
.y5e{bottom:879.990000px;}
.y20{bottom:886.470000px;}
.y8b{bottom:888.090000px;}
.y14{bottom:893.670000px;}
.yb8{bottom:894.390000px;}
.y5d{bottom:897.090000px;}
.y8a{bottom:905.010000px;}
.y1f{bottom:906.090000px;}
.y13{bottom:911.310000px;}
.yb7{bottom:911.490000px;}
.y5c{bottom:914.010000px;}
.y1e{bottom:920.490000px;}
.y89{bottom:922.110000px;}
.yb6{bottom:928.410000px;}
.y5b{bottom:931.110000px;}
.y88{bottom:939.030000px;}
.y1d{bottom:940.110000px;}
.yb5{bottom:945.510000px;}
.y5a{bottom:948.030000px;}
.y87{bottom:956.130000px;}
.y3{bottom:957.930000px;}
.yb4{bottom:962.430000px;}
.y59{bottom:965.130000px;}
.y12{bottom:966.030000px;}
.y58{bottom:982.050000px;}
.y2{bottom:983.670000px;}
.yb3{bottom:988.530000px;}
.y11{bottom:989.610000px;}
.y57{bottom:999.150000px;}
.yb2{bottom:1005.630000px;}
.y1{bottom:1009.410000px;}
.y10{bottom:1015.710000px;}
.y56{bottom:1016.070000px;}
.yb1{bottom:1022.550000px;}
.y55{bottom:1033.170000px;}
.yb0{bottom:1039.650000px;}
.y54{bottom:1050.090000px;}
.yaf{bottom:1066.290000px;}
.y53{bottom:1067.190000px;}
.yae{bottom:1121.910000px;}
.y5{bottom:1127.850000px;}
.yad{bottom:1134.690000px;}
.y50{bottom:1159.380000px;}
.y4{bottom:1169.280000px;}
.y4f{bottom:1185.480000px;}
.h11{height:25.517812px;}
.h1c{height:28.283203px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h6{height:31.672266px;}
.h7{height:31.772812px;}
.ha{height:32.152148px;}
.hc{height:32.248125px;}
.hb{height:32.717461px;}
.h15{height:33.683203px;}
.h14{height:34.036523px;}
.h8{height:36.180000px;}
.h13{height:37.705078px;}
.h19{height:37.805625px;}
.h17{height:38.100586px;}
.h16{height:38.202187px;}
.h10{height:39.760312px;}
.h12{height:42.164648px;}
.hf{height:46.397813px;}
.h1b{height:47.980898px;}
.h18{height:48.393984px;}
.h1a{height:51.644531px;}
.h2{height:56.566406px;}
.h9{height:59.436914px;}
.h5{height:59.439023px;}
.h4{height:77.466797px;}
.h3{height:77.570086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:65.699987px;}
.x1{left:70.559987px;}
.x13{left:86.795987px;}
.x7{left:104.075987px;}
.x8{left:183.269987px;}
.x5{left:224.849987px;}
.x6{left:260.129987px;}
.x9{left:263.189987px;}
.xc{left:366.194987px;}
.x4{left:438.194987px;}
.xd{left:439.994987px;}
.xf{left:442.154987px;}
.x10{left:462.674987px;}
.x11{left:600.044987px;}
.x12{left:721.409987px;}
.x3{left:741.029987px;}
.x2{left:762.809987px;}
.xb{left:775.949987px;}
.xa{left:790.709987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.311467pt;}
.lsf{letter-spacing:-0.204800pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.112000pt;}
.lsb{letter-spacing:-0.095467pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013440pt;}
.ls6{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.016747pt;}
.ls4{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.158720pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls12{letter-spacing:2.720000pt;}
.ls1e{letter-spacing:2.848000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls18{letter-spacing:10.400000pt;}
.ls17{letter-spacing:11.040000pt;}
.ls11{letter-spacing:14.880000pt;}
.ls15{letter-spacing:21.386667pt;}
.ls19{letter-spacing:25.120000pt;}
.ls1d{letter-spacing:27.168000pt;}
.ls14{letter-spacing:30.240000pt;}
.ls13{letter-spacing:30.986667pt;}
.ws1{word-spacing:-96.144747pt;}
.ws2{word-spacing:-96.000000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws6{word-spacing:-25.600000pt;}
.ws5{word-spacing:-18.408533pt;}
.ws0{word-spacing:-17.216000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.032000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.909653pt;}
.ws11{word-spacing:-11.808000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.728000pt;}
.ws10{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.280000pt;}
.ws13{word-spacing:-8.608000pt;}
.wsd{word-spacing:-7.840000pt;}
.ws8{word-spacing:-6.880000pt;}
.wse{word-spacing:0.000000pt;}
._7{margin-left:-4.217600pt;}
._0{margin-left:-1.824000pt;}
._5{margin-left:-0.907520pt;}
._3{width:1.027200pt;}
._4{width:2.772480pt;}
._6{width:3.898880pt;}
._1{width:4.838400pt;}
._2{width:5.846400pt;}
._b{width:6.873600pt;}
._a{width:7.920000pt;}
._9{width:8.976000pt;}
._10{width:10.752000pt;}
._c{width:13.392000pt;}
._d{width:14.407467pt;}
._12{width:16.608000pt;}
._e{width:17.520000pt;}
._16{width:19.052800pt;}
._f{width:20.160000pt;}
._11{width:21.072000pt;}
._14{width:22.028800pt;}
._8{width:25.983360pt;}
._15{width:27.168000pt;}
._13{width:30.784000pt;}
.fsa{font-size:27.520000pt;}
.fsd{font-size:31.360000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:40.448000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:16.800000pt;}
.y6{bottom:17.440000pt;}
.y51{bottom:33.760000pt;}
.ya{bottom:54.240000pt;}
.y9{bottom:66.752000pt;}
.y8{bottom:79.392000pt;}
.y7{bottom:92.032000pt;}
.yf{bottom:122.272000pt;}
.y86{bottom:135.706667pt;}
.y4e{bottom:138.266667pt;}
.ye{bottom:148.186667pt;}
.y85{bottom:150.906667pt;}
.y4d{bottom:153.306667pt;}
.yac{bottom:159.066667pt;}
.y4c{bottom:168.506667pt;}
.yd{bottom:171.066667pt;}
.yab{bottom:174.266667pt;}
.y84{bottom:174.586667pt;}
.y4b{bottom:183.546667pt;}
.yc{bottom:186.106667pt;}
.yaa{bottom:197.306667pt;}
.y83{bottom:198.586667pt;}
.y4a{bottom:198.746667pt;}
.yb{bottom:208.986667pt;}
.ya9{bottom:212.506667pt;}
.y82{bottom:213.626667pt;}
.y49{bottom:213.786667pt;}
.ya8{bottom:227.546667pt;}
.y81{bottom:228.826667pt;}
.y48{bottom:228.986667pt;}
.ya7{bottom:242.746667pt;}
.y80{bottom:243.866667pt;}
.y47{bottom:244.026667pt;}
.ya6{bottom:257.786667pt;}
.y7f{bottom:259.066667pt;}
.y46{bottom:263.866667pt;}
.y7e{bottom:274.266667pt;}
.ya5{bottom:281.626667pt;}
.y45{bottom:283.706667pt;}
.y7d{bottom:289.306667pt;}
.y44{bottom:298.906667pt;}
.y7c{bottom:304.546667pt;}
.ya4{bottom:305.506667pt;}
.y43{bottom:313.986667pt;}
.y7b{bottom:327.586667pt;}
.y42{bottom:329.186667pt;}
.ya3{bottom:329.346667pt;}
.yd1{bottom:329.826667pt;}
.y7a{bottom:342.786667pt;}
.y41{bottom:348.226667pt;}
.yd0{bottom:352.866667pt;}
.ya2{bottom:353.186667pt;}
.y1c{bottom:353.666667pt;}
.y79{bottom:357.826667pt;}
.y40{bottom:363.426667pt;}
.y1b{bottom:365.346667pt;}
.ycf{bottom:368.066667pt;}
.y78{bottom:373.026667pt;}
.ya1{bottom:377.026667pt;}
.y1a{bottom:377.186667pt;}
.y3f{bottom:378.466667pt;}
.yce{bottom:383.106667pt;}
.y77{bottom:388.066667pt;}
.y3e{bottom:393.666667pt;}
.ya0{bottom:400.866667pt;}
.y76{bottom:403.266667pt;}
.ycd{bottom:406.306667pt;}
.y3d{bottom:408.706667pt;}
.y9f{bottom:416.066667pt;}
.y75{bottom:418.306667pt;}
.ycc{bottom:421.346667pt;}
.y3c{bottom:423.906667pt;}
.y9e{bottom:431.106667pt;}
.y74{bottom:433.506667pt;}
.ycb{bottom:436.546667pt;}
.y3b{bottom:439.106667pt;}
.y9d{bottom:446.306667pt;}
.yca{bottom:451.586667pt;}
.y3a{bottom:454.146667pt;}
.y73{bottom:456.546667pt;}
.y9c{bottom:461.346667pt;}
.yc9{bottom:466.786667pt;}
.y39{bottom:469.346667pt;}
.y72{bottom:471.746667pt;}
.y9b{bottom:476.546667pt;}
.y71{bottom:486.786667pt;}
.y38{bottom:489.026667pt;}
.yc8{bottom:489.826667pt;}
.y9a{bottom:491.586667pt;}
.y70{bottom:501.986667pt;}
.yc7{bottom:505.026667pt;}
.y99{bottom:515.426667pt;}
.y6f{bottom:517.026667pt;}
.y37{bottom:525.506667pt;}
.yc6{bottom:528.226667pt;}
.y6e{bottom:532.226667pt;}
.y98{bottom:539.293333pt;}
.y36{bottom:540.573333pt;}
.yc5{bottom:543.293333pt;}
.y6d{bottom:547.293333pt;}
.y97{bottom:554.493333pt;}
.yc4{bottom:558.493333pt;}
.y6c{bottom:562.493333pt;}
.y35{bottom:565.053333pt;}
.y96{bottom:569.533333pt;}
.yc3{bottom:573.533333pt;}
.y2c{bottom:576.573333pt;}
.y34{bottom:576.893333pt;}
.y6b{bottom:577.533333pt;}
.y95{bottom:584.733333pt;}
.y33{bottom:588.573333pt;}
.y2b{bottom:591.613333pt;}
.y6a{bottom:592.733333pt;}
.yc2{bottom:596.733333pt;}
.y94{bottom:599.773333pt;}
.y32{bottom:600.413333pt;}
.y2a{bottom:606.813333pt;}
.y69{bottom:607.773333pt;}
.yc1{bottom:611.773333pt;}
.y31{bottom:612.093333pt;}
.y93{bottom:614.973333pt;}
.y29{bottom:621.853333pt;}
.y68{bottom:622.973333pt;}
.y30{bottom:623.933333pt;}
.yc0{bottom:626.973333pt;}
.y92{bottom:630.173333pt;}
.y2f{bottom:636.253333pt;}
.y28{bottom:637.053333pt;}
.y67{bottom:638.173333pt;}
.y91{bottom:645.213333pt;}
.y2e{bottom:649.693333pt;}
.ybf{bottom:650.013333pt;}
.y27{bottom:652.253333pt;}
.y66{bottom:653.213333pt;}
.y90{bottom:660.413333pt;}
.y2d{bottom:663.133333pt;}
.ybe{bottom:665.213333pt;}
.y26{bottom:667.293333pt;}
.y65{bottom:668.413333pt;}
.y8f{bottom:675.453333pt;}
.ybd{bottom:680.253333pt;}
.y25{bottom:682.493333pt;}
.y64{bottom:683.453333pt;}
.y63{bottom:698.653333pt;}
.y24{bottom:702.173333pt;}
.ybc{bottom:703.453333pt;}
.y62{bottom:713.693333pt;}
.ybb{bottom:718.493333pt;}
.y19{bottom:722.013333pt;}
.y61{bottom:728.893333pt;}
.y18{bottom:733.693333pt;}
.y23{bottom:739.453333pt;}
.y8e{bottom:743.933333pt;}
.y17{bottom:750.173333pt;}
.y60{bottom:751.933333pt;}
.yba{bottom:756.733333pt;}
.y22{bottom:757.053333pt;}
.y8d{bottom:759.133333pt;}
.y16{bottom:762.173333pt;}
.y5f{bottom:767.133333pt;}
.y21{bottom:769.853333pt;}
.yb9{bottom:771.933333pt;}
.y8c{bottom:774.173333pt;}
.y15{bottom:777.893333pt;}
.y5e{bottom:782.213333pt;}
.y20{bottom:787.973333pt;}
.y8b{bottom:789.413333pt;}
.y14{bottom:794.373333pt;}
.yb8{bottom:795.013333pt;}
.y5d{bottom:797.413333pt;}
.y8a{bottom:804.453333pt;}
.y1f{bottom:805.413333pt;}
.y13{bottom:810.053333pt;}
.yb7{bottom:810.213333pt;}
.y5c{bottom:812.453333pt;}
.y1e{bottom:818.213333pt;}
.y89{bottom:819.653333pt;}
.yb6{bottom:825.253333pt;}
.y5b{bottom:827.653333pt;}
.y88{bottom:834.693333pt;}
.y1d{bottom:835.653333pt;}
.yb5{bottom:840.453333pt;}
.y5a{bottom:842.693333pt;}
.y87{bottom:849.893333pt;}
.y3{bottom:851.493333pt;}
.yb4{bottom:855.493333pt;}
.y59{bottom:857.893333pt;}
.y12{bottom:858.693333pt;}
.y58{bottom:872.933333pt;}
.y2{bottom:874.373333pt;}
.yb3{bottom:878.693333pt;}
.y11{bottom:879.653333pt;}
.y57{bottom:888.133333pt;}
.yb2{bottom:893.893333pt;}
.y1{bottom:897.253333pt;}
.y10{bottom:902.853333pt;}
.y56{bottom:903.173333pt;}
.yb1{bottom:908.933333pt;}
.y55{bottom:918.373333pt;}
.yb0{bottom:924.133333pt;}
.y54{bottom:933.413333pt;}
.yaf{bottom:947.813333pt;}
.y53{bottom:948.613333pt;}
.yae{bottom:997.253333pt;}
.y5{bottom:1002.533333pt;}
.yad{bottom:1008.613333pt;}
.y50{bottom:1030.560000pt;}
.y4{bottom:1039.360000pt;}
.y4f{bottom:1053.760000pt;}
.h11{height:22.682500pt;}
.h1c{height:25.140625pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h6{height:28.153125pt;}
.h7{height:28.242500pt;}
.ha{height:28.579687pt;}
.hc{height:28.665000pt;}
.hb{height:29.082187pt;}
.h15{height:29.940625pt;}
.h14{height:30.254687pt;}
.h8{height:32.160000pt;}
.h13{height:33.515625pt;}
.h19{height:33.605000pt;}
.h17{height:33.867188pt;}
.h16{height:33.957500pt;}
.h10{height:35.342500pt;}
.h12{height:37.479688pt;}
.hf{height:41.242500pt;}
.h1b{height:42.649687pt;}
.h18{height:43.016875pt;}
.h1a{height:45.906250pt;}
.h2{height:50.281250pt;}
.h9{height:52.832812pt;}
.h5{height:52.834688pt;}
.h4{height:68.859375pt;}
.h3{height:68.951188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:58.399988pt;}
.x1{left:62.719988pt;}
.x13{left:77.151988pt;}
.x7{left:92.511988pt;}
.x8{left:162.906655pt;}
.x5{left:199.866655pt;}
.x6{left:231.226655pt;}
.x9{left:233.946655pt;}
.xc{left:325.506655pt;}
.x4{left:389.506655pt;}
.xd{left:391.106655pt;}
.xf{left:393.026655pt;}
.x10{left:411.266655pt;}
.x11{left:533.373322pt;}
.x12{left:641.253322pt;}
.x3{left:658.693322pt;}
.x2{left:678.053322pt;}
.xb{left:689.733322pt;}
.xa{left:702.853322pt;}
}




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