
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_3b3e0d9fb28a1d86be49d502.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c59b9fe8511575ba3b3e5f2a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db291510cda56229976832ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_acfd2ad5a3f65837bff1d920.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_88c7380140193df82d6ff38d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_85d5e96dd7f1ed8ffd59368e.woff2')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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_df71861f27be0707fbcfbf97.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ca48824d2c374fdd1948997c.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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;}
.lsa{letter-spacing:-0.226200px;}
.lse{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.037440px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.028080px;}
.ls1f{letter-spacing:0.033840px;}
.ls19{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.493800px;}
.ls3{letter-spacing:6.660000px;}
.ls11{letter-spacing:9.701280px;}
.ls10{letter-spacing:14.741280px;}
.ls4{letter-spacing:16.740000px;}
.ls12{letter-spacing:19.061280px;}
.ls7{letter-spacing:21.749760px;}
.ls14{letter-spacing:28.421280px;}
.ls15{letter-spacing:33.461280px;}
.ls17{letter-spacing:38.106720px;}
.ls16{letter-spacing:41.706720px;}
.ls1c{letter-spacing:44.586720px;}
.lsf{letter-spacing:46.026720px;}
.ls1e{letter-spacing:51.066720px;}
.ls5{letter-spacing:201.240000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.wsb{word-spacing:-21.420000px;}
.wse{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.097440px;}
.wsc{word-spacing:-21.022560px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.833200px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.933800px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws6{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.254960px;}
._3{width:2.268000px;}
._a{width:4.003920px;}
._9{width:5.019840px;}
._d{width:6.066720px;}
._5{width:7.115040px;}
._4{width:8.262000px;}
._8{width:9.860400px;}
._10{width:11.234880px;}
._12{width:12.310560px;}
._c{width:13.882320px;}
._b{width:16.314480px;}
._e{width:17.475600px;}
._11{width:19.097520px;}
._7{width:21.829680px;}
._6{width:22.896000px;}
._f{width:201.060000px;}
._2{width:202.680000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y55{bottom:1.620000px;}
.y5{bottom:3.780000px;}
.y4b{bottom:4.500000px;}
.y63{bottom:5.010000px;}
.y61{bottom:5.400000px;}
.y2{bottom:9.930000px;}
.y54{bottom:10.260000px;}
.y60{bottom:21.060000px;}
.y4{bottom:22.710000px;}
.y4a{bottom:23.040000px;}
.y5f{bottom:36.540000px;}
.y49{bottom:41.760000px;}
.y3{bottom:47.910000px;}
.y53{bottom:52.014000px;}
.y5e{bottom:54.354000px;}
.y7{bottom:57.060000px;}
.y28{bottom:58.545000px;}
.y48{bottom:60.345000px;}
.y52{bottom:61.194000px;}
.y5d{bottom:69.834000px;}
.y51{bottom:71.814000px;}
.y47{bottom:79.065000px;}
.y27{bottom:83.565000px;}
.y50{bottom:83.874000px;}
.y5c{bottom:85.314000px;}
.y4f{bottom:95.934000px;}
.y46{bottom:97.605000px;}
.y4c{bottom:100.296000px;}
.y5b{bottom:103.134000px;}
.y94{bottom:104.976000px;}
.y26{bottom:108.585000px;}
.y45{bottom:116.145000px;}
.y5a{bottom:118.614000px;}
.y93{bottom:124.776000px;}
.y25{bottom:133.605000px;}
.y59{bottom:134.094000px;}
.y44{bottom:134.865000px;}
.y92{bottom:142.056000px;}
.y58{bottom:149.574000px;}
.y43{bottom:153.405000px;}
.y4e{bottom:156.954000px;}
.y24{bottom:158.805000px;}
.y91{bottom:159.330000px;}
.y57{bottom:165.234000px;}
.y4d{bottom:166.674000px;}
.y42{bottom:172.125000px;}
.y90{bottom:176.610000px;}
.y56{bottom:180.714000px;}
.y23{bottom:183.825000px;}
.y41{bottom:190.665000px;}
.y8f{bottom:196.410000px;}
.y22{bottom:208.845000px;}
.y40{bottom:209.205000px;}
.y8e{bottom:216.210000px;}
.y3f{bottom:227.925000px;}
.y8d{bottom:233.490000px;}
.y21{bottom:233.865000px;}
.y3e{bottom:246.465000px;}
.y8c{bottom:253.290000px;}
.y20{bottom:258.885000px;}
.y3d{bottom:265.185000px;}
.y8b{bottom:273.090000px;}
.y3c{bottom:283.725000px;}
.y1f{bottom:283.905000px;}
.y8a{bottom:292.890000px;}
.yf{bottom:297.030000px;}
.y3b{bottom:302.445000px;}
.y1e{bottom:308.955000px;}
.y89{bottom:310.170000px;}
.y3a{bottom:321.015000px;}
.y1d{bottom:321.915000px;}
.y88{bottom:335.730000px;}
.y39{bottom:339.555000px;}
.y1c{bottom:346.035000px;}
.ybb{bottom:349.455000px;}
.y87{bottom:355.575000px;}
.y38{bottom:358.275000px;}
.yba{bottom:369.255000px;}
.y1b{bottom:370.335000px;}
.y86{bottom:372.855000px;}
.y37{bottom:376.815000px;}
.yb9{bottom:389.055000px;}
.y1a{bottom:394.455000px;}
.y36{bottom:395.535000px;}
.y85{bottom:398.235000px;}
.yb8{bottom:406.335000px;}
.y35{bottom:414.075000px;}
.y84{bottom:418.035000px;}
.y19{bottom:418.575000px;}
.yb7{bottom:423.615000px;}
.y34{bottom:432.615000px;}
.y83{bottom:435.315000px;}
.yb6{bottom:440.895000px;}
.y18{bottom:442.695000px;}
.y33{bottom:451.335000px;}
.yb5{bottom:457.995000px;}
.y82{bottom:460.695000px;}
.y17{bottom:466.815000px;}
.y32{bottom:469.875000px;}
.yb4{bottom:475.275000px;}
.y81{bottom:480.675000px;}
.y31{bottom:488.595000px;}
.y16{bottom:490.935000px;}
.yb3{bottom:495.075000px;}
.y80{bottom:497.955000px;}
.yb2{bottom:514.875000px;}
.y15{bottom:515.055000px;}
.y30{bottom:515.775000px;}
.y7f{bottom:523.335000px;}
.y2f{bottom:532.515000px;}
.yb1{bottom:534.855000px;}
.y14{bottom:539.355000px;}
.y7e{bottom:540.615000px;}
.y2e{bottom:549.255000px;}
.yb0{bottom:554.655000px;}
.y13{bottom:563.475000px;}
.y2d{bottom:565.995000px;}
.yaf{bottom:574.455000px;}
.y2c{bottom:582.780000px;}
.y7d{bottom:585.795000px;}
.y12{bottom:587.640000px;}
.yae{bottom:594.255000px;}
.y2b{bottom:599.520000px;}
.y7c{bottom:603.075000px;}
.y11{bottom:611.760000px;}
.yad{bottom:614.085000px;}
.y2a{bottom:616.260000px;}
.y7b{bottom:628.485000px;}
.yac{bottom:631.365000px;}
.y29{bottom:633.000000px;}
.y10{bottom:635.880000px;}
.y7a{bottom:648.285000px;}
.yab{bottom:651.165000px;}
.y79{bottom:665.565000px;}
.yaa{bottom:671.145000px;}
.ya9{bottom:688.425000px;}
.y78{bottom:690.945000px;}
.ya8{bottom:708.225000px;}
.y77{bottom:710.925000px;}
.ya7{bottom:725.505000px;}
.y76{bottom:728.205000px;}
.ya6{bottom:745.305000px;}
.y75{bottom:753.585000px;}
.ya5{bottom:762.585000px;}
.y74{bottom:773.385000px;}
.ya4{bottom:782.385000px;}
.y73{bottom:790.665000px;}
.ya3{bottom:802.185000px;}
.y72{bottom:814.785000px;}
.ya2{bottom:819.465000px;}
.y71{bottom:833.505000px;}
.ya1{bottom:839.265000px;}
.y70{bottom:852.045000px;}
.ya0{bottom:856.545000px;}
.y6f{bottom:870.810000px;}
.y9f{bottom:876.390000px;}
.y6e{bottom:889.350000px;}
.y9e{bottom:896.190000px;}
.y6d{bottom:907.890000px;}
.y9d{bottom:913.470000px;}
.y9c{bottom:933.270000px;}
.y6c{bottom:934.170000px;}
.ye{bottom:948.210000px;}
.y6b{bottom:951.450000px;}
.y9b{bottom:953.070000px;}
.yd{bottom:966.750000px;}
.y6a{bottom:968.730000px;}
.y9a{bottom:973.050000px;}
.yc{bottom:985.290000px;}
.y69{bottom:987.270000px;}
.y99{bottom:992.850000px;}
.yb{bottom:1004.010000px;}
.y98{bottom:1012.650000px;}
.y68{bottom:1014.990000px;}
.ya{bottom:1022.550000px;}
.y97{bottom:1032.450000px;}
.y67{bottom:1033.530000px;}
.y9{bottom:1043.070000px;}
.y66{bottom:1052.250000px;}
.y65{bottom:1070.790000px;}
.y8{bottom:1071.870000px;}
.y96{bottom:1072.230000px;}
.y62{bottom:1075.140000px;}
.y64{bottom:1089.330000px;}
.y95{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h11{height:21.114844px;}
.h10{height:25.136719px;}
.h12{height:27.720000px;}
.hc{height:29.158594px;}
.hb{height:29.464453px;}
.he{height:39.471680px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h14{height:43.506914px;}
.hd{height:43.822266px;}
.h16{height:44.265586px;}
.h5{height:46.251562px;}
.h15{height:61.329023px;}
.h13{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.hf{height:195.840000px;}
.ha{height:645.585000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.056000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x15{left:37.260000px;}
.x14{left:40.320000px;}
.x13{left:42.480000px;}
.x1a{left:47.340000px;}
.x1b{left:56.700000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x19{left:106.374000px;}
.x1d{left:113.435987px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:218.370000px;}
.xb{left:488.624987px;}
.xd{left:581.684987px;}
.xc{left:586.004987px;}
.xa{left:672.989987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.201067pt;}
.lse{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.033280pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.024960pt;}
.ls1f{letter-spacing:0.030080pt;}
.ls19{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.438933pt;}
.ls3{letter-spacing:5.920000pt;}
.ls11{letter-spacing:8.623360pt;}
.ls10{letter-spacing:13.103360pt;}
.ls4{letter-spacing:14.880000pt;}
.ls12{letter-spacing:16.943360pt;}
.ls7{letter-spacing:19.333120pt;}
.ls14{letter-spacing:25.263360pt;}
.ls15{letter-spacing:29.743360pt;}
.ls17{letter-spacing:33.872640pt;}
.ls16{letter-spacing:37.072640pt;}
.ls1c{letter-spacing:39.632640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls1e{letter-spacing:45.392640pt;}
.ls5{letter-spacing:178.880000pt;}
.ws8{word-spacing:-48.000000pt;}
.wsb{word-spacing:-19.040000pt;}
.wse{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.753280pt;}
.wsc{word-spacing:-18.686720pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.718933pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws6{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.115520pt;}
._3{width:2.016000pt;}
._a{width:3.559040pt;}
._9{width:4.462080pt;}
._d{width:5.392640pt;}
._5{width:6.324480pt;}
._4{width:7.344000pt;}
._8{width:8.764800pt;}
._10{width:9.986560pt;}
._12{width:10.942720pt;}
._c{width:12.339840pt;}
._b{width:14.501760pt;}
._e{width:15.533867pt;}
._11{width:16.975573pt;}
._7{width:19.404160pt;}
._6{width:20.352000pt;}
._f{width:178.720000pt;}
._2{width:180.160000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:1.440000pt;}
.y5{bottom:3.360000pt;}
.y4b{bottom:4.000000pt;}
.y63{bottom:4.453333pt;}
.y61{bottom:4.800000pt;}
.y2{bottom:8.826667pt;}
.y54{bottom:9.120000pt;}
.y60{bottom:18.720000pt;}
.y4{bottom:20.186667pt;}
.y4a{bottom:20.480000pt;}
.y5f{bottom:32.480000pt;}
.y49{bottom:37.120000pt;}
.y3{bottom:42.586667pt;}
.y53{bottom:46.234667pt;}
.y5e{bottom:48.314667pt;}
.y7{bottom:50.720000pt;}
.y28{bottom:52.040000pt;}
.y48{bottom:53.640000pt;}
.y52{bottom:54.394667pt;}
.y5d{bottom:62.074667pt;}
.y51{bottom:63.834667pt;}
.y47{bottom:70.280000pt;}
.y27{bottom:74.280000pt;}
.y50{bottom:74.554667pt;}
.y5c{bottom:75.834667pt;}
.y4f{bottom:85.274667pt;}
.y46{bottom:86.760000pt;}
.y4c{bottom:89.152000pt;}
.y5b{bottom:91.674667pt;}
.y94{bottom:93.312000pt;}
.y26{bottom:96.520000pt;}
.y45{bottom:103.240000pt;}
.y5a{bottom:105.434667pt;}
.y93{bottom:110.912000pt;}
.y25{bottom:118.760000pt;}
.y59{bottom:119.194667pt;}
.y44{bottom:119.880000pt;}
.y92{bottom:126.272000pt;}
.y58{bottom:132.954667pt;}
.y43{bottom:136.360000pt;}
.y4e{bottom:139.514667pt;}
.y24{bottom:141.160000pt;}
.y91{bottom:141.626667pt;}
.y57{bottom:146.874667pt;}
.y4d{bottom:148.154667pt;}
.y42{bottom:153.000000pt;}
.y90{bottom:156.986667pt;}
.y56{bottom:160.634667pt;}
.y23{bottom:163.400000pt;}
.y41{bottom:169.480000pt;}
.y8f{bottom:174.586667pt;}
.y22{bottom:185.640000pt;}
.y40{bottom:185.960000pt;}
.y8e{bottom:192.186667pt;}
.y3f{bottom:202.600000pt;}
.y8d{bottom:207.546667pt;}
.y21{bottom:207.880000pt;}
.y3e{bottom:219.080000pt;}
.y8c{bottom:225.146667pt;}
.y20{bottom:230.120000pt;}
.y3d{bottom:235.720000pt;}
.y8b{bottom:242.746667pt;}
.y3c{bottom:252.200000pt;}
.y1f{bottom:252.360000pt;}
.y8a{bottom:260.346667pt;}
.yf{bottom:264.026667pt;}
.y3b{bottom:268.840000pt;}
.y1e{bottom:274.626667pt;}
.y89{bottom:275.706667pt;}
.y3a{bottom:285.346667pt;}
.y1d{bottom:286.146667pt;}
.y88{bottom:298.426667pt;}
.y39{bottom:301.826667pt;}
.y1c{bottom:307.586667pt;}
.ybb{bottom:310.626667pt;}
.y87{bottom:316.066667pt;}
.y38{bottom:318.466667pt;}
.yba{bottom:328.226667pt;}
.y1b{bottom:329.186667pt;}
.y86{bottom:331.426667pt;}
.y37{bottom:334.946667pt;}
.yb9{bottom:345.826667pt;}
.y1a{bottom:350.626667pt;}
.y36{bottom:351.586667pt;}
.y85{bottom:353.986667pt;}
.yb8{bottom:361.186667pt;}
.y35{bottom:368.066667pt;}
.y84{bottom:371.586667pt;}
.y19{bottom:372.066667pt;}
.yb7{bottom:376.546667pt;}
.y34{bottom:384.546667pt;}
.y83{bottom:386.946667pt;}
.yb6{bottom:391.906667pt;}
.y18{bottom:393.506667pt;}
.y33{bottom:401.186667pt;}
.yb5{bottom:407.106667pt;}
.y82{bottom:409.506667pt;}
.y17{bottom:414.946667pt;}
.y32{bottom:417.666667pt;}
.yb4{bottom:422.466667pt;}
.y81{bottom:427.266667pt;}
.y31{bottom:434.306667pt;}
.y16{bottom:436.386667pt;}
.yb3{bottom:440.066667pt;}
.y80{bottom:442.626667pt;}
.yb2{bottom:457.666667pt;}
.y15{bottom:457.826667pt;}
.y30{bottom:458.466667pt;}
.y7f{bottom:465.186667pt;}
.y2f{bottom:473.346667pt;}
.yb1{bottom:475.426667pt;}
.y14{bottom:479.426667pt;}
.y7e{bottom:480.546667pt;}
.y2e{bottom:488.226667pt;}
.yb0{bottom:493.026667pt;}
.y13{bottom:500.866667pt;}
.y2d{bottom:503.106667pt;}
.yaf{bottom:510.626667pt;}
.y2c{bottom:518.026667pt;}
.y7d{bottom:520.706667pt;}
.y12{bottom:522.346667pt;}
.yae{bottom:528.226667pt;}
.y2b{bottom:532.906667pt;}
.y7c{bottom:536.066667pt;}
.y11{bottom:543.786667pt;}
.yad{bottom:545.853333pt;}
.y2a{bottom:547.786667pt;}
.y7b{bottom:558.653333pt;}
.yac{bottom:561.213333pt;}
.y29{bottom:562.666667pt;}
.y10{bottom:565.226667pt;}
.y7a{bottom:576.253333pt;}
.yab{bottom:578.813333pt;}
.y79{bottom:591.613333pt;}
.yaa{bottom:596.573333pt;}
.ya9{bottom:611.933333pt;}
.y78{bottom:614.173333pt;}
.ya8{bottom:629.533333pt;}
.y77{bottom:631.933333pt;}
.ya7{bottom:644.893333pt;}
.y76{bottom:647.293333pt;}
.ya6{bottom:662.493333pt;}
.y75{bottom:669.853333pt;}
.ya5{bottom:677.853333pt;}
.y74{bottom:687.453333pt;}
.ya4{bottom:695.453333pt;}
.y73{bottom:702.813333pt;}
.ya3{bottom:713.053333pt;}
.y72{bottom:724.253333pt;}
.ya2{bottom:728.413333pt;}
.y71{bottom:740.893333pt;}
.ya1{bottom:746.013333pt;}
.y70{bottom:757.373333pt;}
.ya0{bottom:761.373333pt;}
.y6f{bottom:774.053333pt;}
.y9f{bottom:779.013333pt;}
.y6e{bottom:790.533333pt;}
.y9e{bottom:796.613333pt;}
.y6d{bottom:807.013333pt;}
.y9d{bottom:811.973333pt;}
.y9c{bottom:829.573333pt;}
.y6c{bottom:830.373333pt;}
.ye{bottom:842.853333pt;}
.y6b{bottom:845.733333pt;}
.y9b{bottom:847.173333pt;}
.yd{bottom:859.333333pt;}
.y6a{bottom:861.093333pt;}
.y9a{bottom:864.933333pt;}
.yc{bottom:875.813333pt;}
.y69{bottom:877.573333pt;}
.y99{bottom:882.533333pt;}
.yb{bottom:892.453333pt;}
.y98{bottom:900.133333pt;}
.y68{bottom:902.213333pt;}
.ya{bottom:908.933333pt;}
.y97{bottom:917.733333pt;}
.y67{bottom:918.693333pt;}
.y9{bottom:927.173333pt;}
.y66{bottom:935.333333pt;}
.y65{bottom:951.813333pt;}
.y8{bottom:952.773333pt;}
.y96{bottom:953.093333pt;}
.y62{bottom:955.680000pt;}
.y64{bottom:968.293333pt;}
.y95{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h11{height:18.768750pt;}
.h10{height:22.343750pt;}
.h12{height:24.640000pt;}
.hc{height:25.918750pt;}
.hb{height:26.190625pt;}
.he{height:35.085938pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h14{height:38.672812pt;}
.hd{height:38.953125pt;}
.h16{height:39.347188pt;}
.h5{height:41.112500pt;}
.h15{height:54.514687pt;}
.h13{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.hf{height:174.080000pt;}
.ha{height:573.853333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.272000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x15{left:33.120000pt;}
.x14{left:35.840000pt;}
.x13{left:37.760000pt;}
.x1a{left:42.080000pt;}
.x1b{left:50.400000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x19{left:94.554667pt;}
.x1d{left:100.831988pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.106667pt;}
.xb{left:434.333322pt;}
.xd{left:517.053322pt;}
.xc{left:520.893322pt;}
.xa{left:598.213322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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