
    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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_fc6f6a9e5a000af38345ea3d.woff2')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_ecd7f3e03f0e69e451ce16fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_1065cf855227f63f48415297.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_dfce6e6cc8e60b0ca12dc22b.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f0540d5e1605a5575bfe8d3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.875488;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_53f3a07d5898dd0f950b0fe4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_50f191d6fdafc584a7bd2c83.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws0{word-spacing:-20.304000px;}
.ws8{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.948000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.400000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-4.445280px;}
._8{margin-left:-3.435360px;}
._1{margin-left:-1.716000px;}
._0{width:1.068000px;}
._2{width:2.251200px;}
._7{width:3.484080px;}
._5{width:4.586160px;}
._4{width:5.684880px;}
._6{width:6.752880px;}
._a{width:8.186640px;}
._9{width:9.860880px;}
._d{width:11.374080px;}
._b{width:12.983040px;}
._11{width:14.904000px;}
._17{width:17.884800px;}
._15{width:19.010880px;}
._10{width:20.183040px;}
._3{width:21.214800px;}
._c{width:22.587840px;}
._f{width:24.015120px;}
._16{width:25.966080px;}
._14{width:27.227520px;}
._12{width:29.145600px;}
._13{width:30.464160px;}
._e{width:31.752240px;}
._1c{width:34.396800px;}
._1b{width:35.902080px;}
._20{width:42.393600px;}
._19{width:49.680000px;}
._1a{width:53.188320px;}
._1f{width:83.741760px;}
._1d{width:90.536160px;}
._1e{width:329.740320px;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(34,42,53);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.760000px;}
.y7{bottom:56.880000px;}
.y6{bottom:77.580000px;}
.y8{bottom:87.300000px;}
.y5{bottom:98.280000px;}
.y4{bottom:118.980000px;}
.y3{bottom:139.896000px;}
.y2{bottom:172.470000px;}
.yb7{bottom:203.790000px;}
.y35{bottom:211.170000px;}
.y7f{bottom:221.610000px;}
.yb6{bottom:222.690000px;}
.y34{bottom:230.250000px;}
.ycd{bottom:240.510000px;}
.y93{bottom:240.690000px;}
.y58{bottom:245.730000px;}
.y33{bottom:249.150000px;}
.y92{bottom:259.590000px;}
.y7e{bottom:262.110000px;}
.yb5{bottom:263.190000px;}
.y57{bottom:264.990000px;}
.y91{bottom:278.670000px;}
.ycc{bottom:281.010000px;}
.y7d{bottom:281.190000px;}
.yb4{bottom:282.270000px;}
.y56{bottom:283.890000px;}
.y32{bottom:289.650000px;}
.y7c{bottom:300.270000px;}
.yb3{bottom:301.170000px;}
.y55{bottom:302.790000px;}
.y31{bottom:308.370000px;}
.y90{bottom:318.990000px;}
.yb2{bottom:320.250000px;}
.y54{bottom:321.870000px;}
.y30{bottom:325.470000px;}
.yb1{bottom:339.150000px;}
.y7b{bottom:340.590000px;}
.y53{bottom:340.770000px;}
.y2f{bottom:342.750000px;}
.y8f{bottom:359.670000px;}
.y52{bottom:359.850000px;}
.y2e{bottom:360.030000px;}
.y6e{bottom:362.190000px;}
.y2d{bottom:377.310000px;}
.y8e{bottom:378.750000px;}
.yb0{bottom:379.650000px;}
.y6d{bottom:381.450000px;}
.y2c{bottom:394.635000px;}
.y8d{bottom:397.695000px;}
.yaf{bottom:398.775000px;}
.y51{bottom:400.215000px;}
.y2b{bottom:411.735000px;}
.yae{bottom:417.855000px;}
.y50{bottom:419.295000px;}
.y6c{bottom:421.815000px;}
.y2a{bottom:429.015000px;}
.y8c{bottom:438.195000px;}
.y7a{bottom:438.375000px;}
.y6b{bottom:440.895000px;}
.y29{bottom:446.295000px;}
.y79{bottom:457.275000px;}
.yad{bottom:458.175000px;}
.y4f{bottom:459.795000px;}
.y6a{bottom:459.975000px;}
.y28{bottom:463.575000px;}
.ya2{bottom:476.175000px;}
.y78{bottom:476.355000px;}
.yac{bottom:477.255000px;}
.y4e{bottom:478.875000px;}
.y27{bottom:480.855000px;}
.y77{bottom:495.255000px;}
.yab{bottom:496.335000px;}
.y8b{bottom:497.775000px;}
.y4d{bottom:497.955000px;}
.y26{bottom:498.135000px;}
.ycb{bottom:500.295000px;}
.y76{bottom:514.155000px;}
.y25{bottom:515.235000px;}
.y4c{bottom:516.855000px;}
.yca{bottom:519.555000px;}
.y24{bottom:532.515000px;}
.ya1{bottom:535.575000px;}
.y69{bottom:535.755000px;}
.y23{bottom:549.795000px;}
.y75{bottom:554.655000px;}
.y68{bottom:554.835000px;}
.yaa{bottom:555.735000px;}
.y4b{bottom:557.175000px;}
.yc9{bottom:559.875000px;}
.y22{bottom:567.075000px;}
.y4a{bottom:576.435000px;}
.yc8{bottom:578.955000px;}
.y21{bottom:584.355000px;}
.y67{bottom:595.155000px;}
.y49{bottom:595.335000px;}
.ya9{bottom:596.235000px;}
.yc7{bottom:598.035000px;}
.y20{bottom:601.635000px;}
.y66{bottom:614.415000px;}
.ya8{bottom:615.315000px;}
.y1f{bottom:618.735000px;}
.y74{bottom:633.315000px;}
.ya7{bottom:634.395000px;}
.y48{bottom:635.835000px;}
.y1e{bottom:636.015000px;}
.yc6{bottom:638.355000px;}
.ya0{bottom:652.245000px;}
.y1d{bottom:653.325000px;}
.y65{bottom:654.765000px;}
.y47{bottom:654.945000px;}
.y1c{bottom:670.605000px;}
.y9f{bottom:671.325000px;}
.y73{bottom:673.665000px;}
.y46{bottom:673.845000px;}
.ya6{bottom:674.745000px;}
.yc5{bottom:679.065000px;}
.y1b{bottom:687.885000px;}
.y45{bottom:692.925000px;}
.y64{bottom:695.265000px;}
.yc4{bottom:698.145000px;}
.y1a{bottom:705.165000px;}
.y9e{bottom:711.645000px;}
.y8a{bottom:711.825000px;}
.y72{bottom:714.345000px;}
.y63{bottom:714.525000px;}
.ya5{bottom:715.425000px;}
.yc3{bottom:717.045000px;}
.y19{bottom:722.265000px;}
.y9d{bottom:730.905000px;}
.y44{bottom:733.245000px;}
.y62{bottom:733.425000px;}
.ya4{bottom:734.505000px;}
.yc2{bottom:736.125000px;}
.y18{bottom:739.545000px;}
.y89{bottom:752.325000px;}
.y43{bottom:752.505000px;}
.y17{bottom:756.825000px;}
.y9c{bottom:771.225000px;}
.y42{bottom:771.405000px;}
.y16{bottom:774.105000px;}
.ya3{bottom:774.825000px;}
.yc1{bottom:776.445000px;}
.y61{bottom:790.485000px;}
.yc0{bottom:795.705000px;}
.y15{bottom:799.845000px;}
.y60{bottom:809.385000px;}
.y41{bottom:811.905000px;}
.ybf{bottom:814.605000px;}
.y14{bottom:825.765000px;}
.y5f{bottom:828.285000px;}
.y40{bottom:830.985000px;}
.ybe{bottom:833.685000px;}
.y13{bottom:843.405000px;}
.y9b{bottom:847.365000px;}
.y71{bottom:849.705000px;}
.y3f{bottom:849.885000px;}
.ybd{bottom:852.585000px;}
.y12{bottom:861.765000px;}
.y5e{bottom:868.785000px;}
.y3e{bottom:868.965000px;}
.y88{bottom:871.305000px;}
.ybc{bottom:871.485000px;}
.y11{bottom:880.305000px;}
.y9a{bottom:887.685000px;}
.y3d{bottom:887.865000px;}
.y87{bottom:890.565000px;}
.y10{bottom:899.250000px;}
.y99{bottom:906.990000px;}
.y5d{bottom:909.330000px;}
.y86{bottom:909.510000px;}
.ybb{bottom:912.030000px;}
.y98{bottom:925.890000px;}
.y3c{bottom:928.410000px;}
.y5c{bottom:928.590000px;}
.yf{bottom:928.770000px;}
.yba{bottom:931.110000px;}
.y97{bottom:944.790000px;}
.y3b{bottom:947.490000px;}
.y85{bottom:950.010000px;}
.yb9{bottom:950.190000px;}
.ye{bottom:959.730000px;}
.y3a{bottom:966.390000px;}
.y5b{bottom:968.910000px;}
.y84{bottom:969.090000px;}
.y96{bottom:985.290000px;}
.y70{bottom:985.470000px;}
.y5a{bottom:987.990000px;}
.yd{bottom:990.870000px;}
.y39{bottom:1006.890000px;}
.y59{bottom:1007.070000px;}
.y83{bottom:1009.410000px;}
.yc{bottom:1021.830000px;}
.y6f{bottom:1025.790000px;}
.y38{bottom:1025.970000px;}
.yb8{bottom:1028.490000px;}
.y82{bottom:1028.670000px;}
.y95{bottom:1045.050000px;}
.y81{bottom:1047.570000px;}
.yb{bottom:1052.970000px;}
.y37{bottom:1066.470000px;}
.y80{bottom:1066.650000px;}
.ya{bottom:1083.930000px;}
.y94{bottom:1085.370000px;}
.y36{bottom:1085.550000px;}
.y1{bottom:1100.850000px;}
.h6{height:24.300000px;}
.ha{height:43.156758px;}
.h2{height:52.417969px;}
.h9{height:53.077852px;}
.h8{height:53.573906px;}
.hb{height:58.833281px;}
.h7{height:59.383125px;}
.h4{height:63.949219px;}
.h5{height:65.144531px;}
.h3{height:68.554688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.776000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x3{left:127.655987px;}
.x10{left:132.695987px;}
.xc{left:156.809987px;}
.x9{left:192.269987px;}
.x7{left:199.649987px;}
.x8{left:279.794987px;}
.xf{left:297.794987px;}
.xd{left:301.754987px;}
.x11{left:308.594987px;}
.xa{left:328.394987px;}
.x12{left:395.894987px;}
.x6{left:467.924987px;}
.xb{left:589.964987px;}
.xe{left:609.224987px;}
.x4{left:755.070000px;}
.x1{left:802.799987px;}
.x2{left:808.199987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ws9{word-spacing:-58.880000pt;}
.ws0{word-spacing:-18.048000pt;}
.ws8{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.176000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.800000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-3.951360pt;}
._8{margin-left:-3.053653pt;}
._1{margin-left:-1.525333pt;}
._0{width:0.949333pt;}
._2{width:2.001067pt;}
._7{width:3.096960pt;}
._5{width:4.076587pt;}
._4{width:5.053227pt;}
._6{width:6.002560pt;}
._a{width:7.277013pt;}
._9{width:8.765227pt;}
._d{width:10.110293pt;}
._b{width:11.540480pt;}
._11{width:13.248000pt;}
._17{width:15.897600pt;}
._15{width:16.898560pt;}
._10{width:17.940480pt;}
._3{width:18.857600pt;}
._c{width:20.078080pt;}
._f{width:21.346773pt;}
._16{width:23.080960pt;}
._14{width:24.202240pt;}
._12{width:25.907200pt;}
._13{width:27.079253pt;}
._e{width:28.224213pt;}
._1c{width:30.574933pt;}
._1b{width:31.912960pt;}
._20{width:37.683200pt;}
._19{width:44.160000pt;}
._1a{width:47.278507pt;}
._1f{width:74.437120pt;}
._1d{width:80.476587pt;}
._1e{width:293.102507pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:5.120000pt;}
.y7{bottom:50.560000pt;}
.y6{bottom:68.960000pt;}
.y8{bottom:77.600000pt;}
.y5{bottom:87.360000pt;}
.y4{bottom:105.760000pt;}
.y3{bottom:124.352000pt;}
.y2{bottom:153.306667pt;}
.yb7{bottom:181.146667pt;}
.y35{bottom:187.706667pt;}
.y7f{bottom:196.986667pt;}
.yb6{bottom:197.946667pt;}
.y34{bottom:204.666667pt;}
.ycd{bottom:213.786667pt;}
.y93{bottom:213.946667pt;}
.y58{bottom:218.426667pt;}
.y33{bottom:221.466667pt;}
.y92{bottom:230.746667pt;}
.y7e{bottom:232.986667pt;}
.yb5{bottom:233.946667pt;}
.y57{bottom:235.546667pt;}
.y91{bottom:247.706667pt;}
.ycc{bottom:249.786667pt;}
.y7d{bottom:249.946667pt;}
.yb4{bottom:250.906667pt;}
.y56{bottom:252.346667pt;}
.y32{bottom:257.466667pt;}
.y7c{bottom:266.906667pt;}
.yb3{bottom:267.706667pt;}
.y55{bottom:269.146667pt;}
.y31{bottom:274.106667pt;}
.y90{bottom:283.546667pt;}
.yb2{bottom:284.666667pt;}
.y54{bottom:286.106667pt;}
.y30{bottom:289.306667pt;}
.yb1{bottom:301.466667pt;}
.y7b{bottom:302.746667pt;}
.y53{bottom:302.906667pt;}
.y2f{bottom:304.666667pt;}
.y8f{bottom:319.706667pt;}
.y52{bottom:319.866667pt;}
.y2e{bottom:320.026667pt;}
.y6e{bottom:321.946667pt;}
.y2d{bottom:335.386667pt;}
.y8e{bottom:336.666667pt;}
.yb0{bottom:337.466667pt;}
.y6d{bottom:339.066667pt;}
.y2c{bottom:350.786667pt;}
.y8d{bottom:353.506667pt;}
.yaf{bottom:354.466667pt;}
.y51{bottom:355.746667pt;}
.y2b{bottom:365.986667pt;}
.yae{bottom:371.426667pt;}
.y50{bottom:372.706667pt;}
.y6c{bottom:374.946667pt;}
.y2a{bottom:381.346667pt;}
.y8c{bottom:389.506667pt;}
.y7a{bottom:389.666667pt;}
.y6b{bottom:391.906667pt;}
.y29{bottom:396.706667pt;}
.y79{bottom:406.466667pt;}
.yad{bottom:407.266667pt;}
.y4f{bottom:408.706667pt;}
.y6a{bottom:408.866667pt;}
.y28{bottom:412.066667pt;}
.ya2{bottom:423.266667pt;}
.y78{bottom:423.426667pt;}
.yac{bottom:424.226667pt;}
.y4e{bottom:425.666667pt;}
.y27{bottom:427.426667pt;}
.y77{bottom:440.226667pt;}
.yab{bottom:441.186667pt;}
.y8b{bottom:442.466667pt;}
.y4d{bottom:442.626667pt;}
.y26{bottom:442.786667pt;}
.ycb{bottom:444.706667pt;}
.y76{bottom:457.026667pt;}
.y25{bottom:457.986667pt;}
.y4c{bottom:459.426667pt;}
.yca{bottom:461.826667pt;}
.y24{bottom:473.346667pt;}
.ya1{bottom:476.066667pt;}
.y69{bottom:476.226667pt;}
.y23{bottom:488.706667pt;}
.y75{bottom:493.026667pt;}
.y68{bottom:493.186667pt;}
.yaa{bottom:493.986667pt;}
.y4b{bottom:495.266667pt;}
.yc9{bottom:497.666667pt;}
.y22{bottom:504.066667pt;}
.y4a{bottom:512.386667pt;}
.yc8{bottom:514.626667pt;}
.y21{bottom:519.426667pt;}
.y67{bottom:529.026667pt;}
.y49{bottom:529.186667pt;}
.ya9{bottom:529.986667pt;}
.yc7{bottom:531.586667pt;}
.y20{bottom:534.786667pt;}
.y66{bottom:546.146667pt;}
.ya8{bottom:546.946667pt;}
.y1f{bottom:549.986667pt;}
.y74{bottom:562.946667pt;}
.ya7{bottom:563.906667pt;}
.y48{bottom:565.186667pt;}
.y1e{bottom:565.346667pt;}
.yc6{bottom:567.426667pt;}
.ya0{bottom:579.773333pt;}
.y1d{bottom:580.733333pt;}
.y65{bottom:582.013333pt;}
.y47{bottom:582.173333pt;}
.y1c{bottom:596.093333pt;}
.y9f{bottom:596.733333pt;}
.y73{bottom:598.813333pt;}
.y46{bottom:598.973333pt;}
.ya6{bottom:599.773333pt;}
.yc5{bottom:603.613333pt;}
.y1b{bottom:611.453333pt;}
.y45{bottom:615.933333pt;}
.y64{bottom:618.013333pt;}
.yc4{bottom:620.573333pt;}
.y1a{bottom:626.813333pt;}
.y9e{bottom:632.573333pt;}
.y8a{bottom:632.733333pt;}
.y72{bottom:634.973333pt;}
.y63{bottom:635.133333pt;}
.ya5{bottom:635.933333pt;}
.yc3{bottom:637.373333pt;}
.y19{bottom:642.013333pt;}
.y9d{bottom:649.693333pt;}
.y44{bottom:651.773333pt;}
.y62{bottom:651.933333pt;}
.ya4{bottom:652.893333pt;}
.yc2{bottom:654.333333pt;}
.y18{bottom:657.373333pt;}
.y89{bottom:668.733333pt;}
.y43{bottom:668.893333pt;}
.y17{bottom:672.733333pt;}
.y9c{bottom:685.533333pt;}
.y42{bottom:685.693333pt;}
.y16{bottom:688.093333pt;}
.ya3{bottom:688.733333pt;}
.yc1{bottom:690.173333pt;}
.y61{bottom:702.653333pt;}
.yc0{bottom:707.293333pt;}
.y15{bottom:710.973333pt;}
.y60{bottom:719.453333pt;}
.y41{bottom:721.693333pt;}
.ybf{bottom:724.093333pt;}
.y14{bottom:734.013333pt;}
.y5f{bottom:736.253333pt;}
.y40{bottom:738.653333pt;}
.ybe{bottom:741.053333pt;}
.y13{bottom:749.693333pt;}
.y9b{bottom:753.213333pt;}
.y71{bottom:755.293333pt;}
.y3f{bottom:755.453333pt;}
.ybd{bottom:757.853333pt;}
.y12{bottom:766.013333pt;}
.y5e{bottom:772.253333pt;}
.y3e{bottom:772.413333pt;}
.y88{bottom:774.493333pt;}
.ybc{bottom:774.653333pt;}
.y11{bottom:782.493333pt;}
.y9a{bottom:789.053333pt;}
.y3d{bottom:789.213333pt;}
.y87{bottom:791.613333pt;}
.y10{bottom:799.333333pt;}
.y99{bottom:806.213333pt;}
.y5d{bottom:808.293333pt;}
.y86{bottom:808.453333pt;}
.ybb{bottom:810.693333pt;}
.y98{bottom:823.013333pt;}
.y3c{bottom:825.253333pt;}
.y5c{bottom:825.413333pt;}
.yf{bottom:825.573333pt;}
.yba{bottom:827.653333pt;}
.y97{bottom:839.813333pt;}
.y3b{bottom:842.213333pt;}
.y85{bottom:844.453333pt;}
.yb9{bottom:844.613333pt;}
.ye{bottom:853.093333pt;}
.y3a{bottom:859.013333pt;}
.y5b{bottom:861.253333pt;}
.y84{bottom:861.413333pt;}
.y96{bottom:875.813333pt;}
.y70{bottom:875.973333pt;}
.y5a{bottom:878.213333pt;}
.yd{bottom:880.773333pt;}
.y39{bottom:895.013333pt;}
.y59{bottom:895.173333pt;}
.y83{bottom:897.253333pt;}
.yc{bottom:908.293333pt;}
.y6f{bottom:911.813333pt;}
.y38{bottom:911.973333pt;}
.yb8{bottom:914.213333pt;}
.y82{bottom:914.373333pt;}
.y95{bottom:928.933333pt;}
.y81{bottom:931.173333pt;}
.yb{bottom:935.973333pt;}
.y37{bottom:947.973333pt;}
.y80{bottom:948.133333pt;}
.ya{bottom:963.493333pt;}
.y94{bottom:964.773333pt;}
.y36{bottom:964.933333pt;}
.y1{bottom:978.533333pt;}
.h6{height:21.600000pt;}
.ha{height:38.361562pt;}
.h2{height:46.593750pt;}
.h9{height:47.180312pt;}
.h8{height:47.621250pt;}
.hb{height:52.296250pt;}
.h7{height:52.785000pt;}
.h4{height:56.843750pt;}
.h5{height:57.906250pt;}
.h3{height:60.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.912000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x3{left:113.471988pt;}
.x10{left:117.951988pt;}
.xc{left:139.386655pt;}
.x9{left:170.906655pt;}
.x7{left:177.466655pt;}
.x8{left:248.706655pt;}
.xf{left:264.706655pt;}
.xd{left:268.226655pt;}
.x11{left:274.306655pt;}
.xa{left:291.906655pt;}
.x12{left:351.906655pt;}
.x6{left:415.933322pt;}
.xb{left:524.413322pt;}
.xe{left:541.533322pt;}
.x4{left:671.173333pt;}
.x1{left:713.599988pt;}
.x2{left:718.399988pt;}
}




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