
    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_b135fac2a1d423d9bc4cc6b2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_b259ef318b59169996d6f50c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.776367;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_60d8901bb796955e5abb72d9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9f065dc59b7decacece9e64a.woff')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_ee3db621138391047c8800e8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_205a867b030e0ac2e6ccc99c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.166800px;}
.ls5{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.116640px;}
.lsc{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.296640px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.864000px;}
.lsa{letter-spacing:33.984000px;}
.ls8{letter-spacing:38.304000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1{word-spacing:-20.733120px;}
.ws0{word-spacing:-20.566320px;}
.ws9{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.392000px;}
.ws2{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-4.889760px;}
._a{margin-left:-3.841920px;}
._6{margin-left:-2.782080px;}
._0{margin-left:-1.258560px;}
._1{width:1.146240px;}
._5{width:2.914560px;}
._3{width:4.239360px;}
._2{width:5.497920px;}
._7{width:7.087680px;}
._c{width:9.077760px;}
._b{width:10.258560px;}
._12{width:11.537760px;}
._8{width:13.314240px;}
._9{width:14.694720px;}
._f{width:16.344000px;}
._4{width:18.480960px;}
._13{width:20.088000px;}
._14{width:21.456000px;}
._18{width:22.536000px;}
._1b{width:23.688000px;}
._1c{width:24.696000px;}
._1a{width:25.848000px;}
._d{width:26.856000px;}
._e{width:27.864000px;}
._16{width:29.376000px;}
._1f{width:30.680640px;}
._15{width:32.613120px;}
._10{width:33.624000px;}
._11{width:34.793760px;}
._1d{width:35.928480px;}
._22{width:37.152000px;}
._19{width:38.592000px;}
._20{width:39.672000px;}
._21{width:41.256000px;}
._23{width:43.272000px;}
._24{width:44.352000px;}
._39{width:46.224000px;}
._32{width:47.520000px;}
._3c{width:50.904000px;}
._25{width:54.720000px;}
._26{width:55.800000px;}
._30{width:59.994000px;}
._2c{width:61.398000px;}
._29{width:68.580000px;}
._27{width:74.952000px;}
._37{width:79.380000px;}
._33{width:80.838000px;}
._31{width:82.242000px;}
._2d{width:85.374000px;}
._3a{width:86.454000px;}
._34{width:89.532000px;}
._36{width:95.202000px;}
._35{width:96.228000px;}
._2b{width:103.464000px;}
._2a{width:114.696000px;}
._38{width:116.802000px;}
._1e{width:130.008000px;}
._3b{width:150.552000px;}
._2e{width:171.828000px;}
._2f{width:273.888000px;}
._28{width:293.220000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:15.120000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:2.880000px;}
.y74{bottom:3.060000px;}
.y2{bottom:3.420000px;}
.y6d{bottom:18.360000px;}
.y7f{bottom:18.396000px;}
.y86{bottom:18.405000px;}
.y77{bottom:18.540000px;}
.y73{bottom:18.585000px;}
.y3{bottom:23.220000px;}
.y7a{bottom:33.840000px;}
.y91{bottom:33.885000px;}
.y76{bottom:34.020000px;}
.y72{bottom:34.065000px;}
.y7d{bottom:49.500000px;}
.y8c{bottom:49.530000px;}
.y71{bottom:49.545000px;}
.y8{bottom:56.340000px;}
.y7c{bottom:64.980000px;}
.y70{bottom:65.025000px;}
.y7{bottom:76.320000px;}
.y6{bottom:96.300000px;}
.y7e{bottom:119.520000px;}
.y3a{bottom:124.200000px;}
.y9d{bottom:127.080000px;}
.ya9{bottom:133.560000px;}
.y6b{bottom:133.740000px;}
.y39{bottom:144.936000px;}
.y9c{bottom:147.816000px;}
.y7b{bottom:151.230000px;}
.ya8{bottom:152.490000px;}
.y6a{bottom:154.470000px;}
.y38{bottom:165.630000px;}
.y9b{bottom:168.510000px;}
.ya7{bottom:171.570000px;}
.y69{bottom:175.170000px;}
.y37{bottom:186.330000px;}
.y9a{bottom:189.210000px;}
.ya6{bottom:190.470000px;}
.y68{bottom:195.870000px;}
.y36{bottom:207.030000px;}
.ya5{bottom:209.550000px;}
.y99{bottom:209.910000px;}
.y67{bottom:216.570000px;}
.y35{bottom:227.730000px;}
.ya4{bottom:228.450000px;}
.y79{bottom:229.710000px;}
.y98{bottom:230.610000px;}
.y66{bottom:237.270000px;}
.ya3{bottom:247.350000px;}
.y34{bottom:248.430000px;}
.y97{bottom:251.310000px;}
.y65{bottom:257.970000px;}
.ya2{bottom:266.430000px;}
.y33{bottom:269.130000px;}
.y96{bottom:271.830000px;}
.y78{bottom:276.870000px;}
.y64{bottom:278.670000px;}
.ya1{bottom:285.330000px;}
.y32{bottom:289.830000px;}
.y95{bottom:292.530000px;}
.y63{bottom:299.370000px;}
.ya0{bottom:304.410000px;}
.y31{bottom:310.530000px;}
.y94{bottom:313.230000px;}
.y62{bottom:320.070000px;}
.y9f{bottom:323.310000px;}
.y75{bottom:324.210000px;}
.y30{bottom:331.230000px;}
.yd4{bottom:331.950000px;}
.y93{bottom:333.930000px;}
.y61{bottom:340.770000px;}
.y9e{bottom:342.210000px;}
.yd3{bottom:350.850000px;}
.y2f{bottom:351.930000px;}
.y92{bottom:354.630000px;}
.y60{bottom:361.470000px;}
.yd2{bottom:369.930000px;}
.y6f{bottom:371.550000px;}
.y90{bottom:372.270000px;}
.y2e{bottom:372.630000px;}
.y5f{bottom:382.170000px;}
.yd1{bottom:388.875000px;}
.y2d{bottom:393.375000px;}
.y5e{bottom:402.915000px;}
.yd0{bottom:407.955000px;}
.y2c{bottom:414.075000px;}
.y5d{bottom:423.615000px;}
.ycf{bottom:426.855000px;}
.y2b{bottom:434.775000px;}
.y8f{bottom:435.135000px;}
.y5c{bottom:444.315000px;}
.yce{bottom:445.755000px;}
.y6c{bottom:450.075000px;}
.y2a{bottom:455.475000px;}
.ycd{bottom:464.835000px;}
.y5b{bottom:465.015000px;}
.y29{bottom:476.175000px;}
.y8e{bottom:482.475000px;}
.ycc{bottom:483.735000px;}
.y5a{bottom:485.715000px;}
.y28{bottom:496.875000px;}
.ycb{bottom:502.815000px;}
.y59{bottom:506.415000px;}
.y27{bottom:517.575000px;}
.yca{bottom:521.715000px;}
.y58{bottom:527.115000px;}
.y8d{bottom:529.815000px;}
.y26{bottom:538.275000px;}
.yc9{bottom:540.615000px;}
.y57{bottom:547.815000px;}
.y25{bottom:558.615000px;}
.yc8{bottom:559.695000px;}
.y56{bottom:568.515000px;}
.y24{bottom:577.515000px;}
.yc7{bottom:578.595000px;}
.y55{bottom:589.215000px;}
.y8b{bottom:592.635000px;}
.y23{bottom:596.595000px;}
.yc6{bottom:597.675000px;}
.y54{bottom:609.915000px;}
.y22{bottom:615.495000px;}
.yc5{bottom:616.575000px;}
.y53{bottom:630.615000px;}
.y21{bottom:634.575000px;}
.yc4{bottom:635.475000px;}
.y52{bottom:651.345000px;}
.y20{bottom:653.505000px;}
.yc3{bottom:654.585000px;}
.y8a{bottom:655.485000px;}
.y51{bottom:672.045000px;}
.y1f{bottom:672.585000px;}
.yc2{bottom:673.485000px;}
.y1e{bottom:691.485000px;}
.yc1{bottom:692.565000px;}
.y50{bottom:692.745000px;}
.y1d{bottom:710.385000px;}
.yc0{bottom:711.465000px;}
.y4f{bottom:713.445000px;}
.y89{bottom:718.305000px;}
.y1c{bottom:729.465000px;}
.ybf{bottom:730.365000px;}
.y4e{bottom:734.145000px;}
.y1b{bottom:748.365000px;}
.ybe{bottom:749.445000px;}
.y4d{bottom:754.845000px;}
.y88{bottom:765.645000px;}
.y1a{bottom:767.445000px;}
.ybd{bottom:768.345000px;}
.y4c{bottom:775.545000px;}
.y19{bottom:786.345000px;}
.ybc{bottom:787.425000px;}
.y4b{bottom:796.245000px;}
.y18{bottom:805.245000px;}
.ybb{bottom:806.325000px;}
.y87{bottom:812.985000px;}
.y4a{bottom:816.945000px;}
.y17{bottom:824.325000px;}
.yba{bottom:825.225000px;}
.y49{bottom:837.645000px;}
.y16{bottom:843.225000px;}
.yb9{bottom:844.305000px;}
.y48{bottom:858.345000px;}
.y15{bottom:862.305000px;}
.yb8{bottom:863.205000px;}
.y85{bottom:875.805000px;}
.y47{bottom:879.045000px;}
.y14{bottom:881.565000px;}
.yb7{bottom:882.285000px;}
.y46{bottom:899.790000px;}
.yb6{bottom:901.230000px;}
.y13{bottom:902.310000px;}
.yb5{bottom:920.310000px;}
.y45{bottom:920.490000px;}
.y12{bottom:923.010000px;}
.y84{bottom:923.190000px;}
.yb4{bottom:939.210000px;}
.y44{bottom:941.190000px;}
.y11{bottom:943.350000px;}
.yb3{bottom:958.110000px;}
.y43{bottom:961.890000px;}
.y10{bottom:962.250000px;}
.y83{bottom:970.530000px;}
.yb2{bottom:977.190000px;}
.yf{bottom:981.330000px;}
.y42{bottom:982.590000px;}
.yb1{bottom:996.090000px;}
.ye{bottom:1000.230000px;}
.y41{bottom:1003.290000px;}
.yb0{bottom:1015.170000px;}
.y82{bottom:1017.870000px;}
.yd{bottom:1019.310000px;}
.y40{bottom:1023.990000px;}
.yaf{bottom:1034.070000px;}
.yc{bottom:1038.210000px;}
.y3f{bottom:1044.690000px;}
.yae{bottom:1052.970000px;}
.yb{bottom:1058.010000px;}
.y81{bottom:1065.030000px;}
.y3e{bottom:1065.390000px;}
.yad{bottom:1072.050000px;}
.ya{bottom:1082.130000px;}
.y3d{bottom:1086.090000px;}
.yac{bottom:1090.950000px;}
.y9{bottom:1106.250000px;}
.y3c{bottom:1106.790000px;}
.yab{bottom:1110.030000px;}
.y3b{bottom:1127.490000px;}
.y80{bottom:1128.030000px;}
.yaa{bottom:1128.930000px;}
.y5{bottom:1129.290000px;}
.y4{bottom:1154.880000px;}
.y1{bottom:1170.180000px;}
.h15{height:15.480000px;}
.he{height:30.960000px;}
.h14{height:30.996000px;}
.hf{height:37.705078px;}
.h2{height:39.780000px;}
.hb{height:46.251562px;}
.h12{height:46.440000px;}
.h11{height:46.620000px;}
.h17{height:46.656000px;}
.h7{height:46.736719px;}
.hc{height:50.273438px;}
.h4{height:50.326875px;}
.h3{height:50.650312px;}
.ha{height:50.800781px;}
.hd{height:52.417969px;}
.h9{height:52.918594px;}
.h5{height:53.015625px;}
.h8{height:53.224453px;}
.h6{height:59.436914px;}
.h16{height:62.100000px;}
.h18{height:62.136000px;}
.h13{height:77.580000px;}
.h10{height:77.616000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:77.976000px;}
.w7{width:87.300000px;}
.wa{width:95.400000px;}
.w9{width:96.300000px;}
.w8{width:96.336000px;}
.w6{width:180.930000px;}
.w3{width:311.655000px;}
.w2{width:344.235000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x13{left:30.240000px;}
.x4{left:108.720000px;}
.x1{left:118.836000px;}
.xc{left:126.935987px;}
.x12{left:145.835987px;}
.x8{left:156.629987px;}
.x9{left:158.609987px;}
.xe{left:161.129987px;}
.x5{left:169.965000px;}
.xd{left:236.729987px;}
.xf{left:255.854987px;}
.x14{left:290.775000px;}
.x10{left:346.214987px;}
.x1a{left:351.434987px;}
.x15{left:378.975000px;}
.xa{left:402.914987px;}
.x7{left:437.684987px;}
.xb{left:446.684987px;}
.x3{left:463.065000px;}
.x16{left:476.205000px;}
.x17{left:573.405000px;}
.x18{left:670.650000px;}
.x11{left:756.719987px;}
.x6{left:766.619987px;}
.x19{left:767.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.103680pt;}
.lsc{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.263680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.768000pt;}
.lsa{letter-spacing:30.208000pt;}
.ls8{letter-spacing:34.048000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.429440pt;}
.ws0{word-spacing:-18.281173pt;}
.ws9{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-4.346453pt;}
._a{margin-left:-3.415040pt;}
._6{margin-left:-2.472960pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.018880pt;}
._5{width:2.590720pt;}
._3{width:3.768320pt;}
._2{width:4.887040pt;}
._7{width:6.300160pt;}
._c{width:8.069120pt;}
._b{width:9.118720pt;}
._12{width:10.255787pt;}
._8{width:11.834880pt;}
._9{width:13.061973pt;}
._f{width:14.528000pt;}
._4{width:16.427520pt;}
._13{width:17.856000pt;}
._14{width:19.072000pt;}
._18{width:20.032000pt;}
._1b{width:21.056000pt;}
._1c{width:21.952000pt;}
._1a{width:22.976000pt;}
._d{width:23.872000pt;}
._e{width:24.768000pt;}
._16{width:26.112000pt;}
._1f{width:27.271680pt;}
._15{width:28.989440pt;}
._10{width:29.888000pt;}
._11{width:30.927787pt;}
._1d{width:31.936427pt;}
._22{width:33.024000pt;}
._19{width:34.304000pt;}
._20{width:35.264000pt;}
._21{width:36.672000pt;}
._23{width:38.464000pt;}
._24{width:39.424000pt;}
._39{width:41.088000pt;}
._32{width:42.240000pt;}
._3c{width:45.248000pt;}
._25{width:48.640000pt;}
._26{width:49.600000pt;}
._30{width:53.328000pt;}
._2c{width:54.576000pt;}
._29{width:60.960000pt;}
._27{width:66.624000pt;}
._37{width:70.560000pt;}
._33{width:71.856000pt;}
._31{width:73.104000pt;}
._2d{width:75.888000pt;}
._3a{width:76.848000pt;}
._34{width:79.584000pt;}
._36{width:84.624000pt;}
._35{width:85.536000pt;}
._2b{width:91.968000pt;}
._2a{width:101.952000pt;}
._38{width:103.824000pt;}
._1e{width:115.562667pt;}
._3b{width:133.824000pt;}
._2e{width:152.736000pt;}
._2f{width:243.456000pt;}
._28{width:260.640000pt;}
.fs4{font-size:13.440000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.560000pt;}
.y74{bottom:2.720000pt;}
.y2{bottom:3.040000pt;}
.y6d{bottom:16.320000pt;}
.y7f{bottom:16.352000pt;}
.y86{bottom:16.360000pt;}
.y77{bottom:16.480000pt;}
.y73{bottom:16.520000pt;}
.y3{bottom:20.640000pt;}
.y7a{bottom:30.080000pt;}
.y91{bottom:30.120000pt;}
.y76{bottom:30.240000pt;}
.y72{bottom:30.280000pt;}
.y7d{bottom:44.000000pt;}
.y8c{bottom:44.026667pt;}
.y71{bottom:44.040000pt;}
.y8{bottom:50.080000pt;}
.y7c{bottom:57.760000pt;}
.y70{bottom:57.800000pt;}
.y7{bottom:67.840000pt;}
.y6{bottom:85.600000pt;}
.y7e{bottom:106.240000pt;}
.y3a{bottom:110.400000pt;}
.y9d{bottom:112.960000pt;}
.ya9{bottom:118.720000pt;}
.y6b{bottom:118.880000pt;}
.y39{bottom:128.832000pt;}
.y9c{bottom:131.392000pt;}
.y7b{bottom:134.426667pt;}
.ya8{bottom:135.546667pt;}
.y6a{bottom:137.306667pt;}
.y38{bottom:147.226667pt;}
.y9b{bottom:149.786667pt;}
.ya7{bottom:152.506667pt;}
.y69{bottom:155.706667pt;}
.y37{bottom:165.626667pt;}
.y9a{bottom:168.186667pt;}
.ya6{bottom:169.306667pt;}
.y68{bottom:174.106667pt;}
.y36{bottom:184.026667pt;}
.ya5{bottom:186.266667pt;}
.y99{bottom:186.586667pt;}
.y67{bottom:192.506667pt;}
.y35{bottom:202.426667pt;}
.ya4{bottom:203.066667pt;}
.y79{bottom:204.186667pt;}
.y98{bottom:204.986667pt;}
.y66{bottom:210.906667pt;}
.ya3{bottom:219.866667pt;}
.y34{bottom:220.826667pt;}
.y97{bottom:223.386667pt;}
.y65{bottom:229.306667pt;}
.ya2{bottom:236.826667pt;}
.y33{bottom:239.226667pt;}
.y96{bottom:241.626667pt;}
.y78{bottom:246.106667pt;}
.y64{bottom:247.706667pt;}
.ya1{bottom:253.626667pt;}
.y32{bottom:257.626667pt;}
.y95{bottom:260.026667pt;}
.y63{bottom:266.106667pt;}
.ya0{bottom:270.586667pt;}
.y31{bottom:276.026667pt;}
.y94{bottom:278.426667pt;}
.y62{bottom:284.506667pt;}
.y9f{bottom:287.386667pt;}
.y75{bottom:288.186667pt;}
.y30{bottom:294.426667pt;}
.yd4{bottom:295.066667pt;}
.y93{bottom:296.826667pt;}
.y61{bottom:302.906667pt;}
.y9e{bottom:304.186667pt;}
.yd3{bottom:311.866667pt;}
.y2f{bottom:312.826667pt;}
.y92{bottom:315.226667pt;}
.y60{bottom:321.306667pt;}
.yd2{bottom:328.826667pt;}
.y6f{bottom:330.266667pt;}
.y90{bottom:330.906667pt;}
.y2e{bottom:331.226667pt;}
.y5f{bottom:339.706667pt;}
.yd1{bottom:345.666667pt;}
.y2d{bottom:349.666667pt;}
.y5e{bottom:358.146667pt;}
.yd0{bottom:362.626667pt;}
.y2c{bottom:368.066667pt;}
.y5d{bottom:376.546667pt;}
.ycf{bottom:379.426667pt;}
.y2b{bottom:386.466667pt;}
.y8f{bottom:386.786667pt;}
.y5c{bottom:394.946667pt;}
.yce{bottom:396.226667pt;}
.y6c{bottom:400.066667pt;}
.y2a{bottom:404.866667pt;}
.ycd{bottom:413.186667pt;}
.y5b{bottom:413.346667pt;}
.y29{bottom:423.266667pt;}
.y8e{bottom:428.866667pt;}
.ycc{bottom:429.986667pt;}
.y5a{bottom:431.746667pt;}
.y28{bottom:441.666667pt;}
.ycb{bottom:446.946667pt;}
.y59{bottom:450.146667pt;}
.y27{bottom:460.066667pt;}
.yca{bottom:463.746667pt;}
.y58{bottom:468.546667pt;}
.y8d{bottom:470.946667pt;}
.y26{bottom:478.466667pt;}
.yc9{bottom:480.546667pt;}
.y57{bottom:486.946667pt;}
.y25{bottom:496.546667pt;}
.yc8{bottom:497.506667pt;}
.y56{bottom:505.346667pt;}
.y24{bottom:513.346667pt;}
.yc7{bottom:514.306667pt;}
.y55{bottom:523.746667pt;}
.y8b{bottom:526.786667pt;}
.y23{bottom:530.306667pt;}
.yc6{bottom:531.266667pt;}
.y54{bottom:542.146667pt;}
.y22{bottom:547.106667pt;}
.yc5{bottom:548.066667pt;}
.y53{bottom:560.546667pt;}
.y21{bottom:564.066667pt;}
.yc4{bottom:564.866667pt;}
.y52{bottom:578.973333pt;}
.y20{bottom:580.893333pt;}
.yc3{bottom:581.853333pt;}
.y8a{bottom:582.653333pt;}
.y51{bottom:597.373333pt;}
.y1f{bottom:597.853333pt;}
.yc2{bottom:598.653333pt;}
.y1e{bottom:614.653333pt;}
.yc1{bottom:615.613333pt;}
.y50{bottom:615.773333pt;}
.y1d{bottom:631.453333pt;}
.yc0{bottom:632.413333pt;}
.y4f{bottom:634.173333pt;}
.y89{bottom:638.493333pt;}
.y1c{bottom:648.413333pt;}
.ybf{bottom:649.213333pt;}
.y4e{bottom:652.573333pt;}
.y1b{bottom:665.213333pt;}
.ybe{bottom:666.173333pt;}
.y4d{bottom:670.973333pt;}
.y88{bottom:680.573333pt;}
.y1a{bottom:682.173333pt;}
.ybd{bottom:682.973333pt;}
.y4c{bottom:689.373333pt;}
.y19{bottom:698.973333pt;}
.ybc{bottom:699.933333pt;}
.y4b{bottom:707.773333pt;}
.y18{bottom:715.773333pt;}
.ybb{bottom:716.733333pt;}
.y87{bottom:722.653333pt;}
.y4a{bottom:726.173333pt;}
.y17{bottom:732.733333pt;}
.yba{bottom:733.533333pt;}
.y49{bottom:744.573333pt;}
.y16{bottom:749.533333pt;}
.yb9{bottom:750.493333pt;}
.y48{bottom:762.973333pt;}
.y15{bottom:766.493333pt;}
.yb8{bottom:767.293333pt;}
.y85{bottom:778.493333pt;}
.y47{bottom:781.373333pt;}
.y14{bottom:783.613333pt;}
.yb7{bottom:784.253333pt;}
.y46{bottom:799.813333pt;}
.yb6{bottom:801.093333pt;}
.y13{bottom:802.053333pt;}
.yb5{bottom:818.053333pt;}
.y45{bottom:818.213333pt;}
.y12{bottom:820.453333pt;}
.y84{bottom:820.613333pt;}
.yb4{bottom:834.853333pt;}
.y44{bottom:836.613333pt;}
.y11{bottom:838.533333pt;}
.yb3{bottom:851.653333pt;}
.y43{bottom:855.013333pt;}
.y10{bottom:855.333333pt;}
.y83{bottom:862.693333pt;}
.yb2{bottom:868.613333pt;}
.yf{bottom:872.293333pt;}
.y42{bottom:873.413333pt;}
.yb1{bottom:885.413333pt;}
.ye{bottom:889.093333pt;}
.y41{bottom:891.813333pt;}
.yb0{bottom:902.373333pt;}
.y82{bottom:904.773333pt;}
.yd{bottom:906.053333pt;}
.y40{bottom:910.213333pt;}
.yaf{bottom:919.173333pt;}
.yc{bottom:922.853333pt;}
.y3f{bottom:928.613333pt;}
.yae{bottom:935.973333pt;}
.yb{bottom:940.453333pt;}
.y81{bottom:946.693333pt;}
.y3e{bottom:947.013333pt;}
.yad{bottom:952.933333pt;}
.ya{bottom:961.893333pt;}
.y3d{bottom:965.413333pt;}
.yac{bottom:969.733333pt;}
.y9{bottom:983.333333pt;}
.y3c{bottom:983.813333pt;}
.yab{bottom:986.693333pt;}
.y3b{bottom:1002.213333pt;}
.y80{bottom:1002.693333pt;}
.yaa{bottom:1003.493333pt;}
.y5{bottom:1003.813333pt;}
.y4{bottom:1026.560000pt;}
.y1{bottom:1040.160000pt;}
.h15{height:13.760000pt;}
.he{height:27.520000pt;}
.h14{height:27.552000pt;}
.hf{height:33.515625pt;}
.h2{height:35.360000pt;}
.hb{height:41.112500pt;}
.h12{height:41.280000pt;}
.h11{height:41.440000pt;}
.h17{height:41.472000pt;}
.h7{height:41.543750pt;}
.hc{height:44.687500pt;}
.h4{height:44.735000pt;}
.h3{height:45.022500pt;}
.ha{height:45.156250pt;}
.hd{height:46.593750pt;}
.h9{height:47.038750pt;}
.h5{height:47.125000pt;}
.h8{height:47.310625pt;}
.h6{height:52.832812pt;}
.h16{height:55.200000pt;}
.h18{height:55.232000pt;}
.h13{height:68.960000pt;}
.h10{height:68.992000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:69.312000pt;}
.w7{width:77.600000pt;}
.wa{width:84.800000pt;}
.w9{width:85.600000pt;}
.w8{width:85.632000pt;}
.w6{width:160.826667pt;}
.w3{width:277.026667pt;}
.w2{width:305.986667pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x13{left:26.880000pt;}
.x4{left:96.640000pt;}
.x1{left:105.632000pt;}
.xc{left:112.831988pt;}
.x12{left:129.631988pt;}
.x8{left:139.226655pt;}
.x9{left:140.986655pt;}
.xe{left:143.226655pt;}
.x5{left:151.080000pt;}
.xd{left:210.426655pt;}
.xf{left:227.426655pt;}
.x14{left:258.466667pt;}
.x10{left:307.746655pt;}
.x1a{left:312.386655pt;}
.x15{left:336.866667pt;}
.xa{left:358.146655pt;}
.x7{left:389.053321pt;}
.xb{left:397.053321pt;}
.x3{left:411.613333pt;}
.x16{left:423.293333pt;}
.x17{left:509.693333pt;}
.x18{left:596.133333pt;}
.x11{left:672.639988pt;}
.x6{left:681.439988pt;}
.x19{left:682.560000pt;}
}




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