
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_90b72cf6cfaf2daa752295b7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1cbc564e66b22a77ca978760.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_be4cd3855923828a8b55ed1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f40b5c79ba8e1e6048afdce2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_30be4a4205162aad328869b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_d64bd169ef68678a46efd42f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_d787fb17101bf10afa55fcae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.ls4{letter-spacing:-0.754143px;}
.ls8{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.180000px;}
.ls1{letter-spacing:1.357829px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.496000px;}
.ws2{word-spacing:-15.984000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:0.704878px;}
.ws0{word-spacing:420.975840px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._d{width:2.570400px;}
._c{width:3.655440px;}
._f{width:4.990080px;}
._1d{width:6.042240px;}
._13{width:7.416000px;}
._14{width:8.640000px;}
._12{width:10.584000px;}
._15{width:11.935440px;}
._8{width:13.752000px;}
._9{width:14.976000px;}
._1b{width:16.416000px;}
._10{width:19.152000px;}
._11{width:20.160000px;}
._1c{width:21.222960px;}
._23{width:22.248000px;}
._1e{width:23.688000px;}
._6{width:25.056000px;}
._7{width:26.357760px;}
._21{width:27.361680px;}
._1f{width:28.416000px;}
._19{width:30.180000px;}
._18{width:31.248000px;}
._20{width:32.328000px;}
._27{width:33.421440px;}
._26{width:34.486320px;}
._25{width:36.271440px;}
._1a{width:37.368000px;}
._22{width:38.418960px;}
._e{width:39.456000px;}
._24{width:40.896000px;}
._28{width:42.408000px;}
._16{width:44.184000px;}
._a{width:45.360000px;}
._b{width:46.733760px;}
._17{width:49.248000px;}
._2c{width:50.976000px;}
._2d{width:52.190400px;}
._29{width:76.608000px;}
._2a{width:127.080000px;}
._2b{width:129.036000px;}
._5{width:431.756880px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs6{font-size:49.264682px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y10{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.330266px;}
.y90{bottom:4.125000px;}
.ya7{bottom:4.140000px;}
.y92{bottom:4.485000px;}
.ya9{bottom:4.500000px;}
.yab{bottom:4.530000px;}
.y14{bottom:15.840000px;}
.yf{bottom:17.100000px;}
.y44{bottom:18.360000px;}
.ye{bottom:46.800000px;}
.y15{bottom:53.460000px;}
.yc{bottom:56.700000px;}
.yde{bottom:114.120000px;}
.ye1{bottom:114.480000px;}
.y72{bottom:115.200000px;}
.yca{bottom:123.840000px;}
.yba{bottom:130.860000px;}
.y9b{bottom:131.400000px;}
.y42{bottom:131.580000px;}
.ydd{bottom:134.820000px;}
.ye0{bottom:135.180000px;}
.y71{bottom:135.900000px;}
.yc9{bottom:144.540000px;}
.yb9{bottom:151.560000px;}
.y9a{bottom:152.100000px;}
.y41{bottom:152.280000px;}
.ydc{bottom:155.880000px;}
.y70{bottom:156.600000px;}
.yc8{bottom:165.240000px;}
.yb8{bottom:172.260000px;}
.y99{bottom:172.800000px;}
.y40{bottom:172.980000px;}
.ydb{bottom:176.580000px;}
.y6f{bottom:177.300000px;}
.yc7{bottom:185.940000px;}
.yb7{bottom:193.320000px;}
.y98{bottom:193.500000px;}
.y3f{bottom:193.680000px;}
.yda{bottom:197.280000px;}
.y6e{bottom:198.000000px;}
.yc6{bottom:206.670000px;}
.yb6{bottom:214.050000px;}
.y97{bottom:214.230000px;}
.y3e{bottom:214.410000px;}
.yd9{bottom:218.010000px;}
.y6d{bottom:218.730000px;}
.yc5{bottom:227.370000px;}
.y96{bottom:234.570000px;}
.yb5{bottom:234.750000px;}
.y3d{bottom:235.110000px;}
.yd8{bottom:238.710000px;}
.y6c{bottom:239.430000px;}
.yc4{bottom:248.070000px;}
.y95{bottom:255.270000px;}
.yb4{bottom:255.450000px;}
.y3c{bottom:255.810000px;}
.yd7{bottom:259.410000px;}
.y6b{bottom:260.130000px;}
.yc3{bottom:268.770000px;}
.y94{bottom:272.565000px;}
.yb3{bottom:276.150000px;}
.y3b{bottom:276.510000px;}
.yd6{bottom:280.110000px;}
.y6a{bottom:280.830000px;}
.yc2{bottom:289.470000px;}
.y93{bottom:293.985000px;}
.yb2{bottom:296.850000px;}
.y3a{bottom:297.210000px;}
.yd5{bottom:300.810000px;}
.y69{bottom:301.530000px;}
.yc1{bottom:310.170000px;}
.y91{bottom:315.405000px;}
.yb1{bottom:317.190000px;}
.y39{bottom:317.910000px;}
.yd4{bottom:321.510000px;}
.y68{bottom:322.230000px;}
.yc0{bottom:330.870000px;}
.y8f{bottom:336.825000px;}
.yb0{bottom:337.710000px;}
.y38{bottom:338.610000px;}
.yd3{bottom:342.210000px;}
.y67{bottom:342.930000px;}
.ybf{bottom:351.210000px;}
.yaf{bottom:358.770000px;}
.y37{bottom:359.310000px;}
.y8e{bottom:362.550000px;}
.yd2{bottom:362.910000px;}
.y66{bottom:363.630000px;}
.ybe{bottom:372.270000px;}
.yae{bottom:375.885000px;}
.y36{bottom:380.010000px;}
.y8d{bottom:383.250000px;}
.yd1{bottom:383.610000px;}
.y65{bottom:384.330000px;}
.ybd{bottom:392.970000px;}
.yad{bottom:397.305000px;}
.y35{bottom:400.710000px;}
.y8c{bottom:403.950000px;}
.yd0{bottom:404.310000px;}
.y64{bottom:405.030000px;}
.ybc{bottom:413.670000px;}
.yac{bottom:418.725000px;}
.y34{bottom:421.410000px;}
.y8b{bottom:425.010000px;}
.y63{bottom:425.730000px;}
.yaa{bottom:440.145000px;}
.y33{bottom:442.155000px;}
.y8a{bottom:445.755000px;}
.y62{bottom:446.475000px;}
.y43{bottom:453.315000px;}
.ya8{bottom:461.595000px;}
.y32{bottom:462.855000px;}
.y89{bottom:466.455000px;}
.y61{bottom:467.175000px;}
.ya6{bottom:483.015000px;}
.y31{bottom:483.555000px;}
.y88{bottom:487.155000px;}
.y60{bottom:487.875000px;}
.y30{bottom:504.255000px;}
.y87{bottom:507.495000px;}
.ycf{bottom:507.855000px;}
.y5f{bottom:508.575000px;}
.ya5{bottom:508.755000px;}
.y2f{bottom:524.955000px;}
.y86{bottom:528.015000px;}
.yce{bottom:528.375000px;}
.y5e{bottom:529.275000px;}
.ya4{bottom:529.455000px;}
.y2e{bottom:545.655000px;}
.y85{bottom:548.715000px;}
.ycd{bottom:549.075000px;}
.y5d{bottom:549.975000px;}
.ya3{bottom:550.155000px;}
.y2d{bottom:565.995000px;}
.y84{bottom:569.775000px;}
.y5c{bottom:570.675000px;}
.ya2{bottom:571.215000px;}
.y2c{bottom:586.695000px;}
.y83{bottom:590.475000px;}
.y5b{bottom:591.375000px;}
.ya1{bottom:591.915000px;}
.y2b{bottom:607.755000px;}
.y82{bottom:611.175000px;}
.y5a{bottom:612.075000px;}
.ya0{bottom:612.615000px;}
.y2a{bottom:628.455000px;}
.y81{bottom:631.875000px;}
.y59{bottom:632.775000px;}
.y9f{bottom:633.315000px;}
.y29{bottom:648.795000px;}
.ye2{bottom:652.215000px;}
.y80{bottom:652.575000px;}
.y58{bottom:653.475000px;}
.y9e{bottom:654.015000px;}
.y28{bottom:669.495000px;}
.y7f{bottom:673.275000px;}
.y57{bottom:674.175000px;}
.y9d{bottom:674.715000px;}
.y27{bottom:690.585000px;}
.y7e{bottom:694.005000px;}
.y56{bottom:694.905000px;}
.y9c{bottom:695.265000px;}
.y26{bottom:711.285000px;}
.ydf{bottom:714.345000px;}
.y7d{bottom:714.705000px;}
.y55{bottom:715.605000px;}
.y25{bottom:731.625000px;}
.y7c{bottom:735.045000px;}
.ycc{bottom:735.405000px;}
.y54{bottom:736.305000px;}
.y24{bottom:752.325000px;}
.y7b{bottom:756.105000px;}
.y53{bottom:757.005000px;}
.y23{bottom:773.385000px;}
.y7a{bottom:776.805000px;}
.y52{bottom:777.705000px;}
.y22{bottom:794.085000px;}
.y79{bottom:797.505000px;}
.y51{bottom:798.405000px;}
.y21{bottom:814.425000px;}
.y78{bottom:818.205000px;}
.y50{bottom:819.105000px;}
.y20{bottom:835.125000px;}
.y77{bottom:838.545000px;}
.ycb{bottom:838.905000px;}
.y4f{bottom:839.805000px;}
.y1f{bottom:856.185000px;}
.y76{bottom:859.605000px;}
.y4e{bottom:860.145000px;}
.y1e{bottom:876.885000px;}
.y4d{bottom:880.125000px;}
.y75{bottom:880.305000px;}
.y1d{bottom:897.225000px;}
.y4c{bottom:901.005000px;}
.y1c{bottom:917.970000px;}
.y4b{bottom:921.750000px;}
.y1b{bottom:939.030000px;}
.y4a{bottom:942.450000px;}
.y1a{bottom:959.370000px;}
.y49{bottom:962.790000px;}
.y74{bottom:963.150000px;}
.y19{bottom:979.890000px;}
.y73{bottom:983.490000px;}
.y48{bottom:983.850000px;}
.y47{bottom:1004.550000px;}
.y18{bottom:1018.770000px;}
.y46{bottom:1025.250000px;}
.y17{bottom:1042.710000px;}
.ybb{bottom:1045.590000px;}
.y45{bottom:1045.950000px;}
.yd{bottom:1056.750000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.635319px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.790000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.648467px;}
.hc{height:16.198500px;}
.h14{height:20.685000px;}
.h15{height:20.721000px;}
.hb{height:29.685000px;}
.h7{height:31.952109px;}
.h6{height:39.247031px;}
.he{height:40.472227px;}
.h4{height:41.027344px;}
.h2{height:42.602344px;}
.h12{height:49.485000px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.ha{height:51.381523px;}
.h11{height:52.066406px;}
.h5{height:58.845000px;}
.h13{height:66.757500px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.hd{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:63.036000px;}
.w8{width:81.396000px;}
.wf{width:89.985000px;}
.w10{width:90.021000px;}
.w11{width:90.030000px;}
.we{width:90.036000px;}
.wb{width:92.685000px;}
.wa{width:92.721000px;}
.wc{width:92.730000px;}
.w9{width:92.865000px;}
.w3{width:103.946873px;}
.w6{width:199.830000px;}
.w7{width:244.459500px;}
.wd{width:246.799500px;}
.w2{width:330.733500px;}
.w4{width:403.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.729500px;}
.x5{left:10.798500px;}
.x9{left:15.105000px;}
.xe{left:47.880000px;}
.x4{left:59.221500px;}
.xf{left:61.560000px;}
.x6{left:74.514189px;}
.x10{left:84.960000px;}
.x11{left:97.770000px;}
.x12{left:111.450000px;}
.x13{left:125.310000px;}
.x16{left:127.306500px;}
.x3{left:135.036000px;}
.x14{left:139.170000px;}
.xb{left:150.150000px;}
.x15{left:152.130000px;}
.x22{left:189.030000px;}
.x7{left:199.168689px;}
.x1{left:204.150000px;}
.xc{left:314.355000px;}
.xd{left:345.315000px;}
.x18{left:372.495000px;}
.x1d{left:374.835000px;}
.xa{left:414.975000px;}
.x19{left:454.620000px;}
.x1e{left:465.600000px;}
.x2{left:475.305000px;}
.x8{left:487.380000px;}
.x1a{left:548.220000px;}
.x1f{left:556.320000px;}
.x1b{left:641.850000px;}
.x20{left:647.250000px;}
.x1c{left:735.270000px;}
.x21{left:737.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.670349pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1{letter-spacing:1.206959pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.552000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:0.626559pt;}
.ws0{word-spacing:374.200747pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._d{width:2.284800pt;}
._c{width:3.249280pt;}
._f{width:4.435627pt;}
._1d{width:5.370880pt;}
._13{width:6.592000pt;}
._14{width:7.680000pt;}
._12{width:9.408000pt;}
._15{width:10.609280pt;}
._8{width:12.224000pt;}
._9{width:13.312000pt;}
._1b{width:14.592000pt;}
._10{width:17.024000pt;}
._11{width:17.920000pt;}
._1c{width:18.864853pt;}
._23{width:19.776000pt;}
._1e{width:21.056000pt;}
._6{width:22.272000pt;}
._7{width:23.429120pt;}
._21{width:24.321493pt;}
._1f{width:25.258667pt;}
._19{width:26.826667pt;}
._18{width:27.776000pt;}
._20{width:28.736000pt;}
._27{width:29.707947pt;}
._26{width:30.654507pt;}
._25{width:32.241280pt;}
._1a{width:33.216000pt;}
._22{width:34.150187pt;}
._e{width:35.072000pt;}
._24{width:36.352000pt;}
._28{width:37.696000pt;}
._16{width:39.274667pt;}
._a{width:40.320000pt;}
._b{width:41.541120pt;}
._17{width:43.776000pt;}
._2c{width:45.312000pt;}
._2d{width:46.391467pt;}
._29{width:68.096000pt;}
._2a{width:112.960000pt;}
._2b{width:114.698667pt;}
._5{width:383.783893pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs6{font-size:43.790828pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y10{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:2.960237pt;}
.y90{bottom:3.666667pt;}
.ya7{bottom:3.680000pt;}
.y92{bottom:3.986667pt;}
.ya9{bottom:4.000000pt;}
.yab{bottom:4.026667pt;}
.y14{bottom:14.080000pt;}
.yf{bottom:15.200000pt;}
.y44{bottom:16.320000pt;}
.ye{bottom:41.600000pt;}
.y15{bottom:47.520000pt;}
.yc{bottom:50.400000pt;}
.yde{bottom:101.440000pt;}
.ye1{bottom:101.760000pt;}
.y72{bottom:102.400000pt;}
.yca{bottom:110.080000pt;}
.yba{bottom:116.320000pt;}
.y9b{bottom:116.800000pt;}
.y42{bottom:116.960000pt;}
.ydd{bottom:119.840000pt;}
.ye0{bottom:120.160000pt;}
.y71{bottom:120.800000pt;}
.yc9{bottom:128.480000pt;}
.yb9{bottom:134.720000pt;}
.y9a{bottom:135.200000pt;}
.y41{bottom:135.360000pt;}
.ydc{bottom:138.560000pt;}
.y70{bottom:139.200000pt;}
.yc8{bottom:146.880000pt;}
.yb8{bottom:153.120000pt;}
.y99{bottom:153.600000pt;}
.y40{bottom:153.760000pt;}
.ydb{bottom:156.960000pt;}
.y6f{bottom:157.600000pt;}
.yc7{bottom:165.280000pt;}
.yb7{bottom:171.840000pt;}
.y98{bottom:172.000000pt;}
.y3f{bottom:172.160000pt;}
.yda{bottom:175.360000pt;}
.y6e{bottom:176.000000pt;}
.yc6{bottom:183.706667pt;}
.yb6{bottom:190.266667pt;}
.y97{bottom:190.426667pt;}
.y3e{bottom:190.586667pt;}
.yd9{bottom:193.786667pt;}
.y6d{bottom:194.426667pt;}
.yc5{bottom:202.106667pt;}
.y96{bottom:208.506667pt;}
.yb5{bottom:208.666667pt;}
.y3d{bottom:208.986667pt;}
.yd8{bottom:212.186667pt;}
.y6c{bottom:212.826667pt;}
.yc4{bottom:220.506667pt;}
.y95{bottom:226.906667pt;}
.yb4{bottom:227.066667pt;}
.y3c{bottom:227.386667pt;}
.yd7{bottom:230.586667pt;}
.y6b{bottom:231.226667pt;}
.yc3{bottom:238.906667pt;}
.y94{bottom:242.280000pt;}
.yb3{bottom:245.466667pt;}
.y3b{bottom:245.786667pt;}
.yd6{bottom:248.986667pt;}
.y6a{bottom:249.626667pt;}
.yc2{bottom:257.306667pt;}
.y93{bottom:261.320000pt;}
.yb2{bottom:263.866667pt;}
.y3a{bottom:264.186667pt;}
.yd5{bottom:267.386667pt;}
.y69{bottom:268.026667pt;}
.yc1{bottom:275.706667pt;}
.y91{bottom:280.360000pt;}
.yb1{bottom:281.946667pt;}
.y39{bottom:282.586667pt;}
.yd4{bottom:285.786667pt;}
.y68{bottom:286.426667pt;}
.yc0{bottom:294.106667pt;}
.y8f{bottom:299.400000pt;}
.yb0{bottom:300.186667pt;}
.y38{bottom:300.986667pt;}
.yd3{bottom:304.186667pt;}
.y67{bottom:304.826667pt;}
.ybf{bottom:312.186667pt;}
.yaf{bottom:318.906667pt;}
.y37{bottom:319.386667pt;}
.y8e{bottom:322.266667pt;}
.yd2{bottom:322.586667pt;}
.y66{bottom:323.226667pt;}
.ybe{bottom:330.906667pt;}
.yae{bottom:334.120000pt;}
.y36{bottom:337.786667pt;}
.y8d{bottom:340.666667pt;}
.yd1{bottom:340.986667pt;}
.y65{bottom:341.626667pt;}
.ybd{bottom:349.306667pt;}
.yad{bottom:353.160000pt;}
.y35{bottom:356.186667pt;}
.y8c{bottom:359.066667pt;}
.yd0{bottom:359.386667pt;}
.y64{bottom:360.026667pt;}
.ybc{bottom:367.706667pt;}
.yac{bottom:372.200000pt;}
.y34{bottom:374.586667pt;}
.y8b{bottom:377.786667pt;}
.y63{bottom:378.426667pt;}
.yaa{bottom:391.240000pt;}
.y33{bottom:393.026667pt;}
.y8a{bottom:396.226667pt;}
.y62{bottom:396.866667pt;}
.y43{bottom:402.946667pt;}
.ya8{bottom:410.306667pt;}
.y32{bottom:411.426667pt;}
.y89{bottom:414.626667pt;}
.y61{bottom:415.266667pt;}
.ya6{bottom:429.346667pt;}
.y31{bottom:429.826667pt;}
.y88{bottom:433.026667pt;}
.y60{bottom:433.666667pt;}
.y30{bottom:448.226667pt;}
.y87{bottom:451.106667pt;}
.ycf{bottom:451.426667pt;}
.y5f{bottom:452.066667pt;}
.ya5{bottom:452.226667pt;}
.y2f{bottom:466.626667pt;}
.y86{bottom:469.346667pt;}
.yce{bottom:469.666667pt;}
.y5e{bottom:470.466667pt;}
.ya4{bottom:470.626667pt;}
.y2e{bottom:485.026667pt;}
.y85{bottom:487.746667pt;}
.ycd{bottom:488.066667pt;}
.y5d{bottom:488.866667pt;}
.ya3{bottom:489.026667pt;}
.y2d{bottom:503.106667pt;}
.y84{bottom:506.466667pt;}
.y5c{bottom:507.266667pt;}
.ya2{bottom:507.746667pt;}
.y2c{bottom:521.506667pt;}
.y83{bottom:524.866667pt;}
.y5b{bottom:525.666667pt;}
.ya1{bottom:526.146667pt;}
.y2b{bottom:540.226667pt;}
.y82{bottom:543.266667pt;}
.y5a{bottom:544.066667pt;}
.ya0{bottom:544.546667pt;}
.y2a{bottom:558.626667pt;}
.y81{bottom:561.666667pt;}
.y59{bottom:562.466667pt;}
.y9f{bottom:562.946667pt;}
.y29{bottom:576.706667pt;}
.ye2{bottom:579.746667pt;}
.y80{bottom:580.066667pt;}
.y58{bottom:580.866667pt;}
.y9e{bottom:581.346667pt;}
.y28{bottom:595.106667pt;}
.y7f{bottom:598.466667pt;}
.y57{bottom:599.266667pt;}
.y9d{bottom:599.746667pt;}
.y27{bottom:613.853333pt;}
.y7e{bottom:616.893333pt;}
.y56{bottom:617.693333pt;}
.y9c{bottom:618.013333pt;}
.y26{bottom:632.253333pt;}
.ydf{bottom:634.973333pt;}
.y7d{bottom:635.293333pt;}
.y55{bottom:636.093333pt;}
.y25{bottom:650.333333pt;}
.y7c{bottom:653.373333pt;}
.ycc{bottom:653.693333pt;}
.y54{bottom:654.493333pt;}
.y24{bottom:668.733333pt;}
.y7b{bottom:672.093333pt;}
.y53{bottom:672.893333pt;}
.y23{bottom:687.453333pt;}
.y7a{bottom:690.493333pt;}
.y52{bottom:691.293333pt;}
.y22{bottom:705.853333pt;}
.y79{bottom:708.893333pt;}
.y51{bottom:709.693333pt;}
.y21{bottom:723.933333pt;}
.y78{bottom:727.293333pt;}
.y50{bottom:728.093333pt;}
.y20{bottom:742.333333pt;}
.y77{bottom:745.373333pt;}
.ycb{bottom:745.693333pt;}
.y4f{bottom:746.493333pt;}
.y1f{bottom:761.053333pt;}
.y76{bottom:764.093333pt;}
.y4e{bottom:764.573333pt;}
.y1e{bottom:779.453333pt;}
.y4d{bottom:782.333333pt;}
.y75{bottom:782.493333pt;}
.y1d{bottom:797.533333pt;}
.y4c{bottom:800.893333pt;}
.y1c{bottom:815.973333pt;}
.y4b{bottom:819.333333pt;}
.y1b{bottom:834.693333pt;}
.y4a{bottom:837.733333pt;}
.y1a{bottom:852.773333pt;}
.y49{bottom:855.813333pt;}
.y74{bottom:856.133333pt;}
.y19{bottom:871.013333pt;}
.y73{bottom:874.213333pt;}
.y48{bottom:874.533333pt;}
.y47{bottom:892.933333pt;}
.y18{bottom:905.573333pt;}
.y46{bottom:911.333333pt;}
.y17{bottom:926.853333pt;}
.ybb{bottom:929.413333pt;}
.y45{bottom:929.733333pt;}
.yd{bottom:939.333333pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.564728pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.813333pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:13.909749pt;}
.hc{height:14.398667pt;}
.h14{height:18.386667pt;}
.h15{height:18.418667pt;}
.hb{height:26.386667pt;}
.h7{height:28.401875pt;}
.h6{height:34.886250pt;}
.he{height:35.975313pt;}
.h4{height:36.468750pt;}
.h2{height:37.868750pt;}
.h12{height:43.986667pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.ha{height:45.672465pt;}
.h11{height:46.281250pt;}
.h5{height:52.306667pt;}
.h13{height:59.340000pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.hd{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:56.032000pt;}
.w8{width:72.352000pt;}
.wf{width:79.986667pt;}
.w10{width:80.018667pt;}
.w11{width:80.026667pt;}
.we{width:80.032000pt;}
.wb{width:82.386667pt;}
.wa{width:82.418667pt;}
.wc{width:82.426667pt;}
.w9{width:82.546667pt;}
.w3{width:92.397221pt;}
.w6{width:177.626667pt;}
.w7{width:217.297333pt;}
.wd{width:219.377333pt;}
.w2{width:293.985333pt;}
.w4{width:359.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.870667pt;}
.x5{left:9.598667pt;}
.x9{left:13.426667pt;}
.xe{left:42.560000pt;}
.x4{left:52.641333pt;}
.xf{left:54.720000pt;}
.x6{left:66.234834pt;}
.x10{left:75.520000pt;}
.x11{left:86.906667pt;}
.x12{left:99.066667pt;}
.x13{left:111.386667pt;}
.x16{left:113.161333pt;}
.x3{left:120.032000pt;}
.x14{left:123.706667pt;}
.xb{left:133.466667pt;}
.x15{left:135.226667pt;}
.x22{left:168.026667pt;}
.x7{left:177.038834pt;}
.x1{left:181.466667pt;}
.xc{left:279.426667pt;}
.xd{left:306.946667pt;}
.x18{left:331.106667pt;}
.x1d{left:333.186667pt;}
.xa{left:368.866667pt;}
.x19{left:404.106667pt;}
.x1e{left:413.866667pt;}
.x2{left:422.493333pt;}
.x8{left:433.226667pt;}
.x1a{left:487.306667pt;}
.x1f{left:494.506667pt;}
.x1b{left:570.533333pt;}
.x20{left:575.333333pt;}
.x1c{left:653.573333pt;}
.x21{left:655.973333pt;}
}




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