
    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_575321f54328e5760b2aac94.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_9dde357bd97ee6fce0580f06.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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ef6f4e6d15bf238f5514eff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_1f862fac3d78f4aa7ae29332.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f1c597eaf5451b385d819d24.woff')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_0daf9bd3661449e0d398e877.woff')format("woff");}.ff7{font-family:ff7;line-height:0.769531;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_12182aa7fc6880da9a851461.woff')format("woff");}.ff8{font-family:ff8;line-height:1.128906;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_dc940c0c346309534df7ad02.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_1fa25a699ea4751811b1a0aa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.935547;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;}
.m1{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,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);}
.m2{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:5.760000px;}
.v2{vertical-align:12.240000px;}
.ls10{letter-spacing:-0.876000px;}
.lsc{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.624000px;}
.ls12{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.335400px;}
.ls20{letter-spacing:-0.322800px;}
.ls21{letter-spacing:-0.161400px;}
.lsf{letter-spacing:-0.158400px;}
.ls1e{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.136800px;}
.lsd{letter-spacing:-0.109200px;}
.ls1d{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.ls18{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.119520px;}
.ls1a{letter-spacing:0.204000px;}
.ls3{letter-spacing:0.226200px;}
.lse{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.384600px;}
.ls8{letter-spacing:0.397200px;}
.ls9{letter-spacing:0.397440px;}
.ls19{letter-spacing:0.398400px;}
.ls0{letter-spacing:0.561600px;}
.ls1f{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.610560px;}
.ls13{letter-spacing:0.666000px;}
.ls7{letter-spacing:0.696960px;}
.ls4{letter-spacing:1.104480px;}
.ls17{letter-spacing:3.444000px;}
.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;}
}
.wsd{word-spacing:-30.240000px;}
.ws16{word-spacing:-12.240000px;}
.ws18{word-spacing:-12.168000px;}
.ws15{word-spacing:-9.918480px;}
.ws19{word-spacing:-9.198480px;}
.wsf{word-spacing:-9.170160px;}
.ws8{word-spacing:-7.560720px;}
.ws7{word-spacing:-7.279320px;}
.ws4{word-spacing:-7.150920px;}
.ws6{word-spacing:-7.120920px;}
.ws9{word-spacing:-6.990720px;}
.ws3{word-spacing:-6.894720px;}
.ws2{word-spacing:-6.785520px;}
.ws5{word-spacing:-6.736320px;}
.wsa{word-spacing:-6.559320px;}
.wsb{word-spacing:-6.480120px;}
.ws0{word-spacing:-6.270720px;}
.ws1a{word-spacing:-6.238080px;}
.ws11{word-spacing:-6.124560px;}
.ws1{word-spacing:-6.066720px;}
.ws14{word-spacing:-6.031560px;}
.wsc{word-spacing:-6.018720px;}
.ws12{word-spacing:-5.930160px;}
.ws13{word-spacing:-5.589360px;}
.ws10{word-spacing:-3.643920px;}
.wse{word-spacing:-0.054000px;}
.ws17{word-spacing:0.000000px;}
._2{margin-left:-3.184560px;}
._1{margin-left:-1.964160px;}
._0{width:1.713600px;}
._6{width:2.727120px;}
._4{width:3.851760px;}
._17{width:5.094480px;}
._5{width:6.875280px;}
._14{width:8.013600px;}
._23{width:9.018000px;}
._3{width:10.103520px;}
._c{width:11.235360px;}
._13{width:13.446000px;}
._18{width:15.066000px;}
._11{width:16.362000px;}
._10{width:17.658000px;}
._7{width:18.792000px;}
._f{width:20.088000px;}
._12{width:22.032000px;}
._1f{width:23.056560px;}
._8{width:24.120000px;}
._19{width:25.200000px;}
._1e{width:26.946000px;}
._20{width:28.114560px;}
._15{width:29.268000px;}
._d{width:30.564000px;}
._e{width:32.184000px;}
._b{width:34.182000px;}
._a{width:35.424000px;}
._1d{width:39.366000px;}
._9{width:40.968000px;}
._16{width:45.792000px;}
._21{width:47.844000px;}
._22{width:48.996000px;}
._1c{width:54.864000px;}
._1a{width:62.964000px;}
._1b{width:64.476000px;}
.fc1{color:rgb(216,110,204);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs7{font-size:15.120000px;}
.fs6{font-size:23.760000px;}
.fsa{font-size:27.360000px;}
.fs0{font-size:30.240000px;}
.fs3{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.800000px;}
.y8{bottom:4.140000px;}
.y2{bottom:10.440000px;}
.y1{bottom:45.000000px;}
.y7{bottom:47.520000px;}
.y6{bottom:56.700000px;}
.y8b{bottom:63.360000px;}
.y5{bottom:70.560000px;}
.y8a{bottom:80.100000px;}
.y89{bottom:96.840000px;}
.y59{bottom:97.200000px;}
.y35{bottom:101.700000px;}
.y88{bottom:113.580000px;}
.y58{bottom:113.760000px;}
.y34{bottom:118.440000px;}
.ya1{bottom:130.320000px;}
.y57{bottom:130.500000px;}
.y33{bottom:135.180000px;}
.y87{bottom:139.320000px;}
.ya0{bottom:147.060000px;}
.y56{bottom:147.240000px;}
.y32{bottom:151.920000px;}
.y86{bottom:156.060000px;}
.y9f{bottom:163.800000px;}
.y55{bottom:163.980000px;}
.y31{bottom:168.660000px;}
.y85{bottom:172.830000px;}
.y9e{bottom:180.570000px;}
.y54{bottom:180.750000px;}
.y30{bottom:185.430000px;}
.y84{bottom:189.570000px;}
.y9d{bottom:197.130000px;}
.y2f{bottom:202.170000px;}
.y83{bottom:206.130000px;}
.y53{bottom:206.490000px;}
.y9c{bottom:213.870000px;}
.y2e{bottom:218.910000px;}
.y82{bottom:222.870000px;}
.y52{bottom:223.230000px;}
.y9b{bottom:230.610000px;}
.y2d{bottom:235.470000px;}
.y81{bottom:239.610000px;}
.y51{bottom:239.970000px;}
.y9a{bottom:247.350000px;}
.y2c{bottom:252.210000px;}
.y80{bottom:256.350000px;}
.y50{bottom:256.530000px;}
.y99{bottom:264.090000px;}
.y2b{bottom:268.950000px;}
.y7f{bottom:273.090000px;}
.y4f{bottom:273.270000px;}
.y98{bottom:280.830000px;}
.y7e{bottom:289.830000px;}
.y4e{bottom:290.010000px;}
.y2a{bottom:294.690000px;}
.y7d{bottom:306.570000px;}
.y4d{bottom:306.750000px;}
.y29{bottom:311.430000px;}
.y7c{bottom:323.310000px;}
.y4c{bottom:323.490000px;}
.y28{bottom:328.170000px;}
.y7b{bottom:339.870000px;}
.y4b{bottom:340.230000px;}
.y27{bottom:344.910000px;}
.y7a{bottom:356.655000px;}
.y4a{bottom:357.015000px;}
.y26{bottom:361.695000px;}
.y97{bottom:373.395000px;}
.y49{bottom:373.755000px;}
.y25{bottom:378.255000px;}
.y79{bottom:382.395000px;}
.y96{bottom:390.135000px;}
.y48{bottom:390.315000px;}
.y78{bottom:399.135000px;}
.y24{bottom:403.995000px;}
.y95{bottom:406.875000px;}
.y47{bottom:407.055000px;}
.y77{bottom:415.875000px;}
.y23{bottom:420.735000px;}
.y94{bottom:423.615000px;}
.y46{bottom:423.795000px;}
.y76{bottom:432.615000px;}
.y22{bottom:437.475000px;}
.y93{bottom:440.355000px;}
.y45{bottom:440.535000px;}
.y75{bottom:449.355000px;}
.y21{bottom:454.215000px;}
.y92{bottom:456.915000px;}
.y44{bottom:457.275000px;}
.y74{bottom:465.915000px;}
.y20{bottom:470.955000px;}
.y91{bottom:473.655000px;}
.y43{bottom:474.015000px;}
.y73{bottom:482.655000px;}
.y1f{bottom:487.695000px;}
.y90{bottom:490.395000px;}
.y42{bottom:490.755000px;}
.y72{bottom:499.395000px;}
.y1e{bottom:504.435000px;}
.y8f{bottom:507.135000px;}
.y41{bottom:507.495000px;}
.y71{bottom:516.135000px;}
.y8e{bottom:523.905000px;}
.y40{bottom:524.085000px;}
.y1d{bottom:528.945000px;}
.yb4{bottom:532.185000px;}
.y70{bottom:532.905000px;}
.yb3{bottom:548.925000px;}
.y6f{bottom:549.645000px;}
.y3f{bottom:549.825000px;}
.y1c{bottom:554.685000px;}
.yb9{bottom:557.925000px;}
.y1b{bottom:564.945000px;}
.yb2{bottom:565.665000px;}
.y6e{bottom:566.385000px;}
.y3e{bottom:566.565000px;}
.yb8{bottom:574.665000px;}
.y1a{bottom:577.905000px;}
.yb1{bottom:582.225000px;}
.y6d{bottom:583.125000px;}
.y3d{bottom:583.305000px;}
.yb7{bottom:591.225000px;}
.y19{bottom:591.405000px;}
.yb0{bottom:598.965000px;}
.y6c{bottom:599.685000px;}
.y3c{bottom:600.045000px;}
.yb6{bottom:607.965000px;}
.yaf{bottom:615.705000px;}
.y6b{bottom:616.425000px;}
.y18{bottom:616.785000px;}
.yb5{bottom:624.705000px;}
.y6a{bottom:633.165000px;}
.y3b{bottom:633.525000px;}
.y17{bottom:637.485000px;}
.yae{bottom:641.445000px;}
.y69{bottom:649.905000px;}
.y3a{bottom:650.265000px;}
.y16{bottom:658.185000px;}
.y68{bottom:666.645000px;}
.y39{bottom:666.825000px;}
.yad{bottom:674.925000px;}
.y15{bottom:678.705000px;}
.y67{bottom:683.385000px;}
.y38{bottom:683.565000px;}
.yac{bottom:691.665000px;}
.y14{bottom:699.450000px;}
.y66{bottom:700.170000px;}
.y37{bottom:700.350000px;}
.yab{bottom:708.450000px;}
.y65{bottom:716.910000px;}
.y36{bottom:717.090000px;}
.yaa{bottom:725.010000px;}
.y13{bottom:728.250000px;}
.y64{bottom:733.470000px;}
.y12{bottom:741.570000px;}
.ya9{bottom:741.750000px;}
.y63{bottom:750.210000px;}
.ya8{bottom:758.490000px;}
.y8d{bottom:759.210000px;}
.y62{bottom:766.950000px;}
.y11{bottom:769.290000px;}
.ya7{bottom:775.230000px;}
.y8c{bottom:775.950000px;}
.y10{bottom:780.450000px;}
.yf{bottom:789.270000px;}
.ya6{bottom:791.970000px;}
.y61{bottom:792.690000px;}
.ye{bottom:797.910000px;}
.yd{bottom:806.730000px;}
.ya5{bottom:808.710000px;}
.y60{bottom:809.430000px;}
.yc{bottom:815.550000px;}
.yb{bottom:824.370000px;}
.ya4{bottom:825.450000px;}
.y5f{bottom:826.170000px;}
.ya{bottom:837.870000px;}
.ya3{bottom:842.190000px;}
.y5e{bottom:842.910000px;}
.ya2{bottom:857.670000px;}
.y5d{bottom:857.850000px;}
.y9{bottom:867.570000px;}
.y5c{bottom:869.730000px;}
.y5b{bottom:881.820000px;}
.y4{bottom:887.040000px;}
.y5a{bottom:893.880000px;}
.he{height:4.199063px;}
.h7{height:11.880000px;}
.h2{height:17.460000px;}
.hb{height:21.671719px;}
.h3{height:22.045078px;}
.h14{height:28.995469px;}
.h8{height:30.077578px;}
.h13{height:30.402422px;}
.h15{height:32.158828px;}
.h12{height:33.023320px;}
.h11{height:33.067617px;}
.h10{height:39.313477px;}
.hd{height:39.366211px;}
.h6{height:41.535703px;}
.h9{height:48.224531px;}
.hc{height:48.289219px;}
.h5{height:49.992188px;}
.hf{height:52.417969px;}
.h4{height:65.884219px;}
.ha{height:81.632812px;}
.h0{height:956.880000px;}
.h1{height:957.000000px;}
.w4{width:57.816000px;}
.w2{width:389.085000px;}
.w1{width:639.000000px;}
.w3{width:639.179990px;}
.w0{width:639.180000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x2{left:16.020000px;}
.xc{left:53.999990px;}
.x4{left:67.539000px;}
.xb{left:75.275990px;}
.x9{left:117.935990px;}
.x1{left:125.136000px;}
.xd{left:187.454990px;}
.xf{left:197.894990px;}
.xe{left:232.994990px;}
.x15{left:306.824990px;}
.x10{left:308.444990px;}
.x6{left:319.604990px;}
.x12{left:330.944990px;}
.x3{left:338.694000px;}
.x11{left:352.184990px;}
.xa{left:407.084990px;}
.x16{left:454.649990px;}
.x7{left:527.010000px;}
.x13{left:548.459990px;}
.x14{left:580.499990px;}
.x5{left:585.359990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.v2{vertical-align:10.880000pt;}
.ls10{letter-spacing:-0.778667pt;}
.lsc{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.554667pt;}
.ls12{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.298133pt;}
.ls20{letter-spacing:-0.286933pt;}
.ls21{letter-spacing:-0.143467pt;}
.lsf{letter-spacing:-0.140800pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.121600pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls1d{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls18{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.106240pt;}
.ls1a{letter-spacing:0.181333pt;}
.ls3{letter-spacing:0.201067pt;}
.lse{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.341867pt;}
.ls8{letter-spacing:0.353067pt;}
.ls9{letter-spacing:0.353280pt;}
.ls19{letter-spacing:0.354133pt;}
.ls0{letter-spacing:0.499200pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.542720pt;}
.ls13{letter-spacing:0.592000pt;}
.ls7{letter-spacing:0.619520pt;}
.ls4{letter-spacing:0.981760pt;}
.ls17{letter-spacing:3.061333pt;}
.wsd{word-spacing:-26.880000pt;}
.ws16{word-spacing:-10.880000pt;}
.ws18{word-spacing:-10.816000pt;}
.ws15{word-spacing:-8.816427pt;}
.ws19{word-spacing:-8.176427pt;}
.wsf{word-spacing:-8.151253pt;}
.ws8{word-spacing:-6.720640pt;}
.ws7{word-spacing:-6.470507pt;}
.ws4{word-spacing:-6.356373pt;}
.ws6{word-spacing:-6.329707pt;}
.ws9{word-spacing:-6.213973pt;}
.ws3{word-spacing:-6.128640pt;}
.ws2{word-spacing:-6.031573pt;}
.ws5{word-spacing:-5.987840pt;}
.wsa{word-spacing:-5.830507pt;}
.wsb{word-spacing:-5.760107pt;}
.ws0{word-spacing:-5.573973pt;}
.ws1a{word-spacing:-5.544960pt;}
.ws11{word-spacing:-5.444053pt;}
.ws1{word-spacing:-5.392640pt;}
.ws14{word-spacing:-5.361387pt;}
.wsc{word-spacing:-5.349973pt;}
.ws12{word-spacing:-5.271253pt;}
.ws13{word-spacing:-4.968320pt;}
.ws10{word-spacing:-3.239040pt;}
.wse{word-spacing:-0.048000pt;}
.ws17{word-spacing:0.000000pt;}
._2{margin-left:-2.830720pt;}
._1{margin-left:-1.745920pt;}
._0{width:1.523200pt;}
._6{width:2.424107pt;}
._4{width:3.423787pt;}
._17{width:4.528427pt;}
._5{width:6.111360pt;}
._14{width:7.123200pt;}
._23{width:8.016000pt;}
._3{width:8.980907pt;}
._c{width:9.986987pt;}
._13{width:11.952000pt;}
._18{width:13.392000pt;}
._11{width:14.544000pt;}
._10{width:15.696000pt;}
._7{width:16.704000pt;}
._f{width:17.856000pt;}
._12{width:19.584000pt;}
._1f{width:20.494720pt;}
._8{width:21.440000pt;}
._19{width:22.400000pt;}
._1e{width:23.952000pt;}
._20{width:24.990720pt;}
._15{width:26.016000pt;}
._d{width:27.168000pt;}
._e{width:28.608000pt;}
._b{width:30.384000pt;}
._a{width:31.488000pt;}
._1d{width:34.992000pt;}
._9{width:36.416000pt;}
._16{width:40.704000pt;}
._21{width:42.528000pt;}
._22{width:43.552000pt;}
._1c{width:48.768000pt;}
._1a{width:55.968000pt;}
._1b{width:57.312000pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:13.440000pt;}
.fs6{font-size:21.120000pt;}
.fsa{font-size:24.320000pt;}
.fs0{font-size:26.880000pt;}
.fs3{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.600000pt;}
.y8{bottom:3.680000pt;}
.y2{bottom:9.280000pt;}
.y1{bottom:40.000000pt;}
.y7{bottom:42.240000pt;}
.y6{bottom:50.400000pt;}
.y8b{bottom:56.320000pt;}
.y5{bottom:62.720000pt;}
.y8a{bottom:71.200000pt;}
.y89{bottom:86.080000pt;}
.y59{bottom:86.400000pt;}
.y35{bottom:90.400000pt;}
.y88{bottom:100.960000pt;}
.y58{bottom:101.120000pt;}
.y34{bottom:105.280000pt;}
.ya1{bottom:115.840000pt;}
.y57{bottom:116.000000pt;}
.y33{bottom:120.160000pt;}
.y87{bottom:123.840000pt;}
.ya0{bottom:130.720000pt;}
.y56{bottom:130.880000pt;}
.y32{bottom:135.040000pt;}
.y86{bottom:138.720000pt;}
.y9f{bottom:145.600000pt;}
.y55{bottom:145.760000pt;}
.y31{bottom:149.920000pt;}
.y85{bottom:153.626667pt;}
.y9e{bottom:160.506667pt;}
.y54{bottom:160.666667pt;}
.y30{bottom:164.826667pt;}
.y84{bottom:168.506667pt;}
.y9d{bottom:175.226667pt;}
.y2f{bottom:179.706667pt;}
.y83{bottom:183.226667pt;}
.y53{bottom:183.546667pt;}
.y9c{bottom:190.106667pt;}
.y2e{bottom:194.586667pt;}
.y82{bottom:198.106667pt;}
.y52{bottom:198.426667pt;}
.y9b{bottom:204.986667pt;}
.y2d{bottom:209.306667pt;}
.y81{bottom:212.986667pt;}
.y51{bottom:213.306667pt;}
.y9a{bottom:219.866667pt;}
.y2c{bottom:224.186667pt;}
.y80{bottom:227.866667pt;}
.y50{bottom:228.026667pt;}
.y99{bottom:234.746667pt;}
.y2b{bottom:239.066667pt;}
.y7f{bottom:242.746667pt;}
.y4f{bottom:242.906667pt;}
.y98{bottom:249.626667pt;}
.y7e{bottom:257.626667pt;}
.y4e{bottom:257.786667pt;}
.y2a{bottom:261.946667pt;}
.y7d{bottom:272.506667pt;}
.y4d{bottom:272.666667pt;}
.y29{bottom:276.826667pt;}
.y7c{bottom:287.386667pt;}
.y4c{bottom:287.546667pt;}
.y28{bottom:291.706667pt;}
.y7b{bottom:302.106667pt;}
.y4b{bottom:302.426667pt;}
.y27{bottom:306.586667pt;}
.y7a{bottom:317.026667pt;}
.y4a{bottom:317.346667pt;}
.y26{bottom:321.506667pt;}
.y97{bottom:331.906667pt;}
.y49{bottom:332.226667pt;}
.y25{bottom:336.226667pt;}
.y79{bottom:339.906667pt;}
.y96{bottom:346.786667pt;}
.y48{bottom:346.946667pt;}
.y78{bottom:354.786667pt;}
.y24{bottom:359.106667pt;}
.y95{bottom:361.666667pt;}
.y47{bottom:361.826667pt;}
.y77{bottom:369.666667pt;}
.y23{bottom:373.986667pt;}
.y94{bottom:376.546667pt;}
.y46{bottom:376.706667pt;}
.y76{bottom:384.546667pt;}
.y22{bottom:388.866667pt;}
.y93{bottom:391.426667pt;}
.y45{bottom:391.586667pt;}
.y75{bottom:399.426667pt;}
.y21{bottom:403.746667pt;}
.y92{bottom:406.146667pt;}
.y44{bottom:406.466667pt;}
.y74{bottom:414.146667pt;}
.y20{bottom:418.626667pt;}
.y91{bottom:421.026667pt;}
.y43{bottom:421.346667pt;}
.y73{bottom:429.026667pt;}
.y1f{bottom:433.506667pt;}
.y90{bottom:435.906667pt;}
.y42{bottom:436.226667pt;}
.y72{bottom:443.906667pt;}
.y1e{bottom:448.386667pt;}
.y8f{bottom:450.786667pt;}
.y41{bottom:451.106667pt;}
.y71{bottom:458.786667pt;}
.y8e{bottom:465.693333pt;}
.y40{bottom:465.853333pt;}
.y1d{bottom:470.173333pt;}
.yb4{bottom:473.053333pt;}
.y70{bottom:473.693333pt;}
.yb3{bottom:487.933333pt;}
.y6f{bottom:488.573333pt;}
.y3f{bottom:488.733333pt;}
.y1c{bottom:493.053333pt;}
.yb9{bottom:495.933333pt;}
.y1b{bottom:502.173333pt;}
.yb2{bottom:502.813333pt;}
.y6e{bottom:503.453333pt;}
.y3e{bottom:503.613333pt;}
.yb8{bottom:510.813333pt;}
.y1a{bottom:513.693333pt;}
.yb1{bottom:517.533333pt;}
.y6d{bottom:518.333333pt;}
.y3d{bottom:518.493333pt;}
.yb7{bottom:525.533333pt;}
.y19{bottom:525.693333pt;}
.yb0{bottom:532.413333pt;}
.y6c{bottom:533.053333pt;}
.y3c{bottom:533.373333pt;}
.yb6{bottom:540.413333pt;}
.yaf{bottom:547.293333pt;}
.y6b{bottom:547.933333pt;}
.y18{bottom:548.253333pt;}
.yb5{bottom:555.293333pt;}
.y6a{bottom:562.813333pt;}
.y3b{bottom:563.133333pt;}
.y17{bottom:566.653333pt;}
.yae{bottom:570.173333pt;}
.y69{bottom:577.693333pt;}
.y3a{bottom:578.013333pt;}
.y16{bottom:585.053333pt;}
.y68{bottom:592.573333pt;}
.y39{bottom:592.733333pt;}
.yad{bottom:599.933333pt;}
.y15{bottom:603.293333pt;}
.y67{bottom:607.453333pt;}
.y38{bottom:607.613333pt;}
.yac{bottom:614.813333pt;}
.y14{bottom:621.733333pt;}
.y66{bottom:622.373333pt;}
.y37{bottom:622.533333pt;}
.yab{bottom:629.733333pt;}
.y65{bottom:637.253333pt;}
.y36{bottom:637.413333pt;}
.yaa{bottom:644.453333pt;}
.y13{bottom:647.333333pt;}
.y64{bottom:651.973333pt;}
.y12{bottom:659.173333pt;}
.ya9{bottom:659.333333pt;}
.y63{bottom:666.853333pt;}
.ya8{bottom:674.213333pt;}
.y8d{bottom:674.853333pt;}
.y62{bottom:681.733333pt;}
.y11{bottom:683.813333pt;}
.ya7{bottom:689.093333pt;}
.y8c{bottom:689.733333pt;}
.y10{bottom:693.733333pt;}
.yf{bottom:701.573333pt;}
.ya6{bottom:703.973333pt;}
.y61{bottom:704.613333pt;}
.ye{bottom:709.253333pt;}
.yd{bottom:717.093333pt;}
.ya5{bottom:718.853333pt;}
.y60{bottom:719.493333pt;}
.yc{bottom:724.933333pt;}
.yb{bottom:732.773333pt;}
.ya4{bottom:733.733333pt;}
.y5f{bottom:734.373333pt;}
.ya{bottom:744.773333pt;}
.ya3{bottom:748.613333pt;}
.y5e{bottom:749.253333pt;}
.ya2{bottom:762.373333pt;}
.y5d{bottom:762.533333pt;}
.y9{bottom:771.173333pt;}
.y5c{bottom:773.093333pt;}
.y5b{bottom:783.840000pt;}
.y4{bottom:788.480000pt;}
.y5a{bottom:794.560000pt;}
.he{height:3.732500pt;}
.h7{height:10.560000pt;}
.h2{height:15.520000pt;}
.hb{height:19.263750pt;}
.h3{height:19.595625pt;}
.h14{height:25.773750pt;}
.h8{height:26.735625pt;}
.h13{height:27.024375pt;}
.h15{height:28.585625pt;}
.h12{height:29.354062pt;}
.h11{height:29.393437pt;}
.h10{height:34.945312pt;}
.hd{height:34.992188pt;}
.h6{height:36.920625pt;}
.h9{height:42.866250pt;}
.hc{height:42.923750pt;}
.h5{height:44.437500pt;}
.hf{height:46.593750pt;}
.h4{height:58.563750pt;}
.ha{height:72.562500pt;}
.h0{height:850.560000pt;}
.h1{height:850.666667pt;}
.w4{width:51.392000pt;}
.w2{width:345.853333pt;}
.w1{width:568.000000pt;}
.w3{width:568.159992pt;}
.w0{width:568.160000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x2{left:14.240000pt;}
.xc{left:47.999992pt;}
.x4{left:60.034667pt;}
.xb{left:66.911992pt;}
.x9{left:104.831992pt;}
.x1{left:111.232000pt;}
.xd{left:166.626658pt;}
.xf{left:175.906658pt;}
.xe{left:207.106658pt;}
.x15{left:272.733325pt;}
.x10{left:274.173325pt;}
.x6{left:284.093325pt;}
.x12{left:294.173325pt;}
.x3{left:301.061333pt;}
.x11{left:313.053325pt;}
.xa{left:361.853325pt;}
.x16{left:404.133325pt;}
.x7{left:468.453333pt;}
.x13{left:487.519992pt;}
.x14{left:515.999992pt;}
.x5{left:520.319992pt;}
}




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