
    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_c281558372780d847be1edb8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e87a2e90fa3ff4f010f842a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb6298e0fc51a48698f5e60f.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_9ceecb27c4f5603329c97c03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096191;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_53ba5c6a81c96e3de688c565.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_25d277898d9d91ad88cacbcc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4ee43dc430be78343c10877e.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_e584cb2f77b6564ccb24f27d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_4636066670890418c30c41fe.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ee4a9eb5ef57719237198dfa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.955078;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_6ca070eef69136e4ff3e8538.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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-2.736000px;}
.ls5{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-1.296000px;}
.ls6{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.731520px;}
.lsc{letter-spacing:1.152000px;}
.ls21{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.620000px;}
.lse{letter-spacing:1.944000px;}
.ls1d{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.880000px;}
.ls10{letter-spacing:3.600000px;}
.ls15{letter-spacing:5.040000px;}
.ls13{letter-spacing:5.160000px;}
.lsf{letter-spacing:6.480000px;}
.ls19{letter-spacing:6.492000px;}
.ls12{letter-spacing:6.600000px;}
.ls1b{letter-spacing:7.920000px;}
.ls1a{letter-spacing:7.932000px;}
.ls16{letter-spacing:13.680000px;}
.ls2{letter-spacing:15.120000px;}
.ls1f{letter-spacing:18.000000px;}
.ls11{letter-spacing:20.880000px;}
.ls20{letter-spacing:35.280000px;}
.ls22{letter-spacing:53.424000px;}
.ls1{letter-spacing:75.749760px;}
.ls0{letter-spacing:111.869760px;}
.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:-73.440000px;}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.938800px;}
.wsa{word-spacing:-20.880000px;}
.ws5{word-spacing:-19.440000px;}
.wsd{word-spacing:-19.296000px;}
.wsb{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.704000px;}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-3.715200px;}
._2{margin-left:-2.462400px;}
._1{margin-left:-1.094400px;}
._0{width:1.137600px;}
._4{width:2.361600px;}
._3{width:3.398400px;}
._9{width:5.112000px;}
._7{width:6.350400px;}
._13{width:8.049600px;}
._15{width:9.117600px;}
._f{width:10.389600px;}
._e{width:12.396000px;}
._14{width:14.042400px;}
._10{width:15.710400px;}
._1f{width:16.936800px;}
._11{width:19.944000px;}
._12{width:21.398400px;}
._1b{width:22.660800px;}
._d{width:24.552000px;}
._c{width:25.876800px;}
._1e{width:27.446400px;}
._19{width:28.560000px;}
._18{width:29.810400px;}
._1d{width:30.969600px;}
._16{width:32.256000px;}
._17{width:33.264000px;}
._1a{width:34.617600px;}
._21{width:36.000000px;}
._20{width:37.036800px;}
._22{width:38.616000px;}
._6{width:40.176000px;}
._5{width:41.460000px;}
._26{width:42.777600px;}
._a{width:44.167200px;}
._b{width:45.175200px;}
._8{width:46.596000px;}
._23{width:48.326400px;}
._24{width:140.414400px;}
._25{width:142.603200px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:7.200000px;}
.ya0{bottom:7.560000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.520000px;}
.y9c{bottom:30.960000px;}
.ya3{bottom:31.320000px;}
.y9f{bottom:31.680000px;}
.y8{bottom:55.476000px;}
.y5{bottom:57.276000px;}
.y4d{bottom:100.116000px;}
.yb8{bottom:104.436000px;}
.y4c{bottom:105.516000px;}
.y92{bottom:108.396000px;}
.y34{bottom:109.476000px;}
.y4b{bottom:120.996000px;}
.ye0{bottom:121.356000px;}
.y6e{bottom:125.316000px;}
.y4a{bottom:126.396000px;}
.yb7{bottom:128.232000px;}
.y33{bottom:133.632000px;}
.y91{bottom:137.592000px;}
.y49{bottom:141.552000px;}
.ydf{bottom:145.152000px;}
.yb6{bottom:152.355000px;}
.y32{bottom:157.395000px;}
.y6d{bottom:160.995000px;}
.yde{bottom:168.915000px;}
.y90{bottom:173.235000px;}
.yb5{bottom:176.115000px;}
.y48{bottom:180.795000px;}
.y31{bottom:181.155000px;}
.y6c{bottom:191.595000px;}
.ydd{bottom:193.035000px;}
.yb4{bottom:199.875000px;}
.y8f{bottom:203.835000px;}
.y47{bottom:204.555000px;}
.y30{bottom:204.915000px;}
.y6b{bottom:215.355000px;}
.ydc{bottom:216.795000px;}
.yb3{bottom:223.635000px;}
.y8e{bottom:227.595000px;}
.y46{bottom:228.315000px;}
.y2f{bottom:228.675000px;}
.ydb{bottom:240.555000px;}
.y6a{bottom:244.515000px;}
.yb2{bottom:247.395000px;}
.y8d{bottom:251.355000px;}
.y45{bottom:252.075000px;}
.y2e{bottom:252.435000px;}
.yda{bottom:264.345000px;}
.yb1{bottom:271.185000px;}
.y8c{bottom:275.505000px;}
.y2d{bottom:276.225000px;}
.y69{bottom:280.185000px;}
.y44{bottom:280.905000px;}
.yd9{bottom:288.105000px;}
.yb0{bottom:294.945000px;}
.y8b{bottom:299.265000px;}
.y2c{bottom:299.985000px;}
.y43{bottom:311.865000px;}
.y68{bottom:316.185000px;}
.yaf{bottom:318.705000px;}
.y8a{bottom:323.025000px;}
.y2b{bottom:323.745000px;}
.y42{bottom:335.625000px;}
.yae{bottom:342.465000px;}
.y67{bottom:346.785000px;}
.y2a{bottom:347.865000px;}
.yd8{bottom:359.385000px;}
.y41{bottom:364.425000px;}
.yad{bottom:366.225000px;}
.y66{bottom:370.545000px;}
.y29{bottom:371.625000px;}
.yd7{bottom:383.145000px;}
.yac{bottom:390.345000px;}
.y89{bottom:394.350000px;}
.y28{bottom:395.430000px;}
.y65{bottom:399.390000px;}
.y40{bottom:400.470000px;}
.yd6{bottom:407.310000px;}
.yab{bottom:414.150000px;}
.y88{bottom:418.110000px;}
.y27{bottom:419.190000px;}
.y64{bottom:430.350000px;}
.y3f{bottom:431.070000px;}
.yaa{bottom:437.910000px;}
.y87{bottom:441.870000px;}
.y26{bottom:442.950000px;}
.y63{bottom:454.110000px;}
.yd5{bottom:454.830000px;}
.y3e{bottom:459.870000px;}
.ya9{bottom:461.670000px;}
.y86{bottom:465.990000px;}
.y25{bottom:466.710000px;}
.y62{bottom:477.870000px;}
.yd4{bottom:478.590000px;}
.ya8{bottom:485.430000px;}
.y85{bottom:489.750000px;}
.y24{bottom:490.470000px;}
.y61{bottom:501.630000px;}
.yd3{bottom:502.350000px;}
.ya7{bottom:509.190000px;}
.y84{bottom:513.510000px;}
.y23{bottom:514.230000px;}
.y60{bottom:525.390000px;}
.yd2{bottom:526.110000px;}
.ya6{bottom:532.980000px;}
.y83{bottom:537.300000px;}
.y22{bottom:538.380000px;}
.y5f{bottom:549.180000px;}
.yd1{bottom:549.900000px;}
.ya5{bottom:557.100000px;}
.y82{bottom:560.700000px;}
.y3d{bottom:561.780000px;}
.y21{bottom:562.140000px;}
.y5e{bottom:572.940000px;}
.yd0{bottom:573.660000px;}
.ya4{bottom:574.020000px;}
.y81{bottom:584.820000px;}
.y20{bottom:585.900000px;}
.y5d{bottom:596.700000px;}
.ycf{bottom:597.780000px;}
.ya2{bottom:598.500000px;}
.y80{bottom:608.580000px;}
.y1f{bottom:609.660000px;}
.y5c{bottom:620.820000px;}
.yce{bottom:621.540000px;}
.y7f{bottom:632.340000px;}
.y1e{bottom:633.420000px;}
.y5b{bottom:644.580000px;}
.ycd{bottom:645.300000px;}
.ya1{bottom:646.740000px;}
.y7e{bottom:656.100000px;}
.y1d{bottom:657.180000px;}
.y5a{bottom:668.370000px;}
.ycc{bottom:669.090000px;}
.y9e{bottom:671.250000px;}
.y7d{bottom:680.250000px;}
.y1c{bottom:680.970000px;}
.y59{bottom:691.770000px;}
.ycb{bottom:692.850000px;}
.y7c{bottom:704.010000px;}
.y1b{bottom:704.730000px;}
.y58{bottom:715.890000px;}
.yca{bottom:716.610000px;}
.y9b{bottom:719.850000px;}
.y7b{bottom:727.770000px;}
.y1a{bottom:728.490000px;}
.y57{bottom:739.650000px;}
.yc9{bottom:740.010000px;}
.y7a{bottom:751.530000px;}
.y19{bottom:752.610000px;}
.yc8{bottom:764.130000px;}
.y56{bottom:768.810000px;}
.y9a{bottom:775.650000px;}
.y18{bottom:776.370000px;}
.y79{bottom:780.330000px;}
.yc7{bottom:788.250000px;}
.y99{bottom:799.455000px;}
.y17{bottom:800.175000px;}
.y55{bottom:804.495000px;}
.yc6{bottom:812.055000px;}
.y78{bottom:816.375000px;}
.y98{bottom:823.215000px;}
.y16{bottom:823.935000px;}
.y3c{bottom:830.775000px;}
.yc5{bottom:835.815000px;}
.y54{bottom:840.135000px;}
.y97{bottom:846.975000px;}
.y15{bottom:847.695000px;}
.y77{bottom:852.015000px;}
.yc4{bottom:859.575000px;}
.y14{bottom:871.455000px;}
.y53{bottom:876.135000px;}
.yc3{bottom:883.335000px;}
.y76{bottom:888.015000px;}
.y13{bottom:895.215000px;}
.yc2{bottom:907.095000px;}
.y52{bottom:911.775000px;}
.y12{bottom:918.975000px;}
.y75{bottom:923.655000px;}
.yc1{bottom:930.885000px;}
.y96{bottom:942.405000px;}
.ye1{bottom:942.765000px;}
.y11{bottom:943.125000px;}
.y51{bottom:947.805000px;}
.yc0{bottom:954.645000px;}
.y74{bottom:959.685000px;}
.y95{bottom:966.525000px;}
.y10{bottom:966.885000px;}
.ybf{bottom:978.045000px;}
.y50{bottom:983.445000px;}
.yf{bottom:990.285000px;}
.y3b{bottom:990.645000px;}
.y94{bottom:995.325000px;}
.ybe{bottom:1002.525000px;}
.y73{bottom:1014.045000px;}
.ye{bottom:1014.405000px;}
.y4f{bottom:1019.445000px;}
.ybd{bottom:1026.285000px;}
.y93{bottom:1031.325000px;}
.yd{bottom:1037.805000px;}
.y3a{bottom:1038.165000px;}
.y72{bottom:1042.845000px;}
.ybc{bottom:1050.045000px;}
.y4e{bottom:1055.085000px;}
.yc{bottom:1061.565000px;}
.y39{bottom:1061.925000px;}
.ybb{bottom:1073.850000px;}
.y71{bottom:1078.890000px;}
.y38{bottom:1085.730000px;}
.yb{bottom:1087.530000px;}
.yba{bottom:1097.610000px;}
.y37{bottom:1109.490000px;}
.y70{bottom:1114.530000px;}
.ya{bottom:1119.210000px;}
.yb9{bottom:1121.370000px;}
.y36{bottom:1133.610000px;}
.y6f{bottom:1150.530000px;}
.y9{bottom:1151.250000px;}
.y35{bottom:1157.370000px;}
.y4{bottom:1178.610000px;}
.y3{bottom:1195.530000px;}
.y2{bottom:1212.120000px;}
.y1{bottom:1229.040000px;}
.h6{height:4.021875px;}
.h12{height:23.760000px;}
.h11{height:23.796000px;}
.h3{height:27.000000px;}
.hb{height:33.180469px;}
.h2{height:38.608594px;}
.hd{height:38.671172px;}
.hf{height:47.520000px;}
.h10{height:47.880000px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.h9{height:51.996094px;}
.h13{height:52.417969px;}
.ha{height:52.628906px;}
.he{height:60.155156px;}
.hc{height:62.437500px;}
.h5{height:65.884219px;}
.h7{height:68.073047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w7{width:230.505000px;}
.w8{width:238.395000px;}
.w5{width:305.430000px;}
.w3{width:305.745000px;}
.w1{width:892.500000px;}
.w6{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x16{left:14.760000px;}
.x19{left:31.320000px;}
.x1b{left:40.725000px;}
.x17{left:68.799000px;}
.x5{left:87.516000px;}
.xa{left:95.795987px;}
.x2{left:101.195987px;}
.x1c{left:127.835987px;}
.x1{left:138.635987px;}
.xb{left:146.591987px;}
.xc{left:148.751987px;}
.xd{left:167.114987px;}
.x11{left:174.314973px;}
.x12{left:180.434987px;}
.x3{left:206.714987px;}
.xf{left:209.594987px;}
.x13{left:286.304973px;}
.x14{left:292.424987px;}
.x10{left:296.024987px;}
.x6{left:297.834000px;}
.x15{left:311.864987px;}
.x18{left:327.390000px;}
.xe{left:328.469987px;}
.x7{left:393.990000px;}
.x4{left:446.579987px;}
.x9{left:500.220000px;}
.x1a{left:566.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-2.432000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-1.152000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.650240pt;}
.lsc{letter-spacing:1.024000pt;}
.ls21{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.440000pt;}
.lse{letter-spacing:1.728000pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls13{letter-spacing:4.586667pt;}
.lsf{letter-spacing:5.760000pt;}
.ls19{letter-spacing:5.770667pt;}
.ls12{letter-spacing:5.866667pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:7.050667pt;}
.ls16{letter-spacing:12.160000pt;}
.ls2{letter-spacing:13.440000pt;}
.ls1f{letter-spacing:16.000000pt;}
.ls11{letter-spacing:18.560000pt;}
.ls20{letter-spacing:31.360000pt;}
.ls22{letter-spacing:47.488000pt;}
.ls1{letter-spacing:67.333120pt;}
.ls0{letter-spacing:99.439787pt;}
.ws8{word-spacing:-65.280000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.278933pt;}
.wsa{word-spacing:-18.560000pt;}
.ws5{word-spacing:-17.280000pt;}
.wsd{word-spacing:-17.152000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.848000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-3.302400pt;}
._2{margin-left:-2.188800pt;}
._1{margin-left:-0.972800pt;}
._0{width:1.011200pt;}
._4{width:2.099200pt;}
._3{width:3.020800pt;}
._9{width:4.544000pt;}
._7{width:5.644800pt;}
._13{width:7.155200pt;}
._15{width:8.104533pt;}
._f{width:9.235200pt;}
._e{width:11.018667pt;}
._14{width:12.482133pt;}
._10{width:13.964800pt;}
._1f{width:15.054933pt;}
._11{width:17.728000pt;}
._12{width:19.020800pt;}
._1b{width:20.142933pt;}
._d{width:21.824000pt;}
._c{width:23.001600pt;}
._1e{width:24.396800pt;}
._19{width:25.386667pt;}
._18{width:26.498133pt;}
._1d{width:27.528533pt;}
._16{width:28.672000pt;}
._17{width:29.568000pt;}
._1a{width:30.771200pt;}
._21{width:32.000000pt;}
._20{width:32.921600pt;}
._22{width:34.325333pt;}
._6{width:35.712000pt;}
._5{width:36.853333pt;}
._26{width:38.024533pt;}
._a{width:39.259733pt;}
._b{width:40.155733pt;}
._8{width:41.418667pt;}
._23{width:42.956800pt;}
._24{width:124.812800pt;}
._25{width:126.758400pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:6.400000pt;}
.ya0{bottom:6.720000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:10.240000pt;}
.y9c{bottom:27.520000pt;}
.ya3{bottom:27.840000pt;}
.y9f{bottom:28.160000pt;}
.y8{bottom:49.312000pt;}
.y5{bottom:50.912000pt;}
.y4d{bottom:88.992000pt;}
.yb8{bottom:92.832000pt;}
.y4c{bottom:93.792000pt;}
.y92{bottom:96.352000pt;}
.y34{bottom:97.312000pt;}
.y4b{bottom:107.552000pt;}
.ye0{bottom:107.872000pt;}
.y6e{bottom:111.392000pt;}
.y4a{bottom:112.352000pt;}
.yb7{bottom:113.984000pt;}
.y33{bottom:118.784000pt;}
.y91{bottom:122.304000pt;}
.y49{bottom:125.824000pt;}
.ydf{bottom:129.024000pt;}
.yb6{bottom:135.426667pt;}
.y32{bottom:139.906667pt;}
.y6d{bottom:143.106667pt;}
.yde{bottom:150.146667pt;}
.y90{bottom:153.986667pt;}
.yb5{bottom:156.546667pt;}
.y48{bottom:160.706667pt;}
.y31{bottom:161.026667pt;}
.y6c{bottom:170.306667pt;}
.ydd{bottom:171.586667pt;}
.yb4{bottom:177.666667pt;}
.y8f{bottom:181.186667pt;}
.y47{bottom:181.826667pt;}
.y30{bottom:182.146667pt;}
.y6b{bottom:191.426667pt;}
.ydc{bottom:192.706667pt;}
.yb3{bottom:198.786667pt;}
.y8e{bottom:202.306667pt;}
.y46{bottom:202.946667pt;}
.y2f{bottom:203.266667pt;}
.ydb{bottom:213.826667pt;}
.y6a{bottom:217.346667pt;}
.yb2{bottom:219.906667pt;}
.y8d{bottom:223.426667pt;}
.y45{bottom:224.066667pt;}
.y2e{bottom:224.386667pt;}
.yda{bottom:234.973333pt;}
.yb1{bottom:241.053333pt;}
.y8c{bottom:244.893333pt;}
.y2d{bottom:245.533333pt;}
.y69{bottom:249.053333pt;}
.y44{bottom:249.693333pt;}
.yd9{bottom:256.093333pt;}
.yb0{bottom:262.173333pt;}
.y8b{bottom:266.013333pt;}
.y2c{bottom:266.653333pt;}
.y43{bottom:277.213333pt;}
.y68{bottom:281.053333pt;}
.yaf{bottom:283.293333pt;}
.y8a{bottom:287.133333pt;}
.y2b{bottom:287.773333pt;}
.y42{bottom:298.333333pt;}
.yae{bottom:304.413333pt;}
.y67{bottom:308.253333pt;}
.y2a{bottom:309.213333pt;}
.yd8{bottom:319.453333pt;}
.y41{bottom:323.933333pt;}
.yad{bottom:325.533333pt;}
.y66{bottom:329.373333pt;}
.y29{bottom:330.333333pt;}
.yd7{bottom:340.573333pt;}
.yac{bottom:346.973333pt;}
.y89{bottom:350.533333pt;}
.y28{bottom:351.493333pt;}
.y65{bottom:355.013333pt;}
.y40{bottom:355.973333pt;}
.yd6{bottom:362.053333pt;}
.yab{bottom:368.133333pt;}
.y88{bottom:371.653333pt;}
.y27{bottom:372.613333pt;}
.y64{bottom:382.533333pt;}
.y3f{bottom:383.173333pt;}
.yaa{bottom:389.253333pt;}
.y87{bottom:392.773333pt;}
.y26{bottom:393.733333pt;}
.y63{bottom:403.653333pt;}
.yd5{bottom:404.293333pt;}
.y3e{bottom:408.773333pt;}
.ya9{bottom:410.373333pt;}
.y86{bottom:414.213333pt;}
.y25{bottom:414.853333pt;}
.y62{bottom:424.773333pt;}
.yd4{bottom:425.413333pt;}
.ya8{bottom:431.493333pt;}
.y85{bottom:435.333333pt;}
.y24{bottom:435.973333pt;}
.y61{bottom:445.893333pt;}
.yd3{bottom:446.533333pt;}
.ya7{bottom:452.613333pt;}
.y84{bottom:456.453333pt;}
.y23{bottom:457.093333pt;}
.y60{bottom:467.013333pt;}
.yd2{bottom:467.653333pt;}
.ya6{bottom:473.760000pt;}
.y83{bottom:477.600000pt;}
.y22{bottom:478.560000pt;}
.y5f{bottom:488.160000pt;}
.yd1{bottom:488.800000pt;}
.ya5{bottom:495.200000pt;}
.y82{bottom:498.400000pt;}
.y3d{bottom:499.360000pt;}
.y21{bottom:499.680000pt;}
.y5e{bottom:509.280000pt;}
.yd0{bottom:509.920000pt;}
.ya4{bottom:510.240000pt;}
.y81{bottom:519.840000pt;}
.y20{bottom:520.800000pt;}
.y5d{bottom:530.400000pt;}
.ycf{bottom:531.360000pt;}
.ya2{bottom:532.000000pt;}
.y80{bottom:540.960000pt;}
.y1f{bottom:541.920000pt;}
.y5c{bottom:551.840000pt;}
.yce{bottom:552.480000pt;}
.y7f{bottom:562.080000pt;}
.y1e{bottom:563.040000pt;}
.y5b{bottom:572.960000pt;}
.ycd{bottom:573.600000pt;}
.ya1{bottom:574.880000pt;}
.y7e{bottom:583.200000pt;}
.y1d{bottom:584.160000pt;}
.y5a{bottom:594.106667pt;}
.ycc{bottom:594.746667pt;}
.y9e{bottom:596.666667pt;}
.y7d{bottom:604.666667pt;}
.y1c{bottom:605.306667pt;}
.y59{bottom:614.906667pt;}
.ycb{bottom:615.866667pt;}
.y7c{bottom:625.786667pt;}
.y1b{bottom:626.426667pt;}
.y58{bottom:636.346667pt;}
.yca{bottom:636.986667pt;}
.y9b{bottom:639.866667pt;}
.y7b{bottom:646.906667pt;}
.y1a{bottom:647.546667pt;}
.y57{bottom:657.466667pt;}
.yc9{bottom:657.786667pt;}
.y7a{bottom:668.026667pt;}
.y19{bottom:668.986667pt;}
.yc8{bottom:679.226667pt;}
.y56{bottom:683.386667pt;}
.y9a{bottom:689.466667pt;}
.y18{bottom:690.106667pt;}
.y79{bottom:693.626667pt;}
.yc7{bottom:700.666667pt;}
.y99{bottom:710.626667pt;}
.y17{bottom:711.266667pt;}
.y55{bottom:715.106667pt;}
.yc6{bottom:721.826667pt;}
.y78{bottom:725.666667pt;}
.y98{bottom:731.746667pt;}
.y16{bottom:732.386667pt;}
.y3c{bottom:738.466667pt;}
.yc5{bottom:742.946667pt;}
.y54{bottom:746.786667pt;}
.y97{bottom:752.866667pt;}
.y15{bottom:753.506667pt;}
.y77{bottom:757.346667pt;}
.yc4{bottom:764.066667pt;}
.y14{bottom:774.626667pt;}
.y53{bottom:778.786667pt;}
.yc3{bottom:785.186667pt;}
.y76{bottom:789.346667pt;}
.y13{bottom:795.746667pt;}
.yc2{bottom:806.306667pt;}
.y52{bottom:810.466667pt;}
.y12{bottom:816.866667pt;}
.y75{bottom:821.026667pt;}
.yc1{bottom:827.453333pt;}
.y96{bottom:837.693333pt;}
.ye1{bottom:838.013333pt;}
.y11{bottom:838.333333pt;}
.y51{bottom:842.493333pt;}
.yc0{bottom:848.573333pt;}
.y74{bottom:853.053333pt;}
.y95{bottom:859.133333pt;}
.y10{bottom:859.453333pt;}
.ybf{bottom:869.373333pt;}
.y50{bottom:874.173333pt;}
.yf{bottom:880.253333pt;}
.y3b{bottom:880.573333pt;}
.y94{bottom:884.733333pt;}
.ybe{bottom:891.133333pt;}
.y73{bottom:901.373333pt;}
.ye{bottom:901.693333pt;}
.y4f{bottom:906.173333pt;}
.ybd{bottom:912.253333pt;}
.y93{bottom:916.733333pt;}
.yd{bottom:922.493333pt;}
.y3a{bottom:922.813333pt;}
.y72{bottom:926.973333pt;}
.ybc{bottom:933.373333pt;}
.y4e{bottom:937.853333pt;}
.yc{bottom:943.613333pt;}
.y39{bottom:943.933333pt;}
.ybb{bottom:954.533333pt;}
.y71{bottom:959.013333pt;}
.y38{bottom:965.093333pt;}
.yb{bottom:966.693333pt;}
.yba{bottom:975.653333pt;}
.y37{bottom:986.213333pt;}
.y70{bottom:990.693333pt;}
.ya{bottom:994.853333pt;}
.yb9{bottom:996.773333pt;}
.y36{bottom:1007.653333pt;}
.y6f{bottom:1022.693333pt;}
.y9{bottom:1023.333333pt;}
.y35{bottom:1028.773333pt;}
.y4{bottom:1047.653333pt;}
.y3{bottom:1062.693333pt;}
.y2{bottom:1077.440000pt;}
.y1{bottom:1092.480000pt;}
.h6{height:3.575000pt;}
.h12{height:21.120000pt;}
.h11{height:21.152000pt;}
.h3{height:24.000000pt;}
.hb{height:29.493750pt;}
.h2{height:34.318750pt;}
.hd{height:34.374375pt;}
.hf{height:42.240000pt;}
.h10{height:42.560000pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.h9{height:46.218750pt;}
.h13{height:46.593750pt;}
.ha{height:46.781250pt;}
.he{height:53.471250pt;}
.hc{height:55.500000pt;}
.h5{height:58.563750pt;}
.h7{height:60.509375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w7{width:204.893333pt;}
.w8{width:211.906667pt;}
.w5{width:271.493333pt;}
.w3{width:271.773333pt;}
.w1{width:793.333333pt;}
.w6{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x16{left:13.120000pt;}
.x19{left:27.840000pt;}
.x1b{left:36.200000pt;}
.x17{left:61.154667pt;}
.x5{left:77.792000pt;}
.xa{left:85.151988pt;}
.x2{left:89.951988pt;}
.x1c{left:113.631988pt;}
.x1{left:123.231988pt;}
.xb{left:130.303988pt;}
.xc{left:132.223988pt;}
.xd{left:148.546655pt;}
.x11{left:154.946643pt;}
.x12{left:160.386655pt;}
.x3{left:183.746655pt;}
.xf{left:186.306655pt;}
.x13{left:254.493310pt;}
.x14{left:259.933322pt;}
.x10{left:263.133322pt;}
.x6{left:264.741333pt;}
.x15{left:277.213322pt;}
.x18{left:291.013333pt;}
.xe{left:291.973322pt;}
.x7{left:350.213333pt;}
.x4{left:396.959988pt;}
.x9{left:444.640000pt;}
.x1a{left:503.866667pt;}
}




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