
    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_d23bd2ab149d04e4f09c5f72.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_3390f9cb998f6e187d586118.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_9a5f1cfeb089f84f97e97cc4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_188005efd90de7ce671ef198.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2e21a943f1cb07a59a669fc0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.737793;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_111cd0f6b81091dd29112278.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_d75ca048c2f64dfb130adf33.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b962c6e9f13a40317fcb1079.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5af67645b115af5d549c606a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_64f2e5fd8a0a65a96c4edd11.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_571f50d95d9821a47bf48827.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4a8a80e5d478fb5ade3e4f74.woff')format("woff");}.ffe{font-family:ffe;line-height:0.683105;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_eee932040b43dd280030b3f1.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b27c16690a07762878ee351e.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.178800px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.198000px;}
.lse{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.315360px;}
.lsc{letter-spacing:0.315600px;}
.ls6{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.900000px;}
.ls2{letter-spacing:5.400000px;}
.ls1{letter-spacing:10.260000px;}
.ls0{letter-spacing:71.400000px;}
.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;}
}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.755600px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.261200px;}
.ws7{word-spacing:-9.000000px;}
.ws1{word-spacing:-6.840000px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:61.560000px;}
._24{margin-left:-3.346560px;}
._2{margin-left:-1.147920px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._12{width:3.944160px;}
._15{width:6.633360px;}
._6{width:8.498400px;}
._5{width:9.800640px;}
._11{width:11.027520px;}
._1d{width:12.430080px;}
._27{width:13.878720px;}
._8{width:16.047360px;}
._9{width:17.390160px;}
._d{width:18.824400px;}
._c{width:20.019600px;}
._23{width:21.214800px;}
._14{width:22.947840px;}
._18{width:23.963760px;}
._26{width:25.756560px;}
._e{width:27.549360px;}
._1c{width:28.565280px;}
._b{width:29.880000px;}
._a{width:31.179120px;}
._f{width:32.927760px;}
._10{width:34.214400px;}
._13{width:36.274320px;}
._22{width:37.633200px;}
._29{width:38.742000px;}
._19{width:39.795840px;}
._1a{width:40.907520px;}
._1b{width:42.055440px;}
._20{width:45.895680px;}
._21{width:46.915200px;}
._17{width:48.258000px;}
._16{width:49.720320px;}
._1e{width:51.572880px;}
._1f{width:52.588800px;}
._7{width:60.716160px;}
._25{width:62.090640px;}
._2d{width:64.430880px;}
._3{width:65.496000px;}
._2a{width:89.341200px;}
._4{width:199.620000px;}
._2c{width:271.162800px;}
._2b{width:272.326320px;}
._28{width:285.870000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fsc{font-size:5.760000px;}
.fse{font-size:6.000000px;}
.fs5{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y58{bottom:-239.970000px;}
.y57{bottom:-206.130000px;}
.y56{bottom:-172.470000px;}
.y46{bottom:-164.550000px;}
.y64{bottom:-159.510000px;}
.y55{bottom:-138.630000px;}
.y45{bottom:-130.710000px;}
.y63{bottom:-125.850000px;}
.y54{bottom:-104.940000px;}
.y44{bottom:-97.050000px;}
.y62{bottom:-91.980000px;}
.y53{bottom:-71.100000px;}
.y43{bottom:-63.180000px;}
.y61{bottom:-58.320000px;}
.y52{bottom:-37.440000px;}
.y42{bottom:-29.520000px;}
.y49{bottom:-27.360000px;}
.y60{bottom:-24.480000px;}
.y66{bottom:-17.922750px;}
.y51{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.y41{bottom:0.720000px;}
.ya5{bottom:1.837500px;}
.y2{bottom:3.960000px;}
.y48{bottom:5.580000px;}
.y4b{bottom:5.760000px;}
.y5f{bottom:5.940000px;}
.y40{bottom:12.600000px;}
.y5{bottom:12.780000px;}
.y50{bottom:14.400000px;}
.y5e{bottom:16.560000px;}
.y3f{bottom:24.660000px;}
.y4{bottom:24.840000px;}
.y6{bottom:26.100000px;}
.y4f{bottom:26.460000px;}
.y5d{bottom:28.800000px;}
.y3e{bottom:36.720000px;}
.y4e{bottom:38.520000px;}
.y5c{bottom:40.860000px;}
.y3{bottom:41.580000px;}
.y3d{bottom:48.780000px;}
.y4d{bottom:50.760000px;}
.y5b{bottom:52.920000px;}
.y6a{bottom:57.060000px;}
.y3c{bottom:60.840000px;}
.y65{bottom:63.780000px;}
.y5a{bottom:69.840000px;}
.y69{bottom:72.180000px;}
.y3b{bottom:73.260000px;}
.y1{bottom:75.960000px;}
.y9a{bottom:118.620000px;}
.y39{bottom:122.220000px;}
.y99{bottom:138.420000px;}
.y38{bottom:142.020000px;}
.y98{bottom:158.220000px;}
.y37{bottom:161.820000px;}
.y97{bottom:178.050000px;}
.y36{bottom:181.830000px;}
.y96{bottom:197.850000px;}
.y35{bottom:201.630000px;}
.y95{bottom:217.830000px;}
.y34{bottom:221.430000px;}
.y94{bottom:237.630000px;}
.y33{bottom:241.230000px;}
.y93{bottom:257.430000px;}
.y32{bottom:261.030000px;}
.y92{bottom:277.230000px;}
.y31{bottom:281.010000px;}
.y91{bottom:297.030000px;}
.y30{bottom:300.810000px;}
.y90{bottom:317.010000px;}
.y2f{bottom:320.610000px;}
.y8f{bottom:336.810000px;}
.y2e{bottom:340.410000px;}
.y8e{bottom:356.610000px;}
.y2d{bottom:360.210000px;}
.y8d{bottom:376.410000px;}
.y2c{bottom:380.190000px;}
.y8c{bottom:396.255000px;}
.y2b{bottom:400.035000px;}
.y8b{bottom:416.235000px;}
.y2a{bottom:419.835000px;}
.y8a{bottom:436.035000px;}
.y29{bottom:439.635000px;}
.y89{bottom:455.835000px;}
.y28{bottom:459.435000px;}
.y88{bottom:475.635000px;}
.y27{bottom:479.415000px;}
.y87{bottom:495.435000px;}
.y26{bottom:499.215000px;}
.y86{bottom:515.415000px;}
.y25{bottom:519.015000px;}
.y85{bottom:535.215000px;}
.y24{bottom:538.815000px;}
.y84{bottom:555.015000px;}
.y23{bottom:558.615000px;}
.y83{bottom:574.815000px;}
.y22{bottom:578.595000px;}
.y82{bottom:594.615000px;}
.y21{bottom:598.395000px;}
.y81{bottom:614.595000px;}
.y20{bottom:618.195000px;}
.y80{bottom:634.425000px;}
.y1f{bottom:638.025000px;}
.y7f{bottom:654.225000px;}
.y1e{bottom:657.825000px;}
.y7e{bottom:674.025000px;}
.y1d{bottom:677.805000px;}
.y1c{bottom:692.025000px;}
.y7d{bottom:693.825000px;}
.y1b{bottom:696.165000px;}
.y3a{bottom:711.825000px;}
.y7c{bottom:713.805000px;}
.y59{bottom:717.225000px;}
.y1a{bottom:719.385000px;}
.y7b{bottom:733.605000px;}
.y19{bottom:734.325000px;}
.y4c{bottom:735.225000px;}
.y18{bottom:748.185000px;}
.y7a{bottom:753.405000px;}
.y17{bottom:761.865000px;}
.y79{bottom:773.205000px;}
.y16{bottom:775.725000px;}
.y15{bottom:789.585000px;}
.y78{bottom:793.005000px;}
.y14{bottom:802.185000px;}
.y13{bottom:808.665000px;}
.y77{bottom:812.985000px;}
.ya4{bottom:830.985000px;}
.y76{bottom:832.785000px;}
.y12{bottom:835.485000px;}
.y11{bottom:846.645000px;}
.ya3{bottom:850.785000px;}
.y75{bottom:852.585000px;}
.y10{bottom:866.130000px;}
.ya2{bottom:870.630000px;}
.y74{bottom:872.430000px;}
.yf{bottom:878.730000px;}
.ya1{bottom:890.430000px;}
.y73{bottom:892.230000px;}
.ye{bottom:894.570000px;}
.yd{bottom:910.230000px;}
.y72{bottom:912.210000px;}
.yc{bottom:923.370000px;}
.ya0{bottom:930.210000px;}
.y71{bottom:932.010000px;}
.yb{bottom:944.250000px;}
.y9f{bottom:950.010000px;}
.y70{bottom:951.810000px;}
.ya{bottom:963.330000px;}
.y9e{bottom:969.810000px;}
.y6f{bottom:971.610000px;}
.y9d{bottom:989.610000px;}
.y9{bottom:991.050000px;}
.y6e{bottom:991.410000px;}
.y9c{bottom:1009.410000px;}
.y6d{bottom:1011.030000px;}
.y8{bottom:1018.590000px;}
.y9b{bottom:1029.390000px;}
.y6c{bottom:1049.190000px;}
.y7{bottom:1060.350000px;}
.y6b{bottom:1068.990000px;}
.y4a{bottom:1085.940000px;}
.y68{bottom:1102.320000px;}
.y67{bottom:1124.100000px;}
.y47{bottom:1132.200000px;}
.h5{height:2.826563px;}
.h14{height:5.653125px;}
.h23{height:6.257812px;}
.h2{height:13.500000px;}
.h16{height:19.080000px;}
.h17{height:22.320000px;}
.hb{height:26.852344px;}
.he{height:30.963516px;}
.h4{height:34.380000px;}
.h1b{height:36.281250px;}
.h1e{height:37.002327px;}
.h22{height:37.937688px;}
.h6{height:40.985156px;}
.h1d{height:42.086250px;}
.h1c{height:42.922699px;}
.hc{height:44.518359px;}
.h11{height:47.344922px;}
.h13{height:48.616875px;}
.h21{height:52.971680px;}
.h1f{height:52.998047px;}
.h12{height:54.421875px;}
.h10{height:55.291992px;}
.h3{height:58.651172px;}
.hf{height:59.255056px;}
.ha{height:60.226875px;}
.h19{height:61.740000px;}
.h7{height:65.884219px;}
.hd{height:72.562500px;}
.h18{height:74.953125px;}
.h20{height:75.093750px;}
.h1a{height:77.940000px;}
.h15{height:84.240000px;}
.h9{height:96.508125px;}
.h8{height:99.687656px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.071000px;}
.w8{width:154.635000px;}
.w5{width:186.885000px;}
.w9{width:270.795000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w7{width:743.355000px;}
.w6{width:758.655000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:4.252500px;}
.x2{left:8.091000px;}
.xf{left:10.815000px;}
.x15{left:21.255000px;}
.x3{left:73.965000px;}
.x10{left:81.405000px;}
.x11{left:86.445000px;}
.x13{left:94.545000px;}
.x1{left:108.045000px;}
.x6{left:116.136000px;}
.xc{left:132.696000px;}
.x1a{left:135.036000px;}
.x5{left:138.276000px;}
.xa{left:167.070000px;}
.x4{left:190.125000px;}
.x17{left:198.390000px;}
.x18{left:200.730000px;}
.x9{left:284.475000px;}
.x12{left:298.290000px;}
.x14{left:325.515000px;}
.x7{left:327.135000px;}
.x8{left:442.185000px;}
.xb{left:446.505000px;}
.xd{left:492.945000px;}
.x16{left:620.253000px;}
.xe{left:639.855000px;}
.x19{left:823.680000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.158933pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.280320pt;}
.lsc{letter-spacing:0.280533pt;}
.ls6{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls2{letter-spacing:4.800000pt;}
.ls1{letter-spacing:9.120000pt;}
.ls0{letter-spacing:63.466667pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.560533pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.121067pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.080000pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:54.720000pt;}
._24{margin-left:-2.974720pt;}
._2{margin-left:-1.020373pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._12{width:3.505920pt;}
._15{width:5.896320pt;}
._6{width:7.554133pt;}
._5{width:8.711680pt;}
._11{width:9.802240pt;}
._1d{width:11.048960pt;}
._27{width:12.336640pt;}
._8{width:14.264320pt;}
._9{width:15.457920pt;}
._d{width:16.732800pt;}
._c{width:17.795200pt;}
._23{width:18.857600pt;}
._14{width:20.398080pt;}
._18{width:21.301120pt;}
._26{width:22.894720pt;}
._e{width:24.488320pt;}
._1c{width:25.391360pt;}
._b{width:26.560000pt;}
._a{width:27.714773pt;}
._f{width:29.269120pt;}
._10{width:30.412800pt;}
._13{width:32.243840pt;}
._22{width:33.451733pt;}
._29{width:34.437333pt;}
._19{width:35.374080pt;}
._1a{width:36.362240pt;}
._1b{width:37.382613pt;}
._20{width:40.796160pt;}
._21{width:41.702400pt;}
._17{width:42.896000pt;}
._16{width:44.195840pt;}
._1e{width:45.842560pt;}
._1f{width:46.745600pt;}
._7{width:53.969920pt;}
._25{width:55.191680pt;}
._2d{width:57.271893pt;}
._3{width:58.218667pt;}
._2a{width:79.414400pt;}
._4{width:177.440000pt;}
._2c{width:241.033600pt;}
._2b{width:242.067840pt;}
._28{width:254.106667pt;}
.fs2{font-size:2.560000pt;}
.fsc{font-size:5.120000pt;}
.fse{font-size:5.333333pt;}
.fs5{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y58{bottom:-213.306667pt;}
.y57{bottom:-183.226667pt;}
.y56{bottom:-153.306667pt;}
.y46{bottom:-146.266667pt;}
.y64{bottom:-141.786667pt;}
.y55{bottom:-123.226667pt;}
.y45{bottom:-116.186667pt;}
.y63{bottom:-111.866667pt;}
.y54{bottom:-93.280000pt;}
.y44{bottom:-86.266667pt;}
.y62{bottom:-81.760000pt;}
.y53{bottom:-63.200000pt;}
.y43{bottom:-56.160000pt;}
.y61{bottom:-51.840000pt;}
.y52{bottom:-33.280000pt;}
.y42{bottom:-26.240000pt;}
.y49{bottom:-24.320000pt;}
.y60{bottom:-21.760000pt;}
.y66{bottom:-15.931333pt;}
.y51{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:0.640000pt;}
.ya5{bottom:1.633333pt;}
.y2{bottom:3.520000pt;}
.y48{bottom:4.960000pt;}
.y4b{bottom:5.120000pt;}
.y5f{bottom:5.280000pt;}
.y40{bottom:11.200000pt;}
.y5{bottom:11.360000pt;}
.y50{bottom:12.800000pt;}
.y5e{bottom:14.720000pt;}
.y3f{bottom:21.920000pt;}
.y4{bottom:22.080000pt;}
.y6{bottom:23.200000pt;}
.y4f{bottom:23.520000pt;}
.y5d{bottom:25.600000pt;}
.y3e{bottom:32.640000pt;}
.y4e{bottom:34.240000pt;}
.y5c{bottom:36.320000pt;}
.y3{bottom:36.960000pt;}
.y3d{bottom:43.360000pt;}
.y4d{bottom:45.120000pt;}
.y5b{bottom:47.040000pt;}
.y6a{bottom:50.720000pt;}
.y3c{bottom:54.080000pt;}
.y65{bottom:56.693333pt;}
.y5a{bottom:62.080000pt;}
.y69{bottom:64.160000pt;}
.y3b{bottom:65.120000pt;}
.y1{bottom:67.520000pt;}
.y9a{bottom:105.440000pt;}
.y39{bottom:108.640000pt;}
.y99{bottom:123.040000pt;}
.y38{bottom:126.240000pt;}
.y98{bottom:140.640000pt;}
.y37{bottom:143.840000pt;}
.y97{bottom:158.266667pt;}
.y36{bottom:161.626667pt;}
.y96{bottom:175.866667pt;}
.y35{bottom:179.226667pt;}
.y95{bottom:193.626667pt;}
.y34{bottom:196.826667pt;}
.y94{bottom:211.226667pt;}
.y33{bottom:214.426667pt;}
.y93{bottom:228.826667pt;}
.y32{bottom:232.026667pt;}
.y92{bottom:246.426667pt;}
.y31{bottom:249.786667pt;}
.y91{bottom:264.026667pt;}
.y30{bottom:267.386667pt;}
.y90{bottom:281.786667pt;}
.y2f{bottom:284.986667pt;}
.y8f{bottom:299.386667pt;}
.y2e{bottom:302.586667pt;}
.y8e{bottom:316.986667pt;}
.y2d{bottom:320.186667pt;}
.y8d{bottom:334.586667pt;}
.y2c{bottom:337.946667pt;}
.y8c{bottom:352.226667pt;}
.y2b{bottom:355.586667pt;}
.y8b{bottom:369.986667pt;}
.y2a{bottom:373.186667pt;}
.y8a{bottom:387.586667pt;}
.y29{bottom:390.786667pt;}
.y89{bottom:405.186667pt;}
.y28{bottom:408.386667pt;}
.y88{bottom:422.786667pt;}
.y27{bottom:426.146667pt;}
.y87{bottom:440.386667pt;}
.y26{bottom:443.746667pt;}
.y86{bottom:458.146667pt;}
.y25{bottom:461.346667pt;}
.y85{bottom:475.746667pt;}
.y24{bottom:478.946667pt;}
.y84{bottom:493.346667pt;}
.y23{bottom:496.546667pt;}
.y83{bottom:510.946667pt;}
.y22{bottom:514.306667pt;}
.y82{bottom:528.546667pt;}
.y21{bottom:531.906667pt;}
.y81{bottom:546.306667pt;}
.y20{bottom:549.506667pt;}
.y80{bottom:563.933333pt;}
.y1f{bottom:567.133333pt;}
.y7f{bottom:581.533333pt;}
.y1e{bottom:584.733333pt;}
.y7e{bottom:599.133333pt;}
.y1d{bottom:602.493333pt;}
.y1c{bottom:615.133333pt;}
.y7d{bottom:616.733333pt;}
.y1b{bottom:618.813333pt;}
.y3a{bottom:632.733333pt;}
.y7c{bottom:634.493333pt;}
.y59{bottom:637.533333pt;}
.y1a{bottom:639.453333pt;}
.y7b{bottom:652.093333pt;}
.y19{bottom:652.733333pt;}
.y4c{bottom:653.533333pt;}
.y18{bottom:665.053333pt;}
.y7a{bottom:669.693333pt;}
.y17{bottom:677.213333pt;}
.y79{bottom:687.293333pt;}
.y16{bottom:689.533333pt;}
.y15{bottom:701.853333pt;}
.y78{bottom:704.893333pt;}
.y14{bottom:713.053333pt;}
.y13{bottom:718.813333pt;}
.y77{bottom:722.653333pt;}
.ya4{bottom:738.653333pt;}
.y76{bottom:740.253333pt;}
.y12{bottom:742.653333pt;}
.y11{bottom:752.573333pt;}
.ya3{bottom:756.253333pt;}
.y75{bottom:757.853333pt;}
.y10{bottom:769.893333pt;}
.ya2{bottom:773.893333pt;}
.y74{bottom:775.493333pt;}
.yf{bottom:781.093333pt;}
.ya1{bottom:791.493333pt;}
.y73{bottom:793.093333pt;}
.ye{bottom:795.173333pt;}
.yd{bottom:809.093333pt;}
.y72{bottom:810.853333pt;}
.yc{bottom:820.773333pt;}
.ya0{bottom:826.853333pt;}
.y71{bottom:828.453333pt;}
.yb{bottom:839.333333pt;}
.y9f{bottom:844.453333pt;}
.y70{bottom:846.053333pt;}
.ya{bottom:856.293333pt;}
.y9e{bottom:862.053333pt;}
.y6f{bottom:863.653333pt;}
.y9d{bottom:879.653333pt;}
.y9{bottom:880.933333pt;}
.y6e{bottom:881.253333pt;}
.y9c{bottom:897.253333pt;}
.y6d{bottom:898.693333pt;}
.y8{bottom:905.413333pt;}
.y9b{bottom:915.013333pt;}
.y6c{bottom:932.613333pt;}
.y7{bottom:942.533333pt;}
.y6b{bottom:950.213333pt;}
.y4a{bottom:965.280000pt;}
.y68{bottom:979.840000pt;}
.y67{bottom:999.200000pt;}
.y47{bottom:1006.400000pt;}
.h5{height:2.512500pt;}
.h14{height:5.025000pt;}
.h23{height:5.562500pt;}
.h2{height:12.000000pt;}
.h16{height:16.960000pt;}
.h17{height:19.840000pt;}
.hb{height:23.868750pt;}
.he{height:27.523125pt;}
.h4{height:30.560000pt;}
.h1b{height:32.250000pt;}
.h1e{height:32.890957pt;}
.h22{height:33.722389pt;}
.h6{height:36.431250pt;}
.h1d{height:37.410000pt;}
.h1c{height:38.153511pt;}
.hc{height:39.571875pt;}
.h11{height:42.084375pt;}
.h13{height:43.215000pt;}
.h21{height:47.085938pt;}
.h1f{height:47.109375pt;}
.h12{height:48.375000pt;}
.h10{height:49.148438pt;}
.h3{height:52.134375pt;}
.hf{height:52.671161pt;}
.ha{height:53.535000pt;}
.h19{height:54.880000pt;}
.h7{height:58.563750pt;}
.hd{height:64.500000pt;}
.h18{height:66.625000pt;}
.h20{height:66.750000pt;}
.h1a{height:69.280000pt;}
.h15{height:74.880000pt;}
.h9{height:85.785000pt;}
.h8{height:88.611250pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.952000pt;}
.w8{width:137.453333pt;}
.w5{width:166.120000pt;}
.w9{width:240.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w7{width:660.760000pt;}
.w6{width:674.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.780000pt;}
.x2{left:7.192000pt;}
.xf{left:9.613333pt;}
.x15{left:18.893333pt;}
.x3{left:65.746667pt;}
.x10{left:72.360000pt;}
.x11{left:76.840000pt;}
.x13{left:84.040000pt;}
.x1{left:96.040000pt;}
.x6{left:103.232000pt;}
.xc{left:117.952000pt;}
.x1a{left:120.032000pt;}
.x5{left:122.912000pt;}
.xa{left:148.506667pt;}
.x4{left:169.000000pt;}
.x17{left:176.346667pt;}
.x18{left:178.426667pt;}
.x9{left:252.866667pt;}
.x12{left:265.146667pt;}
.x14{left:289.346667pt;}
.x7{left:290.786667pt;}
.x8{left:393.053333pt;}
.xb{left:396.893333pt;}
.xd{left:438.173333pt;}
.x16{left:551.336000pt;}
.xe{left:568.760000pt;}
.x19{left:732.160000pt;}
}




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