
    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_c499d5a577bb5b2c8dff4782.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ac53dadd23fa4c2787e18196.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_bc97b83e9266160c502d4441.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_71115bea6f7bf18626982c47.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1a692aa64fb80ab554cde824.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3b7ba375d54ee41c2150d5b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8ac5918d2f18d930498db0f2.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_909088ed92cd5a179fa8edb1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_11a45242f41b3fac4dc500bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_c83ca2600dffd3f3f9b6b3cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_7c4c9848c463dd41fc7187e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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:ffc;src:url('chunks/assets/font_87f5f22d47d9039ef12ed957.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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:ffd;src:url('chunks/assets/font_f412fa13c4f48f7d25148a0e.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.090600px;}
.ls9{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.513600px;}
.ls8{letter-spacing:0.774000px;}
.lse{letter-spacing:29.466720px;}
.ls0{letter-spacing:1135.769760px;}
.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;}
}
.ws2{word-spacing:-33.300000px;}
.ws3{word-spacing:-33.030600px;}
.ws7{word-spacing:-15.714000px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.274000px;}
.wse{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-10.145520px;}
._8{margin-left:-6.685440px;}
._7{margin-left:-5.554800px;}
._6{margin-left:-3.501360px;}
._a{margin-left:-2.371680px;}
._1{margin-left:-1.135440px;}
._0{width:1.135440px;}
._2{width:2.647200px;}
._b{width:4.302720px;}
._19{width:5.310240px;}
._c{width:6.336240px;}
._e{width:7.649280px;}
._11{width:8.844480px;}
._10{width:10.577520px;}
._f{width:12.549600px;}
._17{width:13.704240px;}
._14{width:15.955920px;}
._d{width:17.330400px;}
._1c{width:18.346320px;}
._18{width:21.214800px;}
._1a{width:22.604880px;}
._15{width:24.895920px;}
._16{width:28.027440px;}
._13{width:39.735120px;}
._12{width:41.294160px;}
._4{width:105.269760px;}
._3{width:1048.649760px;}
._1b{width:1119.209760px;}
._5{width:1339.649760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:18.000000px;}
.y7{bottom:39.600000px;}
.y6{bottom:61.380000px;}
.y5{bottom:83.196000px;}
.y3a{bottom:111.096000px;}
.y8f{bottom:113.436000px;}
.y6f{bottom:114.336000px;}
.y39{bottom:129.096000px;}
.y8e{bottom:130.716000px;}
.y6e{bottom:131.616000px;}
.yb0{bottom:132.336000px;}
.y38{bottom:134.316000px;}
.y37{bottom:147.996000px;}
.y6d{bottom:148.716000px;}
.yaf{bottom:149.616000px;}
.y8d{bottom:165.270000px;}
.y6c{bottom:165.990000px;}
.yae{bottom:166.710000px;}
.y8c{bottom:182.550000px;}
.y7f{bottom:183.270000px;}
.yad{bottom:183.990000px;}
.y7e{bottom:200.550000px;}
.y6b{bottom:201.270000px;}
.y36{bottom:203.790000px;}
.y7d{bottom:217.830000px;}
.y6a{bottom:218.550000px;}
.y35{bottom:221.070000px;}
.y8b{bottom:235.110000px;}
.y69{bottom:235.830000px;}
.y34{bottom:238.350000px;}
.y8a{bottom:252.210000px;}
.y7c{bottom:252.930000px;}
.y68{bottom:253.110000px;}
.y33{bottom:255.450000px;}
.y67{bottom:270.210000px;}
.y32{bottom:272.730000px;}
.y66{bottom:287.490000px;}
.y31{bottom:290.010000px;}
.y65{bottom:304.770000px;}
.y30{bottom:307.290000px;}
.y89{bottom:322.050000px;}
.y2f{bottom:324.570000px;}
.y88{bottom:339.375000px;}
.y64{bottom:340.095000px;}
.y2e{bottom:341.895000px;}
.y87{bottom:356.475000px;}
.y63{bottom:357.375000px;}
.y2d{bottom:358.995000px;}
.y86{bottom:373.755000px;}
.y62{bottom:374.475000px;}
.y2c{bottom:376.275000px;}
.yac{bottom:391.035000px;}
.y61{bottom:391.755000px;}
.yab{bottom:408.315000px;}
.y60{bottom:409.035000px;}
.y2b{bottom:411.555000px;}
.yaa{bottom:425.595000px;}
.y5f{bottom:426.315000px;}
.y2a{bottom:428.835000px;}
.ya9{bottom:442.875000px;}
.y5e{bottom:443.595000px;}
.y29{bottom:446.115000px;}
.ya8{bottom:459.975000px;}
.y5d{bottom:460.875000px;}
.y7b{bottom:461.595000px;}
.y28{bottom:463.395000px;}
.ya7{bottom:477.255000px;}
.y85{bottom:478.695000px;}
.y7a{bottom:478.875000px;}
.y27{bottom:480.495000px;}
.ya6{bottom:494.535000px;}
.y5c{bottom:495.975000px;}
.y26{bottom:497.775000px;}
.y5b{bottom:513.255000px;}
.y25{bottom:515.055000px;}
.ya5{bottom:529.815000px;}
.y5a{bottom:530.535000px;}
.ya4{bottom:547.095000px;}
.y59{bottom:547.815000px;}
.y79{bottom:548.535000px;}
.y24{bottom:550.335000px;}
.ya3{bottom:564.375000px;}
.y58{bottom:565.095000px;}
.y78{bottom:565.815000px;}
.y23{bottom:567.615000px;}
.ya2{bottom:581.475000px;}
.y77{bottom:583.095000px;}
.y22{bottom:584.715000px;}
.y57{bottom:600.195000px;}
.y76{bottom:600.375000px;}
.y21{bottom:601.995000px;}
.ya1{bottom:616.785000px;}
.y56{bottom:617.505000px;}
.y20{bottom:619.305000px;}
.ya0{bottom:634.065000px;}
.y55{bottom:634.785000px;}
.y1f{bottom:636.585000px;}
.y9f{bottom:651.345000px;}
.y54{bottom:652.065000px;}
.y1e{bottom:653.865000px;}
.yc8{bottom:655.845000px;}
.y9e{bottom:668.625000px;}
.y53{bottom:669.345000px;}
.y84{bottom:670.065000px;}
.yc7{bottom:673.125000px;}
.y75{bottom:687.345000px;}
.yc6{bottom:688.605000px;}
.y1d{bottom:688.965000px;}
.y9d{bottom:703.725000px;}
.yc5{bottom:704.085000px;}
.y52{bottom:704.445000px;}
.y74{bottom:704.625000px;}
.y1c{bottom:706.245000px;}
.yc4{bottom:719.745000px;}
.y9c{bottom:721.005000px;}
.y51{bottom:721.725000px;}
.y1b{bottom:723.525000px;}
.yc3{bottom:736.845000px;}
.y9b{bottom:738.285000px;}
.y50{bottom:739.005000px;}
.y1a{bottom:740.805000px;}
.yc2{bottom:742.785000px;}
.y9a{bottom:755.565000px;}
.y4f{bottom:756.285000px;}
.yc9{bottom:757.005000px;}
.y19{bottom:758.085000px;}
.y99{bottom:772.845000px;}
.y4e{bottom:773.565000px;}
.yc1{bottom:775.725000px;}
.y83{bottom:790.845000px;}
.yc0{bottom:793.005000px;}
.y18{bottom:793.365000px;}
.y98{bottom:807.945000px;}
.y82{bottom:808.125000px;}
.y4d{bottom:808.845000px;}
.ybf{bottom:810.285000px;}
.y17{bottom:810.645000px;}
.y81{bottom:825.225000px;}
.y4c{bottom:826.125000px;}
.ybe{bottom:827.565000px;}
.y16{bottom:827.745000px;}
.y97{bottom:842.505000px;}
.y4b{bottom:843.225000px;}
.ybd{bottom:844.845000px;}
.y15{bottom:845.025000px;}
.y96{bottom:859.785000px;}
.y4a{bottom:860.505000px;}
.ybb{bottom:862.125000px;}
.y14{bottom:862.305000px;}
.ybc{bottom:867.345000px;}
.y95{bottom:877.110000px;}
.y49{bottom:877.830000px;}
.yba{bottom:879.270000px;}
.y13{bottom:879.630000px;}
.y94{bottom:894.390000px;}
.y48{bottom:895.110000px;}
.yb9{bottom:896.550000px;}
.y12{bottom:896.910000px;}
.y73{bottom:912.390000px;}
.yb8{bottom:913.830000px;}
.y11{bottom:926.070000px;}
.y93{bottom:929.490000px;}
.y72{bottom:929.670000px;}
.y47{bottom:930.390000px;}
.yb7{bottom:931.110000px;}
.y92{bottom:946.770000px;}
.y80{bottom:947.490000px;}
.y46{bottom:947.670000px;}
.yb6{bottom:948.390000px;}
.y10{bottom:956.670000px;}
.y91{bottom:964.050000px;}
.y45{bottom:964.770000px;}
.yb5{bottom:965.670000px;}
.yf{bottom:975.210000px;}
.y44{bottom:982.050000px;}
.yb4{bottom:982.770000px;}
.ye{bottom:994.290000px;}
.y43{bottom:999.330000px;}
.yb3{bottom:1000.050000px;}
.yc{bottom:1014.810000px;}
.y42{bottom:1016.610000px;}
.yb2{bottom:1017.330000px;}
.yd{bottom:1020.750000px;}
.y71{bottom:1033.890000px;}
.yb1{bottom:1034.610000px;}
.yb{bottom:1035.510000px;}
.y70{bottom:1051.170000px;}
.y41{bottom:1051.890000px;}
.ya{bottom:1065.030000px;}
.y90{bottom:1068.270000px;}
.y40{bottom:1069.170000px;}
.y3f{bottom:1086.270000px;}
.y9{bottom:1103.010000px;}
.y3e{bottom:1103.550000px;}
.y3d{bottom:1120.830000px;}
.y3c{bottom:1138.140000px;}
.y4{bottom:1138.320000px;}
.y3b{bottom:1156.680000px;}
.y3{bottom:1157.940000px;}
.y2{bottom:1176.300000px;}
.y1{bottom:1194.480000px;}
.h15{height:37.705078px;}
.h13{height:38.158594px;}
.hf{height:38.671172px;}
.h14{height:41.535703px;}
.h11{height:41.726953px;}
.h8{height:42.086250px;}
.h7{height:46.736719px;}
.he{height:48.496641px;}
.h16{height:52.998047px;}
.hd{height:58.621992px;}
.hb{height:58.651172px;}
.h10{height:59.439023px;}
.hc{height:60.226875px;}
.h2{height:61.189805px;}
.h12{height:61.423863px;}
.ha{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.757500px;}
.h4{height:92.965430px;}
.h6{height:96.508125px;}
.h5{height:132.789375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:108.035987px;}
.x17{left:110.375987px;}
.x11{left:112.895987px;}
.x13{left:129.275987px;}
.x9{left:131.975987px;}
.x6{left:150.509987px;}
.x14{left:162.029987px;}
.x2{left:165.449987px;}
.xa{left:203.789987px;}
.x7{left:214.589987px;}
.x15{left:248.249973px;}
.x16{left:250.949987px;}
.xf{left:268.769987px;}
.x1{left:315.614987px;}
.x10{left:324.074987px;}
.xc{left:368.534987px;}
.x8{left:371.954987px;}
.xb{left:446.474987px;}
.x12{left:476.564987px;}
.x5{left:480.704987px;}
.xd{left:519.404973px;}
.xe{left:524.624987px;}
.x3{left:635.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.080533pt;}
.ls9{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.456533pt;}
.ls8{letter-spacing:0.688000pt;}
.lse{letter-spacing:26.192640pt;}
.ls0{letter-spacing:1009.573120pt;}
.ws2{word-spacing:-29.600000pt;}
.ws3{word-spacing:-29.360533pt;}
.ws7{word-spacing:-13.968000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.688000pt;}
.wse{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-9.018240pt;}
._8{margin-left:-5.942613pt;}
._7{margin-left:-4.937600pt;}
._6{margin-left:-3.112320pt;}
._a{margin-left:-2.108160pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.009280pt;}
._2{width:2.353067pt;}
._b{width:3.824640pt;}
._19{width:4.720213pt;}
._c{width:5.632213pt;}
._e{width:6.799360pt;}
._11{width:7.861760pt;}
._10{width:9.402240pt;}
._f{width:11.155200pt;}
._17{width:12.181547pt;}
._14{width:14.183040pt;}
._d{width:15.404800pt;}
._1c{width:16.307840pt;}
._18{width:18.857600pt;}
._1a{width:20.093227pt;}
._15{width:22.129707pt;}
._16{width:24.913280pt;}
._13{width:35.320107pt;}
._12{width:36.705920pt;}
._4{width:93.573120pt;}
._3{width:932.133120pt;}
._1b{width:994.853120pt;}
._5{width:1190.799787pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:16.000000pt;}
.y7{bottom:35.200000pt;}
.y6{bottom:54.560000pt;}
.y5{bottom:73.952000pt;}
.y3a{bottom:98.752000pt;}
.y8f{bottom:100.832000pt;}
.y6f{bottom:101.632000pt;}
.y39{bottom:114.752000pt;}
.y8e{bottom:116.192000pt;}
.y6e{bottom:116.992000pt;}
.yb0{bottom:117.632000pt;}
.y38{bottom:119.392000pt;}
.y37{bottom:131.552000pt;}
.y6d{bottom:132.192000pt;}
.yaf{bottom:132.992000pt;}
.y8d{bottom:146.906667pt;}
.y6c{bottom:147.546667pt;}
.yae{bottom:148.186667pt;}
.y8c{bottom:162.266667pt;}
.y7f{bottom:162.906667pt;}
.yad{bottom:163.546667pt;}
.y7e{bottom:178.266667pt;}
.y6b{bottom:178.906667pt;}
.y36{bottom:181.146667pt;}
.y7d{bottom:193.626667pt;}
.y6a{bottom:194.266667pt;}
.y35{bottom:196.506667pt;}
.y8b{bottom:208.986667pt;}
.y69{bottom:209.626667pt;}
.y34{bottom:211.866667pt;}
.y8a{bottom:224.186667pt;}
.y7c{bottom:224.826667pt;}
.y68{bottom:224.986667pt;}
.y33{bottom:227.066667pt;}
.y67{bottom:240.186667pt;}
.y32{bottom:242.426667pt;}
.y66{bottom:255.546667pt;}
.y31{bottom:257.786667pt;}
.y65{bottom:270.906667pt;}
.y30{bottom:273.146667pt;}
.y89{bottom:286.266667pt;}
.y2f{bottom:288.506667pt;}
.y88{bottom:301.666667pt;}
.y64{bottom:302.306667pt;}
.y2e{bottom:303.906667pt;}
.y87{bottom:316.866667pt;}
.y63{bottom:317.666667pt;}
.y2d{bottom:319.106667pt;}
.y86{bottom:332.226667pt;}
.y62{bottom:332.866667pt;}
.y2c{bottom:334.466667pt;}
.yac{bottom:347.586667pt;}
.y61{bottom:348.226667pt;}
.yab{bottom:362.946667pt;}
.y60{bottom:363.586667pt;}
.y2b{bottom:365.826667pt;}
.yaa{bottom:378.306667pt;}
.y5f{bottom:378.946667pt;}
.y2a{bottom:381.186667pt;}
.ya9{bottom:393.666667pt;}
.y5e{bottom:394.306667pt;}
.y29{bottom:396.546667pt;}
.ya8{bottom:408.866667pt;}
.y5d{bottom:409.666667pt;}
.y7b{bottom:410.306667pt;}
.y28{bottom:411.906667pt;}
.ya7{bottom:424.226667pt;}
.y85{bottom:425.506667pt;}
.y7a{bottom:425.666667pt;}
.y27{bottom:427.106667pt;}
.ya6{bottom:439.586667pt;}
.y5c{bottom:440.866667pt;}
.y26{bottom:442.466667pt;}
.y5b{bottom:456.226667pt;}
.y25{bottom:457.826667pt;}
.ya5{bottom:470.946667pt;}
.y5a{bottom:471.586667pt;}
.ya4{bottom:486.306667pt;}
.y59{bottom:486.946667pt;}
.y79{bottom:487.586667pt;}
.y24{bottom:489.186667pt;}
.ya3{bottom:501.666667pt;}
.y58{bottom:502.306667pt;}
.y78{bottom:502.946667pt;}
.y23{bottom:504.546667pt;}
.ya2{bottom:516.866667pt;}
.y77{bottom:518.306667pt;}
.y22{bottom:519.746667pt;}
.y57{bottom:533.506667pt;}
.y76{bottom:533.666667pt;}
.y21{bottom:535.106667pt;}
.ya1{bottom:548.253333pt;}
.y56{bottom:548.893333pt;}
.y20{bottom:550.493333pt;}
.ya0{bottom:563.613333pt;}
.y55{bottom:564.253333pt;}
.y1f{bottom:565.853333pt;}
.y9f{bottom:578.973333pt;}
.y54{bottom:579.613333pt;}
.y1e{bottom:581.213333pt;}
.yc8{bottom:582.973333pt;}
.y9e{bottom:594.333333pt;}
.y53{bottom:594.973333pt;}
.y84{bottom:595.613333pt;}
.yc7{bottom:598.333333pt;}
.y75{bottom:610.973333pt;}
.yc6{bottom:612.093333pt;}
.y1d{bottom:612.413333pt;}
.y9d{bottom:625.533333pt;}
.yc5{bottom:625.853333pt;}
.y52{bottom:626.173333pt;}
.y74{bottom:626.333333pt;}
.y1c{bottom:627.773333pt;}
.yc4{bottom:639.773333pt;}
.y9c{bottom:640.893333pt;}
.y51{bottom:641.533333pt;}
.y1b{bottom:643.133333pt;}
.yc3{bottom:654.973333pt;}
.y9b{bottom:656.253333pt;}
.y50{bottom:656.893333pt;}
.y1a{bottom:658.493333pt;}
.yc2{bottom:660.253333pt;}
.y9a{bottom:671.613333pt;}
.y4f{bottom:672.253333pt;}
.yc9{bottom:672.893333pt;}
.y19{bottom:673.853333pt;}
.y99{bottom:686.973333pt;}
.y4e{bottom:687.613333pt;}
.yc1{bottom:689.533333pt;}
.y83{bottom:702.973333pt;}
.yc0{bottom:704.893333pt;}
.y18{bottom:705.213333pt;}
.y98{bottom:718.173333pt;}
.y82{bottom:718.333333pt;}
.y4d{bottom:718.973333pt;}
.ybf{bottom:720.253333pt;}
.y17{bottom:720.573333pt;}
.y81{bottom:733.533333pt;}
.y4c{bottom:734.333333pt;}
.ybe{bottom:735.613333pt;}
.y16{bottom:735.773333pt;}
.y97{bottom:748.893333pt;}
.y4b{bottom:749.533333pt;}
.ybd{bottom:750.973333pt;}
.y15{bottom:751.133333pt;}
.y96{bottom:764.253333pt;}
.y4a{bottom:764.893333pt;}
.ybb{bottom:766.333333pt;}
.y14{bottom:766.493333pt;}
.ybc{bottom:770.973333pt;}
.y95{bottom:779.653333pt;}
.y49{bottom:780.293333pt;}
.yba{bottom:781.573333pt;}
.y13{bottom:781.893333pt;}
.y94{bottom:795.013333pt;}
.y48{bottom:795.653333pt;}
.yb9{bottom:796.933333pt;}
.y12{bottom:797.253333pt;}
.y73{bottom:811.013333pt;}
.yb8{bottom:812.293333pt;}
.y11{bottom:823.173333pt;}
.y93{bottom:826.213333pt;}
.y72{bottom:826.373333pt;}
.y47{bottom:827.013333pt;}
.yb7{bottom:827.653333pt;}
.y92{bottom:841.573333pt;}
.y80{bottom:842.213333pt;}
.y46{bottom:842.373333pt;}
.yb6{bottom:843.013333pt;}
.y10{bottom:850.373333pt;}
.y91{bottom:856.933333pt;}
.y45{bottom:857.573333pt;}
.yb5{bottom:858.373333pt;}
.yf{bottom:866.853333pt;}
.y44{bottom:872.933333pt;}
.yb4{bottom:873.573333pt;}
.ye{bottom:883.813333pt;}
.y43{bottom:888.293333pt;}
.yb3{bottom:888.933333pt;}
.yc{bottom:902.053333pt;}
.y42{bottom:903.653333pt;}
.yb2{bottom:904.293333pt;}
.yd{bottom:907.333333pt;}
.y71{bottom:919.013333pt;}
.yb1{bottom:919.653333pt;}
.yb{bottom:920.453333pt;}
.y70{bottom:934.373333pt;}
.y41{bottom:935.013333pt;}
.ya{bottom:946.693333pt;}
.y90{bottom:949.573333pt;}
.y40{bottom:950.373333pt;}
.y3f{bottom:965.573333pt;}
.y9{bottom:980.453333pt;}
.y3e{bottom:980.933333pt;}
.y3d{bottom:996.293333pt;}
.y3c{bottom:1011.680000pt;}
.y4{bottom:1011.840000pt;}
.y3b{bottom:1028.160000pt;}
.y3{bottom:1029.280000pt;}
.y2{bottom:1045.600000pt;}
.y1{bottom:1061.760000pt;}
.h15{height:33.515625pt;}
.h13{height:33.918750pt;}
.hf{height:34.374375pt;}
.h14{height:36.920625pt;}
.h11{height:37.090625pt;}
.h8{height:37.410000pt;}
.h7{height:41.543750pt;}
.he{height:43.108125pt;}
.h16{height:47.109375pt;}
.hd{height:52.108438pt;}
.hb{height:52.134375pt;}
.h10{height:52.834688pt;}
.hc{height:53.535000pt;}
.h2{height:54.390938pt;}
.h12{height:54.598989pt;}
.ha{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.340000pt;}
.h4{height:82.635937pt;}
.h6{height:85.785000pt;}
.h5{height:118.035000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.031988pt;}
.x17{left:98.111988pt;}
.x11{left:100.351988pt;}
.x13{left:114.911988pt;}
.x9{left:117.311988pt;}
.x6{left:133.786655pt;}
.x14{left:144.026655pt;}
.x2{left:147.066655pt;}
.xa{left:181.146655pt;}
.x7{left:190.746655pt;}
.x15{left:220.666643pt;}
.x16{left:223.066655pt;}
.xf{left:238.906655pt;}
.x1{left:280.546655pt;}
.x10{left:288.066655pt;}
.xc{left:327.586655pt;}
.x8{left:330.626655pt;}
.xb{left:396.866655pt;}
.x12{left:423.613322pt;}
.x5{left:427.293322pt;}
.xd{left:461.693310pt;}
.xe{left:466.333322pt;}
.x3{left:565.053322pt;}
}




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