
    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_bbf6a1e3a607c4e456d88d4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;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_e63c4a71838fce218714b52c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_63ceafb885a9ccc8ffd4ac7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_59ed5f12e874194bd8d2e86b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_c92a6a60b169e94e590fbec3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f01c8444fbea13b17107965.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_719d746ccef9f6809dd7ad89.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9df5ea9e43d7931edcc6f4e9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_62266fd8198745b36f658768.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:55.020000px;}
.v4{vertical-align:57.000000px;}
.lsc{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:64.002720px;}
.ls3{letter-spacing:157.140000px;}
.ls4{letter-spacing:199.416000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws7{word-spacing:-59.553600px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:162.714000px;}
.wsb{word-spacing:162.834000px;}
._1a{margin-left:-8.987040px;}
._7{margin-left:-7.807680px;}
._8{margin-left:-6.236640px;}
._1{margin-left:-5.016960px;}
._6{margin-left:-3.254640px;}
._0{margin-left:-1.523520px;}
._4{width:1.135440px;}
._5{width:2.447760px;}
._d{width:3.724800px;}
._f{width:5.000160px;}
._9{width:6.674160px;}
._b{width:7.828560px;}
._a{width:9.023760px;}
._11{width:10.074240px;}
._e{width:11.414160px;}
._c{width:12.788640px;}
._14{width:13.910400px;}
._15{width:14.938560px;}
._19{width:17.681760px;}
._13{width:18.822240px;}
._10{width:19.959840px;}
._12{width:21.456480px;}
._17{width:23.051520px;}
._18{width:24.508800px;}
._1c{width:26.496000px;}
._1d{width:28.019520px;}
._1e{width:29.476800px;}
._1f{width:30.669120px;}
._16{width:32.325120px;}
._22{width:36.432000px;}
._23{width:37.955520px;}
._24{width:39.015360px;}
._20{width:81.011520px;}
._21{width:82.203840px;}
._3{width:139.260000px;}
._1b{width:199.416000px;}
._2{width:1104.335040px;}
.fc4{color:rgb(47,84,150);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.380000px;}
.y8e{bottom:13.140000px;}
.y90{bottom:13.320000px;}
.y92{bottom:14.760000px;}
.y8a{bottom:15.300000px;}
.y89{bottom:31.785000px;}
.y88{bottom:48.270000px;}
.y4{bottom:55.440000px;}
.y82{bottom:65.130000px;}
.y83{bottom:78.765000px;}
.y8b{bottom:87.915000px;}
.y84{bottom:92.445000px;}
.y85{bottom:106.125000px;}
.yb3{bottom:112.896000px;}
.y7e{bottom:114.876000px;}
.ycd{bottom:119.376000px;}
.y86{bottom:119.775000px;}
.y3e{bottom:125.136000px;}
.y80{bottom:126.576000px;}
.yb2{bottom:131.796000px;}
.y87{bottom:133.455000px;}
.ycf{bottom:133.776000px;}
.y7d{bottom:133.956000px;}
.ycc{bottom:138.456000px;}
.y7f{bottom:141.876000px;}
.y81{bottom:144.000000px;}
.y3d{bottom:144.216000px;}
.yb1{bottom:150.690000px;}
.y7c{bottom:152.850000px;}
.ycb{bottom:157.350000px;}
.y3c{bottom:163.110000px;}
.yb0{bottom:169.770000px;}
.yce{bottom:171.750000px;}
.y7b{bottom:171.930000px;}
.yca{bottom:176.250000px;}
.y3b{bottom:182.190000px;}
.y8c{bottom:185.865000px;}
.yaf{bottom:188.670000px;}
.y7a{bottom:190.830000px;}
.yc9{bottom:195.330000px;}
.y3a{bottom:201.090000px;}
.yae{bottom:207.750000px;}
.y79{bottom:209.730000px;}
.yc8{bottom:214.230000px;}
.y39{bottom:220.170000px;}
.yad{bottom:226.650000px;}
.y6a{bottom:228.630000px;}
.y78{bottom:228.810000px;}
.yc7{bottom:233.310000px;}
.y38{bottom:239.070000px;}
.yac{bottom:245.550000px;}
.y69{bottom:247.710000px;}
.yc6{bottom:252.210000px;}
.y37{bottom:257.970000px;}
.yab{bottom:264.630000px;}
.y68{bottom:266.610000px;}
.y77{bottom:266.790000px;}
.yc5{bottom:271.110000px;}
.y36{bottom:275.790000px;}
.yaa{bottom:283.530000px;}
.y67{bottom:285.690000px;}
.y35{bottom:289.650000px;}
.yc4{bottom:290.190000px;}
.ya9{bottom:302.610000px;}
.y34{bottom:304.590000px;}
.yc3{bottom:309.090000px;}
.ya8{bottom:321.510000px;}
.y33{bottom:323.130000px;}
.y66{bottom:323.490000px;}
.y76{bottom:323.670000px;}
.yc2{bottom:328.170000px;}
.y32{bottom:340.455000px;}
.y65{bottom:342.615000px;}
.yc1{bottom:347.115000px;}
.y31{bottom:357.735000px;}
.ya7{bottom:359.535000px;}
.y64{bottom:361.515000px;}
.y75{bottom:361.695000px;}
.yc0{bottom:366.015000px;}
.y30{bottom:375.015000px;}
.ya6{bottom:378.435000px;}
.y63{bottom:380.595000px;}
.ybf{bottom:385.095000px;}
.y2f{bottom:392.115000px;}
.ya5{bottom:397.515000px;}
.y62{bottom:399.495000px;}
.ybe{bottom:403.995000px;}
.y2e{bottom:409.395000px;}
.ya4{bottom:416.415000px;}
.y61{bottom:418.575000px;}
.ybd{bottom:423.075000px;}
.y2d{bottom:426.675000px;}
.ya3{bottom:435.315000px;}
.y60{bottom:437.475000px;}
.ybc{bottom:441.975000px;}
.y2c{bottom:443.955000px;}
.ya2{bottom:454.395000px;}
.y5f{bottom:456.375000px;}
.y74{bottom:456.555000px;}
.ybb{bottom:461.055000px;}
.y2b{bottom:461.235000px;}
.ya1{bottom:473.295000px;}
.y5e{bottom:475.455000px;}
.y2a{bottom:478.335000px;}
.yba{bottom:479.955000px;}
.ya0{bottom:492.375000px;}
.y5d{bottom:494.355000px;}
.y29{bottom:495.615000px;}
.yb9{bottom:498.855000px;}
.y9f{bottom:511.275000px;}
.y28{bottom:512.895000px;}
.y5c{bottom:513.435000px;}
.yb8{bottom:517.935000px;}
.y27{bottom:530.175000px;}
.y9e{bottom:530.355000px;}
.y5b{bottom:532.335000px;}
.yb7{bottom:533.235000px;}
.y9d{bottom:545.655000px;}
.y26{bottom:547.455000px;}
.y5a{bottom:551.235000px;}
.y73{bottom:551.415000px;}
.y25{bottom:564.735000px;}
.y59{bottom:570.315000px;}
.y24{bottom:581.835000px;}
.y58{bottom:589.215000px;}
.y72{bottom:589.395000px;}
.y23{bottom:599.115000px;}
.y57{bottom:608.325000px;}
.y22{bottom:616.425000px;}
.y56{bottom:627.225000px;}
.y21{bottom:633.705000px;}
.y55{bottom:646.125000px;}
.y71{bottom:646.305000px;}
.y20{bottom:650.985000px;}
.y54{bottom:665.205000px;}
.y1f{bottom:668.265000px;}
.y53{bottom:684.105000px;}
.y70{bottom:684.285000px;}
.y1e{bottom:685.365000px;}
.y1d{bottom:702.645000px;}
.y52{bottom:703.185000px;}
.y1c{bottom:719.925000px;}
.y51{bottom:722.085000px;}
.y1b{bottom:737.205000px;}
.y50{bottom:740.985000px;}
.y6f{bottom:741.165000px;}
.y1a{bottom:754.485000px;}
.y4f{bottom:760.065000px;}
.y19{bottom:771.765000px;}
.yb6{bottom:773.745000px;}
.y4e{bottom:778.965000px;}
.y6e{bottom:779.145000px;}
.y18{bottom:788.865000px;}
.yb5{bottom:792.645000px;}
.y4d{bottom:798.045000px;}
.y17{bottom:806.145000px;}
.yb4{bottom:807.945000px;}
.y4c{bottom:816.945000px;}
.y9c{bottom:821.805000px;}
.y16{bottom:823.425000px;}
.y4b{bottom:835.845000px;}
.y6d{bottom:836.025000px;}
.y15{bottom:840.705000px;}
.y4a{bottom:854.925000px;}
.y14{bottom:858.345000px;}
.y9b{bottom:859.785000px;}
.y49{bottom:873.870000px;}
.y6c{bottom:874.050000px;}
.y9a{bottom:878.730000px;}
.y13{bottom:882.150000px;}
.y48{bottom:892.950000px;}
.y12{bottom:894.210000px;}
.y99{bottom:897.630000px;}
.y11{bottom:911.850000px;}
.y98{bottom:916.710000px;}
.y10{bottom:930.930000px;}
.y97{bottom:935.610000px;}
.yf{bottom:949.830000px;}
.y96{bottom:954.690000px;}
.y6b{bottom:965.130000px;}
.ye{bottom:968.730000px;}
.y95{bottom:973.590000px;}
.y47{bottom:987.810000px;}
.yd{bottom:988.170000px;}
.y94{bottom:992.490000px;}
.y46{bottom:1006.710000px;}
.yc{bottom:1010.670000px;}
.y93{bottom:1011.570000px;}
.y45{bottom:1025.790000px;}
.y91{bottom:1027.590000px;}
.yb{bottom:1032.990000px;}
.y44{bottom:1044.690000px;}
.ya{bottom:1054.590000px;}
.y8f{bottom:1058.370000px;}
.y43{bottom:1063.590000px;}
.y9{bottom:1071.870000px;}
.y42{bottom:1082.670000px;}
.y8d{bottom:1087.710000px;}
.y8{bottom:1089.150000px;}
.y41{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.y40{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.y3f{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1168.020000px;}
.y1{bottom:1183.680000px;}
.h2{height:26.100000px;}
.hb{height:27.147656px;}
.h16{height:28.440000px;}
.h17{height:28.620000px;}
.h18{height:30.060000px;}
.h10{height:33.683203px;}
.hf{height:34.036523px;}
.h5{height:39.760312px;}
.h7{height:41.726953px;}
.h6{height:42.164648px;}
.h11{height:46.251562px;}
.hc{height:46.736719px;}
.ha{height:48.027656px;}
.hd{height:49.255313px;}
.h3{height:50.068125px;}
.h15{height:50.800781px;}
.h9{height:53.224453px;}
.h13{height:53.709961px;}
.he{height:54.596250px;}
.h8{height:54.864844px;}
.h4{height:65.884219px;}
.h14{height:110.709961px;}
.h12{height:214.020000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w7{width:141.120000px;}
.w6{width:207.975000px;}
.w5{width:439.380000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x27{left:20.745000px;}
.x26{left:23.805000px;}
.x25{left:33.120000px;}
.x19{left:45.150000px;}
.x18{left:51.990000px;}
.x17{left:58.830000px;}
.x23{left:62.325000px;}
.x1a{left:105.045000px;}
.x5{left:108.035987px;}
.x1{left:116.136000px;}
.x9{left:119.915987px;}
.xb{left:121.895987px;}
.x1b{left:123.690000px;}
.x6{left:132.155987px;}
.x13{left:135.035987px;}
.xa{left:140.255987px;}
.x30{left:144.035987px;}
.x2c{left:150.509987px;}
.x12{left:162.029987px;}
.x3{left:169.230000px;}
.x11{left:184.169987px;}
.x1c{left:190.725000px;}
.x2a{left:203.429987px;}
.x1d{left:206.640000px;}
.x16{left:225.900000px;}
.x7{left:232.229987px;}
.x21{left:244.109987px;}
.xd{left:267.869987px;}
.x22{left:271.650000px;}
.x20{left:277.485000px;}
.x1f{left:279.795000px;}
.x1e{left:286.950000px;}
.x15{left:288.974987px;}
.x2b{left:304.454987px;}
.x2e{left:331.994987px;}
.xe{left:335.594987px;}
.xf{left:418.574987px;}
.xc{left:420.554987px;}
.x8{left:446.474987px;}
.x28{left:473.504987px;}
.x24{left:480.345000px;}
.x10{left:593.924987px;}
.x2f{left:629.204987px;}
.x2d{left:631.544987px;}
.x29{left:661.469987px;}
.x14{left:667.049987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:48.906667pt;}
.v4{vertical-align:50.666667pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:56.891307pt;}
.ls3{letter-spacing:139.680000pt;}
.ls4{letter-spacing:177.258667pt;}
.ws9{word-spacing:-53.120000pt;}
.ws7{word-spacing:-52.936533pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:144.634667pt;}
.wsb{word-spacing:144.741333pt;}
._1a{margin-left:-7.988480pt;}
._7{margin-left:-6.940160pt;}
._8{margin-left:-5.543680pt;}
._1{margin-left:-4.459520pt;}
._6{margin-left:-2.893013pt;}
._0{margin-left:-1.354240pt;}
._4{width:1.009280pt;}
._5{width:2.175787pt;}
._d{width:3.310933pt;}
._f{width:4.444587pt;}
._9{width:5.932587pt;}
._b{width:6.958720pt;}
._a{width:8.021120pt;}
._11{width:8.954880pt;}
._e{width:10.145920pt;}
._c{width:11.367680pt;}
._14{width:12.364800pt;}
._15{width:13.278720pt;}
._19{width:15.717120pt;}
._13{width:16.730880pt;}
._10{width:17.742080pt;}
._12{width:19.072427pt;}
._17{width:20.490240pt;}
._18{width:21.785600pt;}
._1c{width:23.552000pt;}
._1d{width:24.906240pt;}
._1e{width:26.201600pt;}
._1f{width:27.261440pt;}
._16{width:28.733440pt;}
._22{width:32.384000pt;}
._23{width:33.738240pt;}
._24{width:34.680320pt;}
._20{width:72.010240pt;}
._21{width:73.070080pt;}
._3{width:123.786667pt;}
._1b{width:177.258667pt;}
._2{width:981.631147pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.560000pt;}
.y8e{bottom:11.680000pt;}
.y90{bottom:11.840000pt;}
.y92{bottom:13.120000pt;}
.y8a{bottom:13.600000pt;}
.y89{bottom:28.253333pt;}
.y88{bottom:42.906667pt;}
.y4{bottom:49.280000pt;}
.y82{bottom:57.893333pt;}
.y83{bottom:70.013333pt;}
.y8b{bottom:78.146667pt;}
.y84{bottom:82.173333pt;}
.y85{bottom:94.333333pt;}
.yb3{bottom:100.352000pt;}
.y7e{bottom:102.112000pt;}
.ycd{bottom:106.112000pt;}
.y86{bottom:106.466667pt;}
.y3e{bottom:111.232000pt;}
.y80{bottom:112.512000pt;}
.yb2{bottom:117.152000pt;}
.y87{bottom:118.626667pt;}
.ycf{bottom:118.912000pt;}
.y7d{bottom:119.072000pt;}
.ycc{bottom:123.072000pt;}
.y7f{bottom:126.112000pt;}
.y81{bottom:128.000000pt;}
.y3d{bottom:128.192000pt;}
.yb1{bottom:133.946667pt;}
.y7c{bottom:135.866667pt;}
.ycb{bottom:139.866667pt;}
.y3c{bottom:144.986667pt;}
.yb0{bottom:150.906667pt;}
.yce{bottom:152.666667pt;}
.y7b{bottom:152.826667pt;}
.yca{bottom:156.666667pt;}
.y3b{bottom:161.946667pt;}
.y8c{bottom:165.213333pt;}
.yaf{bottom:167.706667pt;}
.y7a{bottom:169.626667pt;}
.yc9{bottom:173.626667pt;}
.y3a{bottom:178.746667pt;}
.yae{bottom:184.666667pt;}
.y79{bottom:186.426667pt;}
.yc8{bottom:190.426667pt;}
.y39{bottom:195.706667pt;}
.yad{bottom:201.466667pt;}
.y6a{bottom:203.226667pt;}
.y78{bottom:203.386667pt;}
.yc7{bottom:207.386667pt;}
.y38{bottom:212.506667pt;}
.yac{bottom:218.266667pt;}
.y69{bottom:220.186667pt;}
.yc6{bottom:224.186667pt;}
.y37{bottom:229.306667pt;}
.yab{bottom:235.226667pt;}
.y68{bottom:236.986667pt;}
.y77{bottom:237.146667pt;}
.yc5{bottom:240.986667pt;}
.y36{bottom:245.146667pt;}
.yaa{bottom:252.026667pt;}
.y67{bottom:253.946667pt;}
.y35{bottom:257.466667pt;}
.yc4{bottom:257.946667pt;}
.ya9{bottom:268.986667pt;}
.y34{bottom:270.746667pt;}
.yc3{bottom:274.746667pt;}
.ya8{bottom:285.786667pt;}
.y33{bottom:287.226667pt;}
.y66{bottom:287.546667pt;}
.y76{bottom:287.706667pt;}
.yc2{bottom:291.706667pt;}
.y32{bottom:302.626667pt;}
.y65{bottom:304.546667pt;}
.yc1{bottom:308.546667pt;}
.y31{bottom:317.986667pt;}
.ya7{bottom:319.586667pt;}
.y64{bottom:321.346667pt;}
.y75{bottom:321.506667pt;}
.yc0{bottom:325.346667pt;}
.y30{bottom:333.346667pt;}
.ya6{bottom:336.386667pt;}
.y63{bottom:338.306667pt;}
.ybf{bottom:342.306667pt;}
.y2f{bottom:348.546667pt;}
.ya5{bottom:353.346667pt;}
.y62{bottom:355.106667pt;}
.ybe{bottom:359.106667pt;}
.y2e{bottom:363.906667pt;}
.ya4{bottom:370.146667pt;}
.y61{bottom:372.066667pt;}
.ybd{bottom:376.066667pt;}
.y2d{bottom:379.266667pt;}
.ya3{bottom:386.946667pt;}
.y60{bottom:388.866667pt;}
.ybc{bottom:392.866667pt;}
.y2c{bottom:394.626667pt;}
.ya2{bottom:403.906667pt;}
.y5f{bottom:405.666667pt;}
.y74{bottom:405.826667pt;}
.ybb{bottom:409.826667pt;}
.y2b{bottom:409.986667pt;}
.ya1{bottom:420.706667pt;}
.y5e{bottom:422.626667pt;}
.y2a{bottom:425.186667pt;}
.yba{bottom:426.626667pt;}
.ya0{bottom:437.666667pt;}
.y5d{bottom:439.426667pt;}
.y29{bottom:440.546667pt;}
.yb9{bottom:443.426667pt;}
.y9f{bottom:454.466667pt;}
.y28{bottom:455.906667pt;}
.y5c{bottom:456.386667pt;}
.yb8{bottom:460.386667pt;}
.y27{bottom:471.266667pt;}
.y9e{bottom:471.426667pt;}
.y5b{bottom:473.186667pt;}
.yb7{bottom:473.986667pt;}
.y9d{bottom:485.026667pt;}
.y26{bottom:486.626667pt;}
.y5a{bottom:489.986667pt;}
.y73{bottom:490.146667pt;}
.y25{bottom:501.986667pt;}
.y59{bottom:506.946667pt;}
.y24{bottom:517.186667pt;}
.y58{bottom:523.746667pt;}
.y72{bottom:523.906667pt;}
.y23{bottom:532.546667pt;}
.y57{bottom:540.733333pt;}
.y22{bottom:547.933333pt;}
.y56{bottom:557.533333pt;}
.y21{bottom:563.293333pt;}
.y55{bottom:574.333333pt;}
.y71{bottom:574.493333pt;}
.y20{bottom:578.653333pt;}
.y54{bottom:591.293333pt;}
.y1f{bottom:594.013333pt;}
.y53{bottom:608.093333pt;}
.y70{bottom:608.253333pt;}
.y1e{bottom:609.213333pt;}
.y1d{bottom:624.573333pt;}
.y52{bottom:625.053333pt;}
.y1c{bottom:639.933333pt;}
.y51{bottom:641.853333pt;}
.y1b{bottom:655.293333pt;}
.y50{bottom:658.653333pt;}
.y6f{bottom:658.813333pt;}
.y1a{bottom:670.653333pt;}
.y4f{bottom:675.613333pt;}
.y19{bottom:686.013333pt;}
.yb6{bottom:687.773333pt;}
.y4e{bottom:692.413333pt;}
.y6e{bottom:692.573333pt;}
.y18{bottom:701.213333pt;}
.yb5{bottom:704.573333pt;}
.y4d{bottom:709.373333pt;}
.y17{bottom:716.573333pt;}
.yb4{bottom:718.173333pt;}
.y4c{bottom:726.173333pt;}
.y9c{bottom:730.493333pt;}
.y16{bottom:731.933333pt;}
.y4b{bottom:742.973333pt;}
.y6d{bottom:743.133333pt;}
.y15{bottom:747.293333pt;}
.y4a{bottom:759.933333pt;}
.y14{bottom:762.973333pt;}
.y9b{bottom:764.253333pt;}
.y49{bottom:776.773333pt;}
.y6c{bottom:776.933333pt;}
.y9a{bottom:781.093333pt;}
.y13{bottom:784.133333pt;}
.y48{bottom:793.733333pt;}
.y12{bottom:794.853333pt;}
.y99{bottom:797.893333pt;}
.y11{bottom:810.533333pt;}
.y98{bottom:814.853333pt;}
.y10{bottom:827.493333pt;}
.y97{bottom:831.653333pt;}
.yf{bottom:844.293333pt;}
.y96{bottom:848.613333pt;}
.y6b{bottom:857.893333pt;}
.ye{bottom:861.093333pt;}
.y95{bottom:865.413333pt;}
.y47{bottom:878.053333pt;}
.yd{bottom:878.373333pt;}
.y94{bottom:882.213333pt;}
.y46{bottom:894.853333pt;}
.yc{bottom:898.373333pt;}
.y93{bottom:899.173333pt;}
.y45{bottom:911.813333pt;}
.y91{bottom:913.413333pt;}
.yb{bottom:918.213333pt;}
.y44{bottom:928.613333pt;}
.ya{bottom:937.413333pt;}
.y8f{bottom:940.773333pt;}
.y43{bottom:945.413333pt;}
.y9{bottom:952.773333pt;}
.y42{bottom:962.373333pt;}
.y8d{bottom:966.853333pt;}
.y8{bottom:968.133333pt;}
.y41{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.y40{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.y3f{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1038.240000pt;}
.y1{bottom:1052.160000pt;}
.h2{height:23.200000pt;}
.hb{height:24.131250pt;}
.h16{height:25.280000pt;}
.h17{height:25.440000pt;}
.h18{height:26.720000pt;}
.h10{height:29.940625pt;}
.hf{height:30.254687pt;}
.h5{height:35.342500pt;}
.h7{height:37.090625pt;}
.h6{height:37.479688pt;}
.h11{height:41.112500pt;}
.hc{height:41.543750pt;}
.ha{height:42.691250pt;}
.hd{height:43.782500pt;}
.h3{height:44.505000pt;}
.h15{height:45.156250pt;}
.h9{height:47.310625pt;}
.h13{height:47.742188pt;}
.he{height:48.530000pt;}
.h8{height:48.768750pt;}
.h4{height:58.563750pt;}
.h14{height:98.408854pt;}
.h12{height:190.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w7{width:125.440000pt;}
.w6{width:184.866667pt;}
.w5{width:390.560000pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x27{left:18.440000pt;}
.x26{left:21.160000pt;}
.x25{left:29.440000pt;}
.x19{left:40.133333pt;}
.x18{left:46.213333pt;}
.x17{left:52.293333pt;}
.x23{left:55.400000pt;}
.x1a{left:93.373333pt;}
.x5{left:96.031988pt;}
.x1{left:103.232000pt;}
.x9{left:106.591988pt;}
.xb{left:108.351988pt;}
.x1b{left:109.946667pt;}
.x6{left:117.471988pt;}
.x13{left:120.031988pt;}
.xa{left:124.671988pt;}
.x30{left:128.031988pt;}
.x2c{left:133.786655pt;}
.x12{left:144.026655pt;}
.x3{left:150.426667pt;}
.x11{left:163.706655pt;}
.x1c{left:169.533333pt;}
.x2a{left:180.826655pt;}
.x1d{left:183.680000pt;}
.x16{left:200.800000pt;}
.x7{left:206.426655pt;}
.x21{left:216.986655pt;}
.xd{left:238.106655pt;}
.x22{left:241.466667pt;}
.x20{left:246.653333pt;}
.x1f{left:248.706667pt;}
.x1e{left:255.066667pt;}
.x15{left:256.866655pt;}
.x2b{left:270.626655pt;}
.x2e{left:295.106655pt;}
.xe{left:298.306655pt;}
.xf{left:372.066655pt;}
.xc{left:373.826655pt;}
.x8{left:396.866655pt;}
.x28{left:420.893322pt;}
.x24{left:426.973333pt;}
.x10{left:527.933322pt;}
.x2f{left:559.293322pt;}
.x2d{left:561.373322pt;}
.x29{left:587.973322pt;}
.x14{left:592.933322pt;}
}




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