
    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_c9463f489fb984110abb6c28.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0dbdfd5dca0ce5c437191a45.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b6109e34e359cb34548d61c2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_6c0baf28f5316954bdbe4160.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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_63ad4f574bb1bf4913e5716e.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls6{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.119520px;}
.lsd{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.480000px;}
.lsc{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.166000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.364160px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._54{margin-left:-14.633280px;}
._1f{margin-left:-5.280000px;}
._e{margin-left:-3.664800px;}
._d{margin-left:-2.131920px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._8{width:2.538720px;}
._9{width:3.946320px;}
._c{width:5.274000px;}
._a{width:7.140960px;}
._11{width:8.186400px;}
._7{width:9.756000px;}
._6{width:10.911120px;}
._27{width:12.489840px;}
._1b{width:13.692240px;}
._f{width:16.806720px;}
._15{width:18.614160px;}
._b{width:20.048400px;}
._14{width:21.155040px;}
._24{width:23.067360px;}
._1c{width:24.860160px;}
._13{width:26.473680px;}
._12{width:27.668880px;}
._28{width:28.983600px;}
._18{width:30.785760px;}
._17{width:31.852080px;}
._23{width:33.585120px;}
._16{width:34.928640px;}
._1a{width:36.661680px;}
._22{width:38.466000px;}
._19{width:39.828960px;}
._31{width:41.203440px;}
._10{width:42.429600px;}
._2d{width:44.102880px;}
._2c{width:45.267120px;}
._1e{width:46.553040px;}
._2b{width:48.556800px;}
._2f{width:50.497200px;}
._35{width:51.515280px;}
._26{width:53.215200px;}
._21{width:54.859680px;}
._20{width:56.114640px;}
._30{width:60.565680px;}
._32{width:62.298720px;}
._2e{width:63.735120px;}
._2a{width:65.585520px;}
._29{width:67.349520px;}
._33{width:68.812560px;}
._51{width:70.119360px;}
._52{width:71.652240px;}
._34{width:72.756720px;}
._3b{width:74.430000px;}
._38{width:75.715920px;}
._46{width:76.970880px;}
._36{width:78.672960px;}
._25{width:80.047440px;}
._1d{width:84.111120px;}
._41{width:91.043280px;}
._50{width:96.034320px;}
._48{width:97.915680px;}
._3c{width:104.907600px;}
._3d{width:106.133760px;}
._45{width:107.835840px;}
._43{width:113.632560px;}
._42{width:114.708240px;}
._47{width:118.862640px;}
._3e{width:122.508000px;}
._37{width:131.199840px;}
._53{width:149.519520px;}
._3a{width:185.762880px;}
._44{width:194.607360px;}
._4a{width:214.626960px;}
._49{width:215.763840px;}
._4c{width:236.213040px;}
._39{width:242.267040px;}
._4f{width:247.853520px;}
._4e{width:249.081120px;}
._40{width:272.295360px;}
._3f{width:273.581280px;}
._4d{width:291.461040px;}
._4b{width:762.028560px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y3e{bottom:11.520000px;}
.y9{bottom:11.700000px;}
.y3d{bottom:12.240000px;}
.y8{bottom:12.420000px;}
.ya{bottom:36.720000px;}
.y3f{bottom:37.260000px;}
.y6{bottom:53.640000px;}
.y3b{bottom:54.180000px;}
.yb4{bottom:86.940000px;}
.y39{bottom:90.720000px;}
.ye1{bottom:94.140000px;}
.y75{bottom:95.940000px;}
.yb3{bottom:97.740000px;}
.y82{bottom:106.740000px;}
.y38{bottom:110.520000px;}
.ye0{bottom:113.940000px;}
.y74{bottom:115.740000px;}
.yb2{bottom:117.540000px;}
.y81{bottom:126.540000px;}
.y37{bottom:130.320000px;}
.ydf{bottom:133.740000px;}
.y73{bottom:135.540000px;}
.yb1{bottom:137.340000px;}
.y80{bottom:146.340000px;}
.y36{bottom:150.300000px;}
.yde{bottom:153.570000px;}
.y72{bottom:155.370000px;}
.yb0{bottom:157.170000px;}
.y7f{bottom:166.170000px;}
.y35{bottom:170.130000px;}
.ydd{bottom:173.370000px;}
.y71{bottom:175.170000px;}
.yaf{bottom:177.150000px;}
.y7e{bottom:186.150000px;}
.y34{bottom:189.930000px;}
.ydc{bottom:193.170000px;}
.y70{bottom:195.150000px;}
.yae{bottom:196.950000px;}
.y7d{bottom:205.950000px;}
.y33{bottom:209.730000px;}
.ydb{bottom:213.150000px;}
.y6f{bottom:214.950000px;}
.yad{bottom:216.750000px;}
.y7c{bottom:225.750000px;}
.y32{bottom:229.530000px;}
.yda{bottom:232.950000px;}
.y6e{bottom:234.750000px;}
.yac{bottom:236.550000px;}
.y7b{bottom:245.550000px;}
.y31{bottom:249.510000px;}
.yd9{bottom:252.750000px;}
.y6d{bottom:254.550000px;}
.y7a{bottom:265.350000px;}
.y30{bottom:269.310000px;}
.yd8{bottom:272.550000px;}
.y6c{bottom:274.350000px;}
.yab{bottom:285.330000px;}
.y2f{bottom:289.110000px;}
.yd7{bottom:292.350000px;}
.y6b{bottom:294.330000px;}
.yaa{bottom:305.130000px;}
.y2e{bottom:308.910000px;}
.yd6{bottom:312.330000px;}
.y6a{bottom:314.130000px;}
.ya9{bottom:324.930000px;}
.y2d{bottom:328.710000px;}
.yd5{bottom:332.130000px;}
.y69{bottom:333.930000px;}
.ya8{bottom:344.730000px;}
.y2c{bottom:348.690000px;}
.yd4{bottom:351.930000px;}
.y68{bottom:353.730000px;}
.yc0{bottom:362.730000px;}
.ya7{bottom:364.530000px;}
.y2b{bottom:368.490000px;}
.yd3{bottom:371.730000px;}
.y67{bottom:373.530000px;}
.ybf{bottom:382.530000px;}
.ya6{bottom:384.510000px;}
.y2a{bottom:388.290000px;}
.yd2{bottom:391.530000px;}
.y66{bottom:393.510000px;}
.ybe{bottom:402.555000px;}
.ya5{bottom:404.355000px;}
.y29{bottom:408.135000px;}
.yd1{bottom:411.555000px;}
.y65{bottom:413.355000px;}
.ybd{bottom:422.355000px;}
.ya4{bottom:424.155000px;}
.y28{bottom:427.935000px;}
.yd0{bottom:431.355000px;}
.y64{bottom:433.155000px;}
.ybc{bottom:442.155000px;}
.ya3{bottom:443.955000px;}
.y27{bottom:447.915000px;}
.ycf{bottom:451.155000px;}
.y63{bottom:452.955000px;}
.ybb{bottom:461.955000px;}
.ya2{bottom:463.755000px;}
.y26{bottom:467.715000px;}
.yce{bottom:470.955000px;}
.y62{bottom:472.755000px;}
.yba{bottom:481.755000px;}
.ya1{bottom:483.735000px;}
.y25{bottom:487.515000px;}
.ycd{bottom:490.755000px;}
.y79{bottom:492.735000px;}
.y61{bottom:501.735000px;}
.ya0{bottom:503.535000px;}
.y24{bottom:507.315000px;}
.ycc{bottom:510.735000px;}
.y91{bottom:512.535000px;}
.y60{bottom:521.535000px;}
.y9f{bottom:523.335000px;}
.y23{bottom:527.115000px;}
.ycb{bottom:530.535000px;}
.y90{bottom:532.335000px;}
.y5f{bottom:541.335000px;}
.y22{bottom:547.095000px;}
.yca{bottom:550.335000px;}
.y8f{bottom:552.135000px;}
.y5e{bottom:561.135000px;}
.y21{bottom:566.895000px;}
.yc9{bottom:570.135000px;}
.y8e{bottom:571.935000px;}
.y5d{bottom:580.935000px;}
.y20{bottom:586.695000px;}
.yc8{bottom:589.935000px;}
.y8d{bottom:591.915000px;}
.y5c{bottom:600.915000px;}
.y1f{bottom:606.495000px;}
.yc7{bottom:609.915000px;}
.y8c{bottom:611.715000px;}
.y5b{bottom:620.715000px;}
.y1e{bottom:626.295000px;}
.yc6{bottom:629.715000px;}
.y8b{bottom:631.515000px;}
.y5a{bottom:640.515000px;}
.y1d{bottom:648.435000px;}
.yc5{bottom:649.545000px;}
.y8a{bottom:651.345000px;}
.y59{bottom:660.345000px;}
.y1c{bottom:668.265000px;}
.yc4{bottom:669.345000px;}
.y89{bottom:671.145000px;}
.y58{bottom:680.145000px;}
.y1b{bottom:688.065000px;}
.yc3{bottom:689.145000px;}
.y9e{bottom:691.125000px;}
.y57{bottom:700.125000px;}
.y1a{bottom:708.045000px;}
.yc2{bottom:709.125000px;}
.y9d{bottom:710.925000px;}
.y56{bottom:719.925000px;}
.y19{bottom:727.845000px;}
.yc1{bottom:728.925000px;}
.y9c{bottom:730.725000px;}
.y55{bottom:739.725000px;}
.y18{bottom:747.645000px;}
.yb9{bottom:748.725000px;}
.y9b{bottom:750.525000px;}
.y54{bottom:759.525000px;}
.y17{bottom:767.445000px;}
.yb8{bottom:768.525000px;}
.y9a{bottom:770.325000px;}
.y53{bottom:779.325000px;}
.y16{bottom:787.245000px;}
.yb7{bottom:788.325000px;}
.y99{bottom:790.305000px;}
.y52{bottom:799.305000px;}
.y15{bottom:807.225000px;}
.yb6{bottom:808.305000px;}
.y98{bottom:810.105000px;}
.y51{bottom:819.105000px;}
.y14{bottom:827.025000px;}
.yb5{bottom:828.105000px;}
.y50{bottom:838.905000px;}
.y13{bottom:846.825000px;}
.y78{bottom:847.905000px;}
.y4f{bottom:858.705000px;}
.y77{bottom:867.705000px;}
.y12{bottom:868.965000px;}
.y4e{bottom:878.505000px;}
.y76{bottom:887.505000px;}
.y11{bottom:893.985000px;}
.y88{bottom:898.530000px;}
.y4d{bottom:907.530000px;}
.y10{bottom:913.830000px;}
.y87{bottom:918.330000px;}
.y4c{bottom:927.330000px;}
.yf{bottom:933.630000px;}
.y86{bottom:938.130000px;}
.y4b{bottom:947.130000px;}
.ye{bottom:948.930000px;}
.y85{bottom:957.930000px;}
.y4a{bottom:966.930000px;}
.yd{bottom:970.170000px;}
.y84{bottom:977.730000px;}
.y49{bottom:986.730000px;}
.yc{bottom:993.570000px;}
.y83{bottom:997.710000px;}
.y48{bottom:1006.710000px;}
.y97{bottom:1017.510000px;}
.yb{bottom:1025.250000px;}
.y47{bottom:1026.510000px;}
.y96{bottom:1037.310000px;}
.y46{bottom:1046.310000px;}
.y5{bottom:1054.050000px;}
.y95{bottom:1057.110000px;}
.y45{bottom:1066.110000px;}
.y94{bottom:1076.910000px;}
.y44{bottom:1085.910000px;}
.y4{bottom:1087.890000px;}
.y93{bottom:1096.890000px;}
.y43{bottom:1105.890000px;}
.y92{bottom:1116.690000px;}
.y3{bottom:1118.850000px;}
.y42{bottom:1125.690000px;}
.y41{bottom:1145.490000px;}
.y2{bottom:1149.660000px;}
.y40{bottom:1165.320000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1193.400000px;}
.he{height:21.780000px;}
.h5{height:21.960000px;}
.hc{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.ha{height:41.726953px;}
.hd{height:42.164648px;}
.hf{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h10{height:49.255313px;}
.hb{height:53.224453px;}
.h2{height:54.864844px;}
.h8{height:60.855469px;}
.h9{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x11{left:80.279987px;}
.x9{left:90.575987px;}
.x12{left:108.035987px;}
.x4{left:118.296000px;}
.xc{left:169.949987px;}
.xa{left:243.749987px;}
.xf{left:295.454987px;}
.x8{left:305.499000px;}
.x7{left:310.539000px;}
.xd{left:329.474987px;}
.xe{left:357.194987px;}
.x6{left:429.009000px;}
.x5{left:442.509000px;}
.xb{left:446.504987px;}
.x10{left:473.504987px;}
.x13{left:500.504987px;}
.x14{left:527.504987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls6{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.106240pt;}
.lsd{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.426667pt;}
.lsc{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.545920pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._54{margin-left:-13.007360pt;}
._1f{margin-left:-4.693333pt;}
._e{margin-left:-3.257600pt;}
._d{margin-left:-1.895040pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._8{width:2.256640pt;}
._9{width:3.507840pt;}
._c{width:4.688000pt;}
._a{width:6.347520pt;}
._11{width:7.276800pt;}
._7{width:8.672000pt;}
._6{width:9.698773pt;}
._27{width:11.102080pt;}
._1b{width:12.170880pt;}
._f{width:14.939307pt;}
._15{width:16.545920pt;}
._b{width:17.820800pt;}
._14{width:18.804480pt;}
._24{width:20.504320pt;}
._1c{width:22.097920pt;}
._13{width:23.532160pt;}
._12{width:24.594560pt;}
._28{width:25.763200pt;}
._18{width:27.365120pt;}
._17{width:28.312960pt;}
._23{width:29.853440pt;}
._16{width:31.047680pt;}
._1a{width:32.588160pt;}
._22{width:34.192000pt;}
._19{width:35.403520pt;}
._31{width:36.625280pt;}
._10{width:37.715200pt;}
._2d{width:39.202560pt;}
._2c{width:40.237440pt;}
._1e{width:41.380480pt;}
._2b{width:43.161600pt;}
._2f{width:44.886400pt;}
._35{width:45.791360pt;}
._26{width:47.302400pt;}
._21{width:48.764160pt;}
._20{width:49.879680pt;}
._30{width:53.836160pt;}
._32{width:55.376640pt;}
._2e{width:56.653440pt;}
._2a{width:58.298240pt;}
._29{width:59.866240pt;}
._33{width:61.166720pt;}
._51{width:62.328320pt;}
._52{width:63.690880pt;}
._34{width:64.672640pt;}
._3b{width:66.160000pt;}
._38{width:67.303040pt;}
._46{width:68.418560pt;}
._36{width:69.931520pt;}
._25{width:71.153280pt;}
._1d{width:74.765440pt;}
._41{width:80.927360pt;}
._50{width:85.363840pt;}
._48{width:87.036160pt;}
._3c{width:93.251200pt;}
._3d{width:94.341120pt;}
._45{width:95.854080pt;}
._43{width:101.006720pt;}
._42{width:101.962880pt;}
._47{width:105.655680pt;}
._3e{width:108.896000pt;}
._37{width:116.622080pt;}
._53{width:132.906240pt;}
._3a{width:165.122560pt;}
._44{width:172.984320pt;}
._4a{width:190.779520pt;}
._49{width:191.790080pt;}
._4c{width:209.967147pt;}
._39{width:215.348480pt;}
._4f{width:220.314240pt;}
._4e{width:221.405440pt;}
._40{width:242.040320pt;}
._3f{width:243.183360pt;}
._4d{width:259.076480pt;}
._4b{width:677.358720pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y3e{bottom:10.240000pt;}
.y9{bottom:10.400000pt;}
.y3d{bottom:10.880000pt;}
.y8{bottom:11.040000pt;}
.ya{bottom:32.640000pt;}
.y3f{bottom:33.120000pt;}
.y6{bottom:47.680000pt;}
.y3b{bottom:48.160000pt;}
.yb4{bottom:77.280000pt;}
.y39{bottom:80.640000pt;}
.ye1{bottom:83.680000pt;}
.y75{bottom:85.280000pt;}
.yb3{bottom:86.880000pt;}
.y82{bottom:94.880000pt;}
.y38{bottom:98.240000pt;}
.ye0{bottom:101.280000pt;}
.y74{bottom:102.880000pt;}
.yb2{bottom:104.480000pt;}
.y81{bottom:112.480000pt;}
.y37{bottom:115.840000pt;}
.ydf{bottom:118.880000pt;}
.y73{bottom:120.480000pt;}
.yb1{bottom:122.080000pt;}
.y80{bottom:130.080000pt;}
.y36{bottom:133.600000pt;}
.yde{bottom:136.506667pt;}
.y72{bottom:138.106667pt;}
.yb0{bottom:139.706667pt;}
.y7f{bottom:147.706667pt;}
.y35{bottom:151.226667pt;}
.ydd{bottom:154.106667pt;}
.y71{bottom:155.706667pt;}
.yaf{bottom:157.466667pt;}
.y7e{bottom:165.466667pt;}
.y34{bottom:168.826667pt;}
.ydc{bottom:171.706667pt;}
.y70{bottom:173.466667pt;}
.yae{bottom:175.066667pt;}
.y7d{bottom:183.066667pt;}
.y33{bottom:186.426667pt;}
.ydb{bottom:189.466667pt;}
.y6f{bottom:191.066667pt;}
.yad{bottom:192.666667pt;}
.y7c{bottom:200.666667pt;}
.y32{bottom:204.026667pt;}
.yda{bottom:207.066667pt;}
.y6e{bottom:208.666667pt;}
.yac{bottom:210.266667pt;}
.y7b{bottom:218.266667pt;}
.y31{bottom:221.786667pt;}
.yd9{bottom:224.666667pt;}
.y6d{bottom:226.266667pt;}
.y7a{bottom:235.866667pt;}
.y30{bottom:239.386667pt;}
.yd8{bottom:242.266667pt;}
.y6c{bottom:243.866667pt;}
.yab{bottom:253.626667pt;}
.y2f{bottom:256.986667pt;}
.yd7{bottom:259.866667pt;}
.y6b{bottom:261.626667pt;}
.yaa{bottom:271.226667pt;}
.y2e{bottom:274.586667pt;}
.yd6{bottom:277.626667pt;}
.y6a{bottom:279.226667pt;}
.ya9{bottom:288.826667pt;}
.y2d{bottom:292.186667pt;}
.yd5{bottom:295.226667pt;}
.y69{bottom:296.826667pt;}
.ya8{bottom:306.426667pt;}
.y2c{bottom:309.946667pt;}
.yd4{bottom:312.826667pt;}
.y68{bottom:314.426667pt;}
.yc0{bottom:322.426667pt;}
.ya7{bottom:324.026667pt;}
.y2b{bottom:327.546667pt;}
.yd3{bottom:330.426667pt;}
.y67{bottom:332.026667pt;}
.ybf{bottom:340.026667pt;}
.ya6{bottom:341.786667pt;}
.y2a{bottom:345.146667pt;}
.yd2{bottom:348.026667pt;}
.y66{bottom:349.786667pt;}
.ybe{bottom:357.826667pt;}
.ya5{bottom:359.426667pt;}
.y29{bottom:362.786667pt;}
.yd1{bottom:365.826667pt;}
.y65{bottom:367.426667pt;}
.ybd{bottom:375.426667pt;}
.ya4{bottom:377.026667pt;}
.y28{bottom:380.386667pt;}
.yd0{bottom:383.426667pt;}
.y64{bottom:385.026667pt;}
.ybc{bottom:393.026667pt;}
.ya3{bottom:394.626667pt;}
.y27{bottom:398.146667pt;}
.ycf{bottom:401.026667pt;}
.y63{bottom:402.626667pt;}
.ybb{bottom:410.626667pt;}
.ya2{bottom:412.226667pt;}
.y26{bottom:415.746667pt;}
.yce{bottom:418.626667pt;}
.y62{bottom:420.226667pt;}
.yba{bottom:428.226667pt;}
.ya1{bottom:429.986667pt;}
.y25{bottom:433.346667pt;}
.ycd{bottom:436.226667pt;}
.y79{bottom:437.986667pt;}
.y61{bottom:445.986667pt;}
.ya0{bottom:447.586667pt;}
.y24{bottom:450.946667pt;}
.ycc{bottom:453.986667pt;}
.y91{bottom:455.586667pt;}
.y60{bottom:463.586667pt;}
.y9f{bottom:465.186667pt;}
.y23{bottom:468.546667pt;}
.ycb{bottom:471.586667pt;}
.y90{bottom:473.186667pt;}
.y5f{bottom:481.186667pt;}
.y22{bottom:486.306667pt;}
.yca{bottom:489.186667pt;}
.y8f{bottom:490.786667pt;}
.y5e{bottom:498.786667pt;}
.y21{bottom:503.906667pt;}
.yc9{bottom:506.786667pt;}
.y8e{bottom:508.386667pt;}
.y5d{bottom:516.386667pt;}
.y20{bottom:521.506667pt;}
.yc8{bottom:524.386667pt;}
.y8d{bottom:526.146667pt;}
.y5c{bottom:534.146667pt;}
.y1f{bottom:539.106667pt;}
.yc7{bottom:542.146667pt;}
.y8c{bottom:543.746667pt;}
.y5b{bottom:551.746667pt;}
.y1e{bottom:556.706667pt;}
.yc6{bottom:559.746667pt;}
.y8b{bottom:561.346667pt;}
.y5a{bottom:569.346667pt;}
.y1d{bottom:576.386667pt;}
.yc5{bottom:577.373333pt;}
.y8a{bottom:578.973333pt;}
.y59{bottom:586.973333pt;}
.y1c{bottom:594.013333pt;}
.yc4{bottom:594.973333pt;}
.y89{bottom:596.573333pt;}
.y58{bottom:604.573333pt;}
.y1b{bottom:611.613333pt;}
.yc3{bottom:612.573333pt;}
.y9e{bottom:614.333333pt;}
.y57{bottom:622.333333pt;}
.y1a{bottom:629.373333pt;}
.yc2{bottom:630.333333pt;}
.y9d{bottom:631.933333pt;}
.y56{bottom:639.933333pt;}
.y19{bottom:646.973333pt;}
.yc1{bottom:647.933333pt;}
.y9c{bottom:649.533333pt;}
.y55{bottom:657.533333pt;}
.y18{bottom:664.573333pt;}
.yb9{bottom:665.533333pt;}
.y9b{bottom:667.133333pt;}
.y54{bottom:675.133333pt;}
.y17{bottom:682.173333pt;}
.yb8{bottom:683.133333pt;}
.y9a{bottom:684.733333pt;}
.y53{bottom:692.733333pt;}
.y16{bottom:699.773333pt;}
.yb7{bottom:700.733333pt;}
.y99{bottom:702.493333pt;}
.y52{bottom:710.493333pt;}
.y15{bottom:717.533333pt;}
.yb6{bottom:718.493333pt;}
.y98{bottom:720.093333pt;}
.y51{bottom:728.093333pt;}
.y14{bottom:735.133333pt;}
.yb5{bottom:736.093333pt;}
.y50{bottom:745.693333pt;}
.y13{bottom:752.733333pt;}
.y78{bottom:753.693333pt;}
.y4f{bottom:763.293333pt;}
.y77{bottom:771.293333pt;}
.y12{bottom:772.413333pt;}
.y4e{bottom:780.893333pt;}
.y76{bottom:788.893333pt;}
.y11{bottom:794.653333pt;}
.y88{bottom:798.693333pt;}
.y4d{bottom:806.693333pt;}
.y10{bottom:812.293333pt;}
.y87{bottom:816.293333pt;}
.y4c{bottom:824.293333pt;}
.yf{bottom:829.893333pt;}
.y86{bottom:833.893333pt;}
.y4b{bottom:841.893333pt;}
.ye{bottom:843.493333pt;}
.y85{bottom:851.493333pt;}
.y4a{bottom:859.493333pt;}
.yd{bottom:862.373333pt;}
.y84{bottom:869.093333pt;}
.y49{bottom:877.093333pt;}
.yc{bottom:883.173333pt;}
.y83{bottom:886.853333pt;}
.y48{bottom:894.853333pt;}
.y97{bottom:904.453333pt;}
.yb{bottom:911.333333pt;}
.y47{bottom:912.453333pt;}
.y96{bottom:922.053333pt;}
.y46{bottom:930.053333pt;}
.y5{bottom:936.933333pt;}
.y95{bottom:939.653333pt;}
.y45{bottom:947.653333pt;}
.y94{bottom:957.253333pt;}
.y44{bottom:965.253333pt;}
.y4{bottom:967.013333pt;}
.y93{bottom:975.013333pt;}
.y43{bottom:983.013333pt;}
.y92{bottom:992.613333pt;}
.y3{bottom:994.533333pt;}
.y42{bottom:1000.613333pt;}
.y41{bottom:1018.213333pt;}
.y2{bottom:1021.920000pt;}
.y40{bottom:1035.840000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1060.800000pt;}
.he{height:19.360000pt;}
.h5{height:19.520000pt;}
.hc{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.ha{height:37.090625pt;}
.hd{height:37.479688pt;}
.hf{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h10{height:43.782500pt;}
.hb{height:47.310625pt;}
.h2{height:48.768750pt;}
.h8{height:54.093750pt;}
.h9{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x11{left:71.359988pt;}
.x9{left:80.511988pt;}
.x12{left:96.031988pt;}
.x4{left:105.152000pt;}
.xc{left:151.066655pt;}
.xa{left:216.666655pt;}
.xf{left:262.626655pt;}
.x8{left:271.554667pt;}
.x7{left:276.034667pt;}
.xd{left:292.866655pt;}
.xe{left:317.506655pt;}
.x6{left:381.341333pt;}
.x5{left:393.341333pt;}
.xb{left:396.893322pt;}
.x10{left:420.893322pt;}
.x13{left:444.893322pt;}
.x14{left:468.893322pt;}
}




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