
    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_207a68308970237d0ad05995.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_8d05386c5ac0e0b629f03a1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_07dc83dae5bc5ef6ca66a862.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_5ddef4252867285891c646bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_604ef6f02529966c2b3629de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979004;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_66d66270022e2ab823dfb42c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_9bfeaa3c091e8c79938c0671.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_6f8703ff4476cdb3e6df9fcf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984863;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_15aece19de6327243e3c2954.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ls1f{letter-spacing:-5.139000px;}
.ls20{letter-spacing:-0.009000px;}
.ls1e{letter-spacing:-0.007200px;}
.lsc{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.009000px;}
.lsa{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.018000px;}
.ls1c{letter-spacing:0.027000px;}
.ls14{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.237600px;}
.lse{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.885600px;}
.ls19{letter-spacing:1.274400px;}
.ls12{letter-spacing:1.288800px;}
.lsb{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.296800px;}
.ls1b{letter-spacing:2.433600px;}
.ls8{letter-spacing:2.484000px;}
.ls10{letter-spacing:2.952000px;}
.ls13{letter-spacing:4.068000px;}
.ls4{letter-spacing:4.435200px;}
.ls15{letter-spacing:4.665600px;}
.ls17{letter-spacing:5.443200px;}
.ls1{letter-spacing:7.920000px;}
.ls11{letter-spacing:9.136800px;}
.ls1a{letter-spacing:10.951200px;}
.lsf{letter-spacing:10.987200px;}
.ls3{letter-spacing:11.750400px;}
.ls16{letter-spacing:18.842400px;}
.ls7{letter-spacing:28.800000px;}
.lsd{letter-spacing:37.483200px;}
.ls2{letter-spacing:43.164000px;}
.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;}
}
.ws6{word-spacing:-26.766000px;}
.ws2{word-spacing:-26.748000px;}
.ws9{word-spacing:-23.352000px;}
.ws3{word-spacing:-21.398400px;}
.ws0{word-spacing:-19.500000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-6.000000px;}
.ws5{word-spacing:-0.427200px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.045600px;}
._d{margin-left:-43.200000px;}
._c{margin-left:-37.656000px;}
._b{margin-left:-34.848000px;}
._a{margin-left:-29.592000px;}
._2c{margin-left:-18.864000px;}
._2a{margin-left:-15.138000px;}
._29{margin-left:-13.896000px;}
._e{margin-left:-12.458820px;}
._7{margin-left:-10.667580px;}
._23{margin-left:-8.368200px;}
._6{margin-left:-6.629400px;}
._9{margin-left:-5.472000px;}
._5{margin-left:-3.870000px;}
._1{margin-left:-2.808000px;}
._3{margin-left:-1.593000px;}
._4{width:1.197000px;}
._0{width:2.764800px;}
._10{width:4.449600px;}
._1b{width:5.468400px;}
._1d{width:7.356600px;}
._15{width:8.856000px;}
._1c{width:10.288800px;}
._17{width:11.611800px;}
._16{width:12.837600px;}
._2f{width:14.044200px;}
._1e{width:15.076800px;}
._14{width:16.077600px;}
._30{width:19.114200px;}
._12{width:20.260800px;}
._25{width:21.344400px;}
._28{width:22.374000px;}
._2e{width:23.419800px;}
._21{width:24.690600px;}
._24{width:27.018000px;}
._20{width:28.290600px;}
._22{width:29.487600px;}
._8{width:30.749400px;}
._1f{width:32.047200px;}
._f{width:33.210000px;}
._26{width:34.335000px;}
._18{width:35.352000px;}
._19{width:36.414000px;}
._1a{width:38.507400px;}
._27{width:39.726000px;}
._11{width:40.989600px;}
._2d{width:42.620400px;}
._13{width:44.820000px;}
._2b{width:91.353600px;}
._2{width:694.544400px;}
.fca{color:rgb(0,0,153);}
.fc9{color:rgb(102,0,141);}
.fc7{color:rgb(0,68,254);}
.fc8{color:rgb(255,83,8);}
.fc5{color:rgb(46,111,253);}
.fc4{color:rgb(254,112,56);}
.fc6{color:rgb(52,52,52);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(85,142,40);}
.fs2{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:69.000000px;}
.y23{bottom:87.000000px;}
.y80{bottom:102.000000px;}
.y35{bottom:108.000000px;}
.y22{bottom:109.500000px;}
.y67{bottom:112.500000px;}
.y9e{bottom:121.500000px;}
.y7f{bottom:124.500000px;}
.y34{bottom:130.500000px;}
.y21{bottom:132.000000px;}
.y66{bottom:135.000000px;}
.y9d{bottom:144.000000px;}
.y7e{bottom:147.000000px;}
.y33{bottom:153.000000px;}
.y20{bottom:154.500000px;}
.y65{bottom:157.500000px;}
.y32{bottom:175.500000px;}
.y1f{bottom:177.000000px;}
.y64{bottom:180.000000px;}
.y9c{bottom:184.500000px;}
.y7d{bottom:186.000000px;}
.y31{bottom:198.000000px;}
.y1e{bottom:199.500000px;}
.y63{bottom:202.500000px;}
.y9b{bottom:211.500000px;}
.y30{bottom:220.500000px;}
.y1d{bottom:222.000000px;}
.y62{bottom:225.000000px;}
.y7c{bottom:226.500000px;}
.y2f{bottom:243.000000px;}
.y61{bottom:247.500000px;}
.y7b{bottom:249.000000px;}
.y9a{bottom:256.500000px;}
.y1c{bottom:262.500000px;}
.y2e{bottom:264.000000px;}
.yaf{bottom:268.500000px;}
.y60{bottom:270.000000px;}
.y7a{bottom:271.500000px;}
.y99{bottom:279.000000px;}
.y1b{bottom:285.000000px;}
.y5f{bottom:292.500000px;}
.y79{bottom:294.000000px;}
.y98{bottom:301.500000px;}
.y1a{bottom:307.500000px;}
.yae{bottom:310.500000px;}
.y5e{bottom:315.000000px;}
.y2d{bottom:325.500000px;}
.y19{bottom:330.000000px;}
.y78{bottom:333.000000px;}
.y97{bottom:342.000000px;}
.y18{bottom:352.500000px;}
.y5d{bottom:355.500000px;}
.y96{bottom:364.500000px;}
.y17{bottom:375.000000px;}
.y5c{bottom:382.500000px;}
.yad{bottom:394.500000px;}
.y77{bottom:396.000000px;}
.y16{bottom:397.500000px;}
.y95{bottom:405.000000px;}
.y76{bottom:418.500000px;}
.y15{bottom:420.000000px;}
.y5b{bottom:427.500000px;}
.y2c{bottom:430.500000px;}
.yac{bottom:438.000000px;}
.y75{bottom:441.000000px;}
.y14{bottom:442.500000px;}
.y2b{bottom:445.500000px;}
.y5a{bottom:450.000000px;}
.y13{bottom:465.000000px;}
.y59{bottom:472.500000px;}
.y2a{bottom:481.500000px;}
.yab{bottom:483.000000px;}
.y12{bottom:487.500000px;}
.y58{bottom:495.000000px;}
.y29{bottom:496.500000px;}
.yaa{bottom:505.500000px;}
.y11{bottom:510.000000px;}
.y57{bottom:517.500000px;}
.y74{bottom:526.500000px;}
.ya9{bottom:528.000000px;}
.y10{bottom:532.500000px;}
.y56{bottom:540.000000px;}
.y28{bottom:546.000000px;}
.y73{bottom:549.000000px;}
.ya8{bottom:550.500000px;}
.yf{bottom:555.000000px;}
.y55{bottom:562.500000px;}
.y72{bottom:571.500000px;}
.ya7{bottom:573.000000px;}
.ye{bottom:577.500000px;}
.y94{bottom:580.500000px;}
.y27{bottom:582.000000px;}
.y54{bottom:585.000000px;}
.y71{bottom:594.000000px;}
.ya6{bottom:595.500000px;}
.y26{bottom:597.000000px;}
.yd{bottom:600.000000px;}
.y53{bottom:607.500000px;}
.ya5{bottom:618.000000px;}
.yc{bottom:622.500000px;}
.y93{bottom:625.500000px;}
.y52{bottom:630.000000px;}
.y25{bottom:633.000000px;}
.y70{bottom:639.000000px;}
.ya4{bottom:640.500000px;}
.yb{bottom:645.000000px;}
.y24{bottom:648.000000px;}
.y51{bottom:652.500000px;}
.y6f{bottom:661.500000px;}
.ya3{bottom:663.000000px;}
.ya{bottom:667.500000px;}
.y50{bottom:675.000000px;}
.y6e{bottom:684.000000px;}
.ya2{bottom:685.500000px;}
.y9{bottom:690.000000px;}
.y4f{bottom:697.500000px;}
.y6d{bottom:706.500000px;}
.ya1{bottom:708.000000px;}
.y92{bottom:709.500000px;}
.y8{bottom:712.500000px;}
.y4e{bottom:720.000000px;}
.y6c{bottom:729.000000px;}
.ya0{bottom:730.500000px;}
.y4d{bottom:742.500000px;}
.y6b{bottom:751.500000px;}
.y9f{bottom:753.000000px;}
.y4c{bottom:765.000000px;}
.y7{bottom:768.000000px;}
.y6a{bottom:774.000000px;}
.y91{bottom:775.500000px;}
.y69{bottom:796.500000px;}
.y6{bottom:810.000000px;}
.y68{bottom:819.000000px;}
.y4b{bottom:828.000000px;}
.y5{bottom:835.500000px;}
.y90{bottom:843.000000px;}
.y4a{bottom:855.000000px;}
.y4{bottom:864.000000px;}
.y8f{bottom:865.500000px;}
.y8a{bottom:877.500000px;}
.y8e{bottom:888.000000px;}
.y89{bottom:900.000000px;}
.y49{bottom:904.500000px;}
.y36{bottom:919.500000px;}
.y88{bottom:922.500000px;}
.y40{bottom:925.500000px;}
.y48{bottom:927.000000px;}
.y3{bottom:939.000000px;}
.y3f{bottom:946.500000px;}
.y47{bottom:949.500000px;}
.y87{bottom:963.000000px;}
.y8d{bottom:967.500000px;}
.y3e{bottom:984.000000px;}
.y46{bottom:988.500000px;}
.y8c{bottom:990.000000px;}
.y3d{bottom:1024.500000px;}
.y86{bottom:1026.000000px;}
.y45{bottom:1029.000000px;}
.y3c{bottom:1047.000000px;}
.y85{bottom:1048.500000px;}
.y44{bottom:1051.500000px;}
.y3b{bottom:1069.500000px;}
.y84{bottom:1071.000000px;}
.y43{bottom:1074.000000px;}
.y3a{bottom:1092.000000px;}
.y83{bottom:1093.500000px;}
.y42{bottom:1096.500000px;}
.y37{bottom:1110.000000px;}
.y39{bottom:1114.500000px;}
.y82{bottom:1116.000000px;}
.y41{bottom:1119.000000px;}
.y2{bottom:1137.000000px;}
.y8b{bottom:1155.000000px;}
.y38{bottom:1158.000000px;}
.y81{bottom:1177.500000px;}
.h9{height:48.049805px;}
.h7{height:49.289062px;}
.h6{height:50.027344px;}
.h5{height:54.000000px;}
.ha{height:54.196289px;}
.h8{height:56.027344px;}
.h3{height:56.786133px;}
.h1{height:58.500000px;}
.hb{height:63.000000px;}
.h4{height:67.500000px;}
.h2{height:157.253906px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:52.807110px;}
.x16{left:66.307110px;}
.x3{left:68.686305px;}
.x5{left:73.774890px;}
.x13{left:77.553450px;}
.x11{left:85.765725px;}
.x6{left:91.647435px;}
.x2{left:98.852880px;}
.x14{left:179.676855px;}
.xf{left:241.500000px;}
.x4{left:249.250710px;}
.x12{left:267.000060px;}
.x7{left:276.000060px;}
.xe{left:329.128425px;}
.x1{left:440.456250px;}
.x10{left:459.307110px;}
.x9{left:465.307110px;}
.xb{left:473.847810px;}
.xa{left:478.807110px;}
.xc{left:619.153110px;}
.xd{left:660.000060px;}
.x15{left:723.413460px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ls1f{letter-spacing:-4.568000pt;}
.ls20{letter-spacing:-0.008000pt;}
.ls1e{letter-spacing:-0.006400pt;}
.lsc{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.008000pt;}
.lsa{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.016000pt;}
.ls1c{letter-spacing:0.024000pt;}
.ls14{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.211200pt;}
.lse{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.787200pt;}
.ls19{letter-spacing:1.132800pt;}
.ls12{letter-spacing:1.145600pt;}
.lsb{letter-spacing:1.280000pt;}
.ls5{letter-spacing:2.041600pt;}
.ls1b{letter-spacing:2.163200pt;}
.ls8{letter-spacing:2.208000pt;}
.ls10{letter-spacing:2.624000pt;}
.ls13{letter-spacing:3.616000pt;}
.ls4{letter-spacing:3.942400pt;}
.ls15{letter-spacing:4.147200pt;}
.ls17{letter-spacing:4.838400pt;}
.ls1{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.121600pt;}
.ls1a{letter-spacing:9.734400pt;}
.lsf{letter-spacing:9.766400pt;}
.ls3{letter-spacing:10.444800pt;}
.ls16{letter-spacing:16.748800pt;}
.ls7{letter-spacing:25.600000pt;}
.lsd{letter-spacing:33.318400pt;}
.ls2{letter-spacing:38.368000pt;}
.ws6{word-spacing:-23.792000pt;}
.ws2{word-spacing:-23.776000pt;}
.ws9{word-spacing:-20.757333pt;}
.ws3{word-spacing:-19.020800pt;}
.ws0{word-spacing:-17.333333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws5{word-spacing:-0.379733pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.040533pt;}
._d{margin-left:-38.400000pt;}
._c{margin-left:-33.472000pt;}
._b{margin-left:-30.976000pt;}
._a{margin-left:-26.304000pt;}
._2c{margin-left:-16.768000pt;}
._2a{margin-left:-13.456000pt;}
._29{margin-left:-12.352000pt;}
._e{margin-left:-11.074507pt;}
._7{margin-left:-9.482293pt;}
._23{margin-left:-7.438400pt;}
._6{margin-left:-5.892800pt;}
._9{margin-left:-4.864000pt;}
._5{margin-left:-3.440000pt;}
._1{margin-left:-2.496000pt;}
._3{margin-left:-1.416000pt;}
._4{width:1.064000pt;}
._0{width:2.457600pt;}
._10{width:3.955200pt;}
._1b{width:4.860800pt;}
._1d{width:6.539200pt;}
._15{width:7.872000pt;}
._1c{width:9.145600pt;}
._17{width:10.321600pt;}
._16{width:11.411200pt;}
._2f{width:12.483733pt;}
._1e{width:13.401600pt;}
._14{width:14.291200pt;}
._30{width:16.990400pt;}
._12{width:18.009600pt;}
._25{width:18.972800pt;}
._28{width:19.888000pt;}
._2e{width:20.817600pt;}
._21{width:21.947200pt;}
._24{width:24.016000pt;}
._20{width:25.147200pt;}
._22{width:26.211200pt;}
._8{width:27.332800pt;}
._1f{width:28.486400pt;}
._f{width:29.520000pt;}
._26{width:30.520000pt;}
._18{width:31.424000pt;}
._19{width:32.368000pt;}
._1a{width:34.228800pt;}
._27{width:35.312000pt;}
._11{width:36.435200pt;}
._2d{width:37.884800pt;}
._13{width:39.840000pt;}
._2b{width:81.203200pt;}
._2{width:617.372800pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.333333pt;}
.y23{bottom:77.333333pt;}
.y80{bottom:90.666667pt;}
.y35{bottom:96.000000pt;}
.y22{bottom:97.333333pt;}
.y67{bottom:100.000000pt;}
.y9e{bottom:108.000000pt;}
.y7f{bottom:110.666667pt;}
.y34{bottom:116.000000pt;}
.y21{bottom:117.333333pt;}
.y66{bottom:120.000000pt;}
.y9d{bottom:128.000000pt;}
.y7e{bottom:130.666667pt;}
.y33{bottom:136.000000pt;}
.y20{bottom:137.333333pt;}
.y65{bottom:140.000000pt;}
.y32{bottom:156.000000pt;}
.y1f{bottom:157.333333pt;}
.y64{bottom:160.000000pt;}
.y9c{bottom:164.000000pt;}
.y7d{bottom:165.333333pt;}
.y31{bottom:176.000000pt;}
.y1e{bottom:177.333333pt;}
.y63{bottom:180.000000pt;}
.y9b{bottom:188.000000pt;}
.y30{bottom:196.000000pt;}
.y1d{bottom:197.333333pt;}
.y62{bottom:200.000000pt;}
.y7c{bottom:201.333333pt;}
.y2f{bottom:216.000000pt;}
.y61{bottom:220.000000pt;}
.y7b{bottom:221.333333pt;}
.y9a{bottom:228.000000pt;}
.y1c{bottom:233.333333pt;}
.y2e{bottom:234.666667pt;}
.yaf{bottom:238.666667pt;}
.y60{bottom:240.000000pt;}
.y7a{bottom:241.333333pt;}
.y99{bottom:248.000000pt;}
.y1b{bottom:253.333333pt;}
.y5f{bottom:260.000000pt;}
.y79{bottom:261.333333pt;}
.y98{bottom:268.000000pt;}
.y1a{bottom:273.333333pt;}
.yae{bottom:276.000000pt;}
.y5e{bottom:280.000000pt;}
.y2d{bottom:289.333333pt;}
.y19{bottom:293.333333pt;}
.y78{bottom:296.000000pt;}
.y97{bottom:304.000000pt;}
.y18{bottom:313.333333pt;}
.y5d{bottom:316.000000pt;}
.y96{bottom:324.000000pt;}
.y17{bottom:333.333333pt;}
.y5c{bottom:340.000000pt;}
.yad{bottom:350.666667pt;}
.y77{bottom:352.000000pt;}
.y16{bottom:353.333333pt;}
.y95{bottom:360.000000pt;}
.y76{bottom:372.000000pt;}
.y15{bottom:373.333333pt;}
.y5b{bottom:380.000000pt;}
.y2c{bottom:382.666667pt;}
.yac{bottom:389.333333pt;}
.y75{bottom:392.000000pt;}
.y14{bottom:393.333333pt;}
.y2b{bottom:396.000000pt;}
.y5a{bottom:400.000000pt;}
.y13{bottom:413.333333pt;}
.y59{bottom:420.000000pt;}
.y2a{bottom:428.000000pt;}
.yab{bottom:429.333333pt;}
.y12{bottom:433.333333pt;}
.y58{bottom:440.000000pt;}
.y29{bottom:441.333333pt;}
.yaa{bottom:449.333333pt;}
.y11{bottom:453.333333pt;}
.y57{bottom:460.000000pt;}
.y74{bottom:468.000000pt;}
.ya9{bottom:469.333333pt;}
.y10{bottom:473.333333pt;}
.y56{bottom:480.000000pt;}
.y28{bottom:485.333333pt;}
.y73{bottom:488.000000pt;}
.ya8{bottom:489.333333pt;}
.yf{bottom:493.333333pt;}
.y55{bottom:500.000000pt;}
.y72{bottom:508.000000pt;}
.ya7{bottom:509.333333pt;}
.ye{bottom:513.333333pt;}
.y94{bottom:516.000000pt;}
.y27{bottom:517.333333pt;}
.y54{bottom:520.000000pt;}
.y71{bottom:528.000000pt;}
.ya6{bottom:529.333333pt;}
.y26{bottom:530.666667pt;}
.yd{bottom:533.333333pt;}
.y53{bottom:540.000000pt;}
.ya5{bottom:549.333333pt;}
.yc{bottom:553.333333pt;}
.y93{bottom:556.000000pt;}
.y52{bottom:560.000000pt;}
.y25{bottom:562.666667pt;}
.y70{bottom:568.000000pt;}
.ya4{bottom:569.333333pt;}
.yb{bottom:573.333333pt;}
.y24{bottom:576.000000pt;}
.y51{bottom:580.000000pt;}
.y6f{bottom:588.000000pt;}
.ya3{bottom:589.333333pt;}
.ya{bottom:593.333333pt;}
.y50{bottom:600.000000pt;}
.y6e{bottom:608.000000pt;}
.ya2{bottom:609.333333pt;}
.y9{bottom:613.333333pt;}
.y4f{bottom:620.000000pt;}
.y6d{bottom:628.000000pt;}
.ya1{bottom:629.333333pt;}
.y92{bottom:630.666667pt;}
.y8{bottom:633.333333pt;}
.y4e{bottom:640.000000pt;}
.y6c{bottom:648.000000pt;}
.ya0{bottom:649.333333pt;}
.y4d{bottom:660.000000pt;}
.y6b{bottom:668.000000pt;}
.y9f{bottom:669.333333pt;}
.y4c{bottom:680.000000pt;}
.y7{bottom:682.666667pt;}
.y6a{bottom:688.000000pt;}
.y91{bottom:689.333333pt;}
.y69{bottom:708.000000pt;}
.y6{bottom:720.000000pt;}
.y68{bottom:728.000000pt;}
.y4b{bottom:736.000000pt;}
.y5{bottom:742.666667pt;}
.y90{bottom:749.333333pt;}
.y4a{bottom:760.000000pt;}
.y4{bottom:768.000000pt;}
.y8f{bottom:769.333333pt;}
.y8a{bottom:780.000000pt;}
.y8e{bottom:789.333333pt;}
.y89{bottom:800.000000pt;}
.y49{bottom:804.000000pt;}
.y36{bottom:817.333333pt;}
.y88{bottom:820.000000pt;}
.y40{bottom:822.666667pt;}
.y48{bottom:824.000000pt;}
.y3{bottom:834.666667pt;}
.y3f{bottom:841.333333pt;}
.y47{bottom:844.000000pt;}
.y87{bottom:856.000000pt;}
.y8d{bottom:860.000000pt;}
.y3e{bottom:874.666667pt;}
.y46{bottom:878.666667pt;}
.y8c{bottom:880.000000pt;}
.y3d{bottom:910.666667pt;}
.y86{bottom:912.000000pt;}
.y45{bottom:914.666667pt;}
.y3c{bottom:930.666667pt;}
.y85{bottom:932.000000pt;}
.y44{bottom:934.666667pt;}
.y3b{bottom:950.666667pt;}
.y84{bottom:952.000000pt;}
.y43{bottom:954.666667pt;}
.y3a{bottom:970.666667pt;}
.y83{bottom:972.000000pt;}
.y42{bottom:974.666667pt;}
.y37{bottom:986.666667pt;}
.y39{bottom:990.666667pt;}
.y82{bottom:992.000000pt;}
.y41{bottom:994.666667pt;}
.y2{bottom:1010.666667pt;}
.y8b{bottom:1026.666667pt;}
.y38{bottom:1029.333333pt;}
.y81{bottom:1046.666667pt;}
.h9{height:42.710938pt;}
.h7{height:43.812500pt;}
.h6{height:44.468750pt;}
.h5{height:48.000000pt;}
.ha{height:48.174479pt;}
.h8{height:49.802083pt;}
.h3{height:50.476562pt;}
.h1{height:52.000000pt;}
.hb{height:56.000000pt;}
.h4{height:60.000000pt;}
.h2{height:139.781250pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:46.939653pt;}
.x16{left:58.939653pt;}
.x3{left:61.054493pt;}
.x5{left:65.577680pt;}
.x13{left:68.936400pt;}
.x11{left:76.236200pt;}
.x6{left:81.464387pt;}
.x2{left:87.869227pt;}
.x14{left:159.712760pt;}
.xf{left:214.666667pt;}
.x4{left:221.556187pt;}
.x12{left:237.333387pt;}
.x7{left:245.333387pt;}
.xe{left:292.558600pt;}
.x1{left:391.516667pt;}
.x10{left:408.272987pt;}
.x9{left:413.606320pt;}
.xb{left:421.198053pt;}
.xa{left:425.606320pt;}
.xc{left:550.358320pt;}
.xd{left:586.666720pt;}
.x15{left:643.034187pt;}
}




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