
    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_a76d3844ed23bab744eda46b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6cb71adc3a94cdc7bafa7ec4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1829d0f475931e7bf5ac0ecb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49e875b2789e3d0b63f64d3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.775879;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_c262aadbd92e2a5f1245ea44.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_952e055f4f9f45b0dcf24cf8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_913fed099092a4d84e4a8af1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_32a17783779b6686942cb5be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974121;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_ff839b27e7cfbe2047e117b8.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_945e46790c4603c3c533a7ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117188;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_ba0a6a032b9331045807524a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.031250;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_940d10ee1da1961b5ec099e2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949219;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.924000px;}
.ls1{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.774000px;}
.ls8{letter-spacing:1.080000px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws0{word-spacing:-59.706000px;}
.ws7{word-spacing:-16.020000px;}
.ws8{word-spacing:-15.714000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-4.813440px;}
._b{margin-left:-3.107520px;}
._7{margin-left:-2.091600px;}
._4{margin-left:-1.015920px;}
._0{width:1.075680px;}
._5{width:2.808720px;}
._3{width:3.884400px;}
._11{width:4.900320px;}
._6{width:5.916240px;}
._8{width:7.230960px;}
._a{width:8.605440px;}
._c{width:9.860400px;}
._15{width:10.936080px;}
._e{width:11.952000px;}
._d{width:13.326480px;}
._9{width:16.553520px;}
._18{width:17.868240px;}
._10{width:18.884160px;}
._f{width:20.198880px;}
._17{width:21.692880px;}
._16{width:23.007600px;}
._14{width:24.979680px;}
._13{width:26.055360px;}
._1f{width:29.282400px;}
._1e{width:30.417840px;}
._1c{width:34.182720px;}
._1d{width:41.234400px;}
._20{width:48.883680px;}
._1a{width:59.939280px;}
._1b{width:68.604480px;}
._19{width:85.875120px;}
._24{width:144.918000px;}
._21{width:186.391440px;}
._22{width:314.516880px;}
._26{width:344.337120px;}
._23{width:380.790720px;}
._25{width:382.703040px;}
._27{width:849.216000px;}
._2{width:1000.635600px;}
._1{width:1309.070400px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:62.991941px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.240000px;}
.y90{bottom:3.600000px;}
.y8c{bottom:20.520000px;}
.y92{bottom:20.700000px;}
.y8f{bottom:20.880000px;}
.ya0{bottom:95.040000px;}
.y9d{bottom:95.400000px;}
.y40{bottom:100.260000px;}
.yc1{bottom:104.940000px;}
.yba{bottom:105.120000px;}
.y9f{bottom:112.320000px;}
.y9c{bottom:112.680000px;}
.yde{bottom:117.180000px;}
.y3f{bottom:117.540000px;}
.yc0{bottom:122.220000px;}
.yb9{bottom:122.400000px;}
.y9b{bottom:129.960000px;}
.ydd{bottom:134.460000px;}
.y3e{bottom:134.820000px;}
.yb8{bottom:139.680000px;}
.ybf{bottom:142.740000px;}
.y9a{bottom:147.240000px;}
.y3b{bottom:152.100000px;}
.ydc{bottom:156.780000px;}
.yb7{bottom:156.960000px;}
.y99{bottom:164.550000px;}
.ybe{bottom:168.690000px;}
.y3a{bottom:169.410000px;}
.ydb{bottom:174.090000px;}
.yb6{bottom:174.270000px;}
.y9e{bottom:181.470000px;}
.y98{bottom:181.830000px;}
.y39{bottom:186.690000px;}
.yb5{bottom:191.370000px;}
.y97{bottom:198.930000px;}
.y38{bottom:203.790000px;}
.yb4{bottom:208.650000px;}
.y96{bottom:216.210000px;}
.y37{bottom:221.070000px;}
.yb3{bottom:225.930000px;}
.y95{bottom:233.490000px;}
.y36{bottom:238.350000px;}
.yda{bottom:243.030000px;}
.yb2{bottom:243.210000px;}
.y35{bottom:255.630000px;}
.yd9{bottom:260.310000px;}
.yb1{bottom:260.490000px;}
.y94{bottom:265.170000px;}
.y34{bottom:272.910000px;}
.yc3{bottom:277.410000px;}
.yd8{bottom:277.590000px;}
.yb0{bottom:277.770000px;}
.y33{bottom:290.190000px;}
.yaf{bottom:294.870000px;}
.y93{bottom:300.450000px;}
.y32{bottom:307.290000px;}
.yae{bottom:312.150000px;}
.yd7{bottom:317.190000px;}
.y31{bottom:324.570000px;}
.yad{bottom:329.430000px;}
.yd6{bottom:334.470000px;}
.y91{bottom:335.730000px;}
.y30{bottom:341.850000px;}
.yac{bottom:346.710000px;}
.yd5{bottom:351.750000px;}
.y2f{bottom:359.130000px;}
.yab{bottom:363.990000px;}
.yd4{bottom:369.030000px;}
.y8e{bottom:370.830000px;}
.y2e{bottom:376.410000px;}
.yaa{bottom:381.090000px;}
.yd3{bottom:386.310000px;}
.y2d{bottom:393.690000px;}
.ya9{bottom:398.370000px;}
.yd2{bottom:403.590000px;}
.y8b{bottom:406.155000px;}
.y2c{bottom:410.835000px;}
.ya8{bottom:415.695000px;}
.yd1{bottom:420.735000px;}
.y2b{bottom:428.115000px;}
.ya7{bottom:432.975000px;}
.yd0{bottom:438.015000px;}
.y3d{bottom:445.035000px;}
.y2a{bottom:445.395000px;}
.ya6{bottom:450.255000px;}
.ycf{bottom:460.515000px;}
.y6a{bottom:462.315000px;}
.y29{bottom:462.675000px;}
.ya5{bottom:467.535000px;}
.y8a{bottom:474.375000px;}
.yce{bottom:477.795000px;}
.y28{bottom:479.955000px;}
.y69{bottom:484.635000px;}
.y89{bottom:491.655000px;}
.ycd{bottom:494.895000px;}
.y27{bottom:497.055000px;}
.y68{bottom:501.915000px;}
.y88{bottom:508.935000px;}
.y26{bottom:514.335000px;}
.ycc{bottom:515.415000px;}
.y67{bottom:518.835000px;}
.ybd{bottom:519.195000px;}
.y87{bottom:526.035000px;}
.y25{bottom:531.615000px;}
.ya4{bottom:536.115000px;}
.y66{bottom:536.475000px;}
.ycb{bottom:538.095000px;}
.y86{bottom:542.955000px;}
.y24{bottom:548.895000px;}
.y65{bottom:553.755000px;}
.yca{bottom:555.375000px;}
.y85{bottom:560.235000px;}
.y23{bottom:566.175000px;}
.y64{bottom:571.035000px;}
.y84{bottom:577.515000px;}
.yc9{bottom:577.875000px;}
.y22{bottom:583.455000px;}
.y63{bottom:588.135000px;}
.y83{bottom:595.155000px;}
.y21{bottom:600.555000px;}
.y62{bottom:605.415000px;}
.y82{bottom:612.255000px;}
.y20{bottom:617.835000px;}
.y61{bottom:622.695000px;}
.y81{bottom:629.535000px;}
.y3c{bottom:634.755000px;}
.y1f{bottom:635.115000px;}
.y60{bottom:639.975000px;}
.y80{bottom:646.815000px;}
.y1e{bottom:652.065000px;}
.y5f{bottom:657.285000px;}
.y7f{bottom:664.125000px;}
.y1d{bottom:669.705000px;}
.y5e{bottom:674.385000px;}
.y7e{bottom:681.405000px;}
.y1c{bottom:686.985000px;}
.y5d{bottom:691.665000px;}
.y7d{bottom:698.685000px;}
.y1b{bottom:707.325000px;}
.ybc{bottom:708.585000px;}
.y5c{bottom:708.945000px;}
.y7c{bottom:715.785000px;}
.ybb{bottom:725.865000px;}
.y5b{bottom:726.225000px;}
.y1a{bottom:730.005000px;}
.y7b{bottom:733.065000px;}
.yc8{bottom:738.285000px;}
.y5a{bottom:743.505000px;}
.y19{bottom:747.285000px;}
.y7a{bottom:750.345000px;}
.yc7{bottom:755.565000px;}
.y59{bottom:760.785000px;}
.y18{bottom:764.565000px;}
.y79{bottom:767.625000px;}
.yc6{bottom:772.845000px;}
.y58{bottom:777.885000px;}
.y17{bottom:781.845000px;}
.y78{bottom:784.905000px;}
.yc5{bottom:790.125000px;}
.y57{bottom:795.165000px;}
.y16{bottom:799.125000px;}
.y77{bottom:807.225000px;}
.y56{bottom:812.445000px;}
.y15{bottom:816.405000px;}
.ye9{bottom:819.285000px;}
.y76{bottom:824.505000px;}
.y55{bottom:829.725000px;}
.y14{bottom:833.505000px;}
.ye4{bottom:836.565000px;}
.y75{bottom:841.785000px;}
.y54{bottom:847.005000px;}
.y13{bottom:850.785000px;}
.ye3{bottom:853.845000px;}
.y74{bottom:859.065000px;}
.ya3{bottom:863.925000px;}
.y53{bottom:864.285000px;}
.y12{bottom:868.065000px;}
.ye2{bottom:871.125000px;}
.y73{bottom:876.345000px;}
.y52{bottom:881.385000px;}
.y11{bottom:885.345000px;}
.ye1{bottom:888.405000px;}
.y72{bottom:893.445000px;}
.yc4{bottom:898.350000px;}
.y51{bottom:898.710000px;}
.y10{bottom:902.670000px;}
.ye8{bottom:905.730000px;}
.y71{bottom:910.770000px;}
.y50{bottom:915.990000px;}
.yf{bottom:919.950000px;}
.ye7{bottom:922.830000px;}
.y70{bottom:928.050000px;}
.yc2{bottom:932.910000px;}
.y4f{bottom:933.270000px;}
.ye{bottom:937.050000px;}
.y6f{bottom:945.330000px;}
.y4e{bottom:950.550000px;}
.yd{bottom:954.330000px;}
.y6e{bottom:962.610000px;}
.y4d{bottom:967.830000px;}
.yc{bottom:971.250000px;}
.y6d{bottom:979.890000px;}
.y4c{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y6c{bottom:996.990000px;}
.y4b{bottom:1002.210000px;}
.ya{bottom:1006.170000px;}
.y6b{bottom:1014.270000px;}
.ya2{bottom:1019.130000px;}
.y4a{bottom:1019.490000px;}
.y9{bottom:1023.450000px;}
.ye0{bottom:1031.550000px;}
.y49{bottom:1036.770000px;}
.y8{bottom:1040.550000px;}
.ydf{bottom:1048.830000px;}
.y48{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.ye6{bottom:1066.110000px;}
.y47{bottom:1071.150000px;}
.y6{bottom:1074.750000px;}
.ye5{bottom:1083.390000px;}
.y46{bottom:1088.430000px;}
.y45{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.y44{bottom:1122.990000px;}
.y4{bottom:1126.410000px;}
.y43{bottom:1140.270000px;}
.y3{bottom:1143.720000px;}
.y42{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.ya1{bottom:1174.320000px;}
.y41{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.hc{height:34.380000px;}
.ha{height:34.560000px;}
.hb{height:34.596000px;}
.h9{height:53.573906px;}
.h7{height:54.625824px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h8{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:107.460000px;}
.w6{width:120.276000px;}
.w5{width:121.176000px;}
.w4{width:156.450000px;}
.w3{width:174.960000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x1{left:106.415987px;}
.x4{left:117.575987px;}
.xc{left:141.695987px;}
.xd{left:201.629987px;}
.xe{left:216.569987px;}
.x2{left:277.949987px;}
.x12{left:281.370000px;}
.x5{left:360.074987px;}
.x13{left:437.835000px;}
.x9{left:450.434987px;}
.x10{left:457.274987px;}
.x3{left:461.414987px;}
.xf{left:492.584987px;}
.x8{left:519.404987px;}
.xa{left:537.944987px;}
.x7{left:555.404987px;}
.x14{left:559.005000px;}
.x16{left:599.324987px;}
.x15{left:679.290000px;}
.x6{left:710.069987px;}
.xb{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.821333pt;}
.ls1{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.688000pt;}
.ls8{letter-spacing:0.960000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws0{word-spacing:-53.072000pt;}
.ws7{word-spacing:-14.240000pt;}
.ws8{word-spacing:-13.968000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-4.278613pt;}
._b{margin-left:-2.762240pt;}
._7{margin-left:-1.859200pt;}
._4{margin-left:-0.903040pt;}
._0{width:0.956160pt;}
._5{width:2.496640pt;}
._3{width:3.452800pt;}
._11{width:4.355840pt;}
._6{width:5.258880pt;}
._8{width:6.427520pt;}
._a{width:7.649280pt;}
._c{width:8.764800pt;}
._15{width:9.720960pt;}
._e{width:10.624000pt;}
._d{width:11.845760pt;}
._9{width:14.714240pt;}
._18{width:15.882880pt;}
._10{width:16.785920pt;}
._f{width:17.954560pt;}
._17{width:19.282560pt;}
._16{width:20.451200pt;}
._14{width:22.204160pt;}
._13{width:23.160320pt;}
._1f{width:26.028800pt;}
._1e{width:27.038080pt;}
._1c{width:30.384640pt;}
._1d{width:36.652800pt;}
._20{width:43.452160pt;}
._1a{width:53.279360pt;}
._1b{width:60.981760pt;}
._19{width:76.333440pt;}
._24{width:128.816000pt;}
._21{width:165.681280pt;}
._22{width:279.570560pt;}
._26{width:306.077440pt;}
._23{width:338.480640pt;}
._25{width:340.180480pt;}
._27{width:754.858667pt;}
._2{width:889.453867pt;}
._1{width:1163.618133pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:55.992837pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.880000pt;}
.y90{bottom:3.200000pt;}
.y8c{bottom:18.240000pt;}
.y92{bottom:18.400000pt;}
.y8f{bottom:18.560000pt;}
.ya0{bottom:84.480000pt;}
.y9d{bottom:84.800000pt;}
.y40{bottom:89.120000pt;}
.yc1{bottom:93.280000pt;}
.yba{bottom:93.440000pt;}
.y9f{bottom:99.840000pt;}
.y9c{bottom:100.160000pt;}
.yde{bottom:104.160000pt;}
.y3f{bottom:104.480000pt;}
.yc0{bottom:108.640000pt;}
.yb9{bottom:108.800000pt;}
.y9b{bottom:115.520000pt;}
.ydd{bottom:119.520000pt;}
.y3e{bottom:119.840000pt;}
.yb8{bottom:124.160000pt;}
.ybf{bottom:126.880000pt;}
.y9a{bottom:130.880000pt;}
.y3b{bottom:135.200000pt;}
.ydc{bottom:139.360000pt;}
.yb7{bottom:139.520000pt;}
.y99{bottom:146.266667pt;}
.ybe{bottom:149.946667pt;}
.y3a{bottom:150.586667pt;}
.ydb{bottom:154.746667pt;}
.yb6{bottom:154.906667pt;}
.y9e{bottom:161.306667pt;}
.y98{bottom:161.626667pt;}
.y39{bottom:165.946667pt;}
.yb5{bottom:170.106667pt;}
.y97{bottom:176.826667pt;}
.y38{bottom:181.146667pt;}
.yb4{bottom:185.466667pt;}
.y96{bottom:192.186667pt;}
.y37{bottom:196.506667pt;}
.yb3{bottom:200.826667pt;}
.y95{bottom:207.546667pt;}
.y36{bottom:211.866667pt;}
.yda{bottom:216.026667pt;}
.yb2{bottom:216.186667pt;}
.y35{bottom:227.226667pt;}
.yd9{bottom:231.386667pt;}
.yb1{bottom:231.546667pt;}
.y94{bottom:235.706667pt;}
.y34{bottom:242.586667pt;}
.yc3{bottom:246.586667pt;}
.yd8{bottom:246.746667pt;}
.yb0{bottom:246.906667pt;}
.y33{bottom:257.946667pt;}
.yaf{bottom:262.106667pt;}
.y93{bottom:267.066667pt;}
.y32{bottom:273.146667pt;}
.yae{bottom:277.466667pt;}
.yd7{bottom:281.946667pt;}
.y31{bottom:288.506667pt;}
.yad{bottom:292.826667pt;}
.yd6{bottom:297.306667pt;}
.y91{bottom:298.426667pt;}
.y30{bottom:303.866667pt;}
.yac{bottom:308.186667pt;}
.yd5{bottom:312.666667pt;}
.y2f{bottom:319.226667pt;}
.yab{bottom:323.546667pt;}
.yd4{bottom:328.026667pt;}
.y8e{bottom:329.626667pt;}
.y2e{bottom:334.586667pt;}
.yaa{bottom:338.746667pt;}
.yd3{bottom:343.386667pt;}
.y2d{bottom:349.946667pt;}
.ya9{bottom:354.106667pt;}
.yd2{bottom:358.746667pt;}
.y8b{bottom:361.026667pt;}
.y2c{bottom:365.186667pt;}
.ya8{bottom:369.506667pt;}
.yd1{bottom:373.986667pt;}
.y2b{bottom:380.546667pt;}
.ya7{bottom:384.866667pt;}
.yd0{bottom:389.346667pt;}
.y3d{bottom:395.586667pt;}
.y2a{bottom:395.906667pt;}
.ya6{bottom:400.226667pt;}
.ycf{bottom:409.346667pt;}
.y6a{bottom:410.946667pt;}
.y29{bottom:411.266667pt;}
.ya5{bottom:415.586667pt;}
.y8a{bottom:421.666667pt;}
.yce{bottom:424.706667pt;}
.y28{bottom:426.626667pt;}
.y69{bottom:430.786667pt;}
.y89{bottom:437.026667pt;}
.ycd{bottom:439.906667pt;}
.y27{bottom:441.826667pt;}
.y68{bottom:446.146667pt;}
.y88{bottom:452.386667pt;}
.y26{bottom:457.186667pt;}
.ycc{bottom:458.146667pt;}
.y67{bottom:461.186667pt;}
.ybd{bottom:461.506667pt;}
.y87{bottom:467.586667pt;}
.y25{bottom:472.546667pt;}
.ya4{bottom:476.546667pt;}
.y66{bottom:476.866667pt;}
.ycb{bottom:478.306667pt;}
.y86{bottom:482.626667pt;}
.y24{bottom:487.906667pt;}
.y65{bottom:492.226667pt;}
.yca{bottom:493.666667pt;}
.y85{bottom:497.986667pt;}
.y23{bottom:503.266667pt;}
.y64{bottom:507.586667pt;}
.y84{bottom:513.346667pt;}
.yc9{bottom:513.666667pt;}
.y22{bottom:518.626667pt;}
.y63{bottom:522.786667pt;}
.y83{bottom:529.026667pt;}
.y21{bottom:533.826667pt;}
.y62{bottom:538.146667pt;}
.y82{bottom:544.226667pt;}
.y20{bottom:549.186667pt;}
.y61{bottom:553.506667pt;}
.y81{bottom:559.586667pt;}
.y3c{bottom:564.226667pt;}
.y1f{bottom:564.546667pt;}
.y60{bottom:568.866667pt;}
.y80{bottom:574.946667pt;}
.y1e{bottom:579.613333pt;}
.y5f{bottom:584.253333pt;}
.y7f{bottom:590.333333pt;}
.y1d{bottom:595.293333pt;}
.y5e{bottom:599.453333pt;}
.y7e{bottom:605.693333pt;}
.y1c{bottom:610.653333pt;}
.y5d{bottom:614.813333pt;}
.y7d{bottom:621.053333pt;}
.y1b{bottom:628.733333pt;}
.ybc{bottom:629.853333pt;}
.y5c{bottom:630.173333pt;}
.y7c{bottom:636.253333pt;}
.ybb{bottom:645.213333pt;}
.y5b{bottom:645.533333pt;}
.y1a{bottom:648.893333pt;}
.y7b{bottom:651.613333pt;}
.yc8{bottom:656.253333pt;}
.y5a{bottom:660.893333pt;}
.y19{bottom:664.253333pt;}
.y7a{bottom:666.973333pt;}
.yc7{bottom:671.613333pt;}
.y59{bottom:676.253333pt;}
.y18{bottom:679.613333pt;}
.y79{bottom:682.333333pt;}
.yc6{bottom:686.973333pt;}
.y58{bottom:691.453333pt;}
.y17{bottom:694.973333pt;}
.y78{bottom:697.693333pt;}
.yc5{bottom:702.333333pt;}
.y57{bottom:706.813333pt;}
.y16{bottom:710.333333pt;}
.y77{bottom:717.533333pt;}
.y56{bottom:722.173333pt;}
.y15{bottom:725.693333pt;}
.ye9{bottom:728.253333pt;}
.y76{bottom:732.893333pt;}
.y55{bottom:737.533333pt;}
.y14{bottom:740.893333pt;}
.ye4{bottom:743.613333pt;}
.y75{bottom:748.253333pt;}
.y54{bottom:752.893333pt;}
.y13{bottom:756.253333pt;}
.ye3{bottom:758.973333pt;}
.y74{bottom:763.613333pt;}
.ya3{bottom:767.933333pt;}
.y53{bottom:768.253333pt;}
.y12{bottom:771.613333pt;}
.ye2{bottom:774.333333pt;}
.y73{bottom:778.973333pt;}
.y52{bottom:783.453333pt;}
.y11{bottom:786.973333pt;}
.ye1{bottom:789.693333pt;}
.y72{bottom:794.173333pt;}
.yc4{bottom:798.533333pt;}
.y51{bottom:798.853333pt;}
.y10{bottom:802.373333pt;}
.ye8{bottom:805.093333pt;}
.y71{bottom:809.573333pt;}
.y50{bottom:814.213333pt;}
.yf{bottom:817.733333pt;}
.ye7{bottom:820.293333pt;}
.y70{bottom:824.933333pt;}
.yc2{bottom:829.253333pt;}
.y4f{bottom:829.573333pt;}
.ye{bottom:832.933333pt;}
.y6f{bottom:840.293333pt;}
.y4e{bottom:844.933333pt;}
.yd{bottom:848.293333pt;}
.y6e{bottom:855.653333pt;}
.y4d{bottom:860.293333pt;}
.yc{bottom:863.333333pt;}
.y6d{bottom:871.013333pt;}
.y4c{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y6c{bottom:886.213333pt;}
.y4b{bottom:890.853333pt;}
.ya{bottom:894.373333pt;}
.y6b{bottom:901.573333pt;}
.ya2{bottom:905.893333pt;}
.y4a{bottom:906.213333pt;}
.y9{bottom:909.733333pt;}
.ye0{bottom:916.933333pt;}
.y49{bottom:921.573333pt;}
.y8{bottom:924.933333pt;}
.ydf{bottom:932.293333pt;}
.y48{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.ye6{bottom:947.653333pt;}
.y47{bottom:952.133333pt;}
.y6{bottom:955.333333pt;}
.ye5{bottom:963.013333pt;}
.y46{bottom:967.493333pt;}
.y45{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.y44{bottom:998.213333pt;}
.y4{bottom:1001.253333pt;}
.y43{bottom:1013.573333pt;}
.y3{bottom:1016.640000pt;}
.y42{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.ya1{bottom:1043.840000pt;}
.y41{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.hc{height:30.560000pt;}
.ha{height:30.720000pt;}
.hb{height:30.752000pt;}
.h9{height:47.621250pt;}
.h7{height:48.556288pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h8{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:95.520000pt;}
.w6{width:106.912000pt;}
.w5{width:107.712000pt;}
.w4{width:139.066667pt;}
.w3{width:155.520000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x1{left:94.591988pt;}
.x4{left:104.511988pt;}
.xc{left:125.951988pt;}
.xd{left:179.226655pt;}
.xe{left:192.506655pt;}
.x2{left:247.066655pt;}
.x12{left:250.106667pt;}
.x5{left:320.066655pt;}
.x13{left:389.186667pt;}
.x9{left:400.386655pt;}
.x10{left:406.466655pt;}
.x3{left:410.146655pt;}
.xf{left:437.853322pt;}
.x8{left:461.693322pt;}
.xa{left:478.173322pt;}
.x7{left:493.693322pt;}
.x14{left:496.893333pt;}
.x16{left:532.733322pt;}
.x15{left:603.813333pt;}
.x6{left:631.173322pt;}
.xb{left:699.333322pt;}
}




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