
    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_114778237dea95c047c60b81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_8892cf9f358d79c318695d08.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a471622e7b104aea3514854.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_77ef06a0f686665482412910.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_f7fec1adc50d60f53cec79c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_91b2c75bf755560f2f328991.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_9b8ba0e49f1a286b779a3869.woff2')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_962bf9d6ff213669fd2cc90f.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_9430ce3d8036df8032d559d1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c811b9b9f6b2ca0d9f9c79bb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e195dde513dc1a7135a4b400.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.341400px;}
.ls14{letter-spacing:-0.272400px;}
.ls7{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.252720px;}
.ls9{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.ls12{letter-spacing:2.334240px;}
.ls4{letter-spacing:6.300000px;}
.ls10{letter-spacing:9.180000px;}
.lsd{letter-spacing:12.060000px;}
.ls5{letter-spacing:24.300000px;}
.ls1{letter-spacing:90.540000px;}
.lse{letter-spacing:168.101280px;}
.ls15{letter-spacing:170.261280px;}
.ls0{letter-spacing:2407.980000px;}
.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;}
}
.ws0{word-spacing:-25.759440px;}
.ws6{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws4{word-spacing:-8.534880px;}
.ws3{word-spacing:0.000000px;}
._2d{margin-left:-11.598480px;}
._1a{margin-left:-5.812560px;}
._4{margin-left:-4.600800px;}
._15{margin-left:-3.427200px;}
._12{margin-left:-2.404080px;}
._2{margin-left:-1.296000px;}
._0{width:1.470240px;}
._1{width:3.051840px;}
._1f{width:4.107360px;}
._c{width:5.171040px;}
._d{width:6.181920px;}
._13{width:8.178480px;}
._14{width:9.192960px;}
._18{width:10.679040px;}
._17{width:11.741760px;}
._1c{width:12.785040px;}
._7{width:14.236560px;}
._9{width:15.733440px;}
._8{width:16.848480px;}
._e{width:18.312000px;}
._16{width:19.828800px;}
._5{width:22.997520px;}
._19{width:24.293520px;}
._20{width:25.985520px;}
._27{width:27.844560px;}
._6{width:29.005200px;}
._22{width:30.382800px;}
._a{width:31.538160px;}
._b{width:32.801760px;}
._26{width:34.622640px;}
._2e{width:35.685360px;}
._1b{width:36.761040px;}
._1d{width:38.182320px;}
._1e{width:39.603600px;}
._36{width:40.767840px;}
._28{width:41.951520px;}
._10{width:43.804800px;}
._f{width:45.100800px;}
._2b{width:46.760400px;}
._2a{width:47.796480px;}
._2f{width:48.891600px;}
._21{width:49.902480px;}
._2c{width:51.001920px;}
._32{width:52.040880px;}
._31{width:53.071200px;}
._29{width:59.052240px;}
._24{width:60.905520px;}
._23{width:62.046000px;}
._34{width:63.581760px;}
._33{width:64.612080px;}
._3{width:76.680000px;}
._25{width:78.328800px;}
._35{width:89.301600px;}
._11{width:90.674640px;}
._30{width:104.457600px;}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:20.160000px;}
.y5{bottom:68.220000px;}
.y4{bottom:91.440000px;}
.ye5{bottom:126.576000px;}
.y44{bottom:128.916000px;}
.yb2{bottom:134.136000px;}
.y22{bottom:141.876000px;}
.yb1{bottom:148.176000px;}
.yd6{bottom:148.356000px;}
.y43{bottom:151.410000px;}
.yd5{bottom:153.570000px;}
.y96{bottom:153.750000px;}
.y42{bottom:156.630000px;}
.ybc{bottom:159.870000px;}
.ye4{bottom:162.750000px;}
.y80{bottom:170.670000px;}
.yd4{bottom:170.850000px;}
.y41{bottom:173.910000px;}
.y21{bottom:178.050000px;}
.y40{bottom:179.130000px;}
.yb0{bottom:187.050000px;}
.y95{bottom:190.110000px;}
.yd3{bottom:190.470000px;}
.y3f{bottom:193.170000px;}
.yd2{bottom:195.690000px;}
.ybb{bottom:196.050000px;}
.y57{bottom:196.230000px;}
.ye3{bottom:199.110000px;}
.yd9{bottom:201.990000px;}
.yd1{bottom:212.970000px;}
.y20{bottom:214.230000px;}
.yaf{bottom:223.230000px;}
.y94{bottom:226.290000px;}
.y56{bottom:232.230000px;}
.ye2{bottom:235.290000px;}
.yd0{bottom:235.470000px;}
.yc8{bottom:238.350000px;}
.y3d{bottom:241.230000px;}
.y3e{bottom:248.790000px;}
.y1f{bottom:250.410000px;}
.ycf{bottom:255.090000px;}
.yae{bottom:259.410000px;}
.yce{bottom:260.310000px;}
.y93{bottom:262.470000px;}
.y7f{bottom:265.710000px;}
.y55{bottom:268.410000px;}
.yba{bottom:271.290000px;}
.ye1{bottom:271.470000px;}
.ycd{bottom:274.350000px;}
.yc7{bottom:274.530000px;}
.y3c{bottom:277.410000px;}
.y6e{bottom:289.470000px;}
.y1e{bottom:289.830000px;}
.yad{bottom:295.770000px;}
.y92{bottom:298.650000px;}
.y7e{bottom:301.710000px;}
.y9e{bottom:301.890000px;}
.y54{bottom:304.770000px;}
.ye0{bottom:307.650000px;}
.yc6{bottom:310.710000px;}
.yb9{bottom:310.890000px;}
.y3b{bottom:313.770000px;}
.y1d{bottom:326.010000px;}
.y6d{bottom:329.070000px;}
.yac{bottom:331.950000px;}
.y7d{bottom:337.890000px;}
.y91{bottom:338.070000px;}
.y53{bottom:343.830000px;}
.ydf{bottom:344.010000px;}
.yb8{bottom:346.890000px;}
.y3a{bottom:349.950000px;}
.y1c{bottom:362.190000px;}
.y6c{bottom:365.250000px;}
.yab{bottom:368.175000px;}
.y90{bottom:374.295000px;}
.y7c{bottom:376.995000px;}
.yde{bottom:380.235000px;}
.yb7{bottom:383.295000px;}
.y52{bottom:383.475000px;}
.y39{bottom:386.175000px;}
.yc5{bottom:386.355000px;}
.ycc{bottom:390.855000px;}
.y1b{bottom:398.415000px;}
.y6b{bottom:401.475000px;}
.yaa{bottom:404.355000px;}
.y9d{bottom:410.475000px;}
.y8f{bottom:413.535000px;}
.ydd{bottom:416.415000px;}
.y7b{bottom:416.595000px;}
.y51{bottom:419.475000px;}
.y38{bottom:422.355000px;}
.y1a{bottom:434.595000px;}
.y6a{bottom:437.655000px;}
.ya9{bottom:440.715000px;}
.y8e{bottom:449.715000px;}
.y9c{bottom:449.895000px;}
.y7a{bottom:452.595000px;}
.y50{bottom:455.655000px;}
.yc4{bottom:458.715000px;}
.y37{bottom:461.775000px;}
.y19{bottom:473.655000px;}
.y69{bottom:476.715000px;}
.ya8{bottom:476.895000px;}
.y8d{bottom:485.895000px;}
.y79{bottom:488.955000px;}
.y4f{bottom:491.835000px;}
.yc3{bottom:494.895000px;}
.y36{bottom:497.955000px;}
.yd8{bottom:499.395000px;}
.ya7{bottom:513.075000px;}
.y18{bottom:513.255000px;}
.y68{bottom:516.315000px;}
.y8c{bottom:522.075000px;}
.y78{bottom:525.135000px;}
.y4e{bottom:528.015000px;}
.yc2{bottom:531.075000px;}
.y35{bottom:534.135000px;}
.ycb{bottom:535.575000px;}
.y17{bottom:549.255000px;}
.y67{bottom:552.315000px;}
.y8b{bottom:558.255000px;}
.y77{bottom:561.315000px;}
.y4d{bottom:564.375000px;}
.yc1{bottom:567.255000px;}
.y34{bottom:570.315000px;}
.y66{bottom:588.495000px;}
.y16{bottom:588.675000px;}
.ydc{bottom:597.495000px;}
.y8a{bottom:597.675000px;}
.y4c{bottom:600.555000px;}
.y76{bottom:600.735000px;}
.yc0{bottom:603.615000px;}
.y33{bottom:606.495000px;}
.y15{bottom:624.675000px;}
.ya6{bottom:627.585000px;}
.y65{bottom:627.945000px;}
.y89{bottom:633.705000px;}
.ydb{bottom:636.585000px;}
.y75{bottom:636.765000px;}
.ybf{bottom:639.825000px;}
.y4b{bottom:640.005000px;}
.y32{bottom:642.705000px;}
.y14{bottom:661.065000px;}
.y64{bottom:663.945000px;}
.ya5{bottom:667.185000px;}
.y88{bottom:670.065000px;}
.y74{bottom:672.945000px;}
.yda{bottom:675.825000px;}
.y4a{bottom:676.005000px;}
.yca{bottom:676.185000px;}
.y31{bottom:679.065000px;}
.y13{bottom:697.245000px;}
.y63{bottom:703.005000px;}
.y87{bottom:706.245000px;}
.ya4{bottom:706.425000px;}
.y73{bottom:709.305000px;}
.y49{bottom:712.185000px;}
.y30{bottom:715.245000px;}
.y12{bottom:733.425000px;}
.y9b{bottom:742.425000px;}
.y62{bottom:742.605000px;}
.yb6{bottom:745.485000px;}
.y86{bottom:745.665000px;}
.y48{bottom:748.545000px;}
.y72{bottom:748.725000px;}
.y2f{bottom:751.425000px;}
.y11{bottom:769.605000px;}
.y61{bottom:778.605000px;}
.y85{bottom:781.665000px;}
.y47{bottom:784.725000px;}
.yb5{bottom:784.905000px;}
.y2e{bottom:787.605000px;}
.ybe{bottom:792.285000px;}
.y10{bottom:805.965000px;}
.y60{bottom:814.965000px;}
.y84{bottom:817.845000px;}
.ya3{bottom:818.025000px;}
.y46{bottom:820.905000px;}
.y2d{bottom:823.965000px;}
.yee{bottom:836.385000px;}
.yf{bottom:842.145000px;}
.y5f{bottom:851.145000px;}
.ya2{bottom:854.205000px;}
.y71{bottom:857.085000px;}
.y83{bottom:857.265000px;}
.y2c{bottom:860.145000px;}
.y45{bottom:860.325000px;}
.yed{bottom:875.445000px;}
.ye{bottom:878.325000px;}
.y9a{bottom:890.250000px;}
.y5e{bottom:890.610000px;}
.yd7{bottom:893.130000px;}
.y82{bottom:893.310000px;}
.ya1{bottom:893.490000px;}
.y2b{bottom:896.370000px;}
.y70{bottom:896.550000px;}
.yec{bottom:914.730000px;}
.yd{bottom:917.790000px;}
.y5d{bottom:926.610000px;}
.ya0{bottom:929.670000px;}
.y99{bottom:929.850000px;}
.y2a{bottom:932.550000px;}
.y81{bottom:932.730000px;}
.yeb{bottom:953.970000px;}
.yc{bottom:957.030000px;}
.y5c{bottom:962.790000px;}
.y98{bottom:965.850000px;}
.y28{bottom:968.910000px;}
.y29{bottom:976.470000px;}
.yea{bottom:992.850000px;}
.yb{bottom:996.270000px;}
.y97{bottom:1002.030000px;}
.y5b{bottom:1002.210000px;}
.y27{bottom:1005.090000px;}
.ye9{bottom:1032.090000px;}
.ya{bottom:1035.150000px;}
.y5a{bottom:1038.210000px;}
.y26{bottom:1041.270000px;}
.y9f{bottom:1041.450000px;}
.yc9{bottom:1045.770000px;}
.ybd{bottom:1048.830000px;}
.ye8{bottom:1071.330000px;}
.y9{bottom:1074.390000px;}
.y59{bottom:1074.570000px;}
.y25{bottom:1077.450000px;}
.ye7{bottom:1110.570000px;}
.yb4{bottom:1110.750000px;}
.y8{bottom:1113.630000px;}
.y24{bottom:1113.810000px;}
.y58{bottom:1113.990000px;}
.y7{bottom:1149.660000px;}
.ye6{bottom:1149.840000px;}
.y23{bottom:1150.020000px;}
.yb3{bottom:1150.200000px;}
.y6f{bottom:1157.580000px;}
.y3{bottom:1183.680000px;}
.y2{bottom:1206.900000px;}
.y1{bottom:1228.320000px;}
.h9{height:38.671172px;}
.h8{height:54.421875px;}
.h5{height:58.819922px;}
.h6{height:59.436914px;}
.hb{height:59.439023px;}
.ha{height:59.551172px;}
.h2{height:82.676953px;}
.h3{height:84.034336px;}
.h4{height:84.898125px;}
.hc{height:86.585445px;}
.h7{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.x12{left:132.516000px;}
.x23{left:137.376000px;}
.x1{left:157.890000px;}
.xc{left:170.130000px;}
.x13{left:180.390000px;}
.x5{left:213.330000px;}
.x16{left:222.690000px;}
.xf{left:233.647500px;}
.x10{left:240.510000px;}
.xa{left:275.790000px;}
.x2{left:296.355000px;}
.x14{left:304.792500px;}
.x15{left:311.655000px;}
.x1b{left:317.775000px;}
.x11{left:343.695000px;}
.x4{left:356.295000px;}
.x9{left:375.555000px;}
.x8{left:398.775000px;}
.x6{left:400.935000px;}
.x17{left:442.132500px;}
.x18{left:448.995000px;}
.x1f{left:478.852500px;}
.x20{left:485.715000px;}
.x7{left:499.785000px;}
.x19{left:505.702500px;}
.x1a{left:512.565000px;}
.xb{left:525.705000px;}
.x1c{left:725.707500px;}
.xd{left:732.367500px;}
.xe{left:739.230000px;}
.x21{left:786.727500px;}
.x22{left:800.430000px;}
.x1d{left:822.547500px;}
.x1e{left:829.410000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls14{letter-spacing:-0.242133pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.224640pt;}
.ls9{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls12{letter-spacing:2.074880pt;}
.ls4{letter-spacing:5.600000pt;}
.ls10{letter-spacing:8.160000pt;}
.lsd{letter-spacing:10.720000pt;}
.ls5{letter-spacing:21.600000pt;}
.ls1{letter-spacing:80.480000pt;}
.lse{letter-spacing:149.423360pt;}
.ls15{letter-spacing:151.343360pt;}
.ls0{letter-spacing:2140.426667pt;}
.ws0{word-spacing:-22.897280pt;}
.ws6{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws4{word-spacing:-7.586560pt;}
.ws3{word-spacing:0.000000pt;}
._2d{margin-left:-10.309760pt;}
._1a{margin-left:-5.166720pt;}
._4{margin-left:-4.089600pt;}
._15{margin-left:-3.046400pt;}
._12{margin-left:-2.136960pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.306880pt;}
._1{width:2.712747pt;}
._1f{width:3.650987pt;}
._c{width:4.596480pt;}
._d{width:5.495040pt;}
._13{width:7.269760pt;}
._14{width:8.171520pt;}
._18{width:9.492480pt;}
._17{width:10.437120pt;}
._1c{width:11.364480pt;}
._7{width:12.654720pt;}
._9{width:13.985280pt;}
._8{width:14.976427pt;}
._e{width:16.277333pt;}
._16{width:17.625600pt;}
._5{width:20.442240pt;}
._19{width:21.594240pt;}
._20{width:23.098240pt;}
._27{width:24.750720pt;}
._6{width:25.782400pt;}
._22{width:27.006933pt;}
._a{width:28.033920pt;}
._b{width:29.157120pt;}
._26{width:30.775680pt;}
._2e{width:31.720320pt;}
._1b{width:32.676480pt;}
._1d{width:33.939840pt;}
._1e{width:35.203200pt;}
._36{width:36.238080pt;}
._28{width:37.290240pt;}
._10{width:38.937600pt;}
._f{width:40.089600pt;}
._2b{width:41.564800pt;}
._2a{width:42.485760pt;}
._2f{width:43.459200pt;}
._21{width:44.357760pt;}
._2c{width:45.335040pt;}
._32{width:46.258560pt;}
._31{width:47.174400pt;}
._29{width:52.490880pt;}
._24{width:54.138240pt;}
._23{width:55.152000pt;}
._34{width:56.517120pt;}
._33{width:57.432960pt;}
._3{width:68.160000pt;}
._25{width:69.625600pt;}
._35{width:79.379200pt;}
._11{width:80.599680pt;}
._30{width:92.851200pt;}
.fs1{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:17.920000pt;}
.y5{bottom:60.640000pt;}
.y4{bottom:81.280000pt;}
.ye5{bottom:112.512000pt;}
.y44{bottom:114.592000pt;}
.yb2{bottom:119.232000pt;}
.y22{bottom:126.112000pt;}
.yb1{bottom:131.712000pt;}
.yd6{bottom:131.872000pt;}
.y43{bottom:134.586667pt;}
.yd5{bottom:136.506667pt;}
.y96{bottom:136.666667pt;}
.y42{bottom:139.226667pt;}
.ybc{bottom:142.106667pt;}
.ye4{bottom:144.666667pt;}
.y80{bottom:151.706667pt;}
.yd4{bottom:151.866667pt;}
.y41{bottom:154.586667pt;}
.y21{bottom:158.266667pt;}
.y40{bottom:159.226667pt;}
.yb0{bottom:166.266667pt;}
.y95{bottom:168.986667pt;}
.yd3{bottom:169.306667pt;}
.y3f{bottom:171.706667pt;}
.yd2{bottom:173.946667pt;}
.ybb{bottom:174.266667pt;}
.y57{bottom:174.426667pt;}
.ye3{bottom:176.986667pt;}
.yd9{bottom:179.546667pt;}
.yd1{bottom:189.306667pt;}
.y20{bottom:190.426667pt;}
.yaf{bottom:198.426667pt;}
.y94{bottom:201.146667pt;}
.y56{bottom:206.426667pt;}
.ye2{bottom:209.146667pt;}
.yd0{bottom:209.306667pt;}
.yc8{bottom:211.866667pt;}
.y3d{bottom:214.426667pt;}
.y3e{bottom:221.146667pt;}
.y1f{bottom:222.586667pt;}
.ycf{bottom:226.746667pt;}
.yae{bottom:230.586667pt;}
.yce{bottom:231.386667pt;}
.y93{bottom:233.306667pt;}
.y7f{bottom:236.186667pt;}
.y55{bottom:238.586667pt;}
.yba{bottom:241.146667pt;}
.ye1{bottom:241.306667pt;}
.ycd{bottom:243.866667pt;}
.yc7{bottom:244.026667pt;}
.y3c{bottom:246.586667pt;}
.y6e{bottom:257.306667pt;}
.y1e{bottom:257.626667pt;}
.yad{bottom:262.906667pt;}
.y92{bottom:265.466667pt;}
.y7e{bottom:268.186667pt;}
.y9e{bottom:268.346667pt;}
.y54{bottom:270.906667pt;}
.ye0{bottom:273.466667pt;}
.yc6{bottom:276.186667pt;}
.yb9{bottom:276.346667pt;}
.y3b{bottom:278.906667pt;}
.y1d{bottom:289.786667pt;}
.y6d{bottom:292.506667pt;}
.yac{bottom:295.066667pt;}
.y7d{bottom:300.346667pt;}
.y91{bottom:300.506667pt;}
.y53{bottom:305.626667pt;}
.ydf{bottom:305.786667pt;}
.yb8{bottom:308.346667pt;}
.y3a{bottom:311.066667pt;}
.y1c{bottom:321.946667pt;}
.y6c{bottom:324.666667pt;}
.yab{bottom:327.266667pt;}
.y90{bottom:332.706667pt;}
.y7c{bottom:335.106667pt;}
.yde{bottom:337.986667pt;}
.yb7{bottom:340.706667pt;}
.y52{bottom:340.866667pt;}
.y39{bottom:343.266667pt;}
.yc5{bottom:343.426667pt;}
.ycc{bottom:347.426667pt;}
.y1b{bottom:354.146667pt;}
.y6b{bottom:356.866667pt;}
.yaa{bottom:359.426667pt;}
.y9d{bottom:364.866667pt;}
.y8f{bottom:367.586667pt;}
.ydd{bottom:370.146667pt;}
.y7b{bottom:370.306667pt;}
.y51{bottom:372.866667pt;}
.y38{bottom:375.426667pt;}
.y1a{bottom:386.306667pt;}
.y6a{bottom:389.026667pt;}
.ya9{bottom:391.746667pt;}
.y8e{bottom:399.746667pt;}
.y9c{bottom:399.906667pt;}
.y7a{bottom:402.306667pt;}
.y50{bottom:405.026667pt;}
.yc4{bottom:407.746667pt;}
.y37{bottom:410.466667pt;}
.y19{bottom:421.026667pt;}
.y69{bottom:423.746667pt;}
.ya8{bottom:423.906667pt;}
.y8d{bottom:431.906667pt;}
.y79{bottom:434.626667pt;}
.y4f{bottom:437.186667pt;}
.yc3{bottom:439.906667pt;}
.y36{bottom:442.626667pt;}
.yd8{bottom:443.906667pt;}
.ya7{bottom:456.066667pt;}
.y18{bottom:456.226667pt;}
.y68{bottom:458.946667pt;}
.y8c{bottom:464.066667pt;}
.y78{bottom:466.786667pt;}
.y4e{bottom:469.346667pt;}
.yc2{bottom:472.066667pt;}
.y35{bottom:474.786667pt;}
.ycb{bottom:476.066667pt;}
.y17{bottom:488.226667pt;}
.y67{bottom:490.946667pt;}
.y8b{bottom:496.226667pt;}
.y77{bottom:498.946667pt;}
.y4d{bottom:501.666667pt;}
.yc1{bottom:504.226667pt;}
.y34{bottom:506.946667pt;}
.y66{bottom:523.106667pt;}
.y16{bottom:523.266667pt;}
.ydc{bottom:531.106667pt;}
.y8a{bottom:531.266667pt;}
.y4c{bottom:533.826667pt;}
.y76{bottom:533.986667pt;}
.yc0{bottom:536.546667pt;}
.y33{bottom:539.106667pt;}
.y15{bottom:555.266667pt;}
.ya6{bottom:557.853333pt;}
.y65{bottom:558.173333pt;}
.y89{bottom:563.293333pt;}
.ydb{bottom:565.853333pt;}
.y75{bottom:566.013333pt;}
.ybf{bottom:568.733333pt;}
.y4b{bottom:568.893333pt;}
.y32{bottom:571.293333pt;}
.y14{bottom:587.613333pt;}
.y64{bottom:590.173333pt;}
.ya5{bottom:593.053333pt;}
.y88{bottom:595.613333pt;}
.y74{bottom:598.173333pt;}
.yda{bottom:600.733333pt;}
.y4a{bottom:600.893333pt;}
.yca{bottom:601.053333pt;}
.y31{bottom:603.613333pt;}
.y13{bottom:619.773333pt;}
.y63{bottom:624.893333pt;}
.y87{bottom:627.773333pt;}
.ya4{bottom:627.933333pt;}
.y73{bottom:630.493333pt;}
.y49{bottom:633.053333pt;}
.y30{bottom:635.773333pt;}
.y12{bottom:651.933333pt;}
.y9b{bottom:659.933333pt;}
.y62{bottom:660.093333pt;}
.yb6{bottom:662.653333pt;}
.y86{bottom:662.813333pt;}
.y48{bottom:665.373333pt;}
.y72{bottom:665.533333pt;}
.y2f{bottom:667.933333pt;}
.y11{bottom:684.093333pt;}
.y61{bottom:692.093333pt;}
.y85{bottom:694.813333pt;}
.y47{bottom:697.533333pt;}
.yb5{bottom:697.693333pt;}
.y2e{bottom:700.093333pt;}
.ybe{bottom:704.253333pt;}
.y10{bottom:716.413333pt;}
.y60{bottom:724.413333pt;}
.y84{bottom:726.973333pt;}
.ya3{bottom:727.133333pt;}
.y46{bottom:729.693333pt;}
.y2d{bottom:732.413333pt;}
.yee{bottom:743.453333pt;}
.yf{bottom:748.573333pt;}
.y5f{bottom:756.573333pt;}
.ya2{bottom:759.293333pt;}
.y71{bottom:761.853333pt;}
.y83{bottom:762.013333pt;}
.y2c{bottom:764.573333pt;}
.y45{bottom:764.733333pt;}
.yed{bottom:778.173333pt;}
.ye{bottom:780.733333pt;}
.y9a{bottom:791.333333pt;}
.y5e{bottom:791.653333pt;}
.yd7{bottom:793.893333pt;}
.y82{bottom:794.053333pt;}
.ya1{bottom:794.213333pt;}
.y2b{bottom:796.773333pt;}
.y70{bottom:796.933333pt;}
.yec{bottom:813.093333pt;}
.yd{bottom:815.813333pt;}
.y5d{bottom:823.653333pt;}
.ya0{bottom:826.373333pt;}
.y99{bottom:826.533333pt;}
.y2a{bottom:828.933333pt;}
.y81{bottom:829.093333pt;}
.yeb{bottom:847.973333pt;}
.yc{bottom:850.693333pt;}
.y5c{bottom:855.813333pt;}
.y98{bottom:858.533333pt;}
.y28{bottom:861.253333pt;}
.y29{bottom:867.973333pt;}
.yea{bottom:882.533333pt;}
.yb{bottom:885.573333pt;}
.y97{bottom:890.693333pt;}
.y5b{bottom:890.853333pt;}
.y27{bottom:893.413333pt;}
.ye9{bottom:917.413333pt;}
.ya{bottom:920.133333pt;}
.y5a{bottom:922.853333pt;}
.y26{bottom:925.573333pt;}
.y9f{bottom:925.733333pt;}
.yc9{bottom:929.573333pt;}
.ybd{bottom:932.293333pt;}
.ye8{bottom:952.293333pt;}
.y9{bottom:955.013333pt;}
.y59{bottom:955.173333pt;}
.y25{bottom:957.733333pt;}
.ye7{bottom:987.173333pt;}
.yb4{bottom:987.333333pt;}
.y8{bottom:989.893333pt;}
.y24{bottom:990.053333pt;}
.y58{bottom:990.213333pt;}
.y7{bottom:1021.920000pt;}
.ye6{bottom:1022.080000pt;}
.y23{bottom:1022.240000pt;}
.yb3{bottom:1022.400000pt;}
.y6f{bottom:1028.960000pt;}
.y3{bottom:1052.160000pt;}
.y2{bottom:1072.800000pt;}
.y1{bottom:1091.840000pt;}
.h9{height:34.374375pt;}
.h8{height:48.375000pt;}
.h5{height:52.284375pt;}
.h6{height:52.832812pt;}
.hb{height:52.834688pt;}
.ha{height:52.934375pt;}
.h2{height:73.490625pt;}
.h3{height:74.697187pt;}
.h4{height:75.465000pt;}
.hc{height:76.964840pt;}
.h7{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.x12{left:117.792000pt;}
.x23{left:122.112000pt;}
.x1{left:140.346667pt;}
.xc{left:151.226667pt;}
.x13{left:160.346667pt;}
.x5{left:189.626667pt;}
.x16{left:197.946667pt;}
.xf{left:207.686667pt;}
.x10{left:213.786667pt;}
.xa{left:245.146667pt;}
.x2{left:263.426667pt;}
.x14{left:270.926667pt;}
.x15{left:277.026667pt;}
.x1b{left:282.466667pt;}
.x11{left:305.506667pt;}
.x4{left:316.706667pt;}
.x9{left:333.826667pt;}
.x8{left:354.466667pt;}
.x6{left:356.386667pt;}
.x17{left:393.006667pt;}
.x18{left:399.106667pt;}
.x1f{left:425.646667pt;}
.x20{left:431.746667pt;}
.x7{left:444.253333pt;}
.x19{left:449.513333pt;}
.x1a{left:455.613333pt;}
.xb{left:467.293333pt;}
.x1c{left:645.073333pt;}
.xd{left:650.993333pt;}
.xe{left:657.093333pt;}
.x21{left:699.313333pt;}
.x22{left:711.493333pt;}
.x1d{left:731.153333pt;}
.x1e{left:737.253333pt;}
}




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