
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_fa2312279e0498a0996ab69d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c86c2e4d74c49bc4f6d9b4f7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a05fb7469b324588329f5fcc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1a4a439a72ba070362bb42ea.woff')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_3fb4b1cf4f2a6a40f7b7344f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:27.360000px;}
.ls9{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.181440px;}
.ls5{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.lsb{letter-spacing:127.386720px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-5.400000px;}
._c{margin-left:-4.392000px;}
._9{margin-left:-3.168000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._8{width:2.265235px;}
._3{width:3.384000px;}
._5{width:4.593158px;}
._4{width:5.695142px;}
._6{width:6.840000px;}
._7{width:8.272858px;}
._21{width:9.288000px;}
._a{width:10.296000px;}
._b{width:11.520000px;}
._12{width:13.320000px;}
._13{width:14.415475px;}
._17{width:15.507475px;}
._16{width:16.832525px;}
._e{width:19.410317px;}
._f{width:20.530923px;}
._20{width:21.608782px;}
._19{width:22.703443px;}
._18{width:23.832000px;}
._1c{width:24.943261px;}
._14{width:26.208000px;}
._15{width:27.288000px;}
._1e{width:28.656000px;}
._1b{width:30.168000px;}
._1a{width:31.824000px;}
._10{width:33.552000px;}
._11{width:34.689158px;}
._22{width:36.566842px;}
._27{width:45.560601px;}
._1f{width:48.600000px;}
._23{width:81.432000px;}
._24{width:83.124000px;}
._26{width:95.124000px;}
._25{width:124.956000px;}
._2{width:146.082865px;}
._d{width:846.156000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.960000px;}
.y50{bottom:24.660000px;}
.y4{bottom:68.580000px;}
.y94{bottom:116.136000px;}
.yb3{bottom:123.876000px;}
.y4e{bottom:126.756000px;}
.y36{bottom:128.916000px;}
.ycd{bottom:131.076000px;}
.y93{bottom:136.836000px;}
.yb2{bottom:144.576000px;}
.y4d{bottom:147.456000px;}
.y35{bottom:149.616000px;}
.ycc{bottom:151.770000px;}
.y92{bottom:157.530000px;}
.yb1{bottom:165.270000px;}
.y4c{bottom:168.150000px;}
.y34{bottom:170.310000px;}
.ycb{bottom:172.470000px;}
.y103{bottom:176.610000px;}
.y91{bottom:178.230000px;}
.yb0{bottom:185.970000px;}
.y4b{bottom:188.850000px;}
.y33{bottom:191.010000px;}
.yca{bottom:193.170000px;}
.y102{bottom:197.310000px;}
.y90{bottom:198.930000px;}
.yaf{bottom:206.670000px;}
.y4a{bottom:209.550000px;}
.y32{bottom:211.710000px;}
.yc9{bottom:213.870000px;}
.y101{bottom:218.010000px;}
.y8f{bottom:219.630000px;}
.yae{bottom:227.370000px;}
.y49{bottom:230.250000px;}
.y31{bottom:232.410000px;}
.yc8{bottom:234.570000px;}
.y8e{bottom:240.330000px;}
.yad{bottom:248.070000px;}
.y48{bottom:250.950000px;}
.y30{bottom:253.110000px;}
.yc7{bottom:255.270000px;}
.y100{bottom:256.710000px;}
.y47{bottom:271.650000px;}
.y2f{bottom:273.810000px;}
.y8d{bottom:275.970000px;}
.yff{bottom:277.410000px;}
.yac{bottom:283.710000px;}
.y46{bottom:292.350000px;}
.y2e{bottom:294.510000px;}
.y8c{bottom:296.670000px;}
.y45{bottom:313.050000px;}
.y2d{bottom:315.210000px;}
.yfe{bottom:316.110000px;}
.y8b{bottom:317.370000px;}
.yab{bottom:319.350000px;}
.y44{bottom:333.750000px;}
.y2c{bottom:335.910000px;}
.yfd{bottom:336.855000px;}
.y8a{bottom:338.115000px;}
.yaa{bottom:340.095000px;}
.ye0{bottom:346.755000px;}
.y43{bottom:354.495000px;}
.y2b{bottom:356.655000px;}
.yfc{bottom:357.555000px;}
.y89{bottom:358.815000px;}
.ya9{bottom:360.795000px;}
.ydf{bottom:367.455000px;}
.y42{bottom:375.195000px;}
.y2a{bottom:377.355000px;}
.y88{bottom:379.515000px;}
.ya8{bottom:381.495000px;}
.yde{bottom:388.155000px;}
.y41{bottom:395.895000px;}
.yfb{bottom:396.255000px;}
.y29{bottom:398.055000px;}
.y87{bottom:400.215000px;}
.ya7{bottom:402.195000px;}
.ydd{bottom:408.855000px;}
.y40{bottom:416.595000px;}
.yfa{bottom:416.955000px;}
.y28{bottom:418.755000px;}
.y86{bottom:420.915000px;}
.ya6{bottom:422.895000px;}
.ydc{bottom:429.555000px;}
.y3f{bottom:437.295000px;}
.yf9{bottom:437.655000px;}
.y27{bottom:439.455000px;}
.y85{bottom:441.615000px;}
.ydb{bottom:450.255000px;}
.y3e{bottom:457.995000px;}
.yf8{bottom:458.355000px;}
.ya5{bottom:458.715000px;}
.y26{bottom:460.155000px;}
.y84{bottom:462.315000px;}
.y3d{bottom:478.695000px;}
.yf7{bottom:479.055000px;}
.y25{bottom:480.855000px;}
.y83{bottom:483.015000px;}
.ya4{bottom:494.355000px;}
.y3c{bottom:499.395000px;}
.yf6{bottom:499.755000px;}
.y24{bottom:501.555000px;}
.yc6{bottom:503.715000px;}
.ya3{bottom:515.055000px;}
.y3b{bottom:516.855000px;}
.y82{bottom:518.655000px;}
.yf5{bottom:520.455000px;}
.y23{bottom:522.255000px;}
.yc5{bottom:524.415000px;}
.ya2{bottom:535.755000px;}
.yda{bottom:536.295000px;}
.y3a{bottom:537.555000px;}
.y81{bottom:539.355000px;}
.y22{bottom:542.955000px;}
.yc4{bottom:545.115000px;}
.ya1{bottom:556.455000px;}
.yd9{bottom:556.995000px;}
.y39{bottom:558.255000px;}
.yf4{bottom:559.155000px;}
.y80{bottom:560.055000px;}
.y21{bottom:563.655000px;}
.yc3{bottom:565.815000px;}
.ya0{bottom:577.155000px;}
.y37{bottom:579.675000px;}
.yf3{bottom:579.855000px;}
.y7f{bottom:580.755000px;}
.y20{bottom:584.355000px;}
.yc2{bottom:586.515000px;}
.yd8{bottom:589.755000px;}
.y9f{bottom:597.855000px;}
.yf2{bottom:600.555000px;}
.y7e{bottom:601.455000px;}
.y1f{bottom:605.085000px;}
.yc1{bottom:607.245000px;}
.yd7{bottom:610.485000px;}
.y10d{bottom:618.585000px;}
.y7d{bottom:622.185000px;}
.y1e{bottom:625.785000px;}
.yc0{bottom:627.945000px;}
.y66{bottom:629.205000px;}
.yd6{bottom:631.185000px;}
.y9e{bottom:633.525000px;}
.yf1{bottom:639.285000px;}
.y7c{bottom:642.885000px;}
.y1d{bottom:646.485000px;}
.ybf{bottom:648.645000px;}
.yd5{bottom:651.885000px;}
.yf0{bottom:659.985000px;}
.y7b{bottom:663.585000px;}
.y65{bottom:665.025000px;}
.y1c{bottom:667.185000px;}
.y9d{bottom:669.345000px;}
.yd4{bottom:672.585000px;}
.yef{bottom:680.685000px;}
.y7a{bottom:684.285000px;}
.y64{bottom:685.725000px;}
.y1b{bottom:687.885000px;}
.y9c{bottom:690.045000px;}
.yd3{bottom:693.285000px;}
.y10c{bottom:698.685000px;}
.y63{bottom:706.245000px;}
.y1a{bottom:708.585000px;}
.y9b{bottom:710.745000px;}
.yd2{bottom:713.985000px;}
.yee{bottom:719.385000px;}
.y79{bottom:719.925000px;}
.ybe{bottom:725.685000px;}
.y62{bottom:726.945000px;}
.y19{bottom:729.285000px;}
.y9a{bottom:731.445000px;}
.yd1{bottom:734.685000px;}
.yed{bottom:740.085000px;}
.y78{bottom:740.625000px;}
.ybd{bottom:746.385000px;}
.y61{bottom:747.645000px;}
.y18{bottom:749.985000px;}
.y99{bottom:752.145000px;}
.yec{bottom:760.785000px;}
.y77{bottom:761.325000px;}
.ybc{bottom:767.085000px;}
.yd0{bottom:767.445000px;}
.y60{bottom:768.345000px;}
.y17{bottom:770.685000px;}
.y98{bottom:772.845000px;}
.y10b{bottom:781.485000px;}
.y76{bottom:782.025000px;}
.ybb{bottom:787.785000px;}
.y5f{bottom:789.045000px;}
.y16{bottom:791.385000px;}
.yeb{bottom:799.485000px;}
.ycf{bottom:800.025000px;}
.y10a{bottom:802.185000px;}
.y75{bottom:802.725000px;}
.y97{bottom:808.485000px;}
.y5e{bottom:809.745000px;}
.y15{bottom:812.085000px;}
.yea{bottom:820.185000px;}
.yce{bottom:820.725000px;}
.y109{bottom:822.885000px;}
.y74{bottom:823.425000px;}
.yba{bottom:829.185000px;}
.y5d{bottom:830.445000px;}
.y14{bottom:832.785000px;}
.ye9{bottom:840.885000px;}
.y73{bottom:844.125000px;}
.yb9{bottom:849.885000px;}
.y5c{bottom:851.145000px;}
.y13{bottom:853.485000px;}
.ye8{bottom:861.585000px;}
.y72{bottom:864.825000px;}
.yb8{bottom:870.630000px;}
.y5b{bottom:871.890000px;}
.y12{bottom:874.230000px;}
.y96{bottom:879.990000px;}
.y108{bottom:882.330000px;}
.y71{bottom:885.570000px;}
.yb7{bottom:891.330000px;}
.y5a{bottom:892.590000px;}
.y11{bottom:894.930000px;}
.ye7{bottom:900.330000px;}
.y95{bottom:900.690000px;}
.y107{bottom:903.030000px;}
.yb6{bottom:912.030000px;}
.y59{bottom:913.290000px;}
.y10{bottom:915.630000px;}
.ye6{bottom:921.030000px;}
.y70{bottom:921.390000px;}
.y58{bottom:930.030000px;}
.yb5{bottom:932.730000px;}
.yf{bottom:936.330000px;}
.ye5{bottom:941.730000px;}
.y6f{bottom:942.090000px;}
.y57{bottom:951.630000px;}
.ye{bottom:957.030000px;}
.y106{bottom:962.430000px;}
.y6e{bottom:962.790000px;}
.yb4{bottom:968.370000px;}
.y56{bottom:972.330000px;}
.yd{bottom:977.730000px;}
.ye4{bottom:980.430000px;}
.y105{bottom:983.130000px;}
.y6d{bottom:983.490000px;}
.y55{bottom:993.030000px;}
.yc{bottom:998.430000px;}
.ye3{bottom:1001.130000px;}
.y6c{bottom:1004.190000px;}
.y54{bottom:1013.730000px;}
.yb{bottom:1019.130000px;}
.ye2{bottom:1021.830000px;}
.y6b{bottom:1024.890000px;}
.y53{bottom:1034.430000px;}
.ya{bottom:1039.830000px;}
.ye1{bottom:1042.530000px;}
.y6a{bottom:1045.410000px;}
.y52{bottom:1054.950000px;}
.y9{bottom:1060.530000px;}
.y104{bottom:1063.230000px;}
.y69{bottom:1066.110000px;}
.y51{bottom:1075.650000px;}
.y8{bottom:1081.230000px;}
.y68{bottom:1086.810000px;}
.y4f{bottom:1097.250000px;}
.y7{bottom:1101.930000px;}
.y67{bottom:1107.510000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.hc{height:20.520000px;}
.h9{height:20.700000px;}
.h2{height:40.790039px;}
.ha{height:41.436000px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h8{height:52.628906px;}
.h5{height:56.900391px;}
.hb{height:61.043203px;}
.h3{height:70.802565px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.220000px;}
.w6{width:77.256000px;}
.w4{width:94.536000px;}
.wa{width:106.236000px;}
.w8{width:110.556000px;}
.wb{width:110.880000px;}
.w3{width:129.780000px;}
.w5{width:135.000000px;}
.w7{width:204.150000px;}
.wc{width:763.530000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:64.800000px;}
.x11{left:106.596000px;}
.x1{left:108.035987px;}
.x8{left:137.915987px;}
.x2{left:142.775987px;}
.x3{left:146.555987px;}
.x1e{left:151.769987px;}
.x4{left:155.369987px;}
.x1c{left:160.049987px;}
.x22{left:181.829987px;}
.x21{left:185.969987px;}
.x1f{left:190.109987px;}
.x1d{left:203.969987px;}
.xb{left:223.949987px;}
.x20{left:234.029987px;}
.x12{left:236.370000px;}
.x7{left:265.169987px;}
.xd{left:266.969987px;}
.x16{left:268.950000px;}
.xf{left:289.514987px;}
.xc{left:291.494987px;}
.x10{left:313.634987px;}
.x6{left:323.894987px;}
.x13{left:330.915000px;}
.xa{left:338.474987px;}
.xe{left:344.954987px;}
.x9{left:358.994987px;}
.x17{left:379.515000px;}
.x5{left:446.474987px;}
.x18{left:456.735000px;}
.x14{left:465.915000px;}
.x19{left:562.965000px;}
.x1a{left:640.185000px;}
.x1b{left:717.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.161280pt;}
.ls5{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsb{letter-spacing:113.232640pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-4.800000pt;}
._c{margin-left:-3.904000pt;}
._9{margin-left:-2.816000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._8{width:2.013542pt;}
._3{width:3.008000pt;}
._5{width:4.082808pt;}
._4{width:5.062349pt;}
._6{width:6.080000pt;}
._7{width:7.353651pt;}
._21{width:8.256000pt;}
._a{width:9.152000pt;}
._b{width:10.240000pt;}
._12{width:11.840000pt;}
._13{width:12.813756pt;}
._17{width:13.784423pt;}
._16{width:14.962244pt;}
._e{width:17.253615pt;}
._f{width:18.249710pt;}
._20{width:19.207806pt;}
._19{width:20.180838pt;}
._18{width:21.184000pt;}
._1c{width:22.171788pt;}
._14{width:23.296000pt;}
._15{width:24.256000pt;}
._1e{width:25.472000pt;}
._1b{width:26.816000pt;}
._1a{width:28.288000pt;}
._10{width:29.824000pt;}
._11{width:30.834808pt;}
._22{width:32.503859pt;}
._27{width:40.498312pt;}
._1f{width:43.200000pt;}
._23{width:72.384000pt;}
._24{width:73.888000pt;}
._26{width:84.554667pt;}
._25{width:111.072000pt;}
._2{width:129.851436pt;}
._d{width:752.138667pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.520000pt;}
.y50{bottom:21.920000pt;}
.y4{bottom:60.960000pt;}
.y94{bottom:103.232000pt;}
.yb3{bottom:110.112000pt;}
.y4e{bottom:112.672000pt;}
.y36{bottom:114.592000pt;}
.ycd{bottom:116.512000pt;}
.y93{bottom:121.632000pt;}
.yb2{bottom:128.512000pt;}
.y4d{bottom:131.072000pt;}
.y35{bottom:132.992000pt;}
.ycc{bottom:134.906667pt;}
.y92{bottom:140.026667pt;}
.yb1{bottom:146.906667pt;}
.y4c{bottom:149.466667pt;}
.y34{bottom:151.386667pt;}
.ycb{bottom:153.306667pt;}
.y103{bottom:156.986667pt;}
.y91{bottom:158.426667pt;}
.yb0{bottom:165.306667pt;}
.y4b{bottom:167.866667pt;}
.y33{bottom:169.786667pt;}
.yca{bottom:171.706667pt;}
.y102{bottom:175.386667pt;}
.y90{bottom:176.826667pt;}
.yaf{bottom:183.706667pt;}
.y4a{bottom:186.266667pt;}
.y32{bottom:188.186667pt;}
.yc9{bottom:190.106667pt;}
.y101{bottom:193.786667pt;}
.y8f{bottom:195.226667pt;}
.yae{bottom:202.106667pt;}
.y49{bottom:204.666667pt;}
.y31{bottom:206.586667pt;}
.yc8{bottom:208.506667pt;}
.y8e{bottom:213.626667pt;}
.yad{bottom:220.506667pt;}
.y48{bottom:223.066667pt;}
.y30{bottom:224.986667pt;}
.yc7{bottom:226.906667pt;}
.y100{bottom:228.186667pt;}
.y47{bottom:241.466667pt;}
.y2f{bottom:243.386667pt;}
.y8d{bottom:245.306667pt;}
.yff{bottom:246.586667pt;}
.yac{bottom:252.186667pt;}
.y46{bottom:259.866667pt;}
.y2e{bottom:261.786667pt;}
.y8c{bottom:263.706667pt;}
.y45{bottom:278.266667pt;}
.y2d{bottom:280.186667pt;}
.yfe{bottom:280.986667pt;}
.y8b{bottom:282.106667pt;}
.yab{bottom:283.866667pt;}
.y44{bottom:296.666667pt;}
.y2c{bottom:298.586667pt;}
.yfd{bottom:299.426667pt;}
.y8a{bottom:300.546667pt;}
.yaa{bottom:302.306667pt;}
.ye0{bottom:308.226667pt;}
.y43{bottom:315.106667pt;}
.y2b{bottom:317.026667pt;}
.yfc{bottom:317.826667pt;}
.y89{bottom:318.946667pt;}
.ya9{bottom:320.706667pt;}
.ydf{bottom:326.626667pt;}
.y42{bottom:333.506667pt;}
.y2a{bottom:335.426667pt;}
.y88{bottom:337.346667pt;}
.ya8{bottom:339.106667pt;}
.yde{bottom:345.026667pt;}
.y41{bottom:351.906667pt;}
.yfb{bottom:352.226667pt;}
.y29{bottom:353.826667pt;}
.y87{bottom:355.746667pt;}
.ya7{bottom:357.506667pt;}
.ydd{bottom:363.426667pt;}
.y40{bottom:370.306667pt;}
.yfa{bottom:370.626667pt;}
.y28{bottom:372.226667pt;}
.y86{bottom:374.146667pt;}
.ya6{bottom:375.906667pt;}
.ydc{bottom:381.826667pt;}
.y3f{bottom:388.706667pt;}
.yf9{bottom:389.026667pt;}
.y27{bottom:390.626667pt;}
.y85{bottom:392.546667pt;}
.ydb{bottom:400.226667pt;}
.y3e{bottom:407.106667pt;}
.yf8{bottom:407.426667pt;}
.ya5{bottom:407.746667pt;}
.y26{bottom:409.026667pt;}
.y84{bottom:410.946667pt;}
.y3d{bottom:425.506667pt;}
.yf7{bottom:425.826667pt;}
.y25{bottom:427.426667pt;}
.y83{bottom:429.346667pt;}
.ya4{bottom:439.426667pt;}
.y3c{bottom:443.906667pt;}
.yf6{bottom:444.226667pt;}
.y24{bottom:445.826667pt;}
.yc6{bottom:447.746667pt;}
.ya3{bottom:457.826667pt;}
.y3b{bottom:459.426667pt;}
.y82{bottom:461.026667pt;}
.yf5{bottom:462.626667pt;}
.y23{bottom:464.226667pt;}
.yc5{bottom:466.146667pt;}
.ya2{bottom:476.226667pt;}
.yda{bottom:476.706667pt;}
.y3a{bottom:477.826667pt;}
.y81{bottom:479.426667pt;}
.y22{bottom:482.626667pt;}
.yc4{bottom:484.546667pt;}
.ya1{bottom:494.626667pt;}
.yd9{bottom:495.106667pt;}
.y39{bottom:496.226667pt;}
.yf4{bottom:497.026667pt;}
.y80{bottom:497.826667pt;}
.y21{bottom:501.026667pt;}
.yc3{bottom:502.946667pt;}
.ya0{bottom:513.026667pt;}
.y37{bottom:515.266667pt;}
.yf3{bottom:515.426667pt;}
.y7f{bottom:516.226667pt;}
.y20{bottom:519.426667pt;}
.yc2{bottom:521.346667pt;}
.yd8{bottom:524.226667pt;}
.y9f{bottom:531.426667pt;}
.yf2{bottom:533.826667pt;}
.y7e{bottom:534.626667pt;}
.y1f{bottom:537.853333pt;}
.yc1{bottom:539.773333pt;}
.yd7{bottom:542.653333pt;}
.y10d{bottom:549.853333pt;}
.y7d{bottom:553.053333pt;}
.y1e{bottom:556.253333pt;}
.yc0{bottom:558.173333pt;}
.y66{bottom:559.293333pt;}
.yd6{bottom:561.053333pt;}
.y9e{bottom:563.133333pt;}
.yf1{bottom:568.253333pt;}
.y7c{bottom:571.453333pt;}
.y1d{bottom:574.653333pt;}
.ybf{bottom:576.573333pt;}
.yd5{bottom:579.453333pt;}
.yf0{bottom:586.653333pt;}
.y7b{bottom:589.853333pt;}
.y65{bottom:591.133333pt;}
.y1c{bottom:593.053333pt;}
.y9d{bottom:594.973333pt;}
.yd4{bottom:597.853333pt;}
.yef{bottom:605.053333pt;}
.y7a{bottom:608.253333pt;}
.y64{bottom:609.533333pt;}
.y1b{bottom:611.453333pt;}
.y9c{bottom:613.373333pt;}
.yd3{bottom:616.253333pt;}
.y10c{bottom:621.053333pt;}
.y63{bottom:627.773333pt;}
.y1a{bottom:629.853333pt;}
.y9b{bottom:631.773333pt;}
.yd2{bottom:634.653333pt;}
.yee{bottom:639.453333pt;}
.y79{bottom:639.933333pt;}
.ybe{bottom:645.053333pt;}
.y62{bottom:646.173333pt;}
.y19{bottom:648.253333pt;}
.y9a{bottom:650.173333pt;}
.yd1{bottom:653.053333pt;}
.yed{bottom:657.853333pt;}
.y78{bottom:658.333333pt;}
.ybd{bottom:663.453333pt;}
.y61{bottom:664.573333pt;}
.y18{bottom:666.653333pt;}
.y99{bottom:668.573333pt;}
.yec{bottom:676.253333pt;}
.y77{bottom:676.733333pt;}
.ybc{bottom:681.853333pt;}
.yd0{bottom:682.173333pt;}
.y60{bottom:682.973333pt;}
.y17{bottom:685.053333pt;}
.y98{bottom:686.973333pt;}
.y10b{bottom:694.653333pt;}
.y76{bottom:695.133333pt;}
.ybb{bottom:700.253333pt;}
.y5f{bottom:701.373333pt;}
.y16{bottom:703.453333pt;}
.yeb{bottom:710.653333pt;}
.ycf{bottom:711.133333pt;}
.y10a{bottom:713.053333pt;}
.y75{bottom:713.533333pt;}
.y97{bottom:718.653333pt;}
.y5e{bottom:719.773333pt;}
.y15{bottom:721.853333pt;}
.yea{bottom:729.053333pt;}
.yce{bottom:729.533333pt;}
.y109{bottom:731.453333pt;}
.y74{bottom:731.933333pt;}
.yba{bottom:737.053333pt;}
.y5d{bottom:738.173333pt;}
.y14{bottom:740.253333pt;}
.ye9{bottom:747.453333pt;}
.y73{bottom:750.333333pt;}
.yb9{bottom:755.453333pt;}
.y5c{bottom:756.573333pt;}
.y13{bottom:758.653333pt;}
.ye8{bottom:765.853333pt;}
.y72{bottom:768.733333pt;}
.yb8{bottom:773.893333pt;}
.y5b{bottom:775.013333pt;}
.y12{bottom:777.093333pt;}
.y96{bottom:782.213333pt;}
.y108{bottom:784.293333pt;}
.y71{bottom:787.173333pt;}
.yb7{bottom:792.293333pt;}
.y5a{bottom:793.413333pt;}
.y11{bottom:795.493333pt;}
.ye7{bottom:800.293333pt;}
.y95{bottom:800.613333pt;}
.y107{bottom:802.693333pt;}
.yb6{bottom:810.693333pt;}
.y59{bottom:811.813333pt;}
.y10{bottom:813.893333pt;}
.ye6{bottom:818.693333pt;}
.y70{bottom:819.013333pt;}
.y58{bottom:826.693333pt;}
.yb5{bottom:829.093333pt;}
.yf{bottom:832.293333pt;}
.ye5{bottom:837.093333pt;}
.y6f{bottom:837.413333pt;}
.y57{bottom:845.893333pt;}
.ye{bottom:850.693333pt;}
.y106{bottom:855.493333pt;}
.y6e{bottom:855.813333pt;}
.yb4{bottom:860.773333pt;}
.y56{bottom:864.293333pt;}
.yd{bottom:869.093333pt;}
.ye4{bottom:871.493333pt;}
.y105{bottom:873.893333pt;}
.y6d{bottom:874.213333pt;}
.y55{bottom:882.693333pt;}
.yc{bottom:887.493333pt;}
.ye3{bottom:889.893333pt;}
.y6c{bottom:892.613333pt;}
.y54{bottom:901.093333pt;}
.yb{bottom:905.893333pt;}
.ye2{bottom:908.293333pt;}
.y6b{bottom:911.013333pt;}
.y53{bottom:919.493333pt;}
.ya{bottom:924.293333pt;}
.ye1{bottom:926.693333pt;}
.y6a{bottom:929.253333pt;}
.y52{bottom:937.733333pt;}
.y9{bottom:942.693333pt;}
.y104{bottom:945.093333pt;}
.y69{bottom:947.653333pt;}
.y51{bottom:956.133333pt;}
.y8{bottom:961.093333pt;}
.y68{bottom:966.053333pt;}
.y4f{bottom:975.333333pt;}
.y7{bottom:979.493333pt;}
.y67{bottom:984.453333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.hc{height:18.240000pt;}
.h9{height:18.400000pt;}
.h2{height:36.257812pt;}
.ha{height:36.832000pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h8{height:46.781250pt;}
.h5{height:50.578125pt;}
.hb{height:54.260625pt;}
.h3{height:62.935614pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.640000pt;}
.w6{width:68.672000pt;}
.w4{width:84.032000pt;}
.wa{width:94.432000pt;}
.w8{width:98.272000pt;}
.wb{width:98.560000pt;}
.w3{width:115.360000pt;}
.w5{width:120.000000pt;}
.w7{width:181.466667pt;}
.wc{width:678.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:57.600000pt;}
.x11{left:94.752000pt;}
.x1{left:96.031988pt;}
.x8{left:122.591988pt;}
.x2{left:126.911988pt;}
.x3{left:130.271988pt;}
.x1e{left:134.906655pt;}
.x4{left:138.106655pt;}
.x1c{left:142.266655pt;}
.x22{left:161.626655pt;}
.x21{left:165.306655pt;}
.x1f{left:168.986655pt;}
.x1d{left:181.306655pt;}
.xb{left:199.066655pt;}
.x20{left:208.026655pt;}
.x12{left:210.106667pt;}
.x7{left:235.706655pt;}
.xd{left:237.306655pt;}
.x16{left:239.066667pt;}
.xf{left:257.346655pt;}
.xc{left:259.106655pt;}
.x10{left:278.786655pt;}
.x6{left:287.906655pt;}
.x13{left:294.146667pt;}
.xa{left:300.866655pt;}
.xe{left:306.626655pt;}
.x9{left:319.106655pt;}
.x17{left:337.346667pt;}
.x5{left:396.866655pt;}
.x18{left:405.986667pt;}
.x14{left:414.146667pt;}
.x19{left:500.413333pt;}
.x1a{left:569.053333pt;}
.x1b{left:637.733333pt;}
}




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