
    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_cf37e7e7e2c11a6d7dfee029.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_272631fe5c46e24753f51ec5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_06486a95bc6fcefb30c2ecb5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_ea0f47e4acfaa773ab12a924.woff')format("woff");}.ff4{font-family:ff4;line-height:0.920410;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_c1d74a76429b6da769d0e16f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_9874142b3df1b218eb4d062e.woff')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_8f6d2dc1459445151da81443.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.288000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.152000px;}
.ls4{letter-spacing:2.880000px;}
.lsa{letter-spacing:12.240000px;}
.ls9{letter-spacing:194.376000px;}
.ls3{letter-spacing:1040.340000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-14.400000px;}
._23{margin-left:-5.292480px;}
._15{margin-left:-4.242960px;}
._14{margin-left:-3.227040px;}
._16{margin-left:-2.127360px;}
._1{margin-left:-1.014720px;}
._0{width:1.434240px;}
._4{width:3.384000px;}
._5{width:4.613760px;}
._3{width:6.246720px;}
._c{width:7.289280px;}
._d{width:8.395200px;}
._10{width:9.532800px;}
._17{width:10.744320px;}
._13{width:11.880000px;}
._7{width:12.960000px;}
._8{width:14.189760px;}
._12{width:15.624960px;}
._24{width:16.680000px;}
._25{width:19.070880px;}
._6{width:20.232000px;}
._1a{width:22.200000px;}
._9{width:23.232000px;}
._a{width:24.389760px;}
._b{width:25.704000px;}
._1d{width:27.216000px;}
._1f{width:28.826400px;}
._20{width:30.888000px;}
._11{width:33.008160px;}
._e{width:34.104000px;}
._f{width:35.147520px;}
._1b{width:36.504000px;}
._1c{width:38.243520px;}
._1e{width:39.444480px;}
._27{width:40.968000px;}
._26{width:55.416000px;}
._28{width:71.241120px;}
._22{width:73.416000px;}
._21{width:194.376000px;}
._2{width:327.836160px;}
._18{width:329.242560px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,102,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:12.420000px;}
.y3{bottom:47.700000px;}
.y2{bottom:84.960000px;}
.y3c{bottom:103.320000px;}
.ya8{bottom:104.580000px;}
.y3b{bottom:116.820000px;}
.yc9{bottom:120.060000px;}
.y8d{bottom:120.600000px;}
.ye9{bottom:124.740000px;}
.ycf{bottom:125.280000px;}
.ya7{bottom:135.576000px;}
.y8c{bottom:137.916000px;}
.ye8{bottom:145.476000px;}
.yc8{bottom:151.050000px;}
.y8b{bottom:155.190000px;}
.yce{bottom:156.270000px;}
.y3a{bottom:161.130000px;}
.ye7{bottom:166.170000px;}
.ya6{bottom:166.710000px;}
.y8a{bottom:172.470000px;}
.y39{bottom:178.050000px;}
.yc7{bottom:182.190000px;}
.ye6{bottom:186.870000px;}
.y62{bottom:187.410000px;}
.y89{bottom:189.570000px;}
.y88{bottom:194.790000px;}
.y38{bottom:195.330000px;}
.ya5{bottom:197.670000px;}
.y87{bottom:206.850000px;}
.ye5{bottom:207.570000px;}
.y37{bottom:212.610000px;}
.yc6{bottom:213.150000px;}
.y61{bottom:218.370000px;}
.y86{bottom:224.130000px;}
.ye4{bottom:228.270000px;}
.ya4{bottom:228.810000px;}
.y36{bottom:229.710000px;}
.y85{bottom:241.410000px;}
.yc5{bottom:244.290000px;}
.y35{bottom:247.350000px;}
.y101{bottom:247.530000px;}
.ye3{bottom:248.970000px;}
.y60{bottom:249.510000px;}
.y84{bottom:258.690000px;}
.ya3{bottom:259.770000px;}
.y34{bottom:264.630000px;}
.ye2{bottom:269.670000px;}
.yc4{bottom:275.250000px;}
.y83{bottom:275.970000px;}
.y5f{bottom:280.470000px;}
.y33{bottom:281.910000px;}
.y100{bottom:289.290000px;}
.ye1{bottom:290.370000px;}
.ya2{bottom:290.910000px;}
.y82{bottom:293.070000px;}
.y81{bottom:298.290000px;}
.y32{bottom:299.190000px;}
.yc3{bottom:306.390000px;}
.y80{bottom:311.070000px;}
.yd1{bottom:311.250000px;}
.y5e{bottom:311.610000px;}
.y31{bottom:316.470000px;}
.ya1{bottom:321.870000px;}
.yff{bottom:330.870000px;}
.ye0{bottom:331.770000px;}
.y30{bottom:333.570000px;}
.yc2{bottom:337.350000px;}
.y2f{bottom:338.790000px;}
.yd0{bottom:342.210000px;}
.y5d{bottom:342.570000px;}
.y2e{bottom:350.850000px;}
.ydf{bottom:352.470000px;}
.ya0{bottom:353.010000px;}
.y2d{bottom:368.130000px;}
.yc1{bottom:368.490000px;}
.yfe{bottom:372.630000px;}
.yde{bottom:373.170000px;}
.y5c{bottom:373.710000px;}
.y7f{bottom:380.550000px;}
.y9f{bottom:384.015000px;}
.y2c{bottom:385.455000px;}
.y2b{bottom:390.675000px;}
.yfd{bottom:393.375000px;}
.ydd{bottom:393.915000px;}
.yc0{bottom:399.495000px;}
.y2a{bottom:403.455000px;}
.y5b{bottom:404.715000px;}
.y7e{bottom:411.555000px;}
.yfc{bottom:414.075000px;}
.ydc{bottom:414.615000px;}
.y9e{bottom:415.155000px;}
.y29{bottom:429.015000px;}
.ybf{bottom:430.635000px;}
.yfb{bottom:434.775000px;}
.ydb{bottom:435.315000px;}
.y5a{bottom:435.855000px;}
.y7d{bottom:442.695000px;}
.y9d{bottom:446.115000px;}
.y28{bottom:449.715000px;}
.ybe{bottom:451.155000px;}
.yfa{bottom:455.475000px;}
.y59{bottom:466.815000px;}
.y27{bottom:470.415000px;}
.y7c{bottom:473.655000px;}
.yf9{bottom:476.175000px;}
.yda{bottom:477.075000px;}
.y9c{bottom:477.255000px;}
.ybd{bottom:481.935000px;}
.y26{bottom:491.115000px;}
.yf8{bottom:496.875000px;}
.y58{bottom:497.955000px;}
.ybc{bottom:503.175000px;}
.y7b{bottom:504.795000px;}
.y9b{bottom:508.215000px;}
.y25{bottom:511.815000px;}
.yd9{bottom:518.835000px;}
.y57{bottom:528.915000px;}
.y24{bottom:532.515000px;}
.ybb{bottom:534.135000px;}
.y7a{bottom:535.755000px;}
.yf7{bottom:538.455000px;}
.y9a{bottom:539.355000px;}
.yd8{bottom:539.535000px;}
.y23{bottom:553.215000px;}
.y56{bottom:560.055000px;}
.yd7{bottom:560.235000px;}
.yba{bottom:565.095000px;}
.y78{bottom:566.895000px;}
.y99{bottom:570.315000px;}
.y79{bottom:573.735000px;}
.y22{bottom:573.915000px;}
.yf6{bottom:580.215000px;}
.yd6{bottom:580.935000px;}
.ycd{bottom:591.015000px;}
.y21{bottom:594.615000px;}
.yb9{bottom:596.235000px;}
.y77{bottom:597.855000px;}
.yf5{bottom:600.915000px;}
.y98{bottom:601.275000px;}
.yd5{bottom:601.455000px;}
.y55{bottom:611.535000px;}
.y20{bottom:615.315000px;}
.y76{bottom:618.015000px;}
.yf4{bottom:621.615000px;}
.ycc{bottom:621.975000px;}
.yd4{bottom:622.155000px;}
.yb8{bottom:627.195000px;}
.y97{bottom:632.415000px;}
.y75{bottom:635.295000px;}
.y1f{bottom:636.045000px;}
.y54{bottom:642.345000px;}
.yd3{bottom:642.885000px;}
.y74{bottom:652.605000px;}
.ycb{bottom:653.145000px;}
.y1e{bottom:656.745000px;}
.yb7{bottom:658.365000px;}
.yf3{bottom:663.045000px;}
.y53{bottom:663.585000px;}
.y73{bottom:669.885000px;}
.y1d{bottom:677.445000px;}
.yf2{bottom:683.745000px;}
.yca{bottom:684.105000px;}
.y52{bottom:684.285000px;}
.y72{bottom:686.985000px;}
.yb6{bottom:689.325000px;}
.y1c{bottom:698.145000px;}
.y96{bottom:704.265000px;}
.yf1{bottom:704.445000px;}
.y51{bottom:704.985000px;}
.y71{bottom:715.245000px;}
.y1b{bottom:718.845000px;}
.yb5{bottom:720.465000px;}
.y95{bottom:721.545000px;}
.yf0{bottom:725.145000px;}
.y50{bottom:725.685000px;}
.y94{bottom:738.825000px;}
.y1a{bottom:739.545000px;}
.yef{bottom:745.845000px;}
.yd2{bottom:746.025000px;}
.y70{bottom:746.205000px;}
.y4f{bottom:746.385000px;}
.yb4{bottom:751.425000px;}
.y93{bottom:756.105000px;}
.y19{bottom:760.245000px;}
.yee{bottom:766.545000px;}
.y4e{bottom:767.085000px;}
.y92{bottom:773.385000px;}
.y6f{bottom:777.345000px;}
.y18{bottom:780.945000px;}
.yb3{bottom:782.565000px;}
.yed{bottom:787.245000px;}
.y4d{bottom:787.785000px;}
.y91{bottom:790.485000px;}
.y17{bottom:801.645000px;}
.y90{bottom:807.765000px;}
.y6e{bottom:808.305000px;}
.y4c{bottom:808.485000px;}
.yb2{bottom:811.185000px;}
.y16{bottom:822.345000px;}
.y8f{bottom:825.045000px;}
.yb1{bottom:828.465000px;}
.yec{bottom:829.005000px;}
.y4b{bottom:829.185000px;}
.y6d{bottom:839.445000px;}
.y8e{bottom:842.325000px;}
.y15{bottom:843.045000px;}
.yb0{bottom:845.745000px;}
.yeb{bottom:849.525000px;}
.y4a{bottom:849.885000px;}
.yaf{bottom:863.025000px;}
.y14{bottom:863.745000px;}
.y6c{bottom:870.405000px;}
.y49{bottom:870.585000px;}
.yae{bottom:880.305000px;}
.y13{bottom:884.445000px;}
.y48{bottom:891.330000px;}
.yad{bottom:897.630000px;}
.y6b{bottom:901.590000px;}
.y4{bottom:903.210000px;}
.y12{bottom:905.190000px;}
.y47{bottom:912.030000px;}
.yac{bottom:914.730000px;}
.y10{bottom:925.530000px;}
.y11{bottom:931.470000px;}
.yab{bottom:932.010000px;}
.y6a{bottom:932.550000px;}
.y46{bottom:932.730000px;}
.ye{bottom:946.230000px;}
.yaa{bottom:949.290000px;}
.yf{bottom:952.170000px;}
.y45{bottom:953.430000px;}
.y69{bottom:963.690000px;}
.ya9{bottom:966.570000px;}
.yc{bottom:966.930000px;}
.yd{bottom:972.870000px;}
.y44{bottom:974.130000px;}
.yb{bottom:987.990000px;}
.y68{bottom:994.650000px;}
.y43{bottom:994.830000px;}
.y42{bottom:1015.530000px;}
.y67{bottom:1025.790000px;}
.ya{bottom:1029.030000px;}
.y41{bottom:1036.230000px;}
.y9{bottom:1049.730000px;}
.y66{bottom:1056.750000px;}
.y40{bottom:1056.930000px;}
.y8{bottom:1070.430000px;}
.y3f{bottom:1077.270000px;}
.yea{bottom:1077.630000px;}
.y64{bottom:1087.890000px;}
.y7{bottom:1091.670000px;}
.y65{bottom:1094.730000px;}
.y3e{bottom:1098.330000px;}
.y6{bottom:1115.790000px;}
.y63{bottom:1118.850000px;}
.y3d{bottom:1119.030000px;}
.y1{bottom:1140.630000px;}
.h4{height:29.160000px;}
.h9{height:38.158594px;}
.hb{height:47.344922px;}
.h8{height:48.616875px;}
.hd{height:53.573906px;}
.ha{height:58.651172px;}
.h3{height:60.226875px;}
.hc{height:64.546875px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:84.898125px;}
.h7{height:105.996094px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.960000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x10{left:132.515987px;}
.x7{left:133.595987px;}
.x4{left:141.875987px;}
.x12{left:180.749987px;}
.x11{left:231.149987px;}
.x15{left:297.794987px;}
.xf{left:343.694987px;}
.x5{left:346.034987px;}
.x8{left:394.274987px;}
.x13{left:416.984973px;}
.x14{left:423.104987px;}
.x6{left:467.924987px;}
.xe{left:478.544987px;}
.xc{left:559.904987px;}
.xd{left:596.489987px;}
.xa{left:606.929987px;}
.x16{left:665.969973px;}
.x17{left:672.089987px;}
.x1{left:799.559987px;}
.xb{left:802.079973px;}
.x9{left:808.199987px;}
.x3{left:830.700000px;}
@media print{
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls4{letter-spacing:2.560000pt;}
.lsa{letter-spacing:10.880000pt;}
.ls9{letter-spacing:172.778667pt;}
.ls3{letter-spacing:924.746667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-12.800000pt;}
._23{margin-left:-4.704427pt;}
._15{margin-left:-3.771520pt;}
._14{margin-left:-2.868480pt;}
._16{margin-left:-1.890987pt;}
._1{margin-left:-0.901973pt;}
._0{width:1.274880pt;}
._4{width:3.008000pt;}
._5{width:4.101120pt;}
._3{width:5.552640pt;}
._c{width:6.479360pt;}
._d{width:7.462400pt;}
._10{width:8.473600pt;}
._17{width:9.550507pt;}
._13{width:10.560000pt;}
._7{width:11.520000pt;}
._8{width:12.613120pt;}
._12{width:13.888853pt;}
._24{width:14.826667pt;}
._25{width:16.951893pt;}
._6{width:17.984000pt;}
._1a{width:19.733333pt;}
._9{width:20.650667pt;}
._a{width:21.679787pt;}
._b{width:22.848000pt;}
._1d{width:24.192000pt;}
._1f{width:25.623467pt;}
._20{width:27.456000pt;}
._11{width:29.340587pt;}
._e{width:30.314667pt;}
._f{width:31.242240pt;}
._1b{width:32.448000pt;}
._1c{width:33.994240pt;}
._1e{width:35.061760pt;}
._27{width:36.416000pt;}
._26{width:49.258667pt;}
._28{width:63.325440pt;}
._22{width:65.258667pt;}
._21{width:172.778667pt;}
._2{width:291.409920pt;}
._18{width:292.660053pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:11.040000pt;}
.y3{bottom:42.400000pt;}
.y2{bottom:75.520000pt;}
.y3c{bottom:91.840000pt;}
.ya8{bottom:92.960000pt;}
.y3b{bottom:103.840000pt;}
.yc9{bottom:106.720000pt;}
.y8d{bottom:107.200000pt;}
.ye9{bottom:110.880000pt;}
.ycf{bottom:111.360000pt;}
.ya7{bottom:120.512000pt;}
.y8c{bottom:122.592000pt;}
.ye8{bottom:129.312000pt;}
.yc8{bottom:134.266667pt;}
.y8b{bottom:137.946667pt;}
.yce{bottom:138.906667pt;}
.y3a{bottom:143.226667pt;}
.ye7{bottom:147.706667pt;}
.ya6{bottom:148.186667pt;}
.y8a{bottom:153.306667pt;}
.y39{bottom:158.266667pt;}
.yc7{bottom:161.946667pt;}
.ye6{bottom:166.106667pt;}
.y62{bottom:166.586667pt;}
.y89{bottom:168.506667pt;}
.y88{bottom:173.146667pt;}
.y38{bottom:173.626667pt;}
.ya5{bottom:175.706667pt;}
.y87{bottom:183.866667pt;}
.ye5{bottom:184.506667pt;}
.y37{bottom:188.986667pt;}
.yc6{bottom:189.466667pt;}
.y61{bottom:194.106667pt;}
.y86{bottom:199.226667pt;}
.ye4{bottom:202.906667pt;}
.ya4{bottom:203.386667pt;}
.y36{bottom:204.186667pt;}
.y85{bottom:214.586667pt;}
.yc5{bottom:217.146667pt;}
.y35{bottom:219.866667pt;}
.y101{bottom:220.026667pt;}
.ye3{bottom:221.306667pt;}
.y60{bottom:221.786667pt;}
.y84{bottom:229.946667pt;}
.ya3{bottom:230.906667pt;}
.y34{bottom:235.226667pt;}
.ye2{bottom:239.706667pt;}
.yc4{bottom:244.666667pt;}
.y83{bottom:245.306667pt;}
.y5f{bottom:249.306667pt;}
.y33{bottom:250.586667pt;}
.y100{bottom:257.146667pt;}
.ye1{bottom:258.106667pt;}
.ya2{bottom:258.586667pt;}
.y82{bottom:260.506667pt;}
.y81{bottom:265.146667pt;}
.y32{bottom:265.946667pt;}
.yc3{bottom:272.346667pt;}
.y80{bottom:276.506667pt;}
.yd1{bottom:276.666667pt;}
.y5e{bottom:276.986667pt;}
.y31{bottom:281.306667pt;}
.ya1{bottom:286.106667pt;}
.yff{bottom:294.106667pt;}
.ye0{bottom:294.906667pt;}
.y30{bottom:296.506667pt;}
.yc2{bottom:299.866667pt;}
.y2f{bottom:301.146667pt;}
.yd0{bottom:304.186667pt;}
.y5d{bottom:304.506667pt;}
.y2e{bottom:311.866667pt;}
.ydf{bottom:313.306667pt;}
.ya0{bottom:313.786667pt;}
.y2d{bottom:327.226667pt;}
.yc1{bottom:327.546667pt;}
.yfe{bottom:331.226667pt;}
.yde{bottom:331.706667pt;}
.y5c{bottom:332.186667pt;}
.y7f{bottom:338.266667pt;}
.y9f{bottom:341.346667pt;}
.y2c{bottom:342.626667pt;}
.y2b{bottom:347.266667pt;}
.yfd{bottom:349.666667pt;}
.ydd{bottom:350.146667pt;}
.yc0{bottom:355.106667pt;}
.y2a{bottom:358.626667pt;}
.y5b{bottom:359.746667pt;}
.y7e{bottom:365.826667pt;}
.yfc{bottom:368.066667pt;}
.ydc{bottom:368.546667pt;}
.y9e{bottom:369.026667pt;}
.y29{bottom:381.346667pt;}
.ybf{bottom:382.786667pt;}
.yfb{bottom:386.466667pt;}
.ydb{bottom:386.946667pt;}
.y5a{bottom:387.426667pt;}
.y7d{bottom:393.506667pt;}
.y9d{bottom:396.546667pt;}
.y28{bottom:399.746667pt;}
.ybe{bottom:401.026667pt;}
.yfa{bottom:404.866667pt;}
.y59{bottom:414.946667pt;}
.y27{bottom:418.146667pt;}
.y7c{bottom:421.026667pt;}
.yf9{bottom:423.266667pt;}
.yda{bottom:424.066667pt;}
.y9c{bottom:424.226667pt;}
.ybd{bottom:428.386667pt;}
.y26{bottom:436.546667pt;}
.yf8{bottom:441.666667pt;}
.y58{bottom:442.626667pt;}
.ybc{bottom:447.266667pt;}
.y7b{bottom:448.706667pt;}
.y9b{bottom:451.746667pt;}
.y25{bottom:454.946667pt;}
.yd9{bottom:461.186667pt;}
.y57{bottom:470.146667pt;}
.y24{bottom:473.346667pt;}
.ybb{bottom:474.786667pt;}
.y7a{bottom:476.226667pt;}
.yf7{bottom:478.626667pt;}
.y9a{bottom:479.426667pt;}
.yd8{bottom:479.586667pt;}
.y23{bottom:491.746667pt;}
.y56{bottom:497.826667pt;}
.yd7{bottom:497.986667pt;}
.yba{bottom:502.306667pt;}
.y78{bottom:503.906667pt;}
.y99{bottom:506.946667pt;}
.y79{bottom:509.986667pt;}
.y22{bottom:510.146667pt;}
.yf6{bottom:515.746667pt;}
.yd6{bottom:516.386667pt;}
.ycd{bottom:525.346667pt;}
.y21{bottom:528.546667pt;}
.yb9{bottom:529.986667pt;}
.y77{bottom:531.426667pt;}
.yf5{bottom:534.146667pt;}
.y98{bottom:534.466667pt;}
.yd5{bottom:534.626667pt;}
.y55{bottom:543.586667pt;}
.y20{bottom:546.946667pt;}
.y76{bottom:549.346667pt;}
.yf4{bottom:552.546667pt;}
.ycc{bottom:552.866667pt;}
.yd4{bottom:553.026667pt;}
.yb8{bottom:557.506667pt;}
.y97{bottom:562.146667pt;}
.y75{bottom:564.706667pt;}
.y1f{bottom:565.373333pt;}
.y54{bottom:570.973333pt;}
.yd3{bottom:571.453333pt;}
.y74{bottom:580.093333pt;}
.ycb{bottom:580.573333pt;}
.y1e{bottom:583.773333pt;}
.yb7{bottom:585.213333pt;}
.yf3{bottom:589.373333pt;}
.y53{bottom:589.853333pt;}
.y73{bottom:595.453333pt;}
.y1d{bottom:602.173333pt;}
.yf2{bottom:607.773333pt;}
.yca{bottom:608.093333pt;}
.y52{bottom:608.253333pt;}
.y72{bottom:610.653333pt;}
.yb6{bottom:612.733333pt;}
.y1c{bottom:620.573333pt;}
.y96{bottom:626.013333pt;}
.yf1{bottom:626.173333pt;}
.y51{bottom:626.653333pt;}
.y71{bottom:635.773333pt;}
.y1b{bottom:638.973333pt;}
.yb5{bottom:640.413333pt;}
.y95{bottom:641.373333pt;}
.yf0{bottom:644.573333pt;}
.y50{bottom:645.053333pt;}
.y94{bottom:656.733333pt;}
.y1a{bottom:657.373333pt;}
.yef{bottom:662.973333pt;}
.yd2{bottom:663.133333pt;}
.y70{bottom:663.293333pt;}
.y4f{bottom:663.453333pt;}
.yb4{bottom:667.933333pt;}
.y93{bottom:672.093333pt;}
.y19{bottom:675.773333pt;}
.yee{bottom:681.373333pt;}
.y4e{bottom:681.853333pt;}
.y92{bottom:687.453333pt;}
.y6f{bottom:690.973333pt;}
.y18{bottom:694.173333pt;}
.yb3{bottom:695.613333pt;}
.yed{bottom:699.773333pt;}
.y4d{bottom:700.253333pt;}
.y91{bottom:702.653333pt;}
.y17{bottom:712.573333pt;}
.y90{bottom:718.013333pt;}
.y6e{bottom:718.493333pt;}
.y4c{bottom:718.653333pt;}
.yb2{bottom:721.053333pt;}
.y16{bottom:730.973333pt;}
.y8f{bottom:733.373333pt;}
.yb1{bottom:736.413333pt;}
.yec{bottom:736.893333pt;}
.y4b{bottom:737.053333pt;}
.y6d{bottom:746.173333pt;}
.y8e{bottom:748.733333pt;}
.y15{bottom:749.373333pt;}
.yb0{bottom:751.773333pt;}
.yeb{bottom:755.133333pt;}
.y4a{bottom:755.453333pt;}
.yaf{bottom:767.133333pt;}
.y14{bottom:767.773333pt;}
.y6c{bottom:773.693333pt;}
.y49{bottom:773.853333pt;}
.yae{bottom:782.493333pt;}
.y13{bottom:786.173333pt;}
.y48{bottom:792.293333pt;}
.yad{bottom:797.893333pt;}
.y6b{bottom:801.413333pt;}
.y4{bottom:802.853333pt;}
.y12{bottom:804.613333pt;}
.y47{bottom:810.693333pt;}
.yac{bottom:813.093333pt;}
.y10{bottom:822.693333pt;}
.y11{bottom:827.973333pt;}
.yab{bottom:828.453333pt;}
.y6a{bottom:828.933333pt;}
.y46{bottom:829.093333pt;}
.ye{bottom:841.093333pt;}
.yaa{bottom:843.813333pt;}
.yf{bottom:846.373333pt;}
.y45{bottom:847.493333pt;}
.y69{bottom:856.613333pt;}
.ya9{bottom:859.173333pt;}
.yc{bottom:859.493333pt;}
.yd{bottom:864.773333pt;}
.y44{bottom:865.893333pt;}
.yb{bottom:878.213333pt;}
.y68{bottom:884.133333pt;}
.y43{bottom:884.293333pt;}
.y42{bottom:902.693333pt;}
.y67{bottom:911.813333pt;}
.ya{bottom:914.693333pt;}
.y41{bottom:921.093333pt;}
.y9{bottom:933.093333pt;}
.y66{bottom:939.333333pt;}
.y40{bottom:939.493333pt;}
.y8{bottom:951.493333pt;}
.y3f{bottom:957.573333pt;}
.yea{bottom:957.893333pt;}
.y64{bottom:967.013333pt;}
.y7{bottom:970.373333pt;}
.y65{bottom:973.093333pt;}
.y3e{bottom:976.293333pt;}
.y6{bottom:991.813333pt;}
.y63{bottom:994.533333pt;}
.y3d{bottom:994.693333pt;}
.y1{bottom:1013.893333pt;}
.h4{height:25.920000pt;}
.h9{height:33.918750pt;}
.hb{height:42.084375pt;}
.h8{height:43.215000pt;}
.hd{height:47.621250pt;}
.ha{height:52.134375pt;}
.h3{height:53.535000pt;}
.hc{height:57.375000pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:75.465000pt;}
.h7{height:94.218750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.520000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x10{left:117.791988pt;}
.x7{left:118.751988pt;}
.x4{left:126.111988pt;}
.x12{left:160.666655pt;}
.x11{left:205.466655pt;}
.x15{left:264.706655pt;}
.xf{left:305.506655pt;}
.x5{left:307.586655pt;}
.x8{left:350.466655pt;}
.x13{left:370.653310pt;}
.x14{left:376.093322pt;}
.x6{left:415.933322pt;}
.xe{left:425.373322pt;}
.xc{left:497.693322pt;}
.xd{left:530.213322pt;}
.xa{left:539.493322pt;}
.x16{left:591.973310pt;}
.x17{left:597.413322pt;}
.x1{left:710.719988pt;}
.xb{left:712.959976pt;}
.x9{left:718.399988pt;}
.x3{left:738.400000pt;}
}




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